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
1=== added file 'Readme-devlibs.txt'
2--- Readme-devlibs.txt 1970-01-01 00:00:00 +0000
3+++ Readme-devlibs.txt 2013-04-21 19:08:25 +0000
4@@ -0,0 +1,3 @@
5+To Install all dev libs
6+-----------------------
7+sudo 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
8
9=== modified file 'src/Gazette.vala'
10--- src/Gazette.vala 2013-04-19 21:02:10 +0000
11+++ src/Gazette.vala 2013-04-21 19:08:25 +0000
12@@ -38,22 +38,47 @@
13 {
14 if (get_windows ().length () > 0)
15 return;
16-
17+
18 var window = new GazetteWindow ();
19 window.set_application (this);
20 var size = window.reposition ();
21 window.show_all ();
22-
23+
24 var welcome = new ShadowedLabel("<span font='50' face='Raleway'>%s</span>".printf (_("Welcome") + ", " + Environment.get_real_name ()));
25 welcome.x = 50;
26 welcome.y = 200;
27 welcome.opacity = 0;
28- welcome.animate (AnimationMode.LINEAR, 500, opacity : 255, x : 100.0f).get_timeline ().completed.connect (() => {
29- welcome.animate (AnimationMode.LINEAR, 1000, x : 200.0f).get_timeline ().completed.connect (() => {
30- welcome.animate (AnimationMode.LINEAR, 500, x : 250.0f, opacity : 0);
31+ welcome.animate (AnimationMode.LINEAR, 1000, opacity : 255, x : 100.0f).get_timeline ().completed.connect (() => {
32+ welcome.animate (AnimationMode.LINEAR, 700, x : 200.0f).get_timeline ().completed.connect (() => {
33+ welcome.animate (AnimationMode.LINEAR, 1000, x : 250.0f, opacity : 0);
34 });
35 });
36 window.stage.add_child (welcome);
37+
38+ var randomlinetext = "______________________________________";
39+ var randomline1 = new ShadowedLabel("<span font='10' face='FreeMono'>%s</span>".printf (_(randomlinetext)));
40+ randomline1.x = 760;
41+ randomline1.y = 260;
42+ randomline1.opacity = 0;
43+ randomline1.scale_x= welcome.width / ( randomline1.width );
44+ randomline1.animate (AnimationMode.EASE_IN_QUAD, 1000, opacity : 255, x : 100.0f ).get_timeline ().completed.connect (() => {
45+ randomline1.animate (AnimationMode.LINEAR, 700, x : 75.0f).get_timeline ().completed.connect (() => {
46+ randomline1.animate (AnimationMode.EASE_OUT_QUAD, 1000, x : 50.0f, opacity : 0);
47+ });
48+ });
49+
50+ window.stage.add_child (randomline1);
51+ var randomline2 = new ShadowedLabel("<span font='10' face='FreeMono'>%s</span>".printf (_(randomlinetext)));
52+ randomline2.x = 50;
53+ randomline2.y = 195;
54+ randomline2.opacity = 0;
55+ randomline2.scale_x= welcome.width / ( randomline2.width );
56+ randomline2.animate (AnimationMode.EASE_IN_QUAD, 1000, opacity : 255, x : 600.0f ).get_timeline ().completed.connect (() => {
57+ randomline2.animate (AnimationMode.LINEAR, 700, x : 700.0f).get_timeline ().completed.connect (() => {
58+ randomline2.animate (AnimationMode.EASE_OUT_QUAD, 1000, x : 760.0f, opacity : 0);
59+ });
60+ });
61+ window.stage.add_child (randomline2);
62
63 var files = new Files ();
64 var weather = new Weather ();
65
66=== added directory 'src/Plugs/gazette-icon-0.1'
67=== added directory 'src/Plugs/gazette-icon-0.1/128x128'
68=== added file 'src/Plugs/gazette-icon-0.1/128x128/gazette.png'
69Binary 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
70=== added directory 'src/Plugs/gazette-icon-0.1/16x16'
71=== added file 'src/Plugs/gazette-icon-0.1/16x16/gazette.png'
72Binary 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
73=== added directory 'src/Plugs/gazette-icon-0.1/22x22'
74=== added file 'src/Plugs/gazette-icon-0.1/22x22/gazette.png'
75Binary 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
76=== added directory 'src/Plugs/gazette-icon-0.1/32x32'
77=== added file 'src/Plugs/gazette-icon-0.1/32x32/gazette.png'
78Binary 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
79=== added directory 'src/Plugs/gazette-icon-0.1/48x48'
80=== added file 'src/Plugs/gazette-icon-0.1/48x48/gazette48.png'
81Binary 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
82=== added directory 'src/Plugs/gazette-icon-0.1/64x64'
83=== added file 'src/Plugs/gazette-icon-0.1/64x64/gazette.png'
84Binary 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
85=== added directory 'src/Plugs/gazette-icon-0.1/scalable'
86=== added file 'src/Plugs/gazette-icon-0.1/scalable/gazette.svg'
87--- src/Plugs/gazette-icon-0.1/scalable/gazette.svg 1970-01-01 00:00:00 +0000
88+++ src/Plugs/gazette-icon-0.1/scalable/gazette.svg 2013-04-21 19:08:25 +0000
89@@ -0,0 +1,889 @@
90+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
91+<!-- Created with Inkscape (http://www.inkscape.org/) -->
92+
93+<svg
94+ xmlns:dc="http://purl.org/dc/elements/1.1/"
95+ xmlns:cc="http://creativecommons.org/ns#"
96+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
97+ xmlns:svg="http://www.w3.org/2000/svg"
98+ xmlns="http://www.w3.org/2000/svg"
99+ xmlns:xlink="http://www.w3.org/1999/xlink"
100+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
101+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
102+ width="128"
103+ height="128"
104+ id="svg1256"
105+ sodipodi:version="0.32"
106+ inkscape:version="0.48.3.1 r9886"
107+ sodipodi:docname="gazette.svg"
108+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
109+ version="1.1"
110+ inkscape:export-filename="/home/fazil/Public/coding/gazette-fix-zoomout/src/Plugs/gazette-icon-0.1/128x128/gazette.png"
111+ inkscape:export-xdpi="90"
112+ inkscape:export-ydpi="90">
113+ <defs
114+ id="defs3">
115+ <linearGradient
116+ id="linearGradient4226">
117+ <stop
118+ style="stop-color:#000000;stop-opacity:0.66379309;"
119+ offset="0"
120+ id="stop4228" />
121+ <stop
122+ id="stop4250"
123+ offset="0.5"
124+ style="stop-color:#ffffff;stop-opacity:0.68965518;" />
125+ <stop
126+ style="stop-color:#000014;stop-opacity:0.60344827;"
127+ offset="1"
128+ id="stop4230" />
129+ </linearGradient>
130+ <linearGradient
131+ id="linearGradient4185">
132+ <stop
133+ style="stop-color:#204a87;stop-opacity:1;"
134+ offset="0"
135+ id="stop4187" />
136+ <stop
137+ id="stop4189"
138+ offset="0.48841864"
139+ style="stop-color:#7e3d77;stop-opacity:1" />
140+ <stop
141+ style="stop-color:#204a87;stop-opacity:1;"
142+ offset="1"
143+ id="stop4191" />
144+ </linearGradient>
145+ <linearGradient
146+ id="linearGradient4092">
147+ <stop
148+ style="stop-color:#a54a00;stop-opacity:1;"
149+ offset="0"
150+ id="stop4094" />
151+ <stop
152+ id="stop4096"
153+ offset="0.84459412"
154+ style="stop-color:#edd400;stop-opacity:1;" />
155+ <stop
156+ style="stop-color:#a54a00;stop-opacity:1;"
157+ offset="1"
158+ id="stop4098" />
159+ </linearGradient>
160+ <linearGradient
161+ id="linearGradient4084">
162+ <stop
163+ style="stop-color:#204a87;stop-opacity:1;"
164+ offset="0"
165+ id="stop4086" />
166+ <stop
167+ id="stop4088"
168+ offset="0.66674328"
169+ style="stop-color:#729fcf;stop-opacity:1;" />
170+ <stop
171+ style="stop-color:#204a87;stop-opacity:1;"
172+ offset="1"
173+ id="stop4090" />
174+ </linearGradient>
175+ <linearGradient
176+ id="linearGradient4068">
177+ <stop
178+ id="stop4070"
179+ offset="0"
180+ style="stop-color:#204a87;stop-opacity:1;" />
181+ <stop
182+ style="stop-color:#ad7fa8;stop-opacity:1;"
183+ offset="0.48841864"
184+ id="stop4072" />
185+ <stop
186+ id="stop4074"
187+ offset="1"
188+ style="stop-color:#204a87;stop-opacity:1;" />
189+ </linearGradient>
190+ <linearGradient
191+ id="linearGradient4052">
192+ <stop
193+ id="stop4054"
194+ offset="0"
195+ style="stop-color:#a54a00;stop-opacity:1;" />
196+ <stop
197+ style="stop-color:#edd400;stop-opacity:1;"
198+ offset="0.7011835"
199+ id="stop4056" />
200+ <stop
201+ id="stop4058"
202+ offset="1"
203+ style="stop-color:#a54a00;stop-opacity:1;" />
204+ </linearGradient>
205+ <linearGradient
206+ id="linearGradient4034">
207+ <stop
208+ style="stop-color:#204a87;stop-opacity:1;"
209+ offset="0"
210+ id="stop4036" />
211+ <stop
212+ id="stop4042"
213+ offset="0.74407911"
214+ style="stop-color:#ad7fa8;stop-opacity:1;" />
215+ <stop
216+ style="stop-color:#204a87;stop-opacity:1;"
217+ offset="1"
218+ id="stop4038" />
219+ </linearGradient>
220+ <inkscape:perspective
221+ sodipodi:type="inkscape:persp3d"
222+ inkscape:vp_x="0 : 24 : 1"
223+ inkscape:vp_y="0 : 1000 : 0"
224+ inkscape:vp_z="48 : 24 : 1"
225+ inkscape:persp3d-origin="24 : 16 : 1"
226+ id="perspective58" />
227+ <linearGradient
228+ inkscape:collect="always"
229+ id="linearGradient5060">
230+ <stop
231+ style="stop-color:black;stop-opacity:1;"
232+ offset="0"
233+ id="stop5062" />
234+ <stop
235+ style="stop-color:black;stop-opacity:0;"
236+ offset="1"
237+ id="stop5064" />
238+ </linearGradient>
239+ <linearGradient
240+ id="linearGradient5048">
241+ <stop
242+ style="stop-color:black;stop-opacity:0;"
243+ offset="0"
244+ id="stop5050" />
245+ <stop
246+ id="stop5056"
247+ offset="0.5"
248+ style="stop-color:black;stop-opacity:1;" />
249+ <stop
250+ style="stop-color:black;stop-opacity:0;"
251+ offset="1"
252+ id="stop5052" />
253+ </linearGradient>
254+ <linearGradient
255+ id="linearGradient12512">
256+ <stop
257+ style="stop-color:#ffffff;stop-opacity:1.0000000;"
258+ offset="0.0000000"
259+ id="stop12513" />
260+ <stop
261+ style="stop-color:#fff520;stop-opacity:0.89108908;"
262+ offset="0.50000000"
263+ id="stop12517" />
264+ <stop
265+ style="stop-color:#fff300;stop-opacity:0.0000000;"
266+ offset="1.0000000"
267+ id="stop12514" />
268+ </linearGradient>
269+ <radialGradient
270+ inkscape:collect="always"
271+ xlink:href="#linearGradient12512"
272+ id="radialGradient278"
273+ gradientUnits="userSpaceOnUse"
274+ cx="55"
275+ cy="125"
276+ fx="55"
277+ fy="125"
278+ r="14.375" />
279+ <linearGradient
280+ inkscape:collect="always"
281+ id="linearGradient2116">
282+ <stop
283+ style="stop-color:#ffffff;stop-opacity:1;"
284+ offset="0"
285+ id="stop2118" />
286+ <stop
287+ style="stop-color:#ffffff;stop-opacity:0;"
288+ offset="1"
289+ id="stop2120" />
290+ </linearGradient>
291+ <linearGradient
292+ id="linearGradient2094">
293+ <stop
294+ style="stop-color:#d6e3f0;stop-opacity:1.0000000;"
295+ offset="0.0000000"
296+ id="stop2096" />
297+ <stop
298+ style="stop-color:#95b1cf;stop-opacity:1.0000000;"
299+ offset="1.0000000"
300+ id="stop2098" />
301+ </linearGradient>
302+ <linearGradient
303+ id="linearGradient2803">
304+ <stop
305+ id="stop2805"
306+ offset="0"
307+ style="stop-color:#ffffff;stop-opacity:1;" />
308+ <stop
309+ id="stop2807"
310+ offset="1.0000000"
311+ style="stop-color:#cbcbcb;stop-opacity:1.0000000;" />
312+ </linearGradient>
313+ <linearGradient
314+ id="linearGradient2795">
315+ <stop
316+ id="stop2797"
317+ offset="0.0000000"
318+ style="stop-color:#000000;stop-opacity:0.068627454;" />
319+ <stop
320+ id="stop2799"
321+ offset="1.0000000"
322+ style="stop-color:#ffffff;stop-opacity:1.0000000;" />
323+ </linearGradient>
324+ <linearGradient
325+ gradientUnits="userSpaceOnUse"
326+ y2="4.9530048"
327+ x2="41.219128"
328+ y1="4.9530048"
329+ x1="35.433037"
330+ gradientTransform="matrix(0.254,0,0,3.759813,0.788629,0.148567)"
331+ id="linearGradient2801"
332+ xlink:href="#linearGradient2795"
333+ inkscape:collect="always" />
334+ <linearGradient
335+ gradientUnits="userSpaceOnUse"
336+ y2="84.287079"
337+ x2="10.219901"
338+ y1="93.338043"
339+ x1="10.496115"
340+ gradientTransform="matrix(2.262742,0,0,0.441942,1,-0.875)"
341+ id="linearGradient2813"
342+ xlink:href="#linearGradient2803"
343+ inkscape:collect="always" />
344+ <linearGradient
345+ inkscape:collect="always"
346+ xlink:href="#linearGradient2094"
347+ id="linearGradient2100"
348+ gradientTransform="matrix(0.95775,0,0,1.027989,1,-0.571911)"
349+ x1="6.5871811"
350+ y1="22.132999"
351+ x2="14.511404"
352+ y2="22.132999"
353+ gradientUnits="userSpaceOnUse" />
354+ <linearGradient
355+ inkscape:collect="always"
356+ xlink:href="#linearGradient2116"
357+ id="linearGradient2112"
358+ gradientTransform="matrix(1.025428,0,0,0.957303,0,-0.806758)"
359+ x1="73.361984"
360+ y1="26.652197"
361+ x2="-2.7582901"
362+ y2="21.270376"
363+ gradientUnits="userSpaceOnUse" />
364+ <radialGradient
365+ inkscape:collect="always"
366+ xlink:href="#linearGradient5060"
367+ id="radialGradient5013"
368+ gradientUnits="userSpaceOnUse"
369+ cx="605.71429"
370+ cy="486.64789"
371+ fx="605.71429"
372+ fy="486.64789"
373+ r="117.14286"
374+ gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)" />
375+ <linearGradient
376+ inkscape:collect="always"
377+ xlink:href="#linearGradient5048"
378+ id="linearGradient5016"
379+ gradientUnits="userSpaceOnUse"
380+ x1="302.85715"
381+ y1="366.64789"
382+ x2="302.85715"
383+ y2="609.50507"
384+ gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)" />
385+ <radialGradient
386+ inkscape:collect="always"
387+ xlink:href="#linearGradient5060"
388+ id="radialGradient5020"
389+ gradientUnits="userSpaceOnUse"
390+ gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
391+ cx="605.71429"
392+ cy="486.64789"
393+ fx="605.71429"
394+ fy="486.64789"
395+ r="117.14286" />
396+ <linearGradient
397+ inkscape:collect="always"
398+ xlink:href="#linearGradient5048"
399+ id="linearGradient5027"
400+ gradientUnits="userSpaceOnUse"
401+ gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
402+ x1="302.85715"
403+ y1="366.64789"
404+ x2="302.85715"
405+ y2="609.50507" />
406+ <radialGradient
407+ inkscape:collect="always"
408+ xlink:href="#linearGradient5060"
409+ id="radialGradient5029"
410+ gradientUnits="userSpaceOnUse"
411+ gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
412+ cx="605.71429"
413+ cy="486.64789"
414+ fx="605.71429"
415+ fy="486.64789"
416+ r="117.14286" />
417+ <radialGradient
418+ inkscape:collect="always"
419+ xlink:href="#linearGradient5060"
420+ id="radialGradient5031"
421+ gradientUnits="userSpaceOnUse"
422+ gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
423+ cx="605.71429"
424+ cy="486.64789"
425+ fx="605.71429"
426+ fy="486.64789"
427+ r="117.14286" />
428+ <filter
429+ inkscape:collect="always"
430+ id="filter4324"
431+ color-interpolation-filters="sRGB">
432+ <feGaussianBlur
433+ inkscape:collect="always"
434+ stdDeviation="0.046677602"
435+ id="feGaussianBlur4326" />
436+ </filter>
437+ <filter
438+ inkscape:collect="always"
439+ id="filter4328"
440+ color-interpolation-filters="sRGB">
441+ <feGaussianBlur
442+ inkscape:collect="always"
443+ stdDeviation="0.046677602"
444+ id="feGaussianBlur4330" />
445+ </filter>
446+ <filter
447+ inkscape:collect="always"
448+ id="filter4332"
449+ color-interpolation-filters="sRGB">
450+ <feGaussianBlur
451+ inkscape:collect="always"
452+ stdDeviation="0.046677602"
453+ id="feGaussianBlur4334" />
454+ </filter>
455+ <filter
456+ inkscape:collect="always"
457+ id="filter4336"
458+ color-interpolation-filters="sRGB">
459+ <feGaussianBlur
460+ inkscape:collect="always"
461+ stdDeviation="0.046677602"
462+ id="feGaussianBlur4338" />
463+ </filter>
464+ <filter
465+ inkscape:collect="always"
466+ id="filter4340"
467+ color-interpolation-filters="sRGB">
468+ <feGaussianBlur
469+ inkscape:collect="always"
470+ stdDeviation="0.046677602"
471+ id="feGaussianBlur4342" />
472+ </filter>
473+ <filter
474+ inkscape:collect="always"
475+ id="filter4344"
476+ color-interpolation-filters="sRGB">
477+ <feGaussianBlur
478+ inkscape:collect="always"
479+ stdDeviation="0.046677602"
480+ id="feGaussianBlur4346" />
481+ </filter>
482+ <filter
483+ inkscape:collect="always"
484+ id="filter4348"
485+ color-interpolation-filters="sRGB">
486+ <feGaussianBlur
487+ inkscape:collect="always"
488+ stdDeviation="0.046677602"
489+ id="feGaussianBlur4350" />
490+ </filter>
491+ <filter
492+ inkscape:collect="always"
493+ id="filter4352"
494+ color-interpolation-filters="sRGB">
495+ <feGaussianBlur
496+ inkscape:collect="always"
497+ stdDeviation="0.046677602"
498+ id="feGaussianBlur4354" />
499+ </filter>
500+ <filter
501+ inkscape:collect="always"
502+ id="filter4356"
503+ color-interpolation-filters="sRGB">
504+ <feGaussianBlur
505+ inkscape:collect="always"
506+ stdDeviation="0.046677602"
507+ id="feGaussianBlur4358" />
508+ </filter>
509+ <linearGradient
510+ inkscape:collect="always"
511+ xlink:href="#linearGradient4092-9"
512+ id="linearGradient4082-5"
513+ x1="31.913122"
514+ y1="42.041321"
515+ x2="38.331837"
516+ y2="25.541321"
517+ gradientUnits="userSpaceOnUse" />
518+ <linearGradient
519+ id="linearGradient4092-9">
520+ <stop
521+ style="stop-color:#a54a00;stop-opacity:1;"
522+ offset="0"
523+ id="stop4094-3" />
524+ <stop
525+ id="stop4096-4"
526+ offset="0.84459412"
527+ style="stop-color:#edd400;stop-opacity:1;" />
528+ <stop
529+ style="stop-color:#a54a00;stop-opacity:1;"
530+ offset="1"
531+ id="stop4098-9" />
532+ </linearGradient>
533+ <filter
534+ inkscape:collect="always"
535+ id="filter4410"
536+ x="-0.22520052"
537+ width="1.4504009"
538+ y="-0.2860395"
539+ height="1.5720789"
540+ color-interpolation-filters="sRGB">
541+ <feGaussianBlur
542+ inkscape:collect="always"
543+ stdDeviation="2.3499407"
544+ id="feGaussianBlur4412" />
545+ </filter>
546+ <clipPath
547+ clipPathUnits="userSpaceOnUse"
548+ id="clipPath4443">
549+ <path
550+ mask="none"
551+ sodipodi:nodetypes="cccccsssc"
552+ inkscape:connector-curvature="0"
553+ id="path4445"
554+ 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"
555+ style="fill:#000000;fill-opacity:1;stroke:none" />
556+ </clipPath>
557+ <linearGradient
558+ inkscape:collect="always"
559+ xlink:href="#linearGradient4092"
560+ id="linearGradient3182"
561+ gradientUnits="userSpaceOnUse"
562+ x1="31.913122"
563+ y1="42.041321"
564+ x2="38.331837"
565+ y2="25.541321" />
566+ <linearGradient
567+ inkscape:collect="always"
568+ xlink:href="#linearGradient4068"
569+ id="linearGradient3184"
570+ gradientUnits="userSpaceOnUse"
571+ x1="27.831606"
572+ y1="27.338041"
573+ x2="34.323471"
574+ y2="23.213041" />
575+ <linearGradient
576+ inkscape:collect="always"
577+ xlink:href="#linearGradient4068"
578+ id="linearGradient3186"
579+ gradientUnits="userSpaceOnUse"
580+ x1="11.353204"
581+ y1="43.849434"
582+ x2="16.065376"
583+ y2="30.599434" />
584+ <linearGradient
585+ inkscape:collect="always"
586+ xlink:href="#linearGradient4052"
587+ id="linearGradient3188"
588+ gradientUnits="userSpaceOnUse"
589+ x1="27.5"
590+ y1="33.293888"
591+ x2="29.871887"
592+ y2="19.668886" />
593+ <linearGradient
594+ inkscape:collect="always"
595+ xlink:href="#linearGradient4185"
596+ id="linearGradient3190"
597+ gradientUnits="userSpaceOnUse"
598+ x1="16.5"
599+ y1="21.921873"
600+ x2="29.078125"
601+ y2="17.546873" />
602+ <linearGradient
603+ inkscape:collect="always"
604+ xlink:href="#linearGradient4034"
605+ id="linearGradient3192"
606+ gradientUnits="userSpaceOnUse"
607+ x1="24"
608+ y1="7.75"
609+ x2="13.625"
610+ y2="29.625" />
611+ <linearGradient
612+ inkscape:collect="always"
613+ xlink:href="#linearGradient4226"
614+ id="linearGradient3194"
615+ gradientUnits="userSpaceOnUse"
616+ x1="5.5"
617+ y1="46.5"
618+ x2="48.75"
619+ y2="8.125" />
620+ <linearGradient
621+ inkscape:collect="always"
622+ xlink:href="#linearGradient4226"
623+ id="linearGradient3196"
624+ gradientUnits="userSpaceOnUse"
625+ x1="5.5"
626+ y1="46.5"
627+ x2="48.75"
628+ y2="8.125" />
629+ <linearGradient
630+ inkscape:collect="always"
631+ xlink:href="#linearGradient4226"
632+ id="linearGradient3198"
633+ gradientUnits="userSpaceOnUse"
634+ x1="5.5"
635+ y1="46.5"
636+ x2="48.75"
637+ y2="8.125" />
638+ <linearGradient
639+ inkscape:collect="always"
640+ xlink:href="#linearGradient4226"
641+ id="linearGradient3200"
642+ gradientUnits="userSpaceOnUse"
643+ x1="5.5"
644+ y1="46.5"
645+ x2="48.75"
646+ y2="8.125" />
647+ <linearGradient
648+ inkscape:collect="always"
649+ xlink:href="#linearGradient4226"
650+ id="linearGradient3202"
651+ gradientUnits="userSpaceOnUse"
652+ x1="5.5"
653+ y1="46.5"
654+ x2="48.75"
655+ y2="8.125" />
656+ <linearGradient
657+ inkscape:collect="always"
658+ xlink:href="#linearGradient4226"
659+ id="linearGradient3204"
660+ gradientUnits="userSpaceOnUse"
661+ x1="5.5"
662+ y1="46.5"
663+ x2="48.75"
664+ y2="8.125" />
665+ <linearGradient
666+ inkscape:collect="always"
667+ xlink:href="#linearGradient4226"
668+ id="linearGradient3206"
669+ gradientUnits="userSpaceOnUse"
670+ x1="5.5"
671+ y1="46.5"
672+ x2="48.75"
673+ y2="8.125" />
674+ <linearGradient
675+ inkscape:collect="always"
676+ xlink:href="#linearGradient4226"
677+ id="linearGradient3208"
678+ gradientUnits="userSpaceOnUse"
679+ x1="5.5"
680+ y1="46.5"
681+ x2="48.75"
682+ y2="8.125" />
683+ <linearGradient
684+ inkscape:collect="always"
685+ xlink:href="#linearGradient4226"
686+ id="linearGradient3210"
687+ gradientUnits="userSpaceOnUse"
688+ x1="5.5"
689+ y1="46.5"
690+ x2="48.75"
691+ y2="8.125" />
692+ </defs>
693+ <sodipodi:namedview
694+ id="base"
695+ pagecolor="#ffffff"
696+ bordercolor="#666666"
697+ borderopacity="0.27843137"
698+ inkscape:pageopacity="0.0"
699+ inkscape:pageshadow="2"
700+ inkscape:zoom="2"
701+ inkscape:cx="23.042506"
702+ inkscape:cy="30.710459"
703+ inkscape:current-layer="layer1"
704+ showgrid="false"
705+ inkscape:grid-bbox="true"
706+ inkscape:document-units="px"
707+ inkscape:window-width="1366"
708+ inkscape:window-height="722"
709+ inkscape:window-x="0"
710+ inkscape:window-y="24"
711+ fill="#ef2929"
712+ stroke="#cc0000"
713+ inkscape:showpageshadow="false"
714+ showguides="false"
715+ inkscape:window-maximized="1"
716+ inkscape:snap-global="true">
717+ <sodipodi:guide
718+ position="39.342397,-4.229636"
719+ orientation="-60.291788,1e-06"
720+ id="guide3107" />
721+ <sodipodi:guide
722+ position="39.342397,-4.229636"
723+ orientation="-60.291788,1e-06"
724+ id="guide3109" />
725+ <sodipodi:guide
726+ position="27.453642,-5.223331"
727+ orientation="-60.291788,0"
728+ id="guide3111" />
729+ <sodipodi:guide
730+ position="27.453642,20.68416"
731+ orientation="-60.291788,0"
732+ id="guide3113" />
733+ <sodipodi:guide
734+ position="15.020491,-7.159946"
735+ orientation="-60.291789,1e-06"
736+ id="guide3115" />
737+ <sodipodi:guide
738+ position="15.020491,-7.159946"
739+ orientation="-60.291789,1e-06"
740+ id="guide3117" />
741+ <sodipodi:guide
742+ position="33.275268,-5.755687"
743+ orientation="-60.291788,1e-06"
744+ id="guide3119" />
745+ <sodipodi:guide
746+ position="33.275268,-5.755687"
747+ orientation="-60.291788,1e-06"
748+ id="guide3121" />
749+ <sodipodi:guide
750+ position="21.386513,-6.749382"
751+ orientation="-60.291789,1e-06"
752+ id="guide3123" />
753+ <sodipodi:guide
754+ position="21.386513,-6.749382"
755+ orientation="-60.291789,1e-06"
756+ id="guide3125" />
757+ <sodipodi:guide
758+ position="8.9533627,-8.685996"
759+ orientation="-60.291788,0"
760+ id="guide3127" />
761+ <sodipodi:guide
762+ position="8.9533627,-8.685996"
763+ orientation="-60.291788,0"
764+ id="guide3129" />
765+ <sodipodi:guide
766+ position="9.1586786,-3.606393"
767+ orientation="-30.145893,52.21422"
768+ id="guide3131" />
769+ <sodipodi:guide
770+ position="9.1586786,-3.606393"
771+ orientation="-30.145893,52.21422"
772+ id="guide3133" />
773+ <sodipodi:guide
774+ position="2.3537362,6.192723"
775+ orientation="-30.145894,52.21422"
776+ id="guide3135" />
777+ <sodipodi:guide
778+ position="2.3537362,6.192723"
779+ orientation="-30.145894,52.21422"
780+ id="guide3137" />
781+ <sodipodi:guide
782+ position="-5.5399971,15.99184"
783+ orientation="-30.145894,52.214221"
784+ id="guide3139" />
785+ <sodipodi:guide
786+ position="-5.5399971,15.99184"
787+ orientation="-30.145894,52.214221"
788+ id="guide3141" />
789+ <sodipodi:guide
790+ position="4.8035152,0.884869"
791+ orientation="-30.145893,52.214221"
792+ id="guide3143" />
793+ <sodipodi:guide
794+ position="4.8035152,0.884869"
795+ orientation="-30.145893,52.214221"
796+ id="guide3145" />
797+ <sodipodi:guide
798+ position="-2.0014271,10.683985"
799+ orientation="-30.145894,52.214221"
800+ id="guide3147" />
801+ <sodipodi:guide
802+ position="21.386514,24.187019"
803+ orientation="-30.145894,52.214221"
804+ id="guide3149" />
805+ <sodipodi:guide
806+ position="-9.8951591,20.483102"
807+ orientation="-30.145894,52.21422"
808+ id="guide3151" />
809+ <sodipodi:guide
810+ position="-9.8951591,20.483102"
811+ orientation="-30.145894,52.21422"
812+ id="guide3153" />
813+ <inkscape:grid
814+ type="xygrid"
815+ id="grid3215"
816+ empspacing="5"
817+ visible="true"
818+ enabled="true"
819+ snapvisiblegridlinesonly="true" />
820+ </sodipodi:namedview>
821+ <metadata
822+ id="metadata4">
823+ <rdf:RDF>
824+ <cc:Work
825+ rdf:about="">
826+ <dc:format>image/svg+xml</dc:format>
827+ <dc:type
828+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
829+ <dc:title>Addess Book - New</dc:title>
830+ <dc:date />
831+ <dc:creator>
832+ <cc:Agent>
833+ <dc:title>Jakub Steiner</dc:title>
834+ </cc:Agent>
835+ </dc:creator>
836+ <dc:source>http://jimmac.musichall.cz</dc:source>
837+ <dc:subject>
838+ <rdf:Bag>
839+ <rdf:li>address</rdf:li>
840+ <rdf:li>contact</rdf:li>
841+ <rdf:li>book</rdf:li>
842+ </rdf:Bag>
843+ </dc:subject>
844+ <cc:license
845+ rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
846+ </cc:Work>
847+ <cc:License
848+ rdf:about="http://creativecommons.org/licenses/publicdomain/">
849+ <cc:permits
850+ rdf:resource="http://creativecommons.org/ns#Reproduction" />
851+ <cc:permits
852+ rdf:resource="http://creativecommons.org/ns#Distribution" />
853+ <cc:permits
854+ rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
855+ </cc:License>
856+ </rdf:RDF>
857+ </metadata>
858+ <g
859+ inkscape:groupmode="layer"
860+ id="layer1"
861+ inkscape:label="box"
862+ transform="translate(0,64)">
863+ <rect
864+ style="opacity:0.53061224;fill:none;stroke:none"
865+ id="rect3213"
866+ width="127.93816"
867+ height="127.58669"
868+ x="-0.17677669"
869+ y="-63.586681" />
870+ </g>
871+ <g
872+ inkscape:groupmode="layer"
873+ id="layer3"
874+ inkscape:label="vector base"
875+ style="display:inline"
876+ transform="translate(0,80)" />
877+ <g
878+ inkscape:groupmode="layer"
879+ id="layer4"
880+ inkscape:label="highlights"
881+ style="display:inline"
882+ transform="translate(0,80)">
883+ <g
884+ id="g3135"
885+ transform="matrix(2.9987408,0,0,2.9987408,-9.7461481,-88.73454)">
886+ <path
887+ sodipodi:nodetypes="cczscczcscc"
888+ inkscape:connector-curvature="0"
889+ id="path4030"
890+ 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"
891+ style="fill:url(#linearGradient3182);fill-opacity:1;stroke:none;display:inline" />
892+ <path
893+ sodipodi:nodetypes="cccscc"
894+ inkscape:connector-curvature="0"
895+ id="path4032"
896+ 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"
897+ style="fill:url(#linearGradient3184);fill-opacity:1;stroke:none;display:inline" />
898+ <path
899+ sodipodi:nodetypes="cscsscc"
900+ inkscape:connector-curvature="0"
901+ id="path4028"
902+ 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"
903+ style="fill:url(#linearGradient3186);fill-opacity:1;stroke:none;display:inline" />
904+ <path
905+ sodipodi:nodetypes="cscscccscc"
906+ inkscape:connector-curvature="0"
907+ id="path4024"
908+ 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"
909+ style="fill:url(#linearGradient3188);fill-opacity:1;stroke:none;display:inline" />
910+ <path
911+ sodipodi:nodetypes="ccccc"
912+ inkscape:connector-curvature="0"
913+ id="path4026"
914+ 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"
915+ style="fill:url(#linearGradient3190);fill-opacity:1;stroke:none;display:inline" />
916+ <path
917+ sodipodi:nodetypes="cssscsscc"
918+ inkscape:connector-curvature="0"
919+ id="path3254"
920+ 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"
921+ style="fill:url(#linearGradient3192);fill-opacity:1;stroke:none;display:inline" />
922+ <path
923+ sodipodi:nodetypes="ccccccc"
924+ inkscape:connector-curvature="0"
925+ id="path4101"
926+ 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"
927+ style="opacity:0.85204085;fill:url(#linearGradient3194);fill-opacity:1;stroke:none;filter:url(#filter4356)" />
928+ <path
929+ sodipodi:nodetypes="ccc"
930+ inkscape:connector-curvature="0"
931+ id="path4119"
932+ 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"
933+ style="opacity:0.85204085;fill:url(#linearGradient3196);fill-opacity:1;stroke:none;filter:url(#filter4352)" />
934+ <path
935+ sodipodi:nodetypes="ccc"
936+ inkscape:connector-curvature="0"
937+ id="path4119-6"
938+ 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"
939+ style="opacity:0.85204085;fill:url(#linearGradient3198);fill-opacity:1;stroke:none;filter:url(#filter4348)" />
940+ <path
941+ style="opacity:0.85204085;fill:url(#linearGradient3200);fill-opacity:1;stroke:none;filter:url(#filter4344)"
942+ 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"
943+ id="path4167"
944+ inkscape:connector-curvature="0"
945+ sodipodi:nodetypes="ccc" />
946+ <path
947+ sodipodi:nodetypes="ccc"
948+ inkscape:connector-curvature="0"
949+ id="path4165"
950+ 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"
951+ style="opacity:0.85204085;fill:url(#linearGradient3202);fill-opacity:1;stroke:none;filter:url(#filter4340)" />
952+ <path
953+ style="opacity:0.85204085;fill:url(#linearGradient3204);fill-opacity:1;stroke:none;filter:url(#filter4336)"
954+ 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"
955+ id="path4196"
956+ inkscape:connector-curvature="0"
957+ sodipodi:nodetypes="ccccc" />
958+ <path
959+ style="opacity:0.85204085;fill:url(#linearGradient3206);fill-opacity:1;stroke:none;filter:url(#filter4332)"
960+ 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"
961+ id="path4198"
962+ inkscape:connector-curvature="0"
963+ sodipodi:nodetypes="ccccc" />
964+ <path
965+ style="opacity:0.85204085;fill:url(#linearGradient3208);fill-opacity:1;stroke:none;filter:url(#filter4328)"
966+ 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"
967+ id="path4200"
968+ inkscape:connector-curvature="0"
969+ sodipodi:nodetypes="ccccc" />
970+ <path
971+ sodipodi:nodetypes="ccccc"
972+ inkscape:connector-curvature="0"
973+ id="path4194"
974+ 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"
975+ style="opacity:0.40306121;fill:url(#linearGradient3210);fill-opacity:1;stroke:none;filter:url(#filter4324)" />
976+ </g>
977+ </g>
978+</svg>
979
980=== modified file 'src/Services/Service.vala'
981--- src/Services/Service.vala 2013-04-19 21:02:10 +0000
982+++ src/Services/Service.vala 2013-04-21 19:08:25 +0000
983@@ -14,7 +14,7 @@
984
985 opacity = 0;
986 reactive = true;
987- scale_gravity = Clutter.Gravity.CENTER;
988+ scale_gravity = Clutter.Gravity.NORTH_WEST;
989 }
990
991 public override bool button_press_event (Clutter.ButtonEvent event)
992@@ -55,7 +55,6 @@
993 break;
994 }
995 }
996-
997 animate (Clutter.AnimationMode.EASE_IN_OUT_BACK, 300, scale_x : 1.0f, scale_y : 1.0f);
998 clear_timeout ();
999 return true;

Subscribers

People subscribed via source and target branches

to all changes: