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
b2d37426
Commit
b2d37426
authored
Apr 15, 2011
by
Hugo Beauzée-Luyssen
Committed by
Jean-Baptiste Kempf
Apr 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qt4: preferences_widgets: Simplifications
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
3aecc753
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
25 deletions
+12
-25
modules/gui/qt4/components/preferences_widgets.cpp
modules/gui/qt4/components/preferences_widgets.cpp
+12
-25
No files found.
modules/gui/qt4/components/preferences_widgets.cpp
View file @
b2d37426
...
...
@@ -707,11 +707,8 @@ ModuleListConfigControl::ModuleListConfigControl( vlc_object_t *_p_this,
finish
(
bycat
);
int
boxline
=
0
;
for
(
QVector
<
checkBoxListItem
*>::
iterator
it
=
modules
.
begin
();
it
!=
modules
.
end
();
++
it
)
{
layoutGroupBox
->
addWidget
(
(
*
it
)
->
checkBox
,
boxline
++
,
0
);
}
foreach
(
checkBoxListItem
*
it
,
modules
)
layoutGroupBox
->
addWidget
(
it
->
checkBox
,
boxline
++
,
0
);
layoutGroupBox
->
addWidget
(
text
,
boxline
,
0
);
if
(
!
l
)
...
...
@@ -731,11 +728,8 @@ ModuleListConfigControl::ModuleListConfigControl( vlc_object_t *_p_this,
ModuleListConfigControl
::~
ModuleListConfigControl
()
{
for
(
QVector
<
checkBoxListItem
*>::
iterator
it
=
modules
.
begin
();
it
!=
modules
.
end
();
++
it
)
{
delete
*
it
;
}
qDeleteAll
(
modules
);
modules
.
clear
();
delete
groupBox
;
}
...
...
@@ -811,21 +805,15 @@ QString ModuleListConfigControl::getValue() const
void
ModuleListConfigControl
::
hide
()
{
for
(
QVector
<
checkBoxListItem
*>::
iterator
it
=
modules
.
begin
();
it
!=
modules
.
end
();
++
it
)
{
(
*
it
)
->
checkBox
->
hide
();
}
foreach
(
checkBoxListItem
*
it
,
modules
)
it
->
checkBox
->
hide
();
groupBox
->
hide
();
}
void
ModuleListConfigControl
::
show
()
{
for
(
QVector
<
checkBoxListItem
*>::
iterator
it
=
modules
.
begin
();
it
!=
modules
.
end
();
++
it
)
{
(
*
it
)
->
checkBox
->
show
();
}
foreach
(
checkBoxListItem
*
it
,
modules
)
it
->
checkBox
->
show
();
groupBox
->
show
();
}
...
...
@@ -835,19 +823,18 @@ void ModuleListConfigControl::onUpdate()
text
->
clear
();
bool
first
=
true
;
for
(
QVector
<
checkBoxListItem
*>::
iterator
it
=
modules
.
begin
();
it
!=
modules
.
end
();
++
it
)
foreach
(
checkBoxListItem
*
it
,
modules
)
{
if
(
(
*
it
)
->
checkBox
->
isChecked
()
)
if
(
it
->
checkBox
->
isChecked
()
)
{
if
(
first
)
{
text
->
setText
(
text
->
text
()
+
(
*
it
)
->
psz_module
);
text
->
setText
(
text
->
text
()
+
it
->
psz_module
);
first
=
false
;
}
else
{
text
->
setText
(
text
->
text
()
+
":"
+
(
*
it
)
->
psz_module
);
text
->
setText
(
text
->
text
()
+
":"
+
it
->
psz_module
);
}
}
}
...
...
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