00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "OABFillPropertiesManagerProtocol.h"
00010
00011 @interface OABFillPropertiesManager : NSObject <OABFillPropertiesManager>
00012 {
00013 struct EshFill *mFill;
00014 int mShapeType;
00015 id <OABPropertiesManager> mMasterManager;
00016 }
00017
00018 - (id)initWithFill:(const struct EshFill *)fp8 shapeType:(int)fp12 masterShape:(struct EshShape *)fp16;
00019 - (void)dealloc;
00020 - (BOOL)isFilled;
00021 - (struct EshColor)fillFgColor;
00022 - (struct EshColor)fillBgColor;
00023 - (BOOL)isStroked;
00024 - (struct EshColor)strokeFgColor;
00025 - (struct EshColor)strokeBgColor;
00026 - (struct EshColor)shadowColor;
00027 - (int)fillType;
00028 - (long)fillFgAlpha;
00029 - (long)fillBgAlpha;
00030 - (long)fillAngle;
00031 - (long)fillFocus;
00032 - (const struct EshTablePropVal<EshGradientStop> *)fillGradientColors;
00033 - (unsigned long)fillBlipID;
00034 - (id)fillBlipName;
00035
00036 @end
00037