1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
/*
copyright 2002 Alexander Malmberg <alexander@malmberg.org>
*/
#ifndef ComposeWindowController_h
#define ComposeWindowController_h
@class NSString,NSDictionary;
@class CWMessage;
@class NSTextView,NSTextField,NSButton;
@interface ComposeWindowController : NSWindowController
{
int state;
NSDictionary *msg_headers;
NSTextView *text;
NSTextField *tf_from,*tf_newsgroups,*tf_subject;
NSButton *b_send;
}
/* designated initializer */
- initWithHeaders: (NSDictionary *)headers content: (NSString *)content;
- initWithHeaders: (NSDictionary *)headers quoteContent: (NSString *)content;
- initWithHeaders: (NSDictionary *)headers;
- initWithFollowupToMessage: (CWMessage *)msg;
-(void) postedArticle: (BOOL)success;
@end
#endif
|