📄 domtreeview.h
字号:
/*************************************************************************** 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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -