aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/cue/CMakeLists.txt
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-02-12 06:50:15 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-02-12 06:50:15 +0000
commit77a9057b84b401d1ba62f46f02a5e10109d47f7b (patch)
tree910f9aff5c35d55435383857931aa7f856d30904 /src/plugins/Input/cue/CMakeLists.txt
parent64f348f2e215e69d567ed5313a901838aef3b620 (diff)
downloadqmmp-77a9057b84b401d1ba62f46f02a5e10109d47f7b.tar.gz
qmmp-77a9057b84b401d1ba62f46f02a5e10109d47f7b.tar.bz2
qmmp-77a9057b84b401d1ba62f46f02a5e10109d47f7b.zip
hotkey plugin: fixed key string
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3230 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/cue/CMakeLists.txt')
0 files changed, 0 insertions, 0 deletions
span> * 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. * ***************************************************************************/ #include <QtGui> #include "streambrowser.h" #include "streambrowserfactory.h" const GeneralProperties StreamBrowserFactory::properties() const { GeneralProperties properties; properties.name = tr("Stream Browser Plugin"); properties.shortName = "streambrowser"; properties.hasAbout = true; properties.hasSettings = false; properties.visibilityControl = false; return properties; } QObject *StreamBrowserFactory::create(QObject *parent) { return new StreamBrowser(parent); } QDialog *StreamBrowserFactory::createConfigDialog(QWidget *parent) { Q_UNUSED(parent); return 0; } void StreamBrowserFactory::showAbout(QWidget *parent) { QMessageBox::about (parent, tr("About Stream Browser Plugin"), tr("Qmmp Stream Browser Plugin")+"\n"+ tr("This plugin allows to add stream from IceCast stream directory")+"\n"+ tr("Written by: Ilya Kotov <forkotov02@hotmail.ru>")); } QTranslator *StreamBrowserFactory::createTranslator(QObject *parent) { QTranslator *translator = new QTranslator(parent); QString locale = Qmmp::systemLanguageID(); translator->load(QString(":/streambrowser_plugin_") + locale); return translator; } Q_EXPORT_PLUGIN2(streambrowser, StreamBrowserFactory)