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
3e8dca47
Commit
3e8dca47
authored
Jan 05, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: use searchLineEdit in plugins dialog.
parent
76911abd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
modules/gui/qt4/dialogs/plugins.cpp
modules/gui/qt4/dialogs/plugins.cpp
+3
-1
modules/gui/qt4/dialogs/plugins.hpp
modules/gui/qt4/dialogs/plugins.hpp
+2
-1
No files found.
modules/gui/qt4/dialogs/plugins.cpp
View file @
3e8dca47
...
...
@@ -27,6 +27,8 @@
#include "plugins.hpp"
#include "util/customwidgets.hpp"
//#include <vlc_modules.h>
#include <QTreeWidget>
...
...
@@ -69,7 +71,7 @@ PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
treePlugins
->
sortByColumn
(
1
,
Qt
::
AscendingOrder
);
QLabel
*
label
=
new
QLabel
(
_
(
"&Search:"
),
this
);
edit
=
new
QLineEdit
;
edit
=
new
SearchLineEdit
(
this
)
;
label
->
setBuddy
(
edit
);
layout
->
addWidget
(
label
,
1
,
0
);
...
...
modules/gui/qt4/dialogs/plugins.hpp
View file @
3e8dca47
...
...
@@ -29,6 +29,7 @@
class
QTreeWidget
;
class
QLineEdit
;
class
SearchLineEdit
;
class
PluginDialog
:
public
QVLCFrame
{
Q_OBJECT
;
...
...
@@ -39,7 +40,7 @@ private:
virtual
~
PluginDialog
();
QTreeWidget
*
treePlugins
;
Q
LineEdit
*
edit
;
Search
LineEdit
*
edit
;
private
slots
:
void
search
(
const
QString
);
};
...
...
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