refactored MyDocument to NewTweetWindow
This commit is contained in:
parent
82e9c1a369
commit
0d567d693e
6 changed files with 1111 additions and 16 deletions
27
NewTweetWindow.h
Normal file
27
NewTweetWindow.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
//
|
||||
// MyDocument.h
|
||||
// Twittia 2
|
||||
//
|
||||
// Created by Jeena on 16.04.10.
|
||||
// Licence: BSD (see attached LICENCE.txt file).
|
||||
//
|
||||
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
|
||||
@interface NewTweetWindow : NSDocument
|
||||
{
|
||||
IBOutlet NSTextField *textField;
|
||||
IBOutlet NSTextField *counter;
|
||||
NSString *inReplyTostatusId;
|
||||
}
|
||||
|
||||
@property (nonatomic, retain) IBOutlet NSTextField *textField;
|
||||
@property (nonatomic, retain) IBOutlet NSTextField *counter;
|
||||
|
||||
- (IBAction)sendTweet:(NSControl *)control;
|
||||
- (void)inReplyTo:(NSString *)userName statusId:(NSString *)statusId;
|
||||
- (void)withString:(NSString *)aString;
|
||||
|
||||
@end
|
Reference in a new issue