base: draw title and menu area
[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
24 /* layouts */
25 #include "layout/movie.h"
26 #include "layout/gallery.h"
27 #include "layout/music.h"
28
29 /* defines */
30 #define STYLE_INVISIBLE "invisible"
31
32 #define FONT_REGULAR "TizenSans"
33 #define FONT_LIGHT "TizenSans:style=Light"
34 #define FONT_BOLD "TizenSans:style=Bold"
35
36 #define COLOR_TEXT_TITLE 51 51 51 255
37 #define COLOR_TEXT_MENU 104 104 104 255
38 #define COLOR_TEXT_INDEX 77 77 77 255
39 #define COLOR_TEXT_NORMAL 87 87 87 255
40 #define COLOR_TEXT_FOCUS 255 255 255 255
41 #define COLOR_TEXT_SELECTED 64 136 211 255
42 #define COLOR_TEXT_DISABLED 87 87 87 128
43 #define COLOR_BTN_FOCUS 0 119 246 255
44 #define COLOR_BTN_SELECTED 64 136 211 255
45
46 #endif /* __AIR_MEDIAHUB_DEFINE_H__ */