blob: c6d73200c689f580dea61753b2734f05a6bc09a8 (
plain)
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
|
/* $Id$ */
#ifndef __plugin_domtreeviewer_h
#define __plugin_domtreeviewer_h
#include <kparts/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
|