apps-projectcenter/Modules/Editors/ProjectCenter/LineJumper.h
Riccardo Mottola e28350370e declare missing method
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@39128 72102866-910b-0410-8b05-ffd578937521
2015-11-02 22:47:38 +00:00

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