partexplorer_plugin.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 * Copyright (C) 2003 by Mario Scalas * 00003 * mario.scalas@libero.it * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 ***************************************************************************/ 00011 00012 #ifndef _PARTEXPLORERPLUGIN_H_ 00013 #define _PARTEXPLORERPLUGIN_H_ 00014 00015 #include <qguardedptr.h> 00016 00017 #include "kdevplugin.h" 00018 00019 class QWidget; 00020 class QPainter; 00021 class KURL; 00022 class PartExplorerForm; 00023 00024 class PartExplorerPlugin : public KDevPlugin 00025 { 00026 Q_OBJECT 00027 public: 00031 PartExplorerPlugin( QObject *parent, const char *name, const QStringList & ); 00032 00036 virtual ~PartExplorerPlugin(); 00037 00038 private slots: 00039 void slotShowForm(); 00040 00041 private: 00045 QGuardedPtr<PartExplorerForm> m_widget; 00046 }; 00047 00048 #endif // _PARTEXPLORERPLUGIN_H_