mirror of
https://github.com/textmate/textmate.git
synced 2026-01-23 05:37:55 -05:00
14 lines
349 B
Objective-C
14 lines
349 B
Objective-C
@class OakEncodingPopUpButton;
|
|
|
|
@interface EncodingViewController : NSViewController
|
|
{
|
|
IBOutlet OakEncodingPopUpButton* popUpButton;
|
|
IBOutlet NSTextView* textView;
|
|
|
|
char const* first;
|
|
char const* last;
|
|
}
|
|
@property (nonatomic, readonly) NSString* currentEncoding;
|
|
- (id)initWithFirst:(char const*)firstPointer last:(char const*)lastPointer;
|
|
@end
|