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.
29 lines
489 B
29 lines
489 B
/* $Id$ */
|
|
|
|
#ifndef __plugin_domtreeviewer_h
|
|
#define __plugin_domtreeviewer_h
|
|
|
|
#include <tdeparts/plugin.h>
|
|
// #include <klibloader.h>
|
|
|
|
class DOMTreeWindow;
|
|
class KURL;
|
|
|
|
class PluginDomtreeviewer : public KParts::Plugin
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PluginDomtreeviewer( TQObject* parent, const char* name,
|
|
const TQStringList & );
|
|
virtual ~PluginDomtreeviewer();
|
|
|
|
public slots:
|
|
void slotShowDOMTree();
|
|
void slotDestroyed();
|
|
private:
|
|
DOMTreeWindow* m_dialog;
|
|
};
|
|
|
|
#endif
|