mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
27 lines
558 B
Objective-C
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
|