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
8003c414
Commit
8003c414
authored
Jan 05, 2015
by
Ludovic Fauvet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: clean up includes and forward declare when possible
parent
a3cec8ae
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
30 additions
and
20 deletions
+30
-20
modules/gui/qt4/components/epg/EPGChannels.cpp
modules/gui/qt4/components/epg/EPGChannels.cpp
+4
-0
modules/gui/qt4/components/epg/EPGItem.cpp
modules/gui/qt4/components/epg/EPGItem.cpp
+0
-2
modules/gui/qt4/components/epg/EPGItem.hpp
modules/gui/qt4/components/epg/EPGItem.hpp
+0
-1
modules/gui/qt4/components/epg/EPGView.cpp
modules/gui/qt4/components/epg/EPGView.cpp
+4
-0
modules/gui/qt4/components/epg/EPGView.hpp
modules/gui/qt4/components/epg/EPGView.hpp
+5
-1
modules/gui/qt4/components/epg/EPGWidget.cpp
modules/gui/qt4/components/epg/EPGWidget.cpp
+8
-8
modules/gui/qt4/components/epg/EPGWidget.hpp
modules/gui/qt4/components/epg/EPGWidget.hpp
+5
-5
modules/gui/qt4/components/playlist/playlist_model.cpp
modules/gui/qt4/components/playlist/playlist_model.cpp
+0
-2
modules/gui/qt4/dialogs/epg.cpp
modules/gui/qt4/dialogs/epg.cpp
+2
-0
modules/gui/qt4/util/input_slider.cpp
modules/gui/qt4/util/input_slider.cpp
+1
-0
modules/gui/qt4/util/input_slider.hpp
modules/gui/qt4/util/input_slider.hpp
+1
-1
No files found.
modules/gui/qt4/components/epg/EPGChannels.cpp
View file @
8003c414
...
...
@@ -20,6 +20,10 @@
* 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#include "qt4.hpp"
#include <vlc_epg.h>
#include "EPGChannels.hpp"
#include "EPGView.hpp"
...
...
modules/gui/qt4/components/epg/EPGItem.cpp
View file @
8003c414
...
...
@@ -24,10 +24,8 @@
#include <QTransform>
#include <QFont>
#include <QFontMetrics>
#include <QDebug>
#include <QDateTime>
#include <QFocusEvent>
#include <QGraphicsScene>
#include <QStyleOptionGraphicsItem>
#include <QGraphicsSceneHoverEvent>
#include <QStyle>
...
...
modules/gui/qt4/components/epg/EPGItem.hpp
View file @
8003c414
...
...
@@ -32,7 +32,6 @@
class
QPainter
;
class
QString
;
class
EPGView
;
class
EPGItem
:
public
QGraphicsItem
...
...
modules/gui/qt4/components/epg/EPGView.cpp
View file @
8003c414
...
...
@@ -21,6 +21,10 @@
* 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#include "qt4.hpp"
#include <vlc_epg.h>
#include "EPGView.hpp"
#include "EPGItem.hpp"
...
...
modules/gui/qt4/components/epg/EPGView.hpp
View file @
8003c414
...
...
@@ -24,7 +24,9 @@
#ifndef EPGVIEW_H
#define EPGVIEW_H
#include "EPGItem.hpp"
#include "qt4.hpp"
#include <vlc_epg.h>
#include <QGraphicsView>
#include <QGraphicsScene>
...
...
@@ -33,6 +35,8 @@
#include <QMutex>
#include <QDateTime>
class
EPGItem
;
#define TRACKS_HEIGHT 60
typedef
QMap
<
QDateTime
,
EPGItem
*>
EPGEventByTimeQMap
;
...
...
modules/gui/qt4/components/epg/EPGWidget.cpp
View file @
8003c414
...
...
@@ -21,21 +21,21 @@
* 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "qt4.hpp"
#include "EPGWidget.hpp"
#include <vlc_epg.h>
#include "input_manager.hpp"
#include <QStackedWidget>
#include <QVBoxLayout>
#include <QScrollBar>
#include <QLabel>
#include <QStringList>
#include "qt4.hpp"
#include "input_manager.hpp"
#include <vlc_common.h>
#include <vlc_epg.h>
#include "EPGWidget.hpp"
#include "EPGRuler.hpp"
#include "EPGView.hpp"
#include "EPGChannels.hpp"
EPGWidget
::
EPGWidget
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
...
...
modules/gui/qt4/components/epg/EPGWidget.hpp
View file @
8003c414
...
...
@@ -24,17 +24,17 @@
#ifndef EPGWIDGET_H
#define EPGWIDGET_H
#include "EPGView.hpp"
#include "EPGItem.hpp"
#include "EPGRuler.hpp"
#include "EPGChannels.hpp"
#include <vlc_common.h>
#include <vlc_epg.h>
#include <QWidget>
#include <QStackedWidget>
class
EPGView
;
class
EPGItem
;
class
EPGRuler
;
class
EPGChannels
;
class
EPGWidget
:
public
QWidget
{
Q_OBJECT
...
...
modules/gui/qt4/components/playlist/playlist_model.cpp
View file @
8003c414
...
...
@@ -39,9 +39,7 @@
#include <assert.h>
#include <QFont>
#include <QTimer>
#include <QAction>
#include <QBuffer>
/*************************************************************************
* Playlist model implementation
...
...
modules/gui/qt4/dialogs/epg.cpp
View file @
8003c414
...
...
@@ -27,6 +27,7 @@
#include "dialogs/epg.hpp"
#include "components/epg/EPGWidget.hpp"
#include "components/epg/EPGItem.hpp"
#include <vlc_playlist.h>
#include <QVBoxLayout>
...
...
@@ -37,6 +38,7 @@
#include <QTextEdit>
#include <QDialogButtonBox>
#include <QTimer>
#include <QDateTime>
#include "qt4.hpp"
#include "input_manager.hpp"
...
...
modules/gui/qt4/util/input_slider.cpp
View file @
8003c414
...
...
@@ -30,6 +30,7 @@
#include "qt4.hpp"
#include "util/input_slider.hpp"
#include "util/timetooltip.hpp"
#include "adapters/seekpoints.hpp"
#include <QPaintEvent>
...
...
modules/gui/qt4/util/input_slider.hpp
View file @
8003c414
...
...
@@ -30,7 +30,6 @@
# include "config.h"
#endif
#include "timetooltip.hpp"
#include "styles/seekstyle.hpp"
#include <QSlider>
...
...
@@ -46,6 +45,7 @@ class QTimer;
class
SeekPoints
;
class
QPropertyAnimation
;
class
QCommonStyle
;
class
TimeTooltip
;
/* Input Slider derived from QSlider */
class
SeekSlider
:
public
QSlider
...
...
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