00001
00147 #ifndef __NPWBase__
00148 #define __NPWBase__
00149
00150 #ifdef __cplusplus
00151 extern "C" {
00152 #endif
00153
00155 typedef char NPWChar;
00156
00158 typedef NPWChar *NPWText;
00159
00161 typedef NPWChar const *NPWConstText;
00162
00164 typedef int NPWInt;
00165
00167 typedef NPWInt NPWRef;
00168
00170 typedef NPWInt NPWOffset;
00171
00173 typedef unsigned char NPWByte;
00174
00176 typedef unsigned long NPWUInt32;
00177
00179 typedef short PDFInt16;
00180
00181
00182 #if !defined(NPWNoFloat)
00184 typedef double NPWFloat;
00185 #else
00187 typedef NPWInt NPWFloat;
00188 #endif
00189
00191 typedef int NPWBoolean;
00192
00193 #if !defined(NULL)
00195 # define NULL 0
00196 #endif
00197
00198 #if !defined(FALSE)
00199 # define FALSE 0
00200 # define TRUE 1
00201 #endif
00202
00204 enum
00205 {
00206 kNPWNoRef = -1
00207 };
00208
00210 typedef enum
00211 {
00212 kNPWErrOk = 0,
00213 kNPWErrNotEnoughMemory,
00214 kNPWErrNestedObject,
00215 kNPWErrUnbalancedObj,
00216 kNPWUnknownFont,
00217 kNPWNumTooLarge,
00218 kNPWErrIncomplete,
00219 kNPWErrSuspended,
00220
00221 kNPWErrInternal
00222 } NPWErr;
00223
00225 enum
00226 {
00227
00228 kNPWPaperHeightA3 = 1191,
00229 kNPWPaperWidthA3 = 842,
00230 kNPWPaperHeightA4 = 842,
00231 kNPWPaperWidthA4 = 595,
00232 kNPWPaperHeightA5 = 595,
00233 kNPWPaperWidthA5 = 420,
00234 kNPWPaperHeightA6 = 420,
00235 kNPWPaperWidthA6 = 298,
00236
00237 kNPWPaperHeightB3 = 1417,
00238 kNPWPaperWidthB3 = 1001,
00239 kNPWPaperHeightB4 = 1001,
00240 kNPWPaperWidthB4 = 709,
00241 kNPWPaperHeightB5 = 709,
00242 kNPWPaperWidthB5 = 499,
00243 kNPWPaperHeightB6 = 499,
00244 kNPWPaperWidthB6 = 354,
00245
00246 kNPWPaperHeightC3 = 1298,
00247 kNPWPaperWidthC3 = 918,
00248 kNPWPaperHeightC4 = 918,
00249 kNPWPaperWidthC4 = 649,
00250 kNPWPaperHeightC5 = 649,
00251 kNPWPaperWidthC5 = 459,
00252 kNPWPaperHeightC6 = 459,
00253 kNPWPaperWidthC6 = 323,
00254
00255 kNPWPaperHeightDL = 312,
00256 kNPWPaperWidthDL = 624,
00257
00258
00259 kNPWPaperHeightID1 = 153,
00260 kNPWPaperWidthID1 = 243,
00261 kNPWPaperHeightID2 = 210,
00262 kNPWPaperWidthID2 = 298,
00263 kNPWPaperHeightID3 = 249,
00264 kNPWPaperWidthID3 = 354,
00265
00266
00267 kNPWPaperHeightLetter = 792,
00268 kNPWPaperWidthLetter = 612,
00269 kNPWPaperHeightLegal = 1008,
00270 kNPWPaperWidthLegal = 612,
00271 kNPWPaperHeightExecutive = 756,
00272 kNPWPaperWidthExecutive = 522,
00273 kNPWPaperHeightLedger = 1224,
00274 kNPWPaperWidthLedger = 792
00275 };
00276
00277
00278 #define kNPWUnitMM 2.835
00279 #define kNPWUnitCM 28.35
00280 #define kNPWUnitInch 72
00281
00282
00288 typedef NPWErr (*NPWWriteCB)(NPWConstText str, NPWInt length, void *userData);
00289
00296 typedef NPWErr (*NPWAllocCB)(void **p, NPWInt size, void *userData);
00297
00299 typedef struct
00300 {
00301 NPWOffset offset;
00302 NPWInt generation;
00303 } NPWXRef;
00304
00306 typedef struct
00307 {
00308 NPWInt width;
00309 NPWInt height;
00310 NPWRef contents;
00311 NPWInt streamOffset;
00312 } NPWPage;
00313
00315 enum
00316 {
00317 kNPWFilterNone = 0,
00318 kNPWFilterASCIIHex = 1,
00319 kNPWFilterASCII85 = 2,
00320 kNPWFilterRunLength = 4
00321 };
00322
00323 #define NPWFilterNameASCIIHex "/AHx"
00324 #define NPWFilterNameASCII85 "/A85"
00325 #define NPWFilterNameRunLength "/RL"
00326
00328 typedef struct
00329 {
00330 NPWInt width;
00331 NPWInt height;
00332 NPWInt fonts;
00333
00334 NPWAllocCB alloc;
00335 void *allocUserData;
00336
00337 NPWWriteCB write;
00338 void *writeUserData;
00339
00340 NPWOffset offset;
00341
00342 NPWBoolean writingObject;
00343
00344 NPWXRef *xref;
00345 NPWInt xrefSize;
00346 NPWInt xrefCount;
00347
00348 NPWPage *page;
00349 NPWInt pageSize;
00350 NPWInt pageCount;
00351
00352 NPWRef info;
00353
00354 NPWInt filter;
00355 NPWByte asciiBuf[4];
00356 NPWInt asciiBufCount;
00357 NPWInt asciiFilterLineLength;
00358
00359 } NPW;
00360
00362 enum
00363 {
00364 kNPWFontCourier = 1,
00365 kNPWFontCourierOblique = 2,
00366 kNPWFontCourierBold = 4,
00367 kNPWFontCourierBoldOblique = 010,
00368 kNPWFontHelvetica = 020,
00369 kNPWFontHelveticaOblique = 040,
00370 kNPWFontHelveticaBold = 0100,
00371 kNPWFontHelveticaBoldOblique = 0200,
00372 kNPWFontTimesRoman = 0400,
00373 kNPWFontTimesItalic = 01000,
00374 kNPWFontTimesBold = 02000,
00375 kNPWFontTimesBoldItalic = 04000,
00376 kNPWFontSymbol = 010000,
00377 kNPWFontZapfDingbats = 020000,
00378 kNPWFontNone = 0,
00379 kNPWFontAll = 037777
00380 };
00381
00382 #define NPWFontNameCourier "/FC"
00383 #define NPWFontNameCourierOblique "/FCo"
00384 #define NPWFontNameCourierBold "/FCb"
00385 #define NPWFontNameCourierBoldOblique "/FCbo"
00386 #define NPWFontNameHelvetica "/FH"
00387 #define NPWFontNameHelveticaOblique "/FHo"
00388 #define NPWFontNameHelveticaBold "/FHb"
00389 #define NPWFontNameHelveticaBoldOblique "/FHbo"
00390 #define NPWFontNameTimesRoman "/FT"
00391 #define NPWFontNameTimesItalic "/FTi"
00392 #define NPWFontNameTimesBold "/FTb"
00393 #define NPWFontNameTimesBoldItalic "/FTbi"
00394 #define NPWFontNameSymbol "/FS"
00395 #define NPWFontNameZapfDingbats "/FZ"
00396
00397
00400 void NPWInit(NPW *pdf);
00401
00407 void NPWSetAllocCallback(NPW *pdf,
00408 NPWAllocCB alloc, void *userData);
00409
00415 void NPWSetWriteCallback(NPW *pdf,
00416 NPWWriteCB write, void *userData);
00417
00422 void NPWSetFonts(NPW *pdf, NPWInt fonts);
00423
00428 NPWErr NPWTerminate(NPW *pdf);
00429
00436 NPWErr NPWBeginPage(NPW *pdf, NPWInt width, NPWInt height);
00437
00442 NPWErr NPWEndPage(NPW *pdf);
00443
00450 NPWErr NPWWrite(NPW *pdf, NPWConstText str, NPWInt length);
00451
00458 NPWErr NPWWriteInt(NPW *pdf, NPWInt i, NPWInt pad);
00459
00460 #if !defined(NPWNoFloat)
00461
00466 NPWErr NPWWriteFloat(NPW *pdf, NPWFloat x);
00467 #endif
00468
00475 NPWErr NPWWriteString(NPW *pdf, NPWConstText str, NPWInt length);
00476
00482 NPWErr NPWBeginObj(NPW *pdf, NPWRef *ref);
00483
00488 NPWErr NPWEndObj(NPW *pdf);
00489
00494 void NPWFilterBegin(NPW *pdf, NPWInt filter);
00495
00502 NPWErr NPWFilterWrite(NPW *pdf, NPWByte const *b, NPWInt n);
00503
00508 NPWErr NPWFilterEnd(NPW *pdf);
00509
00510 #ifdef __cplusplus
00511 }
00512 #endif
00513
00514 #endif