mirror of
https://github.com/textmate/textmate.git
synced 2026-01-22 21:27:56 -05:00
28 lines
690 B
Objective-C
28 lines
690 B
Objective-C
#import <OakAppKit/OakStatusBar.h>
|
|
#import <text/types.h>
|
|
|
|
@interface OTVStatusBar : OakStatusBar
|
|
{
|
|
text::range_t caretPosition;
|
|
NSString* grammarName;
|
|
NSString* symbolName;
|
|
BOOL isMacroRecording;
|
|
BOOL softTabs;
|
|
int32_t tabSize;
|
|
|
|
id delegate;
|
|
|
|
NSImage* pulsedRecordingIndicator;
|
|
NSTimer* recordingTimer;
|
|
CGFloat recordingTime;
|
|
}
|
|
- (void)setCaretPosition:(std::string const&)range;
|
|
@property (nonatomic, copy) NSString* grammarName;
|
|
@property (nonatomic, copy) NSString* symbolName;
|
|
@property (nonatomic, assign) BOOL isMacroRecording;
|
|
@property (nonatomic, assign) BOOL softTabs;
|
|
@property (nonatomic, assign) int32_t tabSize;
|
|
|
|
@property (nonatomic, assign) id delegate;
|
|
@end
|