summaryrefslogtreecommitdiff
path: root/mobile/elm-sharp-theme-fhub.edc
blob: e639af7265252ee1f2a16dac2d44bd53033d944c (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
 * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
 *
 * BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *   1. Redistributions of source code must retain the above copyright notice, this
 *      list of conditions and the following disclaimer.
 *   2. Redistributions in binary form must reproduce the above copyright notice,
 *      this list of conditions and the following disclaimer in the documentation
 *      and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

// LICENSE NOTE:
// This file (and only this one) is licenses under public-domain. The reason
// is that this is meant to serve as a template for making your own themes and
// Elementary's LGPL license is not intended to follow. The images used do come
// under LGPL, but this file specifically for the structure of your theme is
// public-domain. This means you can take, use, re-license and otherwise
// have zero restrictions on using this file as a base for your theme.

//****************************************************************************************//
// This is theme body including all widget bodys
// Define shared descriptions (e.g. sound samples, color classes, textblock styles) in here
// Do not define size(width, height) in here!!!!
//****************************************************************************************//

// Include INC (e.g. HD-inc.edc, HVGA-inc.edc for each resolution) file
#include "HD-inc.edc"

#undef BASE_SCALE_INC
#define BASE_SCALE_INC 1.0

externals {
   external: "elm";
   external: "feedback";
}

// BUILD_FIX: Add version to edc as 110.
data.item: "version" "119";
//

collections {
   base_scale: BASE_SCALE_INC;
   plugins {
      plugin {
         name: "touch_sound";
         source: "feedback";
         param: "FEEDBACK_TYPE_SOUND FEEDBACK_PATTERN_TAP"; // FEEDBACK_TYPE_SOUND, FEEDBACK_PATTERN_TOUCH_TAP

         /* 2014.06.11 updated from libsvi(feedback)
          Above plugin will run below external function:
          int feedback_play_type(feedback_type_e type, feedback_pattern_e pattern);

          param1: feedback_type_e
          FEEDBACK_TYPE_NONE = 0,
          FEEDBACK_TYPE_SOUND = 1,
          FEEDBACK_TYPE_VIBRATION,
          FEEDBACK_TYPE_LED,
          FEEDBACK_TYPE_END

          * param2 enumeration:
          FEEDBACK_PATTERN_TAP = 0,
          FEEDBACK_PATTERN_SIP,
          FEEDBACK_PATTERN_SIP_BACKSPACE,
          FEEDBACK_PATTERN_SIP_FUNCTION,
          FEEDBACK_PATTERN_SIP_FJKEY,
          ...

          * For more information please refer libsvi.
          */
      }
   }

#include "color_classes.edc"

#include "widgets/bg.edc"
#include "widgets/button.edc"
#include "widgets/calendar.edc"
#include "widgets/conform.edc"
#include "widgets/ctxpopup.edc"
#include "widgets/flipselector.edc"
#include "widgets/focus_highlight.edc"
#include "widgets/genlist.edc"
#include "widgets/label.edc"
#include "widgets/layout.edc"
#include "widgets/naviframe.edc"
#include "widgets/scroller.edc"
#include "widgets/panel.edc"
#include "widgets/toolbar.edc"
#include "widgets/gengrid.edc"
#include "widgets/entry.edc"
#include "widgets/slider.edc"
#include "widgets/spinner.edc"
#include "widgets/datetime.edc"
#include "widgets/colorselector.edc"
#include "widgets/progressbar.edc"
#include "widgets/check.edc"
#include "widgets/radio.edc"
#include "widgets/index.edc"
//#include "widgets/popup.edc"
#include "widgets_csharp/popup.edc"
#include "widgets/multibuttonentry.edc"
#include "widgets/win.edc"
#include "widgets/hover.edc"
#include "widgets/list.edc"
#include "widgets/floatingbutton.edc"
#include "widgets/border.edc"

#include "widgets_csharp/layout.edc"

   color_classes {
      color_class {
         name: "transparent";
         color: 0 0 0 0;
      }
   }
}