Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
0a03829d
Commit
0a03829d
authored
Jan 27, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: initial EPG dialogs and DP integration
parent
541836cd
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
98 additions
and
0 deletions
+98
-0
modules/gui/qt4/Modules.am
modules/gui/qt4/Modules.am
+3
-0
modules/gui/qt4/dialogs/epg.cpp
modules/gui/qt4/dialogs/epg.cpp
+46
-0
modules/gui/qt4/dialogs/epg.hpp
modules/gui/qt4/dialogs/epg.hpp
+42
-0
modules/gui/qt4/dialogs_provider.cpp
modules/gui/qt4/dialogs_provider.cpp
+6
-0
modules/gui/qt4/dialogs_provider.hpp
modules/gui/qt4/dialogs_provider.hpp
+1
-0
No files found.
modules/gui/qt4/Modules.am
View file @
0a03829d
...
...
@@ -28,6 +28,7 @@ nodist_SOURCES_qt4 = \
dialogs/mediainfo.moc.cpp \
dialogs/extended.moc.cpp \
dialogs/messages.moc.cpp \
dialogs/epg.moc.cpp \
dialogs/errors.moc.cpp \
dialogs/external.moc.cpp \
dialogs/plugins.moc.cpp \
...
...
@@ -225,6 +226,7 @@ SOURCES_qt4 = qt4.cpp \
dialogs/bookmarks.cpp \
dialogs/preferences.cpp \
dialogs/mediainfo.cpp \
dialogs/epg.cpp \
dialogs/extended.cpp \
dialogs/messages.cpp \
dialogs/errors.cpp \
...
...
@@ -281,6 +283,7 @@ noinst_HEADERS = \
dialogs/mediainfo.hpp \
dialogs/extended.hpp \
dialogs/messages.hpp \
dialogs/epg.hpp \
dialogs/errors.hpp \
dialogs/external.hpp \
dialogs/plugins.hpp \
...
...
modules/gui/qt4/dialogs/epg.cpp
0 → 100644
View file @
0a03829d
/*****************************************************************************
* Epg.cpp : Epg Viewer dialog
****************************************************************************
* Copyright © 2010 VideoLAN and AUTHORS
*
* 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.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "dialogs/epg.hpp"
#include "components/epg/EPGWidget.hpp"
#include <QHBoxLayout>
EpgDialog
::
EpgDialog
(
intf_thread_t
*
_p_intf
)
:
QVLCFrame
(
_p_intf
)
{
setTitle
(
"Program Guide"
);
QHBoxLayout
*
layout
=
new
QHBoxLayout
(
this
);
EPGWidget
*
epg
=
new
EPGWidget
(
this
);
layout
->
addWidget
(
epg
);
}
EpgDialog
::~
EpgDialog
()
{
}
modules/gui/qt4/dialogs/epg.hpp
0 → 100644
View file @
0a03829d
/*****************************************************************************
* epg.cpp : EPG Viewer dialog
****************************************************************************
* Copyright © 2010 VideoLAN and AUTHORS
*
* 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 QVLC_EPG_DIALOG_H_
#define QVLC_EPG_DIALOG_H_ 1
#include "util/qvlcframe.hpp"
#include "util/singleton.hpp"
class
EpgDialog
:
public
QVLCFrame
,
public
Singleton
<
EpgDialog
>
{
Q_OBJECT
;
private:
EpgDialog
(
intf_thread_t
*
);
virtual
~
EpgDialog
();
friend
class
Singleton
<
EpgDialog
>
;
};
#endif
modules/gui/qt4/dialogs_provider.cpp
View file @
0a03829d
...
...
@@ -54,6 +54,7 @@
#include "dialogs/plugins.hpp"
#include "dialogs/external.hpp"
#include "dialogs/errors.hpp"
#include "dialogs/epg.hpp"
#include <QEvent>
#include <QApplication>
...
...
@@ -263,6 +264,11 @@ void DialogsProvider::pluginDialog()
PluginDialog
::
getInstance
(
p_intf
)
->
toggleVisible
();
}
void
DialogsProvider
::
epgDialog
()
{
EpgDialog
::
getInstance
(
p_intf
)
->
toggleVisible
();
}
/* Generic open file */
void
DialogsProvider
::
openFileGenericDialog
(
intf_dialog_args_t
*
p_arg
)
{
...
...
modules/gui/qt4/dialogs_provider.hpp
View file @
0a03829d
...
...
@@ -158,6 +158,7 @@ public slots:
void
podcastConfigureDialog
();
void
toolbarDialog
();
void
pluginDialog
();
void
epgDialog
();
void
openFileGenericDialog
(
intf_dialog_args_t
*
);
...
...
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