forked from johnno1962/GitDiff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGitDiffColorsWindowController.h
More file actions
24 lines (18 loc) · 674 Bytes
/
GitDiffColorsWindowController.h
File metadata and controls
24 lines (18 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// GitDiffColorsWindowController.h
// GitDiff
//
// Created by Allen Wu on 8/17/14.
//
//
#import <Cocoa/Cocoa.h>
// template from: https://github.com/fortinmike/XcodeBoost/blob/master/XcodeBoost/MFPreferencesWindowController.h
@interface GitDiffColorsWindowController : NSWindowController
@property (strong, readonly) NSColor *modifiedColor;
@property (strong, readonly) NSColor *addedColor;
@property (strong, readonly) NSColor *deletedColor;
@property (strong, readonly) NSColor *popoverColor;
@property (strong, readonly) NSColor *changedColor;
@property (weak) IBOutlet NSButton *shouldPopover;
- (instancetype)initWithPluginBundle:(NSBundle *)bundle;
@end