Changeset 94
- Timestamp:
- Aug 7, 2006, 6:34:19 PM (19 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Lucide/BIN/Lucide.lng ¶
r91 r94 69 69 MSGS_OVERWRITE_FILE=File already exist. Overwrite? 70 70 MSGS_FILE_SAVE_ERROR=Error saving file! 71 MSGS_PAGE=Page 71 72 72 73 # -
TabularUnified trunk/Lucide/SOURCE/gui/indexWindow.cpp ¶
r91 r94 43 43 #include "luutils.h" 44 44 #include "tb_spl.h" 45 #include "messages.h" 45 46 46 47 … … 167 168 void IndexWindow::loadPagesList() 168 169 { 170 char *msgpage = newstrdupL( MSGS_PAGE ); 169 171 CNRINFO ci; 170 172 ci.cb = sizeof( CNRINFO ); … … 174 176 WinSendMsg( hWndIndex, CM_SETCNRINFO, MPFROMP( &ci ), MPFROMLONG( CMA_FLWINDOWATTR ) ); 175 177 176 char pgbuf[ 20];178 char pgbuf[ 64 ]; 177 179 for ( int i = 0; i < totalpages; i++ ) 178 180 { 179 snprintf( pgbuf, sizeof(pgbuf), " Page %d", i + 1 );181 snprintf( pgbuf, sizeof(pgbuf), "%s %d", msgpage, i + 1 ); 180 182 RECORDINSERT ri; 181 183 TreeRecord *pr = (TreeRecord *)WinSendMsg( hWndIndex, CM_ALLOCRECORD, … … 198 200 WinSendMsg( hWndIndex, CM_INSERTRECORD, MPFROMP( pr ), MPFROMP( &ri ) ); 199 201 } 202 delete msgpage; 200 203 } 201 204 … … 225 228 return true; 226 229 } 227 230 228 231 SHORT atr = ( parent == NULL ) ? CMA_FIRST : CMA_FIRSTCHILD; 229 232 TreeRecord *pr = (TreeRecord *)WinSendMsg( hWndIndex, CM_QUERYRECORD, -
TabularUnified trunk/Lucide/SOURCE/gui/messages.cpp ¶
r91 r94 61 61 const char *MSGS_OVERWRITE_FILE = "MSGS_OVERWRITE_FILE"; 62 62 const char *MSGS_FILE_SAVE_ERROR = "MSGS_FILE_SAVE_ERROR"; 63 const char *MSGS_PAGE = "MSGS_PAGE"; 63 64 64 65 // Settings dialog -
TabularUnified trunk/Lucide/SOURCE/gui/messages.h ¶
r91 r94 61 61 extern const char *MSGS_OVERWRITE_FILE; 62 62 extern const char *MSGS_FILE_SAVE_ERROR; 63 extern const char *MSGS_PAGE; 63 64 64 65 // Settings dialog -
TabularUnified trunk/Lucide/SOURCE/plugins/lujpeg/lujpeg.cpp ¶
r35 r94 1 2 /* 3 * This file was generated by the SOM Compiler. 4 * Generated using: 5 * SOM incremental update: 2.24 6 */ 7 8 1 9 /* ***** BEGIN LICENSE BLOCK ***** 2 10 * Version: CDDL 1.0/LGPL 2.1 … … 35 43 36 44 /* 37 * This file was generated by the SOM Compiler.38 * Generated using:39 * SOM incremental update: 2.2440 */41 42 /*43 45 * This file was generated by the SOM Compiler and Emitter Framework. 44 46 * Generated using template emitter: … … 58 60 #include <string.h> 59 61 #include <jpeglib.h> 62 60 63 61 64 … … 154 157 } 155 158 159 156 160 SOM_Scope short SOMLINK getBpp(LuJpegDocument *somSelf, Environment *ev) 157 161 { 158 162 return 3; 159 163 } 164 160 165 161 166 SOM_Scope long SOMLINK getPageCount(LuJpegDocument *somSelf, … … 164 169 return 1; 165 170 } 171 166 172 167 173 SOM_Scope void SOMLINK getPageSize(LuJpegDocument *somSelf, … … 179 185 } 180 186 } 187 181 188 182 189 SOM_Scope void SOMLINK renderPageToPixbuf(LuJpegDocument *somSelf, … … 207 214 memcpy( dst, src, src_width * bpp ); 208 215 } 209 //long len = __min( pixbuf->getDataLen(ev), d->pb->getDataLen(ev) ); 210 //memcpy( pixbuf->getDataPtr(ev), d->pb->getDataPtr(ev), len ); 211 } 216 } 217 212 218 213 219 SOM_Scope void SOMLINK somDefaultInit(LuJpegDocument *somSelf, … … 238 244 JpegDocument *d = (JpegDocument *)somThis->data; 239 245 if ( d->pb != NULL ) { 240 241 246 delete d->pb; 247 } 242 248 delete d; 243 249 // end of local LuJpegDocument deinitialization code -
TabularUnified trunk/Lucide/SOURCE/plugins/lujpeg/lujpeg.idl ¶
r27 r94 21 21 implementation 22 22 { 23 24 23 void *data; 25 24 -
TabularUnified trunk/Lucide/SOURCE/plugins/lujpeg/lujpeg.xh ¶
r61 r94 48 48 49 49 /* The API to the LuJpegDocument class object, and the methods it introduces. */ 50 SOMEXTERN struct LuJpegDocumentClassDataStructure {50 SOMEXTERNS struct LuJpegDocumentClassDataStructure { 51 51 SOMClass *classObject; 52 52 } SOMDLINK LuJpegDocumentClassData; … … 54 54 55 55 /* The API to parentMtabs for LuJpegDocument, and the instance data it introduces. */ 56 SOMEXTERN struct LuJpegDocumentCClassDataStructure {56 SOMEXTERNS struct LuJpegDocumentCClassDataStructure { 57 57 somMethodTabs parentMtab; 58 58 somDToken instanceDataToken; … … 151 151 typedef boolean SOMLINK somTP_LuJpegDocument_isPostScriptExportable(LuJpegDocument *somSelf, Environment *ev); 152 152 typedef somTP_LuJpegDocument_isPostScriptExportable *somTD_LuJpegDocument_isPostScriptExportable; 153 typedef voidSOMLINK somTP_LuJpegDocument_exportToPostScript(LuJpegDocument *somSelf, Environment *ev,153 typedef boolean SOMLINK somTP_LuJpegDocument_exportToPostScript(LuJpegDocument *somSelf, Environment *ev, 154 154 string filename, 155 155 long first_page, … … 157 157 double width, 158 158 double height, 159 boolean duplex); 159 boolean duplex, 160 boolean* brkExport); 160 161 typedef somTP_LuJpegDocument_exportToPostScript *somTD_LuJpegDocument_exportToPostScript; 161 162 typedef boolean SOMLINK somTP_LuJpegDocument_isHaveFontInfo(LuJpegDocument *somSelf, Environment *ev); … … 587 588 588 589 /* method: exportToPostScript */ 589 voidexportToPostScript(Environment *ev,590 boolean exportToPostScript(Environment *ev, 590 591 string filename, 591 592 long first_page, … … 593 594 double width, 594 595 double height, 595 boolean duplex) 596 { 597 SOM_ResolveD(this,LuJpegDocument,LuDocument,exportToPostScript) 598 (this, ev,filename,first_page,last_page,width,height,duplex); 596 boolean duplex, 597 boolean* brkExport) 598 { 599 return SOM_ResolveD(this,LuJpegDocument,LuDocument,exportToPostScript) 600 (this, ev,filename,first_page,last_page,width,height,duplex,brkExport); 599 601 } 600 602 -
TabularUnified trunk/Lucide/SOURCE/plugins/lupoppler/lupoppler.xh ¶
r92 r94 48 48 49 49 /* The API to the LuPopplerDocument class object, and the methods it introduces. */ 50 SOMEXTERN struct LuPopplerDocumentClassDataStructure {50 SOMEXTERNS struct LuPopplerDocumentClassDataStructure { 51 51 SOMClass *classObject; 52 52 } SOMDLINK LuPopplerDocumentClassData; … … 54 54 55 55 /* The API to parentMtabs for LuPopplerDocument, and the instance data it introduces. */ 56 SOMEXTERN struct LuPopplerDocumentCClassDataStructure {56 SOMEXTERNS struct LuPopplerDocumentCClassDataStructure { 57 57 somMethodTabs parentMtab; 58 58 somDToken instanceDataToken; … … 62 62 * -- Typedefs for LuPopplerDocument Method Procedures 63 63 */ 64 SOMEXTERN F{64 SOMEXTERN { 65 65 66 66 /* -
TabularUnified trunk/poppler/fc-emulate-os2/fontconfig/fontconfig.cpp ¶
r71 r94 424 424 #define DEFAULT_MONOSPACED_FONT "courier" 425 425 426 static bool isSansserif( const char *family ) 427 { 428 return ( ( strstr( family, "swiss" ) != NULL ) || 429 ( strstr( family, "sans" ) != NULL ) || 430 ( strcmp( family, "arial" ) == 0 ) || 431 ( strcmp( family, "tahoma" ) == 0 ) || 432 ( strcmp( family, "verdana" ) == 0 ) ); 433 } 434 426 435 static string buildFontKey( FcPattern *p, bool useDefaultFonts ) 427 436 { … … 435 444 else 436 445 { 437 if ( ( strstr( p->family, "swiss" ) != NULL ) || 438 ( strstr( p->family, "sans" ) != NULL ) ) 439 { 446 if ( isSansserif( p->family ) ) { 440 447 key = DEFAULT_SANSSERIF_FONT; 441 448 } … … 443 450 key = DEFAULT_SERIF_FONT; 444 451 } 452 } 453 } 454 else 455 { 456 // use 'Symbol Set' (SYMB.PFB) instead of 'Symbol' 457 if ( strcmp( p->family, "symbol" ) == 0 ) { 458 key = "symbol set"; 445 459 } 446 460 } … … 481 495 } 482 496 483 497 //printf( "MATCHED STYLE: %s, FILENAME: %s\n", key.c_str(), pat->filename ); 484 498 485 499 FcFontSet *fs = new FcFontSet; … … 526 540 const char *fcLang, FcType tLang, const char *lang, void * ) 527 541 { 528 529 //family, slant, weight, width, spacing, lang );542 //printf( "FAMILY: %s, SLANT: %d, WEIGHT: %d, WIDTH: %d, SPACING: %d, LANG: %s\n", 543 // family, slant, weight, width, spacing, lang ); 530 544 531 545 FcPattern *p = new FcPattern;
Note:
See TracChangeset
for help on using the changeset viewer.