Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
3c4998f6
Commit
3c4998f6
authored
Aug 23, 2012
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: added 'macosx-appleremote-sysvol' to simple prefs (interface category)
parent
2a6f2da3
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
109 additions
and
157 deletions
+109
-157
extras/package/macosx/Resources/English.lproj/Preferences.xib
...as/package/macosx/Resources/English.lproj/Preferences.xib
+105
-157
modules/gui/macosx/simple_prefs.h
modules/gui/macosx/simple_prefs.h
+1
-0
modules/gui/macosx/simple_prefs.m
modules/gui/macosx/simple_prefs.m
+3
-0
No files found.
extras/package/macosx/Resources/English.lproj/Preferences.xib
View file @
3c4998f6
This diff is collapsed.
Click to expand it.
modules/gui/macosx/simple_prefs.h
View file @
3c4998f6
...
...
@@ -94,6 +94,7 @@
IBOutlet
id
o_intf_embedded_ckb
;
IBOutlet
id
o_intf_fspanel_ckb
;
IBOutlet
id
o_intf_appleremote_ckb
;
IBOutlet
id
o_intf_appleremote_sysvol_ckb
;
IBOutlet
id
o_intf_mediakeys_ckb
;
IBOutlet
id
o_intf_network_box
;
IBOutlet
id
o_intf_view
;
...
...
modules/gui/macosx/simple_prefs.m
View file @
3c4998f6
...
...
@@ -275,6 +275,7 @@ create_toolbar_item( NSString * o_itemIdent, NSString * o_name, NSString * o_des
[
o_intf_fspanel_ckb
setTitle
:
_NS
(
"Show Fullscreen Controller"
)];
[
o_intf_network_box
setTitle
:
_NS
(
"Privacy / Network Interaction"
)];
[
o_intf_appleremote_ckb
setTitle
:
_NS
(
"Control playback with the Apple Remote"
)];
[
o_intf_appleremote_sysvol_ckb
setTitle
:
_NS
(
"Control system volume with the Apple Remote"
)];
[
o_intf_mediakeys_ckb
setTitle
:
_NS
(
"Control playback with media keys"
)];
[
o_intf_update_ckb
setTitle
:
_NS
(
"Automatically check for updates"
)];
[
o_intf_last_update_lbl
setStringValue
:
@""
];
...
...
@@ -486,6 +487,7 @@ static inline char * __config_GetLabel( vlc_object_t *p_this, const char *psz_na
[
self
setupButton
:
o_intf_embedded_ckb
forBoolValue
:
"embedded-video"
];
[
self
setupButton
:
o_intf_appleremote_ckb
forBoolValue
:
"macosx-appleremote"
];
[
self
setupButton
:
o_intf_appleremote_sysvol_ckb
forBoolValue
:
"macosx-appleremote-sysvol"
];
[
self
setupButton
:
o_intf_mediakeys_ckb
forBoolValue
:
"macosx-mediakeys"
];
if
(
[[
SUUpdater
sharedUpdater
]
lastUpdateCheckDate
]
!=
NULL
)
...
...
@@ -858,6 +860,7 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
config_PutInt
(
p_intf
,
"embedded-video"
,
[
o_intf_embedded_ckb
state
]
);
config_PutInt
(
p_intf
,
"macosx-appleremote"
,
[
o_intf_appleremote_ckb
state
]
);
config_PutInt
(
p_intf
,
"macosx-appleremote-sysvol"
,
[
o_intf_appleremote_sysvol_ckb
state
]);
config_PutInt
(
p_intf
,
"macosx-mediakeys"
,
[
o_intf_mediakeys_ckb
state
]
);
config_PutInt
(
p_intf
,
"macosx-interfacestyle"
,
[
o_intf_style_dark_bcell
state
]
);
config_PutInt
(
p_intf
,
"macosx-nativefullscreenmode"
,
[
o_intf_nativefullscreen_ckb
state
]
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment