summaryrefslogtreecommitdiff
path: root/src/tvlist.cpp
diff options
context:
space:
mode:
authorMateusz Łukasik <mati75@linuxmint.pl>2018-03-12 05:45:30 -0400
committerMateusz Łukasik <mati75@linuxmint.pl>2018-03-12 05:45:30 -0400
commitddef07cab834612d6470fbb4483afde40cd2d708 (patch)
tree183ca1da081ae14e3e05d7ae4374c484e0ff9def /src/tvlist.cpp
Import smplayer_18.2.2~ds0.orig.tar.bz2
[dgit import orig smplayer_18.2.2~ds0.orig.tar.bz2]
Diffstat (limited to 'src/tvlist.cpp')
-rw-r--r--src/tvlist.cpp125
1 files changed, 125 insertions, 0 deletions
diff --git a/src/tvlist.cpp b/src/tvlist.cpp
new file mode 100644
index 0000000..80b9cb2
--- /dev/null
+++ b/src/tvlist.cpp
@@ -0,0 +1,125 @@
+/* smplayer, GUI front-end for mplayer.
+ Copyright (C) 2006-2018 Ricardo Villalba <rvm@users.sourceforge.net>
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
+#include "tvlist.h"
+#include "favoriteeditor.h"
+#include "images.h"
+
+#include <QFile>
+#include <QDir>
+#include <QTextStream>
+
+TVList::TVList(bool check_channels_conf, Services services, QString filename, QWidget * parent)
+ : Favorites(filename,parent)
+{
+#ifndef Q_OS_WIN
+ if (check_channels_conf) {
+ /* f_list.clear(); */
+ parse_channels_conf(services);
+ updateMenu();
+ }
+#endif
+}
+
+TVList::~TVList() {
+}
+
+Favorites * TVList::createNewObject(QString filename, QWidget * parent) {
+ return new TVList(false, TV, filename, parent);
+}
+
+#ifndef Q_OS_WIN
+void TVList::parse_channels_conf(Services services) {
+ qDebug("TVList::parse_channels_conf");
+
+ QString file = QDir::homePath() + "/.mplayer/channels.conf.ter";
+
+ if (!QFile::exists(file)) {
+ qDebug("VList::parse_channels_conf: %s doesn't exist", file.toUtf8().constData());
+ file = QDir::homePath() + "/.mplayer/channels.conf";
+ }
+
+ QFile f( file );
+ if (!f.open(QIODevice::ReadOnly | QIODevice::Text)) {
+ qDebug("TVList::parse_channels_conf: can't open %s", file.toUtf8().constData());
+ return;
+ }
+
+ QTextStream in(&f);
+ while (!in.atEnd()) {
+ QString line = in.readLine();
+ qDebug("TVList::parse_channels_conf: '%s'", line.toUtf8().constData());
+ QString channel = line.section(':', 0, 0);
+ QString video_pid = line.section(':', 10, 10);
+ QString audio_pid = line.section(':', 11, 11);
+ bool is_radio = (video_pid == "0" && audio_pid != "0");
+ bool is_data = (video_pid == "0" && audio_pid == "0");
+ bool is_tv = (!is_radio && !is_data);
+ if (!channel.isEmpty()) {
+ qDebug("TVList::parse_channels_conf: channel: '%s' video_pid: %s audio_pid: %s", channel.toUtf8().constData(),video_pid.toUtf8().constData(),audio_pid.toUtf8().constData());
+ QString channel_id = "dvb://"+channel;
+ if (findFile(channel_id) == -1) {
+ if ( (services.testFlag(TVList::TV) && is_tv) ||
+ (services.testFlag(TVList::Radio) && is_radio) ||
+ (services.testFlag(TVList::Data) && is_data) )
+ {
+ f_list.append( Favorite(channel, channel_id) );
+ }
+ }
+ }
+ }
+}
+
+QString TVList::findChannelsFile() {
+ QString channels_file;
+
+ QString file = QDir::homePath() + "/.mplayer/channels.conf.ter";
+ if (QFile::exists(file)) return file;
+
+ file = QDir::homePath() + "/.mplayer/channels.conf";
+ if (QFile::exists(file)) return file;
+
+ file = QDir::homePath() + "/.config/mpv/channels.conf.ter";
+ if (QFile::exists(file)) return file;
+
+ file = QDir::homePath() + "/.config/mpv/channels.conf";
+ if (QFile::exists(file)) return file;
+
+ return QString::null;
+}
+#endif
+
+void TVList::edit() {
+ qDebug("TVList::edit");
+
+ FavoriteEditor e(parent_widget);
+
+ e.setWindowTitle( tr("Channel editor") );
+ e.setCaption( tr("TV/Radio list") );
+ e.setDialogIcon( Images::icon("open_tv", 64) );
+
+ e.setData(f_list);
+ e.setStorePath( QFileInfo(_filename).absolutePath() );
+
+ if (e.exec() == QDialog::Accepted) {
+ f_list = e.data();
+ updateMenu();
+ }
+}
+
+#include "moc_tvlist.cpp"