Merge lp:~fazillatheef/gazette/zoomout into lp:gazette

Proposed by Eduard Gotwig
Status: Merged
Merge reported by: Eduard Gotwig
Merged at revision: not available
Proposed branch: lp:~fazillatheef/gazette/zoomout
Merge into: lp:gazette
Diff against target: 999 lines (+923/-7)
4 files modified
Readme-devlibs.txt (+3/-0)
src/Gazette.vala (+30/-5)
src/Plugs/gazette-icon-0.1/scalable/gazette.svg (+889/-0)
src/Services/Service.vala (+1/-2)
To merge this branch: bzr merge lp:~fazillatheef/gazette/zoomout
Reviewer Review Type Date Requested Status
Eduard Gotwig Needs Fixing
Review via email: mp+159959@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Eduard Gotwig (gotwig) wrote :

Hey,

I checked out your new effects for the welcome message.

While I think they are not bad, there are definitly some things missing.

E.g I don't think it would make sense to show dots under the Welcome string, but underlining it would be good.

It would be cool if the underlinement comes in, than goes away before the welcome string part goes away.

review: Needs Fixing
lp:~fazillatheef/gazette/zoomout updated
41. By Fazil

Removed dot animation,added line

42. By Fazil

New Icon for Gazette

Revision history for this message
Eduard Gotwig (gotwig) wrote :

I merged it, in a way that IMHO fits.

You can still work on a better look if you like, and propose a new merge request.

Thanks for your help =)

Revision history for this message
Fazil (fazillatheef) wrote :

Thanks

What about the service.Vala change?

    public Service (string _id)
    {
        id = _id;

        opacity = 0;
        reactive = true;
        scale_gravity = Clutter.Gravity.CENTER;
    }

to

    public Service (string _id)
    {
        id = _id;

        opacity = 0;
        reactive = true;
* * scale_gravity = Clutter.Gravity.*NORTH_WEST;*
    }

On Sun, Apr 21, 2013 at 9:53 PM, Eduard Gotwig <email address hidden>wrote:

> I merged it, in a way that IMHO fits.
>
> You can still work on a better look if you like, and propose a new merge
> request.
>
> Thanks for your help =)
> --
> https://code.launchpad.net/~fazillatheef/gazette/zoomout/+merge/159959
> You are the owner of lp:~fazillatheef/gazette/zoomout.
>

--
Fazil Abdul Lathif
Phone No:+91 4885 236895
Mobile : +91 8891712334

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== added file 'Readme-devlibs.txt'
--- Readme-devlibs.txt 1970-01-01 00:00:00 +0000
+++ Readme-devlibs.txt 2013-04-21 19:08:25 +0000
@@ -0,0 +1,3 @@
1To Install all dev libs
2-----------------------
3sudo apt-get install cmake debhelper libsoup2.4-dev libclutter-gtk-1.0-dev libzeitgeist-dev pkg-config libpantheon-dev libgranite-dev libgdata-dev libgoa-1.0-dev valac-0.16
04
=== modified file 'src/Gazette.vala'
--- src/Gazette.vala 2013-04-19 21:02:10 +0000
+++ src/Gazette.vala 2013-04-21 19:08:25 +0000
@@ -38,22 +38,47 @@
38 {38 {
39 if (get_windows ().length () > 0)39 if (get_windows ().length () > 0)
40 return;40 return;
4141
42 var window = new GazetteWindow ();42 var window = new GazetteWindow ();
43 window.set_application (this);43 window.set_application (this);
44 var size = window.reposition ();44 var size = window.reposition ();
45 window.show_all ();45 window.show_all ();
4646
47 var welcome = new ShadowedLabel("<span font='50' face='Raleway'>%s</span>".printf (_("Welcome") + ", " + Environment.get_real_name ()));47 var welcome = new ShadowedLabel("<span font='50' face='Raleway'>%s</span>".printf (_("Welcome") + ", " + Environment.get_real_name ()));
48 welcome.x = 50;48 welcome.x = 50;
49 welcome.y = 200;49 welcome.y = 200;
50 welcome.opacity = 0;50 welcome.opacity = 0;
51 welcome.animate (AnimationMode.LINEAR, 500, opacity : 255, x : 100.0f).get_timeline ().completed.connect (() => {51 welcome.animate (AnimationMode.LINEAR, 1000, opacity : 255, x : 100.0f).get_timeline ().completed.connect (() => {
52 welcome.animate (AnimationMode.LINEAR, 1000, x : 200.0f).get_timeline ().completed.connect (() => {52 welcome.animate (AnimationMode.LINEAR, 700, x : 200.0f).get_timeline ().completed.connect (() => {
53 welcome.animate (AnimationMode.LINEAR, 500, x : 250.0f, opacity : 0);53 welcome.animate (AnimationMode.LINEAR, 1000, x : 250.0f, opacity : 0);
54 });54 });
55 });55 });
56 window.stage.add_child (welcome);56 window.stage.add_child (welcome);
57
58 var randomlinetext = "______________________________________";
59 var randomline1 = new ShadowedLabel("<span font='10' face='FreeMono'>%s</span>".printf (_(randomlinetext)));
60 randomline1.x = 760;
61 randomline1.y = 260;
62 randomline1.opacity = 0;
63 randomline1.scale_x= welcome.width / ( randomline1.width );
64 randomline1.animate (AnimationMode.EASE_IN_QUAD, 1000, opacity : 255, x : 100.0f ).get_timeline ().completed.connect (() => {
65 randomline1.animate (AnimationMode.LINEAR, 700, x : 75.0f).get_timeline ().completed.connect (() => {
66 randomline1.animate (AnimationMode.EASE_OUT_QUAD, 1000, x : 50.0f, opacity : 0);
67 });
68 });
69
70 window.stage.add_child (randomline1);
71 var randomline2 = new ShadowedLabel("<span font='10' face='FreeMono'>%s</span>".printf (_(randomlinetext)));
72 randomline2.x = 50;
73 randomline2.y = 195;
74 randomline2.opacity = 0;
75 randomline2.scale_x= welcome.width / ( randomline2.width );
76 randomline2.animate (AnimationMode.EASE_IN_QUAD, 1000, opacity : 255, x : 600.0f ).get_timeline ().completed.connect (() => {
77 randomline2.animate (AnimationMode.LINEAR, 700, x : 700.0f).get_timeline ().completed.connect (() => {
78 randomline2.animate (AnimationMode.EASE_OUT_QUAD, 1000, x : 760.0f, opacity : 0);
79 });
80 });
81 window.stage.add_child (randomline2);
5782
58 var files = new Files ();83 var files = new Files ();
59 var weather = new Weather ();84 var weather = new Weather ();
6085
=== added directory 'src/Plugs/gazette-icon-0.1'
=== added directory 'src/Plugs/gazette-icon-0.1/128x128'
=== added file 'src/Plugs/gazette-icon-0.1/128x128/gazette.png'
61Binary files src/Plugs/gazette-icon-0.1/128x128/gazette.png 1970-01-01 00:00:00 +0000 and src/Plugs/gazette-icon-0.1/128x128/gazette.png 2013-04-21 19:08:25 +0000 differ86Binary files src/Plugs/gazette-icon-0.1/128x128/gazette.png 1970-01-01 00:00:00 +0000 and src/Plugs/gazette-icon-0.1/128x128/gazette.png 2013-04-21 19:08:25 +0000 differ
=== added directory 'src/Plugs/gazette-icon-0.1/16x16'
=== added file 'src/Plugs/gazette-icon-0.1/16x16/gazette.png'
62Binary files src/Plugs/gazette-icon-0.1/16x16/gazette.png 1970-01-01 00:00:00 +0000 and src/Plugs/gazette-icon-0.1/16x16/gazette.png 2013-04-21 19:08:25 +0000 differ87Binary files src/Plugs/gazette-icon-0.1/16x16/gazette.png 1970-01-01 00:00:00 +0000 and src/Plugs/gazette-icon-0.1/16x16/gazette.png 2013-04-21 19:08:25 +0000 differ
=== added directory 'src/Plugs/gazette-icon-0.1/22x22'
=== added file 'src/Plugs/gazette-icon-0.1/22x22/gazette.png'
63Binary files src/Plugs/gazette-icon-0.1/22x22/gazette.png 1970-01-01 00:00:00 +0000 and src/Plugs/gazette-icon-0.1/22x22/gazette.png 2013-04-21 19:08:25 +0000 differ88Binary files src/Plugs/gazette-icon-0.1/22x22/gazette.png 1970-01-01 00:00:00 +0000 and src/Plugs/gazette-icon-0.1/22x22/gazette.png 2013-04-21 19:08:25 +0000 differ
=== added directory 'src/Plugs/gazette-icon-0.1/32x32'
=== added file 'src/Plugs/gazette-icon-0.1/32x32/gazette.png'
64Binary files src/Plugs/gazette-icon-0.1/32x32/gazette.png 1970-01-01 00:00:00 +0000 and src/Plugs/gazette-icon-0.1/32x32/gazette.png 2013-04-21 19:08:25 +0000 differ89Binary files src/Plugs/gazette-icon-0.1/32x32/gazette.png 1970-01-01 00:00:00 +0000 and src/Plugs/gazette-icon-0.1/32x32/gazette.png 2013-04-21 19:08:25 +0000 differ
=== added directory 'src/Plugs/gazette-icon-0.1/48x48'
=== added file 'src/Plugs/gazette-icon-0.1/48x48/gazette48.png'
65Binary files src/Plugs/gazette-icon-0.1/48x48/gazette48.png 1970-01-01 00:00:00 +0000 and src/Plugs/gazette-icon-0.1/48x48/gazette48.png 2013-04-21 19:08:25 +0000 differ90Binary files src/Plugs/gazette-icon-0.1/48x48/gazette48.png 1970-01-01 00:00:00 +0000 and src/Plugs/gazette-icon-0.1/48x48/gazette48.png 2013-04-21 19:08:25 +0000 differ
=== added directory 'src/Plugs/gazette-icon-0.1/64x64'
=== added file 'src/Plugs/gazette-icon-0.1/64x64/gazette.png'
66Binary files src/Plugs/gazette-icon-0.1/64x64/gazette.png 1970-01-01 00:00:00 +0000 and src/Plugs/gazette-icon-0.1/64x64/gazette.png 2013-04-21 19:08:25 +0000 differ91Binary files src/Plugs/gazette-icon-0.1/64x64/gazette.png 1970-01-01 00:00:00 +0000 and src/Plugs/gazette-icon-0.1/64x64/gazette.png 2013-04-21 19:08:25 +0000 differ
=== added directory 'src/Plugs/gazette-icon-0.1/scalable'
=== added file 'src/Plugs/gazette-icon-0.1/scalable/gazette.svg'
--- src/Plugs/gazette-icon-0.1/scalable/gazette.svg 1970-01-01 00:00:00 +0000
+++ src/Plugs/gazette-icon-0.1/scalable/gazette.svg 2013-04-21 19:08:25 +0000
@@ -0,0 +1,889 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
4<svg
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:cc="http://creativecommons.org/ns#"
7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8 xmlns:svg="http://www.w3.org/2000/svg"
9 xmlns="http://www.w3.org/2000/svg"
10 xmlns:xlink="http://www.w3.org/1999/xlink"
11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13 width="128"
14 height="128"
15 id="svg1256"
16 sodipodi:version="0.32"
17 inkscape:version="0.48.3.1 r9886"
18 sodipodi:docname="gazette.svg"
19 inkscape:output_extension="org.inkscape.output.svg.inkscape"
20 version="1.1"
21 inkscape:export-filename="/home/fazil/Public/coding/gazette-fix-zoomout/src/Plugs/gazette-icon-0.1/128x128/gazette.png"
22 inkscape:export-xdpi="90"
23 inkscape:export-ydpi="90">
24 <defs
25 id="defs3">
26 <linearGradient
27 id="linearGradient4226">
28 <stop
29 style="stop-color:#000000;stop-opacity:0.66379309;"
30 offset="0"
31 id="stop4228" />
32 <stop
33 id="stop4250"
34 offset="0.5"
35 style="stop-color:#ffffff;stop-opacity:0.68965518;" />
36 <stop
37 style="stop-color:#000014;stop-opacity:0.60344827;"
38 offset="1"
39 id="stop4230" />
40 </linearGradient>
41 <linearGradient
42 id="linearGradient4185">
43 <stop
44 style="stop-color:#204a87;stop-opacity:1;"
45 offset="0"
46 id="stop4187" />
47 <stop
48 id="stop4189"
49 offset="0.48841864"
50 style="stop-color:#7e3d77;stop-opacity:1" />
51 <stop
52 style="stop-color:#204a87;stop-opacity:1;"
53 offset="1"
54 id="stop4191" />
55 </linearGradient>
56 <linearGradient
57 id="linearGradient4092">
58 <stop
59 style="stop-color:#a54a00;stop-opacity:1;"
60 offset="0"
61 id="stop4094" />
62 <stop
63 id="stop4096"
64 offset="0.84459412"
65 style="stop-color:#edd400;stop-opacity:1;" />
66 <stop
67 style="stop-color:#a54a00;stop-opacity:1;"
68 offset="1"
69 id="stop4098" />
70 </linearGradient>
71 <linearGradient
72 id="linearGradient4084">
73 <stop
74 style="stop-color:#204a87;stop-opacity:1;"
75 offset="0"
76 id="stop4086" />
77 <stop
78 id="stop4088"
79 offset="0.66674328"
80 style="stop-color:#729fcf;stop-opacity:1;" />
81 <stop
82 style="stop-color:#204a87;stop-opacity:1;"
83 offset="1"
84 id="stop4090" />
85 </linearGradient>
86 <linearGradient
87 id="linearGradient4068">
88 <stop
89 id="stop4070"
90 offset="0"
91 style="stop-color:#204a87;stop-opacity:1;" />
92 <stop
93 style="stop-color:#ad7fa8;stop-opacity:1;"
94 offset="0.48841864"
95 id="stop4072" />
96 <stop
97 id="stop4074"
98 offset="1"
99 style="stop-color:#204a87;stop-opacity:1;" />
100 </linearGradient>
101 <linearGradient
102 id="linearGradient4052">
103 <stop
104 id="stop4054"
105 offset="0"
106 style="stop-color:#a54a00;stop-opacity:1;" />
107 <stop
108 style="stop-color:#edd400;stop-opacity:1;"
109 offset="0.7011835"
110 id="stop4056" />
111 <stop
112 id="stop4058"
113 offset="1"
114 style="stop-color:#a54a00;stop-opacity:1;" />
115 </linearGradient>
116 <linearGradient
117 id="linearGradient4034">
118 <stop
119 style="stop-color:#204a87;stop-opacity:1;"
120 offset="0"
121 id="stop4036" />
122 <stop
123 id="stop4042"
124 offset="0.74407911"
125 style="stop-color:#ad7fa8;stop-opacity:1;" />
126 <stop
127 style="stop-color:#204a87;stop-opacity:1;"
128 offset="1"
129 id="stop4038" />
130 </linearGradient>
131 <inkscape:perspective
132 sodipodi:type="inkscape:persp3d"
133 inkscape:vp_x="0 : 24 : 1"
134 inkscape:vp_y="0 : 1000 : 0"
135 inkscape:vp_z="48 : 24 : 1"
136 inkscape:persp3d-origin="24 : 16 : 1"
137 id="perspective58" />
138 <linearGradient
139 inkscape:collect="always"
140 id="linearGradient5060">
141 <stop
142 style="stop-color:black;stop-opacity:1;"
143 offset="0"
144 id="stop5062" />
145 <stop
146 style="stop-color:black;stop-opacity:0;"
147 offset="1"
148 id="stop5064" />
149 </linearGradient>
150 <linearGradient
151 id="linearGradient5048">
152 <stop
153 style="stop-color:black;stop-opacity:0;"
154 offset="0"
155 id="stop5050" />
156 <stop
157 id="stop5056"
158 offset="0.5"
159 style="stop-color:black;stop-opacity:1;" />
160 <stop
161 style="stop-color:black;stop-opacity:0;"
162 offset="1"
163 id="stop5052" />
164 </linearGradient>
165 <linearGradient
166 id="linearGradient12512">
167 <stop
168 style="stop-color:#ffffff;stop-opacity:1.0000000;"
169 offset="0.0000000"
170 id="stop12513" />
171 <stop
172 style="stop-color:#fff520;stop-opacity:0.89108908;"
173 offset="0.50000000"
174 id="stop12517" />
175 <stop
176 style="stop-color:#fff300;stop-opacity:0.0000000;"
177 offset="1.0000000"
178 id="stop12514" />
179 </linearGradient>
180 <radialGradient
181 inkscape:collect="always"
182 xlink:href="#linearGradient12512"
183 id="radialGradient278"
184 gradientUnits="userSpaceOnUse"
185 cx="55"
186 cy="125"
187 fx="55"
188 fy="125"
189 r="14.375" />
190 <linearGradient
191 inkscape:collect="always"
192 id="linearGradient2116">
193 <stop
194 style="stop-color:#ffffff;stop-opacity:1;"
195 offset="0"
196 id="stop2118" />
197 <stop
198 style="stop-color:#ffffff;stop-opacity:0;"
199 offset="1"
200 id="stop2120" />
201 </linearGradient>
202 <linearGradient
203 id="linearGradient2094">
204 <stop
205 style="stop-color:#d6e3f0;stop-opacity:1.0000000;"
206 offset="0.0000000"
207 id="stop2096" />
208 <stop
209 style="stop-color:#95b1cf;stop-opacity:1.0000000;"
210 offset="1.0000000"
211 id="stop2098" />
212 </linearGradient>
213 <linearGradient
214 id="linearGradient2803">
215 <stop
216 id="stop2805"
217 offset="0"
218 style="stop-color:#ffffff;stop-opacity:1;" />
219 <stop
220 id="stop2807"
221 offset="1.0000000"
222 style="stop-color:#cbcbcb;stop-opacity:1.0000000;" />
223 </linearGradient>
224 <linearGradient
225 id="linearGradient2795">
226 <stop
227 id="stop2797"
228 offset="0.0000000"
229 style="stop-color:#000000;stop-opacity:0.068627454;" />
230 <stop
231 id="stop2799"
232 offset="1.0000000"
233 style="stop-color:#ffffff;stop-opacity:1.0000000;" />
234 </linearGradient>
235 <linearGradient
236 gradientUnits="userSpaceOnUse"
237 y2="4.9530048"
238 x2="41.219128"
239 y1="4.9530048"
240 x1="35.433037"
241 gradientTransform="matrix(0.254,0,0,3.759813,0.788629,0.148567)"
242 id="linearGradient2801"
243 xlink:href="#linearGradient2795"
244 inkscape:collect="always" />
245 <linearGradient
246 gradientUnits="userSpaceOnUse"
247 y2="84.287079"
248 x2="10.219901"
249 y1="93.338043"
250 x1="10.496115"
251 gradientTransform="matrix(2.262742,0,0,0.441942,1,-0.875)"
252 id="linearGradient2813"
253 xlink:href="#linearGradient2803"
254 inkscape:collect="always" />
255 <linearGradient
256 inkscape:collect="always"
257 xlink:href="#linearGradient2094"
258 id="linearGradient2100"
259 gradientTransform="matrix(0.95775,0,0,1.027989,1,-0.571911)"
260 x1="6.5871811"
261 y1="22.132999"
262 x2="14.511404"
263 y2="22.132999"
264 gradientUnits="userSpaceOnUse" />
265 <linearGradient
266 inkscape:collect="always"
267 xlink:href="#linearGradient2116"
268 id="linearGradient2112"
269 gradientTransform="matrix(1.025428,0,0,0.957303,0,-0.806758)"
270 x1="73.361984"
271 y1="26.652197"
272 x2="-2.7582901"
273 y2="21.270376"
274 gradientUnits="userSpaceOnUse" />
275 <radialGradient
276 inkscape:collect="always"
277 xlink:href="#linearGradient5060"
278 id="radialGradient5013"
279 gradientUnits="userSpaceOnUse"
280 cx="605.71429"
281 cy="486.64789"
282 fx="605.71429"
283 fy="486.64789"
284 r="117.14286"
285 gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)" />
286 <linearGradient
287 inkscape:collect="always"
288 xlink:href="#linearGradient5048"
289 id="linearGradient5016"
290 gradientUnits="userSpaceOnUse"
291 x1="302.85715"
292 y1="366.64789"
293 x2="302.85715"
294 y2="609.50507"
295 gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)" />
296 <radialGradient
297 inkscape:collect="always"
298 xlink:href="#linearGradient5060"
299 id="radialGradient5020"
300 gradientUnits="userSpaceOnUse"
301 gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
302 cx="605.71429"
303 cy="486.64789"
304 fx="605.71429"
305 fy="486.64789"
306 r="117.14286" />
307 <linearGradient
308 inkscape:collect="always"
309 xlink:href="#linearGradient5048"
310 id="linearGradient5027"
311 gradientUnits="userSpaceOnUse"
312 gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
313 x1="302.85715"
314 y1="366.64789"
315 x2="302.85715"
316 y2="609.50507" />
317 <radialGradient
318 inkscape:collect="always"
319 xlink:href="#linearGradient5060"
320 id="radialGradient5029"
321 gradientUnits="userSpaceOnUse"
322 gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
323 cx="605.71429"
324 cy="486.64789"
325 fx="605.71429"
326 fy="486.64789"
327 r="117.14286" />
328 <radialGradient
329 inkscape:collect="always"
330 xlink:href="#linearGradient5060"
331 id="radialGradient5031"
332 gradientUnits="userSpaceOnUse"
333 gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
334 cx="605.71429"
335 cy="486.64789"
336 fx="605.71429"
337 fy="486.64789"
338 r="117.14286" />
339 <filter
340 inkscape:collect="always"
341 id="filter4324"
342 color-interpolation-filters="sRGB">
343 <feGaussianBlur
344 inkscape:collect="always"
345 stdDeviation="0.046677602"
346 id="feGaussianBlur4326" />
347 </filter>
348 <filter
349 inkscape:collect="always"
350 id="filter4328"
351 color-interpolation-filters="sRGB">
352 <feGaussianBlur
353 inkscape:collect="always"
354 stdDeviation="0.046677602"
355 id="feGaussianBlur4330" />
356 </filter>
357 <filter
358 inkscape:collect="always"
359 id="filter4332"
360 color-interpolation-filters="sRGB">
361 <feGaussianBlur
362 inkscape:collect="always"
363 stdDeviation="0.046677602"
364 id="feGaussianBlur4334" />
365 </filter>
366 <filter
367 inkscape:collect="always"
368 id="filter4336"
369 color-interpolation-filters="sRGB">
370 <feGaussianBlur
371 inkscape:collect="always"
372 stdDeviation="0.046677602"
373 id="feGaussianBlur4338" />
374 </filter>
375 <filter
376 inkscape:collect="always"
377 id="filter4340"
378 color-interpolation-filters="sRGB">
379 <feGaussianBlur
380 inkscape:collect="always"
381 stdDeviation="0.046677602"
382 id="feGaussianBlur4342" />
383 </filter>
384 <filter
385 inkscape:collect="always"
386 id="filter4344"
387 color-interpolation-filters="sRGB">
388 <feGaussianBlur
389 inkscape:collect="always"
390 stdDeviation="0.046677602"
391 id="feGaussianBlur4346" />
392 </filter>
393 <filter
394 inkscape:collect="always"
395 id="filter4348"
396 color-interpolation-filters="sRGB">
397 <feGaussianBlur
398 inkscape:collect="always"
399 stdDeviation="0.046677602"
400 id="feGaussianBlur4350" />
401 </filter>
402 <filter
403 inkscape:collect="always"
404 id="filter4352"
405 color-interpolation-filters="sRGB">
406 <feGaussianBlur
407 inkscape:collect="always"
408 stdDeviation="0.046677602"
409 id="feGaussianBlur4354" />
410 </filter>
411 <filter
412 inkscape:collect="always"
413 id="filter4356"
414 color-interpolation-filters="sRGB">
415 <feGaussianBlur
416 inkscape:collect="always"
417 stdDeviation="0.046677602"
418 id="feGaussianBlur4358" />
419 </filter>
420 <linearGradient
421 inkscape:collect="always"
422 xlink:href="#linearGradient4092-9"
423 id="linearGradient4082-5"
424 x1="31.913122"
425 y1="42.041321"
426 x2="38.331837"
427 y2="25.541321"
428 gradientUnits="userSpaceOnUse" />
429 <linearGradient
430 id="linearGradient4092-9">
431 <stop
432 style="stop-color:#a54a00;stop-opacity:1;"
433 offset="0"
434 id="stop4094-3" />
435 <stop
436 id="stop4096-4"
437 offset="0.84459412"
438 style="stop-color:#edd400;stop-opacity:1;" />
439 <stop
440 style="stop-color:#a54a00;stop-opacity:1;"
441 offset="1"
442 id="stop4098-9" />
443 </linearGradient>
444 <filter
445 inkscape:collect="always"
446 id="filter4410"
447 x="-0.22520052"
448 width="1.4504009"
449 y="-0.2860395"
450 height="1.5720789"
451 color-interpolation-filters="sRGB">
452 <feGaussianBlur
453 inkscape:collect="always"
454 stdDeviation="2.3499407"
455 id="feGaussianBlur4412" />
456 </filter>
457 <clipPath
458 clipPathUnits="userSpaceOnUse"
459 id="clipPath4443">
460 <path
461 mask="none"
462 sodipodi:nodetypes="cccccsssc"
463 inkscape:connector-curvature="0"
464 id="path4445"
465 d="M 16.827482,42.498924 30.377066,36.20885 38.136072,26.61388 36.215653,22.886936 C 60.95162,30.395406 63.468898,46.608245 46.139104,47.393187 40.539152,48.571582 4.787048,49.378926 3.4191125,48.00747 2.7351447,47.321742 2.4034632,31.221618 5.426443,30.201177 c 1.5114898,-0.510222 1.9123725,-3.352292 4.1339482,-0.120163 2.2215758,3.232128 6.2638438,12.538453 7.2670908,12.41791 z"
466 style="fill:#000000;fill-opacity:1;stroke:none" />
467 </clipPath>
468 <linearGradient
469 inkscape:collect="always"
470 xlink:href="#linearGradient4092"
471 id="linearGradient3182"
472 gradientUnits="userSpaceOnUse"
473 x1="31.913122"
474 y1="42.041321"
475 x2="38.331837"
476 y2="25.541321" />
477 <linearGradient
478 inkscape:collect="always"
479 xlink:href="#linearGradient4068"
480 id="linearGradient3184"
481 gradientUnits="userSpaceOnUse"
482 x1="27.831606"
483 y1="27.338041"
484 x2="34.323471"
485 y2="23.213041" />
486 <linearGradient
487 inkscape:collect="always"
488 xlink:href="#linearGradient4068"
489 id="linearGradient3186"
490 gradientUnits="userSpaceOnUse"
491 x1="11.353204"
492 y1="43.849434"
493 x2="16.065376"
494 y2="30.599434" />
495 <linearGradient
496 inkscape:collect="always"
497 xlink:href="#linearGradient4052"
498 id="linearGradient3188"
499 gradientUnits="userSpaceOnUse"
500 x1="27.5"
501 y1="33.293888"
502 x2="29.871887"
503 y2="19.668886" />
504 <linearGradient
505 inkscape:collect="always"
506 xlink:href="#linearGradient4185"
507 id="linearGradient3190"
508 gradientUnits="userSpaceOnUse"
509 x1="16.5"
510 y1="21.921873"
511 x2="29.078125"
512 y2="17.546873" />
513 <linearGradient
514 inkscape:collect="always"
515 xlink:href="#linearGradient4034"
516 id="linearGradient3192"
517 gradientUnits="userSpaceOnUse"
518 x1="24"
519 y1="7.75"
520 x2="13.625"
521 y2="29.625" />
522 <linearGradient
523 inkscape:collect="always"
524 xlink:href="#linearGradient4226"
525 id="linearGradient3194"
526 gradientUnits="userSpaceOnUse"
527 x1="5.5"
528 y1="46.5"
529 x2="48.75"
530 y2="8.125" />
531 <linearGradient
532 inkscape:collect="always"
533 xlink:href="#linearGradient4226"
534 id="linearGradient3196"
535 gradientUnits="userSpaceOnUse"
536 x1="5.5"
537 y1="46.5"
538 x2="48.75"
539 y2="8.125" />
540 <linearGradient
541 inkscape:collect="always"
542 xlink:href="#linearGradient4226"
543 id="linearGradient3198"
544 gradientUnits="userSpaceOnUse"
545 x1="5.5"
546 y1="46.5"
547 x2="48.75"
548 y2="8.125" />
549 <linearGradient
550 inkscape:collect="always"
551 xlink:href="#linearGradient4226"
552 id="linearGradient3200"
553 gradientUnits="userSpaceOnUse"
554 x1="5.5"
555 y1="46.5"
556 x2="48.75"
557 y2="8.125" />
558 <linearGradient
559 inkscape:collect="always"
560 xlink:href="#linearGradient4226"
561 id="linearGradient3202"
562 gradientUnits="userSpaceOnUse"
563 x1="5.5"
564 y1="46.5"
565 x2="48.75"
566 y2="8.125" />
567 <linearGradient
568 inkscape:collect="always"
569 xlink:href="#linearGradient4226"
570 id="linearGradient3204"
571 gradientUnits="userSpaceOnUse"
572 x1="5.5"
573 y1="46.5"
574 x2="48.75"
575 y2="8.125" />
576 <linearGradient
577 inkscape:collect="always"
578 xlink:href="#linearGradient4226"
579 id="linearGradient3206"
580 gradientUnits="userSpaceOnUse"
581 x1="5.5"
582 y1="46.5"
583 x2="48.75"
584 y2="8.125" />
585 <linearGradient
586 inkscape:collect="always"
587 xlink:href="#linearGradient4226"
588 id="linearGradient3208"
589 gradientUnits="userSpaceOnUse"
590 x1="5.5"
591 y1="46.5"
592 x2="48.75"
593 y2="8.125" />
594 <linearGradient
595 inkscape:collect="always"
596 xlink:href="#linearGradient4226"
597 id="linearGradient3210"
598 gradientUnits="userSpaceOnUse"
599 x1="5.5"
600 y1="46.5"
601 x2="48.75"
602 y2="8.125" />
603 </defs>
604 <sodipodi:namedview
605 id="base"
606 pagecolor="#ffffff"
607 bordercolor="#666666"
608 borderopacity="0.27843137"
609 inkscape:pageopacity="0.0"
610 inkscape:pageshadow="2"
611 inkscape:zoom="2"
612 inkscape:cx="23.042506"
613 inkscape:cy="30.710459"
614 inkscape:current-layer="layer1"
615 showgrid="false"
616 inkscape:grid-bbox="true"
617 inkscape:document-units="px"
618 inkscape:window-width="1366"
619 inkscape:window-height="722"
620 inkscape:window-x="0"
621 inkscape:window-y="24"
622 fill="#ef2929"
623 stroke="#cc0000"
624 inkscape:showpageshadow="false"
625 showguides="false"
626 inkscape:window-maximized="1"
627 inkscape:snap-global="true">
628 <sodipodi:guide
629 position="39.342397,-4.229636"
630 orientation="-60.291788,1e-06"
631 id="guide3107" />
632 <sodipodi:guide
633 position="39.342397,-4.229636"
634 orientation="-60.291788,1e-06"
635 id="guide3109" />
636 <sodipodi:guide
637 position="27.453642,-5.223331"
638 orientation="-60.291788,0"
639 id="guide3111" />
640 <sodipodi:guide
641 position="27.453642,20.68416"
642 orientation="-60.291788,0"
643 id="guide3113" />
644 <sodipodi:guide
645 position="15.020491,-7.159946"
646 orientation="-60.291789,1e-06"
647 id="guide3115" />
648 <sodipodi:guide
649 position="15.020491,-7.159946"
650 orientation="-60.291789,1e-06"
651 id="guide3117" />
652 <sodipodi:guide
653 position="33.275268,-5.755687"
654 orientation="-60.291788,1e-06"
655 id="guide3119" />
656 <sodipodi:guide
657 position="33.275268,-5.755687"
658 orientation="-60.291788,1e-06"
659 id="guide3121" />
660 <sodipodi:guide
661 position="21.386513,-6.749382"
662 orientation="-60.291789,1e-06"
663 id="guide3123" />
664 <sodipodi:guide
665 position="21.386513,-6.749382"
666 orientation="-60.291789,1e-06"
667 id="guide3125" />
668 <sodipodi:guide
669 position="8.9533627,-8.685996"
670 orientation="-60.291788,0"
671 id="guide3127" />
672 <sodipodi:guide
673 position="8.9533627,-8.685996"
674 orientation="-60.291788,0"
675 id="guide3129" />
676 <sodipodi:guide
677 position="9.1586786,-3.606393"
678 orientation="-30.145893,52.21422"
679 id="guide3131" />
680 <sodipodi:guide
681 position="9.1586786,-3.606393"
682 orientation="-30.145893,52.21422"
683 id="guide3133" />
684 <sodipodi:guide
685 position="2.3537362,6.192723"
686 orientation="-30.145894,52.21422"
687 id="guide3135" />
688 <sodipodi:guide
689 position="2.3537362,6.192723"
690 orientation="-30.145894,52.21422"
691 id="guide3137" />
692 <sodipodi:guide
693 position="-5.5399971,15.99184"
694 orientation="-30.145894,52.214221"
695 id="guide3139" />
696 <sodipodi:guide
697 position="-5.5399971,15.99184"
698 orientation="-30.145894,52.214221"
699 id="guide3141" />
700 <sodipodi:guide
701 position="4.8035152,0.884869"
702 orientation="-30.145893,52.214221"
703 id="guide3143" />
704 <sodipodi:guide
705 position="4.8035152,0.884869"
706 orientation="-30.145893,52.214221"
707 id="guide3145" />
708 <sodipodi:guide
709 position="-2.0014271,10.683985"
710 orientation="-30.145894,52.214221"
711 id="guide3147" />
712 <sodipodi:guide
713 position="21.386514,24.187019"
714 orientation="-30.145894,52.214221"
715 id="guide3149" />
716 <sodipodi:guide
717 position="-9.8951591,20.483102"
718 orientation="-30.145894,52.21422"
719 id="guide3151" />
720 <sodipodi:guide
721 position="-9.8951591,20.483102"
722 orientation="-30.145894,52.21422"
723 id="guide3153" />
724 <inkscape:grid
725 type="xygrid"
726 id="grid3215"
727 empspacing="5"
728 visible="true"
729 enabled="true"
730 snapvisiblegridlinesonly="true" />
731 </sodipodi:namedview>
732 <metadata
733 id="metadata4">
734 <rdf:RDF>
735 <cc:Work
736 rdf:about="">
737 <dc:format>image/svg+xml</dc:format>
738 <dc:type
739 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
740 <dc:title>Addess Book - New</dc:title>
741 <dc:date />
742 <dc:creator>
743 <cc:Agent>
744 <dc:title>Jakub Steiner</dc:title>
745 </cc:Agent>
746 </dc:creator>
747 <dc:source>http://jimmac.musichall.cz</dc:source>
748 <dc:subject>
749 <rdf:Bag>
750 <rdf:li>address</rdf:li>
751 <rdf:li>contact</rdf:li>
752 <rdf:li>book</rdf:li>
753 </rdf:Bag>
754 </dc:subject>
755 <cc:license
756 rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
757 </cc:Work>
758 <cc:License
759 rdf:about="http://creativecommons.org/licenses/publicdomain/">
760 <cc:permits
761 rdf:resource="http://creativecommons.org/ns#Reproduction" />
762 <cc:permits
763 rdf:resource="http://creativecommons.org/ns#Distribution" />
764 <cc:permits
765 rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
766 </cc:License>
767 </rdf:RDF>
768 </metadata>
769 <g
770 inkscape:groupmode="layer"
771 id="layer1"
772 inkscape:label="box"
773 transform="translate(0,64)">
774 <rect
775 style="opacity:0.53061224;fill:none;stroke:none"
776 id="rect3213"
777 width="127.93816"
778 height="127.58669"
779 x="-0.17677669"
780 y="-63.586681" />
781 </g>
782 <g
783 inkscape:groupmode="layer"
784 id="layer3"
785 inkscape:label="vector base"
786 style="display:inline"
787 transform="translate(0,80)" />
788 <g
789 inkscape:groupmode="layer"
790 id="layer4"
791 inkscape:label="highlights"
792 style="display:inline"
793 transform="translate(0,80)">
794 <g
795 id="g3135"
796 transform="matrix(2.9987408,0,0,2.9987408,-9.7461481,-88.73454)">
797 <path
798 sodipodi:nodetypes="cczscczcscc"
799 inkscape:connector-curvature="0"
800 id="path4030"
801 d="m 14.038122,40.908405 c 1.549072,0.07489 3.576553,-0.438832 5.760868,-2.012405 0,0 9.834469,-6.499537 10.518214,-6.98268 0.683745,-0.483143 3.892232,-2.811337 4.782931,-4.425698 0.59011,-1.069554 -0.93123,-3.754864 -2.416355,-3.540134 1.490572,0.113128 1.376825,0.116053 2.583171,0.231852 4.109134,0.115644 4.126085,2.565465 3.541815,4.846195 -0.58427,2.280731 -2.604862,3.677425 -4.160534,5.009106 l -12.109203,8.04334 c -1.168424,0.776107 -2.671059,1.639998 -4.700208,1.570463 -2.34985,-0.222965 -2.957278,-1.656257 -3.800699,-2.740039 z"
802 style="fill:url(#linearGradient3182);fill-opacity:1;stroke:none;display:inline" />
803 <path
804 sodipodi:nodetypes="cccscc"
805 inkscape:connector-curvature="0"
806 id="path4032"
807 d="m 28.019106,23.693204 4.331029,-2.298097 c 2.367518,1.10909 5.238807,2.1153 6.285837,4.169878 -0.894564,-0.552533 -0.902534,-1.078252 -4.076128,-0.634344 -1.845129,0.258089 -3.613199,1.077933 -5.380966,2.100334 z"
808 style="fill:url(#linearGradient3184);fill-opacity:1;stroke:none;display:inline" />
809 <path
810 sodipodi:nodetypes="cscsscc"
811 inkscape:connector-curvature="0"
812 id="path4028"
813 d="m 22.565377,31.141033 c -2.741963,1.811353 -6.702338,2.525301 -7.892911,7.092054 -0.649817,2.492544 0.670951,4.417363 3.186881,5.407315 -1.481063,-0.04051 -2.928543,-0.457147 -4.247541,-0.899509 -2.327976,-0.780751 -3.505344,-2.456975 -3.7123114,-4.24264 -0.3177555,-2.741529 0.9275414,-5.401562 6.0104084,-7.689787 z"
814 style="fill:url(#linearGradient3186);fill-opacity:1;stroke:none;display:inline" />
815 <path
816 sodipodi:nodetypes="cscscccscc"
817 inkscape:connector-curvature="0"
818 id="path4024"
819 d="m 18.75,17.1875 6.3125,-0.3125 c 2.121999,-0.105049 4.461277,1.200324 6.125,1.859375 2.444227,2.378607 0.664906,6.749032 -1.375,8 L 22.5,31.21875 c -3.03439,-0.03919 -4.477037,-0.644028 -6.25,-1.15625 3.419865,-1.309302 6.866049,-2.592284 9.3125,-4.875 1.587925,-1.55226 1.594515,-2.109447 1.625,-2.9375 0.04999,-1.357995 -1.155798,-2.144536 -3.212928,-2.565993 C 22.45284,18.985345 20.115389,17.999517 18.75,17.1875 z"
820 style="fill:url(#linearGradient3188);fill-opacity:1;stroke:none;display:inline" />
821 <path
822 sodipodi:nodetypes="ccccc"
823 inkscape:connector-curvature="0"
824 id="path4026"
825 d="M 24.34375,19.71875 17.5625,18.125 l 9,-1.3125 c 1.974307,-0.0021 4.565603,1.087545 5.390625,2.96875 -1.495168,-1.862162 -5.153559,-1.383331 -7.609375,-0.0625 z"
826 style="fill:url(#linearGradient3190);fill-opacity:1;stroke:none;display:inline" />
827 <path
828 sodipodi:nodetypes="cssscsscc"
829 inkscape:connector-curvature="0"
830 id="path3254"
831 d="m 29.875262,5.043263 c 2.913338,5.896598 -4.463238,8.529529 -4.772971,8.662058 -8.147338,3.486091 -10.298012,6.686806 -11.811869,10.529699 -1.05632,2.681445 -0.441673,5.374899 2.721194,6.658694 1.907187,0.77412 4.260334,0.632706 6.496623,0.3125 -3.538575,-0.207885 -4.42979,-2.119519 -3.690864,-4.975176 0.981565,-3.793356 5.405166,-6.404449 8.750906,-8.647353 1.448733,-0.971196 9.581782,-4.3558 7.433505,-11.6565385 C 32.68029,5.5252373 32.688028,5.4792938 29.875262,5.043263 z"
832 style="fill:url(#linearGradient3192);fill-opacity:1;stroke:none;display:inline" />
833 <path
834 sodipodi:nodetypes="ccccccc"
835 inkscape:connector-curvature="0"
836 id="path4101"
837 d="m 30.059621,5.1548588 c 0.851478,2.0029464 0.797328,4.1531749 -0.616038,5.7010492 1.569148,-1.3896344 1.455999,-3.627223 0.857535,-5.4854399 1.266301,0.2389136 3.21038,0.53764 4.477477,0.7722875 0.764639,2.0219897 0.242203,4.1511964 -0.353554,5.4256204 0.611005,-1.169097 1.155523,-3.0014599 0.509343,-5.5425779 z"
838 style="opacity:0.85204085;fill:url(#linearGradient3194);fill-opacity:1;stroke:none;filter:url(#filter4356)" />
839 <path
840 sodipodi:nodetypes="ccc"
841 inkscape:connector-curvature="0"
842 id="path4119"
843 d="m 13.53125,28.78125 c -1.124411,-2.007208 -0.496937,-4.12597 1.0625,-6.90625 -1.405036,2.960341 -1.955194,4.675266 -1.0625,6.90625 z"
844 style="opacity:0.85204085;fill:url(#linearGradient3196);fill-opacity:1;stroke:none;filter:url(#filter4352)" />
845 <path
846 sodipodi:nodetypes="ccc"
847 inkscape:connector-curvature="0"
848 id="path4119-6"
849 d="m 18.879735,29.796875 c -0.936911,-1.600958 -0.590687,-4.00097 1.28125,-6.5625 -1.686286,2.429091 -2.080194,4.550266 -1.28125,6.5625 z"
850 style="opacity:0.85204085;fill:url(#linearGradient3198);fill-opacity:1;stroke:none;filter:url(#filter4348)" />
851 <path
852 style="opacity:0.85204085;fill:url(#linearGradient3200);fill-opacity:1;stroke:none;filter:url(#filter4344)"
853 d="m 11.830806,33.476007 c -2.191339,1.992166 -2.1178206,4.410446 -1.674881,6.053347 -0.5030969,-2.636744 0.09445,-4.417506 1.674881,-6.053347 z"
854 id="path4167"
855 inkscape:connector-curvature="0"
856 sodipodi:nodetypes="ccc" />
857 <path
858 sodipodi:nodetypes="ccc"
859 inkscape:connector-curvature="0"
860 id="path4165"
861 d="m 16.403073,34.885971 c -1.950253,2.098146 -2.118058,4.091452 -1.903343,5.273526 -0.229928,-1.636506 0.395936,-3.507969 1.903343,-5.273526 z"
862 style="opacity:0.85204085;fill:url(#linearGradient3202);fill-opacity:1;stroke:none;filter:url(#filter4340)" />
863 <path
864 style="opacity:0.85204085;fill:url(#linearGradient3204);fill-opacity:1;stroke:none;filter:url(#filter4336)"
865 d="m 19.123775,28.975337 c 3.149386,-1.2521 5.845165,-2.76607 7.671875,-5.164062 l 0.03126,0.0078 c -1.836395,2.387049 -4.475623,3.958257 -7.703125,5.1875 z"
866 id="path4196"
867 inkscape:connector-curvature="0"
868 sodipodi:nodetypes="ccccc" />
869 <path
870 style="opacity:0.85204085;fill:url(#linearGradient3206);fill-opacity:1;stroke:none;filter:url(#filter4332)"
871 d="m 22.913426,30.831493 c 3.073425,-1.748766 6.027484,-3.770809 7.152593,-4.401712 l 0.03126,0.0078 c -0.648299,0.444317 -4.014308,2.570998 -7.073358,4.392004 z"
872 id="path4198"
873 inkscape:connector-curvature="0"
874 sodipodi:nodetypes="ccccc" />
875 <path
876 style="opacity:0.85204085;fill:url(#linearGradient3208);fill-opacity:1;stroke:none;filter:url(#filter4328)"
877 d="m 19.548597,39.066983 c 4.858518,-2.974851 9.504176,-6.373644 11.283422,-7.447996 l 0.05122,0.01022 c -1.019497,0.746784 -6.325563,4.339146 -11.155659,7.427237 z"
878 id="path4200"
879 inkscape:connector-curvature="0"
880 sodipodi:nodetypes="ccccc" />
881 <path
882 sodipodi:nodetypes="ccccc"
883 inkscape:connector-curvature="0"
884 id="path4194"
885 d="m 22.282972,42.020108 c 4.796018,-3.068601 9.551051,-6.451769 11.330297,-7.526121 l 0.05122,0.01022 c -1.019497,0.746784 -6.466188,4.417271 -11.280659,7.567862 z"
886 style="opacity:0.40306121;fill:url(#linearGradient3210);fill-opacity:1;stroke:none;filter:url(#filter4324)" />
887 </g>
888 </g>
889</svg>
0890
=== modified file 'src/Services/Service.vala'
--- src/Services/Service.vala 2013-04-19 21:02:10 +0000
+++ src/Services/Service.vala 2013-04-21 19:08:25 +0000
@@ -14,7 +14,7 @@
1414
15 opacity = 0;15 opacity = 0;
16 reactive = true;16 reactive = true;
17 scale_gravity = Clutter.Gravity.CENTER;17 scale_gravity = Clutter.Gravity.NORTH_WEST;
18 }18 }
1919
20 public override bool button_press_event (Clutter.ButtonEvent event)20 public override bool button_press_event (Clutter.ButtonEvent event)
@@ -55,7 +55,6 @@
55 break;55 break;
56 }56 }
57 }57 }
58
59 animate (Clutter.AnimationMode.EASE_IN_OUT_BACK, 300, scale_x : 1.0f, scale_y : 1.0f);58 animate (Clutter.AnimationMode.EASE_IN_OUT_BACK, 300, scale_x : 1.0f, scale_y : 1.0f);
60 clear_timeout ();59 clear_timeout ();
61 return true;60 return true;

Subscribers

People subscribed via source and target branches

to all changes: