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
060244a8
Commit
060244a8
authored
May 06, 2005
by
Jérome Decoodt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*: fix problems about advanced button
parent
18dffb2a
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
109 additions
and
92 deletions
+109
-92
modules/gui/macosx/prefs.h
modules/gui/macosx/prefs.h
+1
-1
modules/gui/macosx/prefs.m
modules/gui/macosx/prefs.m
+40
-23
modules/gui/macosx/prefs_widgets.h
modules/gui/macosx/prefs_widgets.h
+18
-28
modules/gui/macosx/prefs_widgets.m
modules/gui/macosx/prefs_widgets.m
+50
-40
No files found.
modules/gui/macosx/prefs.h
View file @
060244a8
...
...
@@ -28,7 +28,7 @@
VLCTreeItem
*
o_parent
;
NSMutableArray
*
o_children
;
int
i_object_category
;
NS
View
*
o_view
;
NS
MutableArray
*
o_subviews
;
}
+
(
VLCTreeItem
*
)
rootItem
;
...
...
modules/gui/macosx/prefs.m
View file @
060244a8
...
...
@@ -227,7 +227,7 @@ static VLCTreeItem *o_root_item = nil;
o_parent
=
o_parent_item
;
o_children
=
o_children_array
;
i_object_category
=
i_category
;
o_
view
=
nil
;
o_
subviews
=
nil
;
}
return
(
self
);
}
...
...
@@ -464,18 +464,22 @@ static VLCTreeItem *o_root_item = nil;
advancedView
:(
vlc_bool_t
)
b_advanced
{
fprintf
(
stderr
,
"[%s] showView
\n
"
,
[
o_name
UTF8String
]
);
if
(
o_view
==
nil
)
NSRect
s_vrc
;
NSView
*
o_view
;
s_vrc
=
[[
o_prefs_view
contentView
]
bounds
];
s_vrc
.
size
.
height
-=
4
;
o_view
=
[[
VLCFlippedView
alloc
]
initWithFrame
:
s_vrc
];
[
o_view
setAutoresizingMask
:
NSViewWidthSizable
|
NSViewHeightSizable
];
/* Create all subviews if it isn't already done because we cannot use setHiden for MacOS < 10.3*/
if
(
o_subviews
==
nil
)
{
intf_thread_t
*
p_intf
=
VLCIntf
;
vlc_list_t
*
p_list
;
module_t
*
p_parser
=
NULL
;
module_config_t
*
p_item
;
NSRect
s_vrc
;
s_vrc
=
[[
o_prefs_view
contentView
]
bounds
];
s_vrc
.
size
.
height
-=
4
;
o_view
=
[[
VLCFlippedView
alloc
]
initWithFrame
:
s_vrc
];
[
o_view
setAutoresizingMask
:
NSViewWidthSizable
|
NSViewHeightSizable
];
o_subviews
=
[[
NSMutableArray
alloc
]
initWithCapacity
:
10
];
/* Get a pointer to the module */
if
(
i_object_category
==
-
1
)
{
...
...
@@ -521,8 +525,6 @@ fprintf( stderr, "%s (%d) is ", p_item->psz_name, p_item->i_type );
{
VLCConfigControl
*
o_control
=
nil
;
int
i_widget
=
0
;
if
(
p_item
->
b_advanced
&&
(
!
b_advanced
)
)
break
;
switch
(
p_item
->
i_type
)
{
case
CONFIG_ITEM_STRING
:
...
...
@@ -583,15 +585,14 @@ fprintf( stderr, "***UNKNOWN***" );
calcVerticalMargin:
i_widget
lastItem
:
i_lastItem
];
o_control
=
[
VLCConfigControl
newControl
:
p_item
withView:
o_view
yOffset:
i_yPos
lastItem:
i_lastItem
];
yOffset:
i_yPos
];
if
(
o_control
!=
nil
)
{
i_yPos
+=
[
o_control
frame
].
size
.
height
;
i_lastItem
=
i_widget
;
[
o_control
setAutoresizingMask
:
NSViewMaxYMargin
|
NSViewWidthSizable
];
[
o_
view
addSubview
:
o_control
];
[
o_
subviews
addObject
:
o_control
];
}
}
fprintf
(
stderr
,
"
\n
"
);
...
...
@@ -722,15 +723,14 @@ fprintf( stderr, "***UNKNOWN***" );
calcVerticalMargin:
i_widget
lastItem
:
i_lastItem
];
o_control
=
[
VLCConfigControl
newControl
:
p_item
withView:
o_view
yOffset:
i_yPos
lastItem:
i_lastItem
];
yOffset:
i_yPos
];
if
(
o_control
!=
nil
)
{
i_yPos
+=
[
o_control
frame
].
size
.
height
;
i_lastItem
=
i_widget
;
[
o_control
setAutoresizingMask
:
NSViewMaxYMargin
|
NSViewWidthSizable
];
[
o_
view
addSubview
:
o_control
];
[
o_
subviews
addObject
:
o_control
];
}
}
fprintf
(
stderr
,
"
\n
"
);
...
...
@@ -744,25 +744,42 @@ fprintf( stderr, "\n" );
vlc_list_release
(
p_list
);
}
}
else
{
NSRect
s_vrc
;
s_vrc
=
[[
o_prefs_view
contentView
]
bounds
];
s_vrc
.
size
.
height
-=
4
;
[
o_view
setFrame
:
s_vrc
];
}
if
(
o_view
!=
nil
)
{
int
i_lastItem
=
0
;
int
i_yPos
=
0
;
unsigned
int
i
;
for
(
i
=
0
;
i
<
[
o_subviews
count
]
;
i
++
)
{
int
i_widget
;
VLCConfigControl
*
o_widget
=
[
o_subviews
objectAtIndex
:
i
];
if
(
(
[
o_widget
isAdvanced
]
)
&&
(
!
b_advanced
)
)
continue
;
i_widget
=
[
o_widget
getViewType
];
i_yPos
+=
[
VLCConfigControl
calcVerticalMargin
:
i_widget
lastItem:
i_lastItem
];
[
o_widget
setYPos
:
i_yPos
];
i_yPos
+=
[
o_widget
frame
].
size
.
height
;
i_lastItem
=
i_widget
;
[
o_widget
setAutoresizingMask
:
NSViewMaxYMargin
|
NSViewWidthSizable
];
[
o_view
addSubview
:
o_widget
];
}
[
o_prefs_view
setDocumentView
:
o_view
];
}
return
o_view
;
}
-
(
void
)
applyChanges
{
unsigned
int
i
;
if
(
o_
view
!=
nil
)
if
(
o_
subviews
!=
nil
)
{
//Item has been shown
fprintf
(
stderr
,
"[%s] applying changes
\n
"
,
[
o_name
cString
]);
NSArray
*
o_subviews
=
[
o_view
subviews
];
for
(
i
=
0
;
i
<
[
o_subviews
count
]
;
i
++
)
[[
o_subviews
objectAtIndex
:
i
]
applyChanges
];
}
...
...
modules/gui/macosx/prefs_widgets.h
View file @
060244a8
...
...
@@ -35,15 +35,18 @@
char
*
psz_name
;
NSTextField
*
o_label
;
int
i_type
;
int
i_view_type
;
vlc_bool_t
b_advanced
;
}
+
(
VLCConfigControl
*
)
newControl
:
(
module_config_t
*
)
_p_item
withView
:
(
NSView
*
)
o_parent_view
yOffset
:(
int
)
i_yPos
lastItem
:
(
int
)
i_lastItem
;
+
(
VLCConfigControl
*
)
newControl
:
(
module_config_t
*
)
_p_item
withView
:
(
NSView
*
)
o_parent_view
yOffset
:(
int
)
i_yPos
;
-
(
id
)
initWithFrame
:
(
NSRect
)
frame
item
:
(
module_config_t
*
)
p_item
;
-
(
NSString
*
)
getName
;
-
(
int
)
getType
;
-
(
int
)
getViewType
;
-
(
BOOL
)
isAdvanced
;
-
(
void
)
setYPos
:(
int
)
i_yPos
;
-
(
int
)
intValue
;
-
(
float
)
floatValue
;
-
(
char
*
)
stringValue
;
...
...
@@ -61,8 +64,7 @@ static NSMenu *o_keys_menu = nil;
-
(
id
)
initWithItem
:
(
module_config_t
*
)
_p_item
withView
:
(
NSView
*
)
o_parent_view
withVerticalOffset
:
(
int
)
i_yPos
withLastItem
:
(
int
)
i_lastItem
;
withVerticalOffset
:
(
int
)
i_yPos
;
@end
...
...
@@ -73,8 +75,7 @@ static NSMenu *o_keys_menu = nil;
-
(
id
)
initWithItem
:
(
module_config_t
*
)
_p_item
withView
:
(
NSView
*
)
o_parent_view
withVerticalOffset
:
(
int
)
i_yPos
withLastItem
:
(
int
)
i_lastItem
;
withVerticalOffset
:
(
int
)
i_yPos
;
@end
...
...
@@ -87,8 +88,7 @@ static NSMenu *o_keys_menu = nil;
-
(
id
)
initWithItem
:
(
module_config_t
*
)
_p_item
withView
:
(
NSView
*
)
o_parent_view
withVerticalOffset
:
(
int
)
i_yPos
withLastItem
:
(
int
)
i_lastItem
;
withVerticalOffset
:
(
int
)
i_yPos
;
-
(
IBAction
)
openFileDialog
:
(
id
)
sender
;
-
(
void
)
pathChosenInPanel
:(
NSOpenPanel
*
)
o_sheet
withReturn
:(
int
)
i_return_code
contextInfo
:(
void
*
)
o_context_info
;
...
...
@@ -102,8 +102,7 @@ static NSMenu *o_keys_menu = nil;
-
(
id
)
initWithItem
:
(
module_config_t
*
)
_p_item
withView
:
(
NSView
*
)
o_parent_view
withVerticalOffset
:
(
int
)
i_yPos
withLastItem
:
(
int
)
i_lastItem
;
withVerticalOffset
:
(
int
)
i_yPos
;
@end
...
...
@@ -116,8 +115,7 @@ static NSMenu *o_keys_menu = nil;
-
(
id
)
initWithItem
:
(
module_config_t
*
)
_p_item
withView
:
(
NSView
*
)
o_parent_view
withVerticalOffset
:
(
int
)
i_yPos
withLastItem
:
(
int
)
i_lastItem
;
withVerticalOffset
:
(
int
)
i_yPos
;
-
(
IBAction
)
stepperChanged
:(
id
)
sender
;
-
(
void
)
textfieldChanged
:(
NSNotification
*
)
o_notification
;
...
...
@@ -130,8 +128,7 @@ static NSMenu *o_keys_menu = nil;
-
(
id
)
initWithItem
:
(
module_config_t
*
)
_p_item
withView
:
(
NSView
*
)
o_parent_view
withVerticalOffset
:
(
int
)
i_yPos
withLastItem
:
(
int
)
i_lastItem
;
withVerticalOffset
:
(
int
)
i_yPos
;
@end
...
...
@@ -146,8 +143,7 @@ static NSMenu *o_keys_menu = nil;
-
(
id
)
initWithItem
:
(
module_config_t
*
)
_p_item
withView
:
(
NSView
*
)
o_parent_view
withVerticalOffset
:
(
int
)
i_yPos
withLastItem
:
(
int
)
i_lastItem
;
withVerticalOffset
:
(
int
)
i_yPos
;
-
(
IBAction
)
sliderChanged
:(
id
)
sender
;
-
(
void
)
textfieldChanged
:(
NSNotification
*
)
o_notification
;
...
...
@@ -160,8 +156,7 @@ static NSMenu *o_keys_menu = nil;
-
(
id
)
initWithItem
:
(
module_config_t
*
)
_p_item
withView
:
(
NSView
*
)
o_parent_view
withVerticalOffset
:
(
int
)
i_yPos
withLastItem
:
(
int
)
i_lastItem
;
withVerticalOffset
:
(
int
)
i_yPos
;
@end
...
...
@@ -174,8 +169,7 @@ static NSMenu *o_keys_menu = nil;
-
(
id
)
initWithItem
:
(
module_config_t
*
)
_p_item
withView
:
(
NSView
*
)
o_parent_view
withVerticalOffset
:
(
int
)
i_yPos
withLastItem
:
(
int
)
i_lastItem
;
withVerticalOffset
:
(
int
)
i_yPos
;
-
(
IBAction
)
stepperChanged
:(
id
)
sender
;
-
(
void
)
textfieldChanged
:(
NSNotification
*
)
o_notification
;
...
...
@@ -192,8 +186,7 @@ static NSMenu *o_keys_menu = nil;
-
(
id
)
initWithItem
:
(
module_config_t
*
)
_p_item
withView
:
(
NSView
*
)
o_parent_view
withVerticalOffset
:
(
int
)
i_yPos
withLastItem
:
(
int
)
i_lastItem
;
withVerticalOffset
:
(
int
)
i_yPos
;
-
(
IBAction
)
sliderChanged
:(
id
)
sender
;
-
(
void
)
textfieldChanged
:(
NSNotification
*
)
o_notification
;
...
...
@@ -210,8 +203,7 @@ static NSMenu *o_keys_menu = nil;
-
(
id
)
initWithItem
:
(
module_config_t
*
)
_p_item
withView
:
(
NSView
*
)
o_parent_view
withVerticalOffset
:
(
int
)
i_yPos
withLastItem
:
(
int
)
i_lastItem
;
withVerticalOffset
:
(
int
)
i_yPos
;
@end
...
...
@@ -222,8 +214,7 @@ static NSMenu *o_keys_menu = nil;
-
(
id
)
initWithItem
:
(
module_config_t
*
)
_p_item
withView
:
(
NSView
*
)
o_parent_view
withVerticalOffset
:
(
int
)
i_yPos
withLastItem
:
(
int
)
i_lastItem
;
withVerticalOffset
:
(
int
)
i_yPos
;
@end
...
...
@@ -236,8 +227,7 @@ static NSMenu *o_keys_menu = nil;
-
(
id
)
initWithItem
:
(
module_config_t
*
)
_p_item
withView
:
(
NSView
*
)
o_parent_view
withVerticalOffset
:
(
int
)
i_yPos
withLastItem
:
(
int
)
i_lastItem
;
withVerticalOffset
:
(
int
)
i_yPos
;
@end
...
...
modules/gui/macosx/prefs_widgets.m
View file @
060244a8
This diff is collapsed.
Click to expand it.
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