Changeset 88
- Timestamp:
- Jul 26, 2006, 3:02:50 PM (15 years ago)
- Location:
- trunk/Lucide
- Files:
-
- 19 added
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Lucide/BIN/Lucide.lng
r87 r88 68 68 MSGS_FILE_LOAD_ERROR=File load error! 69 69 MSGS_LOADING_DOCUMENT=Loading document, please wait... 70 MSGS_WARNING=Warning! 71 MSGS_OVERWRITE_FILE=File already exist. Overwrite? 72 MSGS_FILE_SAVE_ERROR=Error saving file! 70 73 71 74 # -
trunk/Lucide/BIN/Lucide_ru.lng
r87 r88 13 13 MSGS_NO_SUIT_PLUG=¥ ¬®£ã ©â𠝮€å®€ïéš© ¯« £š €«ï ¯à®á¬®âà í⮣® €®ªã¬¥â ! 14 14 MSGS_FILE_LOAD_ERROR=èš¡ª § £à㧪š ä ©« ! 15 -
trunk/Lucide/SOURCE/gui/lucide.cpp
r87 r88 263 263 checkZoomMenus(); 264 264 265 WinEnableMenuItem( hWndMenu, CM_SAVEAS, doc->isSaveable( ev ) ); 265 266 setOfPages( doc->getPageCount( ev ) ); 266 267 WinEnableMenuItem( hWndMenu, CM_FONTSINFO, doc->isHaveFontInfo( ev ) ); … … 450 451 } 451 452 453 void Lucide::saveDocumentAs() 454 { 455 char dirbuf[ CCHMAXPATH ]; 456 PFILEDLG fd = new FILEDLG; 457 memset( fd, 0, sizeof( FILEDLG ) ); 458 fd->cbSize = sizeof( FILEDLG ); 459 fd->fl = FDS_CENTER | FDS_SAVEAS_DIALOG; 460 PrfQueryProfileString( HINI_USERPROFILE, appName, lvd, "", 461 dirbuf, sizeof( dirbuf ) ); 462 char fil[ _MAX_FNAME ] = ""; 463 char ext[ _MAX_EXT ] = ""; 464 _splitpath( docName, NULL, NULL, fil, ext ); 465 snprintf( fd->szFullFile, sizeof( fd->szFullFile ), 466 "%s%s%s", dirbuf, fil, ext ); 467 WinFileDlg( HWND_DESKTOP, hWndFrame, fd ); 468 if ( fd->lReturn == DID_OK ) 469 { 470 bool doSave = true; 471 if ( access( fd->szFullFile, F_OK ) == 0 ) 472 { 473 char *t = newstrdupL( MSGS_WARNING ); 474 char *m = newstrdupL( MSGS_OVERWRITE_FILE ); 475 ULONG response = WinMessageBox( HWND_DESKTOP, hWndFrame, m, t, 476 0, MB_YESNO | MB_WARNING | MB_MOVEABLE ); 477 delete m; 478 delete t; 479 480 doSave = ( response == MBID_YES ); 481 } 482 if ( doSave ) 483 { 484 if ( !doc->saveAs( ev, fd->szFullFile ) ) 485 { 486 char *m = newstrdupL( MSGS_FILE_SAVE_ERROR ); 487 WinMessageBox( HWND_DESKTOP, hWndFrame, m, NULL, 488 0, MB_OK | MB_ERROR | MB_MOVEABLE ); 489 delete m; 490 } 491 } 492 } 493 delete fd; 494 } 495 452 496 void Lucide::checkNavpane() 453 497 { … … 580 624 return (MRESULT)FALSE; 581 625 626 case CM_SAVEAS: 627 Lucide::saveDocumentAs(); 628 return (MRESULT)FALSE; 629 582 630 case CM_EXIT: 583 631 WinPostMsg( hWndFrame, WM_CLOSE, NULL, NULL ); -
trunk/Lucide/SOURCE/gui/lucide.h
r72 r88 82 82 static void openDocument(); 83 83 static void loadDocument( const char *fn ); 84 static void saveDocumentAs(); 84 85 static void setDocument( LuDocument *_doc ); 85 86 static void checkNavigationMenus(); -
trunk/Lucide/SOURCE/gui/luutils.cpp
r50 r88 22 22 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 23 23 * in which case the provisions of the LGPL are applicable instead of those 24 * above. If you wish to allow use of your version of this file only under the 24 * above. If you wish to allow use of your version of this file only under the 25 25 * terms of the LGPL, and not to allow others to use your version of this file 26 26 * under the terms of the CDDL, indicate your decision by deleting the 27 27 * provisions above and replace them with the notice and other provisions 28 28 * required by the LGPL. If you do not delete the provisions above, a recipient 29 * may use your version of this file under the terms of any one of the CDDL 29 * may use your version of this file under the terms of any one of the CDDL 30 30 * or the LGPL. 31 31 * … … 442 442 } 443 443 444 void setZoomValues( HWND lbox ) 445 { 446 std::string actsizetext = getLocalizedString( TBHINT_ACTUAL_SIZE ); 447 WinSetWindowText( lbox, actsizetext.c_str() ); 448 WinSendMsg( lbox, LM_INSERTITEM, MPFROMSHORT(LIT_END), 449 MPFROMP( actsizetext.c_str() ) ); 450 WinSendMsg( lbox, LM_INSERTITEM, MPFROMSHORT(LIT_END), 451 MPFROMP( getLocalizedString( TBHINT_FIT_WINDOW ).c_str() ) ); 452 WinSendMsg( lbox, LM_INSERTITEM, MPFROMSHORT(LIT_END), 453 MPFROMP( getLocalizedString( TBHINT_FIT_WIDTH ).c_str() ) ); 444 SHORT setZoomValues( HWND lbox ) 445 { 446 char *actsizetext = newstrdupL( TBHINT_ACTUAL_SIZE ); 447 char *fitwindtext = newstrdupL( TBHINT_FIT_WINDOW ); 448 char *fitwidthtext = newstrdupL( TBHINT_FIT_WIDTH ); 449 WinSetWindowText( lbox, actsizetext ); 450 WinSendMsg( lbox, LM_INSERTITEM, MPFROMSHORT(LIT_END), MPFROMP( actsizetext ) ); 451 WinSendMsg( lbox, LM_INSERTITEM, MPFROMSHORT(LIT_END), MPFROMP( fitwindtext ) ); 452 WinSendMsg( lbox, LM_INSERTITEM, MPFROMSHORT(LIT_END), MPFROMP( fitwidthtext ) ); 454 453 WinSendMsg( lbox, LM_INSERTITEM, MPFROMSHORT(LIT_END), MPFROMP( "12.5%" ) ); 455 454 WinSendMsg( lbox, LM_INSERTITEM, MPFROMSHORT(LIT_END), MPFROMP( "25%" ) ); … … 463 462 WinSendMsg( lbox, LM_INSERTITEM, MPFROMSHORT(LIT_END), MPFROMP( "800%" ) ); 464 463 WinSendMsg( lbox, LM_INSERTITEM, MPFROMSHORT(LIT_END), MPFROMP( "1600%" ) ); 464 465 HPS hps = WinGetPS( lbox ); 466 SHORT actsizelen = getStringPixSize( hps, actsizetext ); 467 SHORT fitwindlen = getStringPixSize( hps, fitwindtext ); 468 SHORT fitwidthlen = getStringPixSize( hps, fitwidthtext ); 469 WinReleasePS( hps ); 470 471 delete fitwidthtext; 472 delete fitwindtext; 473 delete actsizetext; 474 475 return __max( actsizelen, __max( fitwindlen, fitwidthlen ) ); 465 476 } 466 477 467 478 double convZoom( SHORT v ) 468 479 { 469 480 double z = -3; 470 481 switch ( v ) 471 482 { -
trunk/Lucide/SOURCE/gui/luutils.h
r50 r88 66 66 void textToClipbrd( HAB hab, const char *text ); 67 67 void centerWindow( HWND parent, HWND hwnd ); 68 voidsetZoomValues( HWND lbox );68 SHORT setZoomValues( HWND lbox ); 69 69 double convZoom( SHORT v ); 70 70 #endif -
trunk/Lucide/SOURCE/gui/messages.cpp
r87 r88 63 63 const char *MSGS_FILE_LOAD_ERROR = "MSGS_FILE_LOAD_ERROR"; 64 64 const char *MSGS_LOADING_DOCUMENT = "MSGS_LOADING_DOCUMENT"; 65 const char *MSGS_WARNING = "MSGS_WARNING"; 66 const char *MSGS_OVERWRITE_FILE = "MSGS_OVERWRITE_FILE"; 67 const char *MSGS_FILE_SAVE_ERROR = "MSGS_FILE_SAVE_ERROR"; 65 68 66 69 // Plugins List columns titles -
trunk/Lucide/SOURCE/gui/messages.h
r87 r88 62 62 extern const char *MSGS_FILE_LOAD_ERROR; 63 63 extern const char *MSGS_LOADING_DOCUMENT; 64 extern const char *MSGS_WARNING; 65 extern const char *MSGS_OVERWRITE_FILE; 66 extern const char *MSGS_FILE_SAVE_ERROR; 64 67 65 68 // Plugins List columns titles -
trunk/Lucide/SOURCE/gui/pmtoolbar.cpp
r35 r88 493 493 } else if ( i->type == ITYPE_CONTROL ) { 494 494 i->rcl.xRight = i->rcl.xLeft + cs->cx - 1; 495 if ( cs->cy < 0 ) {495 //if ( cs->cy < 0 ) { 496 496 //i->rcl.yTop = i->rcl.yBottom + cs->cy - 1; 497 497 i->rcl.yBottom += cs->cy; 498 }498 //} 499 499 WinSetWindowPos( i->ctrlHandle, HWND_TOP, 500 500 i->rcl.xLeft, i->rcl.yBottom, 501 i->rcl.xRight-i->rcl.xLeft, i->rcl.yTop-i->rcl.yBottom ,501 i->rcl.xRight-i->rcl.xLeft, i->rcl.yTop-i->rcl.yBottom + 1, 502 502 SWP_SIZE|SWP_MOVE|SWP_ZORDER|SWP_SHOW ); 503 503 } else { -
trunk/Lucide/SOURCE/gui/toolbar.cpp
r87 r88 37 37 38 38 #include <stdio.h> 39 #include <string.h> 39 40 #include <string> 40 41 … … 47 48 48 49 49 PFNWP pOldTbProc; 50 51 50 PFNWP pOldTbProc; // Old toolbar window proc 51 PFNWP pOldZeProc; // Old zoom entryfield window proc 52 53 54 // Toolbar window proc 52 55 static MRESULT EXPENTRY tbProc( HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2 ) 53 56 { … … 103 106 } 104 107 108 static char savedZeText[ 255 ] = ""; 109 // Zoom entryfield window proc 110 static MRESULT EXPENTRY zeProc( HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2 ) 111 { 112 switch ( msg ) 113 { 114 case WM_SETFOCUS: 115 { 116 char tmp[ 255 ] = ""; 117 118 if ( SHORT1FROMMP( mp2 ) ) 119 { 120 WinQueryWindowText( hwnd, sizeof( tmp ), tmp ); 121 if ( strlen( tmp ) > 0 ) { 122 strcpy( savedZeText, tmp ); 123 } 124 WinSetWindowText( hwnd, "" ); 125 } 126 else 127 { 128 WinQueryWindowText( hwnd, sizeof( tmp ), tmp ); 129 if ( strlen( tmp ) == 0 ) { 130 WinSetWindowText( hwnd, savedZeText ); 131 } 132 } 133 } 134 break; 135 } 136 return pOldZeProc( hwnd, msg, mp1, mp2 ); 137 } 138 105 139 106 140 HWND createToolbar( HWND hwnd ) … … 273 307 WinSetPresParam( cs.ctrlHandle, PP_FONTNAMESIZE, deffontlen, deffont ); 274 308 std::string actsizetext = getLocalizedString( TBHINT_ACTUAL_SIZE ); 275 setZoomValues( cs.ctrlHandle );276 cs.cx = 80;309 cs.cx = setZoomValues( cs.ctrlHandle ) + 310 ( WinQuerySysValue( HWND_DESKTOP, SV_CXVSCROLL ) * 2 ); 277 311 cs.cy = -100; 278 312 cs.bubbleText = NULL; 313 pOldZeProc = WinSubclassWindow( WinWindowFromID( cs.ctrlHandle, CBID_EDIT ), zeProc ); 279 314 WinSendMsg( hToolBar, TBM_ADDCONTROL, (MPARAM)&cs, MPVOID ); 280 315 -
trunk/Lucide/SOURCE/plugins/ludjvu/ludjvu.cpp
r87 r88 1 2 /* 3 * This file was generated by the SOM Compiler. 4 * Generated using: 5 * SOM incremental update: 2.24 6 */ 7 1 8 /* 2 9 * Copyright (c) 2006, Eugene Romanenko, netlabs.org … … 19 26 20 27 /* 21 * This file was generated by the SOM Compiler.22 * Generated using:23 * SOM incremental update: 2.2424 */25 26 27 /*28 28 * This file was generated by the SOM Compiler and Emitter Framework. 29 29 * Generated using template emitter: … … 294 294 } 295 295 296 SOM_Scope boolean SOMLINK isSaveable(LuDjvuDocument *somSelf, 297 Environment *ev) 298 { 299 #ifdef __GNUC__ 300 return TRUE; 301 #else 302 return FALSE; 303 #endif 304 } 305 306 SOM_Scope boolean SOMLINK saveAs(LuDjvuDocument *somSelf, Environment *ev, 307 string filename) 308 { 309 #ifdef __GNUC__ 310 LuDjvuDocumentData *somThis = LuDjvuDocumentGetData(somSelf); 311 DjvuDocument *d = (DjvuDocument *)somThis->data; 312 313 FILE *f = NULL; 314 if ( ( f = fopen( filename, "wb" ) ) == NULL ) { 315 return FALSE; 316 } 317 318 ddjvu_job_t *job = ddjvu_document_save( d->d_document, f, 0, NULL ); 319 while ( !ddjvu_job_done( job ) ) { 320 djvu_handle_events( d->d_context ); 321 } 322 fclose( f ); 323 324 return TRUE; 325 #else 326 return FALSE; 327 #endif 328 } 329 296 330 SOM_Scope void SOMLINK somDefaultInit(LuDjvuDocument *somSelf, 297 331 som3InitCtrl* ctrl) -
trunk/Lucide/SOURCE/plugins/ludjvu/ludjvu.idl
r27 r88 28 28 getThumbnailSize: override; 29 29 getThumbnail: override; 30 isSaveable: override; 31 saveAs: override; 30 32 31 33 somDefaultInit: override, init; -
trunk/Lucide/SOURCE/plugins/ludjvu/ludjvu.xh
r61 r88 62 62 * -- Typedefs for LuDjvuDocument Method Procedures 63 63 */ 64 SOMEXTERN {64 SOMEXTERNF { 65 65 66 66 /* -
trunk/Lucide/SOURCE/plugins/ludjvu/ludjvu.xih
r61 r88 147 147 #define _getThumbnailSize somSelf->getThumbnailSize 148 148 #define _getThumbnail somSelf->getThumbnail 149 #define _isSaveable somSelf->isSaveable 150 #define _saveAs somSelf->saveAs 149 151 #define _somDefaultInit somSelf->somDefaultInit 150 152 #define _somDestruct somSelf->somDestruct … … 514 516 #define LuDjvuDocument_parents_getThumbnail(somSelf,ev,pagenum,suggested_width) (\ 515 517 LuDjvuDocument_parent_LuDocument_getThumbnail(somSelf,ev,pagenum,suggested_width)) 518 519 /* 520 * Overridden method: isSaveable 521 */ 522 SOM_Scope boolean SOMLINK isSaveable(LuDjvuDocument *somSelf, Environment *ev); 523 static char *somMN_LuDjvuDocumentisSaveable = "LuDocument::isSaveable"; 524 static somId somId_LuDjvuDocumentisSaveable = &somMN_LuDjvuDocumentisSaveable; 525 #ifdef somId_isSaveable 526 #undef somId_isSaveable 527 #else 528 #define somId_isSaveable somId_LuDjvuDocumentisSaveable 529 #endif 530 typedef boolean SOMLINK somTP_xih_LuDjvuDocument_isSaveable(LuDjvuDocument *somSelf, Environment *ev); 531 typedef somTP_xih_LuDjvuDocument_isSaveable *somTD_xih_LuDjvuDocument_isSaveable; 532 /* define the parent method call macro */ 533 static somMethodProc* LuDjvuDocument_parent_LuDocument_isSaveable_resolved; 534 #define LuDjvuDocument_parent_LuDocument_isSaveable(somSelf,ev) \ 535 ((( somTD_xih_LuDjvuDocument_isSaveable ) \ 536 LuDjvuDocument_parent_LuDocument_isSaveable_resolved) \ 537 (somSelf,ev)) 538 /* define a variety of (possibly ambiguous) short forms */ 539 #ifndef SOMGD_pmc_parent_isSaveable 540 #ifdef parent_isSaveable 541 #define SOMGD_pmc_parent_isSaveable 542 #undef parent_isSaveable 543 #else 544 #define parent_isSaveable LuDjvuDocument_parent_LuDocument_isSaveable 545 #endif 546 #endif 547 #ifndef SOMGD_pmc_parent_LuDocument_isSaveable 548 #ifdef parent_LuDocument_isSaveable 549 #define SOMGD_pmc_parent_LuDocument_isSaveable 550 #undef parent_LuDocument_isSaveable 551 #else 552 #define parent_LuDocument_isSaveable LuDjvuDocument_parent_LuDocument_isSaveable 553 #endif 554 #endif 555 #define LuDjvuDocument_parents_isSaveable(somSelf,ev) (\ 556 LuDjvuDocument_parent_LuDocument_isSaveable(somSelf,ev)) 557 558 /* 559 * Overridden method: saveAs 560 */ 561 SOM_Scope boolean SOMLINK saveAs(LuDjvuDocument *somSelf, Environment *ev, 562 string filename); 563 static char *somMN_LuDjvuDocumentsaveAs = "LuDocument::saveAs"; 564 static somId somId_LuDjvuDocumentsaveAs = &somMN_LuDjvuDocumentsaveAs; 565 #ifdef somId_saveAs 566 #undef somId_saveAs 567 #else 568 #define somId_saveAs somId_LuDjvuDocumentsaveAs 569 #endif 570 typedef boolean SOMLINK somTP_xih_LuDjvuDocument_saveAs(LuDjvuDocument *somSelf, Environment *ev, 571 string filename); 572 typedef somTP_xih_LuDjvuDocument_saveAs *somTD_xih_LuDjvuDocument_saveAs; 573 /* define the parent method call macro */ 574 static somMethodProc* LuDjvuDocument_parent_LuDocument_saveAs_resolved; 575 #define LuDjvuDocument_parent_LuDocument_saveAs(somSelf,ev,filename) \ 576 ((( somTD_xih_LuDjvuDocument_saveAs ) \ 577 LuDjvuDocument_parent_LuDocument_saveAs_resolved) \ 578 (somSelf,ev,filename)) 579 /* define a variety of (possibly ambiguous) short forms */ 580 #ifndef SOMGD_pmc_parent_saveAs 581 #ifdef parent_saveAs 582 #define SOMGD_pmc_parent_saveAs 583 #undef parent_saveAs 584 #else 585 #define parent_saveAs LuDjvuDocument_parent_LuDocument_saveAs 586 #endif 587 #endif 588 #ifndef SOMGD_pmc_parent_LuDocument_saveAs 589 #ifdef parent_LuDocument_saveAs 590 #define SOMGD_pmc_parent_LuDocument_saveAs 591 #undef parent_LuDocument_saveAs 592 #else 593 #define parent_LuDocument_saveAs LuDjvuDocument_parent_LuDocument_saveAs 594 #endif 595 #endif 596 #define LuDjvuDocument_parents_saveAs(somSelf,ev,filename) (\ 597 LuDjvuDocument_parent_LuDocument_saveAs(somSelf,ev,filename)) 516 598 517 599 /* … … 567 649 { &somId_LuDjvuDocumentgetThumbnail, 568 650 (somMethodProc *) getThumbnail }, 651 { &somId_LuDjvuDocumentisSaveable, 652 (somMethodProc *) isSaveable }, 653 { &somId_LuDjvuDocumentsaveAs, 654 (somMethodProc *) saveAs }, 569 655 { &somId_LuDjvuDocumentsomDefaultInit, 570 656 (somMethodProc *) somDefaultInit }, … … 585 671 586 672 static somStaticClassInfo LuDjvuDocumentSCI = { 587 4, 0, 1 0, 0, 0, 0, /* layout version 4 */673 4, 0, 12, 0, 0, 0, /* layout version 4 */ 588 674 LuDjvuDocument_MajorVersion, LuDjvuDocument_MinorVersion, 589 675 sizeof(LuDjvuDocumentData), LuDjvuDocument_MaxNoMethods, 1, … … 631 717 LuDocumentNewClass(LuDocument_MajorVersion,LuDocument_MinorVersion); /* static reference */ 632 718 result = (SOMClass*)((void*)somBuildClass(0xFFFFFFFF,&LuDjvuDocumentSCI, somtmajorVersion, somtminorVersion)); 719 LuDjvuDocument_parent_LuDocument_saveAs_resolved = 720 somParentNumResolve(LuDjvuDocumentCClassData.parentMtab, 1, LuDocumentClassData.saveAs); 721 LuDjvuDocument_parent_LuDocument_isSaveable_resolved = 722 somParentNumResolve(LuDjvuDocumentCClassData.parentMtab, 1, LuDocumentClassData.isSaveable); 633 723 LuDjvuDocument_parent_LuDocument_getThumbnail_resolved = 634 724 somParentNumResolve(LuDjvuDocumentCClassData.parentMtab, 1, LuDocumentClassData.getThumbnail); -
trunk/Lucide/SOURCE/plugins/ludjvu/makefile
r68 r88 15 15 .idl.xh: 16 16 sc -c -s"xc;xih;xh" -I..\ludoc $< 17 17 ..\..\sominc\cnvsomex.cmd $@ 18 18 19 19 20 all: make.cfg ludjvu.dll … … 58 59 -xs 59 60 -xr 61 -I..\..\sominc 60 62 -I..\ludoc 61 63 -I..\..\..\..\libdjvu -
trunk/Lucide/SOURCE/plugins/ludoc/ludoc.xh
r61 r88 186 186 * -- Typedefs for LuDocument Method Procedures 187 187 */ 188 SOMEXTERN {188 SOMEXTERNF { 189 189 typedef boolean SOMLINK somTP_LuDocument_loadFile(LuDocument *somSelf, Environment *ev, 190 190 string filename, -
trunk/Lucide/SOURCE/plugins/ludoc/luinode.xh
r2 r88 75 75 * -- Typedefs for LuIndexNode Method Procedures 76 76 */ 77 SOMEXTERN {77 SOMEXTERNF { 78 78 typedef void SOMLINK somTP_LuIndexNode_LuIndexNodeInit(LuIndexNode *somSelf, Environment *ev, 79 79 somInitCtrl* ctrl, -
trunk/Lucide/SOURCE/plugins/ludoc/lupixbuf.xh
r27 r88 70 70 * -- Typedefs for LuPixbuf Method Procedures 71 71 */ 72 SOMEXTERN {72 SOMEXTERNF { 73 73 typedef void SOMLINK somTP_LuPixbuf_LuPixbufInit(LuPixbuf *somSelf, Environment *ev, 74 74 somInitCtrl* ctrl, -
trunk/Lucide/SOURCE/plugins/ludoc/makefile
r68 r88 15 15 .idl.xh: 16 16 sc -c -s"xc;xih;xh" $< 17 ..\..\sominc\cnvsomex.cmd $@ 17 18 18 19 … … 87 88 -xs 88 89 -xr 90 -I..\..\sominc 89 91 -DOS2 90 92 | MAKE.CFG >NUL -
trunk/Lucide/SOURCE/plugins/lujpeg/makefile
r68 r88 15 15 .idl.xh: 16 16 sc -c -s"xc;xih;xh" -I..\ludoc $< 17 17 ..\..\sominc\cnvsomex.cmd $@ 18 18 19 19 20 all: make.cfg lujpeg.dll … … 58 59 -xs 59 60 -xr 61 -I..\..\sominc 60 62 -I..\ludoc 61 63 -I..\..\..\..\libjpeg -
trunk/Lucide/SOURCE/plugins/lupoppler/lupoppler.xh
r61 r88 62 62 * -- Typedefs for LuPopplerDocument Method Procedures 63 63 */ 64 SOMEXTERN {64 SOMEXTERNF { 65 65 66 66 /* -
trunk/Lucide/SOURCE/plugins/lupoppler/makefile
r68 r88 15 15 .idl.xh: 16 16 sc -c -s"xc;xih;xh" -I..\ludoc $< 17 17 ..\..\sominc\cnvsomex.cmd $@ 18 18 19 19 20 all: make.cfg lupplr.dll … … 58 59 -xr 59 60 -sg 61 -I..\..\sominc 60 62 -I..\ludoc 61 63 -I..\..\..\..\poppler\mypoppler
Note: See TracChangeset
for help on using the changeset viewer.