mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
24 lines
538 B
Objective-C
24 lines
538 B
Objective-C
//
|
|
// SVGHelpManager.h
|
|
// macSVG
|
|
//
|
|
// Created by Douglas Ward on 7/20/16.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class MacSVGDocumentWindowController;
|
|
|
|
@interface SVGHelpManager : NSObject
|
|
|
|
@property (strong) NSDictionary * elementsHelpDictionary;
|
|
@property (strong) NSMutableArray * attributesHelpArray;
|
|
@property (weak) IBOutlet MacSVGDocumentWindowController * macSVGDocumentWindowController;
|
|
|
|
|
|
- (void)showDocumentationForElement:(NSString *)elementName;
|
|
- (void)showDocumentationForAttribute:(NSString *)attributeName;
|
|
|
|
@end
|