Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
2ea9ea11
Commit
2ea9ea11
authored
May 17, 2012
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: added 'video-deco' to the simple preferences to match the Qt4 intf (refs #6426)
parent
f01f7eca
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
103 additions
and
25 deletions
+103
-25
extras/package/macosx/Resources/English.lproj/Preferences.xib
...as/package/macosx/Resources/English.lproj/Preferences.xib
+98
-24
modules/gui/macosx/simple_prefs.h
modules/gui/macosx/simple_prefs.h
+2
-1
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 @
2ea9ea11
This diff is collapsed.
Click to expand it.
modules/gui/macosx/simple_prefs.h
View file @
2ea9ea11
/*****************************************************************************
* simple_prefs.h: Simple Preferences for Mac OS X
*****************************************************************************
* Copyright (C) 2008-201
1
VLC authors and VideoLAN
* Copyright (C) 2008-201
2
VLC authors and VideoLAN
* $Id$
*
* Authors: Felix Paul Kühne <fkuehne at videolan dot org>
...
...
@@ -145,6 +145,7 @@ IBOutlet id o_intf_mediakeys_ckb;
IBOutlet
id
o_video_display_box
;
IBOutlet
id
o_video_enable_ckb
;
IBOutlet
id
o_video_fullscreen_ckb
;
IBOutlet
id
o_video_videodeco_ckb
;
IBOutlet
id
o_video_onTop_ckb
;
IBOutlet
id
o_video_output_pop
;
IBOutlet
id
o_video_output_txt
;
...
...
modules/gui/macosx/simple_prefs.m
View file @
2ea9ea11
...
...
@@ -306,6 +306,7 @@ create_toolbar_item( NSString * o_itemIdent, NSString * o_name, NSString * o_des
[
o_video_display_box
setTitle
:
_NS
(
"Display"
)];
[
o_video_enable_ckb
setTitle
:
_NS
(
"Enable Video"
)];
[
o_video_fullscreen_ckb
setTitle
:
_NS
(
"Fullscreen"
)];
[
o_video_videodeco_ckb
setTitle
:
_NS
(
"Window decorations"
)];
[
o_video_onTop_ckb
setTitle
:
_NS
(
"Always on top"
)];
[
o_video_output_txt
setStringValue
:
_NS
(
"Output module"
)];
[
o_video_skipFrames_ckb
setTitle
:
_NS
(
"Skip frames"
)];
...
...
@@ -579,6 +580,7 @@ static inline char * __config_GetLabel( vlc_object_t *p_this, const char *psz_na
[
self
setupButton
:
o_video_onTop_ckb
forBoolValue
:
"video-on-top"
];
[
self
setupButton
:
o_video_skipFrames_ckb
forBoolValue
:
"skip-frames"
];
[
self
setupButton
:
o_video_black_ckb
forBoolValue
:
"macosx-black"
];
[
self
setupButton
:
o_video_videodeco_ckb
forBoolValue
:
"video-deco"
];
[
self
setupButton
:
o_video_output_pop
forModuleList
:
"vout"
];
...
...
@@ -927,6 +929,7 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
{
config_PutInt
(
p_intf
,
"video"
,
[
o_video_enable_ckb
state
]
);
config_PutInt
(
p_intf
,
"fullscreen"
,
[
o_video_fullscreen_ckb
state
]
);
config_PutInt
(
p_intf
,
"video-deco"
,
[
o_video_videodeco_ckb
state
]
);
config_PutInt
(
p_intf
,
"video-on-top"
,
[
o_video_onTop_ckb
state
]
);
config_PutInt
(
p_intf
,
"skip-frames"
,
[
o_video_skipFrames_ckb
state
]
);
config_PutInt
(
p_intf
,
"macosx-black"
,
[
o_video_black_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