mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-19 10:00:48 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@39128 72102866-910b-0410-8b05-ffd578937521
21 lines
444 B
Objective-C
21 lines
444 B
Objective-C
#import <Foundation/NSObject.h>
|
|
#import <Protocols/CodeEditorView.h>
|
|
|
|
@interface LineJumper : NSObject
|
|
{
|
|
IBOutlet NSTextField *lineField;
|
|
IBOutlet NSButton *goToButton;
|
|
}
|
|
|
|
+ (id)sharedInstance;
|
|
|
|
- (NSPanel *)linePanel;
|
|
|
|
/* Gets the first responder and returns it if it's an NSTextView */
|
|
- (NSTextView<CodeEditorView> *)editorViewToUse;
|
|
|
|
/* panel UI methods */
|
|
- (void)orderFrontLinePanel:(id)sender;
|
|
- (IBAction)goToLine:(id)sender;
|
|
|
|
@end
|