korganizer

mailscheduler.h
1/*
2 This file is part of KOrganizer.
3
4 Copyright (c) 2001,2004 Cornelius Schumacher <schumacher@kde.org>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
20 As a special exception, permission is given to link this program
21 with any edition of TQt, and distribute the resulting executable,
22 without including the source code for TQt in the source distribution.
23*/
24#ifndef MAILSCHEDULER_H
25#define MAILSCHEDULER_H
26
27#include <tqptrlist.h>
28#include <tqmap.h>
29#include <tqstring.h>
30
31#include <libkcal/imipscheduler.h>
32
33namespace KCal {
34
35/*
36 This class implements the iTIP interface using the email interface specified
37 as Mail.
38*/
39class MailScheduler : public IMIPScheduler
40{
41 public:
42 MailScheduler( Calendar * );
43 virtual ~MailScheduler();
44
45 bool publish ( IncidenceBase *incidence, const TQString &recipients );
46 bool performTransaction( IncidenceBase *incidence, Method method );
47 bool performTransaction( IncidenceBase *incidence, Method method,
48 const TQString &recipients );
49 TQPtrList<ScheduleMessage> retrieveTransactions();
50
51 bool deleteTransaction( IncidenceBase *incidence );
52
54 virtual TQString freeBusyDir();
55
57 bool acceptCounterProposal( Incidence *incidence );
58
59 private:
60 TQMap<IncidenceBase *, TQString> mEventMap;
61};
62
63}
64
65#endif