1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/*
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 <klocale.h>
#include <kapplication.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 *tqparent)
: TQDialog(tqparent)
{
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("editclear"),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(tqsizeHint().height());
KNHelper::restoreWindowSize("searchDlg", this, tqsizeHint());
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"
|