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
4a88683b
Commit
4a88683b
authored
Oct 27, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: move view names to the StandardPanel file
And cleanup includes of StandardPanel
parent
ea4ffc6f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
20 deletions
+14
-20
modules/gui/qt4/components/playlist/playlist.hpp
modules/gui/qt4/components/playlist/playlist.hpp
+0
-4
modules/gui/qt4/components/playlist/standardpanel.cpp
modules/gui/qt4/components/playlist/standardpanel.cpp
+9
-16
modules/gui/qt4/components/playlist/standardpanel.hpp
modules/gui/qt4/components/playlist/standardpanel.hpp
+5
-0
No files found.
modules/gui/qt4/components/playlist/playlist.hpp
View file @
4a88683b
...
...
@@ -43,10 +43,6 @@ class QSignalMapper;
class
SearchLineEdit
;
class
QModelIndex
;
static
const
QString
viewNames
[]
=
{
qtr
(
"Detailed View"
),
qtr
(
"Icon View"
),
qtr
(
"List View"
)
};
class
PlaylistWidget
:
public
QSplitter
{
Q_OBJECT
...
...
modules/gui/qt4/components/playlist/standardpanel.cpp
View file @
4a88683b
...
...
@@ -26,36 +26,29 @@
# include "config.h"
#endif
#include "dialogs_provider.hpp"
#include "components/playlist/playlist_model.hpp"
#include "components/playlist/standardpanel.hpp"
#include "components/playlist/views.hpp"
#include "components/playlist/selector.hpp"
#include "util/customwidgets.hpp"
#include "menus.hpp"
#include "input_manager.hpp"
#include <vlc_intf_strings.h>
#include <vlc_services_discovery.h>
#include "components/playlist/playlist_model.hpp"
/* PLModel */
#include "components/playlist/views.hpp"
/* 3 views */
#include "components/playlist/selector.hpp"
/* PLSelector */
#include "menus.hpp"
/* Popup */
#include "input_manager.hpp"
/* THEMIM */
#include <vlc_services_discovery.h>
/* SD_CMD_SEARCH */
#include <QPushButton>
#include <QHeaderView>
#include <QKeyEvent>
#include <QModelIndexList>
#include <QLabel>
#include <QMenu>
#include <QKeyEvent>
#include <QWheelEvent>
#include <QToolButton>
#include <QFontMetrics>
#include <QStackedLayout>
#include <QSignalMapper>
#include <QSettings>
#include <assert.h>
#include "sorting.h"
StandardPLPanel
::
StandardPLPanel
(
PlaylistWidget
*
_parent
,
intf_thread_t
*
_p_intf
,
playlist_t
*
p_playlist
,
...
...
modules/gui/qt4/components/playlist/standardpanel.hpp
View file @
4a88683b
...
...
@@ -51,6 +51,11 @@ class LocationBar;
class
PLSelector
;
class
PlaylistWidget
;
static
const
QString
viewNames
[
3
/* VIEW_COUNT */
]
=
{
qtr
(
"Detailed View"
),
qtr
(
"Icon View"
),
qtr
(
"List View"
)
};
class
StandardPLPanel
:
public
QWidget
{
Q_OBJECT
...
...
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