• Skip to content
  • Skip to link menu
KDE API Reference
  • KDE API Reference
  • kdepim API Reference
  • KDE Home
  • Contact Us
 

mailcommon

  • sources
  • kde-4.12
  • kdepim
  • mailcommon
  • job
expirejob.h
Go to the documentation of this file.
1 /* -*- mode: C++ -*-
2  * Copyright (c) 2004 David Faure <faure@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; version 2 of the License
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16  *
17  * In addition, as a special exception, the copyright holders give
18  * permission to link the code of this program with any edition of
19  * the Qt library by Trolltech AS, Norway (or with modified versions
20  * of Qt that use the same license as Qt), and distribute linked
21  * combinations including the two. You must obey the GNU General
22  * Public License in all respects for all of the code used other than
23  * Qt. If you modify this file, you may extend this exception to
24  * your version of the file, but you are not obligated to do so. If
25  * you do not wish to do so, delete this exception statement from
26  * your version.
27  */
28 #ifndef MAILCOMMON_EXPIREJOB_H
29 #define MAILCOMMON_EXPIREJOB_H
30 
31 #include "jobscheduler.h"
32 
33 #include <Akonadi/Collection>
34 #include <Akonadi/Item>
35 
36 #include <QList>
37 
38 class KJob;
39 
40 namespace MailCommon {
41 
42 
43 class ExpireJob : public ScheduledJob
44 {
45  Q_OBJECT
46  public:
47  explicit ExpireJob( const Akonadi::Collection &folder, bool immediate );
48  virtual ~ExpireJob();
49 
50  virtual void execute();
51  virtual void kill();
52 
53  private slots:
54  void slotDoWork();
55  void slotExpireDone( KJob *job );
56  void slotMoveDone( KJob *job );
57  void itemFetchResult( KJob *job );
58 
59  private:
60  void done();
61 
62  private:
63  QList<Akonadi::Item> mRemovedMsgs;
64  int mMaxUnreadTime;
65  int mMaxReadTime;
66  Akonadi::Collection mMoveToFolder;
67 };
68 
70 class ScheduledExpireTask : public ScheduledTask
71 {
72  public:
75  ScheduledExpireTask( const Akonadi::Collection &folder, bool immediate )
76  : ScheduledTask( folder, immediate )
77  {
78  }
79 
80  virtual ~ScheduledExpireTask()
81  {
82  }
83 
84  virtual ScheduledJob *run()
85  {
86  return folder().isValid() ? new ExpireJob( folder(), isImmediate() ) : 0;
87  }
88 
89  virtual int taskTypeId() const
90  {
91  return 1;
92  }
93 };
94 
95 } // namespace
96 
97 #endif
98 
MailCommon::ScheduledTask
A scheduled task is some information about a folder job that should be run later. ...
Definition: jobscheduler.h:54
MailCommon::ExpireJob::execute
virtual void execute()
Has to be reimplemented.
Definition: expirejob.cpp:78
MailCommon::ScheduledExpireTask::ScheduledExpireTask
ScheduledExpireTask(const Akonadi::Collection &folder, bool immediate)
If immediate is set, the job will execute synchronously.
Definition: expirejob.h:75
MailCommon::ScheduledExpireTask::~ScheduledExpireTask
virtual ~ScheduledExpireTask()
Definition: expirejob.h:80
MailCommon::ScheduledExpireTask
A scheduled "expire mails in this folder" task.
Definition: expirejob.h:70
MailCommon::ScheduledTask::folder
Akonadi::Collection folder() const
The folder which this task is about, 0 if it was deleted meanwhile.
Definition: jobscheduler.h:78
MailCommon::ExpireJob::ExpireJob
ExpireJob(const Akonadi::Collection &folder, bool immediate)
Definition: expirejob.cpp:63
MailCommon::ExpireJob
Definition: expirejob.h:43
MailCommon::ExpireJob::~ExpireJob
virtual ~ExpireJob()
Definition: expirejob.cpp:68
jobscheduler.h
MailCommon::ScheduledExpireTask::run
virtual ScheduledJob * run()
Run this task, i.e.
Definition: expirejob.h:84
MailCommon::ScheduledTask::isImmediate
bool isImmediate() const
Definition: jobscheduler.h:80
MailCommon::ScheduledJob
Base class for scheduled jobs.
Definition: jobscheduler.h:137
MailCommon::ScheduledExpireTask::taskTypeId
virtual int taskTypeId() const
An identifier for the type of task (a bit like QListViewItem::rtti) This allows to automatically prev...
Definition: expirejob.h:89
MailCommon::ExpireJob::kill
virtual void kill()
Interrupt the job.
Definition: expirejob.cpp:73
QList
This file is part of the KDE documentation.
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 22:55:14 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.

mailcommon

Skip menu "mailcommon"
  • Main Page
  • Namespace List
  • Namespace Members
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • File Members
  • Related Pages

kdepim API Reference

Skip menu "kdepim API Reference"
  • akonadi_next
  • akregator
  • blogilo
  • calendarsupport
  • console
  •   kabcclient
  •   konsolekalendar
  • kaddressbook
  • kalarm
  •   lib
  • kdgantt2
  • kjots
  • kleopatra
  • kmail
  • knode
  • knotes
  • kontact
  • korgac
  • korganizer
  • ktimetracker
  • libkdepim
  • libkleo
  • libkpgp
  • mailcommon
  • messagelist
  • messageviewer

Search



Report problems with this website to our bug tracking system.
Contact the specific authors with questions and comments about the page contents.

KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal