mirror of
https://github.com/MacDownApp/macdown.git
synced 2026-05-17 12:40:37 +00:00
2083d21a4c
Using factory methods for creating toolbar items instead of specifying the items and their attributes in a kinda giant dictionary
17 lines
328 B
Objective-C
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
|