- Timestamp:
- Sep 6, 2009, 5:13:15 PM (16 years ago)
- Location:
- branches/guitools-2.0/evfsgui
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/guitools-2.0/evfsgui/changes
r325 r326 24 24 - Added: Sort smbtree view ascending 25 25 - Added: Optionally turn on/off special ($) shares 26 - Added: Optionally use big icons 26 27 - Changed: Several changes in GUI style (as suggested by Alex Taylor) 27 28 - Changed: Left align buttons in current connections panel (as suggested by … … 31 32 - Changed: Main icon is now the one done by Alex Taylor 32 33 - Changed: Use PM_Default_Colors for title sections (as suggested by Alex Taylor) 34 - Changed: German translation of "Retry" 33 35 - Fixed: Loading a profile presented the user a half drawn window 34 36 - Fixed: CltInit uses smbclient.exe instead of smbd.exe to find Samba binaries … … 36 38 - Fixed: Missing NLV aware strings 37 39 - Fixed: Don't let user edit network neighbourhood results 40 - Fixed: Claiming a passive connection already exists is nonsense 41 - Fixed: Disallow connecting to printers via context menu 42 - Fixed: Edit and Selected menu easily got out of sync 43 - Fixed: Another missing record validation 44 38 45 ToDo: 39 - Edit and Selected menu easily got out of sync (partly fixed)40 46 - Major code refactoring 41 47 - Create Icon. stem in order to ease maintainance of icons -
branches/guitools-2.0/evfsgui/evfsgui.VRP
r325 r326 4 4 MacroPath: VRM: U:\Develop\Samba\guitools-2.0\smbclgui 5 5 EXEPath: 6 RunParameters: y:\test.evp6 RunParameters: -ndfs 7 7 RunDirectory: 8 8 VRXWindow: __VREMainWindow,1,530,2457,879,4071 9 9 VRXWindow: __VRESectionListWindow,1,337,11708,11623,3686 10 VRXWindow: __VREToolsWindow,1,518,530,698 7,166910 VRXWindow: __VREToolsWindow,1,518,530,6984,1663 11 11 VRXWindow: __VREWindListWindow,1,482,7661,2650,3150 12 12 UserFile: 1 -
branches/guitools-2.0/evfsgui/evfsgui.VRX
r325 r326 279 279 rh = VRInfo('Record') 280 280 if VRMethod( 'CN_CONDET', "ValidateRecord", rh) <> 1 then return 281 281 282 if VRMethod( 'CN_CONDET', "GetFieldData", rh, CD.StatusFH) = '#68:PMWP.DLL' then do 282 283 ok = VRSet("Menu_Selected_Retry", "Enabled",1) … … 285 286 ok = VRMethod( "Menu_Selected", "Popup", , , "", "" ) 286 287 return 287 288 288 /*:VRX CN_CONDET_DragStart 289 289 */ … … 588 588 window = VRLoadSecondary( "SW_LOGIN", "W" ) 589 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) 590 591 if VRGet(srcCtn,'Name') = "CN_CONDET" & VRMethod( 'CN_CONDET', "ValidateRecord", srcRec) = 1 then do 592 if VRMethod("CN_CONDET", "GetRecordAttr", srcRec, "Icon") = '#68:PMWP.DLL' then ok = VRMethod( "CN_CONDET", "RemoveRecord", srcRec) 593 end 592 594 return 593 595 … … 595 597 */ 596 598 CN_SMBTREE_ContextMenu: 599 rh = VRInfo('Record') 600 if VRMethod( 'CN_SMBTREE', "ValidateRecord", rh) <> 1 then return 601 602 Icon = VRMethod("CN_SMBTREE", "GetRecordAttr", rh, "Icon") 603 604 if Icon = "#65:PMWP.DLL" then do /* Printers not supported at the moment */ 605 CALL VRMessage 'Main', NLVGetMessage( 62 ), NLVGetMessage( 5 ), 'E' 606 return 607 end 608 597 609 ok = VRMethod( "Menu_Selected", "Popup", , , "", "" ) 598 610 return … … 900 912 IF advanced.!special == '' THEN advanced.!special = 0 901 913 914 advanced.!bigicons = VRGetIni('Settings', 'BigIcons', settings.!ini) 915 IF advanced.!bigicons == '' THEN advanced.!bigicons = 0 916 902 917 /* Apply the settings 903 918 */ … … 911 926 ok = VRSet("DT_SMBTREE","BACKCOLOR", settings.!curbcolor ) 912 927 ok = VRSet("DT_SMBTREE","FORECOLOR", settings.!curfcolor ) 928 929 ok = VRset("CN_CURRENT", "MiniIcons", \advanced.!bigicons) 930 ok = VRset("CN_SMBTREE", "MiniIcons", \advanced.!bigicons) 931 ok = VRset("CN_CONDET", "MiniIcons", \advanced.!bigicons) 932 933 913 934 914 935 ok = VRSet("Menu_View_Buttons","Checked", settings.!buttonson) … … 1499 1520 DO i = 1 TO records.0 1500 1521 hash = VRMethod("CN_CONDET","GetFieldData", records.i, cd.hashfh) 1501 if hash = md5 then do1522 if hash = md5 & VRMethod("CN_CONDET","GetFieldData", records.i, cd.statusfh) = '#64:PMWP.DLL' then do /* Same hash, status active */ 1502 1523 buttons.0 = 2 1503 1524 buttons.1 = NLVGetMessage(9) … … 1884 1905 advanced.!alwaysmp = adv_alwaysmp 1885 1906 advanced.!special = adv_special 1886 END 1887 1907 advanced.!bigicons = adv_bigicons 1908 END 1909 1910 say 'advanced.!bigicons = 'advanced.!bigicons 1888 1911 RETURN 1889 1912 … … 1917 1940 adv_alwaysmp = VRGet( "CB_ALWAYSMP", "Set" ) 1918 1941 adv_special = VRGet( "CB_SPECIAL", "Set" ) 1942 adv_bigicons = VRGet( "CB_BIGICONS", "Set" ) 1919 1943 1920 1944 adv_changed = 1 1921 1945 if adv_debug == 1 then ok = VRRedirectStdio("ON") 1922 1946 else ok = VRRedirectStdio("OFF") 1947 1948 ok = VRset("CN_CURRENT", "MiniIcons", \adv_bigicons) 1949 ok = VRset("CN_SMBTREE", "MiniIcons", \adv_bigicons) 1950 ok = VRset("CN_CONDET", "MiniIcons", \adv_bigicons) 1923 1951 1924 1952 CALL SW_ADVANCED_Close … … 2183 2211 */ 2184 2212 PB_LOAD_Click: PROCEDURE EXPOSE settings. options. advanced. vfs. Profile fs. cd. 2185 say 'PB_load advanced.!browseimme='advanced.!browseimme2186 say 'PB_load advanced.!alwaysmp='advanced.!alwaysmp2187 2213 IF options.!autoload == 1 then filename = Profile 2188 2214 else filename = VRFileDialog('Main', NLVGetMessage( 55 ), 'L', '*.'fs.!profileext) … … 2538 2564 2539 2565 /* call _AddTemplates */ 2540 CALL VRSet "PB_DETACH", "Enabled", 02566 CALL VRSet "PB_DETACH", "Enabled", 0 2541 2567 CALL VRSet "PB_UNMOUNT", "Enabled", 0 2568 2569 ok = VRSet("Menu_Context_Detach", "Visible", 0) 2570 ok = VRSet("Menu_Context_Unmount", "Visible", 0) 2571 ok = VRSet("Menu_Context_Edit", "Visible", 0) 2542 2572 2543 2573 ok = VRSet("Menu_Selected_Remove", "Visible", 0) … … 2610 2640 CALL VRSetIni 'Settings', 'AlwaysMP', advanced.!alwaysmp , settings.!ini, 'NoClose' 2611 2641 CALL VRSetIni 'Settings', 'SpecialShares', advanced.!special , settings.!ini, 'NoClose' 2642 CALL VRSetIni 'Settings', 'BigIcons', advanced.!bigicons , settings.!ini, 'NoClose' 2612 2643 2613 2644 /* Save position and size */ … … 2675 2706 advanced.!alwaysmp = '' 2676 2707 advanced.!special = '' 2708 advanced.!bigicons = '' 2677 2709 2678 2710 credentials.!username = "" … … 2719 2751 CALL NLVSetText 'CB_ALWAYSMP', 'Caption', 65 2720 2752 CALL NLVSetText 'CB_SPECIAL', 'Caption', 66 2753 CALL NLVSetText 'CB_BIGICONS', 'Caption', 70 2721 2754 2722 2755 CALL VRSet "SW_ADVANCED", "HelpTag", NLVGetMessage(40) … … 2735 2768 CALL VRSet 'CB_LOGGING', 'Set', VRFileExists(SysBootDrive()'\ndpsmb.dbg') 2736 2769 2770 IF advanced.!browseauth \= '' THEN 2771 CALL VRSet 'CB_BROWSEAUTH', 'Set', advanced.!browseauth 2772 2773 IF advanced.!browseimme \= '' THEN 2774 CALL VRSet 'CB_BROWSEimme', 'Set', advanced.!browseimme 2775 2776 IF advanced.!debug \= '' THEN 2777 CALL VRSet 'CB_debug', 'Set', advanced.!debug 2778 2779 IF advanced.!alwaysmp \= '' THEN 2780 CALL VRSet 'CB_alwaysmp', 'Set', advanced.!alwaysmp 2781 2737 2782 IF advanced.!special \= '' THEN 2738 2783 CALL VRSet 'CB_SPECIAL', 'Set', advanced.!special 2739 2784 2740 IF advanced.!browseauth \= '' THEN 2741 CALL VRSet 'CB_BROWSEAUTH', 'Set', advanced.!browseauth 2742 2743 IF advanced.!browseimme \= '' THEN 2744 CALL VRSet 'CB_BROWSEimme', 'Set', advanced.!browseimme 2745 2746 IF advanced.!debug \= '' THEN 2747 CALL VRSet 'CB_debug', 'Set', advanced.!debug 2748 2749 IF advanced.!alwaysmp \= '' THEN 2750 CALL VRSet 'CB_alwaysmp', 'Set', advanced.!alwaysmp 2785 IF advanced.!bigicons \= '' THEN 2786 CALL VRSet 'CB_bigicons', 'Set', advanced.!bigicons 2751 2787 2752 2788 window = VRInfo( "Object" ) -
branches/guitools-2.0/evfsgui/evfsi_de.mkm
r325 r326 69 69 EVG0062I: Drucker werden im Moment nicht untersttzt! 70 70 EVG0063I: Verbindungsdetails 71 EVG0064I: Diese Verbindung besteht bereits - trotzdem fortfahren?71 EVG0064I: Diese Verbindung existiert bereits - trotzdem fortfahren? 72 72 EVG0065I: Mountpoint auch bei Fehlschlag anlegen 73 73 EVG0066I: Alle (auch spezielle) Freigaben zeigen … … 75 75 EVG0068I: EA 76 76 EVG0069I: R/W 77 EVG0070 ?:77 EVG0070I: Groáe Symbole 78 78 EVG0071?: 79 79 EVG0072?: … … 96 96 EVG0088I: ~Verbindungsdetails 97 97 EVG0089I: Entfernen 98 EVG0090I: Nochmals versuchen98 EVG0090I: Jetzt verbinden 99 99 EVG0091?: 100 100 EVG0092?: -
branches/guitools-2.0/evfsgui/evfsi_en.mkm
r325 r326 75 75 EVG0068I: EA 76 76 EVG0069I: R/W 77 EVG0070 ?:77 EVG0070I: Large icons 78 78 EVG0071?: 79 79 EVG0072?:
Note:
See TracChangeset
for help on using the changeset viewer.