[Kget] [Bug 114361] search option in "list all links" missing
Carsten Pfeiffer
pfeiffer at kde.org
Wed Oct 18 21:51:42 CEST 2006
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=114361
pfeiffer kde org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From pfeiffer kde org 2006-10-18 21:51 -------
SVN commit 596874 by pfeiffer:
trivial patch to add a KListViewSearchLine to the KGet "List all links" view
BUG: 114361
M +11 -2 kget_linkview.cpp
--- branches/KDE/3.5/kdenetwork/kget/kget_plug_in/kget_linkview.cpp #596873:596874
@ -1,9 +1,12 @
#include "kget_linkview.h"
+#include <qlayout.h>
+
#include <dcopclient.h>
#include <kaction.h>
#include <kapplication.h>
#include <kiconloader.h>
+#include <klistviewsearchline.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kprocess.h>
@ -52,7 +55,11 @
toolBar()->insertLineSeparator();
actionSelectAll->plug( toolBar() );
- m_view = new KListView( this, "listview" );
+ QWidget *mainWidget = new QWidget( this );
+ QVBoxLayout *layout = new QVBoxLayout( mainWidget );
+ setCentralWidget( mainWidget );
+
+ m_view = new KListView( mainWidget, "listview" );
m_view->setSelectionMode( QListView::Extended );
m_view->addColumn( i18n("File Name") );
m_view->addColumn( i18n("Description") );
@ -60,7 +67,9 @
m_view->addColumn( i18n("Location (URL)") );
m_view->setShowSortIndicator( true );
- setCentralWidget( m_view );
+ KListViewSearchLineWidget *line = new KListViewSearchLineWidget( m_view, mainWidget, "search line" );
+ layout->addWidget( line );
+ layout->addWidget( m_view );
// setting a fixed (not floating) toolbar
toolBar()->setMovingEnabled( false );
More information about the Kget
mailing list