Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
e616d0df
Commit
e616d0df
authored
Aug 08, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: plugins dialog, fix keyevents
Close #5167
parent
bab3d82a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
modules/gui/qt4/dialogs/plugins.cpp
modules/gui/qt4/dialogs/plugins.cpp
+14
-1
modules/gui/qt4/dialogs/plugins.hpp
modules/gui/qt4/dialogs/plugins.hpp
+3
-0
No files found.
modules/gui/qt4/dialogs/plugins.cpp
View file @
e616d0df
...
@@ -169,6 +169,15 @@ PluginTab::~PluginTab()
...
@@ -169,6 +169,15 @@ PluginTab::~PluginTab()
treePlugins
->
header
()
->
saveState
()
);
treePlugins
->
header
()
->
saveState
()
);
}
}
void
PluginTab
::
keyPressEvent
(
QKeyEvent
*
keyEvent
)
{
if
(
keyEvent
->
key
()
==
Qt
::
Key_Return
||
keyEvent
->
key
()
==
Qt
::
Key_Enter
)
keyEvent
->
accept
();
else
keyEvent
->
ignore
();
}
bool
PluginTreeItem
::
operator
<
(
const
QTreeWidgetItem
&
other
)
const
bool
PluginTreeItem
::
operator
<
(
const
QTreeWidgetItem
&
other
)
const
{
{
int
col
=
treeWidget
()
->
sortColumn
();
int
col
=
treeWidget
()
->
sortColumn
();
...
@@ -236,7 +245,11 @@ ExtensionTab::~ExtensionTab()
...
@@ -236,7 +245,11 @@ ExtensionTab::~ExtensionTab()
// Do not close on ESC or ENTER
// Do not close on ESC or ENTER
void
ExtensionTab
::
keyPressEvent
(
QKeyEvent
*
keyEvent
)
void
ExtensionTab
::
keyPressEvent
(
QKeyEvent
*
keyEvent
)
{
{
keyEvent
->
ignore
();
if
(
keyEvent
->
key
()
==
Qt
::
Key_Return
||
keyEvent
->
key
()
==
Qt
::
Key_Enter
)
keyEvent
->
accept
();
else
keyEvent
->
ignore
();
}
}
// Show more information
// Show more information
...
...
modules/gui/qt4/dialogs/plugins.hpp
View file @
e616d0df
...
@@ -70,6 +70,9 @@ class PluginTab : public QVLCFrame
...
@@ -70,6 +70,9 @@ class PluginTab : public QVLCFrame
{
{
Q_OBJECT
Q_OBJECT
protected:
virtual
void
keyPressEvent
(
QKeyEvent
*
keyEvent
);
private:
private:
PluginTab
(
intf_thread_t
*
p_intf
);
PluginTab
(
intf_thread_t
*
p_intf
);
virtual
~
PluginTab
();
virtual
~
PluginTab
();
...
...
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