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.
81 lines
2.5 KiB
81 lines
2.5 KiB
/*
|
|
knarticlefilter.h
|
|
|
|
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
|
|
*/
|
|
|
|
#ifndef KNARTICLEFILTER_H
|
|
#define KNARTICLEFILTER_H
|
|
|
|
#include "knstatusfilter.h"
|
|
#include "knrangefilter.h"
|
|
#include "knstringfilter.h"
|
|
|
|
class KNRemoteArticle;
|
|
class KNLocalArticle;
|
|
class KNGroup;
|
|
class KNFolder;
|
|
|
|
|
|
class KNArticleFilter {
|
|
|
|
friend class KNFilterManager;
|
|
friend class KNFilterDialog;
|
|
friend class KNSearchDialog;
|
|
|
|
public:
|
|
KNArticleFilter(int id=-1);
|
|
KNArticleFilter(const KNArticleFilter& org); // constructs a copy of org
|
|
~KNArticleFilter();
|
|
|
|
bool loadInfo();
|
|
void load();
|
|
void save();
|
|
|
|
void doFilter(KNGroup *g);
|
|
void doFilter(KNFolder *f);
|
|
int count()const { return c_ount; }
|
|
int id()const { return i_d; }
|
|
int applyOn() { return static_cast<int>(apon); }
|
|
const TQString& name() { return n_ame; }
|
|
TQString translatedName(); // *tries* to translate the name
|
|
bool isEnabled()const { return e_nabled; }
|
|
bool loaded()const { return l_oaded; }
|
|
bool isSearchFilter()const { return s_earchFilter; }
|
|
|
|
void setId(int i) { i_d=i; }
|
|
void setApplyOn(int i) { apon=(ApOn)i; }
|
|
void setLoaded(bool l) { l_oaded=l; }
|
|
void setName(const TQString &s) { n_ame=s; }
|
|
void setTranslatedName(const TQString &s); // *tries* to retranslate the name to english
|
|
void setEnabled(bool l) { e_nabled=l; }
|
|
void setSearchFilter(bool b) { s_earchFilter = b; }
|
|
|
|
protected:
|
|
|
|
enum ApOn { articles=0 , threads=1 };
|
|
bool applyFilter(KNRemoteArticle *a);
|
|
bool applyFilter(KNLocalArticle *a);
|
|
|
|
TQString n_ame;
|
|
int i_d, c_ount;
|
|
bool l_oaded, e_nabled, translateName, s_earchFilter;
|
|
ApOn apon;
|
|
|
|
KNStatusFilter status;
|
|
KNRangeFilter score, age, lines;
|
|
KNStringFilter subject, from, messageId, references;
|
|
};
|
|
|
|
#endif
|