blob: 691571e4f6ad33e14f9f60f2b3f8bc0daab90482 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/*
* Copyright (c) 2015 Samsung Electronics Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef __AIR_INFOSQUARE_DEFINE_H__
#define __AIR_INFOSQUARE_DEFINE_H__
#include "strings.h"
/* Definitions for common */
#define SOURCE_PROGRAM "program"
#define SOURCE_ELM "elm"
#define PART_CONTENT "elm.swallow.content"
#define PART_ICON "elm.swallow.icon"
#define PART_TITLE "elm.text"
#define SIGNAL_FOCUSED "elm,action,focus"
#define SIGNAL_UNFOCUSED "elm,action,unfocus"
#define SIGNAL_DISABLED "elm,state,disabled"
#define SIGNAL_NO_NOTIFICATION "signal.no_notification"
#define SIGNAL_NOTIFICATION "signal.notification"
#define FONT_REGULAR "TizenSans"
#define FONT_LIGHT "TizenSans:style=Light"
#define FONT_BOLD "TizenSans:style=Bold"
/* Definitions for notification view */
#define NOTIFICATION_VIEW "NOTIFICATION_VIEW"
#define GRP_NOTIFICATION_VIEW "grp.notification.view"
/* Definitions for infosquare view */
#define SQUARE_VIEW "SQUARE_VIEW"
#define GRP_SQUARE_VIEW "grp.square.view"
#define PART_NOTIFICATION "part.notification"
#define PART_NOTIFICATION_TITLE "part.notification.title"
#define PART_NOTIFICATION_TITLE_BG "part.notification.title.bg"
#define PART_NOTIFICATION_CLEAR "part.notification.clear"
#define PART_NOTIFICATION_LIST_TITLE "part.notification.list_title"
#define PART_NOTIFICATION_LIST "part.notification.list"
#define PART_INFO "part.info"
#define PART_INFO_USER_MESSAGE "part.info.user_message"
#define PART_INFO_TIME "part.info.time"
#define PART_INFO_TIME_MINUTE "part.info.time_minute"
#define PART_INFO_TIME_SEPARATOR "part.square.info.time_separator"
#define PART_INFO_TIME_HOUR "part.info.time_hour"
#define PART_INFO_TIME_AM_PM "part.info.time_am_pm"
#define PART_INFO_DATE "part.info.date"
#define GRP_NOTIFICATION_ITEM "grp.notification.item"
#define PART_NOTIFICATION_ITEM_TITLE "part.notification.item.title"
#define GRP_NOTIFICATION_CLEAR "grp.notification.clear"
#define PART_NOTIFICATION_CLEAR_BG "part.notification.clear.bg"
#define PART_NOTIFICATION_CLEAR_ICON "part.notification.clear.icon"
#endif /* __AIR_INFOSQUARE_DEFINE_H__*/
|