02fcf9f89779aceabbaa508a4427d074cd0df17d
[framework/web/wrt-plugins-common.git] / src / modules / API / Messaging / VirtualMessage.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  *
18  *
19  * @file       VirtualMessage.h
20  * @author     Pawel Misiak (p.misiak@samsung.com)
21  * @version    0.1
22  * @brief
23  */
24 #ifndef IVIRTUALMESSAGE_H
25 #define IVIRTUALMESSAGE_H
26
27 #include <string>
28 #include <ctime>
29 #include <dpl/shared_ptr.h>
30 #include "IMessage.h"
31 #include "Subject.h"
32 #include "CcRecipient.h"
33 #include "BccRecipient.h"
34 #include "Attachments.h"
35 #include "CallbackNumber.h"
36 #include "ValidityPeriodHours.h"
37
38 namespace WrtDeviceApis {
39 namespace Messaging {
40 namespace Api {
41 //--------------------------------------------------------------------------
42
43 class VirtualMessage;
44 typedef DPL::SharedPtr<VirtualMessage> VirtualMessagePtr;
45
46 class VirtualMessage :
47     public IMessage,
48     public CcRecipient,
49     public BccRecipient,
50     public Attachments
51 {
52   public:
53     VirtualMessage();
54
55     virtual ~VirtualMessage();
56
57     void send();
58
59     void sendCancel();
60
61     void update(bool draftsOnly = false);
62
63     void readAllData();
64
65     void moveToFolder(const FolderType newFolder);
66
67     void moveToFolder(const std::string& newFolder);
68
69     void copyToFolder(const FolderType newFolder);
70
71     void copyToFolder(const std::string& newFolder);
72
73     void remove();
74 };
75 }
76 }
77 }
78 #endif