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.
123 lines
3.1 KiB
123 lines
3.1 KiB
/*
|
|
knsearchdialog.cpp
|
|
|
|
KNode, the KDE newsreader
|
|
Copyright (c) 1999-2001 the KNode authors.
|
|
See file AUTHORS for details
|
|
|
|
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.
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software Foundation,
|
|
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, US
|
|
*/
|
|
|
|
#include <tqlayout.h>
|
|
#include <tqcheckbox.h>
|
|
|
|
#include <tdelocale.h>
|
|
#include <tdeapplication.h>
|
|
#include <kiconloader.h>
|
|
#include <kpushbutton.h>
|
|
#include <kstdguiitem.h>
|
|
|
|
#include "knfilterconfigwidget.h"
|
|
#include "knarticlefilter.h"
|
|
#include "utilities.h"
|
|
#include "knsearchdialog.h"
|
|
|
|
|
|
KNSearchDialog::KNSearchDialog(searchType /*t*/, TQWidget *parent)
|
|
: TQDialog(parent)
|
|
{
|
|
setCaption(kapp->makeStdCaption( i18n("Search for Articles") ));
|
|
setIcon(SmallIcon("knode"));
|
|
TQGroupBox *bg=new TQGroupBox(this);
|
|
|
|
startBtn=new TQPushButton(SmallIcon("mail_find"),i18n("Sea&rch"), bg);
|
|
startBtn->setDefault(true);
|
|
newBtn=new TQPushButton(SmallIcon("edit-clear"),i18n("C&lear"), bg);
|
|
closeBtn=new KPushButton(KStdGuiItem::close(), bg);
|
|
|
|
completeThreads=new TQCheckBox(i18n("Sho&w complete threads"),this);
|
|
fcw=new KNFilterConfigWidget(this);
|
|
fcw->reset();
|
|
|
|
TQHBoxLayout *topL=new TQHBoxLayout(this, 5);
|
|
TQVBoxLayout *filterL=new TQVBoxLayout(this, 0, 5);
|
|
TQVBoxLayout *btnL=new TQVBoxLayout(bg, 8, 5);
|
|
|
|
filterL->addWidget(completeThreads);
|
|
filterL->addWidget(fcw,1);
|
|
|
|
btnL->addWidget(startBtn);
|
|
btnL->addWidget(newBtn);
|
|
btnL->addStretch(1);
|
|
btnL->addWidget(closeBtn);
|
|
|
|
topL->addLayout(filterL, 1);
|
|
topL->addWidget(bg);
|
|
|
|
connect(startBtn, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotStartClicked()));
|
|
connect(newBtn, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotNewClicked()));
|
|
connect(closeBtn, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotCloseClicked()));
|
|
|
|
f_ilter=new KNArticleFilter();
|
|
f_ilter->setLoaded(true);
|
|
f_ilter->setSearchFilter(true);
|
|
|
|
setFixedHeight(sizeHint().height());
|
|
KNHelper::restoreWindowSize("searchDlg", this, sizeHint());
|
|
fcw->setStartFocus();
|
|
}
|
|
|
|
|
|
|
|
KNSearchDialog::~KNSearchDialog()
|
|
{
|
|
delete f_ilter;
|
|
KNHelper::saveWindowSize("searchDlg", size());
|
|
}
|
|
|
|
|
|
void KNSearchDialog::slotStartClicked()
|
|
{
|
|
f_ilter->status=fcw->status->filter();
|
|
f_ilter->score=fcw->score->filter();
|
|
f_ilter->age=fcw->age->filter();
|
|
f_ilter->lines=fcw->lines->filter();
|
|
f_ilter->subject=fcw->subject->filter();
|
|
f_ilter->from=fcw->from->filter();
|
|
f_ilter->messageId=fcw->messageId->filter();
|
|
f_ilter->references=fcw->references->filter();
|
|
f_ilter->setApplyOn(completeThreads->isChecked()? 1:0);
|
|
emit doSearch(f_ilter);
|
|
}
|
|
|
|
|
|
|
|
void KNSearchDialog::slotNewClicked()
|
|
{
|
|
fcw->reset();
|
|
}
|
|
|
|
|
|
|
|
void KNSearchDialog::slotCloseClicked()
|
|
{
|
|
emit dialogDone();
|
|
}
|
|
|
|
|
|
void KNSearchDialog::closeEvent( TQCloseEvent * )
|
|
{
|
|
emit dialogDone();
|
|
}
|
|
|
|
//--------------------------------
|
|
|
|
#include "knsearchdialog.moc"
|
|
|