1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/***************************************************************************
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 <tdelocale.h>
#include "mediaplayer.moc"
#include <kdebug.h>
#include <ksimpleconfig.h>
#include <tdeconfig.h>
#include <kstandarddirs.h>
#include <tdemessagebox.h>
#include <tdeglobal.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"
{
TDE_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"
{
TDE_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;
}
}
|