Browse Subversion Repository
Contents of /trunk/Classes/RemapDevicePanelController.h
Parent Directory
| Revision Log
Revision 117 -
( show annotations)
( download)
( as text)
Sun Oct 1 03:33:45 2017 UTC
(6 years, 6 months ago)
by toshinagata1964
File MIME type: text/x-chdr
File size: 1234 byte(s)
Sizes of the integer types are reconsidered.
| 1 |
// |
| 2 |
// RemapDevicePanelCotroller.h |
| 3 |
// |
| 4 |
// Created by Toshi Nagata. |
| 5 |
/* |
| 6 |
Copyright (c) 2000-2011 Toshi Nagata. All rights reserved. |
| 7 |
|
| 8 |
This program is free software; you can redistribute it and/or modify |
| 9 |
it under the terms of the GNU General Public License as published by |
| 10 |
the Free Software Foundation version 2 of the License. |
| 11 |
|
| 12 |
This program is distributed in the hope that it will be useful, |
| 13 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 |
GNU General Public License for more details. |
| 16 |
*/ |
| 17 |
|
| 18 |
#import <Cocoa/Cocoa.h> |
| 19 |
|
| 20 |
@class MyDocument; |
| 21 |
|
| 22 |
@interface RemapDevicePanelController : NSWindowController <NSTableViewDataSource> |
| 23 |
{ |
| 24 |
IBOutlet id myTableView; |
| 25 |
BOOL stopModalFlag; |
| 26 |
MyDocument *myDocument; |
| 27 |
NSArray *myTrackSelection; |
| 28 |
NSMutableArray *deviceNumbers; // The device number (index of currentValues) for each track |
| 29 |
NSMutableArray *initialValues; |
| 30 |
NSMutableArray *currentValues; |
| 31 |
} |
| 32 |
- (id)initWithDocument: (MyDocument *)document trackSelection: (NSArray *)trackSelection; |
| 33 |
- (void)beginSheetForWindow: (NSWindow *)parentWindow invokeStopModalWhenDone: (BOOL)flag; |
| 34 |
- (IBAction)changeAction:(id)sender; |
| 35 |
- (IBAction)dontChangeAction:(id)sender; |
| 36 |
|
| 37 |
|
| 38 |
@end |
|