-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathXcodeKit.h
More file actions
34 lines (26 loc) · 704 Bytes
/
XcodeKit.h
File metadata and controls
34 lines (26 loc) · 704 Bytes
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
//
// XcodeKit.h
// XcodeKit
//
// Created by Plamen Todorov on 20.11.13.
// Copyright (c) 2013 г. Plamen Todorov. All rights reserved.
//
#import <AppKit/AppKit.h>
@class XcodeKit;
static XcodeKit *sharedPlugin;
@interface XcodeKit : NSObject
{
NSRange currentRange;
NSRange currentLineRange;
NSString *currentSelection;
NSTextView *codeEditor;
}
@property (assign) NSRange currentRange;
@property (assign) NSRange currentLineRange;
@property (nonatomic, retain) NSString *currentSelection;
@property (nonatomic, retain) NSTextView *codeEditor;
+(instancetype)sharedPlugin;
-(id)initWithBundle:(NSBundle *)plugin;
-(void)deleteSelection;
-(void)duplicateSelection;
@end