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

28 lines
707 B
Objective-C

//
// ValidAttributesController.h
// macSVG
//
// Created by Douglas Ward on 1/1/12.
// Copyright © 2016 ArkPhone LLC. All rights reserved.
//
#import <Foundation/Foundation.h>
@class EditorUIFrameController;
@interface ValidAttributesController : NSObject <NSTableViewDelegate, NSTableViewDataSource>
{
IBOutlet EditorUIFrameController * editorUIFrameController;
IBOutlet NSView * validAttributesFrameView;
}
@property (weak)IBOutlet NSTableView * validAttributesTableView;
@property (strong)NSArray * attributeKeysArray;
@property (strong)NSMutableDictionary * attributesDictionary;
-(void)setEnabled:(BOOL)enabled;
-(void)setValidAttributesForElement:(NSXMLElement *)xmlElement;
@end