Browse Subversion Repository
Contents of /trunk/Classes/QuantizePanelController.h
Parent Directory
| Revision Log
Revision 22 -
( show annotations)
( download)
( as text)
Sat Jan 21 08:42:50 2012 UTC
(12 years, 2 months ago)
by toshinagata1964
File MIME type: text/x-chdr
File size: 774 byte(s)
Quantize selected events: missing files are added
| 1 |
// |
| 2 |
// QuantizePanelController.h |
| 3 |
// Alchemusica |
| 4 |
// |
| 5 |
// Created by Toshi Nagata on 12/01/14. |
| 6 |
// Copyright 2012 __MyCompanyName__. All rights reserved. |
| 7 |
// |
| 8 |
|
| 9 |
#import <Cocoa/Cocoa.h> |
| 10 |
|
| 11 |
extern NSString *QuantizeNoteKey, *QuantizeStrengthKey, *QuantizeSwingKey; |
| 12 |
|
| 13 |
@interface QuantizePanelController : NSWindowController { |
| 14 |
float timebase; |
| 15 |
IBOutlet NSPopUpButton *unitNotePopUp; |
| 16 |
IBOutlet NSTextField *unitText; |
| 17 |
IBOutlet NSSlider *strengthSlider; |
| 18 |
IBOutlet NSTextField *strengthText; |
| 19 |
IBOutlet NSSlider *swingSlider; |
| 20 |
IBOutlet NSTextField *swingText; |
| 21 |
} |
| 22 |
- (void)setTimebase:(float)timebase; |
| 23 |
- (IBAction)unitChanged:(id)sender; |
| 24 |
- (IBAction)strengthChanged:(id)sender; |
| 25 |
- (IBAction)swingChanged:(id)sender; |
| 26 |
- (IBAction)okPressed:(id)sender; |
| 27 |
- (IBAction)cancelPressed:(id)sender; |
| 28 |
@end |
|