You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeaddons/konq-plugins/sidebar/mediaplayer/mediaplayer.cpp

75 lines
2.6 KiB

/***************************************************************************
mediaplayer.cpp - The real sidebar plugin
-------------------
begin : Sat June 23 13:35:30 CEST 2001
copyright : (C) 2001 Joseph Wenninger
email : jowenn@kde.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. *
* *
***************************************************************************/
#include "mediaplayer.h"
#include <klocale.h>
#include "mediaplayer.moc"
#include <kdebug.h>
#include <ksimpleconfig.h>
#include <tdeconfig.h>
#include <kstandarddirs.h>
#include <kmessagebox.h>
#include <kglobal.h>
#include <kdemacros.h>
#include "mediawidget.h"
KonqSidebar_MediaPlayer::KonqSidebar_MediaPlayer(TDEInstance *instance,TQObject *parent,TQWidget *widgetParent, TQString &desktopName_, const char* name):
KonqSidebarPlugin(instance,parent,widgetParent,desktopName_,name)
{
widget=new KSB_MediaWidget(widgetParent);
}
KonqSidebar_MediaPlayer::~KonqSidebar_MediaPlayer(){;}
void* KonqSidebar_MediaPlayer::provides(const TQString &) {return 0;}
void KonqSidebar_MediaPlayer::emitStatusBarText (const TQString &) {;}
TQWidget *KonqSidebar_MediaPlayer::getWidget(){return widget;}
void KonqSidebar_MediaPlayer::handleURL(const KURL &/*url*/)
{
}
extern "C"
{
KDE_EXPORT void* create_konqsidebar_mediaplayer(TDEInstance *instance,TQObject *par,TQWidget *widp,TQString &desktopname,const char *name)
{
TDEGlobal::locale()->insertCatalogue("konqsidebar_mediaplayer");
return new KonqSidebar_MediaPlayer(instance,par,widp,desktopname,name);
}
}
extern "C"
{
KDE_EXPORT bool add_konqsidebar_mediaplayer(TQString* fn, TQString* /*param*/, TQMap<TQString,TQString> *map)
{
map->insert("Type","Link");
map->insert("Icon","konqsidebar_mediaplayer");
map->insert("Name",i18n("Media Player"));
map->insert("Open","false");
map->insert("X-TDE-KonqSidebarModule","konqsidebar_mediaplayer");
fn->setLatin1("mplayer%1.desktop");
return true;
}
}