apply FSL(Flora Software License)
[apps/core/preloaded/message-app.git] / main / message.h
1 /*
2  * Copyright 2012  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.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.tizenopensource.org/license
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 #ifndef __DEF_message_H_
18 #define __DEF_message_H_
19
20 #include <stdio.h>
21 #include <glib.h>
22
23 #include <MsgStorageTypes.h>
24 #include <MapiStorage.h>
25 #include <MapiMessage.h>
26 #include <MapiControl.h>
27 #include <MapiTransport.h>
28
29 #include <libintl.h>
30 #include <bundle.h>
31 #include <appcore-efl.h>
32 #include <Ecore.h>
33 #include <Elementary.h>
34 #include <ui-gadget-module.h>
35 #include <utilX.h>
36 #include "msg-ui-util.h"
37 #include <appsvc.h>
38
39 #define POPUP_DELAY (1)
40 #define DEF_NUM_LEN     (64)
41
42 struct appdata
43 {
44     Evas_Object *win_main;
45     Evas_Object *layout_main;
46
47     struct ug_cbs cbs;
48         struct ui_gadget *composer_ug;
49
50         MSG_HANDLE_T msgHandle;
51
52         void *thread_data;
53 };
54
55 int msg_ui_load_composer_ug(bundle *b);
56
57
58 #endif /* __DEF_message_H__ */
59
60