aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/uiloader.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-11-04 17:22:01 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-11-04 17:22:01 +0000
commitf638d68fd90fb817e040716bc3f94fc416087e11 (patch)
tree044fc0c8a59954269519cd99f6d658b16fc848d7 /src/qmmpui/uiloader.cpp
parente8aff58914243940124b0f465f424ff1076cb3e4 (diff)
downloadqmmp-f638d68fd90fb817e040716bc3f94fc416087e11.tar.gz
qmmp-f638d68fd90fb817e040716bc3f94fc416087e11.tar.bz2
qmmp-f638d68fd90fb817e040716bc3f94fc416087e11.zip
fixed freebsd build (thanks to Ryota Shimamoto)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2495 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/uiloader.cpp')
0 files changed, 0 insertions, 0 deletions
************ * Copyright (C) 2010 by Ilya Kotov * * forkotov02@hotmail.ru * * * * 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 <QtPlugin> #include <QTranslator> #include <QLocale> #include <QRegExp> #include <qmmp/soundcore.h> #include "seekoption.h" bool SeekOption::identify(const QString &str) const { QStringList opts; opts << "--seek" << "--seek-fwd" << "--seek-bwd"; return opts.contains(str); } const QString SeekOption::helpString() const { QString help; help += QString("--seek <time> ") + tr("Seek to position in the current track") + "\n"; help += QString("--seek-fwd <time> ") + tr("Seek forward") + "\n"; help += QString("--seek-bwd <time> ") + tr("Seek backwards") + "\n"; return help; } QString SeekOption::executeCommand(const QString &opt_str, const QStringList &args) { SoundCore *core = SoundCore::instance(); if(core->state() != Qmmp::Playing && core->totalTime()) return QString(); if(args.isEmpty()) return QString(); int seek_pos = -1; int elapsed = core->elapsed()/1000; QRegExp seek_regexp1 ("^([0-9]{1,4})$"); QRegExp seek_regexp2 ("^([0-9]{1,2}):([0-9]{1,2})$"); if(seek_regexp1.indexIn(args.at(0)) != -1) seek_pos = seek_regexp1.cap(1).toInt(); else if(seek_regexp2.indexIn(args.at(0)) != -1) seek_pos = seek_regexp2.cap(1).toInt()*60 + seek_regexp2.cap(2).toInt(); //seek absolute if(opt_str == "--seek") ; else if(opt_str == "--seek-fwd") seek_pos += elapsed; else if(opt_str == "--seek-bwd") seek_pos = elapsed - seek_pos; qDebug("SeekOption: position = %d", seek_pos); if(seek_pos >= 0 && seek_pos < core->totalTime()) core->seek(seek_pos * 1000); else return QString(); return QString(); } const QString SeekOption::name() const { return "SeekOption"; } QTranslator *SeekOption::createTranslator(QObject *parent) { QTranslator *translator = new QTranslator(parent); QString locale = Qmmp::systemLanguageID(); translator->load(QString(":/seek_plugin_") + locale); return translator; } Q_EXPORT_PLUGIN2(seekoption, SeekOption)