Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
458
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
6196b032
Commit
6196b032
authored
13 years ago
by
Jean-Baptiste Kempf
Browse files
Options
Downloads
Patches
Plain Diff
Qt: first attempt at a QMenuView
parent
a8bf1141
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
modules/gui/qt4/Modules.am
+3
-0
3 additions, 0 deletions
modules/gui/qt4/Modules.am
modules/gui/qt4/util/qmenuview.cpp
+123
-0
123 additions, 0 deletions
modules/gui/qt4/util/qmenuview.cpp
modules/gui/qt4/util/qmenuview.hpp
+57
-0
57 additions, 0 deletions
modules/gui/qt4/util/qmenuview.hpp
with
183 additions
and
0 deletions
modules/gui/qt4/Modules.am
+
3
−
0
View file @
6196b032
...
...
@@ -70,6 +70,7 @@ nodist_SOURCES_qt4 = \
util/timetooltip.moc.cpp \
util/customwidgets.moc.cpp \
util/searchlineedit.moc.cpp \
util/qmenuview.moc.cpp \
util/qvlcapp.moc.cpp \
util/pictureflow.moc.cpp \
util/buttons/RoundButton.moc.cpp \
...
...
@@ -309,6 +310,7 @@ SOURCES_qt4 = qt4.cpp \
util/customwidgets.cpp \
util/searchlineedit.cpp \
util/registry.cpp \
util/qmenuview.cpp \
util/qt_dirs.cpp \
util/pictureflow.cpp \
util/buttons/BrowseButton.cpp \
...
...
@@ -389,6 +391,7 @@ noinst_HEADERS = \
util/searchlineedit.hpp \
util/qvlcframe.hpp \
util/qvlcapp.hpp \
util/qmenuview.hpp \
util/qt_dirs.hpp \
util/registry.hpp \
util/pictureflow.hpp \
...
...
This diff is collapsed.
Click to expand it.
modules/gui/qt4/util/qmenuview.cpp
0 → 100644
+
123
−
0
View file @
6196b032
/*****************************************************************************
* QMenuView
****************************************************************************
* Copyright © 2011 VLC authors and VideoLAN
* $Id$
*
* Authors: Jean-Baptiste Kempf <jb@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#include
"qt4.hpp"
#include
"util/qmenuview.hpp"
#include
"components/playlist/vlc_model.hpp"
/* data( IsCurrentRole ) */
#include
<QFont>
#include
<QVariant>
#include
<assert.h>
/***
* This is a simple view, like a QListView, but displayed as a QMenu
* So far, this is quite limited.
*
* This is now linked to VLC's models. It should be splittable in the future.
*
* TODO: - limit the number of the menu, as a Q_PROPERTY
* - limit the width of the entries
* - deal with a root item
***/
Q_DECLARE_METATYPE
(
QModelIndex
);
// So we can store it in a QVariant
QMenuView
::
QMenuView
(
QWidget
*
parent
)
:
QMenu
(
parent
)
{
m_model
=
NULL
;
/* Rebuild the Menu just before showing it */
CONNECT
(
this
,
aboutToShow
(),
this
,
rebuild
()
);
/* */
CONNECT
(
this
,
triggered
(
QAction
*
),
this
,
activate
(
QAction
*
)
);
}
/* */
void
QMenuView
::
rebuild
()
{
if
(
!
m_model
)
return
;
/* Clear all Items */
clear
();
/* Rebuild from root */
build
(
QModelIndex
()
);
}
/* */
void
QMenuView
::
build
(
const
QModelIndex
&
parent
)
{
for
(
int
i
=
0
;
i
<
m_model
->
rowCount
(
parent
);
i
++
)
{
QModelIndex
idx
=
m_model
->
index
(
i
,
0
,
parent
);
if
(
m_model
->
hasChildren
(
idx
)
)
{
build
(
idx
);
}
else
{
addAction
(
createActionFromIndex
(
idx
)
);
}
}
}
/* Create individual actions */
QAction
*
QMenuView
::
createActionFromIndex
(
QModelIndex
index
)
{
QIcon
icon
=
qvariant_cast
<
QIcon
>
(
index
.
data
(
Qt
::
DecorationRole
)
);
QAction
*
action
=
new
QAction
(
icon
,
index
.
data
().
toString
(),
this
);
/* Display in bold the active element */
if
(
index
.
data
(
VLCModel
::
IsCurrentRole
).
toBool
()
)
{
QFont
font
;
font
.
setBold
(
true
);
action
->
setFont
(
font
);
}
/* Some items could be hypothetically disabled */
action
->
setEnabled
(
index
.
flags
().
testFlag
(
Qt
::
ItemIsEnabled
)
);
/* */
QVariant
variant
;
variant
.
setValue
(
index
);
action
->
setData
(
variant
);
return
action
;
}
/* QMenu action trigger */
void
QMenuView
::
activate
(
QAction
*
action
)
{
assert
(
m_model
);
QVariant
variant
=
action
->
data
();
if
(
variant
.
canConvert
<
QModelIndex
>
()
)
{
emit
activated
(
variant
.
value
<
QModelIndex
>
());
}
}
This diff is collapsed.
Click to expand it.
modules/gui/qt4/util/qmenuview.hpp
0 → 100644
+
57
−
0
View file @
6196b032
/*****************************************************************************
* QMenuView
****************************************************************************
* Copyright © 2011 VLC authors and VideoLAN
* $Id$
*
* Authors: Jean-Baptiste Kempf <jb@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef _QMENU_VIEW_H_
#define _QMENU_VIEW_H_
#include
<QMenu>
#include
<QAbstractItemModel>
class
QMenuView
:
public
QMenu
{
Q_OBJECT
;
public:
QMenuView
(
QWidget
*
parent
=
0
);
virtual
~
QMenuView
(){}
/* Model */
void
setModel
(
QAbstractItemModel
*
model
)
{
m_model
=
model
;
}
QAbstractItemModel
*
model
()
const
{
return
m_model
;
}
private
:
QAbstractItemModel
*
m_model
;
QAction
*
createActionFromIndex
(
QModelIndex
index
);
void
build
(
const
QModelIndex
&
parent
);
private
slots
:
void
rebuild
();
void
activate
(
QAction
*
);
signals
:
void
activated
(
const
QModelIndex
&
index
);
};
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment