mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-23 03:41:25 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@38051 72102866-910b-0410-8b05-ffd578937521
20 lines
404 B
Objective-C
20 lines
404 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 */
|
|
- (IBAction)goToLine:(id)sender;
|
|
|
|
@end
|