diff options
author | Darrell Anderson <[email protected]> | 2013-03-02 15:57:34 -0600 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2013-03-02 15:57:34 -0600 |
commit | 7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f (patch) | |
tree | c76702a7f6310fbe9d437e347535422e836e94e9 /tdehtml/domtreeview.h | |
parent | a2a38be7600e2a2c2b49c66902d912ca036a2c0f (diff) | |
parent | 27bbee9a5f9dcda53d8eb23863ee670ad1360e41 (diff) | |
download | tdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.tar.gz tdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdelibs
Diffstat (limited to 'tdehtml/domtreeview.h')
-rw-r--r-- | tdehtml/domtreeview.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/tdehtml/domtreeview.h b/tdehtml/domtreeview.h new file mode 100644 index 000000000..4156f083a --- /dev/null +++ b/tdehtml/domtreeview.h @@ -0,0 +1,54 @@ +/*************************************************************************** + domtreeview.cpp + ------------------- + + copyright : (C) 2001 - The Kafka Team + email : [email protected] + ***************************************************************************/ + +/*************************************************************************** + * * + * 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 DOMTREEVIEW_H +#define DOMTREEVIEW_H + +#include <tdelistview.h> +#include <kdebug.h> +#include <tqlistview.h> +#include <tqptrdict.h> +#include "dom/dom_core.h" + +class DOMTreeView : public TDEListView +{ + Q_OBJECT + public: + DOMTreeView(TQWidget *parent, TDEHTMLPart *part, const char * name = 0); + ~DOMTreeView(); + + void recursive(const DOM::Node &pNode, const DOM::Node &node); + + signals: + void sigNodeClicked(const DOM::Node &); + + public slots: + void showTree(const DOM::Node &pNode); + + protected slots: + void slotItemClicked(TQListViewItem *); + + private: + TQPtrDict<TQListViewItem> m_itemdict; + TQPtrDict<DOM::Node> m_nodedict; + DOM::Node document; + + TDEHTMLPart *part; + +}; + +#endif |