Files
Niklas Berglund 5d4ac594e8 previewVisible and editorVisible properties public
So they can be accessed from MPToolbarController
2017-02-12 15:40:33 +08:00

23 lines
480 B
Objective-C

//
// MPDocument.h
// MacDown
//
// Created by Tzu-ping Chung on 6/06/2014.
// Copyright (c) 2014 Tzu-ping Chung . All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class MPPreferences;
@interface MPDocument : NSDocument
@property (nonatomic, readonly) MPPreferences *preferences;
@property (readonly) BOOL previewVisible;
@property (readonly) BOOL editorVisible;
@property (nonatomic, readwrite) NSString *markdown;
@property (nonatomic, readonly) NSString *html;
@end