00001
00002
00003
00004
00005
00006
00007 #import <OfficeImport/OADShapeGeometry.h>
00008
00009 @class NSMutableArray;
00010
00011 @interface OADCustomShapeGeometry : OADShapeGeometry
00012 {
00013 struct CsRect<ChSINT4> *mGeometryCoordSpace;
00014 struct CsPoint<ChSINT4> *mLimo;
00015 NSMutableArray *mFormulas;
00016 NSMutableArray *mTextBodyRects;
00017 NSMutableArray *mPaths;
00018 }
00019
00020 - (id)init;
00021 - (void)dealloc;
00022 - (struct CsRect<ChSINT4>)geometryCoordSpace;
00023 - (void)setGeometryCoordSpace:(struct CsRect<ChSINT4>)fp8;
00024 - (struct CsPoint<ChSINT4>)limo;
00025 - (void)setLimo:(struct CsPoint<ChSINT4>)fp8;
00026 - (unsigned int)formulaCount;
00027 - (id)formulaAtIndex:(unsigned int)fp8;
00028 - (void)addFormula:(id)fp8;
00029 - (unsigned int)textBodyRectCount;
00030 - (id)textBodyRectAtIndex:(unsigned int)fp8;
00031 - (void)addTextBodyRect:(id)fp8;
00032 - (unsigned int)pathCount;
00033 - (id)pathAtIndex:(unsigned int)fp8;
00034 - (void)addPath:(id)fp8;
00035
00036 @end
00037