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

tdehtml

domtreeview.h

00001 /***************************************************************************
00002                                domtreeview.cpp
00003                              -------------------
00004 
00005     copyright            : (C) 2001 - The Kafka Team
00006     email                : kde-kafka@master.kde.org
00007  ***************************************************************************/
00008 
00009 /***************************************************************************
00010  *                                                                         *
00011  *   This program is free software; you can redistribute it and/or modify  *
00012  *   it under the terms of the GNU General Public License as published by  *
00013  *   the Free Software Foundation; either version 2 of the License, or     *
00014  *   (at your option) any later version.                                   *
00015  *                                                                         *
00016  ***************************************************************************/
00017 
00018 #ifndef DOMTREEVIEW_H
00019 #define DOMTREEVIEW_H
00020 
00021 #include <tdelistview.h>
00022 #include <kdebug.h>
00023 #include <tqlistview.h>
00024 #include <tqptrdict.h>
00025 #include "dom/dom_core.h"
00026 
00027 class DOMTreeView : public TDEListView
00028 {
00029     Q_OBJECT
00030     public: 
00031     DOMTreeView(TQWidget *parent, TDEHTMLPart *part, const char * name = 0);
00032     ~DOMTreeView();
00033 
00034     void recursive(const DOM::Node &pNode, const DOM::Node &node);
00035 
00036     signals:
00037     void sigNodeClicked(const DOM::Node &);
00038     
00039     public slots:
00040     void showTree(const DOM::Node &pNode);
00041 
00042     protected slots:
00043     void slotItemClicked(TQListViewItem *);
00044 
00045     private:
00046     TQPtrDict<TQListViewItem> m_itemdict;
00047     TQPtrDict<DOM::Node> m_nodedict;
00048     DOM::Node document;
00049 
00050     TDEHTMLPart *part;
00051 
00052 };
00053 
00054 #endif

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.7.1
This website is maintained by Timothy Pearson.