mirror of
https://github.com/MacDownApp/macdown.git
synced 2026-05-17 12:40:37 +00:00
6d77697e5e
* A menu that holds all plug-ins, refreshed when appearing. * Show a plug-in via the `-name` property. * Invoke a plug-in via `-run:` when an item is clicked. An example is published at <https://github.com/uranusjr/macdown-gistit>.
16 lines
313 B
Objective-C
16 lines
313 B
Objective-C
//
|
|
// MPPlugInController.h
|
|
// MacDown
|
|
//
|
|
// Created by Tzu-ping Chung on 02/3.
|
|
// Copyright © 2016 Tzu-ping Chung . All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface MPPlugInController : NSObject<NSMenuDelegate>
|
|
|
|
@property (weak) IBOutlet NSDocumentController *documentController;
|
|
|
|
@end
|