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.
61 lines
1.9 KiB
61 lines
1.9 KiB
/***************************************************************************
|
|
kget_plug_in.h - description
|
|
-------------------
|
|
begin : Wed Jul 3 22:09:28 CEST 2002
|
|
copyright : (C) 2002 by Patrick
|
|
email : pch@valleeurpe.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. *
|
|
* *
|
|
***************************************************************************/
|
|
#ifndef __plugin_kget_plug_in_h
|
|
#define __plugin_kget_plug_in_h
|
|
|
|
#include <kparts/plugin.h>
|
|
#include <klibloader.h>
|
|
#include <dcopclient.h>
|
|
#include <kurl.h>
|
|
|
|
class KInstance;
|
|
|
|
class KGet_plug_in : public KParts::Plugin
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
KGet_plug_in( TQObject* parent = 0, const char* name = 0 );
|
|
KToggleAction *m_paToggleDropTarget ;
|
|
DCOPClient* p_dcopServer;
|
|
virtual ~KGet_plug_in();
|
|
|
|
private slots:
|
|
void slotShowDrop();
|
|
void slotShowLinks();
|
|
void showPopup();
|
|
};
|
|
|
|
|
|
class KPluginFactory : public KLibFactory
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
KPluginFactory( TQObject *parent = 0, const char *name = 0 );
|
|
~KPluginFactory() ;
|
|
|
|
virtual TQObject* createObject( TQObject* parent = 0, const char* pname = 0,
|
|
const char* name = TQOBJECT_OBJECT_NAME_STRING,
|
|
const TQStringList &args = TQStringList() );
|
|
|
|
private:
|
|
static KInstance* s_instance;
|
|
};
|
|
|
|
#endif
|