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
effc65cc
Commit
effc65cc
authored
Feb 08, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: provide overloaded checkbox_list method
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
632a8ab5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
modules/gui/qt4/components/preferences_widgets.cpp
modules/gui/qt4/components/preferences_widgets.cpp
+16
-0
modules/gui/qt4/components/preferences_widgets.hpp
modules/gui/qt4/components/preferences_widgets.hpp
+1
-0
No files found.
modules/gui/qt4/components/preferences_widgets.cpp
View file @
effc65cc
...
@@ -741,6 +741,22 @@ void ModuleListConfigControl::checkbox_lists( module_t *p_parser )
...
@@ -741,6 +741,22 @@ void ModuleListConfigControl::checkbox_lists( module_t *p_parser )
cbl
->
checkBox
->
setChecked
(
true
);
cbl
->
checkBox
->
setChecked
(
true
);
}
}
void
ModuleListConfigControl
::
checkbox_lists
(
QString
label
,
QString
help
,
const
char
*
psz_module
)
{
QCheckBox
*
cb
=
new
QCheckBox
(
label
);
checkBoxListItem
*
cbl
=
new
checkBoxListItem
;
CONNECT
(
cb
,
stateChanged
(
int
),
this
,
onUpdate
()
);
if
(
!
help
.
isEmpty
()
)
cb
->
setToolTip
(
formatTooltip
(
help
)
);
cbl
->
checkBox
=
cb
;
cbl
->
psz_module
=
strdup
(
psz_module
);
modules
.
append
(
cbl
);
if
(
p_item
->
value
.
psz
&&
strstr
(
p_item
->
value
.
psz
,
cbl
->
psz_module
)
)
cbl
->
checkBox
->
setChecked
(
true
);
}
void
ModuleListConfigControl
::
finish
(
bool
bycat
)
void
ModuleListConfigControl
::
finish
(
bool
bycat
)
{
{
...
...
modules/gui/qt4/components/preferences_widgets.hpp
View file @
effc65cc
...
@@ -395,6 +395,7 @@ public slots:
...
@@ -395,6 +395,7 @@ public slots:
private:
private:
void
finish
(
bool
);
void
finish
(
bool
);
void
checkbox_lists
(
module_t
*
);
void
checkbox_lists
(
module_t
*
);
void
checkbox_lists
(
QString
,
QString
,
const
char
*
);
QList
<
checkBoxListItem
*>
modules
;
QList
<
checkBoxListItem
*>
modules
;
QGroupBox
*
groupBox
;
QGroupBox
*
groupBox
;
QLineEdit
*
text
;
QLineEdit
*
text
;
...
...
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