- Timestamp:
- Jul 31, 2016, 9:23:16 PM (5 years ago)
- Location:
- trunk/Lucide
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Lucide/gui/Lucide.rc
r460 r523 106 106 "O", CM_OPEN, CONTROL 107 107 "o", CM_OPEN, CONTROL 108 "a", CM_SAVEAS, CONTROL 109 "A", CM_SAVEAS, CONTROL 108 110 "P", CM_PRINT, CONTROL 109 111 "p", CM_PRINT, CONTROL … … 125 127 "I", CM_DOCINFO, CONTROL 126 128 "i", CM_DOCINFO, CONTROL 129 VK_F9, CM_NAVPANE, VIRTUALKEY 127 130 VK_F11, CM_FULLSCREEN, VIRTUALKEY 128 131 VK_F5, CM_PRESENTATION, VIRTUALKEY -
trunk/Lucide/gui/Lucide_res.H
r450 r523 179 179 #define IDC_MBOTTOM 33 180 180 #define IDC_SELECTED_FORM 34 181 #define IDC_REVERSEPRINT 35 181 182 182 183 #define IDD_PASSWORD 1009 -
trunk/Lucide/gui/dialogs.rc
r451 r523 152 152 CONTROL "PD_PRINT_RANGE_AND_COPIES", -1, 2, 140, 253, 55, WC_STATIC, SS_GROUPBOX | DT_LEFT | DT_TOP | DT_MNEMONIC | WS_VISIBLE | WS_GROUP 153 153 PRESPARAMS PP_FONTNAMESIZE "9.WarpSans" 154 CONTROL "PD_RANGE_ALL", IDC_RANGEALL, 9, 177, 106, 10, WC_BUTTON, BS_AUTORADIOBUTTON | WS_VISIBLE | WS_GROUP | WS_TABSTOP 154 CONTROL "PD_RANGE_ALL", IDC_RANGEALL, 9, 177, 40, 10, WC_BUTTON, BS_AUTORADIOBUTTON | WS_VISIBLE | WS_GROUP | WS_TABSTOP 155 PRESPARAMS PP_FONTNAMESIZE "9.WarpSans" 156 CONTROL "PD_REVESE_PRINT", IDC_REVERSEPRINT, 80, 177, 90, 10, WC_BUTTON, BS_AUTOCHECKBOX | WS_VISIBLE | WS_TABSTOP 155 157 PRESPARAMS PP_FONTNAMESIZE "9.WarpSans" 156 158 CONTROL "PD_RANGE_CURRENT_PAGE", IDC_RANGECURRENT, 9, 167, 106, 10, WC_BUTTON, BS_AUTORADIOBUTTON | WS_VISIBLE | WS_TABSTOP … … 166 168 CONTROL "", IDC_PGTO, 208, 158, 39, 9, WC_SPINBUTTON, SPBS_MASTER | SPBS_NUMERICONLY | SPBS_JUSTCENTER | WS_VISIBLE | WS_GROUP | WS_TABSTOP | WS_DISABLED 167 169 PRESPARAMS PP_FONTNAMESIZE "9.WarpSans" 168 CONTROL "PD_NUMBER_OF_COPIES", -1, 1 20, 178, 85, 8, WC_STATIC, SS_TEXT | DT_LEFT | DT_TOP | DT_MNEMONIC | WS_VISIBLE | WS_GROUP170 CONTROL "PD_NUMBER_OF_COPIES", -1, 150, 178, 75, 8, WC_STATIC, SS_TEXT | DT_LEFT | DT_TOP | DT_MNEMONIC | WS_VISIBLE | WS_GROUP 169 171 PRESPARAMS PP_FONTNAMESIZE "9.WarpSans" 170 172 CONTROL "", IDC_COPIES, 208, 178, 39, 9, WC_SPINBUTTON, SPBS_MASTER | SPBS_NUMERICONLY | SPBS_JUSTCENTER | WS_VISIBLE | WS_GROUP | WS_TABSTOP -
trunk/Lucide/gui/printDlg.cpp
r476 r523 560 560 break; 561 561 } 562 562 // Reverse grayed for single page documents 563 WinEnableControl( hwnd, IDC_REVERSEPRINT, 564 _this->doc->getPageCount( ev ) != 1 ); 563 565 // ignore margins 564 566 buttonctl = 0; … … 637 639 case IDC_RANGECURRENT: 638 640 case IDC_RANGEPAGES: 641 case IDC_PGFROM: 642 case IDC_PGTO: 639 643 { 640 644 BOOL en = WinQueryButtonCheckstate( hwnd, IDC_RANGEPAGES ); … … 643 647 WinEnableControl( hwnd, IDC_LABELTO, en ); 644 648 WinEnableControl( hwnd, IDC_PGTO, en ); 649 if (WinQueryButtonCheckstate( hwnd, IDC_RANGECURRENT )) 650 WinEnableControl( hwnd, IDC_REVERSEPRINT, FALSE ); 651 else if (_this->doc->getPageCount( ev ) != 1) 652 WinEnableControl( hwnd, IDC_REVERSEPRINT, TRUE ); 653 if (WinQueryButtonCheckstate( hwnd, IDC_RANGEPAGES )) 654 { 655 LONG tmpVal = 0, tmpVal2 = 0 ; 656 WinSendDlgItemMsg( hwnd, IDC_PGFROM, SPBM_QUERYVALUE, 657 MPFROMP( &tmpVal ), 658 MPFROM2SHORT( 0, SPBQ_UPDATEIFVALID ) ); 659 WinSendDlgItemMsg( hwnd, IDC_PGTO, SPBM_QUERYVALUE, 660 MPFROMP( &tmpVal2 ), 661 MPFROM2SHORT( 0, SPBQ_UPDATEIFVALID ) ); 662 if ( tmpVal != tmpVal2 ) 663 WinEnableControl( hwnd, IDC_REVERSEPRINT, TRUE ); 664 else 665 WinEnableControl( hwnd, IDC_REVERSEPRINT, FALSE ); 666 } 645 667 } 646 668 break; … … 757 779 } 758 780 781 if ( WinQueryButtonCheckstate( hwnd, IDC_REVERSEPRINT ) ) 782 { 783 LONG tmpVal = _this->psetup->pgfrom; 784 _this->psetup->pgfrom = _this->psetup->pgto; 785 _this->psetup->pgto = tmpVal; 786 } 759 787 // write ini pagerange 760 788 PrfWriteProfileString(HINI_USERPROFILE, appName, PageRange, itoa(iniint, buf, 10)); -
trunk/Lucide/lng/Lucide.lng
r515 r523 16 16 MENU_RECENT_FILES=~Recent files 17 17 MENU_CLEAR_LIST=~Clear list 18 MENU_SAVE_AS=~Save As...18 MENU_SAVE_AS=~Save as...\tCtrl+A 19 19 MENU_CLOSE=~Close 20 20 # MENU_PAGE_SETUP: to delete … … 48 48 MENU_FONTS_INFO=Fonts ~info... 49 49 MENU_WINDOW=~Window 50 MENU_SHOW_NAV_PANE=~Show navigation pane 50 MENU_SHOW_NAV_PANE=~Show navigation pane\tF9 51 51 MENU_FULLSCREEN=~Full screen\tF11 52 52 MENU_PRESENTATION=~Presentation\tF5 … … 121 121 FONTINFO_TYPE=Type 122 122 FONTINFO_EMBEDDED=Embedded? 123 FONTINFO_SUBNAME=Substitute Font 123 124 # Embedded types 124 125 FONTINFO_EMBED_NOT_EMBEDDED=Not embedded … … 200 201 PD_PRINT_RANGE_AND_COPIES=Print ~range and copies 201 202 PD_RANGE_ALL=~All 203 PD_REVESE_PRINT=~Reverse 202 204 PD_RANGE_CURRENT_PAGE=C~urrent page 203 205 PD_RANGE_PAGES=Pa~ges 204 206 PD_FROM=~From 205 207 PD_TO=~To 206 PD_NUMBER_OF_COPIES=Number of ~copies208 PD_NUMBER_OF_COPIES=Number of copi~es 207 209 PD_RANGE_EVEN_ODD_LABEL=Print range 208 210 PD_RANGE_EVEN_ODD=Even and Odd pages … … 211 213 PD_PRINT_TYPE=Print type 212 214 PD_TYPE_POSTSCRIPT=Post~script 213 PD_PRINT_TO_FILE=Print to file215 PD_PRINT_TO_FILE=Print to ~file 214 216 PD_TYPE_ASIMAGE=As ~image 215 217 PD_HIGHER_IMAGE_QUALITY=~Higher image quality (slower and require more memory) 216 218 PD_PAGE_ORIENTATION=Page orientation 217 PD_PORTRAIT=P ortrait218 PD_LANDSCAPE= Landscape219 PD_PORTRAIT=P~ortrait 220 PD_LANDSCAPE=~Landscape 219 221 PD_MARGINS=Margins (mm) 220 PD_IGNORE_PRINTER_MARGINS=Ignore printer margins222 PD_IGNORE_PRINTER_MARGINS=Ignore printer ~margins 221 223 PD_MLEFT=Left 222 224 PD_MRIGHT=Right … … 225 227 PD_SELECTED_FORM=Selected form 226 228 PD_BTNPRINT=~Print 227 PD_BTNCANCEL= Cancel229 PD_BTNCANCEL=~Cancel 228 230 PD_WRONG_MARGINS=Wrong margins! 229 231 # other 'print'-related messages -
trunk/Lucide/lng/Lucide_da.lng
r515 r523 16 16 MENU_RECENT_FILES=~Nyeste filer 17 17 MENU_CLEAR_LIST=~Slet liste 18 MENU_SAVE_AS=~Gem som... 18 MENU_SAVE_AS=~Gem som...\tCtrl+A 19 19 MENU_CLOSE=Lu~k 20 20 # MENU_PAGE_SETUP=Side ~opstning... … … 47 47 MENU_FONTS_INFO=Font ~info... 48 48 MENU_WINDOW=~Vindue 49 MENU_SHOW_NAV_PANE=~Vis navigations panel 49 MENU_SHOW_NAV_PANE=~Vis navigations panel\tF9 50 50 MENU_FULLSCREEN=~Fuldskrm\tF11 51 51 MENU_PRESENTATION=~Prsentation\tF5 … … 197 197 PD_PRINT_RANGE_AND_COPIES=Print ~flgende sider 198 198 PD_RANGE_ALL=A~lle 199 PD_REVESE_PRINT=~Reverse 199 200 PD_RANGE_CURRENT_PAGE=N~uvrende side 200 201 PD_RANGE_PAGES=S~ider -
trunk/Lucide/lng/Lucide_de.lng
r515 r523 16 16 MENU_RECENT_FILES=~Wiederholen 17 17 MENU_CLEAR_LIST=~Liste lschen 18 MENU_SAVE_AS=~Sichern unter... 18 MENU_SAVE_AS=~Sichern unter...\tCtrl+A 19 19 MENU_CLOSE=S~chlieáen 20 20 # MENU_PAGE_SETUP: to delete … … 48 48 MENU_FONTS_INFO=Schr~ifteninformation... 49 49 MENU_WINDOW=~Fenster 50 MENU_SHOW_NAV_PANE=~Navigator anzeigen 50 MENU_SHOW_NAV_PANE=~Navigator anzeigen\tF9 51 51 MENU_FULLSCREEN=~Vollbild\tF11 52 52 MENU_PRESENTATION=~Prsentation\tF5 … … 200 200 PD_PRINT_RANGE_AND_COPIES=Dr~uckbereich und Kopien 201 201 PD_RANGE_ALL=A~lles 202 PD_REVESE_PRINT=~Reverse 202 203 PD_RANGE_CURRENT_PAGE=A~ktuelle Seite 203 204 PD_RANGE_PAGES=Sei~ten -
trunk/Lucide/lng/Lucide_es.lng
r515 r523 16 16 MENU_RECENT_FILES=Archivos ~recientes 17 17 MENU_CLEAR_LIST=~Borrar la lista 18 MENU_SAVE_AS=~Guardar como... 18 MENU_SAVE_AS=~Guardar como...\tCtrl+A 19 19 MENU_CLOSE=~Cerrar 20 20 # MENU_PAGE_SETUP: to delete … … 50 50 51 51 MENU_WINDOW=V~entana 52 MENU_SHOW_NAV_PANE=Mostrar panel de ~navegaci¢n 52 MENU_SHOW_NAV_PANE=Mostrar panel de ~navegaci¢n\tF9 53 53 MENU_FULLSCREEN=~Pantalla completa\tF11 54 54 MENU_PRESENTATION=~Presentaci¢n\tF5 … … 200 200 PD_PRINT_RANGE_AND_COPIES=~Rango de impresi¢n y n§ de copias 201 201 PD_RANGE_ALL=~Todas 202 PD_REVESE_PRINT=~Reverse 202 203 PD_RANGE_CURRENT_PAGE=S¢lo la p gina ~actual 203 204 PD_RANGE_PAGES=~P ginas -
trunk/Lucide/lng/Lucide_fr.lng
r515 r523 19 19 MENU_RECENT_FILES=Fichiers ~rcents 20 20 MENU_CLEAR_LIST=~Effacer la liste 21 MENU_SAVE_AS=~Enregistrer sous... 21 MENU_SAVE_AS=~Enregistrer sous...\tCtrl+A 22 22 MENU_CLOSE=~Fermer 23 23 # MENU_PAGE_SETUP: to delete … … 53 53 MENU_FONTS_INFO=I~nfo. sur les polices... 54 54 MENU_WINDOW=~Fentres 55 MENU_SHOW_NAV_PANE=Afficher le panneau de ~navigation 55 MENU_SHOW_NAV_PANE=Afficher le panneau de ~navigation\tF9 56 56 MENU_FULLSCREEN=~Plein cran\tF11 57 57 MENU_PRESENTATION=~Prsentation\tF5 … … 216 216 PD_PRINT_RANGE_AND_COPIES=~tendue et nombre de copies 217 217 PD_RANGE_ALL=T~outes 218 PD_REVESE_PRINT=~Reverse 218 219 PD_RANGE_CURRENT_PAGE=Page en co~urs 219 220 PD_RANGE_PAGES=Pa~ges -
trunk/Lucide/lng/Lucide_it.lng
r515 r523 16 16 MENU_RECENT_FILES=~Files recenti 17 17 MENU_CLEAR_LIST=~Cancella lista 18 MENU_SAVE_AS=~Salva come... 18 MENU_SAVE_AS=~Salva come...\tCtrl+A 19 19 MENU_CLOSE=~Chiudi 20 20 # MENU_PAGE_SETUP: to delete … … 48 48 MENU_FONTS_INFO=Informazioni ~tipi di carattere... 49 49 MENU_WINDOW=~Finestra 50 MENU_SHOW_NAV_PANE=Mostra il pannello di ~navigazione 50 MENU_SHOW_NAV_PANE=Mostra il pannello di ~navigazione\tF9 51 51 MENU_FULLSCREEN=Schermo ~intero\tF11 52 52 MENU_PRESENTATION=~Presentazione\tF5 … … 199 199 PD_PRINT_RANGE_AND_COPIES=~Intervallo di stampa e copie 200 200 PD_RANGE_ALL=~Tutto 201 PD_REVESE_PRINT=~Reverse 201 202 PD_RANGE_CURRENT_PAGE=Pa~gina corrente 202 203 PD_RANGE_PAGES=~Pagine -
trunk/Lucide/lng/Lucide_nl.lng
r515 r523 16 16 MENU_RECENT_FILES=~Recente bestanden 17 17 MENU_CLEAR_LIST=~Lijst wissen 18 MENU_SAVE_AS=Op~slaan als... 18 MENU_SAVE_AS=Op~slaan als...\tCtrl+A 19 19 MENU_CLOSE=~Sluiten 20 20 # MENU_PAGE_SETUP: to delete … … 48 48 MENU_FONTS_INFO=Lettert~ype informatie... 49 49 MENU_WINDOW=Ve~nster 50 MENU_SHOW_NAV_PANE=~Tonen navigatiepaneel 50 MENU_SHOW_NAV_PANE=~Tonen navigatiepaneel\tF9 51 51 MENU_FULLSCREEN=Volledig ~scherm\tF11 52 52 MENU_PRESENTATION=~Presentatie\tF5 … … 200 200 PD_PRINT_RANGE_AND_COPIES=Afdrukgebied en kopien 201 201 PD_RANGE_ALL=A~lles 202 PD_REVESE_PRINT=~Reverse 202 203 PD_RANGE_CURRENT_PAGE=H~uidige pagina 203 204 PD_RANGE_PAGES=Pa~gina's -
trunk/Lucide/lng/Lucide_ru.lng
r516 r523 16 16 MENU_RECENT_FILES=¥~€ ¢š¥ ä ©«ë 17 17 MENU_CLEAR_LIST=~çšáâšâì 18 MENU_SAVE_AS=~®åà šâì ª ª... 18 MENU_SAVE_AS=~®åà šâì ª ª...\tCtrl+A 19 19 MENU_CLOSE=~ ªàëâì 20 20 # MENU_PAGE_SETUP: to delete … … 48 48 MENU_FONTS_INFO=ä®à¬ æšï ® ~èàšäâ å... 49 49 MENU_WINDOW=~ª® 50 MENU_SHOW_NAV_PANE=~â®¡à Š âì ¯ ¥«ì ¢š£ æšš 50 MENU_SHOW_NAV_PANE=~â®¡à Š âì ¯ ¥«ì ¢š£ æšš\tF9 51 51 MENU_FULLSCREEN=~®«®íªà ë© à¥Šš¬\tF11 52 52 MENU_PRESENTATION=~१¥â æšï\tF5 … … 201 201 PD_PRINT_RANGE_AND_COPIES=š ¯ §® š ª®¯šš 202 202 PD_RANGE_ALL=~ᥠ203 PD_REVESE_PRINT=~Reverse 203 204 PD_RANGE_CURRENT_PAGE=~¥ªãéãî áâà šæã 204 205 PD_RANGE_PAGES=~âà šæë -
trunk/Lucide/lng/Lucide_sv.lng
r515 r523 9 9 MENU_NEW_WINDOW=~Nytt fnster 10 10 MENU_OPEN=ppna...\tCtrl+O 11 MENU_SAVE_AS=Spara som... 11 MENU_SAVE_AS=Spara som...\tCtrl+A 12 12 # MENU_PAGE_SETUP: to delete 13 13 MENU_PAGE_SETUP=Sida instllningar... … … 38 38 MENU_FONTS_INFO=Font~info... 39 39 MENU_WINDOW=~Fnster 40 MENU_SHOW_NAV_PANE=Visa navigationspanel 40 MENU_SHOW_NAV_PANE=Visa navigationspanel\tF9 41 41 MENU_FULLSCREEN=Fullskrm\tF11 42 42 MENU_HELP=~Hjlp … … 185 185 PD_PRINT_RANGE_AND_COPIES=Utskrifts~omrde och kopior 186 186 PD_RANGE_ALL=~Alla 187 PD_REVESE_PRINT=~Reverse 187 188 PD_RANGE_CURRENT_PAGE=A~ktuell sida 188 189 PD_RANGE_PAGES=Si~dor -
trunk/Lucide/lng/Lucide_zh_TW.lng
r515 r523 8 8 MENU_DOCUMENT=€å¥ó(~D) 9 9 MENU_OPEN=¶}±Ò(~O)...\tCtrl+O 10 MENU_SAVE_AS=¥tŠs·sÀÉ(~S)... 10 MENU_SAVE_AS=¥tŠs·sÀÉ(~S)...\tCtrl+A 11 11 MENU_PAGE_SETUP=³]©w¶±(~G)... 12 12 MENU_PRINT=ŠCŠL(~P)...\tCtrl+P … … 35 35 MENU_CONTINUOUS=³sÄò(~O) 36 36 MENU_WINDOW=µøµ¡(~W) 37 MENU_SHOW_NAV_PANE=Åã¥ÜŸÉ€Þ®Ø(~S) 37 MENU_SHOW_NAV_PANE=Åã¥ÜŸÉ€Þ®Ø(~S)\tF9 38 38 MENU_FULLSCREEN=¥þ¿Ã¹õ(~F)\tF11 39 39 MENU_HELP=žÑ»¡(~H) … … 167 167 PD_PRINT_RANGE_AND_COPIES=ŠCŠLœd³ò€Î¥÷ŒÆ(~R) 168 168 PD_RANGE_ALL=¥þ³¡(~A) 169 PD_REVESE_PRINT=~Reverse 169 170 PD_RANGE_CURRENT_PAGE=¥Ø«e¶±(~U) 170 171 PD_RANGE_PAGES=¶±(~G) -
trunk/Lucide/lng/lucide_cs_cz.lng
r515 r523 16 16 MENU_RECENT_FILES=~Ned vn soubory 17 17 MENU_CLEAR_LIST=S~mazat seznam 18 MENU_SAVE_AS=~Ulo§it jako... 18 MENU_SAVE_AS=~Ulo§it jako...\tCtrl+A 19 19 MENU_CLOSE=~Zavý¡t 20 20 # MENU_PAGE_SETUP: smazat … … 51 51 MENU_FONTS_INFO=In~formace o p¡smech... 52 52 MENU_WINDOW=~Okno 53 MENU_SHOW_NAV_PANE=~Zobrazit navigan¡ liçtu 53 MENU_SHOW_NAV_PANE=~Zobrazit navigan¡ liçtu\tF9 54 54 MENU_FULLSCREEN=~Cel obrazovka\tF11 55 55 MENU_PRESENTATION=~Prezentace\tF5 … … 211 211 PD_PRINT_RANGE_AND_COPIES=TiçtØnì ~rozsah a poet kopi¡ 212 212 PD_RANGE_ALL=~Vçe 213 PD_REVESE_PRINT=~Reverse 213 214 PD_RANGE_CURRENT_PAGE=~Aktu ln¡ strana 214 215 PD_RANGE_PAGES=~Strany
Note: See TracChangeset
for help on using the changeset viewer.