00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "EDImmutableObjectProtocol.h"
00010 #import "NSCopyingProtocol.h"
00011
00012 @class EDProtection, EDResources;
00013
00014 @interface EDStyle : NSObject <NSCopying, EDImmutableObject>
00015 {
00016 EDResources *mResources;
00017 unsigned int mParentIndex;
00018 _Bool mContentFormatOverridden;
00019 unsigned int mContentFormatId;
00020 _Bool mFontOverridden;
00021 unsigned int mFontIndex;
00022 _Bool mFillOverridden;
00023 unsigned int mFillIndex;
00024 _Bool mAlignmentInfoOverridden;
00025 unsigned int mAlignmentInfoIndex;
00026 _Bool mBordersOverridden;
00027 unsigned int mBordersIndex;
00028 _Bool mProtectionOverridden;
00029 EDProtection *mProtection;
00030 _Bool mDoNotModify;
00031 unsigned int mIndex;
00032 }
00033
00034 + (id)styleWithResources:(id)fp8;
00035 - (id)initWithResources:(id)fp8;
00036 - (void)dealloc;
00037 - (id)copyWithZone:(struct _NSZone *)fp8;
00038 - (BOOL)isEquivalentToStyle:(id)fp8;
00039 - (BOOL)isEqualToStyle:(id)fp8;
00040 - (BOOL)isEqual:(id)fp8;
00041 - (unsigned int)hash;
00042 - (_Bool)isContentFormatOverridden;
00043 - (void)setContentFormatOverridden:(_Bool)fp8;
00044 - (id)contentFormat;
00045 - (void)setContentFormat:(id)fp8;
00046 - (_Bool)isFontOverridden;
00047 - (void)setFontOverridden:(_Bool)fp8;
00048 - (id)font;
00049 - (void)setFont:(id)fp8;
00050 - (_Bool)isFillOverridden;
00051 - (void)setFillOverridden:(_Bool)fp8;
00052 - (id)fill;
00053 - (void)setFill:(id)fp8;
00054 - (_Bool)isAlignmentInfoOverridden;
00055 - (void)setAlignmentInfoOverridden:(_Bool)fp8;
00056 - (id)alignmentInfo;
00057 - (void)setAlignmentInfo:(id)fp8;
00058 - (_Bool)isBordersOverridden;
00059 - (void)setBordersOverridden:(_Bool)fp8;
00060 - (id)borders;
00061 - (void)setBorders:(id)fp8;
00062 - (_Bool)isProtectionOverridden;
00063 - (void)setProtectionOverridden:(_Bool)fp8;
00064 - (id)protection;
00065 - (void)setProtection:(id)fp8;
00066 - (id)parent;
00067 - (void)setParent:(id)fp8;
00068 - (unsigned int)index;
00069 - (void)setDoNotModify:(_Bool)fp8;
00070
00071 @end
00072