aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/elementary/data/themes/widgets/photo.edc
blob: 399450c8302db9fb527f27d002d2df1a80d3b892 (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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
group { name: "elm/photo/base/default";
   images {
      image: "frame_1.png" COMP;
      image: "frame_2.png" COMP;
      image: "dia_grad.png" COMP;
      image: "head.png" COMP;
   }
   parts {
      part { name: "base0";
         mouse_events:  0;
         description { state: "default" 0.0;
            image.normal: "dia_grad.png";
            rel1.to: "over";
            rel2.to: "over";
            fill {
               smooth: 0;
               size {
                  relative: 0.0 1.0;
                  offset: 64 0;
               }
            }
         }
      }
      part { name: "base";
         mouse_events:  0;
         description { state:    "default" 0.0;
            image {
               normal: "frame_2.png";
               border: 5 5 32 26;
               middle: 0;
            }
            fill.smooth : 0;
         }
      }
      part { name: "head";
         mouse_events:  0;
         description { state:    "default" 0.0;
            rel1.offset: 4 4;
            rel2.offset: -5 -5;
            aspect: 1.0 1.0;
            aspect_preference: BOTH;
            image.normal: "head.png";
         }
      }
      part { name: "clip";
         mouse_events:  0;
         type: RECT;
         description { state:    "default" 0.0;
            rel1.offset: 4 4;
            rel2.offset: -5 -5;
            color: 255 255 255 255;
         }
      }
      part { name: "elm.swallow.content";
         type: SWALLOW;
         clip_to: "clip";
         description { state: "default" 0.0;
            rel1.offset: 4 4;
            rel2.offset: -5 -5;
         }
      }
      part { name: "over";
         mouse_events:  0;
         description { state:    "default" 0.0;
            rel1.offset: 4 4;
            rel2.offset: -5 -5;
            image {
               normal: "frame_1.png";
               border: 2 2 28 22;
               middle: 0;
            }
            fill.smooth: 0;
         }
      }
   }
}

group { name: "elm/photo/base/shadow";
   images {
      image: "shadow.png" COMP;
      image: "black.png" COMP;
   }
   script {
      public message(Msg_Type:type, id, ...) {
         if( (type==MSG_INT_SET) && (id==0) )
         {
            new w;
            new h;

            custom_state(PART:"size", "default", 0.0);

            w = getarg(2);
            h = getarg(3);
            set_state_val(PART:"size", STATE_REL1_OFFSET, - w/2, - h/2);
            set_state_val(PART:"size", STATE_REL2_OFFSET, w/2 + 1, h/2 + 1);
            set_state(PART:"size", "custom", 0.0);
         }
      }
   }
   parts {
      part { name: "size";
         type: SWALLOW;
         description { state: "default" 0.0;
            rel1.relative: 0.5 0.5;
            rel2.relative: 0.5 0.5;
         }
      }
      part {
         name: "shadow";
         type: IMAGE;
         repeat_events: 1;
         description {
            state: "default" 0.0;
            rel1.to: "size";
            rel2.to: "size";
            rel1.relative: -0.06 -0.06;
            rel2.relative: 1.07 1.07;
            image.normal: "shadow.png";
         }
      }


      part { name: "elm.swallow.content";
         type: SWALLOW;
         description { state: "default" 0.0;
            rel1.offset: 3 3;
            rel2.offset: -3 -3;
            fixed: 1 1;
         }
      }

      part {
         name: "border";
         type: IMAGE;
         repeat_events: 1;
         description {
            state: "default" 0.0;
            visible: 1;
            color: 0 0 0 255;
            rel1.to: "size";
            rel2.to: "size";
            image.normal: "black.png";
            image.border: 1 1 1 1;
            image.middle: 0;
         }
      }
   }
}

///////////////////////////////////////////////////////////////////////////////