00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSMutableArray, WDDocument, WDTableCell;
00010
00011 @interface WDText : NSObject
00012 {
00013 NSMutableArray *mBlocks;
00014 WDDocument *mDocument;
00015 int mTextType;
00016 WDTableCell *mTableCell;
00017 }
00018
00019 - (id)initWithDocument:(id)fp8 textType:(int)fp12;
00020 - (id)initWithDocument:(id)fp8 textType:(int)fp12 tableCell:(id)fp16;
00021 - (void)dealloc;
00022 - (id)blocks;
00023 - (int)blockCount;
00024 - (id)blockAt:(int)fp8;
00025 - (id)lastBlock;
00026 - (int)indexOfBlock:(id)fp8;
00027 - (void)addBlock:(id)fp8;
00028 - (id)document;
00029 - (int)textType;
00030 - (id)tableCell;
00031 - (id)addParagraph;
00032 - (id)addParagraphAtIndex:(int)fp8;
00033 - (id)addTable;
00034 - (id)addTableAtIndex:(int)fp8;
00035 - (void)removeLastCharacter:(unsigned short)fp8;
00036 - (void)removeLastBlock;
00037 - (int)tableNestingLevel;
00038 - (id)blockIterator;
00039 - (id)runIterator;
00040 - (BOOL)isEmpty;
00041 - (id)content;
00042
00043 @end
00044