~ubuntu-branches/ubuntu/raring/kdepim/raring-proposed

« back to all changes in this revision

Viewing changes to mailcommon/filter/filteractionwithnone.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-06-07 07:56:38 UTC
  • mfrom: (0.2.27)
  • Revision ID: package-import@ubuntu.com-20120607075638-0luhdq11z7sgvs4m
Tags: 4:4.8.80-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 1996-1998 Stefan Taferner <taferner@kde.org>
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef MAILCOMMON_FILTERACTIONWITHNONE_H
 
21
#define MAILCOMMON_FILTERACTIONWITHNONE_H
 
22
 
 
23
#include "filteraction.h"
 
24
 
 
25
namespace MailCommon {
 
26
 
 
27
/**
 
28
 *  @short Abstract base class for filter actions with no parameter.
 
29
 *
 
30
 *  Abstract base class for mail filter actions that need no
 
31
 *  parameter, e.g. "Confirm Delivery". Creates an (empty) QWidget as
 
32
 *  parameter widget. A subclass of this must provide at least
 
33
 *  implementations for the following methods:
 
34
 *
 
35
 *  @li virtual FilterAction::ReturnCodes FilterAction::process
 
36
 *  @li static FilterAction::newAction
 
37
 *
 
38
 *  @author Marc Mutz <mutz@kde.org>, based upon work by Stefan Taferner <taferner@kde.org>
 
39
 *  @see FilterAction Filter
 
40
 */
 
41
class FilterActionWithNone : public FilterAction
 
42
{
 
43
  Q_OBJECT
 
44
 
 
45
  public:
 
46
    /**
 
47
     * @copydoc FilterAction::FilterAction
 
48
     */
 
49
    FilterActionWithNone( const char *name, const QString &label, QObject *parent = 0 );
 
50
 
 
51
    /**
 
52
     * @copydoc FilterAction::argsFromString
 
53
     */
 
54
    virtual void argsFromString( const QString & );
 
55
 
 
56
    /**
 
57
     * @copydoc FilterAction::argsAsString
 
58
     */
 
59
    virtual QString argsAsString() const;
 
60
 
 
61
    /**
 
62
     * @copydoc FilterAction::displayString
 
63
     */
 
64
    virtual QString displayString() const;
 
65
};
 
66
 
 
67
}
 
68
 
 
69
#endif