00001
00002
00003
00004
00005
00006
00007 #import <OfficeImport/OABShapeBaseManager.h>
00008
00009 #import "OABPropertiesManagerProtocol.h"
00010
00011 @interface OABShapeManager : OABShapeBaseManager <OABPropertiesManager>
00012 {
00013 struct EshShape *mShape;
00014 }
00015
00016 - (id)initWithShape:(struct EshShape *)fp8 masterShape:(struct EshShape *)fp12;
00017 - (id)initWithShape:(struct EshShape *)fp8;
00018 - (BOOL)isFillOK;
00019 - (BOOL)isStrokeOK;
00020 - (BOOL)isShadowOK;
00021 - (BOOL)isFilled;
00022 - (BOOL)isStroked;
00023 - (BOOL)isShadowed;
00024 - (BOOL)isTextPath;
00025 - (id)textPathUnicodeString;
00026 - (int)textPathTextAlignment;
00027 - (long)textPathFontSize;
00028 - (id)textPathFontFamily;
00029 - (BOOL)textPathBold;
00030 - (BOOL)textPathItalic;
00031 - (BOOL)textPathUnderline;
00032 - (BOOL)textPathSmallcaps;
00033 - (BOOL)textPathStrikethrough;
00034 - (BOOL)hidden;
00035
00036 @end
00037