/*************************************************************************** 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 #include #include #include class TDEInstance; class KGet_plug_in : public KParts::Plugin { Q_OBJECT public: KGet_plug_in( TQObject* parent = 0, const char* name = 0 ); TDEToggleAction *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 TDEInstance* s_instance; }; #endif