#include <khtml_part.h>
#include <khtmlview.h>
#include <kglobal.h>
-#include <klistview.h>
-#include <klistviewsearchline.h>
+#include <k3listview.h>
+#include <k3listviewsearchline.h>
#include <kstandarddirs.h>
#include <kactioncollection.h>
lbl->setText( i18n( "Search:" ) );
hbox->addWidget( lbl );
- m_search = new KListViewSearchLine( plainPage(), 0L );
+ m_search = new K3ListViewSearchLine( plainPage(), 0L );
m_search->setObjectName( "search-line" );
hbox->addWidget( m_search );
vbox->addLayout( hbox );
QSplitter *vs = new QSplitter( plainPage() );
vbox->addWidget( vs );
- m_glosstree = new KListView( vs );
+ m_glosstree = new K3ListView( vs );
m_glosstree->setObjectName( "treeview" );
m_glosstree->addColumn( "entries" );
m_glosstree->header()->hide();
class QChar;
class QDomDocument;
class Q3ListViewItem;
-class KListView;
-class KListViewSearchLine;
+class K3ListView;
+class K3ListViewSearchLine;
class KActionCollection;
class GlossaryItem;
void updateTree();
KHTMLPart *m_htmlpart;
- KListView *m_glosstree;
+ K3ListView *m_glosstree;
QString m_htmlbasestring;
KActionCollection* m_actionCollection;
Q3ListViewItem* findTreeWithLetter( const QChar&, Q3ListViewItem* );
- KListViewSearchLine *m_search;
+ K3ListViewSearchLine *m_search;
private slots:
void slotClicked( Q3ListViewItem * );