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
541836cd
Commit
541836cd
authored
Jan 27, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: EPG, include orders
parent
e4cd963a
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
24 additions
and
18 deletions
+24
-18
modules/gui/qt4/components/epg/EPGEvent.hpp
modules/gui/qt4/components/epg/EPGEvent.hpp
+1
-1
modules/gui/qt4/components/epg/EPGItem.cpp
modules/gui/qt4/components/epg/EPGItem.cpp
+1
-0
modules/gui/qt4/components/epg/EPGItem.hpp
modules/gui/qt4/components/epg/EPGItem.hpp
+4
-3
modules/gui/qt4/components/epg/EPGRuler.cpp
modules/gui/qt4/components/epg/EPGRuler.cpp
+1
-0
modules/gui/qt4/components/epg/EPGView.cpp
modules/gui/qt4/components/epg/EPGView.cpp
+3
-1
modules/gui/qt4/components/epg/EPGView.hpp
modules/gui/qt4/components/epg/EPGView.hpp
+3
-3
modules/gui/qt4/components/epg/EPGWidget.cpp
modules/gui/qt4/components/epg/EPGWidget.cpp
+3
-2
modules/gui/qt4/components/epg/EPGWidget.hpp
modules/gui/qt4/components/epg/EPGWidget.hpp
+8
-8
No files found.
modules/gui/qt4/components/epg/EPGEvent.hpp
View file @
541836cd
...
...
@@ -24,7 +24,7 @@
#ifndef EPGEVENT_H
#define EPGEVENT_H
#include <QString>
class
QString
;
#include <QDateTime>
class
EPGEvent
...
...
modules/gui/qt4/components/epg/EPGItem.cpp
View file @
541836cd
...
...
@@ -25,6 +25,7 @@
#include <QFont>
#include <QFontMetrics>
#include <QDebug>
#include <QDateTime>
#include "EPGItem.hpp"
#include "EPGView.hpp"
...
...
modules/gui/qt4/components/epg/EPGItem.hpp
View file @
541836cd
...
...
@@ -26,9 +26,10 @@
#include <QObject>
#include <QGraphicsItem>
#include <QPainter>
#include <QString>
#include <QDateTime>
class
QPainter
;
class
QString
;
class
QDateTime
;
class
EPGView
;
...
...
modules/gui/qt4/components/epg/EPGRuler.cpp
View file @
541836cd
...
...
@@ -27,6 +27,7 @@
#include <QFont>
#include <QPaintEvent>
#include <QtDebug>
#include <QDateTime>
EPGRuler
::
EPGRuler
(
QWidget
*
parent
)
:
QWidget
(
parent
)
...
...
modules/gui/qt4/components/epg/EPGView.cpp
View file @
541836cd
...
...
@@ -21,9 +21,11 @@
* 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#include <QMatrix>
#include "EPGView.hpp"
#include "EPGItem.hpp"
#include <QDateTime>
#include <QMatrix>
#include <QtDebug>
EPGView
::
EPGView
(
QWidget
*
parent
)
:
QGraphicsView
(
parent
)
...
...
modules/gui/qt4/components/epg/EPGView.hpp
View file @
541836cd
...
...
@@ -24,14 +24,14 @@
#ifndef EPGVIEW_H
#define EPGVIEW_H
#include "EPGEvent.hpp"
#include <QGraphicsView>
#include <QVBoxLayout>
#include <QList>
#include "EPGEvent.hpp"
#define TRACKS_HEIGHT 75
class
QDateTime
;
class
EPGView
:
public
QGraphicsView
{
Q_OBJECT
...
...
modules/gui/qt4/components/epg/EPGWidget.cpp
View file @
541836cd
...
...
@@ -21,11 +21,12 @@
* 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#include "EPGWidget.hpp"
#include <QGridLayout>
#include <QScrollBar>
#include <QDebug>
#include "EPGWidget.hpp"
#include <QLabel>
ChannelsWidget
::
ChannelsWidget
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
...
...
modules/gui/qt4/components/epg/EPGWidget.hpp
View file @
541836cd
...
...
@@ -24,12 +24,6 @@
#ifndef EPGWIDGET_H
#define EPGWIDGET_H
#include <QWidget>
#include <QMap>
#include <QMultiMap>
#include <QDateTime>
#include <QLabel>
#include "EPGView.hpp"
#include "EPGEvent.hpp"
#include "EPGRuler.hpp"
...
...
@@ -37,16 +31,22 @@
#include <vlc_common.h>
#include <vlc_epg.h>
#include <QWidget>
#include <QMultiMap>
class
QDateTime
;
class
QLabel
;
class
ChannelsWidget
:
public
QWidget
{
Q_OBJECT
Q_OBJECT
public:
explicit
ChannelsWidget
(
QWidget
*
parent
=
0
);
};
class
EPGWidget
:
public
QWidget
{
Q_OBJECT
Q_OBJECT
public:
explicit
EPGWidget
(
QWidget
*
parent
=
0
);
...
...
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