⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 domtreeview.h

📁 将konqueror浏览器移植到ARM9 2410中
💻 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 + -