indent SDLMain.h in macosx/

This commit is contained in:
Bill Kendrick 2017-10-15 11:28:52 -07:00
parent 8315fa6804
commit 9bf92ab3e3

View file

@ -12,7 +12,7 @@
#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;
@ -24,22 +24,25 @@
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