f89aa30936da0979a017de11e9b3b67a22322543
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Messaging / IEmail.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  *
20  * @file       IEmail.h
21  * @author     Pawel Misiak (p.misiak@samsung.com)
22  * @version    0.1
23  * @brief
24  */
25 #ifndef IEMAIL_H
26 #define IEMAIL_H
27
28 #include <string>
29 #include <dpl/shared_ptr.h>
30 #include "VirtualMessage.h"
31 #include "IMessage.h"
32 #include "Subject.h"
33 #include "ToRecipient.h"
34 #include "CcRecipient.h"
35 #include "BccRecipient.h"
36 #include "Attachments.h"
37
38 namespace TizenApis {
39 namespace Api {
40 namespace Messaging {
41
42 class IEmail : virtual public IMessage,
43     public CcRecipient,
44     public BccRecipient,
45     public Attachments
46 {
47   public:
48     explicit IEmail(const std::string& id = "");
49
50     virtual ~IEmail();
51
52     IEmail & operator <<(const VirtualMessage& msg);
53
54     void setHtmlBody(const std::string& htmlBody = "") 
55     {
56                 m_htmlBody = htmlBody;
57     }
58
59     std::string getHtmlBody() const 
60     {
61                 return m_htmlBody;
62     }
63         
64     virtual int getAccountID() = 0;
65     virtual int getUID() = 0;
66     virtual int isBodyDownloaded() = 0;
67     
68     virtual int downloadBody() = 0;
69     virtual void downloadBodyCancel(int handle ) = 0;
70
71     virtual int downloadAttachment(const Api::Messaging::IAttachmentPtr& attachment) = 0;
72
73 #if 0   
74     virtual void sync(int account_id);  
75     virtual void sync_folder(int account_id, int folder_id);
76 #endif    
77   private:
78     std::string m_htmlBody;             //html body for Email.
79 };
80
81 typedef DPL::SharedPtr<IEmail> IEmailPtr;
82 }
83 }
84 }
85 #endif // IEMAIL_H
86