Files
Niklas Berglund 2083d21a4c Rewrote toolbar item creation and removed pane toggling buttons
Using factory methods for creating toolbar items instead of specifying
the items and their attributes in a kinda giant dictionary
2017-07-30 17:44:23 +08:00

17 lines
328 B
Objective-C

//
// MPToolbarController.h
// MacDown
//
// Created by Niklas Berglund on 2017-02-12.
// Copyright © 2017 Tzu-ping Chung . All rights reserved.
//
#import <Foundation/Foundation.h>
#import "MPDocument.h"
@interface MPToolbarController : NSObject<NSToolbarDelegate>
@property (weak) IBOutlet MPDocument *document;
@end