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 <Cocoa/Cocoa.h>
|
||||||
#import "TransparentTextView.h"
|
#import "TransparentTextView.h"
|
||||||
|
|
||||||
@interface SDLMain : NSObject
|
@ interface SDLMain:NSObject
|
||||||
{
|
{
|
||||||
IBOutlet NSWindow *messagePanel;
|
IBOutlet NSWindow *messagePanel;
|
||||||
IBOutlet NSTextField *messageText;
|
IBOutlet NSTextField *messageText;
|
||||||
IBOutlet NSTextField *messageStatus;
|
IBOutlet NSTextField *messageStatus;
|
||||||
IBOutlet NSProgressIndicator *messageProgress;
|
IBOutlet NSProgressIndicator *messageProgress;
|
||||||
IBOutlet NSWindow *aboutWindow;
|
IBOutlet NSWindow *aboutWindow;
|
||||||
IBOutlet NSTextField *appnameText;
|
IBOutlet NSTextField *appnameText;
|
||||||
IBOutlet NSTextField *versionText;
|
IBOutlet NSTextField *versionText;
|
||||||
IBOutlet TransparentTextView *acknowledgmentsText;
|
IBOutlet TransparentTextView *acknowledgmentsText;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (IBAction)onAbout:(id)sender;
|
-(IBAction) onAbout:(id) sender;
|
||||||
- (IBAction)onNew:(id)sender;
|
-(IBAction) onNew:(id) sender;
|
||||||
- (IBAction)onOpen:(id)sender;
|
-(IBAction) onOpen:(id) sender;
|
||||||
- (IBAction)onSave:(id)sender;
|
-(IBAction) onSave:(id) sender;
|
||||||
- (IBAction)onPrint:(id)sender;
|
-(IBAction) onPrint:(id) sender;
|
||||||
- (IBAction)onPageSetup:(id)sender;
|
-(IBAction) onPageSetup:(id) sender;
|
||||||
- (IBAction)onUndo:(id)sender;
|
-(IBAction) onUndo:(id) sender;
|
||||||
- (IBAction)onRedo:(id)sender;
|
-(IBAction) onRedo:(id) sender;
|
||||||
- (IBAction)onHelp:(id)sender;
|
-(IBAction) onHelp:(id) sender;
|
||||||
- (IBAction)onQuit:(id)sender;
|
-(IBAction) onQuit:(id) sender;
|
||||||
|
|
||||||
- (void) sendSDLControlKeystroke:(int)key;
|
-(void)sendSDLControlKeystroke:(int)key;
|
||||||
- (void) sendSDLControlShiftKeystroke:(int)key;
|
-(void)sendSDLControlShiftKeystroke:(int)key;
|
||||||
- (void) setupBridge;
|
-(void)setupBridge;
|
||||||
|
|
||||||
- (void) displayMessage:(NSString*)message andStatus:(NSString*)status withProgressIndicator:(BOOL)progress;
|
-(void)displayMessage:(NSString *)
|
||||||
- (void) hideMessage;
|
message andStatus:(NSString *)
|
||||||
|
status withProgressIndicator:(BOOL) progress;
|
||||||
|
|
||||||
|
-(void)hideMessage;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue