-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathMyDocument.h
34 lines (27 loc) · 861 Bytes
/
MyDocument.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// MyDocument.h
// GCDrawKit
//
// Created by graham on 5/12/09.
// Copyright 2009 Apptree.net. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class GCUndoTestView;
@interface MyDocument : NSDocument
{
IBOutlet NSButton* mEnableUndoCheckbox;
IBOutlet NSButton* mEnableCoalescingCheckbox;
IBOutlet NSButton* mEnableGroupByEventCheckbox;
IBOutlet NSColorWell* mColourPropertyWell;
IBOutlet GCUndoTestView* mMainView;
IBOutlet NSMatrix* mUndoTypeRadioButtons;
}
- (IBAction) enableUndoAction:(id) sender;
- (IBAction) enableCoalescingAction:(id) sender;
- (IBAction) enableEventGroupingAction:(id) sender;
- (IBAction) removeAllActionsAction:(id) sender;
- (IBAction) colourAction:(id) sender;
- (IBAction) umTypeAction:(id) sender;
- (IBAction) logUMDescription:(id) sender;
- (IBAction) explodeUndoAction:(id) sender;
@end