[vlc-commits] macosx: Convert VLCSimplePrefs to NSWindowController subclass

David Fuhrmann git at videolan.org
Sun Aug 2 13:26:37 CEST 2015


vlc | branch: master | David Fuhrmann <dfuhrmann at videolan.org> | Sun Aug  2 12:21:25 2015 +0200| [e91c0ed1b70001824945069a2992b2a60019a895] | committer: David Fuhrmann

macosx: Convert VLCSimplePrefs to NSWindowController subclass

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e91c0ed1b70001824945069a2992b2a60019a895
---

 modules/gui/macosx/intf.m         |    4 ---
 modules/gui/macosx/simple_prefs.h |    3 +--
 modules/gui/macosx/simple_prefs.m |   51 ++++++++++++++++++++-----------------
 3 files changed, 28 insertions(+), 30 deletions(-)

diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m
index f8ece28..6c755ac 100644
--- a/modules/gui/macosx/intf.m
+++ b/modules/gui/macosx/intf.m
@@ -142,7 +142,6 @@ static int ShowController(vlc_object_t *p_this, const char *psz_variable,
     BOOL nib_main_loaded;       /* main nibfile */
     BOOL nib_about_loaded;      /* about nibfile */
     BOOL nib_prefs_loaded;      /* preferences xibfile */
-    BOOL nib_sprefs_loaded;      /* simple preferences xibfile */
     BOOL nib_coredialogs_loaded; /* CoreDialogs nibfile */
     BOOL b_active_videoplayback;
 
@@ -549,9 +548,6 @@ static int ShowController(vlc_object_t *p_this, const char *psz_variable,
     if (!_sprefs)
         _sprefs = [[VLCSimplePrefs alloc] init];
 
-    if (!nib_sprefs_loaded)
-        nib_sprefs_loaded = [NSBundle loadNibNamed:@"SimplePreferences" owner: _sprefs];
-
     return _sprefs;
 }
 
diff --git a/modules/gui/macosx/simple_prefs.h b/modules/gui/macosx/simple_prefs.h
index 90f21fa..3244f8f 100644
--- a/modules/gui/macosx/simple_prefs.h
+++ b/modules/gui/macosx/simple_prefs.h
@@ -25,7 +25,7 @@
 #import "intf.h"
 #import <vlc_common.h>
 
- at interface VLCSimplePrefs : NSObject
+ at interface VLCSimplePrefs : NSWindowController
 
 @property (readwrite, weak) IBOutlet NSPopUpButton *audio_dolbyPopup;
 @property (readwrite, weak) IBOutlet NSTextField *audio_dolbyLabel;
@@ -141,7 +141,6 @@
 @property (readwrite, weak) IBOutlet NSBox *controlsBox;
 @property (readwrite, weak) IBOutlet NSButton *resetButton;
 @property (readwrite, weak) IBOutlet NSButton *saveButton;
- at property (readwrite, weak) IBOutlet NSWindow *window;
 
 @property (readwrite, weak) IBOutlet NSButton *video_blackCheckbox;
 @property (readwrite, weak) IBOutlet NSPopUpButton *video_devicePopup;
diff --git a/modules/gui/macosx/simple_prefs.m b/modules/gui/macosx/simple_prefs.m
index b0f2913..41a42e2 100644
--- a/modules/gui/macosx/simple_prefs.m
+++ b/modules/gui/macosx/simple_prefs.m
@@ -207,12 +207,15 @@ static NSString* VLCHotkeysSettingToolbarIdentifier = @"Hotkeys Settings Item Id
 
 - (id)init
 {
-    self = [super init];
-    p_intf = VLCIntf;
+    self = [super initWithWindowNibName:@"SimplePreferences"];
+    if (self) {
+        p_intf = VLCIntf;
+    }
+
     return self;
 }
 
-- (void)awakeFromNib
+- (void)windowDidLoad
 {
     [self initStrings];
 
@@ -233,10 +236,10 @@ static NSString* VLCHotkeysSettingToolbarIdentifier = @"Hotkeys Settings Item Id
     [toolbar setDisplayMode: NSToolbarDisplayModeIconAndLabel];
     [toolbar setSizeMode: NSToolbarSizeModeRegular];
     [toolbar setDelegate: self];
-    [_window setToolbar:toolbar];
+    [self.window setToolbar:toolbar];
 
-    [_window setCollectionBehavior: NSWindowCollectionBehaviorFullScreenAuxiliary];
-    [_window setHidesOnDeactivate:YES];
+    [self.window setCollectionBehavior: NSWindowCollectionBehaviorFullScreenAuxiliary];
+    [self.window setHidesOnDeactivate:YES];
 
     [_hotkeys_listbox setTarget:self];
     [_hotkeys_listbox setDoubleAction:@selector(hotkeyTableDoubleClick:)];
@@ -422,7 +425,7 @@ create_toolbar_item(NSString *itemIdent, NSString *name, NSString *desc, NSStrin
     [_cancelButton setTitle: _NS("Cancel")];
     [_resetButton setTitle: _NS("Reset All")];
     [_saveButton setTitle: _NS("Save")];
-    [_window setTitle: _NS("Preferences")];
+    [self.window setTitle: _NS("Preferences")];
 }
 
 /* TODO: move this part to core */
@@ -802,20 +805,20 @@ static inline char * __config_GetLabel(vlc_object_t *p_this, const char *psz_nam
 - (void)showSimplePrefs
 {
     /* we want to show the interface settings, if no category was chosen */
-    if ([[_window toolbar] selectedItemIdentifier] == nil) {
-        [[_window toolbar] setSelectedItemIdentifier: VLCIntfSettingToolbarIdentifier];
+    if ([[self.window toolbar] selectedItemIdentifier] == nil) {
+        [[self.window toolbar] setSelectedItemIdentifier: VLCIntfSettingToolbarIdentifier];
         [self showInterfaceSettings];
     }
 
     [self resetControls];
 
-    [_window center];
-    [_window makeKeyAndOrderFront: self];
+    [self.window center];
+    [self.window makeKeyAndOrderFront: self];
 }
 
 - (void)showSimplePrefsWithLevel:(NSInteger)i_window_level
 {
-    [_window setLevel: i_window_level];
+    [self.window setLevel: i_window_level];
     [self showSimplePrefs];
 }
 
@@ -823,14 +826,14 @@ static inline char * __config_GetLabel(vlc_object_t *p_this, const char *psz_nam
 {
     if (sender == _cancelButton) {
         [[NSFontPanel sharedFontPanel] close];
-        [_window orderOut: sender];
+        [self.window orderOut: sender];
     } else if (sender == _saveButton) {
         [self saveChangedSettings];
         [[NSFontPanel sharedFontPanel] close];
-        [_window orderOut: sender];
+        [self.window orderOut: sender];
     } else if (sender == _showAllButton) {
-        [_window orderOut: self];
-        [[[VLCMain sharedInstance] preferences] showPrefsWithLevel:[_window level]];
+        [self.window orderOut: self];
+        [[[VLCMain sharedInstance] preferences] showPrefsWithLevel:[self.window level]];
     } else
         msg_Warn(p_intf, "unknown buttonAction sender");
 }
@@ -1089,7 +1092,7 @@ static inline void save_string_list(intf_thread_t * p_intf, id object, const cha
 - (void)showSettingsForCategory:(id)new_categoryView
 {
     NSRect win_rect, view_rect, oldView_rect;
-    win_rect = [_window frame];
+    win_rect = [self.window frame];
     view_rect = [new_categoryView frame];
 
     if (_currentlyShownCategoryView == new_categoryView)
@@ -1110,11 +1113,11 @@ static inline void save_string_list(intf_thread_t * p_intf, id object, const cha
                                            view_rect.size.height)];
     [new_categoryView setAutoresizesSubviews: YES];
     if (_currentlyShownCategoryView) {
-        [[[_window contentView] animator] replaceSubview:_currentlyShownCategoryView with:new_categoryView];
-        [[_window animator] setFrame:win_rect display:YES];
+        [[[self.window contentView] animator] replaceSubview:_currentlyShownCategoryView with:new_categoryView];
+        [[self.window animator] setFrame:win_rect display:YES];
     } else {
-        [[_window contentView] addSubview:new_categoryView];
-        [_window setFrame:win_rect display:YES animate:NO];
+        [[self.window contentView] addSubview:new_categoryView];
+        [self.window setFrame:win_rect display:YES animate:NO];
     }
 
     /* keep our current category for further reference */
@@ -1199,7 +1202,7 @@ static inline void save_string_list(intf_thread_t * p_intf, id object, const cha
         [_selectFolderPanel setMessage: _NS("Choose the folder to save your video snapshots to.")];
         [_selectFolderPanel setCanCreateDirectories: YES];
         [_selectFolderPanel setPrompt: _NS("Choose")];
-        [_selectFolderPanel beginSheetModalForWindow:_window completionHandler: ^(NSInteger returnCode) {
+        [_selectFolderPanel beginSheetModalForWindow:self.window completionHandler: ^(NSInteger returnCode) {
             if (returnCode == NSOKButton)
             {
                 [_video_snap_folderTextField setStringValue: [[_selectFolderPanel URL] path]];
@@ -1299,7 +1302,7 @@ static inline void save_string_list(intf_thread_t * p_intf, id object, const cha
         [_selectFolderPanel setMessage: _NS("Choose the directory or filename where the records will be stored.")];
         [_selectFolderPanel setCanCreateDirectories: YES];
         [_selectFolderPanel setPrompt: _NS("Choose")];
-        [_selectFolderPanel beginSheetModalForWindow:_window completionHandler: ^(NSInteger returnCode) {
+        [_selectFolderPanel beginSheetModalForWindow:self.window completionHandler: ^(NSInteger returnCode) {
             if (returnCode == NSOKButton)
             {
                 [_input_recordTextField setStringValue: [[_selectFolderPanel URL] path]];
@@ -1381,7 +1384,7 @@ static inline void save_string_list(intf_thread_t * p_intf, id object, const cha
 
 #undef fillUrlHandlerPopup
 
-        [NSApp beginSheet:_urlhandler_win modalForWindow:_window modalDelegate:self didEndSelector:NULL contextInfo:nil];
+        [NSApp beginSheet:_urlhandler_win modalForWindow:self.window modalDelegate:self didEndSelector:NULL contextInfo:nil];
     } else {
         [_urlhandler_win orderOut:sender];
         [NSApp endSheet:_urlhandler_win];



More information about the vlc-commits mailing list