You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
3.1 KiB
116 lines
3.1 KiB
/*
|
|
** Copyright (C) 1999,2000 Toivo Pedaste <toivo@ucs.uwa.edu.au>
|
|
**
|
|
*/
|
|
|
|
/*
|
|
** 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.
|
|
**
|
|
** This program is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with this program in a file called COPYING; if not, write to
|
|
** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
** MA 02110-1301, USA.
|
|
*/
|
|
|
|
/*
|
|
** Bug reports and questions can be sent to kde-devel@kde.org
|
|
*/
|
|
|
|
#include "../config.h"
|
|
|
|
#include "kpackage.h"
|
|
#include "managementWidget.h"
|
|
#include "search.h"
|
|
#include <klocale.h>
|
|
#include <tqlineedit.h>
|
|
#include <tqcheckbox.h>
|
|
#include <tqframe.h>
|
|
#include <tqgroupbox.h>
|
|
|
|
Search::Search(TQWidget *parent, const char * name)
|
|
: KDialogBase(parent, name, false,
|
|
i18n("Find Package"),
|
|
User1 | Close, User1, true,
|
|
KGuiItem( i18n("&Find"), "find"))
|
|
{
|
|
TQFrame *page = makeMainWidget();
|
|
|
|
setFocusPolicy(TQ_StrongFocus);
|
|
|
|
TQVBoxLayout* vtop = new TQVBoxLayout( page, 10, 10, "vtop");
|
|
|
|
TQFrame *frame1 = new TQGroupBox(i18n("Find Package"), page, "frame1");
|
|
vtop->addWidget(frame1,1);
|
|
TQVBoxLayout* vf = new TQVBoxLayout( frame1, 20, 10, "vf");
|
|
|
|
value = new TQLineEdit( frame1, "v");
|
|
vf->addWidget(value,0);
|
|
value->setFocus();
|
|
value->setFixedHeight(value->sizeHint().height());
|
|
value->setMinimumWidth(250);
|
|
connect(value, TQT_SIGNAL(textChanged(const TQString &)),this, TQT_SLOT(textChanged(const TQString &)));
|
|
|
|
TQHBoxLayout* hc = new TQHBoxLayout( );
|
|
vf->addLayout(hc,0);
|
|
|
|
substr = new TQCheckBox(i18n("Sub string"), frame1, "substr");
|
|
substr->setChecked(TRUE);
|
|
hc->addWidget(substr,1,AlignLeft);
|
|
substr->setFixedSize(substr->sizeHint());
|
|
hc->addStretch(1);
|
|
|
|
wrap = new TQCheckBox(i18n("Wrap search"), frame1, "wrap");
|
|
wrap->setChecked(TRUE);
|
|
hc->addWidget(wrap,1,AlignRight);
|
|
wrap->setFixedSize(wrap->sizeHint());
|
|
|
|
enableButton( User1, false );
|
|
|
|
connect(this, TQT_SIGNAL(user1Clicked()), this, TQT_SLOT(ok_slot()));
|
|
connect(this, TQT_SIGNAL(closeClicked()), this, TQT_SLOT(done_slot()));
|
|
|
|
show();
|
|
}
|
|
|
|
Search::~Search()
|
|
{
|
|
}
|
|
|
|
void Search::textChanged(const TQString &text)
|
|
{
|
|
enableButton( User1, !text.isEmpty() );
|
|
}
|
|
|
|
void Search::ok_slot()
|
|
{
|
|
TQListViewItem *pkg;
|
|
|
|
TQString to_find = value->text();
|
|
to_find = to_find.stripWhiteSpace();
|
|
|
|
pkg = kpackage->management->search(to_find,
|
|
substr->isChecked(),FALSE,FALSE);
|
|
if (pkg == 0 && wrap->isChecked()) {
|
|
pkg = kpackage->management->search(to_find,
|
|
substr->isChecked(),TRUE,FALSE);
|
|
}
|
|
if (pkg == 0)
|
|
KpMsg(i18n("Note"),
|
|
i18n("%1 was not found.").arg(to_find),TRUE);
|
|
}
|
|
|
|
void Search::done_slot()
|
|
{
|
|
hide();
|
|
}
|
|
|
|
#include "search.moc"
|