|
|
/*************************************************************************** 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
Generated by: baudens@ke.mandrakesoft.com on Fri Apr 13 14:31:17 2001, using kdoc 2.0a53. |