]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/epg.cpp
b5213c328059e1d639771eb85930181260757cad
[vlc] / modules / gui / qt4 / dialogs / epg.cpp
1 /*****************************************************************************
2  * Epg.cpp : Epg Viewer dialog
3  ****************************************************************************
4  * Copyright © 2010 VideoLAN and AUTHORS
5  *
6  * Authors:    Jean-Baptiste Kempf <jb@videolan.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26
27 #include "dialogs/epg.hpp"
28
29 #include "components/epg/EPGWidget.hpp"
30
31 #include <QHBoxLayout>
32
33 EpgDialog::EpgDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
34 {
35     setTitle( "Program Guide" );
36
37     QHBoxLayout *layout = new QHBoxLayout( this );
38     EPGWidget *epg = new EPGWidget( this );
39
40     layout->addWidget( epg );
41 }
42
43 EpgDialog::~EpgDialog()
44 {
45 }
46