Files
macSVG-mirror/macSVG/SVGDocument Classes/TextEditorController.h
2016-09-15 10:13:52 -05:00

27 lines
558 B
Objective-C

//
// TextEditorController.h
// macSVG
//
// Created by Douglas Ward on 1/1/12.
// Copyright © 2016 ArkPhone LLC. All rights reserved.
//
#import <Foundation/Foundation.h>
@class EditorUIFrameController;
@interface TextEditorController : NSObject
{
IBOutlet EditorUIFrameController * editorUIFrameController;
IBOutlet NSView * textEditorView;
IBOutlet NSTextView * textEditorTextView;
}
-(void)setEnabled:(BOOL)enabled;
-(void)reloadData;
- (IBAction)saveChangesButtonAction:(id)sender;
- (IBAction)revertButtonAction:(id)sender;
@end