00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @interface EDPageSetup : NSObject
00010 {
00011 int mOrientation;
00012 int mPageOrder;
00013 _Bool mCustomFirstPageNumber;
00014 unsigned int mFirstPageNumber;
00015 unsigned int mCopies;
00016 unsigned int mFitToHeight;
00017 unsigned int mFitToWidth;
00018 unsigned int mScale;
00019 float mLeftMargin;
00020 float mRightMargin;
00021 float mTopMargin;
00022 float mBottomMargin;
00023 float mHeaderMargin;
00024 float mFooterMargin;
00025 }
00026
00027 + (id)pageSetup;
00028 - (id)init;
00029 - (int)orientation;
00030 - (void)setOrientation:(int)fp8;
00031 - (int)order;
00032 - (void)setOrder:(int)fp8;
00033 - (_Bool)customFirstPageNumber;
00034 - (void)setCustomFirstPageNumber:(_Bool)fp8;
00035 - (unsigned int)firstPageNumber;
00036 - (void)setFirstPageNumber:(unsigned int)fp8;
00037 - (unsigned int)fitToHeight;
00038 - (void)setFitToHeight:(unsigned int)fp8;
00039 - (unsigned int)fitToWidth;
00040 - (void)setFitToWidth:(unsigned int)fp8;
00041 - (unsigned int)scale;
00042 - (void)setScale:(unsigned int)fp8;
00043 - (float)leftMargin;
00044 - (void)setLeftMargin:(float)fp8;
00045 - (float)rightMargin;
00046 - (void)setRightMargin:(float)fp8;
00047 - (float)topMargin;
00048 - (void)setTopMargin:(float)fp8;
00049 - (float)bottomMargin;
00050 - (void)setBottomMargin:(float)fp8;
00051 - (float)headerMargin;
00052 - (void)setHeaderMargin:(float)fp8;
00053 - (float)footerMargin;
00054 - (void)setFooterMargin:(float)fp8;
00055
00056 @end
00057