summaryrefslogtreecommitdiff
path: root/composer/include/email-composer.h
diff options
context:
space:
mode:
Diffstat (limited to 'composer/include/email-composer.h')
-rwxr-xr-xcomposer/include/email-composer.h35
1 files changed, 28 insertions, 7 deletions
diff --git a/composer/include/email-composer.h b/composer/include/email-composer.h
index dc4b1fd..2fb9af9 100755
--- a/composer/include/email-composer.h
+++ b/composer/include/email-composer.h
@@ -43,7 +43,6 @@
#define _ENABLE_ENDKEY_ 0
#define MAX_RECENT_ITEM 100
-#define MB_SVC_FILE_PATH_LEN_MAX 255
#define TEMP_BUFFER_SIZE 1024
#define MAX_WEBVIEW_HEIGHT 88
@@ -62,7 +61,7 @@ struct ug_data {
Evas *evas;
Evas_Object *bg;
- /*Elm_Theme *th;*/
+ Elm_Theme *th;
/* New notify - TODO: unify the popup usage */
Evas_Object *composer_noti;
@@ -93,6 +92,7 @@ struct ug_data {
bool bSendBtnDisabled;
bool cc_added;
bool bcc_added;
+ bool me_added;
int indicator_height;
bool is_main_scroller_scrolling;
@@ -108,11 +108,22 @@ struct ug_data {
int option_header_opened;
-#ifndef _CC_BCC
- Elm_Object_Item *controlbar_item[2];
-#else
- Elm_Object_Item *controlbar_item[1];
-#endif
+ Evas_Object *dummy_btn;
+ Evas_Object *add_me_btn;
+ Evas_Object *save_as_draft_btn;
+
+ int priority_option;
+ Evas_Object *priority_btn;
+ Evas_Object *priority_rdg;
+ Evas_Object *priority_rd[3];
+
+ Evas_Object *tracking_btn;
+ Eina_Bool tracking_option[2];
+
+ Evas_Object *cbar;
+ Evas_Object *cbar2;
+ Elm_Object_Item *controlbar_item[6];
+
Evas_Object *cc_btn;
Evas_Object *bcc_btn;
@@ -257,6 +268,16 @@ typedef enum {
COMPOSER_RECIPIENT_TYPE_MAX,
} COMPOSER_RECIPIENT_TYPE_E;
+enum {
+ EMAIL_COMPOSER_ADD_ME_BTN,
+ EMAIL_COMPOSER_ADD_CC_BCC_BTN,
+ EMAIL_COMPOSER_SAVE_AS_DRAFT_BTN,
+ EMAIL_COMPOSER_PRIORITY_BTN,
+ EMAIL_COMPOSER_TRACKING_BTN,
+ EMAIL_COMPOSER_DUMMY_BTN,
+ EMAIL_COMPOSER_BTN_MAX
+};
+
/****************************************************/
/* Function Declaration */
/****************************************************/