diff options
Diffstat (limited to '')
-rw-r--r-- | data/elementary/themes/edc/efl/cursor.edc | 78 |
1 files changed, 72 insertions, 6 deletions
diff --git a/data/elementary/themes/edc/efl/cursor.edc b/data/elementary/themes/edc/efl/cursor.edc index 1302e4c..78b8590 100644 --- a/data/elementary/themes/edc/efl/cursor.edc +++ b/data/elementary/themes/edc/efl/cursor.edc | |||
@@ -78,14 +78,80 @@ | |||
78 | // "watch" | 78 | // "watch" |
79 | // "xterm" | 79 | // "xterm" |
80 | 80 | ||
81 | group { "efl/cursor/hand1"; | 81 | group { name: "efl/cursor/hand1"; |
82 | inherit: "elm/cursor/hand1/default"; | 82 | images.image: "pointer_hand1.png" COMP; |
83 | parts { | ||
84 | part { name: "base"; mouse_events: 0; scale: 1; | ||
85 | description { state: "default" 0.0; | ||
86 | FIXED_SIZE(32, 32) | ||
87 | image.normal: "pointer_hand1.png"; | ||
88 | } | ||
89 | } | ||
90 | part { name: "elm.swallow.hotspot"; type: SWALLOW; | ||
91 | description { state: "default" 0.0; | ||
92 | visible: 0; | ||
93 | fixed: 1 1; | ||
94 | rel1.relative: (26/32) (9/32); | ||
95 | rel1.to: "base"; | ||
96 | rel2.to: "base"; | ||
97 | rel2.relative: (26/32) (9/32); | ||
98 | rel2.offset: 0 0; | ||
99 | } | ||
100 | } | ||
101 | /* elm.content.hotspot is the old name for the above part */ | ||
102 | alias: "elm.content.hotspot" "elm.swallow.hotspot"; | ||
103 | } | ||
83 | } | 104 | } |
84 | 105 | ||
85 | group { "efl/cursor/blank"; | 106 | group { name: "efl/cursor/blank"; |
86 | inherit: "elm/cursor/blank/default"; | 107 | parts { |
108 | part { name: "elm.swallow.hotspot"; type: SWALLOW; | ||
109 | description { state: "default" 0.0; | ||
110 | visible: 0; | ||
111 | max: 1 1; | ||
112 | } | ||
113 | } | ||
114 | /* elm.content.hotspot is the old name for the above part */ | ||
115 | alias: "elm.content.hotspot" "elm.swallow.hotspot"; | ||
116 | } | ||
87 | } | 117 | } |
88 | 118 | ||
89 | group { "efl/cursor/xterm"; | 119 | group { name: "efl/cursor/xterm"; |
90 | inherit: "elm/cursor/xterm/default"; | 120 | images.image: "pointer_entry_bar.png" COMP; |
121 | images.image: "led_dot_white.png" COMP; | ||
122 | parts { | ||
123 | part { name: "base"; mouse_events: 0; scale: 1; | ||
124 | description { state: "default" 0.0; | ||
125 | min: 15 20; | ||
126 | max: 15 99999; | ||
127 | image.normal: "pointer_entry_bar.png"; | ||
128 | image.border: 0 0 10 10; | ||
129 | rel1.offset: 0 2; | ||
130 | rel2.offset: -1 -3; | ||
131 | } | ||
132 | } | ||
133 | part { name: "elm.swallow.hotspot"; type: SWALLOW; | ||
134 | description { state: "default" 0.0; | ||
135 | visible: 0; | ||
136 | fixed: 1 1; | ||
137 | rel1.to: "base"; | ||
138 | rel2.to: "base"; | ||
139 | rel1.relative: 0.5 0.5; | ||
140 | rel2.relative: 0.5 0.5; | ||
141 | rel2.offset: 0 0; | ||
142 | } | ||
143 | } | ||
144 | /* elm.content.hotspot is the old name for the above part */ | ||
145 | alias: "elm.content.hotspot" "elm.swallow.hotspot"; | ||
146 | part { name: "shine"; | ||
147 | description { state: "default" 0.0; | ||
148 | rel1.to: "base"; | ||
149 | rel2.to: "base"; | ||
150 | image.normal: "led_dot_white.png"; | ||
151 | max: 27 27; | ||
152 | aspect: 1.0 1.0; | ||
153 | aspect_preference: VERTICAL; | ||
154 | } | ||
155 | } | ||
156 | } | ||
91 | } | 157 | } |