-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MacOS Standalone Improvements (#238)
- If the input channels dont' match 2, standalone would fail to start. Now we bind to min of 2 and available in default. - Allow the NSWindow to default destroy when closed, avoiding a Root Leak - UI Resizing drag works properly - Save and Load for your session on a menu - A hint at at audio settings menu but no implementation - Cleanup the xib - Add a virtual destructor to IHost
- Loading branch information
1 parent
c173e24
commit 01f10b1
Showing
6 changed files
with
165 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
#import <Cocoa/Cocoa.h> | ||
|
||
@interface AppDelegate : NSObject <NSApplicationDelegate> | ||
// @class AudioSettingsWindowDelegate; | ||
|
||
@interface AppDelegate : NSObject <NSApplicationDelegate, NSWindowDelegate> | ||
{ | ||
// AudioSettingsWindowDelegate *audioSettingsWindowDelegate; | ||
} | ||
@property(assign) IBOutlet NSWindow *window; | ||
|
||
- (IBAction)openAudioSettingsWindow:(id)sender; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters