Changeset 325
- Timestamp:
- Sep 4, 2009, 9:08:19 AM (16 years ago)
- Location:
- branches/guitools-2.0
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/guitools-2.0/evfsgui/changes ¶
r324 r325 23 23 - Added: Disabled old profile saving code 24 24 - Added: Sort smbtree view ascending 25 - Added: Optionally turn on/off special ($) shares 25 26 - Changed: Several changes in GUI style (as suggested by Alex Taylor) 26 27 - Changed: Left align buttons in current connections panel (as suggested by … … 34 35 - Fixed: Message queue during resize isn't cleared (no flashing during resize) 35 36 - Fixed: Missing NLV aware strings 37 - Fixed: Don't let user edit network neighbourhood results 36 38 ToDo: 39 - Edit and Selected menu easily got out of sync (partly fixed) 37 40 - Major code refactoring 38 41 - Create Icon. stem in order to ease maintainance of icons 39 42 - Create mechanism to save passive connections across sessions 40 43 - Debug on/off option is badly implemented (rework required) 41 - Edit and Selected menu easily get out of sync42 44 - Advanced dialog should be split into connection options and global options 43 45 - smbtree error messages are ignored (requires more code from smbmon) 44 - Connecting to IPC$ still possible (if it is visible)45 46 - printer share detection is flaky 46 47 - error checking -
TabularUnified branches/guitools-2.0/evfsgui/evfsgui.VRP ¶
r324 r325 8 8 VRXWindow: __VREMainWindow,1,530,2457,879,4071 9 9 VRXWindow: __VRESectionListWindow,1,337,11708,11623,3686 10 VRXWindow: __VREToolsWindow,1,518,530,69 93,166510 VRXWindow: __VREToolsWindow,1,518,530,6987,1669 11 11 VRXWindow: __VREWindListWindow,1,482,7661,2650,3150 12 12 UserFile: 1 13 13 UserWindow: Main,1 14 14 UserWindow: SW_ADVANCED,1 15 UserWindow: SW_MOUNTPOINT,1 -
TabularUnified branches/guitools-2.0/evfsgui/evfsgui.VRX ¶
r324 r325 137 137 ok = VRMethod("CN_CONDET", "SetFieldAttr", cd.hashfh , "Visible", 0) 138 138 139 ok = VRSet("CN_CONDET", "DetailSort", cd.mpointfh ) 140 139 141 /* NLV columns */ 140 ok = VRMethod("CN_CONDET", "SetFieldAttr", cd.statusfh , "Title", "Status")142 ok = VRMethod("CN_CONDET", "SetFieldAttr", cd.statusfh , "Title", strip(NLVGetMessage(67),"T",":")) 141 143 ok = VRMethod("CN_CONDET", "SetFieldAttr", cd.mpointfh , "Title", strip(NLVGetMessage(27),"T",":")) 142 144 ok = VRMethod("CN_CONDET", "SetFieldAttr", cd.workgroupfh , "Title", strip(NLVGetMessage(21),"T",":")) … … 144 146 ok = VRMethod("CN_CONDET", "SetFieldAttr", cd.shareFH , "Title", strip(NLVGetMessage(20),"T",":")) 145 147 ok = VRMethod("CN_CONDET", "SetFieldAttr", cd.userfh , "Title", strip(NLVGetMessage(25),"T",":")) 146 ok = VRMethod("CN_CONDET", "SetFieldAttr", cd.easupportfh , "Title", "EA")147 ok = VRMethod("CN_CONDET", "SetFieldAttr", cd.rwfh , "Title", "R/W")148 ok = VRMethod("CN_CONDET", "SetFieldAttr", cd.easupportfh , "Title", strip(NLVGetMessage(68),"T",":")) 149 ok = VRMethod("CN_CONDET", "SetFieldAttr", cd.rwfh , "Title", strip(NLVGetMessage(69),"T",":")) 148 150 return 149 151 /*:VRX _CreateSmbConf … … 230 232 CALL VRSet "CHK_MTYPE", "Visible", 0 231 233 CALL NLVSetText "DT_NETWORK", "Caption", 21 232 /* Herwig B. */234 /* Does not make sense anymore 233 235 if options.!editmode = 0 Then CALL VRSet "EF_NETWORK", "Value", settings.!network 234 /* Herwig B.*/236 */ 235 237 END 236 238 WHEN mount == 2 THEN DO … … 241 243 CALL VRSet "CHK_MTYPE", "Visible", 0 242 244 CALL NLVSetText "DT_NETWORK", "Caption", 21 243 /* Herwig B. */245 /* Does not make sense anymore 244 246 CALL VRSet "EF_NETWORK", "Value", settings.!network 245 /* Herwig B.*/247 */ 246 248 END 247 249 WHEN mount == 3 THEN DO … … 252 254 CALL VRSet "CHK_MTYPE", "Visible", 0 253 255 CALL NLVSetText "DT_NETWORK", "Caption", 21 254 /* Herwig B. */256 /* Does not make sense anymore 255 257 CALL VRSet "EF_NETWORK", "Value", settings.!network 256 /* Herwig B.*/258 */ 257 259 END 258 260 WHEN mount == 4 THEN DO … … 263 265 CALL VRSet "CHK_MTYPE", "Visible", 1 264 266 CALL NLVSetText "DT_NETWORK", "Caption", 22 265 /* Herwig B. */267 /* Does not make sense anymore 266 268 CALL VRSet "EF_NETWORK", "Value", "" 267 /* Herwig B.*/269 */ 268 270 END 269 271 END … … 497 499 ok = VRset("CB_DRIVES" , "Value", p_drv) 498 500 ok = VRset("EF_DIRECTORY" , "Value", p_dir) 499 500 ok = VRMethod( srcCtn, "RemoveRecord", srcRec)501 502 503 501 end 504 502 else do /* SmbTree */ … … 590 588 window = VRLoadSecondary( "SW_LOGIN", "W" ) 591 589 call PB_MOUNT_CLICK 590 if VRGet(srcCtn,'Name') = "CN_CONDET" &, 591 VRMethod("CN_CONDET", "GetRecordAttr", srcRec, "Icon") = '#68:PMWP.DLL' then ok = VRMethod( srcCtn, "RemoveRecord", srcRec) 592 592 return 593 593 … … 868 868 IF settings.!condeton = "" then settings.!condeton = 1 869 869 870 /* Load network */870 /* Load network - does not make sense anymore 871 871 settings.!network = VRGetIni('Settings', 'Network', settings.!ini, 'NoClose') 872 IF settings.!network == '' THEN settings.!network = '' 873 say "Loadsettings" samba.!smbconf 872 IF settings.!network == '' THEN settings.!network = '' */ 873 874 874 if \VRFileExists( samba.!smbconf ) then call _CreateSmbConf 875 876 /* Hardcoded for EVFSGUI for now */877 ShowHidden = 0878 875 879 876 /* Load font settings. … … 900 897 IF advanced.!alwaysmp == '' THEN advanced.!alwaysmp = 1 901 898 899 advanced.!special = VRGetIni('Settings', 'SpecialShares', settings.!ini) 900 IF advanced.!special == '' THEN advanced.!special = 0 901 902 902 /* Apply the settings 903 903 */ 904 /* Does not make sense anymore 904 905 ok = VRSet("EF_NETWORK","Value", settings.!network) 906 */ 905 907 ok = VRSet("DT_CURRENT","BACKCOLOR", settings.!curbcolor ) 906 908 ok = VRSet("DT_CURRENT","FORECOLOR", settings.!curfcolor ) … … 1303 1305 /*:VRX Menu_Selected_Retry_Click 1304 1306 */ 1305 Menu_Selected_Retry_Click: 1307 Menu_Selected_Retry_Click: PROCEDURE EXPOSE settings. options. vfs. fs. advanced. cd. 1308 1306 1309 ok = VRMethod( "CN_CONDET", "GetRecordList", "SourceOrSelected", "selrec." ) 1307 1310 if selrec.0 = 0 then return 1308 1311 1309 do I = 1 to selrec.0 1310 1311 p_mpoint = VRMethod("CN_CONDET", "GetFieldData", selrec.I, CD.MpointFH) 1312 1313 p_workgroup = VRMethod("CN_CONDET", "GetFieldData", selrec.I, CD.WorkgroupFH) 1314 p_server = VRMethod("CN_CONDET", "GetFieldData", selrec.I, CD.ServerFH) 1315 p_share = VRMethod("CN_CONDET", "GetFieldData", selrec.I, CD.ShareFH) 1316 p_user = VRMethod("CN_CONDET", "GetFieldData", selrec.I, CD.UserFH) 1317 p_password = x2c(VRMethod("CN_CONDET", "GetFieldData", selrec.I, CD.SpasswordFH)) 1318 1319 ShareLevel = 1 1320 if p_share = "" then ShareLevel = 2 1321 if p_server = "" then ShareLevel = 3 1322 if p_workgroup = "" then ShareLevel = 4 1323 1324 ok = VRSet( "CB_MOUNT", "Selected", Sharelevel ) 1325 ok = VRset("CB_MOUNT" , "Value", mtype.sharelevel) 1326 1327 ok = VRset("EF_SERVER" , "Value", p_server) 1328 ok = VRset("EF_SHARE" , "Value", p_share) 1329 ok = VRset("EF_NETWORK", "Value", p_workgroup) 1330 ok = VRset("EF_USER" , "Value", p_user) 1331 ok = VRset("EF_PASSWORD", "Value", p_password) 1332 1333 parse var p_mpoint p_drv '\' p_dir 1334 1335 p_dir = strip(p_dir,'T','\') 1336 1337 ok = VRset("CB_DRIVES" , "Value", p_drv) 1338 ok = VRset("EF_DIRECTORY" , "Value", p_dir) 1339 1340 ok = VRMethod("CN_CONDET", "RemoveRecord", selrec.I) 1341 1342 CALL PB_MOUNT_Click 1343 1344 end 1312 selrec = selrec.1 1313 1314 p_mpoint = VRMethod("CN_CONDET", "GetFieldData", selrec, CD.MpointFH) 1315 1316 p_workgroup = VRMethod("CN_CONDET", "GetFieldData", selrec, CD.WorkgroupFH) 1317 p_server = VRMethod("CN_CONDET", "GetFieldData", selrec, CD.ServerFH) 1318 p_share = VRMethod("CN_CONDET", "GetFieldData", selrec, CD.ShareFH) 1319 p_user = VRMethod("CN_CONDET", "GetFieldData", selrec, CD.UserFH) 1320 p_password = x2c(VRMethod("CN_CONDET", "GetFieldData", selrec, CD.SpasswordFH)) 1321 1322 ShareLevel = 1 1323 if p_share = "" then ShareLevel = 2 1324 if p_server = "" then ShareLevel = 3 1325 if p_workgroup = "" then ShareLevel = 4 1326 1327 ok = VRSet( "CB_MOUNT", "Selected", Sharelevel ) 1328 ok = VRset("CB_MOUNT" , "Value", mtype.sharelevel) 1329 1330 ok = VRset("EF_SERVER" , "Value", p_server) 1331 ok = VRset("EF_SHARE" , "Value", p_share) 1332 ok = VRset("EF_NETWORK", "Value", p_workgroup) 1333 ok = VRset("EF_USER" , "Value", p_user) 1334 ok = VRset("EF_PASSWORD", "Value", p_password) 1335 1336 parse var p_mpoint p_drv '\' p_dir 1337 1338 p_dir = strip(p_dir,'T','\') 1339 1340 ok = VRset("CB_DRIVES" , "Value", p_drv) 1341 ok = VRset("EF_DIRECTORY" , "Value", p_dir) 1342 1343 CALL PB_MOUNT_Click 1344 1345 ok = VRMethod("CN_CONDET", "RemoveRecord", selrec) 1345 1346 return 1346 1347 … … 1882 1883 advanced.!debug = adv_debug 1883 1884 advanced.!alwaysmp = adv_alwaysmp 1885 advanced.!special = adv_special 1884 1886 END 1885 1887 … … 1914 1916 adv_debug = VRGet( "CB_DEBUG", "Set" ) 1915 1917 adv_alwaysmp = VRGet( "CB_ALWAYSMP", "Set" ) 1918 adv_special = VRGet( "CB_SPECIAL", "Set" ) 1916 1919 1917 1920 adv_changed = 1 … … 2017 2020 /*:VRX PB_CONNECT_Click 2018 2021 */ 2019 PB_CONNECT_Click: PROCEDURE EXPOSE settings. options. fs. advanced. 2022 PB_CONNECT_Click: PROCEDURE EXPOSE settings. options. fs. advanced. cd. 2020 2023 IF options.!debug == 1 THEN SAY time()' '||"PB_CONNECT_Click started" 2021 p_workgroup 2022 p_server = ''2023 p_share = ''2024 p_workgroup = '' 2025 p_server = '' 2026 p_share = '' 2024 2027 2025 2028 ok = VRMethod( "CN_SMBTREE", "GetRecordList", "Selected", "handle." ) … … 2280 2283 options.!mastertype = '' 2281 2284 options.!memlen = advanced.!memlen 2282 say "advanced.!readonly = "advanced.!readonly 2283 say "options.!readonly = "options.!readonly 2284 options.!easupport = advanced.!easupport/* Hier wird das zeug vom Dialog berschrieben */ 2285 options.!readonly = advanced.!readonly /* Hier wird das zeug vom Dialog berschrieben */ 2286 say "advanced.!readonly = "advanced.!readonly 2287 say "options.!readonly = "options.!readonly 2285 options.!easupport = advanced.!easupport 2286 options.!readonly = advanced.!readonly 2288 2287 options.!loglevel = advanced.!loglevel 2289 2288 options.!logfile = advanced.!logfile … … 2296 2295 server = STRIP( VRGet( "EF_SERVER", "Value" )) 2297 2296 network = STRIP( VRGet( "EF_NETWORK", "Value" )) 2298 say "network = "network2299 2297 mtype = VRGet( "CHK_MTYPE", "Set" ) 2300 2298 userid = STRIP( VRGet( "EF_USER", "Value" )) … … 2411 2409 /*:VRX PB_REFRESH_Click 2412 2410 */ 2413 PB_REFRESH_Click: PROCEDURE EXPOSE settings. options. fs. samba. debuglevel 2411 PB_REFRESH_Click: PROCEDURE EXPOSE settings. options. fs. samba. debuglevel advanced. 2414 2412 IF options.!debug == 1 THEN SAY time()' '||"PB_REFRESH_Click started" 2415 2413 call _UserCredUpdate 2416 2414 ok = VRset("Pict_Throbber", "Visible", 1) 2417 2415 ok = VRset("TM_Throbber", "Enabled", 1) 2416 ShowHidden = advanced.!special 2418 2417 call _RefreshTree 2419 2418 IF options.!debug == 1 THEN SAY time()' '||"PB_REFRESH_Click done" … … 2541 2540 CALL VRSet "PB_DETACH", "Enabled", 0 2542 2541 CALL VRSet "PB_UNMOUNT", "Enabled", 0 2542 2543 ok = VRSet("Menu_Selected_Remove", "Visible", 0) 2544 ok = VRSet("Menu_Selected_Retry", "Visible", 0) 2545 2543 2546 IF options.!debug == 1 THEN SAY time()' '||'Refresh: Remove records, disable buttons done.' 2544 2547 … … 2573 2576 IF options.!debug == 1 THEN SAY time()' '||"SaveSettings started" 2574 2577 2578 /* This does not make sense anymore 2575 2579 settings.!network = VRGet("EF_NETWORK","Value") 2576 2580 CALL VRSetIni 'Settings', 'Network', settings.!network, settings.!ini, 'NoClose' 2581 */ 2577 2582 2578 2583 font = VRGet('CN_CURRENT', 'Font') … … 2600 2605 CALL VRSetIni 'Settings', 'ConDetOn', settings.!condeton, settings.!ini, 'NoClose' 2601 2606 2602 CALL VRSetIni 'Settings', 'BrowseAuth', advanced.!browseauth, settings.!ini, 'NoClose' 2603 CALL VRSetIni 'Settings', 'BrowseImme', advanced.!browseimme, settings.!ini, 'NoClose' 2604 CALL VRSetIni 'Settings', 'Debug' , advanced.!debug , settings.!ini, 'NoClose' 2605 CALL VRSetIni 'Settings', 'AlwaysMP' , advanced.!alwaysmp , settings.!ini, 'NoClose' 2607 CALL VRSetIni 'Settings', 'BrowseAuth', advanced.!browseauth, settings.!ini, 'NoClose' 2608 CALL VRSetIni 'Settings', 'BrowseImme', advanced.!browseimme, settings.!ini, 'NoClose' 2609 CALL VRSetIni 'Settings', 'Debug', advanced.!debug , settings.!ini, 'NoClose' 2610 CALL VRSetIni 'Settings', 'AlwaysMP', advanced.!alwaysmp , settings.!ini, 'NoClose' 2611 CALL VRSetIni 'Settings', 'SpecialShares', advanced.!special , settings.!ini, 'NoClose' 2606 2612 2607 2613 /* Save position and size */ … … 2668 2674 advanced.!debug = '' 2669 2675 advanced.!alwaysmp = '' 2676 advanced.!special = '' 2670 2677 2671 2678 credentials.!username = "" … … 2711 2718 CALL NLVSetText 'CB_BROWSEAUTH','Caption', 49 2712 2719 CALL NLVSetText 'CB_ALWAYSMP', 'Caption', 65 2720 CALL NLVSetText 'CB_SPECIAL', 'Caption', 66 2713 2721 2714 2722 CALL VRSet "SW_ADVANCED", "HelpTag", NLVGetMessage(40) … … 2726 2734 2727 2735 CALL VRSet 'CB_LOGGING', 'Set', VRFileExists(SysBootDrive()'\ndpsmb.dbg') 2736 2737 IF advanced.!special \= '' THEN 2738 CALL VRSet 'CB_SPECIAL', 'Set', advanced.!special 2728 2739 2729 2740 IF advanced.!browseauth \= '' THEN … … 2872 2883 */ 2873 2884 TM_RefreshTreeDisplay_Trigger: 2885 ShowHidden = advanced.!special 2874 2886 call _RefreshTreeDisplay 2875 2887 return -
TabularUnified branches/guitools-2.0/evfsgui/evfsi_de.mkm ¶
r324 r325 42 42 EVG0037I: Erklrung 43 43 EVG0038I: Er~neuern 44 EVG0039I: LAN-Ressourcen-Browser44 EVG0039I: Netzwerkumgebung 45 45 ; Erweitert properties window UI 46 46 EVG0040I: Erweiterte Verbindungsoptionen … … 52 52 EVG0046I: Protokollierung 53 53 EVG0047I: Globale Optionen 54 EVG0048I: LAN-Ressourcensofort aktualisieren54 EVG0048I: Netzwerkumgebung sofort aktualisieren 55 55 EVG0049I: Fr Browsing authentifizieren 56 56 ; Prompts and other messages … … 71 71 EVG0064I: Diese Verbindung besteht bereits - trotzdem fortfahren? 72 72 EVG0065I: Mountpoint auch bei Fehlschlag anlegen 73 EVG0066 ?:74 EVG0067 ?:75 EVG0068 ?:76 EVG0069 ?:73 EVG0066I: Alle (auch spezielle) Freigaben zeigen 74 EVG0067I: Status 75 EVG0068I: EA 76 EVG0069I: R/W 77 77 EVG0070?: 78 78 EVG0071?: … … 91 91 EVG0083I: Ausge~whlt 92 92 EVG0084I: ~Hilfe 93 EVG0085I: ~Dialog anzeige94 EVG0086I: ~ Strukturanzeige93 EVG0085I: ~Dialog 94 EVG0086I: ~Netzwerkumgebung 95 95 EVG0087I: ~Knopfleiste 96 EVG0088I: ~Verbindungsdetail anzeige96 EVG0088I: ~Verbindungsdetails 97 97 EVG0089I: Entfernen 98 98 EVG0090I: Nochmals versuchen -
TabularUnified branches/guitools-2.0/evfsgui/evfsi_en.mkm ¶
r324 r325 42 42 EVG0037I: Explanation 43 43 EVG0038I: ~Refresh 44 EVG0039I: LAN-Resource-Browser44 EVG0039I: Network neighbourhood 45 45 ; Advanced properties window UI 46 46 EVG0040I: Advanced Mount Options … … 52 52 EVG0046I: Logging 53 53 EVG0047I: Global settings 54 EVG0048I: Browseimmediately54 EVG0048I: Refresh network neighbourhood immediately 55 55 EVG0049I: Authenticate for browsing 56 56 ; Prompts and other messages … … 71 71 EVG0064I: This connection already exists - continue anyway? 72 72 EVG0065I: Create mountpoint, even when connection attempt fails 73 EVG0066 ?:74 EVG0067 ?:75 EVG0068 ?:76 EVG0069 ?:73 EVG0066I: Show all (special) shares 74 EVG0067I: Status 75 EVG0068I: EA 76 EVG0069I: R/W 77 77 EVG0070?: 78 78 EVG0071?: … … 91 91 EVG0083I: ~Selected 92 92 EVG0084I: ~Help 93 EVG0085I: ~Dialog view94 EVG0086I: ~ Tree view93 EVG0085I: ~Dialog 94 EVG0086I: ~LAN-Resource browser 95 95 EVG0087I: ~Buttons 96 EVG0088I: ~Connection details view96 EVG0088I: ~Connection details 97 97 EVG0089I: Remove 98 98 EVG0090I: Retry -
TabularUnified branches/guitools-2.0/shared/smbtree.vrs ¶
r319 r325 66 66 parent = smbtree.!machine 67 67 smbtree.!share = VRMethod( "CN_smbtree", "AddRecord",parent,, share||'0D0A'x||comment, res) 68 ok = VRMethod( "CN_smbtree", "SetRecordAttr", smbtree.!share, "ReadOnly", 1) 68 69 if pos("$", share) > 0 then ok = VRMethod( "CN_smbtree", "SetRecordAttr", smbtree.!share, "Visible", ShowHidden) 69 70 end … … 76 77 if VRGet("CN_smbtree","View") = "IconTree" then parent = smbtree.!workgroup; else parent = "" 77 78 smbtree.!machine = VRMethod( "CN_smbtree", "AddRecord",parent,, machine||'0D0A'x||comment,"#35:PMWP.DLL") 79 ok = VRMethod( "CN_smbtree", "SetRecordAttr", smbtree.!machine, "ReadOnly", 1) 78 80 ok = VRMethod( "CN_smbtree", "SetFieldData", smbtree.!machine, NBFH, machine, CommentFH, Comment, WorkGroupFH, CurWG) 79 81 if VRGet("CN_smbtree","View") = "Detail" then do … … 116 118 end 117 119 end 118 ok = VRSet( "CN_smbtree", "Painting", 1 ) 119 ok = VRSet( "CN_smbtree", "Painting", 0 ) 120 120 ok = VRSet( "CN_smbtree", "Painting", 1 ) 121 ok = VRSet( "CN_smbtree", "Painting", 0 ) 121 122 end 122 123 otherwise do … … 132 133 ok = VRMethod( "CN_smbtree", "SetFieldData", smbtree.!workgroup, WorkGroupFH, smbtreeline.sl) 133 134 ok = VRMethod( "CN_smbtree", "SetRecordAttr", smbtree.!workgroup, "Collapsed", 0) 135 ok = VRMethod( "CN_smbtree", "SetRecordAttr", smbtree.!workgroup, "ReadOnly", 1) 134 136 end 135 137 CurWG = smbtreeline.sl
Note:
See TracChangeset
for help on using the changeset viewer.