Commit 8e64cfd2 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: fully implemented the interface and audio categories (excepting the visualiser setting)

parent e77ff475
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* simple_prefs.h: Simple Preferences for Mac OS X * simple_prefs.h: Simple Preferences for Mac OS X
***************************************************************************** *****************************************************************************
* Copyright (C) 2008 the VideoLAN team * Copyright (C) 2008 the VideoLAN team
* $Id:$ * $Id$
* *
* Authors: Felix Paul Kühne <fkuehne at videolan dot org> * Authors: Felix Paul Kühne <fkuehne at videolan dot org>
* *
...@@ -22,6 +22,8 @@ ...@@ -22,6 +22,8 @@
*****************************************************************************/ *****************************************************************************/
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>
#import "intf.h"
#import <vlc/vlc.h>
@interface VLCSimplePrefs : NSObject @interface VLCSimplePrefs : NSObject
{ {
...@@ -50,8 +52,6 @@ ...@@ -50,8 +52,6 @@
IBOutlet id o_audio_vol_txt; IBOutlet id o_audio_vol_txt;
IBOutlet id o_intf_art_pop; IBOutlet id o_intf_art_pop;
IBOutlet id o_intf_art_txt; IBOutlet id o_intf_art_txt;
IBOutlet id o_intf_black_ckb;
IBOutlet id o_intf_embvout_ckb;
IBOutlet id o_intf_fspanel_ckb; IBOutlet id o_intf_fspanel_ckb;
IBOutlet id o_intf_lang_pop; IBOutlet id o_intf_lang_pop;
IBOutlet id o_intf_lang_txt; IBOutlet id o_intf_lang_txt;
...@@ -80,9 +80,10 @@ ...@@ -80,9 +80,10 @@
itemForItemIdentifier: (NSString *)o_itemIdent itemForItemIdentifier: (NSString *)o_itemIdent
willBeInsertedIntoToolbar: (BOOL)b_willBeInserted; willBeInsertedIntoToolbar: (BOOL)b_willBeInserted;
- (NSArray *)toolbarDefaultItemIdentifiers: (NSToolbar *)toolbar; - (NSArray *)toolbarDefaultItemIdentifiers: (NSToolbar *)toolbar;
- (NSArray *) toolbarAllowedItemIdentifiers: (NSToolbar *)toolbar; - (NSArray *)toolbarAllowedItemIdentifiers: (NSToolbar *)toolbar;
- (void)initStrings; - (void)initStrings;
- (void)resetControls;
- (void)showSimplePrefs; - (void)showSimplePrefs;
- (IBAction)buttonAction:(id)sender; - (IBAction)buttonAction:(id)sender;
...@@ -90,6 +91,8 @@ ...@@ -90,6 +91,8 @@
returnCode:(int)i_return returnCode:(int)i_return
contextInfo:(void *)o_context; contextInfo:(void *)o_context;
- (void)saveChangedSettings;
/* interface */ /* interface */
- (IBAction)interfaceSettingChanged:(id)sender; - (IBAction)interfaceSettingChanged:(id)sender;
- (void)showInterfaceSettings; - (void)showInterfaceSettings;
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment