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
9f2ffffe
Commit
9f2ffffe
authored
Feb 09, 2008
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: same as previous commit plus revert of [24799] for prefs.m (unintended commit)
parent
ba9f39d7
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
169 additions
and
159 deletions
+169
-159
extras/package/macosx/Resources/English.lproj/Preferences.nib/classes.nib
...acosx/Resources/English.lproj/Preferences.nib/classes.nib
+0
-2
extras/package/macosx/Resources/English.lproj/Preferences.nib/info.nib
...e/macosx/Resources/English.lproj/Preferences.nib/info.nib
+7
-4
extras/package/macosx/Resources/English.lproj/Preferences.nib/keyedobjects.nib
.../Resources/English.lproj/Preferences.nib/keyedobjects.nib
+0
-0
extras/package/macosx/vlc.xcodeproj/project.pbxproj
extras/package/macosx/vlc.xcodeproj/project.pbxproj
+1
-2
modules/gui/macosx/prefs.m
modules/gui/macosx/prefs.m
+161
-151
No files found.
extras/package/macosx/Resources/English.lproj/Preferences.nib/classes.nib
View file @
9f2ffffe
...
...
@@ -473,8 +473,6 @@
"o_audio_vol_txt" = id;
"o_intf_art_pop" = id;
"o_intf_art_txt" = id;
"o_intf_black_ckb" = id;
"o_intf_embvout_ckb" = id;
"o_intf_fspanel_ckb" = id;
"o_intf_lang_pop" = id;
"o_intf_lang_txt" = id;
...
...
extras/package/macosx/Resources/English.lproj/Preferences.nib/info.nib
View file @
9f2ffffe
...
...
@@ -3,13 +3,15 @@
<plist
version=
"1.0"
>
<dict>
<key>
IBDocumentLocation
</key>
<string>
398 124
505 518 0 0 1280 778
</string>
<string>
-145 -8
505 518 0 0 1280 778
</string>
<key>
IBEditorPositions
</key>
<dict>
<key>
2311
</key>
<string>
3
10 385 660 305
0 0 1280 778
</string>
<string>
3
45 417 590 241
0 0 1280 778
</string>
<key>
2330
</key>
<string>
190 210 660 502 0 0 1280 778
</string>
<string>
345 266 590 502 0 0 1280 778
</string>
<key>
2440
</key>
<string>
179 151 586 376 0 0 1280 778
</string>
</dict>
<key>
IBFramework Version
</key>
<string>
446.1
</string>
...
...
@@ -32,8 +34,9 @@
</array>
<key>
IBOpenObjects
</key>
<array>
<integer>
2265
</integer>
<integer>
2330
</integer>
<integer>
2265
</integer>
<integer>
2311
</integer>
</array>
<key>
IBSystem Version
</key>
<string>
8S2167
</string>
...
...
extras/package/macosx/Resources/English.lproj/Preferences.nib/keyedobjects.nib
View file @
9f2ffffe
No preview for this file type
extras/package/macosx/vlc.xcodeproj/project.pbxproj
View file @
9f2ffffe
...
...
@@ -169,7 +169,7 @@
productName
=
vlc
;
productReference
=
014CEA410018CDE011CA2923
/* VLC.bundle */
;
productSettingsXML
=
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>
<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">
<!DOCTYPE plist PUBLIC \"-//Apple
Computer
//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">
<plist version=\"1.0\">
<dict>
<key>CFBundleDevelopmentRegion</key>
...
...
@@ -1523,7 +1523,6 @@
089C1669FE841209C02AAC07
/* Project object */
=
{
isa
=
PBXProject
;
buildConfigurationList
=
C2F2A6EA09588F1B00018C74
/* Build configuration list for PBXProject "vlc" */
;
compatibilityVersion
=
"Xcode 2.4"
;
hasScannedForEncodings
=
1
;
mainGroup
=
089C166AFE841209C02AAC07
/* vlc */
;
projectDirPath
=
""
;
...
...
modules/gui/macosx/prefs.m
View file @
9f2ffffe
...
...
@@ -271,182 +271,192 @@ static VLCTreeItem *o_root_item = nil;
if
(
[
o_children
count
]
==
0
)
{
intf_thread_t
*
p_intf
=
VLCIntf
;
int
i_index
=
0
;
vlc_list_t
*
p_list
;
module_t
*
p_module
=
NULL
;
module_t
*
p_parser
;
module_config_t
*
p_item
,
*
p_end
;
/* Build the tree for the main module */
const
module_t
*
p_module
=
NULL
;
vlc_list_t
*
p_list
=
vlc_list_find
(
p_intf
,
VLC_OBJECT_MODULE
,
FIND_ANYWHERE
);
if
(
!
p_list
)
return
NULL
;
for
(
unsigned
i
=
0
;
p_module
==
NULL
;
i
++
)
{
assert
(
i
<
(
unsigned
)
p_list
->
i_count
);
const
module_t
*
p_main
=
(
module_t
*
)
p_list
->
p_values
[
i
].
p_object
;
if
(
strcmp
(
module_GetObjName
(
p_main
),
"main"
)
==
0
)
p_module
=
p_main
;
}
VLCTreeItem
*
p_last_category
=
NULL
;
unsigned
int
i_confsize
;
module_config_t
*
const
p_config
=
module_GetConfig
(
p_module
,
&
i_confsize
);
p_end
=
p_item
+
i_confsize
;
for
(
size_t
i
=
0
;
i
<
i_confsize
;
i
++
)
{
p_item
=
p_config
+
i
;
NSString
*
o_child_name
;
NSString
*
o_child_title
;
NSString
*
o_child_help
;
int
i_index
=
0
;
/* List the modules */
p_list
=
vlc_list_find
(
p_intf
,
VLC_OBJECT_MODULE
,
FIND_ANYWHERE
);
if
(
!
p_list
)
return
nil
;
switch
(
p_item
->
i_type
)
/* get parser */
p_parser
=
(
module_t
*
)
p_list
->
p_values
[
i_index
].
p_object
;
if
(
[[
self
getName
]
isEqualToString
:
@"main"
]
)
{
/*
* Find the main module
*/
for
(
i_index
=
0
;
i_index
<
p_list
->
i_count
;
i_index
++
)
{
case
CONFIG_CATEGORY
:
if
(
p_item
->
value
.
i
==
-
1
)
break
;
p_module
=
(
module_t
*
)
p_list
->
p_values
[
i_index
].
p_object
;
if
(
!
strcmp
(
module_GetObjName
(
p_module
),
"main"
)
)
break
;
}
if
(
p_module
==
NULL
)
{
msg_Err
(
p_intf
,
"could not load the preferences"
);
return
nil
;
}
if
(
i_index
<
p_list
->
i_count
)
{
/* We found the main module */
/* Enumerate config categories and store a reference so we can
* generate their config panel them when it is asked by the user. */
VLCTreeItem
*
p_last_category
=
NULL
;
unsigned
int
i_confsize
;
p_item
=
module_GetConfig
(
p_parser
,
&
i_confsize
);
p_end
=
p_item
+
i_confsize
;
o_children
=
[[
NSMutableArray
alloc
]
initWithCapacity
:
10
];
if
(
p_item
)
do
{
NSString
*
o_child_name
;
NSString
*
o_child_title
;
NSString
*
o_child_help
;
switch
(
p_item
->
i_type
)
{
case
CONFIG_CATEGORY
:
if
(
p_item
->
value
.
i
==
-
1
)
break
;
o_child_name
=
[[
VLCMain
sharedInstance
]
o_child_name
=
[[
VLCMain
sharedInstance
]
localizedString:
config_CategoryNameGet
(
p_item
->
value
.
i
)];
o_child_title
=
o_child_name
;
o_child_help
=
[[
VLCMain
sharedInstance
]
o_child_title
=
o_child_name
;
o_child_help
=
[[
VLCMain
sharedInstance
]
localizedString:
config_CategoryHelpGet
(
p_item
->
value
.
i
)];
p_last_category
=
[
VLCTreeItem
alloc
];
[
o_children
addObject
:[
p_last_category
p_last_category
=
[
VLCTreeItem
alloc
];
[
o_children
addObject
:[
p_last_category
initWithName:
o_child_name
withTitle:
o_child_title
withHelp:
o_child_help
ID:
p_item
->
value
.
i
parent:
self
children:
[[
NSMutableArray
alloc
]
withTitle:
o_child_title
withHelp:
o_child_help
ID:
p_item
->
value
.
i
parent:
self
children:
[[
NSMutableArray
alloc
]
initWithCapacity:
10
]
whithCategory:
p_item
-
module_GetConfig
(
p_module
,
&
i_confsize
)]];
break
;
case
CONFIG_SUBCATEGORY
:
if
(
p_item
->
value
.
i
==
-
1
)
break
;
/* Special cases: move the main subcategories to the parent cat*/
if
(
p_item
->
value
.
i
!=
SUBCAT_PLAYLIST_GENERAL
&&
p_item
->
value
.
i
!=
SUBCAT_VIDEO_GENERAL
&&
p_item
->
value
.
i
!=
SUBCAT_INPUT_GENERAL
&&
p_item
->
value
.
i
!=
SUBCAT_INTERFACE_GENERAL
&&
p_item
->
value
.
i
!=
SUBCAT_SOUT_GENERAL
&&
p_item
->
value
.
i
!=
SUBCAT_ADVANCED_MISC
&&
p_item
->
value
.
i
!=
SUBCAT_AUDIO_GENERAL
)
{
o_child_name
=
[[
VLCMain
sharedInstance
]
whithCategory:
p_item
-
module_GetConfig
(
p_module
,
&
i_confsize
)]];
break
;
case
CONFIG_SUBCATEGORY
:
if
(
p_item
->
value
.
i
==
-
1
)
break
;
if
(
p_item
->
value
.
i
!=
SUBCAT_PLAYLIST_GENERAL
&&
p_item
->
value
.
i
!=
SUBCAT_VIDEO_GENERAL
&&
p_item
->
value
.
i
!=
SUBCAT_INPUT_GENERAL
&&
p_item
->
value
.
i
!=
SUBCAT_INTERFACE_GENERAL
&&
p_item
->
value
.
i
!=
SUBCAT_SOUT_GENERAL
&&
p_item
->
value
.
i
!=
SUBCAT_ADVANCED_MISC
&&
p_item
->
value
.
i
!=
SUBCAT_AUDIO_GENERAL
)
{
o_child_name
=
[[
VLCMain
sharedInstance
]
localizedString:
config_CategoryNameGet
(
p_item
->
value
.
i
)
];
o_child_title
=
o_child_name
;
o_child_help
=
[[
VLCMain
sharedInstance
]
o_child_title
=
o_child_name
;
o_child_help
=
[[
VLCMain
sharedInstance
]
localizedString:
config_CategoryHelpGet
(
p_item
->
value
.
i
)
];
[
p_last_category
->
o_children
[
p_last_category
->
o_children
addObject:
[[
VLCTreeItem
alloc
]
initWithName:
o_child_name
withTitle:
o_child_title
withHelp:
o_child_help
ID:
p_item
->
value
.
i
parent:
p_last_category
children:
[[
NSMutableArray
alloc
]
withTitle:
o_child_title
withHelp:
o_child_help
ID:
p_item
->
value
.
i
parent:
p_last_category
children:
[[
NSMutableArray
alloc
]
initWithCapacity:
10
]
whithCategory:
p_item
-
module_GetConfig
(
p_module
,
&
i_confsize
)]];
continue
;
whithCategory:
p_item
-
module_GetConfig
(
p_parser
,
&
i_confsize
)]];
}
break
;
default:
break
;
}
break
;
default:
break
;
}
while
(
p_item
<
p_end
&&
p_item
++
);
}
}
module_PutConfig
(
p_config
);
/* Build the tree of plugins */
/* Build a tree of the plugins */
/* Add the capabilities */
for
(
i_index
=
0
;
i_index
<
p_list
->
i_count
;
i_index
++
)
{
unsigned
int
confsize
;
p_module
=
(
module_t
*
)
p_list
->
p_values
[
i_index
].
p_object
;
/* Exclude the main module */
if
(
!
strcmp
(
module_GetObjName
(
p_module
),
"main"
)
)
continue
;
/* Exclude empty plugins (submodules don't have config */
/* options, they are stored in the parent module) */
// Does not work
// if( modules_IsSubModule( p_module ) )
// continue;
p_item
=
module_GetConfig
(
p_module
,
&
confsize
);
if
(
!
p_item
)
continue
;
int
i_category
=
-
1
;
int
i_subcategory
=
-
1
;
int
i_options
=
0
;
do
{
if
(
p_item
->
i_type
==
CONFIG_CATEGORY
)
i_category
=
p_item
->
value
.
i
;
else
if
(
p_item
->
i_type
==
CONFIG_SUBCATEGORY
)
i_subcategory
=
p_item
->
value
.
i
;
if
(
p_item
->
i_type
&
CONFIG_ITEM
)
i_options
++
;
if
(
i_options
>
0
&&
i_category
>=
0
&&
i_subcategory
>=
0
)
break
;
}
while
(
p_item
<
p_end
&&
p_item
++
);
if
(
!
i_options
)
continue
;
/* Find the right category item */
long
cookie
;
vlc_bool_t
b_found
=
VLC_FALSE
;
unsigned
int
i
;
VLCTreeItem
*
p_category_item
,
*
p_subcategory_item
;
for
(
i
=
0
;
i
<
[
o_children
count
]
;
i
++
)
/* Build a tree of the plugins */
/* Add the capabilities */
for
(
i_index
=
0
;
i_index
<
p_list
->
i_count
;
i_index
++
)
{
p_category_item
=
[
o_children
objectAtIndex
:
i
];
if
(
p_category_item
->
i_object_id
==
i_category
)
unsigned
int
confsize
;
p_module
=
(
module_t
*
)
p_list
->
p_values
[
i_index
].
p_object
;
/* Exclude the main module */
if
(
!
strcmp
(
module_GetObjName
(
p_module
),
"main"
)
)
continue
;
/* Exclude empty plugins (submodules don't have config */
/* options, they are stored in the parent module) */
// Does not work
// if( modules_IsSubModule( p_module ) )
// continue;
p_item
=
module_GetConfig
(
p_module
,
&
confsize
);
if
(
!
p_item
)
continue
;
int
i_category
=
-
1
;
int
i_subcategory
=
-
1
;
int
i_options
=
0
;
do
{
b_found
=
VLC_TRUE
;
break
;
if
(
p_item
->
i_type
==
CONFIG_CATEGORY
)
i_category
=
p_item
->
value
.
i
;
else
if
(
p_item
->
i_type
==
CONFIG_SUBCATEGORY
)
i_subcategory
=
p_item
->
value
.
i
;
if
(
p_item
->
i_type
&
CONFIG_ITEM
)
i_options
++
;
if
(
i_options
>
0
&&
i_category
>=
0
&&
i_subcategory
>=
0
)
break
;
}
while
(
p_item
<
p_end
&&
p_item
++
);
if
(
!
i_options
)
continue
;
/* Find the right category item */
long
cookie
;
vlc_bool_t
b_found
=
VLC_FALSE
;
unsigned
int
i
;
VLCTreeItem
*
p_category_item
,
*
p_subcategory_item
;
for
(
i
=
0
;
i
<
[
o_children
count
]
;
i
++
)
{
p_category_item
=
[
o_children
objectAtIndex
:
i
];
if
(
p_category_item
->
i_object_id
==
i_category
)
{
b_found
=
VLC_TRUE
;
break
;
}
}
}
if
(
!
b_found
)
continue
;
/* Find subcategory item */
b_found
=
VLC_FALSE
;
cookie
=
-
1
;
for
(
i
=
0
;
i
<
[
p_category_item
->
o_children
count
]
;
i
++
)
{
p_subcategory_item
=
[
p_category_item
->
o_children
objectAtIndex:
i
];
if
(
p_subcategory_item
->
i_object_id
==
i_subcategory
)
if
(
!
b_found
)
continue
;
/* Find subcategory item */
b_found
=
VLC_FALSE
;
cookie
=
-
1
;
for
(
i
=
0
;
i
<
[
p_category_item
->
o_children
count
]
;
i
++
)
{
b_found
=
VLC_TRUE
;
break
;
p_subcategory_item
=
[
p_category_item
->
o_children
objectAtIndex:
i
];
if
(
p_subcategory_item
->
i_object_id
==
i_subcategory
)
{
b_found
=
VLC_TRUE
;
break
;
}
}
}
if
(
!
b_found
)
p_subcategory_item
=
p_category_item
;
[
p_subcategory_item
->
o_children
addObject
:[[
VLCTreeItem
alloc
]
if
(
!
b_found
)
p_subcategory_item
=
p_category_item
;
[
p_subcategory_item
->
o_children
addObject
:[[
VLCTreeItem
alloc
]
initWithName:
[[
VLCMain
sharedInstance
]
localizedString:
module_GetName
(
p_module
,
VLC_FALSE
)
]
withTitle:
[[
VLCMain
sharedInstance
]
withTitle:
[[
VLCMain
sharedInstance
]
localizedString:
module_GetLongName
(
p_module
)
]
withHelp:
@""
ID:
((
vlc_object_t
*
)
p_module
)
->
i_object_id
parent:
p_subcategory_item
children:
IsALeafNode
whithCategory:
-
1
]];
}
vlc_list_release
(
p_list
);
withHelp:
@""
ID:
((
vlc_object_t
*
)
p_module
)
->
i_object_id
parent:
p_subcategory_item
children:
IsALeafNode
whithCategory:
-
1
]];
}
}
vlc_list_release
(
p_list
);
}
return
o_children
;
}
...
...
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