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.
126 lines
3.6 KiB
126 lines
3.6 KiB
/*
|
|
knfilterdialog.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 <tqlabel.h>
|
|
#include <tqcheckbox.h>
|
|
#include <tqlayout.h>
|
|
|
|
#include <tdelocale.h>
|
|
#include <tdemessagebox.h>
|
|
#include <klineedit.h>
|
|
|
|
#include "knglobals.h"
|
|
#include "knfiltermanager.h"
|
|
#include "knfilterconfigwidget.h"
|
|
#include "knarticlefilter.h"
|
|
#include "utilities.h"
|
|
#include "knfilterdialog.h"
|
|
|
|
|
|
KNFilterDialog::KNFilterDialog(KNArticleFilter *f, TQWidget *parent, const char *name)
|
|
: KDialogBase(Plain, (f->id()==-1)? i18n("New Filter"):i18n("Properties of %1").arg(f->name()),
|
|
Ok|Cancel|Help, Ok, parent, name),
|
|
fltr(f)
|
|
{
|
|
TQFrame* page=plainPage();
|
|
|
|
TQGroupBox *gb=new TQGroupBox(page);
|
|
fname=new KLineEdit(gb);
|
|
TQLabel *l1=new TQLabel(fname, i18n("Na&me:"), gb);
|
|
apon=new TQComboBox(gb);
|
|
apon->insertItem(i18n("Single Articles"));
|
|
apon->insertItem(i18n("Whole Threads"));
|
|
TQLabel *l2=new TQLabel(apon, i18n("Apply o&n:"), gb);
|
|
enabled=new TQCheckBox(i18n("Sho&w in menu"), gb);
|
|
|
|
fw=new KNFilterConfigWidget(page);
|
|
|
|
TQGridLayout *gbL=new TQGridLayout(gb, 2,4,8,5);
|
|
gbL->addWidget(l1, 0,0);
|
|
gbL->addMultiCellWidget(fname, 0,0,1,3);
|
|
gbL->addWidget(enabled, 1,0);
|
|
gbL->addWidget(l2, 1,2);
|
|
gbL->addWidget(apon, 1,3);
|
|
gbL->setColStretch(1,1);
|
|
|
|
TQVBoxLayout *topL=new TQVBoxLayout(page,0,5);
|
|
|
|
topL->addWidget(gb);
|
|
topL->addWidget(fw,1);
|
|
|
|
enabled->setChecked(f->isEnabled());
|
|
apon->setCurrentItem((int) f->applyOn());
|
|
fname->setText(f->translatedName());
|
|
|
|
fw->status->setFilter(f->status);
|
|
fw->lines->setFilter(f->lines);
|
|
fw->age->setFilter(f->age);
|
|
fw->score->setFilter(f->score);
|
|
fw->subject->setFilter(f->subject);
|
|
fw->from->setFilter(f->from);
|
|
fw->messageId->setFilter(f->messageId);
|
|
fw->references->setFilter(f->references);
|
|
|
|
setFixedHeight(sizeHint().height());
|
|
KNHelper::restoreWindowSize("filterDLG", this, sizeHint());
|
|
|
|
setHelp("anc-using-filters");
|
|
connect( fname, TQ_SIGNAL( textChanged ( const TQString & )), this, TQ_SLOT( slotTextChanged( const TQString & )));
|
|
slotTextChanged( fname->text() );
|
|
}
|
|
|
|
|
|
|
|
KNFilterDialog::~KNFilterDialog()
|
|
{
|
|
KNHelper::saveWindowSize("filterDLG", size());
|
|
}
|
|
|
|
void KNFilterDialog::slotTextChanged( const TQString &_text )
|
|
{
|
|
enableButtonOK( !_text.isEmpty() );
|
|
}
|
|
|
|
void KNFilterDialog::slotOk()
|
|
{
|
|
if (fname->text().isEmpty())
|
|
KMessageBox::sorry(this, i18n("Please provide a name for this filter."));
|
|
else
|
|
if (!knGlobals.filterManager()->newNameIsOK(fltr,fname->text()))
|
|
KMessageBox::sorry(this, i18n("A filter with this name exists already.\nPlease choose a different name."));
|
|
else {
|
|
fltr->setTranslatedName(fname->text());
|
|
fltr->setEnabled(enabled->isChecked());
|
|
fltr->status=fw->status->filter();
|
|
fltr->score=fw->score->filter();
|
|
fltr->age=fw->age->filter();
|
|
fltr->lines=fw->lines->filter();
|
|
fltr->subject=fw->subject->filter();
|
|
fltr->from=fw->from->filter();
|
|
fltr->messageId=fw->messageId->filter();
|
|
fltr->references=fw->references->filter();
|
|
fltr->setApplyOn(apon->currentItem());
|
|
|
|
accept();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------
|
|
|
|
#include "knfilterdialog.moc"
|