Merge "[Searchbar] On Cancel Button click, searchbar should be unfocus."
[framework/uifw/elementary.git] / data / objects / cursors.edc
1 /////////////////////////////////////////////////////////////////////////////
2 // CURSOR
3 /////////////////////////////////////////////////////////////////////////////
4 collections {
5    group { name: "elm/cursor/hand2/default";
6        min: 30 30;
7        max: 30 30;
8        data {
9            item: "hot_x" "0";
10            item: "hot_y" "0";
11        }
12       parts {
13          part { name: "base";
14             type: RECT;
15             mouse_events: 0;
16             description { state: "default" 0.0;
17                color: 0 255 0 255;
18             }
19          }
20       }
21    }
22
23    group { name: "elm/cursor/hand3/default";
24        min: 30 30;
25        max: 30 30;
26        data {
27            item: "hot_x" "0";
28            item: "hot_y" "0";
29        }
30       parts {
31          part { name: "base";
32             type: RECT;
33             mouse_events: 0;
34             description { state: "default" 0.0;
35                color: 255 0 0 255;
36             }
37             description { state: "blue" 0.0;
38                color: 0 0 255 255;
39             }
40          }
41       }
42       programs {
43          program { name: "load";
44             signal: "load";
45             source: "";
46             after: "go_blue";
47          }
48          program { name: "go_blue";
49             action: STATE_SET "blue" 0.0;
50             transition: LINEAR 1;
51             target: "base";
52             after: "go_red";
53          }
54          program { name: "go_red";
55             action: STATE_SET "default" 0.0;
56             transition: LINEAR 1;
57             target: "base";
58             after: "go_blue";
59          }
60       }
61    }
62
63    group { name: "elm/cursor/hand3/transparent";
64        min: 30 30;
65        max: 30 30;
66        data {
67            item: "hot_x" "0";
68            item: "hot_y" "0";
69        }
70       parts {
71          part { name: "base";
72             type: RECT;
73             mouse_events: 0;
74             description { state: "default" 0.0;
75                color: 255 0 0 120;
76             }
77          }
78       }
79    }
80 }