00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class ActivityMonitor, Message, MessageBody;
00010
00011 @interface MessageViewingContext : NSObject
00012 {
00013 Message *_message;
00014 MessageBody *_body;
00015 id _content;
00016 unsigned int _contentOffset;
00017 id _delegate;
00018 ActivityMonitor *_loadTask;
00019 unsigned int _loadIncrement;
00020 unsigned int _hasNoContent:1;
00021 unsigned int _isOutgoingMessage:1;
00022 }
00023
00024 - (id)initWithMessage:(id)fp8;
00025 - (void)dealloc;
00026 - (BOOL)hasLoaded;
00027 - (BOOL)isPartial;
00028 - (void)cancelLoad;
00029 - (void)setLoadTask:(id)fp8;
00030 - (id)loadTask;
00031 - (void)setDelegate:(id)fp8;
00032 - (void)setContent:(id)fp8;
00033 - (id)content;
00034 - (BOOL)hasNoContent;
00035 - (id)message;
00036 - (BOOL)isOutgoingMessage;
00037 - (void)setOutgoingMessage:(BOOL)fp8;
00038 - (void)setContentOffset:(unsigned int)fp8;
00039 - (unsigned int)contentOffset;
00040 - (id)messageBody;
00041 - (void)setMessageBody:(id)fp8;
00042 - (void)_loadAttachments:(id)fp8;
00043 - (void)loadAsPlainText:(BOOL)fp8 asHTML:(BOOL)fp12;
00044 - (void)loadFull;
00045 - (void)loadWithPriority:(int)fp8;
00046 - (void)load;
00047 - (void)loadAttachment:(id)fp8 pluginClient:(id)fp12;
00048 - (void)loadMore;
00049 - (void)_notifyInitialLoadComplete;
00050 - (void)_notifyAttachmentComplete:(id)fp8;
00051 - (void)_notifyCompletelyComplete;
00052
00053 @end
00054