indent SDLMain.h in macosx/
This commit is contained in:
parent
8315fa6804
commit
9bf92ab3e3
1 changed files with 27 additions and 24 deletions
|
|
@ -12,34 +12,37 @@
|
|||
#import <Cocoa/Cocoa.h>
|
||||
#import "TransparentTextView.h"
|
||||
|
||||
@interface SDLMain : NSObject
|
||||
@ interface SDLMain:NSObject
|
||||
{
|
||||
IBOutlet NSWindow *messagePanel;
|
||||
IBOutlet NSTextField *messageText;
|
||||
IBOutlet NSTextField *messageStatus;
|
||||
IBOutlet NSProgressIndicator *messageProgress;
|
||||
IBOutlet NSWindow *aboutWindow;
|
||||
IBOutlet NSTextField *appnameText;
|
||||
IBOutlet NSTextField *versionText;
|
||||
IBOutlet TransparentTextView *acknowledgmentsText;
|
||||
IBOutlet NSWindow *messagePanel;
|
||||
IBOutlet NSTextField *messageText;
|
||||
IBOutlet NSTextField *messageStatus;
|
||||
IBOutlet NSProgressIndicator *messageProgress;
|
||||
IBOutlet NSWindow *aboutWindow;
|
||||
IBOutlet NSTextField *appnameText;
|
||||
IBOutlet NSTextField *versionText;
|
||||
IBOutlet TransparentTextView *acknowledgmentsText;
|
||||
}
|
||||
|
||||
- (IBAction)onAbout:(id)sender;
|
||||
- (IBAction)onNew:(id)sender;
|
||||
- (IBAction)onOpen:(id)sender;
|
||||
- (IBAction)onSave:(id)sender;
|
||||
- (IBAction)onPrint:(id)sender;
|
||||
- (IBAction)onPageSetup:(id)sender;
|
||||
- (IBAction)onUndo:(id)sender;
|
||||
- (IBAction)onRedo:(id)sender;
|
||||
- (IBAction)onHelp:(id)sender;
|
||||
- (IBAction)onQuit:(id)sender;
|
||||
-(IBAction) onAbout:(id) sender;
|
||||
-(IBAction) onNew:(id) sender;
|
||||
-(IBAction) onOpen:(id) sender;
|
||||
-(IBAction) onSave:(id) sender;
|
||||
-(IBAction) onPrint:(id) sender;
|
||||
-(IBAction) onPageSetup:(id) sender;
|
||||
-(IBAction) onUndo:(id) sender;
|
||||
-(IBAction) onRedo:(id) sender;
|
||||
-(IBAction) onHelp:(id) sender;
|
||||
-(IBAction) onQuit:(id) sender;
|
||||
|
||||
- (void) sendSDLControlKeystroke:(int)key;
|
||||
- (void) sendSDLControlShiftKeystroke:(int)key;
|
||||
- (void) setupBridge;
|
||||
-(void)sendSDLControlKeystroke:(int)key;
|
||||
-(void)sendSDLControlShiftKeystroke:(int)key;
|
||||
-(void)setupBridge;
|
||||
|
||||
- (void) displayMessage:(NSString*)message andStatus:(NSString*)status withProgressIndicator:(BOOL)progress;
|
||||
- (void) hideMessage;
|
||||
-(void)displayMessage:(NSString *)
|
||||
message andStatus:(NSString *)
|
||||
status withProgressIndicator:(BOOL) progress;
|
||||
|
||||
-(void)hideMessage;
|
||||
|
||||
@end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue