base: add selected state for menu button
[profile/tv/apps/native/air_mediahub.git] / include / define.h
1 /*
2  * Copyright (c) 2015 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 #ifndef __AIR_MEDIAHUB_DEFINE_H__
18 #define __AIR_MEDIAHUB_DEFINE_H__
19
20 /* views */
21 #include "view/base.h"
22 #include "view/viewer.h"
23 #include "view/mplayer.h"
24
25 /* layouts */
26 #include "layout/movie.h"
27 #include "layout/gallery.h"
28 #include "layout/music.h"
29
30 /* defines */
31 #define STYLE_INVISIBLE "invisible"
32
33 #define FONT_REGULAR "TizenSans"
34 #define FONT_LIGHT "TizenSans:style=Light"
35 #define FONT_BOLD "TizenSans:style=Bold"
36
37 #define COLOR_BASE_BG 247 247 247 255
38 #define COLOR_TEXT_TITLE 51 51 51 255
39 #define COLOR_TEXT_MENU 104 104 104 255
40 #define COLOR_TEXT_INDEX 77 77 77 255
41 #define COLOR_TEXT_NORMAL 87 87 87 255
42 #define COLOR_TEXT_FOCUS 255 255 255 255
43 #define COLOR_TEXT_SELECTED 64 136 211 255
44 #define COLOR_TEXT_DISABLED 87 87 87 128
45 #define COLOR_ITEM_BG 56 55 59 255
46 #define COLOR_ITEM_FOCUS 0 119 246 255
47 #define COLOR_ITEM_FOCUS_0 0 119 246 0
48 #define COLOR_ITEM_SELECTED 64 136 211 255
49 #define COLOR_ITEM_BAR 190 190 190 255
50
51 /* part */
52 #define PART_ELM_TEXT_TITLE "elm.text.title"
53 #define PART_ELM_TEXT_PLAYTIME "elm.text.playtime"
54 #define PART_ELM_SWALLOW_THUMBNAIL "elm.swallow.thumbnail"
55 #define PART_ELM_SWALLOW_VIDEO "elm.swallow.video"
56
57 /* signal */
58 #define SIG_BTN_CLICKED "btn,clicked"
59 #define SIG_BTN_SELECTED "btn,selected"
60 #define SIG_BTN_UNSELECTED "btn,unselected"
61 #define SIG_ITEM_SELECTED "item,selected"
62 #define SIG_SOURCE_EDC "edc"
63 #define SIG_SOURCE_SRC "src"
64
65 #endif /* __AIR_MEDIAHUB_DEFINE_H__ */