Merge lp:~ricotz/plank/docklets into lp:plank

Proposed by Rico Tzschichholz
Status: Merged
Merged at revision: 1417
Proposed branch: lp:~ricotz/plank/docklets
Merge into: lp:plank
Diff against target: 6216 lines (+5860/-2)
44 files modified
.bzrignore (+3/-0)
Makefile.am (+1/-0)
Makefile.common (+1/-0)
configure.ac (+11/-0)
docklets/Clippy/ClippyDockItem.vala (+177/-0)
docklets/Clippy/ClippyDocklet.vala (+34/-0)
docklets/Clippy/ClippyPreferences.vala (+49/-0)
docklets/Clippy/Makefile.am (+61/-0)
docklets/Clock/ClockDockItem.vala (+280/-0)
docklets/Clock/ClockDocklet.vala (+36/-0)
docklets/Clock/ClockPreferences.vala (+49/-0)
docklets/Clock/Makefile.am (+83/-0)
docklets/Clock/clock.gresource.xml (+33/-0)
docklets/Clock/themes/Default/clock-drop-shadow.svg (+144/-0)
docklets/Clock/themes/Default/clock-face-shadow.svg (+138/-0)
docklets/Clock/themes/Default/clock-face.svg (+128/-0)
docklets/Clock/themes/Default/clock-frame.svg (+221/-0)
docklets/Clock/themes/Default/clock-glass.svg (+112/-0)
docklets/Clock/themes/Default/clock-marks.svg (+1163/-0)
docklets/Clock/themes/Default24/clock-drop-shadow.svg (+134/-0)
docklets/Clock/themes/Default24/clock-face-shadow.svg (+138/-0)
docklets/Clock/themes/Default24/clock-face.svg (+128/-0)
docklets/Clock/themes/Default24/clock-frame.svg (+221/-0)
docklets/Clock/themes/Default24/clock-glass.svg (+112/-0)
docklets/Clock/themes/Default24/clock-marks.svg (+1203/-0)
docklets/Desktop/DesktopDockItem.vala (+55/-0)
docklets/Desktop/DesktopDocklet.vala (+36/-0)
docklets/Desktop/Makefile.am (+73/-0)
docklets/Desktop/desktop.gresource.xml (+24/-0)
docklets/Desktop/icons/show-desktop.svg (+81/-0)
docklets/Desktop/icons/window-cascade.svg (+79/-0)
docklets/Desktop/icons/window-tile.svg (+97/-0)
docklets/Makefile.am (+7/-0)
docklets/Trash/Makefile.am (+60/-0)
docklets/Trash/TrashDockItem.vala (+293/-0)
docklets/Trash/TrashDocklet.vala (+34/-0)
lib/Docklets/Docklet.vala (+36/-0)
lib/Docklets/DockletItem.vala (+31/-0)
lib/Docklets/DockletManager.vala (+216/-0)
lib/Makefile.am (+45/-0)
po/POTFILES.skip (+4/-0)
src/Main.vala (+21/-1)
src/Makefile.am (+7/-1)
vapi/config.vapi (+1/-0)
To merge this branch: bzr merge lp:~ricotz/plank/docklets
Reviewer Review Type Date Requested Status
Docky Core Pending
Review via email: mp+271459@code.launchpad.net

Description of the change

So who are we kidding, the mono-based docky is still a hard-burden feature-wise. There is a plank-based docky branch available for quite some time, but making a release from it is by far not possible since it hasn't gained all the features docky 2.x provides. The logical step to avoid having the current work bit rot is to merge it into the plank source and keep it separated.

So this is it including 4 basic docklets included Clippy, Clock, Desktop and Trash

Based on lp:~docky-core/docky/plank-docky

To post a comment you must log in.
lp:~ricotz/plank/docklets updated
1393. By Rico Tzschichholz

po: Update translations

1394. By Rico Tzschichholz

filedockitem: Correctly display filenames with underscores in folder-menu

1395. By Rico Tzschichholz

positionmanager: Just return primary_monitor if empty plug_name was given

1396. By Rico Tzschichholz

positionmanager: Add verbose output for monitor_geo_changed

1397. By Rico Tzschichholz

dockitemprovider: Insert items where the data was dropped

If there is currently no HoveredItem try to determine the nearest one as
drop-point.

1398. By Rico Tzschichholz

lib: Tweak method signature of file-monitor callbacks

1399. By Rico Tzschichholz

lib: FileMonitorEvent is a simple enum not a flag

1400. By Rico Tzschichholz

lib: Avoid some superfluous reference-taking

1401. By Rico Tzschichholz

plankdockitem: Open "preferences" on left-click instead of "about"

1402. By Rico Tzschichholz

defaultappprovider: Don't ignore opened applications if Wnck doesn't know

Better don't rely on Wnck if Bamf reported an opened application. If an
application is for whatever reason replacing or renaming its window on
startup we might drop it while Wnck reports a window-count of 0.

1403. By Rico Tzschichholz

transientdockitem: Delayed reloading of the window-icon if needed

If the window-icon was null on the first try then schedule a 2nd one.

1404. By Rico Tzschichholz

lib: Actually pass e.g. -lm to the linker by adding it to *_LIBADD

1405. By Rico Tzschichholz

po: Update translations

1406. By Rico Tzschichholz

Prepare 0.10.1 release

1407. By Rico Tzschichholz

Back to development

1408. By Rico Tzschichholz

build: Be more rebust for parallel building

1409. By Rico Tzschichholz

dockrenderer: Don't request a redraw if "transient_items" is empty

1410. By Rico Tzschichholz

dockrenderer: Use non-linear transition in/out the "zoom" state

Increase transition-time to 200ms and use cubic-easing.

1411. By Rico Tzschichholz

easing: Some optimization, avoid vala's struct-copying by using pointers

1412. By Rico Tzschichholz

build: Be more rebust for parallel building

1413. By Rico Tzschichholz

easing: Use proper codestyle for ANIMATION_MODES while it is a const

1414. By Rico Tzschichholz

dockrenderer: Factor out jump-calculation into easing_bounce

1415. By Rico Tzschichholz

dockrenderer: Define and use some internal constants

1416. By Rico Tzschichholz

po: Update translations

1417. By Rico Tzschichholz

Add docklets support (internal/private)

Based on initially proposed docky 3.0 branch

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file '.bzrignore'
2--- .bzrignore 2015-07-25 14:50:16 +0000
3+++ .bzrignore 2015-11-02 08:43:01 +0000
4@@ -34,6 +34,8 @@
5 po/Makefile.in.in
6 po/POTFILES
7 po/stamp-it
8+docklets/*/*.c
9+docklets/*/*.stamp
10 docs/*.stamp
11 docs/c-doc
12 docs/vala-doc
13@@ -50,6 +52,7 @@
14 lib/*.pc
15 lib/*.stamp
16 lib/DBus/*.c
17+lib/Docklets/*.c
18 lib/Drawing/*.c
19 lib/Factories/*.c
20 lib/Services/*.c
21
22=== modified file 'Makefile.am'
23--- Makefile.am 2015-06-14 18:17:29 +0000
24+++ Makefile.am 2015-11-02 08:43:01 +0000
25@@ -6,6 +6,7 @@
26 SUBDIRS = \
27 data \
28 lib \
29+ docklets \
30 po \
31 vapi \
32 src \
33
34=== modified file 'Makefile.common'
35--- Makefile.common 2014-03-08 17:59:36 +0000
36+++ Makefile.common 2015-11-02 08:43:01 +0000
37@@ -10,4 +10,5 @@
38 -DPKGDATADIR=\"$(pkgdatadir)\" \
39 -DLIBDIR=\"$(libdir)\" \
40 -DPKGLIBDIR=\"$(pkglibdir)\" \
41+ -DDOCKLETSDIR=\"$(pkglibdir)/docklets\" \
42 $(NULL)
43
44=== modified file 'configure.ac'
45--- configure.ac 2015-10-19 12:51:17 +0000
46+++ configure.ac 2015-11-02 08:43:01 +0000
47@@ -117,6 +117,7 @@
48 gthread-2.0 >= $GLIB_MIN_VERSION \
49 gio-2.0 >= $GLIB_MIN_VERSION \
50 gio-unix-2.0 >= $GLIB_MIN_VERSION \
51+ gmodule-2.0 \
52 gtk+-3.0 >= $GTK_MIN_VERSION \
53 gdk-x11-3.0 >= $GTK_MIN_VERSION \
54 gdk-pixbuf-2.0 >= $GDK_PIXBUF_MIN_VERSION \
55@@ -127,6 +128,7 @@
56 PLANK_CORE_OPTIONAL_PKGS=""
57
58 PLANK_CORE_VALA_PKGS="--pkg gio-unix-2.0 \
59+ --pkg gmodule-2.0 \
60 --pkg gtk+-3.0 \
61 --pkg gdk-x11-3.0 \
62 --pkg gdk-pixbuf-2.0 \
63@@ -138,6 +140,10 @@
64
65 VALAFLAGS_CORE="--thread"
66
67+# Docklets
68+DOCKLET_LDFLAGS="-module -avoid-version"
69+AC_SUBST([DOCKLET_LDFLAGS])
70+
71 # -----------------------------------------------------------
72 # GLib Resources
73 # -----------------------------------------------------------
74@@ -392,6 +398,11 @@
75 lib/plank.pc
76 lib/Version.vala
77 src/Makefile
78+docklets/Makefile
79+docklets/Clippy/Makefile
80+docklets/Clock/Makefile
81+docklets/Desktop/Makefile
82+docklets/Trash/Makefile
83 docs/Makefile
84 po/Makefile.in
85 tests/Makefile
86
87=== added directory 'docklets'
88=== added directory 'docklets/Clippy'
89=== added file 'docklets/Clippy/ClippyDockItem.vala'
90--- docklets/Clippy/ClippyDockItem.vala 1970-01-01 00:00:00 +0000
91+++ docklets/Clippy/ClippyDockItem.vala 2015-11-02 08:43:01 +0000
92@@ -0,0 +1,177 @@
93+//
94+// Copyright (C) 2010-2011 Robert Dyer
95+//
96+// This file is part of Plank.
97+//
98+// Plank is free software: you can redistribute it and/or modify
99+// it under the terms of the GNU General Public License as published by
100+// the Free Software Foundation, either version 3 of the License, or
101+// (at your option) any later version.
102+//
103+// Plank is distributed in the hope that it will be useful,
104+// but WITHOUT ANY WARRANTY; without even the implied warranty of
105+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
106+// GNU General Public License for more details.
107+//
108+// You should have received a copy of the GNU General Public License
109+// along with this program. If not, see <http://www.gnu.org/licenses/>.
110+//
111+
112+using Plank.Items;
113+
114+namespace Docky
115+{
116+ public class ClippyDockItem : DockletItem
117+ {
118+ Gtk.Clipboard clipboard;
119+ Gee.ArrayList<string> clips = new Gee.ArrayList<string> ();
120+ int cur_position = 0;
121+ uint timer_id = 0U;
122+
123+ /**
124+ * {@inheritDoc}
125+ */
126+ public ClippyDockItem.with_dockitem_file (GLib.File file)
127+ {
128+ GLib.Object (Prefs: new ClippyPreferences.with_file (file));
129+ }
130+
131+ construct
132+ {
133+ unowned ClippyPreferences prefs = (ClippyPreferences) Prefs;
134+
135+ Icon = "edit-cut";
136+
137+ if (prefs.TrackMouseSelections)
138+ clipboard = Gtk.Clipboard.get (Gdk.Atom.intern ("PRIMARY", true));
139+ else
140+ clipboard = Gtk.Clipboard.get (Gdk.Atom.intern ("CLIPBOARD", true));
141+
142+ timer_id = Gdk.threads_add_timeout (prefs.TimerDelay, check_clipboard);
143+
144+ updated ();
145+ }
146+
147+ ~ClippyDockItem ()
148+ {
149+ if (timer_id > 0U)
150+ GLib.Source.remove (timer_id);
151+ }
152+
153+ bool check_clipboard ()
154+ {
155+ clipboard.request_text ((Gtk.ClipboardTextReceivedFunc) clipboard_text_received);
156+
157+ return true;
158+ }
159+
160+ [CCode (instance_pos = -1)]
161+ void clipboard_text_received (Gtk.Clipboard clipboard, string text)
162+ {
163+ if (text == null || text == "")
164+ return;
165+
166+ unowned ClippyPreferences prefs = (ClippyPreferences) Prefs;
167+
168+ clips.remove (text);
169+ clips.add (text);
170+ while (clips.size > prefs.MaxEntries)
171+ clips.remove_at (0);
172+
173+ cur_position = clips.size;
174+
175+ updated ();
176+ }
177+
178+ void updated ()
179+ {
180+ if (clips.size == 0)
181+ Text = _("Clipboard is currently empty.");
182+ else if (cur_position == 0 || cur_position > clips.size)
183+ Text = get_entry_at (clips.size);
184+ else
185+ Text = get_entry_at (cur_position);
186+ }
187+
188+ string get_entry_at (int pos)
189+ {
190+ return clips.get (pos - 1).replace ("\n", "").replace ("\t", "");
191+ }
192+
193+ void copy_entry_at (int pos)
194+ {
195+ if (pos < 1 || pos > clips.size)
196+ return;
197+
198+ var str = clips.get (pos - 1);
199+ clipboard.set_text (str, (int) str.length);
200+
201+ updated ();
202+ }
203+
204+ void copy_entry ()
205+ {
206+ if (cur_position == 0)
207+ copy_entry_at (clips.size);
208+ else
209+ copy_entry_at (cur_position);
210+ }
211+
212+ void clear ()
213+ {
214+ clipboard.clear ();
215+ clips.clear ();
216+ cur_position = 0;
217+
218+ updated ();
219+ }
220+
221+ protected override Animation on_scrolled (Gdk.ScrollDirection direction, Gdk.ModifierType mod, uint32 event_time)
222+ {
223+ if (direction == Gdk.ScrollDirection.UP)
224+ cur_position++;
225+ else
226+ cur_position--;
227+
228+ if (cur_position < 1)
229+ cur_position = clips.size;
230+ else if (cur_position > clips.size)
231+ cur_position = 1;
232+
233+ updated ();
234+
235+ return Animation.NONE;
236+ }
237+
238+ protected override Animation on_clicked (PopupButton button, Gdk.ModifierType mod, uint32 event_time)
239+ {
240+ if (button == PopupButton.LEFT && clips.size > 0) {
241+ copy_entry ();
242+ return Animation.BOUNCE;
243+ }
244+
245+ return Animation.NONE;
246+ }
247+
248+ public override Gee.ArrayList<Gtk.MenuItem> get_menu_items ()
249+ {
250+ var items = new Gee.ArrayList<Gtk.MenuItem> ();
251+
252+ for (var i = clips.size ; i > 0; i--) {
253+ var item = create_menu_item (clips.get (i - 1), "edit-cut");
254+ item.activate.connect (() => {
255+ copy_entry_at (i);
256+ });
257+ items.add (item);
258+ }
259+
260+ if (clips.size > 0) {
261+ var item = create_menu_item (_("_Clear"), "edit-clear-all", true);
262+ item.activate.connect (clear);
263+ items.add (item);
264+ }
265+
266+ return items;
267+ }
268+ }
269+}
270
271=== added file 'docklets/Clippy/ClippyDocklet.vala'
272--- docklets/Clippy/ClippyDocklet.vala 1970-01-01 00:00:00 +0000
273+++ docklets/Clippy/ClippyDocklet.vala 2015-11-02 08:43:01 +0000
274@@ -0,0 +1,34 @@
275+//
276+// Copyright (C) 2011 Robert Dyer
277+//
278+// This file is part of Plank.
279+//
280+// Plank is free software: you can redistribute it and/or modify
281+// it under the terms of the GNU General Public License as published by
282+// the Free Software Foundation, either version 3 of the License, or
283+// (at your option) any later version.
284+//
285+// Plank is distributed in the hope that it will be useful,
286+// but WITHOUT ANY WARRANTY; without even the implied warranty of
287+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
288+// GNU General Public License for more details.
289+//
290+// You should have received a copy of the GNU General Public License
291+// along with this program. If not, see <http://www.gnu.org/licenses/>.
292+//
293+
294+public static void docklet_init (Docky.DockletManager manager)
295+{
296+ manager.register_docklet ("Clippy", typeof (Docky.ClippyDocklet));
297+}
298+
299+namespace Docky
300+{
301+ public class ClippyDocklet : Docklet
302+ {
303+ public override Plank.Items.DockElement make_element (string launcher, GLib.File file)
304+ {
305+ return new ClippyDockItem.with_dockitem_file (file);
306+ }
307+ }
308+}
309
310=== added file 'docklets/Clippy/ClippyPreferences.vala'
311--- docklets/Clippy/ClippyPreferences.vala 1970-01-01 00:00:00 +0000
312+++ docklets/Clippy/ClippyPreferences.vala 2015-11-02 08:43:01 +0000
313@@ -0,0 +1,49 @@
314+//
315+// Copyright (C) 2011 Robert Dyer
316+//
317+// This file is part of Plank.
318+//
319+// Plank is free software: you can redistribute it and/or modify
320+// it under the terms of the GNU General Public License as published by
321+// the Free Software Foundation, either version 3 of the License, or
322+// (at your option) any later version.
323+//
324+// Plank is distributed in the hope that it will be useful,
325+// but WITHOUT ANY WARRANTY; without even the implied warranty of
326+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
327+// GNU General Public License for more details.
328+//
329+// You should have received a copy of the GNU General Public License
330+// along with this program. If not, see <http://www.gnu.org/licenses/>.
331+//
332+
333+using Plank.Items;
334+using Plank.Services;
335+using Plank.Widgets;
336+
337+namespace Docky
338+{
339+ public class ClippyPreferences : DockItemPreferences
340+ {
341+ [Description(nick = "max-entries", blurb = "How many recent clipboard entries to keep.")]
342+ public uint MaxEntries { get; set; default = 15; }
343+
344+ [Description(nick = "timer-delay", blurb = "How often to poll (in ms) for new clipboard data.")]
345+ public uint TimerDelay { get; set; default = 500; }
346+
347+ [Description(nick = "track-mouse-selections", blurb = "If it should track the primary (mouse selection) clipboard.")]
348+ public bool TrackMouseSelections { get; set; default = false; }
349+
350+ public ClippyPreferences.with_file (GLib.File file)
351+ {
352+ base.with_file (file);
353+ }
354+
355+ protected override void reset_properties ()
356+ {
357+ MaxEntries = 15;
358+ TimerDelay = 500;
359+ TrackMouseSelections = false;
360+ }
361+ }
362+}
363
364=== added file 'docklets/Clippy/Makefile.am'
365--- docklets/Clippy/Makefile.am 1970-01-01 00:00:00 +0000
366+++ docklets/Clippy/Makefile.am 2015-11-02 08:43:01 +0000
367@@ -0,0 +1,61 @@
368+include $(top_srcdir)/Makefile.common
369+
370+VAPIDIR = $(top_srcdir)/vapi
371+
372+libdocklet_clippy_la_LTLIBRARIES = libdocklet-clippy.la
373+
374+libdocklet_clippy_ladir = $(pkglibdir)/docklets
375+
376+libdocklet_clippy_la_VALASOURCES = \
377+ ClippyDockItem.vala \
378+ ClippyDocklet.vala \
379+ ClippyPreferences.vala \
380+ $(NULL)
381+
382+nodist_libdocklet_clippy_la_SOURCES = \
383+ $(libdocklet_clippy_la_VALASOURCES:.vala=.c) \
384+ $(NULL)
385+
386+libdocklet_clippy_la_VALAFLAGS = \
387+ $(PLANK_CORE_VALAFLAGS) \
388+ $(VAPIDIR)/config.vapi \
389+ --vapidir $(top_srcdir)/vapi \
390+ --vapidir $(top_builddir)/lib \
391+ --pkg plank \
392+ --pkg plank-docklets \
393+ $(NULL)
394+
395+libdocklet_clippy_la_LIBADD = \
396+ $(PLANK_CORE_LIBS) \
397+ $(NULL)
398+
399+libdocklet_clippy_la_LDFLAGS = \
400+ $(DOCKLET_LDFLAGS) \
401+ $(PLANK_CORE_LDFLAGS) \
402+ $(top_builddir)/lib/libplank.la \
403+ $(NULL)
404+
405+libdocklet_clippy_la_CFLAGS = \
406+ $(PLANK_CORE_CFLAGS) \
407+ -include config.h -w \
408+ -I$(top_builddir)/lib \
409+ $(NULL)
410+
411+$(libdocklet_clippy_la_VALASOURCES:.vala=.c): libdocklet_clippy_la_vala.stamp
412+
413+libdocklet_clippy_la_vala.stamp: $(libdocklet_clippy_la_VALASOURCES) $(top_builddir)/lib/plank-docklets.vapi Makefile
414+ $(AM_V_VALA)$(VALAC) \
415+ $(libdocklet_clippy_la_VALAFLAGS) \
416+ -C \
417+ $(filter %.vala %.c,$^)
418+ $(AM_V_at)touch $@
419+
420+CLEANFILES = \
421+ libdocklet_clippy_la_vala.stamp \
422+ $(nodist_libdocklet_clippy_la_SOURCES) \
423+ $(NULL)
424+
425+EXTRA_DIST = \
426+ $(libdocklet_clippy_la_VALASOURCES) \
427+ $(NULL)
428+
429
430=== added directory 'docklets/Clock'
431=== added file 'docklets/Clock/ClockDockItem.vala'
432--- docklets/Clock/ClockDockItem.vala 1970-01-01 00:00:00 +0000
433+++ docklets/Clock/ClockDockItem.vala 2015-11-02 08:43:01 +0000
434@@ -0,0 +1,280 @@
435+//
436+// Copyright (C) 2011 Robert Dyer
437+//
438+// This file is part of Plank.
439+//
440+// Plank is free software: you can redistribute it and/or modify
441+// it under the terms of the GNU General Public License as published by
442+// the Free Software Foundation, either version 3 of the License, or
443+// (at your option) any later version.
444+//
445+// Plank is distributed in the hope that it will be useful,
446+// but WITHOUT ANY WARRANTY; without even the implied warranty of
447+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
448+// GNU General Public License for more details.
449+//
450+// You should have received a copy of the GNU General Public License
451+// along with this program. If not, see <http://www.gnu.org/licenses/>.
452+//
453+
454+using Plank.Drawing;
455+using Plank.Items;
456+
457+namespace Docky
458+{
459+ public class ClockDockItem : DockletItem
460+ {
461+ const string THEME_BASE_URI = "resource://" + Docky.G_RESOURCE_PATH + "/themes/";
462+
463+ Pango.Layout layout;
464+ uint timer_id = 0U;
465+ int minute;
466+ string current_theme;
467+
468+ /**
469+ * {@inheritDoc}
470+ */
471+ public ClockDockItem.with_dockitem_file (GLib.File file)
472+ {
473+ GLib.Object (Prefs: new ClockPreferences.with_file (file));
474+ }
475+
476+ construct
477+ {
478+ // shared by all text
479+ layout = new Pango.Layout (Gdk.pango_context_get ());
480+ var font_description = new Gtk.Style ().font_desc;
481+ font_description.set_weight (Pango.Weight.BOLD);
482+ layout.set_font_description (font_description);
483+ layout.set_ellipsize (Pango.EllipsizeMode.NONE);
484+
485+ Icon = "clock";
486+ Text = "time";
487+
488+ unowned ClockPreferences prefs = (ClockPreferences) Prefs;
489+ prefs.notify["ShowMilitary"].connect (handle_prefs_changed);
490+ prefs.notify["ShowDate"].connect (handle_prefs_changed);
491+ prefs.notify["ShowDigital"].connect (handle_prefs_changed);
492+
493+ timer_id = Gdk.threads_add_timeout (1000, update_timer);
494+ current_theme = (prefs.ShowMilitary ? THEME_BASE_URI + "Default24" : THEME_BASE_URI + "Default");
495+ }
496+
497+ ~ClockDockItem ()
498+ {
499+ if (timer_id > 0U)
500+ GLib.Source.remove (timer_id);
501+
502+ unowned ClockPreferences prefs = (ClockPreferences) Prefs;
503+ prefs.notify["ShowMilitary"].disconnect (handle_prefs_changed);
504+ prefs.notify["ShowDate"].disconnect (handle_prefs_changed);
505+ prefs.notify["ShowDigital"].disconnect (handle_prefs_changed);
506+ }
507+
508+ bool update_timer ()
509+ {
510+ var now = new DateTime.now_local ();
511+ if (minute != now.get_minute ()) {
512+ reset_icon_buffer ();
513+ minute = now.get_minute ();
514+ }
515+
516+ return true;
517+ }
518+
519+ void handle_prefs_changed ()
520+ {
521+ unowned ClockPreferences prefs = (ClockPreferences) Prefs;
522+ current_theme = (prefs.ShowMilitary ? THEME_BASE_URI + "Default24" : THEME_BASE_URI + "Default");
523+
524+ reset_icon_buffer ();
525+ }
526+
527+ protected override void draw_icon (DockSurface surface)
528+ {
529+ unowned ClockPreferences prefs = (ClockPreferences) Prefs;
530+
531+ var now = new DateTime.now_local ();
532+ if (prefs.ShowMilitary)
533+ Text = now.format ("%a, %b %d %H:%M");
534+ else
535+ Text = now.format ("%a, %b %d %I:%M %p");
536+
537+ var size = int.max (surface.Width, surface.Height);
538+ if (prefs.ShowDigital)
539+ render_digital_clock (surface, now, size);
540+ else
541+ render_analog_clock (surface.Context, now, size);
542+ }
543+
544+ void render_file_onto_context (Cairo.Context cr, string uri, int size)
545+ {
546+ var pbuf = DrawingService.load_icon (uri, size, size);
547+ Gdk.cairo_set_source_pixbuf (cr, pbuf, 0, 0);
548+ cr.paint ();
549+ }
550+
551+ void render_digital_clock (DockSurface surface, DateTime now, int size)
552+ {
553+ unowned ClockPreferences prefs = (ClockPreferences) Prefs;
554+ unowned Cairo.Context cr = surface.Context;
555+
556+ // useful sizes
557+ int timeSize = surface.Height / 4;
558+ int dateSize = surface.Height / 5;
559+ int ampmSize = surface.Height / 5;
560+ int spacing = timeSize / 2;
561+ int center = surface.Height / 2;
562+
563+ layout.set_width ((int) (surface.Width * Pango.SCALE));
564+
565+ // draw the time, outlined
566+ layout.get_font_description ().set_absolute_size ((int) (timeSize * Pango.SCALE));
567+
568+ if (prefs.ShowMilitary)
569+ layout.set_text (now.format ("%H:%M"), -1);
570+ else
571+ layout.set_text (now.format ("%l:%M").chug (), -1);
572+
573+ Pango.Rectangle ink_rect, logical_rect;
574+ layout.get_pixel_extents (out ink_rect, out logical_rect);
575+
576+ int timeYOffset = prefs.ShowMilitary ? timeSize : timeSize / 2;
577+ int timeXOffset = (surface.Width - ink_rect.width) / 2;
578+ if (prefs.ShowDate)
579+ cr.move_to (timeXOffset, timeYOffset);
580+ else
581+ cr.move_to (timeXOffset, timeYOffset + timeSize / 2);
582+
583+ Pango.cairo_layout_path (cr, layout);
584+ cr.set_line_width (3);
585+ cr.set_source_rgba (0, 0, 0, 0.5);
586+ cr.stroke_preserve ();
587+ cr.set_source_rgba (1, 1, 1, 0.8);
588+ cr.fill ();
589+
590+ // draw the date, outlined
591+ if (prefs.ShowDate) {
592+ layout.get_font_description ().set_absolute_size ((int) (dateSize * Pango.SCALE));
593+
594+ layout.set_text (now.format ("%b %d"), -1);
595+ layout.get_pixel_extents (out ink_rect, out logical_rect);
596+ cr.move_to ((surface.Width - ink_rect.width) / 2, surface.Height - spacing - dateSize);
597+
598+ Pango.cairo_layout_path (cr, layout);
599+ cr.set_line_width (2.5);
600+ cr.set_source_rgba (0, 0, 0, 0.5);
601+ cr.stroke_preserve ();
602+ cr.set_source_rgba (1, 1, 1, 0.8);
603+ cr.fill ();
604+ }
605+
606+ if (!prefs.ShowMilitary) {
607+ layout.get_font_description ().set_absolute_size ((int) (ampmSize * Pango.SCALE));
608+
609+ int yOffset = (prefs.ShowDate ? center - spacing : surface.Height - spacing - ampmSize);
610+
611+ // draw AM indicator
612+ layout.set_text ("am", -1);
613+ layout.get_pixel_extents (out ink_rect, out logical_rect);
614+ cr.move_to ((center - ink_rect.width) / 2, yOffset);
615+ Pango.cairo_layout_path (cr, layout);
616+ cr.set_line_width (2);
617+ if (now.get_hour () < 12)
618+ cr.set_source_rgba (0, 0, 0, 0.5);
619+ else
620+ cr.set_source_rgba (1, 1, 1, 0.4);
621+ cr.stroke_preserve ();
622+ if (now.get_hour () < 12)
623+ cr.set_source_rgba (1, 1, 1, 0.8);
624+ else
625+ cr.set_source_rgba (0, 0, 0, 0.5);
626+ cr.fill ();
627+
628+ // draw PM indicator
629+ layout.set_text ("pm", -1);
630+ layout.get_pixel_extents (out ink_rect, out logical_rect);
631+ cr.move_to (center + (center - ink_rect.width) / 2, yOffset);
632+ Pango.cairo_layout_path (cr, layout);
633+ cr.set_line_width (2);
634+ if (now.get_hour () < 12)
635+ cr.set_source_rgba (1, 1, 1, 0.4);
636+ else
637+ cr.set_source_rgba (0, 0, 0, 0.5);
638+ cr.stroke_preserve ();
639+ if (now.get_hour () < 12)
640+ cr.set_source_rgba (0, 0, 0, 0.5);
641+ else
642+ cr.set_source_rgba (1, 1, 1, 0.8);
643+ cr.fill ();
644+ }
645+ }
646+
647+ void render_analog_clock (Cairo.Context cr, DateTime now, int size)
648+ {
649+ int center = size / 2;
650+ var radius = center;
651+
652+ render_file_onto_context (cr, current_theme + "/clock-drop-shadow.svg", radius * 2);
653+ render_file_onto_context (cr, current_theme + "/clock-face-shadow.svg", radius * 2);
654+ render_file_onto_context (cr, current_theme + "/clock-face.svg", radius * 2);
655+ render_file_onto_context (cr, current_theme + "/clock-marks.svg", radius * 2);
656+
657+ cr.translate (center, center);
658+ cr.set_source_rgba (0.15, 0.15, 0.15, 1);
659+
660+ cr.set_line_width (double.max (1.0, size / 48.0));
661+ cr.set_line_cap (Cairo.LineCap.ROUND);
662+ var minuteRotation = Math.PI * (now.get_minute () / 30.0 + 1.0);
663+ cr.rotate (minuteRotation);
664+ cr.move_to (0, radius - radius * 0.35);
665+ cr.line_to (0, 0 - radius * 0.15);
666+ cr.stroke ();
667+ cr.rotate (0 - minuteRotation);
668+
669+ cr.set_source_rgba (0, 0, 0, 1);
670+ var total_hours = (current_theme.has_suffix ("24") ? 24 : 12);
671+ var hourRotation = Math.PI * ((now.get_hour () % total_hours) / (total_hours / 2.0) + now.get_minute () / (30.0 * total_hours) + 1.0);
672+ cr.rotate (hourRotation);
673+ cr.move_to (0, radius - radius * 0.5);
674+ cr.line_to (0, 0 - radius * 0.15);
675+ cr.stroke ();
676+ cr.rotate (0 - hourRotation);
677+
678+ cr.translate (0 - center, 0 - center);
679+
680+ render_file_onto_context (cr, current_theme + "/clock-glass.svg", radius * 2);
681+ render_file_onto_context (cr, current_theme + "/clock-frame.svg", radius * 2);
682+ }
683+
684+ public override Gee.ArrayList<Gtk.MenuItem> get_menu_items ()
685+ {
686+ unowned ClockPreferences prefs = (ClockPreferences) Prefs;
687+ var items = new Gee.ArrayList<Gtk.MenuItem> ();
688+
689+ var checked_item = new Gtk.CheckMenuItem.with_mnemonic (_("Di_gital Clock"));
690+ checked_item.active = prefs.ShowDigital;
691+ checked_item.activate.connect (() => {
692+ prefs.ShowDigital = !prefs.ShowDigital;
693+ });
694+ items.add (checked_item);
695+
696+ checked_item = new Gtk.CheckMenuItem.with_mnemonic (_("24-Hour _Clock"));
697+ checked_item.active = prefs.ShowMilitary;
698+ checked_item.activate.connect (() => {
699+ prefs.ShowMilitary = !prefs.ShowMilitary;
700+ });
701+ items.add (checked_item);
702+
703+ checked_item = new Gtk.CheckMenuItem.with_mnemonic (_("Show _Date"));
704+ checked_item.active = prefs.ShowDate;
705+ checked_item.sensitive = prefs.ShowDigital;
706+ checked_item.activate.connect (() => {
707+ prefs.ShowDate = !prefs.ShowDate;
708+ });
709+ items.add (checked_item);
710+
711+ return items;
712+ }
713+ }
714+}
715
716=== added file 'docklets/Clock/ClockDocklet.vala'
717--- docklets/Clock/ClockDocklet.vala 1970-01-01 00:00:00 +0000
718+++ docklets/Clock/ClockDocklet.vala 2015-11-02 08:43:01 +0000
719@@ -0,0 +1,36 @@
720+//
721+// Copyright (C) 2011 Robert Dyer
722+//
723+// This file is part of Plank.
724+//
725+// Plank is free software: you can redistribute it and/or modify
726+// it under the terms of the GNU General Public License as published by
727+// the Free Software Foundation, either version 3 of the License, or
728+// (at your option) any later version.
729+//
730+// Plank is distributed in the hope that it will be useful,
731+// but WITHOUT ANY WARRANTY; without even the implied warranty of
732+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
733+// GNU General Public License for more details.
734+//
735+// You should have received a copy of the GNU General Public License
736+// along with this program. If not, see <http://www.gnu.org/licenses/>.
737+//
738+
739+public static void docklet_init (Docky.DockletManager manager)
740+{
741+ manager.register_docklet ("Clock", typeof (Docky.ClockDocklet));
742+}
743+
744+namespace Docky
745+{
746+ public const string G_RESOURCE_PATH = "/net/launchpad/plank/docklets/clock";
747+
748+ public class ClockDocklet : Docklet
749+ {
750+ public override Plank.Items.DockElement make_element (string launcher, GLib.File file)
751+ {
752+ return new ClockDockItem.with_dockitem_file (file);
753+ }
754+ }
755+}
756
757=== added file 'docklets/Clock/ClockPreferences.vala'
758--- docklets/Clock/ClockPreferences.vala 1970-01-01 00:00:00 +0000
759+++ docklets/Clock/ClockPreferences.vala 2015-11-02 08:43:01 +0000
760@@ -0,0 +1,49 @@
761+//
762+// Copyright (C) 2011 Robert Dyer
763+//
764+// This file is part of Plank.
765+//
766+// Plank is free software: you can redistribute it and/or modify
767+// it under the terms of the GNU General Public License as published by
768+// the Free Software Foundation, either version 3 of the License, or
769+// (at your option) any later version.
770+//
771+// Plank is distributed in the hope that it will be useful,
772+// but WITHOUT ANY WARRANTY; without even the implied warranty of
773+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
774+// GNU General Public License for more details.
775+//
776+// You should have received a copy of the GNU General Public License
777+// along with this program. If not, see <http://www.gnu.org/licenses/>.
778+//
779+
780+using Plank.Items;
781+using Plank.Services;
782+using Plank.Widgets;
783+
784+namespace Docky
785+{
786+ public class ClockPreferences : DockItemPreferences
787+ {
788+ [Description(nick = "show-military", blurb = "If the clock shows 24hr time (when showing digital and in the hover).")]
789+ public bool ShowMilitary { get; set; }
790+
791+ [Description(nick = "show-digital", blurb = "If the clock shows a digital clock (true) or an analog clock (false).")]
792+ public bool ShowDigital { get; set; }
793+
794+ [Description(nick = "show-date", blurb = "If the clock shows the date in digital mode.")]
795+ public bool ShowDate { get; set; }
796+
797+ public ClockPreferences.with_file (GLib.File file)
798+ {
799+ base.with_file (file);
800+ }
801+
802+ protected override void reset_properties ()
803+ {
804+ ShowMilitary = false;
805+ ShowDigital = false;
806+ ShowDate = false;
807+ }
808+ }
809+}
810
811=== added file 'docklets/Clock/Makefile.am'
812--- docklets/Clock/Makefile.am 1970-01-01 00:00:00 +0000
813+++ docklets/Clock/Makefile.am 2015-11-02 08:43:01 +0000
814@@ -0,0 +1,83 @@
815+include $(top_srcdir)/Makefile.common
816+
817+VAPIDIR = $(top_srcdir)/vapi
818+
819+BUILT_SOURCES = \
820+ docky-clock-resources.c \
821+ $(NULL)
822+
823+libdocklet_clock_la_LTLIBRARIES = libdocklet-clock.la
824+
825+libdocklet_clock_ladir = $(pkglibdir)/docklets
826+
827+libdocklet_clock_la_VALASOURCES = \
828+ ClockDockItem.vala \
829+ ClockDocklet.vala \
830+ ClockPreferences.vala \
831+ $(NULL)
832+
833+nodist_libdocklet_clock_la_SOURCES = \
834+ $(BUILT_SOURCES) \
835+ $(libdocklet_clock_la_VALASOURCES:.vala=.c) \
836+ $(NULL)
837+
838+libdocklet_clock_la_VALAFLAGS = \
839+ $(PLANK_CORE_VALAFLAGS) \
840+ $(VAPIDIR)/config.vapi \
841+ --vapidir $(top_srcdir)/vapi \
842+ --vapidir $(top_builddir)/lib \
843+ --pkg plank \
844+ --pkg plank-docklets \
845+ $(NULL)
846+
847+libdocklet_clock_la_LIBADD = \
848+ $(PLANK_CORE_LIBS) \
849+ $(NULL)
850+
851+libdocklet_clock_la_LDFLAGS = \
852+ $(DOCKLET_LDFLAGS) \
853+ $(PLANK_CORE_LDFLAGS) \
854+ $(top_builddir)/lib/libplank.la \
855+ $(top_builddir)/lib/libplank-docklets.la \
856+ $(NULL)
857+
858+libdocklet_clock_la_CFLAGS = \
859+ $(PLANK_CORE_CFLAGS) \
860+ -include config.h -w \
861+ -I$(top_builddir)/lib \
862+ $(NULL)
863+
864+docky-clock-resources.c: $(srcdir)/clock.gresource.xml Makefile $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies --sourcedir $(srcdir) $(srcdir)/clock.gresource.xml)
865+ $(AM_V_GEN) XMLLINT=$(XMLLINT) $(GLIB_COMPILE_RESOURCES) --target $@ --sourcedir $(srcdir) --generate --c-name docky_clock $<
866+
867+$(libdocklet_clock_la_VALASOURCES:.vala=.c): libdocklet_clock_la_vala.stamp
868+
869+libdocklet_clock_la_vala.stamp: $(libdocklet_clock_la_VALASOURCES) $(top_builddir)/lib/plank-docklets.vapi Makefile
870+ $(AM_V_VALA)$(VALAC) \
871+ $(libdocklet_clock_la_VALAFLAGS) \
872+ -C \
873+ $(filter %.vala %.c,$^)
874+ $(AM_V_at)touch $@
875+
876+CLEANFILES = \
877+ libdocklet_clock_la_vala.stamp \
878+ $(nodist_libdocklet_clock_la_SOURCES) \
879+ $(NULL)
880+
881+EXTRA_DIST = \
882+ $(libdocklet_clock_la_VALASOURCES) \
883+ clock.gresource.xml \
884+ themes/Default/clock-drop-shadow.svg \
885+ themes/Default/clock-face.svg \
886+ themes/Default/clock-face-shadow.svg \
887+ themes/Default/clock-frame.svg \
888+ themes/Default/clock-glass.svg \
889+ themes/Default/clock-marks.svg \
890+ themes/Default24/clock-drop-shadow.svg \
891+ themes/Default24/clock-face.svg \
892+ themes/Default24/clock-face-shadow.svg \
893+ themes/Default24/clock-frame.svg \
894+ themes/Default24/clock-glass.svg \
895+ themes/Default24/clock-marks.svg \
896+ $(NULL)
897+
898
899=== added file 'docklets/Clock/clock.gresource.xml'
900--- docklets/Clock/clock.gresource.xml 1970-01-01 00:00:00 +0000
901+++ docklets/Clock/clock.gresource.xml 2015-11-02 08:43:01 +0000
902@@ -0,0 +1,33 @@
903+<?xml version="1.0" encoding="UTF-8"?>
904+<!--
905+ Copyright (C) 2015 Rico Tzschichholz
906+
907+ This program is free software: you can redistribute it and/or modify
908+ it under the terms of the GNU General Public License as published by
909+ the Free Software Foundation, either version 3 of the License, or
910+ (at your option) any later version.
911+
912+ This program is distributed in the hope that it will be useful,
913+ but WITHOUT ANY WARRANTY; without even the implied warranty of
914+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
915+ GNU General Public License for more details.
916+
917+ You should have received a copy of the GNU General Public License
918+ along with this program. If not, see <http: www.gnu.org/licenses/>.
919+-->
920+<gresources>
921+ <gresource prefix="/net/launchpad/plank/docklets/clock">
922+ <file compressed="true" preprocess="xml-stripblanks">themes/Default/clock-drop-shadow.svg</file>
923+ <file compressed="true" preprocess="xml-stripblanks">themes/Default/clock-face.svg</file>
924+ <file compressed="true" preprocess="xml-stripblanks">themes/Default/clock-face-shadow.svg</file>
925+ <file compressed="true" preprocess="xml-stripblanks">themes/Default/clock-frame.svg</file>
926+ <file compressed="true" preprocess="xml-stripblanks">themes/Default/clock-glass.svg</file>
927+ <file compressed="true" preprocess="xml-stripblanks">themes/Default/clock-marks.svg</file>
928+ <file compressed="true" preprocess="xml-stripblanks">themes/Default24/clock-drop-shadow.svg</file>
929+ <file compressed="true" preprocess="xml-stripblanks">themes/Default24/clock-face.svg</file>
930+ <file compressed="true" preprocess="xml-stripblanks">themes/Default24/clock-face-shadow.svg</file>
931+ <file compressed="true" preprocess="xml-stripblanks">themes/Default24/clock-frame.svg</file>
932+ <file compressed="true" preprocess="xml-stripblanks">themes/Default24/clock-glass.svg</file>
933+ <file compressed="true" preprocess="xml-stripblanks">themes/Default24/clock-marks.svg</file>
934+ </gresource>
935+</gresources>
936
937=== added directory 'docklets/Clock/themes'
938=== added directory 'docklets/Clock/themes/Default'
939=== added file 'docklets/Clock/themes/Default/clock-drop-shadow.svg'
940--- docklets/Clock/themes/Default/clock-drop-shadow.svg 1970-01-01 00:00:00 +0000
941+++ docklets/Clock/themes/Default/clock-drop-shadow.svg 2015-11-02 08:43:01 +0000
942@@ -0,0 +1,144 @@
943+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
944+<!-- Created with Inkscape (http://www.inkscape.org/) -->
945+<svg
946+ xmlns:dc="http://purl.org/dc/elements/1.1/"
947+ xmlns:cc="http://web.resource.org/cc/"
948+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
949+ xmlns:svg="http://www.w3.org/2000/svg"
950+ xmlns="http://www.w3.org/2000/svg"
951+ xmlns:xlink="http://www.w3.org/1999/xlink"
952+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
953+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
954+ width="100"
955+ height="100"
956+ id="svg2"
957+ sodipodi:version="0.32"
958+ inkscape:version="0.45pre1"
959+ version="1.0"
960+ sodipodi:docbase="/home/mirco/src/cairo-clock-0.3.2/themes/default"
961+ sodipodi:docname="clock-drop-shadow.svg"
962+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
963+ sodipodi:modified="true">
964+ <defs
965+ id="defs4">
966+ <linearGradient
967+ id="linearGradient2202">
968+ <stop
969+ style="stop-color:#000000;stop-opacity:1;"
970+ offset="0"
971+ id="stop2204" />
972+ <stop
973+ id="stop2200"
974+ offset="0.86259544"
975+ style="stop-color:#000000;stop-opacity:0.49803922;" />
976+ <stop
977+ style="stop-color:#000000;stop-opacity:0;"
978+ offset="1"
979+ id="stop2206" />
980+ </linearGradient>
981+ <radialGradient
982+ inkscape:collect="always"
983+ xlink:href="#linearGradient2202"
984+ id="radialGradient2208"
985+ cx="29.116467"
986+ cy="22.941767"
987+ fx="29.116467"
988+ fy="22.941767"
989+ r="19.174698"
990+ gradientTransform="matrix(0.944994,3.007559e-16,-4.476419e-16,0.65058,1.601592,8.016313)"
991+ gradientUnits="userSpaceOnUse" />
992+ <filter
993+ inkscape:collect="always"
994+ id="filter3270">
995+ <feGaussianBlur
996+ inkscape:collect="always"
997+ stdDeviation="0.7700384"
998+ id="feGaussianBlur3272" />
999+ </filter>
1000+ </defs>
1001+ <sodipodi:namedview
1002+ id="base"
1003+ pagecolor="#ffffff"
1004+ bordercolor="#666666"
1005+ borderopacity="1.0"
1006+ inkscape:pageopacity="0.0"
1007+ inkscape:pageshadow="2"
1008+ inkscape:zoom="4.98"
1009+ inkscape:cx="54.790264"
1010+ inkscape:cy="39.317609"
1011+ inkscape:document-units="px"
1012+ inkscape:current-layer="layer1"
1013+ showguides="true"
1014+ inkscape:guide-bbox="true"
1015+ inkscape:window-width="1280"
1016+ inkscape:window-height="800"
1017+ inkscape:window-x="3"
1018+ inkscape:window-y="50">
1019+ <sodipodi:guide
1020+ orientation="horizontal"
1021+ position="50"
1022+ id="guide1307" />
1023+ <sodipodi:guide
1024+ orientation="vertical"
1025+ position="50"
1026+ id="guide1309" />
1027+ <sodipodi:guide
1028+ orientation="horizontal"
1029+ position="100"
1030+ id="guide1311" />
1031+ <sodipodi:guide
1032+ orientation="vertical"
1033+ position="0"
1034+ id="guide1313" />
1035+ <sodipodi:guide
1036+ orientation="vertical"
1037+ position="100"
1038+ id="guide1315" />
1039+ <sodipodi:guide
1040+ orientation="horizontal"
1041+ position="0"
1042+ id="guide1317" />
1043+ <sodipodi:guide
1044+ orientation="horizontal"
1045+ position="90.060241"
1046+ id="guide1319" />
1047+ <sodipodi:guide
1048+ orientation="vertical"
1049+ position="10.040161"
1050+ id="guide1321" />
1051+ <sodipodi:guide
1052+ orientation="vertical"
1053+ position="90.060241"
1054+ id="guide1323" />
1055+ <sodipodi:guide
1056+ orientation="horizontal"
1057+ position="10.040161"
1058+ id="guide1325" />
1059+ </sodipodi:namedview>
1060+ <metadata
1061+ id="metadata7">
1062+ <rdf:RDF>
1063+ <cc:Work
1064+ rdf:about="">
1065+ <dc:format>image/svg+xml</dc:format>
1066+ <dc:type
1067+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1068+ </cc:Work>
1069+ </rdf:RDF>
1070+ </metadata>
1071+ <g
1072+ inkscape:label="Ebene 1"
1073+ inkscape:groupmode="layer"
1074+ id="layer1">
1075+ <path
1076+ sodipodi:type="arc"
1077+ style="opacity:0.75;fill:url(#radialGradient2208);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3270)"
1078+ id="path1327"
1079+ sodipodi:cx="29.116467"
1080+ sodipodi:cy="22.941767"
1081+ sodipodi:rx="18.674698"
1082+ sodipodi:ry="12.700803"
1083+ d="M 47.791164 22.941767 A 18.674698 12.700803 0 1 1 10.441769,22.941767 A 18.674698 12.700803 0 1 1 47.791164 22.941767 z"
1084+ transform="matrix(2.570433,0,0,3.77945,-22.84399,-34.70931)" />
1085+ </g>
1086+</svg>
1087
1088=== added file 'docklets/Clock/themes/Default/clock-face-shadow.svg'
1089--- docklets/Clock/themes/Default/clock-face-shadow.svg 1970-01-01 00:00:00 +0000
1090+++ docklets/Clock/themes/Default/clock-face-shadow.svg 2015-11-02 08:43:01 +0000
1091@@ -0,0 +1,138 @@
1092+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1093+<!-- Created with Inkscape (http://www.inkscape.org/) -->
1094+<svg
1095+ xmlns:dc="http://purl.org/dc/elements/1.1/"
1096+ xmlns:cc="http://web.resource.org/cc/"
1097+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
1098+ xmlns:svg="http://www.w3.org/2000/svg"
1099+ xmlns="http://www.w3.org/2000/svg"
1100+ xmlns:xlink="http://www.w3.org/1999/xlink"
1101+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
1102+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
1103+ width="100"
1104+ height="100"
1105+ id="svg2"
1106+ sodipodi:version="0.32"
1107+ inkscape:version="0.43"
1108+ version="1.0"
1109+ sodipodi:docbase="/home/mirco/src/svg-test"
1110+ sodipodi:docname="clock-face-shadow.svg">
1111+ <defs
1112+ id="defs4">
1113+ <linearGradient
1114+ id="linearGradient2202">
1115+ <stop
1116+ style="stop-color:#ffffff;stop-opacity:0;"
1117+ offset="0"
1118+ id="stop2204" />
1119+ <stop
1120+ id="stop2202"
1121+ offset="0.78765059"
1122+ style="stop-color:#7f7f7f;stop-opacity:0.49803922;" />
1123+ <stop
1124+ style="stop-color:#3f3f3f;stop-opacity:0.74901961;"
1125+ offset="0.93802023"
1126+ id="stop2205" />
1127+ <stop
1128+ style="stop-color:#000000;stop-opacity:1;"
1129+ offset="1"
1130+ id="stop2206" />
1131+ </linearGradient>
1132+ <radialGradient
1133+ inkscape:collect="always"
1134+ xlink:href="#linearGradient2202"
1135+ id="radialGradient2200"
1136+ cx="28.22608"
1137+ cy="23.644703"
1138+ fx="28.22608"
1139+ fy="23.644703"
1140+ r="18.674698"
1141+ gradientTransform="matrix(1.067943,2.242373e-32,7.881997e-33,0.726316,-1.917757,6.246314)"
1142+ gradientUnits="userSpaceOnUse" />
1143+ </defs>
1144+ <sodipodi:namedview
1145+ id="base"
1146+ pagecolor="#ffffff"
1147+ bordercolor="#666666"
1148+ borderopacity="1.0"
1149+ inkscape:pageopacity="0.0"
1150+ inkscape:pageshadow="2"
1151+ inkscape:zoom="9.96"
1152+ inkscape:cx="50"
1153+ inkscape:cy="50"
1154+ inkscape:document-units="px"
1155+ inkscape:current-layer="layer1"
1156+ showguides="true"
1157+ inkscape:guide-bbox="true"
1158+ inkscape:window-width="1590"
1159+ inkscape:window-height="1172"
1160+ inkscape:window-x="0"
1161+ inkscape:window-y="0">
1162+ <sodipodi:guide
1163+ orientation="horizontal"
1164+ position="50"
1165+ id="guide1307" />
1166+ <sodipodi:guide
1167+ orientation="vertical"
1168+ position="50"
1169+ id="guide1309" />
1170+ <sodipodi:guide
1171+ orientation="horizontal"
1172+ position="100"
1173+ id="guide1311" />
1174+ <sodipodi:guide
1175+ orientation="vertical"
1176+ position="0"
1177+ id="guide1313" />
1178+ <sodipodi:guide
1179+ orientation="vertical"
1180+ position="100"
1181+ id="guide1315" />
1182+ <sodipodi:guide
1183+ orientation="horizontal"
1184+ position="0"
1185+ id="guide1317" />
1186+ <sodipodi:guide
1187+ orientation="horizontal"
1188+ position="90.060241"
1189+ id="guide1319" />
1190+ <sodipodi:guide
1191+ orientation="vertical"
1192+ position="10.040161"
1193+ id="guide1321" />
1194+ <sodipodi:guide
1195+ orientation="vertical"
1196+ position="90.060241"
1197+ id="guide1323" />
1198+ <sodipodi:guide
1199+ orientation="horizontal"
1200+ position="10.040161"
1201+ id="guide1325" />
1202+ </sodipodi:namedview>
1203+ <metadata
1204+ id="metadata7">
1205+ <rdf:RDF>
1206+ <cc:Work
1207+ rdf:about="">
1208+ <dc:format>image/svg+xml</dc:format>
1209+ <dc:type
1210+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1211+ </cc:Work>
1212+ </rdf:RDF>
1213+ </metadata>
1214+ <g
1215+ inkscape:label="Ebene 1"
1216+ inkscape:groupmode="layer"
1217+ id="layer1">
1218+ <path
1219+ sodipodi:type="arc"
1220+ style="opacity:0.75;fill:url(#radialGradient2200);fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
1221+ id="path1327"
1222+ sodipodi:cx="29.116467"
1223+ sodipodi:cy="22.941767"
1224+ sodipodi:rx="18.674698"
1225+ sodipodi:ry="12.700803"
1226+ d="M 47.791164 22.941767 A 18.674698 12.700803 0 1 1 10.441769,22.941767 A 18.674698 12.700803 0 1 1 47.791164 22.941767 z"
1227+ transform="matrix(0,-2.142473,3.150198,0,-22.22091,112.331)" />
1228+ </g>
1229+</svg>
1230
1231=== added file 'docklets/Clock/themes/Default/clock-face.svg'
1232--- docklets/Clock/themes/Default/clock-face.svg 1970-01-01 00:00:00 +0000
1233+++ docklets/Clock/themes/Default/clock-face.svg 2015-11-02 08:43:01 +0000
1234@@ -0,0 +1,128 @@
1235+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1236+<!-- Created with Inkscape (http://www.inkscape.org/) -->
1237+<svg
1238+ xmlns:dc="http://purl.org/dc/elements/1.1/"
1239+ xmlns:cc="http://web.resource.org/cc/"
1240+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
1241+ xmlns:svg="http://www.w3.org/2000/svg"
1242+ xmlns="http://www.w3.org/2000/svg"
1243+ xmlns:xlink="http://www.w3.org/1999/xlink"
1244+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
1245+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
1246+ width="100"
1247+ height="100"
1248+ id="svg2"
1249+ sodipodi:version="0.32"
1250+ inkscape:version="0.43"
1251+ version="1.0"
1252+ sodipodi:docbase="/home/mirco/src/cairo-demo/cairo-candy/themes/default"
1253+ sodipodi:docname="clock-face.svg">
1254+ <defs
1255+ id="defs4">
1256+ <linearGradient
1257+ id="linearGradient2202">
1258+ <stop
1259+ style="stop-color:#cfd3d3;stop-opacity:1;"
1260+ offset="0"
1261+ id="stop2204" />
1262+ <stop
1263+ style="stop-color:#f7fcf9;stop-opacity:1;"
1264+ offset="1"
1265+ id="stop2206" />
1266+ </linearGradient>
1267+ <linearGradient
1268+ inkscape:collect="always"
1269+ xlink:href="#linearGradient2202"
1270+ id="linearGradient3101"
1271+ x1="10.441769"
1272+ y1="22.941767"
1273+ x2="47.791164"
1274+ y2="22.941767"
1275+ gradientUnits="userSpaceOnUse" />
1276+ </defs>
1277+ <sodipodi:namedview
1278+ id="base"
1279+ pagecolor="#ffffff"
1280+ bordercolor="#666666"
1281+ borderopacity="1.0"
1282+ inkscape:pageopacity="0.0"
1283+ inkscape:pageshadow="2"
1284+ inkscape:zoom="9.96"
1285+ inkscape:cx="50"
1286+ inkscape:cy="50"
1287+ inkscape:document-units="px"
1288+ inkscape:current-layer="layer1"
1289+ showguides="true"
1290+ inkscape:guide-bbox="true"
1291+ inkscape:window-width="1592"
1292+ inkscape:window-height="1124"
1293+ inkscape:window-x="0"
1294+ inkscape:window-y="25">
1295+ <sodipodi:guide
1296+ orientation="horizontal"
1297+ position="50"
1298+ id="guide1307" />
1299+ <sodipodi:guide
1300+ orientation="vertical"
1301+ position="50"
1302+ id="guide1309" />
1303+ <sodipodi:guide
1304+ orientation="horizontal"
1305+ position="100"
1306+ id="guide1311" />
1307+ <sodipodi:guide
1308+ orientation="vertical"
1309+ position="0"
1310+ id="guide1313" />
1311+ <sodipodi:guide
1312+ orientation="vertical"
1313+ position="100"
1314+ id="guide1315" />
1315+ <sodipodi:guide
1316+ orientation="horizontal"
1317+ position="0"
1318+ id="guide1317" />
1319+ <sodipodi:guide
1320+ orientation="horizontal"
1321+ position="90.060241"
1322+ id="guide1319" />
1323+ <sodipodi:guide
1324+ orientation="vertical"
1325+ position="10.040161"
1326+ id="guide1321" />
1327+ <sodipodi:guide
1328+ orientation="vertical"
1329+ position="90.060241"
1330+ id="guide1323" />
1331+ <sodipodi:guide
1332+ orientation="horizontal"
1333+ position="10.040161"
1334+ id="guide1325" />
1335+ </sodipodi:namedview>
1336+ <metadata
1337+ id="metadata7">
1338+ <rdf:RDF>
1339+ <cc:Work
1340+ rdf:about="">
1341+ <dc:format>image/svg+xml</dc:format>
1342+ <dc:type
1343+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1344+ </cc:Work>
1345+ </rdf:RDF>
1346+ </metadata>
1347+ <g
1348+ inkscape:label="Ebene 1"
1349+ inkscape:groupmode="layer"
1350+ id="layer1">
1351+ <path
1352+ sodipodi:type="arc"
1353+ style="opacity:1;fill:url(#linearGradient3101);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
1354+ id="path1327"
1355+ sodipodi:cx="29.116467"
1356+ sodipodi:cy="22.941767"
1357+ sodipodi:rx="18.674698"
1358+ sodipodi:ry="12.700803"
1359+ d="M 47.791164 22.941767 A 18.674698 12.700803 0 1 1 10.441769,22.941767 A 18.674698 12.700803 0 1 1 47.791164 22.941767 z"
1360+ transform="matrix(0,-2.142473,3.150198,0,-22.22091,112.331)" />
1361+ </g>
1362+</svg>
1363
1364=== added file 'docklets/Clock/themes/Default/clock-frame.svg'
1365--- docklets/Clock/themes/Default/clock-frame.svg 1970-01-01 00:00:00 +0000
1366+++ docklets/Clock/themes/Default/clock-frame.svg 2015-11-02 08:43:01 +0000
1367@@ -0,0 +1,221 @@
1368+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1369+<!-- Created with Inkscape (http://www.inkscape.org/) -->
1370+<svg
1371+ xmlns:dc="http://purl.org/dc/elements/1.1/"
1372+ xmlns:cc="http://web.resource.org/cc/"
1373+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
1374+ xmlns:svg="http://www.w3.org/2000/svg"
1375+ xmlns="http://www.w3.org/2000/svg"
1376+ xmlns:xlink="http://www.w3.org/1999/xlink"
1377+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
1378+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
1379+ width="100"
1380+ height="100"
1381+ id="svg2"
1382+ sodipodi:version="0.32"
1383+ inkscape:version="0.43"
1384+ version="1.0"
1385+ sodipodi:docbase="/home/mirco/src/svg-test"
1386+ sodipodi:docname="clock-frame.svg">
1387+ <defs
1388+ id="defs4">
1389+ <linearGradient
1390+ id="linearGradient5754">
1391+ <stop
1392+ style="stop-color:#858585;stop-opacity:1;"
1393+ offset="0"
1394+ id="stop5756" />
1395+ <stop
1396+ id="stop5762"
1397+ offset="0.71816796"
1398+ style="stop-color:#979797;stop-opacity:1;" />
1399+ <stop
1400+ style="stop-color:#b3b3b3;stop-opacity:1;"
1401+ offset="0.94836664"
1402+ id="stop5764" />
1403+ <stop
1404+ style="stop-color:#f3f3f3;stop-opacity:1;"
1405+ offset="1"
1406+ id="stop5758" />
1407+ </linearGradient>
1408+ <linearGradient
1409+ id="linearGradient3996">
1410+ <stop
1411+ style="stop-color:#666666;stop-opacity:1;"
1412+ offset="0"
1413+ id="stop3998" />
1414+ <stop
1415+ id="stop4877"
1416+ offset="0.95577621"
1417+ style="stop-color:#acacac;stop-opacity:1;" />
1418+ <stop
1419+ style="stop-color:#cfcfcf;stop-opacity:1;"
1420+ offset="0.97817725"
1421+ id="stop4879" />
1422+ <stop
1423+ style="stop-color:#f2f2f2;stop-opacity:1;"
1424+ offset="1"
1425+ id="stop4000" />
1426+ </linearGradient>
1427+ <linearGradient
1428+ id="linearGradient2202">
1429+ <stop
1430+ style="stop-color:#a5adad;stop-opacity:1;"
1431+ offset="0"
1432+ id="stop2204" />
1433+ <stop
1434+ style="stop-color:#e8f4ed;stop-opacity:1;"
1435+ offset="1"
1436+ id="stop2206" />
1437+ </linearGradient>
1438+ <radialGradient
1439+ inkscape:collect="always"
1440+ xlink:href="#linearGradient3996"
1441+ id="radialGradient4002"
1442+ cx="28.470314"
1443+ cy="23.586941"
1444+ fx="28.470314"
1445+ fy="23.586941"
1446+ r="19.189064"
1447+ gradientTransform="matrix(1,1.016444e-16,-8.254542e-17,0.68115,-6.306154e-15,7.314983)"
1448+ gradientUnits="userSpaceOnUse" />
1449+ <radialGradient
1450+ inkscape:collect="always"
1451+ xlink:href="#linearGradient5754"
1452+ id="radialGradient5760"
1453+ cx="29.983475"
1454+ cy="22.08255"
1455+ fx="29.983475"
1456+ fy="22.08255"
1457+ r="19.04179"
1458+ gradientTransform="matrix(1,0,0,0.686275,0,7.197417)"
1459+ gradientUnits="userSpaceOnUse" />
1460+ </defs>
1461+ <sodipodi:namedview
1462+ id="base"
1463+ pagecolor="#ffffff"
1464+ bordercolor="#666666"
1465+ borderopacity="1.0"
1466+ inkscape:pageopacity="0.0"
1467+ inkscape:pageshadow="2"
1468+ inkscape:zoom="8.0175539"
1469+ inkscape:cx="50.000001"
1470+ inkscape:cy="50.000037"
1471+ inkscape:document-units="px"
1472+ inkscape:current-layer="layer1"
1473+ showguides="true"
1474+ inkscape:guide-bbox="true"
1475+ inkscape:window-width="1155"
1476+ inkscape:window-height="905"
1477+ inkscape:window-x="265"
1478+ inkscape:window-y="147">
1479+ <sodipodi:guide
1480+ orientation="horizontal"
1481+ position="50"
1482+ id="guide1307" />
1483+ <sodipodi:guide
1484+ orientation="vertical"
1485+ position="50"
1486+ id="guide1309" />
1487+ <sodipodi:guide
1488+ orientation="horizontal"
1489+ position="100"
1490+ id="guide1311" />
1491+ <sodipodi:guide
1492+ orientation="vertical"
1493+ position="0"
1494+ id="guide1313" />
1495+ <sodipodi:guide
1496+ orientation="vertical"
1497+ position="100"
1498+ id="guide1315" />
1499+ <sodipodi:guide
1500+ orientation="horizontal"
1501+ position="0"
1502+ id="guide1317" />
1503+ <sodipodi:guide
1504+ orientation="horizontal"
1505+ position="90.060241"
1506+ id="guide1319" />
1507+ <sodipodi:guide
1508+ orientation="vertical"
1509+ position="10.040161"
1510+ id="guide1321" />
1511+ <sodipodi:guide
1512+ orientation="vertical"
1513+ position="90.060241"
1514+ id="guide1323" />
1515+ <sodipodi:guide
1516+ orientation="horizontal"
1517+ position="10.040161"
1518+ id="guide1325" />
1519+ <sodipodi:guide
1520+ orientation="horizontal"
1521+ position="94.97992"
1522+ id="guide2222" />
1523+ <sodipodi:guide
1524+ orientation="horizontal"
1525+ position="5.0200803"
1526+ id="guide2224" />
1527+ <sodipodi:guide
1528+ orientation="vertical"
1529+ position="5.0200803"
1530+ id="guide2226" />
1531+ <sodipodi:guide
1532+ orientation="vertical"
1533+ position="94.97992"
1534+ id="guide2228" />
1535+ <sodipodi:guide
1536+ orientation="horizontal"
1537+ position="92.068273"
1538+ id="guide2232" />
1539+ <sodipodi:guide
1540+ orientation="vertical"
1541+ position="7.9317269"
1542+ id="guide2234" />
1543+ <sodipodi:guide
1544+ orientation="vertical"
1545+ position="91.967871"
1546+ id="guide2236" />
1547+ <sodipodi:guide
1548+ orientation="horizontal"
1549+ position="8.0321285"
1550+ id="guide2238" />
1551+ </sodipodi:namedview>
1552+ <metadata
1553+ id="metadata7">
1554+ <rdf:RDF>
1555+ <cc:Work
1556+ rdf:about="">
1557+ <dc:format>image/svg+xml</dc:format>
1558+ <dc:type
1559+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1560+ </cc:Work>
1561+ </rdf:RDF>
1562+ </metadata>
1563+ <g
1564+ inkscape:label="Ebene 1"
1565+ inkscape:groupmode="layer"
1566+ id="layer1">
1567+ <path
1568+ transform="matrix(0,-2.330758,3.427043,0,-28.62242,117.8634)"
1569+ d="M 47.791164 22.941767 A 18.674698 12.700803 0 1 1 10.441769,22.941767 A 18.674698 12.700803 0 1 1 47.791164 22.941767 z"
1570+ sodipodi:ry="12.700803"
1571+ sodipodi:rx="18.674698"
1572+ sodipodi:cy="22.941767"
1573+ sodipodi:cx="29.116467"
1574+ id="path2230"
1575+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient4002);stroke-width:1.32685327;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
1576+ sodipodi:type="arc" />
1577+ <path
1578+ transform="matrix(0,-2.200244,3.235141,0,-24.21984,114.0633)"
1579+ d="M 47.791164 22.941767 A 18.674698 12.700803 0 1 1 10.441769,22.941767 A 18.674698 12.700803 0 1 1 47.791164 22.941767 z"
1580+ sodipodi:ry="12.700803"
1581+ sodipodi:rx="18.674698"
1582+ sodipodi:cy="22.941767"
1583+ sodipodi:cx="29.116467"
1584+ id="path2240"
1585+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient5760);stroke-width:0.93703967;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
1586+ sodipodi:type="arc" />
1587+ </g>
1588+</svg>
1589
1590=== added file 'docklets/Clock/themes/Default/clock-glass.svg'
1591--- docklets/Clock/themes/Default/clock-glass.svg 1970-01-01 00:00:00 +0000
1592+++ docklets/Clock/themes/Default/clock-glass.svg 2015-11-02 08:43:01 +0000
1593@@ -0,0 +1,112 @@
1594+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1595+<!-- Created with Inkscape (http://www.inkscape.org/) -->
1596+<svg
1597+ xmlns:dc="http://purl.org/dc/elements/1.1/"
1598+ xmlns:cc="http://web.resource.org/cc/"
1599+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
1600+ xmlns:svg="http://www.w3.org/2000/svg"
1601+ xmlns="http://www.w3.org/2000/svg"
1602+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
1603+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
1604+ width="100"
1605+ height="100"
1606+ id="svg2"
1607+ sodipodi:version="0.32"
1608+ inkscape:version="0.43"
1609+ version="1.0"
1610+ sodipodi:docbase="/home/mirco/src/svg-test"
1611+ sodipodi:docname="clock-glass.svg">
1612+ <defs
1613+ id="defs4">
1614+ <linearGradient
1615+ id="linearGradient2202">
1616+ <stop
1617+ style="stop-color:#a5adad;stop-opacity:1;"
1618+ offset="0"
1619+ id="stop2204" />
1620+ <stop
1621+ style="stop-color:#e8f4ed;stop-opacity:1;"
1622+ offset="1"
1623+ id="stop2206" />
1624+ </linearGradient>
1625+ </defs>
1626+ <sodipodi:namedview
1627+ id="base"
1628+ pagecolor="#ffffff"
1629+ bordercolor="#666666"
1630+ borderopacity="1.0"
1631+ inkscape:pageopacity="0.0"
1632+ inkscape:pageshadow="2"
1633+ inkscape:zoom="8.7257792"
1634+ inkscape:cx="66.986517"
1635+ inkscape:cy="46.873326"
1636+ inkscape:document-units="px"
1637+ inkscape:current-layer="layer1"
1638+ showguides="true"
1639+ inkscape:guide-bbox="true"
1640+ inkscape:window-width="1590"
1641+ inkscape:window-height="1172"
1642+ inkscape:window-x="0"
1643+ inkscape:window-y="0">
1644+ <sodipodi:guide
1645+ orientation="horizontal"
1646+ position="50"
1647+ id="guide1307" />
1648+ <sodipodi:guide
1649+ orientation="vertical"
1650+ position="50"
1651+ id="guide1309" />
1652+ <sodipodi:guide
1653+ orientation="horizontal"
1654+ position="100"
1655+ id="guide1311" />
1656+ <sodipodi:guide
1657+ orientation="vertical"
1658+ position="0"
1659+ id="guide1313" />
1660+ <sodipodi:guide
1661+ orientation="vertical"
1662+ position="100"
1663+ id="guide1315" />
1664+ <sodipodi:guide
1665+ orientation="horizontal"
1666+ position="0"
1667+ id="guide1317" />
1668+ <sodipodi:guide
1669+ orientation="horizontal"
1670+ position="90.060241"
1671+ id="guide1319" />
1672+ <sodipodi:guide
1673+ orientation="vertical"
1674+ position="10.040161"
1675+ id="guide1321" />
1676+ <sodipodi:guide
1677+ orientation="vertical"
1678+ position="90.060241"
1679+ id="guide1323" />
1680+ <sodipodi:guide
1681+ orientation="horizontal"
1682+ position="10.040161"
1683+ id="guide1325" />
1684+ </sodipodi:namedview>
1685+ <metadata
1686+ id="metadata7">
1687+ <rdf:RDF>
1688+ <cc:Work
1689+ rdf:about="">
1690+ <dc:format>image/svg+xml</dc:format>
1691+ <dc:type
1692+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1693+ </cc:Work>
1694+ </rdf:RDF>
1695+ </metadata>
1696+ <g
1697+ inkscape:label="Ebene 1"
1698+ inkscape:groupmode="layer"
1699+ id="layer1">
1700+ <path
1701+ style="opacity:1;fill:#dde5f2;fill-opacity:0.24705882;fill-rule:nonzero;stroke:none;stroke-width:0.03849226;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
1702+ d="M 49.03125 9.9375 C 27.593602 10.481231 10.303935 27.933903 10.03125 49.4375 C 10.029069 49.609529 10.03125 49.764957 10.03125 49.9375 C 10.03125 50.110043 10.029069 50.296721 10.03125 50.46875 C 10.097014 55.654824 11.168692 60.592286 13.03125 65.125 C 21.688245 32.263585 47.366788 18.941146 66.71875 13.5625 C 61.934495 11.363025 56.667538 10.07887 51.09375 9.9375 L 49.03125 9.9375 z M 89.96875 47.125 C 83.607127 75.402465 61.667389 85.739963 42.375 89.21875 C 44.696552 89.670506 47.08552 89.937736 49.53125 89.96875 L 50.5625 89.96875 C 72.066101 89.696064 89.518769 72.406394 90.0625 50.96875 C 90.0712 50.625748 90.0625 50.282587 90.0625 49.9375 C 90.0625 49.592413 90.0712 49.249252 90.0625 48.90625 C 90.047276 48.305996 90.010175 47.718429 89.96875 47.125 z "
1703+ id="path1327" />
1704+ </g>
1705+</svg>
1706
1707=== added file 'docklets/Clock/themes/Default/clock-marks.svg'
1708--- docklets/Clock/themes/Default/clock-marks.svg 1970-01-01 00:00:00 +0000
1709+++ docklets/Clock/themes/Default/clock-marks.svg 2015-11-02 08:43:01 +0000
1710@@ -0,0 +1,1163 @@
1711+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1712+<!-- Created with Inkscape (http://www.inkscape.org/) -->
1713+<svg
1714+ xmlns:dc="http://purl.org/dc/elements/1.1/"
1715+ xmlns:cc="http://web.resource.org/cc/"
1716+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
1717+ xmlns:svg="http://www.w3.org/2000/svg"
1718+ xmlns="http://www.w3.org/2000/svg"
1719+ xmlns:xlink="http://www.w3.org/1999/xlink"
1720+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
1721+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
1722+ width="100"
1723+ height="100"
1724+ id="svg2"
1725+ sodipodi:version="0.32"
1726+ inkscape:version="0.43"
1727+ version="1.0"
1728+ sodipodi:docbase="/home/mirco/src/cairo-demo/cairo-candy/themes/default"
1729+ sodipodi:docname="clock-marks.svg">
1730+ <defs
1731+ id="defs4">
1732+ <linearGradient
1733+ id="linearGradient5989">
1734+ <stop
1735+ style="stop-color:#ffffff;stop-opacity:1;"
1736+ offset="0"
1737+ id="stop5991" />
1738+ <stop
1739+ id="stop2316"
1740+ offset="0.56465238"
1741+ style="stop-color:#bcbcbc;stop-opacity:1;" />
1742+ <stop
1743+ style="stop-color:#838383;stop-opacity:1;"
1744+ offset="0.83716005"
1745+ id="stop2318" />
1746+ <stop
1747+ style="stop-color:#3a3a3a;stop-opacity:1;"
1748+ offset="1"
1749+ id="stop5993" />
1750+ </linearGradient>
1751+ <linearGradient
1752+ id="linearGradient3287">
1753+ <stop
1754+ style="stop-color:#ffffff;stop-opacity:1;"
1755+ offset="0"
1756+ id="stop3289" />
1757+ <stop
1758+ style="stop-color:#7f7f7f;stop-opacity:1;"
1759+ offset="1"
1760+ id="stop3291" />
1761+ </linearGradient>
1762+ <linearGradient
1763+ id="linearGradient2202">
1764+ <stop
1765+ style="stop-color:#a5adad;stop-opacity:1;"
1766+ offset="0"
1767+ id="stop2204" />
1768+ <stop
1769+ style="stop-color:#e8f4ed;stop-opacity:1;"
1770+ offset="1"
1771+ id="stop2206" />
1772+ </linearGradient>
1773+ <linearGradient
1774+ id="linearGradient1529">
1775+ <stop
1776+ id="stop1531"
1777+ offset="0"
1778+ style="stop-color:#a5adad;stop-opacity:1;" />
1779+ <stop
1780+ id="stop1533"
1781+ offset="1"
1782+ style="stop-color:#e8f4ed;stop-opacity:1;" />
1783+ </linearGradient>
1784+ <radialGradient
1785+ inkscape:collect="always"
1786+ xlink:href="#linearGradient5989"
1787+ id="radialGradient11602"
1788+ gradientUnits="userSpaceOnUse"
1789+ cx="26.926001"
1790+ cy="40.177113"
1791+ fx="26.926001"
1792+ fy="40.177113"
1793+ r="1.2070918" />
1794+ <radialGradient
1795+ inkscape:collect="always"
1796+ xlink:href="#linearGradient5989"
1797+ id="radialGradient13624"
1798+ gradientUnits="userSpaceOnUse"
1799+ cx="26.926001"
1800+ cy="40.177113"
1801+ fx="26.926001"
1802+ fy="40.177113"
1803+ r="1.2070918" />
1804+ <radialGradient
1805+ inkscape:collect="always"
1806+ xlink:href="#linearGradient5989"
1807+ id="radialGradient13626"
1808+ gradientUnits="userSpaceOnUse"
1809+ cx="26.926001"
1810+ cy="40.177113"
1811+ fx="26.926001"
1812+ fy="40.177113"
1813+ r="1.2070918" />
1814+ <radialGradient
1815+ inkscape:collect="always"
1816+ xlink:href="#linearGradient5989"
1817+ id="radialGradient13628"
1818+ gradientUnits="userSpaceOnUse"
1819+ cx="26.926001"
1820+ cy="40.177113"
1821+ fx="26.926001"
1822+ fy="40.177113"
1823+ r="1.2070918" />
1824+ <radialGradient
1825+ inkscape:collect="always"
1826+ xlink:href="#linearGradient5989"
1827+ id="radialGradient13630"
1828+ gradientUnits="userSpaceOnUse"
1829+ cx="26.926001"
1830+ cy="40.177113"
1831+ fx="26.926001"
1832+ fy="40.177113"
1833+ r="1.2070918" />
1834+ <radialGradient
1835+ inkscape:collect="always"
1836+ xlink:href="#linearGradient5989"
1837+ id="radialGradient13632"
1838+ gradientUnits="userSpaceOnUse"
1839+ cx="26.926001"
1840+ cy="40.177113"
1841+ fx="26.926001"
1842+ fy="40.177113"
1843+ r="1.2070918" />
1844+ <radialGradient
1845+ inkscape:collect="always"
1846+ xlink:href="#linearGradient5989"
1847+ id="radialGradient13634"
1848+ gradientUnits="userSpaceOnUse"
1849+ cx="26.926001"
1850+ cy="40.177113"
1851+ fx="26.926001"
1852+ fy="40.177113"
1853+ r="1.2070918" />
1854+ <radialGradient
1855+ inkscape:collect="always"
1856+ xlink:href="#linearGradient5989"
1857+ id="radialGradient13636"
1858+ gradientUnits="userSpaceOnUse"
1859+ cx="26.926001"
1860+ cy="40.177113"
1861+ fx="26.926001"
1862+ fy="40.177113"
1863+ r="1.2070918" />
1864+ <radialGradient
1865+ inkscape:collect="always"
1866+ xlink:href="#linearGradient5989"
1867+ id="radialGradient13638"
1868+ gradientUnits="userSpaceOnUse"
1869+ cx="26.926001"
1870+ cy="40.177113"
1871+ fx="26.926001"
1872+ fy="40.177113"
1873+ r="1.2070918" />
1874+ <radialGradient
1875+ inkscape:collect="always"
1876+ xlink:href="#linearGradient5989"
1877+ id="radialGradient13640"
1878+ gradientUnits="userSpaceOnUse"
1879+ cx="26.926001"
1880+ cy="40.177113"
1881+ fx="26.926001"
1882+ fy="40.177113"
1883+ r="1.2070918" />
1884+ <radialGradient
1885+ inkscape:collect="always"
1886+ xlink:href="#linearGradient5989"
1887+ id="radialGradient13642"
1888+ gradientUnits="userSpaceOnUse"
1889+ cx="26.926001"
1890+ cy="40.177113"
1891+ fx="26.926001"
1892+ fy="40.177113"
1893+ r="1.2070918" />
1894+ <radialGradient
1895+ inkscape:collect="always"
1896+ xlink:href="#linearGradient5989"
1897+ id="radialGradient13644"
1898+ gradientUnits="userSpaceOnUse"
1899+ cx="26.926001"
1900+ cy="40.177113"
1901+ fx="26.926001"
1902+ fy="40.177113"
1903+ r="1.2070918" />
1904+ <radialGradient
1905+ inkscape:collect="always"
1906+ xlink:href="#linearGradient5989"
1907+ id="radialGradient13648"
1908+ gradientUnits="userSpaceOnUse"
1909+ cx="26.926001"
1910+ cy="40.177113"
1911+ fx="26.926001"
1912+ fy="40.177113"
1913+ r="1.2070918" />
1914+ <radialGradient
1915+ inkscape:collect="always"
1916+ xlink:href="#linearGradient5989"
1917+ id="radialGradient13652"
1918+ gradientUnits="userSpaceOnUse"
1919+ cx="26.926001"
1920+ cy="40.177113"
1921+ fx="26.926001"
1922+ fy="40.177113"
1923+ r="1.2070918" />
1924+ <radialGradient
1925+ inkscape:collect="always"
1926+ xlink:href="#linearGradient5989"
1927+ id="radialGradient13656"
1928+ gradientUnits="userSpaceOnUse"
1929+ cx="26.926001"
1930+ cy="40.177113"
1931+ fx="26.926001"
1932+ fy="40.177113"
1933+ r="1.2070918" />
1934+ <radialGradient
1935+ inkscape:collect="always"
1936+ xlink:href="#linearGradient5989"
1937+ id="radialGradient13660"
1938+ gradientUnits="userSpaceOnUse"
1939+ cx="26.926001"
1940+ cy="40.177113"
1941+ fx="26.926001"
1942+ fy="40.177113"
1943+ r="1.2070918" />
1944+ <radialGradient
1945+ inkscape:collect="always"
1946+ xlink:href="#linearGradient5989"
1947+ id="radialGradient13664"
1948+ gradientUnits="userSpaceOnUse"
1949+ cx="26.926001"
1950+ cy="40.177113"
1951+ fx="26.926001"
1952+ fy="40.177113"
1953+ r="1.2070918" />
1954+ <radialGradient
1955+ inkscape:collect="always"
1956+ xlink:href="#linearGradient5989"
1957+ id="radialGradient13668"
1958+ gradientUnits="userSpaceOnUse"
1959+ cx="26.926001"
1960+ cy="40.177113"
1961+ fx="26.926001"
1962+ fy="40.177113"
1963+ r="1.2070918" />
1964+ <radialGradient
1965+ inkscape:collect="always"
1966+ xlink:href="#linearGradient5989"
1967+ id="radialGradient13672"
1968+ gradientUnits="userSpaceOnUse"
1969+ cx="26.926001"
1970+ cy="40.177113"
1971+ fx="26.926001"
1972+ fy="40.177113"
1973+ r="1.2070918" />
1974+ <radialGradient
1975+ inkscape:collect="always"
1976+ xlink:href="#linearGradient5989"
1977+ id="radialGradient13676"
1978+ gradientUnits="userSpaceOnUse"
1979+ cx="26.926001"
1980+ cy="40.177113"
1981+ fx="26.926001"
1982+ fy="40.177113"
1983+ r="1.2070918" />
1984+ <radialGradient
1985+ inkscape:collect="always"
1986+ xlink:href="#linearGradient5989"
1987+ id="radialGradient13680"
1988+ gradientUnits="userSpaceOnUse"
1989+ cx="26.926001"
1990+ cy="40.177113"
1991+ fx="26.926001"
1992+ fy="40.177113"
1993+ r="1.2070918" />
1994+ <radialGradient
1995+ inkscape:collect="always"
1996+ xlink:href="#linearGradient5989"
1997+ id="radialGradient13684"
1998+ gradientUnits="userSpaceOnUse"
1999+ cx="26.926001"
2000+ cy="40.177113"
2001+ fx="26.926001"
2002+ fy="40.177113"
2003+ r="1.2070918" />
2004+ <radialGradient
2005+ inkscape:collect="always"
2006+ xlink:href="#linearGradient5989"
2007+ id="radialGradient13688"
2008+ gradientUnits="userSpaceOnUse"
2009+ cx="26.926001"
2010+ cy="40.177113"
2011+ fx="26.926001"
2012+ fy="40.177113"
2013+ r="1.2070918" />
2014+ <radialGradient
2015+ inkscape:collect="always"
2016+ xlink:href="#linearGradient5989"
2017+ id="radialGradient13692"
2018+ gradientUnits="userSpaceOnUse"
2019+ cx="26.926001"
2020+ cy="40.177113"
2021+ fx="26.926001"
2022+ fy="40.177113"
2023+ r="1.2070918" />
2024+ <radialGradient
2025+ inkscape:collect="always"
2026+ xlink:href="#linearGradient5989"
2027+ id="radialGradient13696"
2028+ gradientUnits="userSpaceOnUse"
2029+ cx="26.926001"
2030+ cy="40.177113"
2031+ fx="26.926001"
2032+ fy="40.177113"
2033+ r="1.2070918" />
2034+ <radialGradient
2035+ inkscape:collect="always"
2036+ xlink:href="#linearGradient5989"
2037+ id="radialGradient13700"
2038+ gradientUnits="userSpaceOnUse"
2039+ cx="26.926001"
2040+ cy="40.177113"
2041+ fx="26.926001"
2042+ fy="40.177113"
2043+ r="1.2070918" />
2044+ <radialGradient
2045+ inkscape:collect="always"
2046+ xlink:href="#linearGradient5989"
2047+ id="radialGradient13704"
2048+ gradientUnits="userSpaceOnUse"
2049+ cx="26.926001"
2050+ cy="40.177113"
2051+ fx="26.926001"
2052+ fy="40.177113"
2053+ r="1.2070918" />
2054+ <radialGradient
2055+ inkscape:collect="always"
2056+ xlink:href="#linearGradient5989"
2057+ id="radialGradient13708"
2058+ gradientUnits="userSpaceOnUse"
2059+ cx="26.926001"
2060+ cy="40.177113"
2061+ fx="26.926001"
2062+ fy="40.177113"
2063+ r="1.2070918" />
2064+ <radialGradient
2065+ inkscape:collect="always"
2066+ xlink:href="#linearGradient5989"
2067+ id="radialGradient13712"
2068+ gradientUnits="userSpaceOnUse"
2069+ cx="26.926001"
2070+ cy="40.177113"
2071+ fx="26.926001"
2072+ fy="40.177113"
2073+ r="1.2070918" />
2074+ <radialGradient
2075+ inkscape:collect="always"
2076+ xlink:href="#linearGradient5989"
2077+ id="radialGradient13716"
2078+ gradientUnits="userSpaceOnUse"
2079+ cx="26.926001"
2080+ cy="40.177113"
2081+ fx="26.926001"
2082+ fy="40.177113"
2083+ r="1.2070918" />
2084+ <radialGradient
2085+ inkscape:collect="always"
2086+ xlink:href="#linearGradient5989"
2087+ id="radialGradient13720"
2088+ gradientUnits="userSpaceOnUse"
2089+ cx="26.926001"
2090+ cy="40.177113"
2091+ fx="26.926001"
2092+ fy="40.177113"
2093+ r="1.2070918" />
2094+ <radialGradient
2095+ inkscape:collect="always"
2096+ xlink:href="#linearGradient5989"
2097+ id="radialGradient13724"
2098+ gradientUnits="userSpaceOnUse"
2099+ cx="26.926001"
2100+ cy="40.177113"
2101+ fx="26.926001"
2102+ fy="40.177113"
2103+ r="1.2070918" />
2104+ <radialGradient
2105+ inkscape:collect="always"
2106+ xlink:href="#linearGradient5989"
2107+ id="radialGradient13728"
2108+ gradientUnits="userSpaceOnUse"
2109+ cx="26.926001"
2110+ cy="40.177113"
2111+ fx="26.926001"
2112+ fy="40.177113"
2113+ r="1.2070918" />
2114+ <radialGradient
2115+ inkscape:collect="always"
2116+ xlink:href="#linearGradient5989"
2117+ id="radialGradient13732"
2118+ gradientUnits="userSpaceOnUse"
2119+ cx="26.926001"
2120+ cy="40.177113"
2121+ fx="26.926001"
2122+ fy="40.177113"
2123+ r="1.2070918" />
2124+ <radialGradient
2125+ inkscape:collect="always"
2126+ xlink:href="#linearGradient5989"
2127+ id="radialGradient13736"
2128+ gradientUnits="userSpaceOnUse"
2129+ cx="26.926001"
2130+ cy="40.177113"
2131+ fx="26.926001"
2132+ fy="40.177113"
2133+ r="1.2070918" />
2134+ <radialGradient
2135+ inkscape:collect="always"
2136+ xlink:href="#linearGradient5989"
2137+ id="radialGradient13740"
2138+ gradientUnits="userSpaceOnUse"
2139+ cx="26.926001"
2140+ cy="40.177113"
2141+ fx="26.926001"
2142+ fy="40.177113"
2143+ r="1.2070918" />
2144+ <radialGradient
2145+ inkscape:collect="always"
2146+ xlink:href="#linearGradient5989"
2147+ id="radialGradient13744"
2148+ gradientUnits="userSpaceOnUse"
2149+ cx="26.926001"
2150+ cy="40.177113"
2151+ fx="26.926001"
2152+ fy="40.177113"
2153+ r="1.2070918" />
2154+ <radialGradient
2155+ inkscape:collect="always"
2156+ xlink:href="#linearGradient5989"
2157+ id="radialGradient13748"
2158+ gradientUnits="userSpaceOnUse"
2159+ cx="26.926001"
2160+ cy="40.177113"
2161+ fx="26.926001"
2162+ fy="40.177113"
2163+ r="1.2070918" />
2164+ <radialGradient
2165+ inkscape:collect="always"
2166+ xlink:href="#linearGradient5989"
2167+ id="radialGradient13752"
2168+ gradientUnits="userSpaceOnUse"
2169+ cx="26.926001"
2170+ cy="40.177113"
2171+ fx="26.926001"
2172+ fy="40.177113"
2173+ r="1.2070918" />
2174+ <radialGradient
2175+ inkscape:collect="always"
2176+ xlink:href="#linearGradient5989"
2177+ id="radialGradient13756"
2178+ gradientUnits="userSpaceOnUse"
2179+ cx="26.926001"
2180+ cy="40.177113"
2181+ fx="26.926001"
2182+ fy="40.177113"
2183+ r="1.2070918" />
2184+ <radialGradient
2185+ inkscape:collect="always"
2186+ xlink:href="#linearGradient5989"
2187+ id="radialGradient13760"
2188+ gradientUnits="userSpaceOnUse"
2189+ cx="26.926001"
2190+ cy="40.177113"
2191+ fx="26.926001"
2192+ fy="40.177113"
2193+ r="1.2070918" />
2194+ <radialGradient
2195+ inkscape:collect="always"
2196+ xlink:href="#linearGradient5989"
2197+ id="radialGradient13764"
2198+ gradientUnits="userSpaceOnUse"
2199+ cx="26.926001"
2200+ cy="40.177113"
2201+ fx="26.926001"
2202+ fy="40.177113"
2203+ r="1.2070918" />
2204+ <radialGradient
2205+ inkscape:collect="always"
2206+ xlink:href="#linearGradient5989"
2207+ id="radialGradient13768"
2208+ gradientUnits="userSpaceOnUse"
2209+ cx="26.926001"
2210+ cy="40.177113"
2211+ fx="26.926001"
2212+ fy="40.177113"
2213+ r="1.2070918" />
2214+ <radialGradient
2215+ inkscape:collect="always"
2216+ xlink:href="#linearGradient5989"
2217+ id="radialGradient13772"
2218+ gradientUnits="userSpaceOnUse"
2219+ cx="26.926001"
2220+ cy="40.177113"
2221+ fx="26.926001"
2222+ fy="40.177113"
2223+ r="1.2070918" />
2224+ <radialGradient
2225+ inkscape:collect="always"
2226+ xlink:href="#linearGradient5989"
2227+ id="radialGradient13776"
2228+ gradientUnits="userSpaceOnUse"
2229+ cx="26.926001"
2230+ cy="40.177113"
2231+ fx="26.926001"
2232+ fy="40.177113"
2233+ r="1.2070918" />
2234+ <radialGradient
2235+ inkscape:collect="always"
2236+ xlink:href="#linearGradient5989"
2237+ id="radialGradient13780"
2238+ gradientUnits="userSpaceOnUse"
2239+ cx="26.926001"
2240+ cy="40.177113"
2241+ fx="26.926001"
2242+ fy="40.177113"
2243+ r="1.2070918" />
2244+ <radialGradient
2245+ inkscape:collect="always"
2246+ xlink:href="#linearGradient5989"
2247+ id="radialGradient13784"
2248+ gradientUnits="userSpaceOnUse"
2249+ cx="26.926001"
2250+ cy="40.177113"
2251+ fx="26.926001"
2252+ fy="40.177113"
2253+ r="1.2070918" />
2254+ <radialGradient
2255+ inkscape:collect="always"
2256+ xlink:href="#linearGradient5989"
2257+ id="radialGradient13788"
2258+ gradientUnits="userSpaceOnUse"
2259+ cx="26.926001"
2260+ cy="40.177113"
2261+ fx="26.926001"
2262+ fy="40.177113"
2263+ r="1.2070918" />
2264+ </defs>
2265+ <sodipodi:namedview
2266+ id="base"
2267+ pagecolor="#ffffff"
2268+ bordercolor="#666666"
2269+ borderopacity="1.0"
2270+ inkscape:pageopacity="0.0"
2271+ inkscape:pageshadow="2"
2272+ inkscape:zoom="12.378312"
2273+ inkscape:cx="50.050192"
2274+ inkscape:cy="50.050212"
2275+ inkscape:document-units="px"
2276+ inkscape:current-layer="layer2"
2277+ showguides="true"
2278+ inkscape:guide-bbox="true"
2279+ inkscape:window-width="1592"
2280+ inkscape:window-height="1124"
2281+ inkscape:window-x="0"
2282+ inkscape:window-y="25">
2283+ <sodipodi:guide
2284+ orientation="horizontal"
2285+ position="50"
2286+ id="guide1307" />
2287+ <sodipodi:guide
2288+ orientation="vertical"
2289+ position="50"
2290+ id="guide1309" />
2291+ <sodipodi:guide
2292+ orientation="horizontal"
2293+ position="100"
2294+ id="guide1311" />
2295+ <sodipodi:guide
2296+ orientation="vertical"
2297+ position="0"
2298+ id="guide1313" />
2299+ <sodipodi:guide
2300+ orientation="vertical"
2301+ position="100"
2302+ id="guide1315" />
2303+ <sodipodi:guide
2304+ orientation="horizontal"
2305+ position="0"
2306+ id="guide1317" />
2307+ <sodipodi:guide
2308+ orientation="horizontal"
2309+ position="90.060241"
2310+ id="guide1319" />
2311+ <sodipodi:guide
2312+ orientation="vertical"
2313+ position="10.040161"
2314+ id="guide1321" />
2315+ <sodipodi:guide
2316+ orientation="vertical"
2317+ position="90.060241"
2318+ id="guide1323" />
2319+ <sodipodi:guide
2320+ orientation="horizontal"
2321+ position="10.040161"
2322+ id="guide1325" />
2323+ </sodipodi:namedview>
2324+ <metadata
2325+ id="metadata7">
2326+ <rdf:RDF>
2327+ <cc:Work
2328+ rdf:about="">
2329+ <dc:format>image/svg+xml</dc:format>
2330+ <dc:type
2331+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
2332+ </cc:Work>
2333+ </rdf:RDF>
2334+ </metadata>
2335+ <g
2336+ inkscape:label="Ebene 1"
2337+ inkscape:groupmode="layer"
2338+ id="layer1">
2339+ <path
2340+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
2341+ d="M 50,12.439759 L 50,16.656625"
2342+ id="path3103" />
2343+ <path
2344+ id="path4859"
2345+ d="M 68.761701,17.440042 L 66.653267,21.091954"
2346+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:0.99999964px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
2347+ <path
2348+ id="path4871"
2349+ d="M 82.509718,31.15127 L 78.857806,33.259703"
2350+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:0.99999964px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
2351+ <path
2352+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
2353+ d="M 87.560201,49.899553 L 83.343335,49.899553"
2354+ id="path4877" />
2355+ <path
2356+ id="path4883"
2357+ d="M 82.559945,68.6613 L 78.90803,66.552867"
2358+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000048px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
2359+ <path
2360+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000107px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
2361+ d="M 68.848708,82.409315 L 66.740271,78.7574"
2362+ id="path4889" />
2363+ <path
2364+ id="path4895"
2365+ d="M 50.100443,87.459817 L 50.100441,83.242947"
2366+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000095px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
2367+ <path
2368+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000143px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
2369+ d="M 31.33868,82.459533 L 33.447113,78.807613"
2370+ id="path4901" />
2371+ <path
2372+ id="path4907"
2373+ d="M 17.590685,68.748308 L 21.2426,66.639871"
2374+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000107px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
2375+ <path
2376+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000095px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
2377+ d="M 12.540183,50.000043 L 16.757053,50.000041"
2378+ id="path4913" />
2379+ <path
2380+ id="path4919"
2381+ d="M 17.540467,31.23828 L 21.192387,33.346713"
2382+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000143px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
2383+ <path
2384+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000107px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
2385+ d="M 31.251702,17.490285 L 33.360139,21.1422"
2386+ id="path4925" />
2387+ </g>
2388+ <g
2389+ inkscape:groupmode="layer"
2390+ id="layer2"
2391+ inkscape:label="tmp">
2392+ <path
2393+ sodipodi:type="arc"
2394+ style="fill:url(#radialGradient11602);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2395+ id="use9785"
2396+ sodipodi:cx="27.280275"
2397+ sodipodi:cy="40.562798"
2398+ sodipodi:rx="1.2070918"
2399+ sodipodi:ry="1.2070918"
2400+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2401+ transform="matrix(0.412361,0,0,0.412361,76.06967,29.27913)" />
2402+ <path
2403+ transform="matrix(0.412361,0,0,0.412361,75.44209,25.38973)"
2404+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2405+ sodipodi:ry="1.2070918"
2406+ sodipodi:rx="1.2070918"
2407+ sodipodi:cy="40.562798"
2408+ sodipodi:cx="27.280275"
2409+ id="path13602"
2410+ style="fill:url(#radialGradient13644);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2411+ sodipodi:type="arc" />
2412+ <path
2413+ sodipodi:type="arc"
2414+ style="fill:url(#radialGradient13642);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2415+ id="path13604"
2416+ sodipodi:cx="27.280275"
2417+ sodipodi:cy="40.562798"
2418+ sodipodi:rx="1.2070918"
2419+ sodipodi:ry="1.2070918"
2420+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2421+ transform="matrix(0.412361,0,0,0.412361,74.42833,21.59184)" />
2422+ <path
2423+ transform="matrix(0.412361,0,0,0.412361,73.01588,17.91769)"
2424+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2425+ sodipodi:ry="1.2070918"
2426+ sodipodi:rx="1.2070918"
2427+ sodipodi:cy="40.562798"
2428+ sodipodi:cx="27.280275"
2429+ id="path13606"
2430+ style="fill:url(#radialGradient13640);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2431+ sodipodi:type="arc" />
2432+ <path
2433+ sodipodi:type="arc"
2434+ style="fill:url(#radialGradient13638);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2435+ id="path13608"
2436+ sodipodi:cx="27.280275"
2437+ sodipodi:cy="40.562798"
2438+ sodipodi:rx="1.2070918"
2439+ sodipodi:ry="1.2070918"
2440+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2441+ transform="matrix(0.412361,0,0,0.412361,69.08579,11.14663)" />
2442+ <path
2443+ transform="matrix(0.412361,0,0,0.412361,66.61845,8.115808)"
2444+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2445+ sodipodi:ry="1.2070918"
2446+ sodipodi:rx="1.2070918"
2447+ sodipodi:cy="40.562798"
2448+ sodipodi:cx="27.280275"
2449+ id="path13610"
2450+ style="fill:url(#radialGradient13636);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2451+ sodipodi:type="arc" />
2452+ <path
2453+ sodipodi:type="arc"
2454+ style="fill:url(#radialGradient13634);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2455+ id="path13612"
2456+ sodipodi:cx="27.280275"
2457+ sodipodi:cy="40.562798"
2458+ sodipodi:rx="1.2070918"
2459+ sodipodi:ry="1.2070918"
2460+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2461+ transform="matrix(0.412361,0,0,0.412361,63.84403,5.331305)" />
2462+ <path
2463+ transform="matrix(0.412361,0,0,0.412361,60.77652,2.846262)"
2464+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2465+ sodipodi:ry="1.2070918"
2466+ sodipodi:rx="1.2070918"
2467+ sodipodi:cy="40.562798"
2468+ sodipodi:cx="27.280275"
2469+ id="path13614"
2470+ style="fill:url(#radialGradient13632);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2471+ sodipodi:type="arc" />
2472+ <path
2473+ sodipodi:type="arc"
2474+ style="fill:url(#radialGradient13630);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2475+ id="path13616"
2476+ sodipodi:cx="27.280275"
2477+ sodipodi:cy="40.562798"
2478+ sodipodi:rx="1.2070918"
2479+ sodipodi:ry="1.2070918"
2480+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2481+ transform="matrix(0.412361,0,0,0.412361,54.01917,-1.055227)" />
2482+ <path
2483+ transform="matrix(0.412361,0,0,0.412361,50.368,-2.464411)"
2484+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2485+ sodipodi:ry="1.2070918"
2486+ sodipodi:rx="1.2070918"
2487+ sodipodi:cy="40.562798"
2488+ sodipodi:cx="27.280275"
2489+ id="path13618"
2490+ style="fill:url(#radialGradient13628);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2491+ sodipodi:type="arc" />
2492+ <path
2493+ sodipodi:type="arc"
2494+ style="fill:url(#radialGradient13626);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2495+ id="path13620"
2496+ sodipodi:cx="27.280275"
2497+ sodipodi:cy="40.562798"
2498+ sodipodi:rx="1.2070918"
2499+ sodipodi:ry="1.2070918"
2500+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2501+ transform="matrix(0.412361,0,0,0.412361,46.60235,-3.468092)" />
2502+ <path
2503+ transform="matrix(0.412361,0,0,0.412361,42.66136,-4.090057)"
2504+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2505+ sodipodi:ry="1.2070918"
2506+ sodipodi:rx="1.2070918"
2507+ sodipodi:cy="40.562798"
2508+ sodipodi:cx="27.280275"
2509+ id="path13622"
2510+ style="fill:url(#radialGradient13624);fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2511+ sodipodi:type="arc" />
2512+ <path
2513+ transform="matrix(0.412361,0,0,0.412361,76.06537,37.09265)"
2514+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2515+ sodipodi:ry="1.2070918"
2516+ sodipodi:rx="1.2070918"
2517+ sodipodi:cy="40.562798"
2518+ sodipodi:cx="27.280275"
2519+ id="path13646"
2520+ style="fill:url(#radialGradient13648);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2521+ sodipodi:type="arc" />
2522+ <path
2523+ sodipodi:type="arc"
2524+ style="fill:url(#radialGradient13652);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2525+ id="path13650"
2526+ sodipodi:cx="27.280275"
2527+ sodipodi:cy="40.562798"
2528+ sodipodi:rx="1.2070918"
2529+ sodipodi:ry="1.2070918"
2530+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2531+ transform="matrix(0.412361,0,0,0.412361,75.46061,41.00724)" />
2532+ <path
2533+ transform="matrix(0.412361,0,0,0.412361,74.46455,44.75398)"
2534+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2535+ sodipodi:ry="1.2070918"
2536+ sodipodi:rx="1.2070918"
2537+ sodipodi:cy="40.562798"
2538+ sodipodi:cx="27.280275"
2539+ id="path13654"
2540+ style="fill:url(#radialGradient13656);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2541+ sodipodi:type="arc" />
2542+ <path
2543+ sodipodi:type="arc"
2544+ style="fill:url(#radialGradient13660);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2545+ id="path13658"
2546+ sodipodi:cx="27.280275"
2547+ sodipodi:cy="40.562798"
2548+ sodipodi:rx="1.2070918"
2549+ sodipodi:ry="1.2070918"
2550+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2551+ transform="matrix(0.412361,0,0,0.412361,73.07568,48.41773)" />
2552+ <path
2553+ transform="matrix(0.412361,0,0,0.412361,69.17049,55.20698)"
2554+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2555+ sodipodi:ry="1.2070918"
2556+ sodipodi:rx="1.2070918"
2557+ sodipodi:cy="40.562798"
2558+ sodipodi:cx="27.280275"
2559+ id="path13662"
2560+ style="fill:url(#radialGradient13664);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2561+ sodipodi:type="arc" />
2562+ <path
2563+ sodipodi:type="arc"
2564+ style="fill:url(#radialGradient13668);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2565+ id="path13666"
2566+ sodipodi:cx="27.280275"
2567+ sodipodi:cy="40.562798"
2568+ sodipodi:rx="1.2070918"
2569+ sodipodi:ry="1.2070918"
2570+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2571+ transform="matrix(0.412361,0,0,0.412361,66.70315,58.26388)" />
2572+ <path
2573+ transform="matrix(0.412361,0,0,0.412361,63.93087,61.04382)"
2574+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2575+ sodipodi:ry="1.2070918"
2576+ sodipodi:rx="1.2070918"
2577+ sodipodi:cy="40.562798"
2578+ sodipodi:cx="27.280275"
2579+ id="path13670"
2580+ style="fill:url(#radialGradient13672);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2581+ sodipodi:type="arc" />
2582+ <path
2583+ sodipodi:type="arc"
2584+ style="fill:url(#radialGradient13676);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2585+ id="path13674"
2586+ sodipodi:cx="27.280275"
2587+ sodipodi:cy="40.562798"
2588+ sodipodi:rx="1.2070918"
2589+ sodipodi:ry="1.2070918"
2590+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2591+ transform="matrix(0.412361,0,0,0.412361,60.89893,63.50558)" />
2592+ <path
2593+ transform="matrix(0.412361,0,0,0.412361,54.1033,67.4752)"
2594+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2595+ sodipodi:ry="1.2070918"
2596+ sodipodi:rx="1.2070918"
2597+ sodipodi:cy="40.562798"
2598+ sodipodi:cx="27.280275"
2599+ id="path13678"
2600+ style="fill:url(#radialGradient13680);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2601+ sodipodi:type="arc" />
2602+ <path
2603+ sodipodi:type="arc"
2604+ style="fill:url(#radialGradient13684);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2605+ id="path13682"
2606+ sodipodi:cx="27.280275"
2607+ sodipodi:cy="40.562798"
2608+ sodipodi:rx="1.2070918"
2609+ sodipodi:ry="1.2070918"
2610+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2611+ transform="matrix(0.412361,0,0,0.412361,50.45778,68.89285)" />
2612+ <path
2613+ transform="matrix(0.412361,0,0,0.412361,46.64718,69.92942)"
2614+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2615+ sodipodi:ry="1.2070918"
2616+ sodipodi:rx="1.2070918"
2617+ sodipodi:cy="40.562798"
2618+ sodipodi:cx="27.280275"
2619+ id="path13686"
2620+ style="fill:url(#radialGradient13688);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2621+ sodipodi:type="arc" />
2622+ <path
2623+ sodipodi:type="arc"
2624+ style="fill:url(#radialGradient13692);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2625+ id="path13690"
2626+ sodipodi:cx="27.280275"
2627+ sodipodi:cy="40.562798"
2628+ sodipodi:rx="1.2070918"
2629+ sodipodi:ry="1.2070918"
2630+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2631+ transform="matrix(0.412361,0,0,0.412361,42.77867,70.54601)" />
2632+ <path
2633+ transform="matrix(0.412361,0,0,0.412361,34.92423,70.551)"
2634+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2635+ sodipodi:ry="1.2070918"
2636+ sodipodi:rx="1.2070918"
2637+ sodipodi:cy="40.562798"
2638+ sodipodi:cx="27.280275"
2639+ id="path13694"
2640+ style="fill:url(#radialGradient13696);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2641+ sodipodi:type="arc" />
2642+ <path
2643+ sodipodi:type="arc"
2644+ style="fill:url(#radialGradient13700);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2645+ id="path13698"
2646+ sodipodi:cx="27.280275"
2647+ sodipodi:cy="40.562798"
2648+ sodipodi:rx="1.2070918"
2649+ sodipodi:ry="1.2070918"
2650+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2651+ transform="matrix(0.412361,0,0,0.412361,30.98303,69.94899)" />
2652+ <path
2653+ transform="matrix(0.412361,0,0,0.412361,27.2464,68.95371)"
2654+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2655+ sodipodi:ry="1.2070918"
2656+ sodipodi:rx="1.2070918"
2657+ sodipodi:cy="40.562798"
2658+ sodipodi:cx="27.280275"
2659+ id="path13702"
2660+ style="fill:url(#radialGradient13704);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2661+ sodipodi:type="arc" />
2662+ <path
2663+ sodipodi:type="arc"
2664+ style="fill:url(#radialGradient13708);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2665+ id="path13706"
2666+ sodipodi:cx="27.280275"
2667+ sodipodi:cy="40.562798"
2668+ sodipodi:rx="1.2070918"
2669+ sodipodi:ry="1.2070918"
2670+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2671+ transform="matrix(0.412361,0,0,0.412361,23.53831,67.54561)" />
2672+ <path
2673+ transform="matrix(0.412361,0,0,0.412361,16.74291,63.62887)"
2674+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2675+ sodipodi:ry="1.2070918"
2676+ sodipodi:rx="1.2070918"
2677+ sodipodi:cy="40.562798"
2678+ sodipodi:cx="27.280275"
2679+ id="path13710"
2680+ style="fill:url(#radialGradient13712);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2681+ sodipodi:type="arc" />
2682+ <path
2683+ sodipodi:type="arc"
2684+ style="fill:url(#radialGradient13716);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2685+ id="path13714"
2686+ sodipodi:cx="27.280275"
2687+ sodipodi:cy="40.562798"
2688+ sodipodi:rx="1.2070918"
2689+ sodipodi:ry="1.2070918"
2690+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2691+ transform="matrix(0.412361,0,0,0.412361,13.69063,61.16333)" />
2692+ <path
2693+ transform="matrix(0.412361,0,0,0.412361,10.90158,58.37239)"
2694+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2695+ sodipodi:ry="1.2070918"
2696+ sodipodi:rx="1.2070918"
2697+ sodipodi:cy="40.562798"
2698+ sodipodi:cx="27.280275"
2699+ id="path13718"
2700+ style="fill:url(#radialGradient13720);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2701+ sodipodi:type="arc" />
2702+ <path
2703+ sodipodi:type="arc"
2704+ style="fill:url(#radialGradient13724);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2705+ id="path13722"
2706+ sodipodi:cx="27.280275"
2707+ sodipodi:cy="40.562798"
2708+ sodipodi:rx="1.2070918"
2709+ sodipodi:ry="1.2070918"
2710+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2711+ transform="matrix(0.412361,0,0,0.412361,8.43805,55.34225)" />
2712+ <path
2713+ transform="matrix(0.412361,0,0,0.412361,4.488068,48.53686)"
2714+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2715+ sodipodi:ry="1.2070918"
2716+ sodipodi:rx="1.2070918"
2717+ sodipodi:cy="40.562798"
2718+ sodipodi:cx="27.280275"
2719+ id="path13726"
2720+ style="fill:url(#radialGradient13728);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2721+ sodipodi:type="arc" />
2722+ <path
2723+ sodipodi:type="arc"
2724+ style="fill:url(#radialGradient13732);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2725+ id="path13730"
2726+ sodipodi:cx="27.280275"
2727+ sodipodi:cy="40.562798"
2728+ sodipodi:rx="1.2070918"
2729+ sodipodi:ry="1.2070918"
2730+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2731+ transform="matrix(0.412361,0,0,0.412361,3.064011,44.86091)" />
2732+ <path
2733+ transform="matrix(0.412361,0,0,0.412361,2.044687,41.0666)"
2734+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2735+ sodipodi:ry="1.2070918"
2736+ sodipodi:rx="1.2070918"
2737+ sodipodi:cy="40.562798"
2738+ sodipodi:cx="27.280275"
2739+ id="path13734"
2740+ style="fill:url(#radialGradient13736);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2741+ sodipodi:type="arc" />
2742+ <path
2743+ sodipodi:type="arc"
2744+ style="fill:url(#radialGradient13740);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2745+ id="path13738"
2746+ sodipodi:cx="27.280275"
2747+ sodipodi:cy="40.562798"
2748+ sodipodi:rx="1.2070918"
2749+ sodipodi:ry="1.2070918"
2750+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2751+ transform="matrix(0.412361,0,0,0.412361,1.431589,37.20404)" />
2752+ <path
2753+ transform="matrix(0.412361,0,0,0.412361,1.419965,29.35357)"
2754+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2755+ sodipodi:ry="1.2070918"
2756+ sodipodi:rx="1.2070918"
2757+ sodipodi:cy="40.562798"
2758+ sodipodi:cx="27.280275"
2759+ id="path13742"
2760+ style="fill:url(#radialGradient13744);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2761+ sodipodi:type="arc" />
2762+ <path
2763+ sodipodi:type="arc"
2764+ style="fill:url(#radialGradient13748);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2765+ id="path13746"
2766+ sodipodi:cx="27.280275"
2767+ sodipodi:cy="40.562798"
2768+ sodipodi:rx="1.2070918"
2769+ sodipodi:ry="1.2070918"
2770+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2771+ transform="matrix(0.412361,0,0,0.412361,2.040072,25.41147)" />
2772+ <path
2773+ transform="matrix(0.412361,0,0,0.412361,3.046088,21.65151)"
2774+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2775+ sodipodi:ry="1.2070918"
2776+ sodipodi:rx="1.2070918"
2777+ sodipodi:cy="40.562798"
2778+ sodipodi:cx="27.280275"
2779+ id="path13750"
2780+ style="fill:url(#radialGradient13752);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2781+ sodipodi:type="arc" />
2782+ <path
2783+ sodipodi:type="arc"
2784+ style="fill:url(#radialGradient13756);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2785+ id="path13754"
2786+ sodipodi:cx="27.280275"
2787+ sodipodi:cy="40.562798"
2788+ sodipodi:rx="1.2070918"
2789+ sodipodi:ry="1.2070918"
2790+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2791+ transform="matrix(0.412361,0,0,0.412361,4.455927,17.96558)" />
2792+ <path
2793+ transform="matrix(0.412361,0,0,0.412361,8.385328,11.17217)"
2794+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2795+ sodipodi:ry="1.2070918"
2796+ sodipodi:rx="1.2070918"
2797+ sodipodi:cy="40.562798"
2798+ sodipodi:cx="27.280275"
2799+ id="path13758"
2800+ style="fill:url(#radialGradient13760);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2801+ sodipodi:type="arc" />
2802+ <path
2803+ sodipodi:type="arc"
2804+ style="fill:url(#radialGradient13764);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2805+ id="path13762"
2806+ sodipodi:cx="27.280275"
2807+ sodipodi:cy="40.562798"
2808+ sodipodi:rx="1.2070918"
2809+ sodipodi:ry="1.2070918"
2810+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2811+ transform="matrix(0.412361,0,0,0.412361,10.85727,8.124483)" />
2812+ <path
2813+ transform="matrix(0.412361,0,0,0.412361,13.63609,5.353387)"
2814+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2815+ sodipodi:ry="1.2070918"
2816+ sodipodi:rx="1.2070918"
2817+ sodipodi:cy="40.562798"
2818+ sodipodi:cx="27.280275"
2819+ id="path13766"
2820+ style="fill:url(#radialGradient13768);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2821+ sodipodi:type="arc" />
2822+ <path
2823+ sodipodi:type="arc"
2824+ style="fill:url(#radialGradient13772);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2825+ id="path13770"
2826+ sodipodi:cx="27.280275"
2827+ sodipodi:cy="40.562798"
2828+ sodipodi:rx="1.2070918"
2829+ sodipodi:ry="1.2070918"
2830+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2831+ transform="matrix(0.412361,0,0,0.412361,16.69023,2.875173)" />
2832+ <path
2833+ transform="matrix(0.412361,0,0,0.412361,23.48873,-1.057035)"
2834+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2835+ sodipodi:ry="1.2070918"
2836+ sodipodi:rx="1.2070918"
2837+ sodipodi:cy="40.562798"
2838+ sodipodi:cx="27.280275"
2839+ id="path13774"
2840+ style="fill:url(#radialGradient13776);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2841+ sodipodi:type="arc" />
2842+ <path
2843+ sodipodi:type="arc"
2844+ style="fill:url(#radialGradient13780);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2845+ id="path13778"
2846+ sodipodi:cx="27.280275"
2847+ sodipodi:cy="40.562798"
2848+ sodipodi:rx="1.2070918"
2849+ sodipodi:ry="1.2070918"
2850+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2851+ transform="matrix(0.412361,0,0,0.412361,27.16295,-2.46806)" />
2852+ <path
2853+ transform="matrix(0.412361,0,0,0.412361,30.94519,-3.481573)"
2854+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2855+ sodipodi:ry="1.2070918"
2856+ sodipodi:rx="1.2070918"
2857+ sodipodi:cy="40.562798"
2858+ sodipodi:cx="27.280275"
2859+ id="path13782"
2860+ style="fill:url(#radialGradient13784);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2861+ sodipodi:type="arc" />
2862+ <path
2863+ sodipodi:type="arc"
2864+ style="fill:url(#radialGradient13788);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
2865+ id="path13786"
2866+ sodipodi:cx="27.280275"
2867+ sodipodi:cy="40.562798"
2868+ sodipodi:rx="1.2070918"
2869+ sodipodi:ry="1.2070918"
2870+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
2871+ transform="matrix(0.412361,0,0,0.412361,34.8199,-4.095463)" />
2872+ </g>
2873+</svg>
2874
2875=== added directory 'docklets/Clock/themes/Default24'
2876=== added file 'docklets/Clock/themes/Default24/clock-drop-shadow.svg'
2877--- docklets/Clock/themes/Default24/clock-drop-shadow.svg 1970-01-01 00:00:00 +0000
2878+++ docklets/Clock/themes/Default24/clock-drop-shadow.svg 2015-11-02 08:43:01 +0000
2879@@ -0,0 +1,134 @@
2880+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2881+<!-- Created with Inkscape (http://www.inkscape.org/) -->
2882+<svg
2883+ xmlns:dc="http://purl.org/dc/elements/1.1/"
2884+ xmlns:cc="http://web.resource.org/cc/"
2885+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
2886+ xmlns:svg="http://www.w3.org/2000/svg"
2887+ xmlns="http://www.w3.org/2000/svg"
2888+ xmlns:xlink="http://www.w3.org/1999/xlink"
2889+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
2890+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
2891+ width="100"
2892+ height="100"
2893+ id="svg2"
2894+ sodipodi:version="0.32"
2895+ inkscape:version="0.43"
2896+ version="1.0"
2897+ sodipodi:docbase="/home/mirco/src/svg-test"
2898+ sodipodi:docname="clock-drop-shadow.svg">
2899+ <defs
2900+ id="defs4">
2901+ <linearGradient
2902+ id="linearGradient2202">
2903+ <stop
2904+ style="stop-color:#000000;stop-opacity:1;"
2905+ offset="0"
2906+ id="stop2204" />
2907+ <stop
2908+ id="stop2200"
2909+ offset="0.86259544"
2910+ style="stop-color:#000000;stop-opacity:0.49803922;" />
2911+ <stop
2912+ style="stop-color:#000000;stop-opacity:0;"
2913+ offset="1"
2914+ id="stop2206" />
2915+ </linearGradient>
2916+ <radialGradient
2917+ inkscape:collect="always"
2918+ xlink:href="#linearGradient2202"
2919+ id="radialGradient2208"
2920+ cx="29.116467"
2921+ cy="22.941767"
2922+ fx="29.116467"
2923+ fy="22.941767"
2924+ r="19.174698"
2925+ gradientTransform="matrix(0.944994,3.007559e-16,-4.476419e-16,0.65058,1.601592,8.016313)"
2926+ gradientUnits="userSpaceOnUse" />
2927+ </defs>
2928+ <sodipodi:namedview
2929+ id="base"
2930+ pagecolor="#ffffff"
2931+ bordercolor="#666666"
2932+ borderopacity="1.0"
2933+ inkscape:pageopacity="0.0"
2934+ inkscape:pageshadow="2"
2935+ inkscape:zoom="9.96"
2936+ inkscape:cx="57.831325"
2937+ inkscape:cy="47.389558"
2938+ inkscape:document-units="px"
2939+ inkscape:current-layer="layer1"
2940+ showguides="true"
2941+ inkscape:guide-bbox="true"
2942+ inkscape:window-width="1590"
2943+ inkscape:window-height="1172"
2944+ inkscape:window-x="0"
2945+ inkscape:window-y="0">
2946+ <sodipodi:guide
2947+ orientation="horizontal"
2948+ position="50"
2949+ id="guide1307" />
2950+ <sodipodi:guide
2951+ orientation="vertical"
2952+ position="50"
2953+ id="guide1309" />
2954+ <sodipodi:guide
2955+ orientation="horizontal"
2956+ position="100"
2957+ id="guide1311" />
2958+ <sodipodi:guide
2959+ orientation="vertical"
2960+ position="0"
2961+ id="guide1313" />
2962+ <sodipodi:guide
2963+ orientation="vertical"
2964+ position="100"
2965+ id="guide1315" />
2966+ <sodipodi:guide
2967+ orientation="horizontal"
2968+ position="0"
2969+ id="guide1317" />
2970+ <sodipodi:guide
2971+ orientation="horizontal"
2972+ position="90.060241"
2973+ id="guide1319" />
2974+ <sodipodi:guide
2975+ orientation="vertical"
2976+ position="10.040161"
2977+ id="guide1321" />
2978+ <sodipodi:guide
2979+ orientation="vertical"
2980+ position="90.060241"
2981+ id="guide1323" />
2982+ <sodipodi:guide
2983+ orientation="horizontal"
2984+ position="10.040161"
2985+ id="guide1325" />
2986+ </sodipodi:namedview>
2987+ <metadata
2988+ id="metadata7">
2989+ <rdf:RDF>
2990+ <cc:Work
2991+ rdf:about="">
2992+ <dc:format>image/svg+xml</dc:format>
2993+ <dc:type
2994+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
2995+ </cc:Work>
2996+ </rdf:RDF>
2997+ </metadata>
2998+ <g
2999+ inkscape:label="Ebene 1"
3000+ inkscape:groupmode="layer"
3001+ id="layer1">
3002+ <path
3003+ sodipodi:type="arc"
3004+ style="opacity:0.75;fill:url(#radialGradient2208);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
3005+ id="path1327"
3006+ sodipodi:cx="29.116467"
3007+ sodipodi:cy="22.941767"
3008+ sodipodi:rx="18.674698"
3009+ sodipodi:ry="12.700803"
3010+ d="M 47.791164 22.941767 A 18.674698 12.700803 0 1 1 10.441769,22.941767 A 18.674698 12.700803 0 1 1 47.791164 22.941767 z"
3011+ transform="matrix(2.570433,0,0,3.77945,-22.84399,-34.70931)" />
3012+ </g>
3013+</svg>
3014
3015=== added file 'docklets/Clock/themes/Default24/clock-face-shadow.svg'
3016--- docklets/Clock/themes/Default24/clock-face-shadow.svg 1970-01-01 00:00:00 +0000
3017+++ docklets/Clock/themes/Default24/clock-face-shadow.svg 2015-11-02 08:43:01 +0000
3018@@ -0,0 +1,138 @@
3019+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3020+<!-- Created with Inkscape (http://www.inkscape.org/) -->
3021+<svg
3022+ xmlns:dc="http://purl.org/dc/elements/1.1/"
3023+ xmlns:cc="http://web.resource.org/cc/"
3024+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3025+ xmlns:svg="http://www.w3.org/2000/svg"
3026+ xmlns="http://www.w3.org/2000/svg"
3027+ xmlns:xlink="http://www.w3.org/1999/xlink"
3028+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
3029+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
3030+ width="100"
3031+ height="100"
3032+ id="svg2"
3033+ sodipodi:version="0.32"
3034+ inkscape:version="0.43"
3035+ version="1.0"
3036+ sodipodi:docbase="/home/mirco/src/svg-test"
3037+ sodipodi:docname="clock-face-shadow.svg">
3038+ <defs
3039+ id="defs4">
3040+ <linearGradient
3041+ id="linearGradient2202">
3042+ <stop
3043+ style="stop-color:#ffffff;stop-opacity:0;"
3044+ offset="0"
3045+ id="stop2204" />
3046+ <stop
3047+ id="stop2202"
3048+ offset="0.78765059"
3049+ style="stop-color:#7f7f7f;stop-opacity:0.49803922;" />
3050+ <stop
3051+ style="stop-color:#3f3f3f;stop-opacity:0.74901961;"
3052+ offset="0.93802023"
3053+ id="stop2205" />
3054+ <stop
3055+ style="stop-color:#000000;stop-opacity:1;"
3056+ offset="1"
3057+ id="stop2206" />
3058+ </linearGradient>
3059+ <radialGradient
3060+ inkscape:collect="always"
3061+ xlink:href="#linearGradient2202"
3062+ id="radialGradient2200"
3063+ cx="28.22608"
3064+ cy="23.644703"
3065+ fx="28.22608"
3066+ fy="23.644703"
3067+ r="18.674698"
3068+ gradientTransform="matrix(1.067943,2.242373e-32,7.881997e-33,0.726316,-1.917757,6.246314)"
3069+ gradientUnits="userSpaceOnUse" />
3070+ </defs>
3071+ <sodipodi:namedview
3072+ id="base"
3073+ pagecolor="#ffffff"
3074+ bordercolor="#666666"
3075+ borderopacity="1.0"
3076+ inkscape:pageopacity="0.0"
3077+ inkscape:pageshadow="2"
3078+ inkscape:zoom="9.96"
3079+ inkscape:cx="50"
3080+ inkscape:cy="50"
3081+ inkscape:document-units="px"
3082+ inkscape:current-layer="layer1"
3083+ showguides="true"
3084+ inkscape:guide-bbox="true"
3085+ inkscape:window-width="1590"
3086+ inkscape:window-height="1172"
3087+ inkscape:window-x="0"
3088+ inkscape:window-y="0">
3089+ <sodipodi:guide
3090+ orientation="horizontal"
3091+ position="50"
3092+ id="guide1307" />
3093+ <sodipodi:guide
3094+ orientation="vertical"
3095+ position="50"
3096+ id="guide1309" />
3097+ <sodipodi:guide
3098+ orientation="horizontal"
3099+ position="100"
3100+ id="guide1311" />
3101+ <sodipodi:guide
3102+ orientation="vertical"
3103+ position="0"
3104+ id="guide1313" />
3105+ <sodipodi:guide
3106+ orientation="vertical"
3107+ position="100"
3108+ id="guide1315" />
3109+ <sodipodi:guide
3110+ orientation="horizontal"
3111+ position="0"
3112+ id="guide1317" />
3113+ <sodipodi:guide
3114+ orientation="horizontal"
3115+ position="90.060241"
3116+ id="guide1319" />
3117+ <sodipodi:guide
3118+ orientation="vertical"
3119+ position="10.040161"
3120+ id="guide1321" />
3121+ <sodipodi:guide
3122+ orientation="vertical"
3123+ position="90.060241"
3124+ id="guide1323" />
3125+ <sodipodi:guide
3126+ orientation="horizontal"
3127+ position="10.040161"
3128+ id="guide1325" />
3129+ </sodipodi:namedview>
3130+ <metadata
3131+ id="metadata7">
3132+ <rdf:RDF>
3133+ <cc:Work
3134+ rdf:about="">
3135+ <dc:format>image/svg+xml</dc:format>
3136+ <dc:type
3137+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
3138+ </cc:Work>
3139+ </rdf:RDF>
3140+ </metadata>
3141+ <g
3142+ inkscape:label="Ebene 1"
3143+ inkscape:groupmode="layer"
3144+ id="layer1">
3145+ <path
3146+ sodipodi:type="arc"
3147+ style="opacity:0.75;fill:url(#radialGradient2200);fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
3148+ id="path1327"
3149+ sodipodi:cx="29.116467"
3150+ sodipodi:cy="22.941767"
3151+ sodipodi:rx="18.674698"
3152+ sodipodi:ry="12.700803"
3153+ d="M 47.791164 22.941767 A 18.674698 12.700803 0 1 1 10.441769,22.941767 A 18.674698 12.700803 0 1 1 47.791164 22.941767 z"
3154+ transform="matrix(0,-2.142473,3.150198,0,-22.22091,112.331)" />
3155+ </g>
3156+</svg>
3157
3158=== added file 'docklets/Clock/themes/Default24/clock-face.svg'
3159--- docklets/Clock/themes/Default24/clock-face.svg 1970-01-01 00:00:00 +0000
3160+++ docklets/Clock/themes/Default24/clock-face.svg 2015-11-02 08:43:01 +0000
3161@@ -0,0 +1,128 @@
3162+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3163+<!-- Created with Inkscape (http://www.inkscape.org/) -->
3164+<svg
3165+ xmlns:dc="http://purl.org/dc/elements/1.1/"
3166+ xmlns:cc="http://web.resource.org/cc/"
3167+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3168+ xmlns:svg="http://www.w3.org/2000/svg"
3169+ xmlns="http://www.w3.org/2000/svg"
3170+ xmlns:xlink="http://www.w3.org/1999/xlink"
3171+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
3172+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
3173+ width="100"
3174+ height="100"
3175+ id="svg2"
3176+ sodipodi:version="0.32"
3177+ inkscape:version="0.43"
3178+ version="1.0"
3179+ sodipodi:docbase="/home/mirco/src/cairo-demo/cairo-candy/themes/default"
3180+ sodipodi:docname="clock-face.svg">
3181+ <defs
3182+ id="defs4">
3183+ <linearGradient
3184+ id="linearGradient2202">
3185+ <stop
3186+ style="stop-color:#cfd3d3;stop-opacity:1;"
3187+ offset="0"
3188+ id="stop2204" />
3189+ <stop
3190+ style="stop-color:#f7fcf9;stop-opacity:1;"
3191+ offset="1"
3192+ id="stop2206" />
3193+ </linearGradient>
3194+ <linearGradient
3195+ inkscape:collect="always"
3196+ xlink:href="#linearGradient2202"
3197+ id="linearGradient3101"
3198+ x1="10.441769"
3199+ y1="22.941767"
3200+ x2="47.791164"
3201+ y2="22.941767"
3202+ gradientUnits="userSpaceOnUse" />
3203+ </defs>
3204+ <sodipodi:namedview
3205+ id="base"
3206+ pagecolor="#ffffff"
3207+ bordercolor="#666666"
3208+ borderopacity="1.0"
3209+ inkscape:pageopacity="0.0"
3210+ inkscape:pageshadow="2"
3211+ inkscape:zoom="9.96"
3212+ inkscape:cx="50"
3213+ inkscape:cy="50"
3214+ inkscape:document-units="px"
3215+ inkscape:current-layer="layer1"
3216+ showguides="true"
3217+ inkscape:guide-bbox="true"
3218+ inkscape:window-width="1592"
3219+ inkscape:window-height="1124"
3220+ inkscape:window-x="0"
3221+ inkscape:window-y="25">
3222+ <sodipodi:guide
3223+ orientation="horizontal"
3224+ position="50"
3225+ id="guide1307" />
3226+ <sodipodi:guide
3227+ orientation="vertical"
3228+ position="50"
3229+ id="guide1309" />
3230+ <sodipodi:guide
3231+ orientation="horizontal"
3232+ position="100"
3233+ id="guide1311" />
3234+ <sodipodi:guide
3235+ orientation="vertical"
3236+ position="0"
3237+ id="guide1313" />
3238+ <sodipodi:guide
3239+ orientation="vertical"
3240+ position="100"
3241+ id="guide1315" />
3242+ <sodipodi:guide
3243+ orientation="horizontal"
3244+ position="0"
3245+ id="guide1317" />
3246+ <sodipodi:guide
3247+ orientation="horizontal"
3248+ position="90.060241"
3249+ id="guide1319" />
3250+ <sodipodi:guide
3251+ orientation="vertical"
3252+ position="10.040161"
3253+ id="guide1321" />
3254+ <sodipodi:guide
3255+ orientation="vertical"
3256+ position="90.060241"
3257+ id="guide1323" />
3258+ <sodipodi:guide
3259+ orientation="horizontal"
3260+ position="10.040161"
3261+ id="guide1325" />
3262+ </sodipodi:namedview>
3263+ <metadata
3264+ id="metadata7">
3265+ <rdf:RDF>
3266+ <cc:Work
3267+ rdf:about="">
3268+ <dc:format>image/svg+xml</dc:format>
3269+ <dc:type
3270+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
3271+ </cc:Work>
3272+ </rdf:RDF>
3273+ </metadata>
3274+ <g
3275+ inkscape:label="Ebene 1"
3276+ inkscape:groupmode="layer"
3277+ id="layer1">
3278+ <path
3279+ sodipodi:type="arc"
3280+ style="opacity:1;fill:url(#linearGradient3101);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
3281+ id="path1327"
3282+ sodipodi:cx="29.116467"
3283+ sodipodi:cy="22.941767"
3284+ sodipodi:rx="18.674698"
3285+ sodipodi:ry="12.700803"
3286+ d="M 47.791164 22.941767 A 18.674698 12.700803 0 1 1 10.441769,22.941767 A 18.674698 12.700803 0 1 1 47.791164 22.941767 z"
3287+ transform="matrix(0,-2.142473,3.150198,0,-22.22091,112.331)" />
3288+ </g>
3289+</svg>
3290
3291=== added file 'docklets/Clock/themes/Default24/clock-frame.svg'
3292--- docklets/Clock/themes/Default24/clock-frame.svg 1970-01-01 00:00:00 +0000
3293+++ docklets/Clock/themes/Default24/clock-frame.svg 2015-11-02 08:43:01 +0000
3294@@ -0,0 +1,221 @@
3295+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3296+<!-- Created with Inkscape (http://www.inkscape.org/) -->
3297+<svg
3298+ xmlns:dc="http://purl.org/dc/elements/1.1/"
3299+ xmlns:cc="http://web.resource.org/cc/"
3300+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3301+ xmlns:svg="http://www.w3.org/2000/svg"
3302+ xmlns="http://www.w3.org/2000/svg"
3303+ xmlns:xlink="http://www.w3.org/1999/xlink"
3304+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
3305+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
3306+ width="100"
3307+ height="100"
3308+ id="svg2"
3309+ sodipodi:version="0.32"
3310+ inkscape:version="0.43"
3311+ version="1.0"
3312+ sodipodi:docbase="/home/mirco/src/svg-test"
3313+ sodipodi:docname="clock-frame.svg">
3314+ <defs
3315+ id="defs4">
3316+ <linearGradient
3317+ id="linearGradient5754">
3318+ <stop
3319+ style="stop-color:#858585;stop-opacity:1;"
3320+ offset="0"
3321+ id="stop5756" />
3322+ <stop
3323+ id="stop5762"
3324+ offset="0.71816796"
3325+ style="stop-color:#979797;stop-opacity:1;" />
3326+ <stop
3327+ style="stop-color:#b3b3b3;stop-opacity:1;"
3328+ offset="0.94836664"
3329+ id="stop5764" />
3330+ <stop
3331+ style="stop-color:#f3f3f3;stop-opacity:1;"
3332+ offset="1"
3333+ id="stop5758" />
3334+ </linearGradient>
3335+ <linearGradient
3336+ id="linearGradient3996">
3337+ <stop
3338+ style="stop-color:#666666;stop-opacity:1;"
3339+ offset="0"
3340+ id="stop3998" />
3341+ <stop
3342+ id="stop4877"
3343+ offset="0.95577621"
3344+ style="stop-color:#acacac;stop-opacity:1;" />
3345+ <stop
3346+ style="stop-color:#cfcfcf;stop-opacity:1;"
3347+ offset="0.97817725"
3348+ id="stop4879" />
3349+ <stop
3350+ style="stop-color:#f2f2f2;stop-opacity:1;"
3351+ offset="1"
3352+ id="stop4000" />
3353+ </linearGradient>
3354+ <linearGradient
3355+ id="linearGradient2202">
3356+ <stop
3357+ style="stop-color:#a5adad;stop-opacity:1;"
3358+ offset="0"
3359+ id="stop2204" />
3360+ <stop
3361+ style="stop-color:#e8f4ed;stop-opacity:1;"
3362+ offset="1"
3363+ id="stop2206" />
3364+ </linearGradient>
3365+ <radialGradient
3366+ inkscape:collect="always"
3367+ xlink:href="#linearGradient3996"
3368+ id="radialGradient4002"
3369+ cx="28.470314"
3370+ cy="23.586941"
3371+ fx="28.470314"
3372+ fy="23.586941"
3373+ r="19.189064"
3374+ gradientTransform="matrix(1,1.016444e-16,-8.254542e-17,0.68115,-6.306154e-15,7.314983)"
3375+ gradientUnits="userSpaceOnUse" />
3376+ <radialGradient
3377+ inkscape:collect="always"
3378+ xlink:href="#linearGradient5754"
3379+ id="radialGradient5760"
3380+ cx="29.983475"
3381+ cy="22.08255"
3382+ fx="29.983475"
3383+ fy="22.08255"
3384+ r="19.04179"
3385+ gradientTransform="matrix(1,0,0,0.686275,0,7.197417)"
3386+ gradientUnits="userSpaceOnUse" />
3387+ </defs>
3388+ <sodipodi:namedview
3389+ id="base"
3390+ pagecolor="#ffffff"
3391+ bordercolor="#666666"
3392+ borderopacity="1.0"
3393+ inkscape:pageopacity="0.0"
3394+ inkscape:pageshadow="2"
3395+ inkscape:zoom="8.0175539"
3396+ inkscape:cx="50.000001"
3397+ inkscape:cy="50.000037"
3398+ inkscape:document-units="px"
3399+ inkscape:current-layer="layer1"
3400+ showguides="true"
3401+ inkscape:guide-bbox="true"
3402+ inkscape:window-width="1155"
3403+ inkscape:window-height="905"
3404+ inkscape:window-x="265"
3405+ inkscape:window-y="147">
3406+ <sodipodi:guide
3407+ orientation="horizontal"
3408+ position="50"
3409+ id="guide1307" />
3410+ <sodipodi:guide
3411+ orientation="vertical"
3412+ position="50"
3413+ id="guide1309" />
3414+ <sodipodi:guide
3415+ orientation="horizontal"
3416+ position="100"
3417+ id="guide1311" />
3418+ <sodipodi:guide
3419+ orientation="vertical"
3420+ position="0"
3421+ id="guide1313" />
3422+ <sodipodi:guide
3423+ orientation="vertical"
3424+ position="100"
3425+ id="guide1315" />
3426+ <sodipodi:guide
3427+ orientation="horizontal"
3428+ position="0"
3429+ id="guide1317" />
3430+ <sodipodi:guide
3431+ orientation="horizontal"
3432+ position="90.060241"
3433+ id="guide1319" />
3434+ <sodipodi:guide
3435+ orientation="vertical"
3436+ position="10.040161"
3437+ id="guide1321" />
3438+ <sodipodi:guide
3439+ orientation="vertical"
3440+ position="90.060241"
3441+ id="guide1323" />
3442+ <sodipodi:guide
3443+ orientation="horizontal"
3444+ position="10.040161"
3445+ id="guide1325" />
3446+ <sodipodi:guide
3447+ orientation="horizontal"
3448+ position="94.97992"
3449+ id="guide2222" />
3450+ <sodipodi:guide
3451+ orientation="horizontal"
3452+ position="5.0200803"
3453+ id="guide2224" />
3454+ <sodipodi:guide
3455+ orientation="vertical"
3456+ position="5.0200803"
3457+ id="guide2226" />
3458+ <sodipodi:guide
3459+ orientation="vertical"
3460+ position="94.97992"
3461+ id="guide2228" />
3462+ <sodipodi:guide
3463+ orientation="horizontal"
3464+ position="92.068273"
3465+ id="guide2232" />
3466+ <sodipodi:guide
3467+ orientation="vertical"
3468+ position="7.9317269"
3469+ id="guide2234" />
3470+ <sodipodi:guide
3471+ orientation="vertical"
3472+ position="91.967871"
3473+ id="guide2236" />
3474+ <sodipodi:guide
3475+ orientation="horizontal"
3476+ position="8.0321285"
3477+ id="guide2238" />
3478+ </sodipodi:namedview>
3479+ <metadata
3480+ id="metadata7">
3481+ <rdf:RDF>
3482+ <cc:Work
3483+ rdf:about="">
3484+ <dc:format>image/svg+xml</dc:format>
3485+ <dc:type
3486+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
3487+ </cc:Work>
3488+ </rdf:RDF>
3489+ </metadata>
3490+ <g
3491+ inkscape:label="Ebene 1"
3492+ inkscape:groupmode="layer"
3493+ id="layer1">
3494+ <path
3495+ transform="matrix(0,-2.330758,3.427043,0,-28.62242,117.8634)"
3496+ d="M 47.791164 22.941767 A 18.674698 12.700803 0 1 1 10.441769,22.941767 A 18.674698 12.700803 0 1 1 47.791164 22.941767 z"
3497+ sodipodi:ry="12.700803"
3498+ sodipodi:rx="18.674698"
3499+ sodipodi:cy="22.941767"
3500+ sodipodi:cx="29.116467"
3501+ id="path2230"
3502+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient4002);stroke-width:1.32685327;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
3503+ sodipodi:type="arc" />
3504+ <path
3505+ transform="matrix(0,-2.200244,3.235141,0,-24.21984,114.0633)"
3506+ d="M 47.791164 22.941767 A 18.674698 12.700803 0 1 1 10.441769,22.941767 A 18.674698 12.700803 0 1 1 47.791164 22.941767 z"
3507+ sodipodi:ry="12.700803"
3508+ sodipodi:rx="18.674698"
3509+ sodipodi:cy="22.941767"
3510+ sodipodi:cx="29.116467"
3511+ id="path2240"
3512+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient5760);stroke-width:0.93703967;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
3513+ sodipodi:type="arc" />
3514+ </g>
3515+</svg>
3516
3517=== added file 'docklets/Clock/themes/Default24/clock-glass.svg'
3518--- docklets/Clock/themes/Default24/clock-glass.svg 1970-01-01 00:00:00 +0000
3519+++ docklets/Clock/themes/Default24/clock-glass.svg 2015-11-02 08:43:01 +0000
3520@@ -0,0 +1,112 @@
3521+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3522+<!-- Created with Inkscape (http://www.inkscape.org/) -->
3523+<svg
3524+ xmlns:dc="http://purl.org/dc/elements/1.1/"
3525+ xmlns:cc="http://web.resource.org/cc/"
3526+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3527+ xmlns:svg="http://www.w3.org/2000/svg"
3528+ xmlns="http://www.w3.org/2000/svg"
3529+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
3530+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
3531+ width="100"
3532+ height="100"
3533+ id="svg2"
3534+ sodipodi:version="0.32"
3535+ inkscape:version="0.43"
3536+ version="1.0"
3537+ sodipodi:docbase="/home/mirco/src/svg-test"
3538+ sodipodi:docname="clock-glass.svg">
3539+ <defs
3540+ id="defs4">
3541+ <linearGradient
3542+ id="linearGradient2202">
3543+ <stop
3544+ style="stop-color:#a5adad;stop-opacity:1;"
3545+ offset="0"
3546+ id="stop2204" />
3547+ <stop
3548+ style="stop-color:#e8f4ed;stop-opacity:1;"
3549+ offset="1"
3550+ id="stop2206" />
3551+ </linearGradient>
3552+ </defs>
3553+ <sodipodi:namedview
3554+ id="base"
3555+ pagecolor="#ffffff"
3556+ bordercolor="#666666"
3557+ borderopacity="1.0"
3558+ inkscape:pageopacity="0.0"
3559+ inkscape:pageshadow="2"
3560+ inkscape:zoom="8.7257792"
3561+ inkscape:cx="66.986517"
3562+ inkscape:cy="46.873326"
3563+ inkscape:document-units="px"
3564+ inkscape:current-layer="layer1"
3565+ showguides="true"
3566+ inkscape:guide-bbox="true"
3567+ inkscape:window-width="1590"
3568+ inkscape:window-height="1172"
3569+ inkscape:window-x="0"
3570+ inkscape:window-y="0">
3571+ <sodipodi:guide
3572+ orientation="horizontal"
3573+ position="50"
3574+ id="guide1307" />
3575+ <sodipodi:guide
3576+ orientation="vertical"
3577+ position="50"
3578+ id="guide1309" />
3579+ <sodipodi:guide
3580+ orientation="horizontal"
3581+ position="100"
3582+ id="guide1311" />
3583+ <sodipodi:guide
3584+ orientation="vertical"
3585+ position="0"
3586+ id="guide1313" />
3587+ <sodipodi:guide
3588+ orientation="vertical"
3589+ position="100"
3590+ id="guide1315" />
3591+ <sodipodi:guide
3592+ orientation="horizontal"
3593+ position="0"
3594+ id="guide1317" />
3595+ <sodipodi:guide
3596+ orientation="horizontal"
3597+ position="90.060241"
3598+ id="guide1319" />
3599+ <sodipodi:guide
3600+ orientation="vertical"
3601+ position="10.040161"
3602+ id="guide1321" />
3603+ <sodipodi:guide
3604+ orientation="vertical"
3605+ position="90.060241"
3606+ id="guide1323" />
3607+ <sodipodi:guide
3608+ orientation="horizontal"
3609+ position="10.040161"
3610+ id="guide1325" />
3611+ </sodipodi:namedview>
3612+ <metadata
3613+ id="metadata7">
3614+ <rdf:RDF>
3615+ <cc:Work
3616+ rdf:about="">
3617+ <dc:format>image/svg+xml</dc:format>
3618+ <dc:type
3619+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
3620+ </cc:Work>
3621+ </rdf:RDF>
3622+ </metadata>
3623+ <g
3624+ inkscape:label="Ebene 1"
3625+ inkscape:groupmode="layer"
3626+ id="layer1">
3627+ <path
3628+ style="opacity:1;fill:#dde5f2;fill-opacity:0.24705882;fill-rule:nonzero;stroke:none;stroke-width:0.03849226;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
3629+ d="M 49.03125 9.9375 C 27.593602 10.481231 10.303935 27.933903 10.03125 49.4375 C 10.029069 49.609529 10.03125 49.764957 10.03125 49.9375 C 10.03125 50.110043 10.029069 50.296721 10.03125 50.46875 C 10.097014 55.654824 11.168692 60.592286 13.03125 65.125 C 21.688245 32.263585 47.366788 18.941146 66.71875 13.5625 C 61.934495 11.363025 56.667538 10.07887 51.09375 9.9375 L 49.03125 9.9375 z M 89.96875 47.125 C 83.607127 75.402465 61.667389 85.739963 42.375 89.21875 C 44.696552 89.670506 47.08552 89.937736 49.53125 89.96875 L 50.5625 89.96875 C 72.066101 89.696064 89.518769 72.406394 90.0625 50.96875 C 90.0712 50.625748 90.0625 50.282587 90.0625 49.9375 C 90.0625 49.592413 90.0712 49.249252 90.0625 48.90625 C 90.047276 48.305996 90.010175 47.718429 89.96875 47.125 z "
3630+ id="path1327" />
3631+ </g>
3632+</svg>
3633
3634=== added file 'docklets/Clock/themes/Default24/clock-marks.svg'
3635--- docklets/Clock/themes/Default24/clock-marks.svg 1970-01-01 00:00:00 +0000
3636+++ docklets/Clock/themes/Default24/clock-marks.svg 2015-11-02 08:43:01 +0000
3637@@ -0,0 +1,1203 @@
3638+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3639+<!-- Created with Inkscape (http://www.inkscape.org/) -->
3640+<svg
3641+ xmlns:dc="http://purl.org/dc/elements/1.1/"
3642+ xmlns:cc="http://web.resource.org/cc/"
3643+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3644+ xmlns:svg="http://www.w3.org/2000/svg"
3645+ xmlns="http://www.w3.org/2000/svg"
3646+ xmlns:xlink="http://www.w3.org/1999/xlink"
3647+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
3648+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
3649+ width="100"
3650+ height="100"
3651+ id="svg2"
3652+ sodipodi:version="0.32"
3653+ inkscape:version="0.43"
3654+ version="1.0"
3655+ sodipodi:docbase="/home/dt/.cairo-clock/themes/default-24"
3656+ sodipodi:docname="clock-marks.svg">
3657+ <defs
3658+ id="defs4">
3659+ <linearGradient
3660+ id="linearGradient5989">
3661+ <stop
3662+ style="stop-color:#ffffff;stop-opacity:1;"
3663+ offset="0"
3664+ id="stop5991" />
3665+ <stop
3666+ id="stop2316"
3667+ offset="0.56465238"
3668+ style="stop-color:#bcbcbc;stop-opacity:1;" />
3669+ <stop
3670+ style="stop-color:#838383;stop-opacity:1;"
3671+ offset="0.83716005"
3672+ id="stop2318" />
3673+ <stop
3674+ style="stop-color:#3a3a3a;stop-opacity:1;"
3675+ offset="1"
3676+ id="stop5993" />
3677+ </linearGradient>
3678+ <linearGradient
3679+ id="linearGradient3287">
3680+ <stop
3681+ style="stop-color:#ffffff;stop-opacity:1;"
3682+ offset="0"
3683+ id="stop3289" />
3684+ <stop
3685+ style="stop-color:#7f7f7f;stop-opacity:1;"
3686+ offset="1"
3687+ id="stop3291" />
3688+ </linearGradient>
3689+ <linearGradient
3690+ id="linearGradient2202">
3691+ <stop
3692+ style="stop-color:#a5adad;stop-opacity:1;"
3693+ offset="0"
3694+ id="stop2204" />
3695+ <stop
3696+ style="stop-color:#e8f4ed;stop-opacity:1;"
3697+ offset="1"
3698+ id="stop2206" />
3699+ </linearGradient>
3700+ <linearGradient
3701+ id="linearGradient1529">
3702+ <stop
3703+ id="stop1531"
3704+ offset="0"
3705+ style="stop-color:#a5adad;stop-opacity:1;" />
3706+ <stop
3707+ id="stop1533"
3708+ offset="1"
3709+ style="stop-color:#e8f4ed;stop-opacity:1;" />
3710+ </linearGradient>
3711+ <radialGradient
3712+ inkscape:collect="always"
3713+ xlink:href="#linearGradient5989"
3714+ id="radialGradient11602"
3715+ gradientUnits="userSpaceOnUse"
3716+ cx="26.926001"
3717+ cy="40.177113"
3718+ fx="26.926001"
3719+ fy="40.177113"
3720+ r="1.2070918" />
3721+ <radialGradient
3722+ inkscape:collect="always"
3723+ xlink:href="#linearGradient5989"
3724+ id="radialGradient13624"
3725+ gradientUnits="userSpaceOnUse"
3726+ cx="26.926001"
3727+ cy="40.177113"
3728+ fx="26.926001"
3729+ fy="40.177113"
3730+ r="1.2070918" />
3731+ <radialGradient
3732+ inkscape:collect="always"
3733+ xlink:href="#linearGradient5989"
3734+ id="radialGradient13626"
3735+ gradientUnits="userSpaceOnUse"
3736+ cx="26.926001"
3737+ cy="40.177113"
3738+ fx="26.926001"
3739+ fy="40.177113"
3740+ r="1.2070918" />
3741+ <radialGradient
3742+ inkscape:collect="always"
3743+ xlink:href="#linearGradient5989"
3744+ id="radialGradient13628"
3745+ gradientUnits="userSpaceOnUse"
3746+ cx="26.926001"
3747+ cy="40.177113"
3748+ fx="26.926001"
3749+ fy="40.177113"
3750+ r="1.2070918" />
3751+ <radialGradient
3752+ inkscape:collect="always"
3753+ xlink:href="#linearGradient5989"
3754+ id="radialGradient13630"
3755+ gradientUnits="userSpaceOnUse"
3756+ cx="26.926001"
3757+ cy="40.177113"
3758+ fx="26.926001"
3759+ fy="40.177113"
3760+ r="1.2070918" />
3761+ <radialGradient
3762+ inkscape:collect="always"
3763+ xlink:href="#linearGradient5989"
3764+ id="radialGradient13632"
3765+ gradientUnits="userSpaceOnUse"
3766+ cx="26.926001"
3767+ cy="40.177113"
3768+ fx="26.926001"
3769+ fy="40.177113"
3770+ r="1.2070918" />
3771+ <radialGradient
3772+ inkscape:collect="always"
3773+ xlink:href="#linearGradient5989"
3774+ id="radialGradient13634"
3775+ gradientUnits="userSpaceOnUse"
3776+ cx="26.926001"
3777+ cy="40.177113"
3778+ fx="26.926001"
3779+ fy="40.177113"
3780+ r="1.2070918" />
3781+ <radialGradient
3782+ inkscape:collect="always"
3783+ xlink:href="#linearGradient5989"
3784+ id="radialGradient13636"
3785+ gradientUnits="userSpaceOnUse"
3786+ cx="26.926001"
3787+ cy="40.177113"
3788+ fx="26.926001"
3789+ fy="40.177113"
3790+ r="1.2070918" />
3791+ <radialGradient
3792+ inkscape:collect="always"
3793+ xlink:href="#linearGradient5989"
3794+ id="radialGradient13638"
3795+ gradientUnits="userSpaceOnUse"
3796+ cx="26.926001"
3797+ cy="40.177113"
3798+ fx="26.926001"
3799+ fy="40.177113"
3800+ r="1.2070918" />
3801+ <radialGradient
3802+ inkscape:collect="always"
3803+ xlink:href="#linearGradient5989"
3804+ id="radialGradient13640"
3805+ gradientUnits="userSpaceOnUse"
3806+ cx="26.926001"
3807+ cy="40.177113"
3808+ fx="26.926001"
3809+ fy="40.177113"
3810+ r="1.2070918" />
3811+ <radialGradient
3812+ inkscape:collect="always"
3813+ xlink:href="#linearGradient5989"
3814+ id="radialGradient13642"
3815+ gradientUnits="userSpaceOnUse"
3816+ cx="26.926001"
3817+ cy="40.177113"
3818+ fx="26.926001"
3819+ fy="40.177113"
3820+ r="1.2070918" />
3821+ <radialGradient
3822+ inkscape:collect="always"
3823+ xlink:href="#linearGradient5989"
3824+ id="radialGradient13644"
3825+ gradientUnits="userSpaceOnUse"
3826+ cx="26.926001"
3827+ cy="40.177113"
3828+ fx="26.926001"
3829+ fy="40.177113"
3830+ r="1.2070918" />
3831+ <radialGradient
3832+ inkscape:collect="always"
3833+ xlink:href="#linearGradient5989"
3834+ id="radialGradient13648"
3835+ gradientUnits="userSpaceOnUse"
3836+ cx="26.926001"
3837+ cy="40.177113"
3838+ fx="26.926001"
3839+ fy="40.177113"
3840+ r="1.2070918" />
3841+ <radialGradient
3842+ inkscape:collect="always"
3843+ xlink:href="#linearGradient5989"
3844+ id="radialGradient13652"
3845+ gradientUnits="userSpaceOnUse"
3846+ cx="26.926001"
3847+ cy="40.177113"
3848+ fx="26.926001"
3849+ fy="40.177113"
3850+ r="1.2070918" />
3851+ <radialGradient
3852+ inkscape:collect="always"
3853+ xlink:href="#linearGradient5989"
3854+ id="radialGradient13656"
3855+ gradientUnits="userSpaceOnUse"
3856+ cx="26.926001"
3857+ cy="40.177113"
3858+ fx="26.926001"
3859+ fy="40.177113"
3860+ r="1.2070918" />
3861+ <radialGradient
3862+ inkscape:collect="always"
3863+ xlink:href="#linearGradient5989"
3864+ id="radialGradient13660"
3865+ gradientUnits="userSpaceOnUse"
3866+ cx="26.926001"
3867+ cy="40.177113"
3868+ fx="26.926001"
3869+ fy="40.177113"
3870+ r="1.2070918" />
3871+ <radialGradient
3872+ inkscape:collect="always"
3873+ xlink:href="#linearGradient5989"
3874+ id="radialGradient13664"
3875+ gradientUnits="userSpaceOnUse"
3876+ cx="26.926001"
3877+ cy="40.177113"
3878+ fx="26.926001"
3879+ fy="40.177113"
3880+ r="1.2070918" />
3881+ <radialGradient
3882+ inkscape:collect="always"
3883+ xlink:href="#linearGradient5989"
3884+ id="radialGradient13668"
3885+ gradientUnits="userSpaceOnUse"
3886+ cx="26.926001"
3887+ cy="40.177113"
3888+ fx="26.926001"
3889+ fy="40.177113"
3890+ r="1.2070918" />
3891+ <radialGradient
3892+ inkscape:collect="always"
3893+ xlink:href="#linearGradient5989"
3894+ id="radialGradient13672"
3895+ gradientUnits="userSpaceOnUse"
3896+ cx="26.926001"
3897+ cy="40.177113"
3898+ fx="26.926001"
3899+ fy="40.177113"
3900+ r="1.2070918" />
3901+ <radialGradient
3902+ inkscape:collect="always"
3903+ xlink:href="#linearGradient5989"
3904+ id="radialGradient13676"
3905+ gradientUnits="userSpaceOnUse"
3906+ cx="26.926001"
3907+ cy="40.177113"
3908+ fx="26.926001"
3909+ fy="40.177113"
3910+ r="1.2070918" />
3911+ <radialGradient
3912+ inkscape:collect="always"
3913+ xlink:href="#linearGradient5989"
3914+ id="radialGradient13680"
3915+ gradientUnits="userSpaceOnUse"
3916+ cx="26.926001"
3917+ cy="40.177113"
3918+ fx="26.926001"
3919+ fy="40.177113"
3920+ r="1.2070918" />
3921+ <radialGradient
3922+ inkscape:collect="always"
3923+ xlink:href="#linearGradient5989"
3924+ id="radialGradient13684"
3925+ gradientUnits="userSpaceOnUse"
3926+ cx="26.926001"
3927+ cy="40.177113"
3928+ fx="26.926001"
3929+ fy="40.177113"
3930+ r="1.2070918" />
3931+ <radialGradient
3932+ inkscape:collect="always"
3933+ xlink:href="#linearGradient5989"
3934+ id="radialGradient13688"
3935+ gradientUnits="userSpaceOnUse"
3936+ cx="26.926001"
3937+ cy="40.177113"
3938+ fx="26.926001"
3939+ fy="40.177113"
3940+ r="1.2070918" />
3941+ <radialGradient
3942+ inkscape:collect="always"
3943+ xlink:href="#linearGradient5989"
3944+ id="radialGradient13692"
3945+ gradientUnits="userSpaceOnUse"
3946+ cx="26.926001"
3947+ cy="40.177113"
3948+ fx="26.926001"
3949+ fy="40.177113"
3950+ r="1.2070918" />
3951+ <radialGradient
3952+ inkscape:collect="always"
3953+ xlink:href="#linearGradient5989"
3954+ id="radialGradient13696"
3955+ gradientUnits="userSpaceOnUse"
3956+ cx="26.926001"
3957+ cy="40.177113"
3958+ fx="26.926001"
3959+ fy="40.177113"
3960+ r="1.2070918" />
3961+ <radialGradient
3962+ inkscape:collect="always"
3963+ xlink:href="#linearGradient5989"
3964+ id="radialGradient13700"
3965+ gradientUnits="userSpaceOnUse"
3966+ cx="26.926001"
3967+ cy="40.177113"
3968+ fx="26.926001"
3969+ fy="40.177113"
3970+ r="1.2070918" />
3971+ <radialGradient
3972+ inkscape:collect="always"
3973+ xlink:href="#linearGradient5989"
3974+ id="radialGradient13704"
3975+ gradientUnits="userSpaceOnUse"
3976+ cx="26.926001"
3977+ cy="40.177113"
3978+ fx="26.926001"
3979+ fy="40.177113"
3980+ r="1.2070918" />
3981+ <radialGradient
3982+ inkscape:collect="always"
3983+ xlink:href="#linearGradient5989"
3984+ id="radialGradient13708"
3985+ gradientUnits="userSpaceOnUse"
3986+ cx="26.926001"
3987+ cy="40.177113"
3988+ fx="26.926001"
3989+ fy="40.177113"
3990+ r="1.2070918" />
3991+ <radialGradient
3992+ inkscape:collect="always"
3993+ xlink:href="#linearGradient5989"
3994+ id="radialGradient13712"
3995+ gradientUnits="userSpaceOnUse"
3996+ cx="26.926001"
3997+ cy="40.177113"
3998+ fx="26.926001"
3999+ fy="40.177113"
4000+ r="1.2070918" />
4001+ <radialGradient
4002+ inkscape:collect="always"
4003+ xlink:href="#linearGradient5989"
4004+ id="radialGradient13716"
4005+ gradientUnits="userSpaceOnUse"
4006+ cx="26.926001"
4007+ cy="40.177113"
4008+ fx="26.926001"
4009+ fy="40.177113"
4010+ r="1.2070918" />
4011+ <radialGradient
4012+ inkscape:collect="always"
4013+ xlink:href="#linearGradient5989"
4014+ id="radialGradient13720"
4015+ gradientUnits="userSpaceOnUse"
4016+ cx="26.926001"
4017+ cy="40.177113"
4018+ fx="26.926001"
4019+ fy="40.177113"
4020+ r="1.2070918" />
4021+ <radialGradient
4022+ inkscape:collect="always"
4023+ xlink:href="#linearGradient5989"
4024+ id="radialGradient13724"
4025+ gradientUnits="userSpaceOnUse"
4026+ cx="26.926001"
4027+ cy="40.177113"
4028+ fx="26.926001"
4029+ fy="40.177113"
4030+ r="1.2070918" />
4031+ <radialGradient
4032+ inkscape:collect="always"
4033+ xlink:href="#linearGradient5989"
4034+ id="radialGradient13728"
4035+ gradientUnits="userSpaceOnUse"
4036+ cx="26.926001"
4037+ cy="40.177113"
4038+ fx="26.926001"
4039+ fy="40.177113"
4040+ r="1.2070918" />
4041+ <radialGradient
4042+ inkscape:collect="always"
4043+ xlink:href="#linearGradient5989"
4044+ id="radialGradient13732"
4045+ gradientUnits="userSpaceOnUse"
4046+ cx="26.926001"
4047+ cy="40.177113"
4048+ fx="26.926001"
4049+ fy="40.177113"
4050+ r="1.2070918" />
4051+ <radialGradient
4052+ inkscape:collect="always"
4053+ xlink:href="#linearGradient5989"
4054+ id="radialGradient13736"
4055+ gradientUnits="userSpaceOnUse"
4056+ cx="26.926001"
4057+ cy="40.177113"
4058+ fx="26.926001"
4059+ fy="40.177113"
4060+ r="1.2070918" />
4061+ <radialGradient
4062+ inkscape:collect="always"
4063+ xlink:href="#linearGradient5989"
4064+ id="radialGradient13740"
4065+ gradientUnits="userSpaceOnUse"
4066+ cx="26.926001"
4067+ cy="40.177113"
4068+ fx="26.926001"
4069+ fy="40.177113"
4070+ r="1.2070918" />
4071+ <radialGradient
4072+ inkscape:collect="always"
4073+ xlink:href="#linearGradient5989"
4074+ id="radialGradient13744"
4075+ gradientUnits="userSpaceOnUse"
4076+ cx="26.926001"
4077+ cy="40.177113"
4078+ fx="26.926001"
4079+ fy="40.177113"
4080+ r="1.2070918" />
4081+ <radialGradient
4082+ inkscape:collect="always"
4083+ xlink:href="#linearGradient5989"
4084+ id="radialGradient13748"
4085+ gradientUnits="userSpaceOnUse"
4086+ cx="26.926001"
4087+ cy="40.177113"
4088+ fx="26.926001"
4089+ fy="40.177113"
4090+ r="1.2070918" />
4091+ <radialGradient
4092+ inkscape:collect="always"
4093+ xlink:href="#linearGradient5989"
4094+ id="radialGradient13752"
4095+ gradientUnits="userSpaceOnUse"
4096+ cx="26.926001"
4097+ cy="40.177113"
4098+ fx="26.926001"
4099+ fy="40.177113"
4100+ r="1.2070918" />
4101+ <radialGradient
4102+ inkscape:collect="always"
4103+ xlink:href="#linearGradient5989"
4104+ id="radialGradient13756"
4105+ gradientUnits="userSpaceOnUse"
4106+ cx="26.926001"
4107+ cy="40.177113"
4108+ fx="26.926001"
4109+ fy="40.177113"
4110+ r="1.2070918" />
4111+ <radialGradient
4112+ inkscape:collect="always"
4113+ xlink:href="#linearGradient5989"
4114+ id="radialGradient13760"
4115+ gradientUnits="userSpaceOnUse"
4116+ cx="26.926001"
4117+ cy="40.177113"
4118+ fx="26.926001"
4119+ fy="40.177113"
4120+ r="1.2070918" />
4121+ <radialGradient
4122+ inkscape:collect="always"
4123+ xlink:href="#linearGradient5989"
4124+ id="radialGradient13764"
4125+ gradientUnits="userSpaceOnUse"
4126+ cx="26.926001"
4127+ cy="40.177113"
4128+ fx="26.926001"
4129+ fy="40.177113"
4130+ r="1.2070918" />
4131+ <radialGradient
4132+ inkscape:collect="always"
4133+ xlink:href="#linearGradient5989"
4134+ id="radialGradient13768"
4135+ gradientUnits="userSpaceOnUse"
4136+ cx="26.926001"
4137+ cy="40.177113"
4138+ fx="26.926001"
4139+ fy="40.177113"
4140+ r="1.2070918" />
4141+ <radialGradient
4142+ inkscape:collect="always"
4143+ xlink:href="#linearGradient5989"
4144+ id="radialGradient13772"
4145+ gradientUnits="userSpaceOnUse"
4146+ cx="26.926001"
4147+ cy="40.177113"
4148+ fx="26.926001"
4149+ fy="40.177113"
4150+ r="1.2070918" />
4151+ <radialGradient
4152+ inkscape:collect="always"
4153+ xlink:href="#linearGradient5989"
4154+ id="radialGradient13776"
4155+ gradientUnits="userSpaceOnUse"
4156+ cx="26.926001"
4157+ cy="40.177113"
4158+ fx="26.926001"
4159+ fy="40.177113"
4160+ r="1.2070918" />
4161+ <radialGradient
4162+ inkscape:collect="always"
4163+ xlink:href="#linearGradient5989"
4164+ id="radialGradient13780"
4165+ gradientUnits="userSpaceOnUse"
4166+ cx="26.926001"
4167+ cy="40.177113"
4168+ fx="26.926001"
4169+ fy="40.177113"
4170+ r="1.2070918" />
4171+ <radialGradient
4172+ inkscape:collect="always"
4173+ xlink:href="#linearGradient5989"
4174+ id="radialGradient13784"
4175+ gradientUnits="userSpaceOnUse"
4176+ cx="26.926001"
4177+ cy="40.177113"
4178+ fx="26.926001"
4179+ fy="40.177113"
4180+ r="1.2070918" />
4181+ <radialGradient
4182+ inkscape:collect="always"
4183+ xlink:href="#linearGradient5989"
4184+ id="radialGradient13788"
4185+ gradientUnits="userSpaceOnUse"
4186+ cx="26.926001"
4187+ cy="40.177113"
4188+ fx="26.926001"
4189+ fy="40.177113"
4190+ r="1.2070918" />
4191+ </defs>
4192+ <sodipodi:namedview
4193+ id="base"
4194+ pagecolor="#ffffff"
4195+ bordercolor="#666666"
4196+ borderopacity="1.0"
4197+ inkscape:pageopacity="0.0"
4198+ inkscape:pageshadow="2"
4199+ inkscape:zoom="8.7527884"
4200+ inkscape:cx="50.050192"
4201+ inkscape:cy="50.050212"
4202+ inkscape:document-units="px"
4203+ inkscape:current-layer="layer3"
4204+ showguides="true"
4205+ inkscape:guide-bbox="true"
4206+ inkscape:window-width="1268"
4207+ inkscape:window-height="991"
4208+ inkscape:window-x="6"
4209+ inkscape:window-y="27"
4210+ showgrid="false"
4211+ gridempspacing="10"
4212+ inkscape:grid-bbox="true">
4213+ <sodipodi:guide
4214+ orientation="horizontal"
4215+ position="50"
4216+ id="guide1307" />
4217+ <sodipodi:guide
4218+ orientation="vertical"
4219+ position="50"
4220+ id="guide1309" />
4221+ <sodipodi:guide
4222+ orientation="horizontal"
4223+ position="100"
4224+ id="guide1311" />
4225+ <sodipodi:guide
4226+ orientation="vertical"
4227+ position="0"
4228+ id="guide1313" />
4229+ <sodipodi:guide
4230+ orientation="vertical"
4231+ position="100"
4232+ id="guide1315" />
4233+ <sodipodi:guide
4234+ orientation="horizontal"
4235+ position="0"
4236+ id="guide1317" />
4237+ <sodipodi:guide
4238+ orientation="horizontal"
4239+ position="90.060241"
4240+ id="guide1319" />
4241+ <sodipodi:guide
4242+ orientation="vertical"
4243+ position="10.040161"
4244+ id="guide1321" />
4245+ <sodipodi:guide
4246+ orientation="vertical"
4247+ position="90.060241"
4248+ id="guide1323" />
4249+ <sodipodi:guide
4250+ orientation="horizontal"
4251+ position="10.040161"
4252+ id="guide1325" />
4253+ </sodipodi:namedview>
4254+ <metadata
4255+ id="metadata7">
4256+ <rdf:RDF>
4257+ <cc:Work
4258+ rdf:about="">
4259+ <dc:format>image/svg+xml</dc:format>
4260+ <dc:type
4261+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
4262+ </cc:Work>
4263+ </rdf:RDF>
4264+ </metadata>
4265+ <g
4266+ inkscape:label="Ebene 1"
4267+ inkscape:groupmode="layer"
4268+ id="layer1">
4269+ <g
4270+ id="g6270"
4271+ inkscape:tile-w="76.020018"
4272+ inkscape:tile-h="76.020058"
4273+ inkscape:tile-cx="50.050192"
4274+ inkscape:tile-cy="49.949788">
4275+ <path
4276+ id="path3103"
4277+ d="M 50,12.439759 L 50,16.656625"
4278+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
4279+ <path
4280+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:0.99999964px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
4281+ d="M 68.761701,17.440042 L 66.653267,21.091954"
4282+ id="path4859" />
4283+ <path
4284+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:0.99999964px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
4285+ d="M 82.509718,31.15127 L 78.857806,33.259703"
4286+ id="path4871" />
4287+ <path
4288+ id="path4877"
4289+ d="M 87.560201,49.899553 L 83.343335,49.899553"
4290+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
4291+ <path
4292+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000048px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
4293+ d="M 82.559945,68.6613 L 78.90803,66.552867"
4294+ id="path4883" />
4295+ <path
4296+ id="path4889"
4297+ d="M 68.848708,82.409315 L 66.740271,78.7574"
4298+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000107px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
4299+ <path
4300+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000095px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
4301+ d="M 50.100443,87.459817 L 50.100441,83.242947"
4302+ id="path4895" />
4303+ <path
4304+ id="path4901"
4305+ d="M 31.33868,82.459533 L 33.447113,78.807613"
4306+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000143px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
4307+ <path
4308+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000107px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
4309+ d="M 17.590685,68.748308 L 21.2426,66.639871"
4310+ id="path4907" />
4311+ <path
4312+ id="path4913"
4313+ d="M 12.540183,50.000043 L 16.757053,50.000041"
4314+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000095px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
4315+ <path
4316+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000143px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
4317+ d="M 17.540467,31.23828 L 21.192387,33.346713"
4318+ id="path4919" />
4319+ <path
4320+ id="path4925"
4321+ d="M 31.251702,17.490285 L 33.360139,21.1422"
4322+ style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#282d30;stroke-width:1.00000107px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
4323+ </g>
4324+ <use
4325+ x="0"
4326+ y="0"
4327+ inkscape:tiled-clone-of="#g6270"
4328+ xlink:href="#g6270"
4329+ id="use6284" />
4330+ <use
4331+ x="0"
4332+ y="0"
4333+ inkscape:tiled-clone-of="#g6270"
4334+ xlink:href="#g6270"
4335+ transform="matrix(0.965926,0.258819,-0.258819,0.965926,14.63338,-11.25195)"
4336+ id="use6286" />
4337+ <use
4338+ x="0"
4339+ y="0"
4340+ inkscape:tiled-clone-of="#g6270"
4341+ xlink:href="#g6270"
4342+ id="use6288" />
4343+ <use
4344+ x="0"
4345+ y="0"
4346+ inkscape:tiled-clone-of="#g6270"
4347+ xlink:href="#g6270"
4348+ transform="matrix(0.965926,0.258819,-0.258819,0.965926,14.63338,-11.25195)"
4349+ id="use6290" />
4350+ </g>
4351+ <g
4352+ inkscape:groupmode="layer"
4353+ id="layer2"
4354+ inkscape:label="tmp">
4355+ <path
4356+ sodipodi:type="arc"
4357+ style="fill:url(#radialGradient11602);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4358+ id="use9785"
4359+ sodipodi:cx="27.280275"
4360+ sodipodi:cy="40.562798"
4361+ sodipodi:rx="1.2070918"
4362+ sodipodi:ry="1.2070918"
4363+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4364+ transform="matrix(0.412361,0,0,0.412361,76.06967,29.27913)" />
4365+ <path
4366+ transform="matrix(0.412361,0,0,0.412361,75.44209,25.38973)"
4367+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4368+ sodipodi:ry="1.2070918"
4369+ sodipodi:rx="1.2070918"
4370+ sodipodi:cy="40.562798"
4371+ sodipodi:cx="27.280275"
4372+ id="path13602"
4373+ style="fill:url(#radialGradient13644);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4374+ sodipodi:type="arc" />
4375+ <path
4376+ sodipodi:type="arc"
4377+ style="fill:url(#radialGradient13642);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4378+ id="path13604"
4379+ sodipodi:cx="27.280275"
4380+ sodipodi:cy="40.562798"
4381+ sodipodi:rx="1.2070918"
4382+ sodipodi:ry="1.2070918"
4383+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4384+ transform="matrix(0.412361,0,0,0.412361,74.42833,21.59184)" />
4385+ <path
4386+ transform="matrix(0.412361,0,0,0.412361,73.01588,17.91769)"
4387+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4388+ sodipodi:ry="1.2070918"
4389+ sodipodi:rx="1.2070918"
4390+ sodipodi:cy="40.562798"
4391+ sodipodi:cx="27.280275"
4392+ id="path13606"
4393+ style="fill:url(#radialGradient13640);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4394+ sodipodi:type="arc" />
4395+ <path
4396+ sodipodi:type="arc"
4397+ style="fill:url(#radialGradient13638);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4398+ id="path13608"
4399+ sodipodi:cx="27.280275"
4400+ sodipodi:cy="40.562798"
4401+ sodipodi:rx="1.2070918"
4402+ sodipodi:ry="1.2070918"
4403+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4404+ transform="matrix(0.412361,0,0,0.412361,69.08579,11.14663)" />
4405+ <path
4406+ transform="matrix(0.412361,0,0,0.412361,66.61845,8.115808)"
4407+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4408+ sodipodi:ry="1.2070918"
4409+ sodipodi:rx="1.2070918"
4410+ sodipodi:cy="40.562798"
4411+ sodipodi:cx="27.280275"
4412+ id="path13610"
4413+ style="fill:url(#radialGradient13636);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4414+ sodipodi:type="arc" />
4415+ <path
4416+ sodipodi:type="arc"
4417+ style="fill:url(#radialGradient13634);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4418+ id="path13612"
4419+ sodipodi:cx="27.280275"
4420+ sodipodi:cy="40.562798"
4421+ sodipodi:rx="1.2070918"
4422+ sodipodi:ry="1.2070918"
4423+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4424+ transform="matrix(0.412361,0,0,0.412361,63.84403,5.331305)" />
4425+ <path
4426+ transform="matrix(0.412361,0,0,0.412361,60.77652,2.846262)"
4427+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4428+ sodipodi:ry="1.2070918"
4429+ sodipodi:rx="1.2070918"
4430+ sodipodi:cy="40.562798"
4431+ sodipodi:cx="27.280275"
4432+ id="path13614"
4433+ style="fill:url(#radialGradient13632);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4434+ sodipodi:type="arc" />
4435+ <path
4436+ sodipodi:type="arc"
4437+ style="fill:url(#radialGradient13630);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4438+ id="path13616"
4439+ sodipodi:cx="27.280275"
4440+ sodipodi:cy="40.562798"
4441+ sodipodi:rx="1.2070918"
4442+ sodipodi:ry="1.2070918"
4443+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4444+ transform="matrix(0.412361,0,0,0.412361,54.01917,-1.055227)" />
4445+ <path
4446+ transform="matrix(0.412361,0,0,0.412361,50.368,-2.464411)"
4447+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4448+ sodipodi:ry="1.2070918"
4449+ sodipodi:rx="1.2070918"
4450+ sodipodi:cy="40.562798"
4451+ sodipodi:cx="27.280275"
4452+ id="path13618"
4453+ style="fill:url(#radialGradient13628);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4454+ sodipodi:type="arc" />
4455+ <path
4456+ sodipodi:type="arc"
4457+ style="fill:url(#radialGradient13626);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4458+ id="path13620"
4459+ sodipodi:cx="27.280275"
4460+ sodipodi:cy="40.562798"
4461+ sodipodi:rx="1.2070918"
4462+ sodipodi:ry="1.2070918"
4463+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4464+ transform="matrix(0.412361,0,0,0.412361,46.60235,-3.468092)" />
4465+ <path
4466+ transform="matrix(0.412361,0,0,0.412361,42.66136,-4.090057)"
4467+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4468+ sodipodi:ry="1.2070918"
4469+ sodipodi:rx="1.2070918"
4470+ sodipodi:cy="40.562798"
4471+ sodipodi:cx="27.280275"
4472+ id="path13622"
4473+ style="fill:url(#radialGradient13624);fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4474+ sodipodi:type="arc" />
4475+ <path
4476+ transform="matrix(0.412361,0,0,0.412361,76.06537,37.09265)"
4477+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4478+ sodipodi:ry="1.2070918"
4479+ sodipodi:rx="1.2070918"
4480+ sodipodi:cy="40.562798"
4481+ sodipodi:cx="27.280275"
4482+ id="path13646"
4483+ style="fill:url(#radialGradient13648);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4484+ sodipodi:type="arc" />
4485+ <path
4486+ sodipodi:type="arc"
4487+ style="fill:url(#radialGradient13652);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4488+ id="path13650"
4489+ sodipodi:cx="27.280275"
4490+ sodipodi:cy="40.562798"
4491+ sodipodi:rx="1.2070918"
4492+ sodipodi:ry="1.2070918"
4493+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4494+ transform="matrix(0.412361,0,0,0.412361,75.46061,41.00724)" />
4495+ <path
4496+ transform="matrix(0.412361,0,0,0.412361,74.46455,44.75398)"
4497+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4498+ sodipodi:ry="1.2070918"
4499+ sodipodi:rx="1.2070918"
4500+ sodipodi:cy="40.562798"
4501+ sodipodi:cx="27.280275"
4502+ id="path13654"
4503+ style="fill:url(#radialGradient13656);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4504+ sodipodi:type="arc" />
4505+ <path
4506+ sodipodi:type="arc"
4507+ style="fill:url(#radialGradient13660);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4508+ id="path13658"
4509+ sodipodi:cx="27.280275"
4510+ sodipodi:cy="40.562798"
4511+ sodipodi:rx="1.2070918"
4512+ sodipodi:ry="1.2070918"
4513+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4514+ transform="matrix(0.412361,0,0,0.412361,73.07568,48.41773)" />
4515+ <path
4516+ transform="matrix(0.412361,0,0,0.412361,69.17049,55.20698)"
4517+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4518+ sodipodi:ry="1.2070918"
4519+ sodipodi:rx="1.2070918"
4520+ sodipodi:cy="40.562798"
4521+ sodipodi:cx="27.280275"
4522+ id="path13662"
4523+ style="fill:url(#radialGradient13664);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4524+ sodipodi:type="arc" />
4525+ <path
4526+ sodipodi:type="arc"
4527+ style="fill:url(#radialGradient13668);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4528+ id="path13666"
4529+ sodipodi:cx="27.280275"
4530+ sodipodi:cy="40.562798"
4531+ sodipodi:rx="1.2070918"
4532+ sodipodi:ry="1.2070918"
4533+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4534+ transform="matrix(0.412361,0,0,0.412361,66.70315,58.26388)" />
4535+ <path
4536+ transform="matrix(0.412361,0,0,0.412361,63.93087,61.04382)"
4537+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4538+ sodipodi:ry="1.2070918"
4539+ sodipodi:rx="1.2070918"
4540+ sodipodi:cy="40.562798"
4541+ sodipodi:cx="27.280275"
4542+ id="path13670"
4543+ style="fill:url(#radialGradient13672);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4544+ sodipodi:type="arc" />
4545+ <path
4546+ sodipodi:type="arc"
4547+ style="fill:url(#radialGradient13676);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4548+ id="path13674"
4549+ sodipodi:cx="27.280275"
4550+ sodipodi:cy="40.562798"
4551+ sodipodi:rx="1.2070918"
4552+ sodipodi:ry="1.2070918"
4553+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4554+ transform="matrix(0.412361,0,0,0.412361,60.89893,63.50558)" />
4555+ <path
4556+ transform="matrix(0.412361,0,0,0.412361,54.1033,67.4752)"
4557+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4558+ sodipodi:ry="1.2070918"
4559+ sodipodi:rx="1.2070918"
4560+ sodipodi:cy="40.562798"
4561+ sodipodi:cx="27.280275"
4562+ id="path13678"
4563+ style="fill:url(#radialGradient13680);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4564+ sodipodi:type="arc" />
4565+ <path
4566+ sodipodi:type="arc"
4567+ style="fill:url(#radialGradient13684);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4568+ id="path13682"
4569+ sodipodi:cx="27.280275"
4570+ sodipodi:cy="40.562798"
4571+ sodipodi:rx="1.2070918"
4572+ sodipodi:ry="1.2070918"
4573+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4574+ transform="matrix(0.412361,0,0,0.412361,50.45778,68.89285)" />
4575+ <path
4576+ transform="matrix(0.412361,0,0,0.412361,46.64718,69.92942)"
4577+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4578+ sodipodi:ry="1.2070918"
4579+ sodipodi:rx="1.2070918"
4580+ sodipodi:cy="40.562798"
4581+ sodipodi:cx="27.280275"
4582+ id="path13686"
4583+ style="fill:url(#radialGradient13688);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4584+ sodipodi:type="arc" />
4585+ <path
4586+ sodipodi:type="arc"
4587+ style="fill:url(#radialGradient13692);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4588+ id="path13690"
4589+ sodipodi:cx="27.280275"
4590+ sodipodi:cy="40.562798"
4591+ sodipodi:rx="1.2070918"
4592+ sodipodi:ry="1.2070918"
4593+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4594+ transform="matrix(0.412361,0,0,0.412361,42.77867,70.54601)" />
4595+ <path
4596+ transform="matrix(0.412361,0,0,0.412361,34.92423,70.551)"
4597+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4598+ sodipodi:ry="1.2070918"
4599+ sodipodi:rx="1.2070918"
4600+ sodipodi:cy="40.562798"
4601+ sodipodi:cx="27.280275"
4602+ id="path13694"
4603+ style="fill:url(#radialGradient13696);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4604+ sodipodi:type="arc" />
4605+ <path
4606+ sodipodi:type="arc"
4607+ style="fill:url(#radialGradient13700);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4608+ id="path13698"
4609+ sodipodi:cx="27.280275"
4610+ sodipodi:cy="40.562798"
4611+ sodipodi:rx="1.2070918"
4612+ sodipodi:ry="1.2070918"
4613+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4614+ transform="matrix(0.412361,0,0,0.412361,30.98303,69.94899)" />
4615+ <path
4616+ transform="matrix(0.412361,0,0,0.412361,27.2464,68.95371)"
4617+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4618+ sodipodi:ry="1.2070918"
4619+ sodipodi:rx="1.2070918"
4620+ sodipodi:cy="40.562798"
4621+ sodipodi:cx="27.280275"
4622+ id="path13702"
4623+ style="fill:url(#radialGradient13704);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4624+ sodipodi:type="arc" />
4625+ <path
4626+ sodipodi:type="arc"
4627+ style="fill:url(#radialGradient13708);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4628+ id="path13706"
4629+ sodipodi:cx="27.280275"
4630+ sodipodi:cy="40.562798"
4631+ sodipodi:rx="1.2070918"
4632+ sodipodi:ry="1.2070918"
4633+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4634+ transform="matrix(0.412361,0,0,0.412361,23.53831,67.54561)" />
4635+ <path
4636+ transform="matrix(0.412361,0,0,0.412361,16.74291,63.62887)"
4637+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4638+ sodipodi:ry="1.2070918"
4639+ sodipodi:rx="1.2070918"
4640+ sodipodi:cy="40.562798"
4641+ sodipodi:cx="27.280275"
4642+ id="path13710"
4643+ style="fill:url(#radialGradient13712);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4644+ sodipodi:type="arc" />
4645+ <path
4646+ sodipodi:type="arc"
4647+ style="fill:url(#radialGradient13716);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4648+ id="path13714"
4649+ sodipodi:cx="27.280275"
4650+ sodipodi:cy="40.562798"
4651+ sodipodi:rx="1.2070918"
4652+ sodipodi:ry="1.2070918"
4653+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4654+ transform="matrix(0.412361,0,0,0.412361,13.69063,61.16333)" />
4655+ <path
4656+ transform="matrix(0.412361,0,0,0.412361,10.90158,58.37239)"
4657+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4658+ sodipodi:ry="1.2070918"
4659+ sodipodi:rx="1.2070918"
4660+ sodipodi:cy="40.562798"
4661+ sodipodi:cx="27.280275"
4662+ id="path13718"
4663+ style="fill:url(#radialGradient13720);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4664+ sodipodi:type="arc" />
4665+ <path
4666+ sodipodi:type="arc"
4667+ style="fill:url(#radialGradient13724);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4668+ id="path13722"
4669+ sodipodi:cx="27.280275"
4670+ sodipodi:cy="40.562798"
4671+ sodipodi:rx="1.2070918"
4672+ sodipodi:ry="1.2070918"
4673+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4674+ transform="matrix(0.412361,0,0,0.412361,8.43805,55.34225)" />
4675+ <path
4676+ transform="matrix(0.412361,0,0,0.412361,4.488068,48.53686)"
4677+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4678+ sodipodi:ry="1.2070918"
4679+ sodipodi:rx="1.2070918"
4680+ sodipodi:cy="40.562798"
4681+ sodipodi:cx="27.280275"
4682+ id="path13726"
4683+ style="fill:url(#radialGradient13728);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4684+ sodipodi:type="arc" />
4685+ <path
4686+ sodipodi:type="arc"
4687+ style="fill:url(#radialGradient13732);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4688+ id="path13730"
4689+ sodipodi:cx="27.280275"
4690+ sodipodi:cy="40.562798"
4691+ sodipodi:rx="1.2070918"
4692+ sodipodi:ry="1.2070918"
4693+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4694+ transform="matrix(0.412361,0,0,0.412361,3.064011,44.86091)" />
4695+ <path
4696+ transform="matrix(0.412361,0,0,0.412361,2.044687,41.0666)"
4697+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4698+ sodipodi:ry="1.2070918"
4699+ sodipodi:rx="1.2070918"
4700+ sodipodi:cy="40.562798"
4701+ sodipodi:cx="27.280275"
4702+ id="path13734"
4703+ style="fill:url(#radialGradient13736);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4704+ sodipodi:type="arc" />
4705+ <path
4706+ sodipodi:type="arc"
4707+ style="fill:url(#radialGradient13740);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4708+ id="path13738"
4709+ sodipodi:cx="27.280275"
4710+ sodipodi:cy="40.562798"
4711+ sodipodi:rx="1.2070918"
4712+ sodipodi:ry="1.2070918"
4713+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4714+ transform="matrix(0.412361,0,0,0.412361,1.431589,37.20404)" />
4715+ <path
4716+ transform="matrix(0.412361,0,0,0.412361,1.419965,29.35357)"
4717+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4718+ sodipodi:ry="1.2070918"
4719+ sodipodi:rx="1.2070918"
4720+ sodipodi:cy="40.562798"
4721+ sodipodi:cx="27.280275"
4722+ id="path13742"
4723+ style="fill:url(#radialGradient13744);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4724+ sodipodi:type="arc" />
4725+ <path
4726+ sodipodi:type="arc"
4727+ style="fill:url(#radialGradient13748);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4728+ id="path13746"
4729+ sodipodi:cx="27.280275"
4730+ sodipodi:cy="40.562798"
4731+ sodipodi:rx="1.2070918"
4732+ sodipodi:ry="1.2070918"
4733+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4734+ transform="matrix(0.412361,0,0,0.412361,2.040072,25.41147)" />
4735+ <path
4736+ transform="matrix(0.412361,0,0,0.412361,3.046088,21.65151)"
4737+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4738+ sodipodi:ry="1.2070918"
4739+ sodipodi:rx="1.2070918"
4740+ sodipodi:cy="40.562798"
4741+ sodipodi:cx="27.280275"
4742+ id="path13750"
4743+ style="fill:url(#radialGradient13752);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4744+ sodipodi:type="arc" />
4745+ <path
4746+ sodipodi:type="arc"
4747+ style="fill:url(#radialGradient13756);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4748+ id="path13754"
4749+ sodipodi:cx="27.280275"
4750+ sodipodi:cy="40.562798"
4751+ sodipodi:rx="1.2070918"
4752+ sodipodi:ry="1.2070918"
4753+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4754+ transform="matrix(0.412361,0,0,0.412361,4.455927,17.96558)" />
4755+ <path
4756+ transform="matrix(0.412361,0,0,0.412361,8.385328,11.17217)"
4757+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4758+ sodipodi:ry="1.2070918"
4759+ sodipodi:rx="1.2070918"
4760+ sodipodi:cy="40.562798"
4761+ sodipodi:cx="27.280275"
4762+ id="path13758"
4763+ style="fill:url(#radialGradient13760);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4764+ sodipodi:type="arc" />
4765+ <path
4766+ sodipodi:type="arc"
4767+ style="fill:url(#radialGradient13764);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4768+ id="path13762"
4769+ sodipodi:cx="27.280275"
4770+ sodipodi:cy="40.562798"
4771+ sodipodi:rx="1.2070918"
4772+ sodipodi:ry="1.2070918"
4773+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4774+ transform="matrix(0.412361,0,0,0.412361,10.85727,8.124483)" />
4775+ <path
4776+ transform="matrix(0.412361,0,0,0.412361,13.63609,5.353387)"
4777+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4778+ sodipodi:ry="1.2070918"
4779+ sodipodi:rx="1.2070918"
4780+ sodipodi:cy="40.562798"
4781+ sodipodi:cx="27.280275"
4782+ id="path13766"
4783+ style="fill:url(#radialGradient13768);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4784+ sodipodi:type="arc" />
4785+ <path
4786+ sodipodi:type="arc"
4787+ style="fill:url(#radialGradient13772);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4788+ id="path13770"
4789+ sodipodi:cx="27.280275"
4790+ sodipodi:cy="40.562798"
4791+ sodipodi:rx="1.2070918"
4792+ sodipodi:ry="1.2070918"
4793+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4794+ transform="matrix(0.412361,0,0,0.412361,16.69023,2.875173)" />
4795+ <path
4796+ transform="matrix(0.412361,0,0,0.412361,23.48873,-1.057035)"
4797+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4798+ sodipodi:ry="1.2070918"
4799+ sodipodi:rx="1.2070918"
4800+ sodipodi:cy="40.562798"
4801+ sodipodi:cx="27.280275"
4802+ id="path13774"
4803+ style="fill:url(#radialGradient13776);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4804+ sodipodi:type="arc" />
4805+ <path
4806+ sodipodi:type="arc"
4807+ style="fill:url(#radialGradient13780);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4808+ id="path13778"
4809+ sodipodi:cx="27.280275"
4810+ sodipodi:cy="40.562798"
4811+ sodipodi:rx="1.2070918"
4812+ sodipodi:ry="1.2070918"
4813+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4814+ transform="matrix(0.412361,0,0,0.412361,27.16295,-2.46806)" />
4815+ <path
4816+ transform="matrix(0.412361,0,0,0.412361,30.94519,-3.481573)"
4817+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4818+ sodipodi:ry="1.2070918"
4819+ sodipodi:rx="1.2070918"
4820+ sodipodi:cy="40.562798"
4821+ sodipodi:cx="27.280275"
4822+ id="path13782"
4823+ style="fill:url(#radialGradient13784);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4824+ sodipodi:type="arc" />
4825+ <path
4826+ sodipodi:type="arc"
4827+ style="fill:url(#radialGradient13788);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
4828+ id="path13786"
4829+ sodipodi:cx="27.280275"
4830+ sodipodi:cy="40.562798"
4831+ sodipodi:rx="1.2070918"
4832+ sodipodi:ry="1.2070918"
4833+ d="M 28.487367 40.562798 A 1.2070918 1.2070918 0 1 1 26.073184,40.562798 A 1.2070918 1.2070918 0 1 1 28.487367 40.562798 z"
4834+ transform="matrix(0.412361,0,0,0.412361,34.8199,-4.095463)" />
4835+ </g>
4836+ <g
4837+ inkscape:groupmode="layer"
4838+ id="layer3"
4839+ inkscape:label="GuideRules" />
4840+</svg>
4841
4842=== added directory 'docklets/Desktop'
4843=== added file 'docklets/Desktop/DesktopDockItem.vala'
4844--- docklets/Desktop/DesktopDockItem.vala 1970-01-01 00:00:00 +0000
4845+++ docklets/Desktop/DesktopDockItem.vala 2015-11-02 08:43:01 +0000
4846@@ -0,0 +1,55 @@
4847+//
4848+// Copyright (C) 2015 Rico Tzschichholz
4849+//
4850+// This file is part of Plank.
4851+//
4852+// Plank is free software: you can redistribute it and/or modify
4853+// it under the terms of the GNU General Public License as published by
4854+// the Free Software Foundation, either version 3 of the License, or
4855+// (at your option) any later version.
4856+//
4857+// Plank is distributed in the hope that it will be useful,
4858+// but WITHOUT ANY WARRANTY; without even the implied warranty of
4859+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4860+// GNU General Public License for more details.
4861+//
4862+// You should have received a copy of the GNU General Public License
4863+// along with this program. If not, see <http://www.gnu.org/licenses/>.
4864+//
4865+
4866+using Plank.Items;
4867+
4868+namespace Docky
4869+{
4870+ public class DesktopDockItem : DockletItem
4871+ {
4872+ /**
4873+ * {@inheritDoc}
4874+ */
4875+ public DesktopDockItem.with_dockitem_file (GLib.File file)
4876+ {
4877+ GLib.Object (Prefs: new DockItemPreferences.with_file (file));
4878+ }
4879+
4880+ construct
4881+ {
4882+ Icon = "resource://" + Docky.G_RESOURCE_PATH + "/icons/show-desktop.svg";
4883+ Text = _("Show Desktop");
4884+ }
4885+
4886+ ~DesktopDockItem ()
4887+ {
4888+ }
4889+
4890+ protected override Animation on_clicked (PopupButton button, Gdk.ModifierType mod, uint32 event_time)
4891+ {
4892+ if (button == PopupButton.LEFT) {
4893+ unowned Wnck.Screen screen = Wnck.Screen.get_default ();
4894+ screen.toggle_showing_desktop (!screen.get_showing_desktop ());
4895+ return Animation.BOUNCE;
4896+ }
4897+
4898+ return Animation.NONE;
4899+ }
4900+ }
4901+}
4902
4903=== added file 'docklets/Desktop/DesktopDocklet.vala'
4904--- docklets/Desktop/DesktopDocklet.vala 1970-01-01 00:00:00 +0000
4905+++ docklets/Desktop/DesktopDocklet.vala 2015-11-02 08:43:01 +0000
4906@@ -0,0 +1,36 @@
4907+//
4908+// Copyright (C) 2015 Rico Tzschichholz
4909+//
4910+// This file is part of Plank.
4911+//
4912+// Plank is free software: you can redistribute it and/or modify
4913+// it under the terms of the GNU General Public License as published by
4914+// the Free Software Foundation, either version 3 of the License, or
4915+// (at your option) any later version.
4916+//
4917+// Plank is distributed in the hope that it will be useful,
4918+// but WITHOUT ANY WARRANTY; without even the implied warranty of
4919+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4920+// GNU General Public License for more details.
4921+//
4922+// You should have received a copy of the GNU General Public License
4923+// along with this program. If not, see <http://www.gnu.org/licenses/>.
4924+//
4925+
4926+public static void docklet_init (Docky.DockletManager manager)
4927+{
4928+ manager.register_docklet ("Desktop", typeof (Docky.DesktopDocklet));
4929+}
4930+
4931+namespace Docky
4932+{
4933+ public const string G_RESOURCE_PATH = "/net/launchpad/plank/docklets/desktop";
4934+
4935+ public class DesktopDocklet : Docklet
4936+ {
4937+ public override Plank.Items.DockElement make_element (string launcher, GLib.File file)
4938+ {
4939+ return new DesktopDockItem.with_dockitem_file (file);
4940+ }
4941+ }
4942+}
4943
4944=== added file 'docklets/Desktop/Makefile.am'
4945--- docklets/Desktop/Makefile.am 1970-01-01 00:00:00 +0000
4946+++ docklets/Desktop/Makefile.am 2015-11-02 08:43:01 +0000
4947@@ -0,0 +1,73 @@
4948+include $(top_srcdir)/Makefile.common
4949+
4950+VAPIDIR = $(top_srcdir)/vapi
4951+
4952+BUILT_SOURCES = \
4953+ docky-desktop-resources.c \
4954+ $(NULL)
4955+
4956+libdocklet_desktop_la_LTLIBRARIES = libdocklet-desktop.la
4957+
4958+libdocklet_desktop_ladir = $(pkglibdir)/docklets
4959+
4960+libdocklet_desktop_la_VALASOURCES = \
4961+ DesktopDockItem.vala \
4962+ DesktopDocklet.vala \
4963+ $(NULL)
4964+
4965+nodist_libdocklet_desktop_la_SOURCES = \
4966+ $(BUILT_SOURCES) \
4967+ $(libdocklet_desktop_la_VALASOURCES:.vala=.c) \
4968+ $(NULL)
4969+
4970+libdocklet_desktop_la_VALAFLAGS = \
4971+ $(PLANK_CORE_VALAFLAGS) \
4972+ $(VAPIDIR)/config.vapi \
4973+ --vapidir $(top_srcdir)/vapi \
4974+ --vapidir $(top_builddir)/lib \
4975+ --pkg plank \
4976+ --pkg plank-docklets \
4977+ $(NULL)
4978+
4979+libdocklet_desktop_la_LIBADD = \
4980+ $(PLANK_CORE_LIBS) \
4981+ $(NULL)
4982+
4983+libdocklet_desktop_la_LDFLAGS = \
4984+ $(DOCKLET_LDFLAGS) \
4985+ $(PLANK_CORE_LDFLAGS) \
4986+ $(top_builddir)/lib/libplank.la \
4987+ $(NULL)
4988+
4989+libdocklet_desktop_la_CFLAGS = \
4990+ $(PLANK_CORE_CFLAGS) \
4991+ -DWNCK_I_KNOW_THIS_IS_UNSTABLE \
4992+ -include config.h -w \
4993+ -I$(top_builddir)/lib \
4994+ $(NULL)
4995+
4996+docky-desktop-resources.c: $(srcdir)/desktop.gresource.xml Makefile $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies --sourcedir $(srcdir) $(srcdir)/desktop.gresource.xml)
4997+ $(AM_V_GEN) XMLLINT=$(XMLLINT) $(GLIB_COMPILE_RESOURCES) --target $@ --sourcedir $(srcdir) --generate --c-name docky_desktop $<
4998+
4999+$(libdocklet_desktop_la_VALASOURCES:.vala=.c): libdocklet_desktop_la_vala.stamp
5000+
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to status/vote changes: