diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch) | |
tree | 5ac38a06f3dde268dc7927dc155896926aaf7012 /khtml/domtreeview.h | |
download | tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khtml/domtreeview.h')
-rw-r--r-- | khtml/domtreeview.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/khtml/domtreeview.h b/khtml/domtreeview.h new file mode 100644 index 000000000..29a70e43d --- /dev/null +++ b/khtml/domtreeview.h @@ -0,0 +1,54 @@ +/*************************************************************************** + domtreeview.cpp + ------------------- + + copyright : (C) 2001 - The Kafka Team + email : kde-kafka@master.kde.org + ***************************************************************************/ + +/*************************************************************************** + * * + * 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 <klistview.h> +#include <kdebug.h> +#include <qlistview.h> +#include <qptrdict.h> +#include "dom/dom_core.h" + +class DOMTreeView : public KListView +{ + Q_OBJECT + public: + DOMTreeView(QWidget *parent, KHTMLPart *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(QListViewItem *); + + private: + QPtrDict<QListViewItem> m_itemdict; + QPtrDict<DOM::Node> m_nodedict; + DOM::Node document; + + KHTMLPart *part; + +}; + +#endif |