• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • tdehtml
 

tdehtml

  • tdehtml
domtreeview.h
1/***************************************************************************
2 domtreeview.cpp
3 -------------------
4
5 copyright : (C) 2001 - The Kafka Team
6 email : kde-kafka@master.kde.org
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
18#ifndef DOMTREEVIEW_H
19#define DOMTREEVIEW_H
20
21#include <tdelistview.h>
22#include <kdebug.h>
23#include <tqlistview.h>
24#include <tqptrdict.h>
25#include "dom/dom_core.h"
26
27class DOMTreeView : public TDEListView
28{
29 TQ_OBJECT
30 public:
31 DOMTreeView(TQWidget *parent, TDEHTMLPart *part, const char * name = 0);
32 ~DOMTreeView();
33
34 void recursive(const DOM::Node &pNode, const DOM::Node &node);
35
36 signals:
37 void sigNodeClicked(const DOM::Node &);
38
39 public slots:
40 void showTree(const DOM::Node &pNode);
41
42 protected slots:
43 void slotItemClicked(TQListViewItem *);
44
45 private:
46 TQPtrDict<TQListViewItem> m_itemdict;
47 TQPtrDict<DOM::Node> m_nodedict;
48 DOM::Node document;
49
50 TDEHTMLPart *part;
51
52};
53
54#endif
DOM::Node
The Node interface is the primary datatype for the entire Document Object Model.
Definition: dom_node.h:275
TDEHTMLPart
This class is tdehtml's main class.
Definition: tdehtml_part.h:184
TDEListView

tdehtml

Skip menu "tdehtml"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members
  • Related Pages

tdehtml

Skip menu "tdehtml"
  • arts
  • dcop
  • dnssd
  • interfaces
  •   kspeech
  •     interface
  •     library
  •   tdetexteditor
  • kate
  • kded
  • kdoctools
  • kimgio
  • kjs
  • libtdemid
  • libtdescreensaver
  • tdeabc
  • tdecmshell
  • tdecore
  • tdefx
  • tdehtml
  • tdeinit
  • tdeio
  •   bookmarks
  •   httpfilter
  •   kpasswdserver
  •   kssl
  •   tdefile
  •   tdeio
  •   tdeioexec
  • tdeioslave
  •   http
  • tdemdi
  •   tdemdi
  • tdenewstuff
  • tdeparts
  • tdeprint
  • tderandr
  • tderesources
  • tdespell2
  • tdesu
  • tdeui
  • tdeunittest
  • tdeutils
  • tdewallet
Generated for tdehtml by doxygen 1.9.4
This website is maintained by Timothy Pearson.