summaryrefslogtreecommitdiffstats
path: root/kshowmail/filteritem.h
blob: 28aac13cab1302bd8a82aca70634a88e16310dd9 (plain)
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
//
// C++ Interface: filteritem
//
// Description:
//
//
// Author: Ulrich Weigelt <ulrich.weigelt@gmx.de>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef FILTERITEM_H
#define FILTERITEM_H

//TQt headers
#include <ntqstring.h>
#include <ntqptrlist.h>

//KDE headers
#include <tdeapplication.h>
#include <kdebug.h>
#include <tdeconfig.h>

//KShowmail headers
#include "filteritemcriteria.h"
#include "constants.h"
#include "types.h"

using namespace Types;

/**
 * This is a filter item. It contains a list of criterias (class FilterItemCriteria).
 * @author Ulrich Weigelt <ulrich.weigelt@gmx.de>
 */
class FilterItem{

  public:

    /**
     * Constructor
     * Loads the settings from the config file
     * @param filterNr Number of the filter
     */
    FilterItem( uint filterNr );

    /**
     * Destructor
     */
    ~FilterItem();

    /**
     * Prints the settings.
     */
    void print() const;

    /**
     * Checks the given mail header.
     * @param from Sender
     * @param to Addressee
     * @param size Size
     * @param subject Subject
     * @param header Header
     * @param account Account
     * @param mailboxName contains the mailbox name after call, if filter action is MOVE
     * @return recommend action
     */
    FilterAction_Type check( TQString from, TQString to, uint size, TQString subject, TQString header, TQString account, TQString& mailboxName ) const;

  private:

    /**
     * Connector to the configuration file
     */
    TDEConfig* config;

    /**
     * Filter number. Just for messages.
     */
    uint filterNumber;

    /**
     * Filter name. Just for messages.
     */
    TQString name;

    /**
     * Number of criterias
     */
    uint numberCriterias;

    /**
     * Type of criteria linkage
     */
    enum Linkage_Type{ LinkAll, LinkAny };

    /**
     * Criteria Linkage
     */
    Linkage_Type linkage;

    /**
     * Filter Action
     */
    FilterAction_Type action;

    /**
     * Mailbox Name for move action
     */
    TQString mailbox;

    /**
     * This list holds the criterias.
     */
    TQPtrList<FilterItemCriteria> criterias;
};

#endif