This repository has been archived on 2025-08-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Twittia/NewTweetWindow.h
2011-09-27 16:29:41 +02:00

27 lines
581 B
Objective-C

//
// NewTweetWindow.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