diff options
author | louis <louis.braun@gmx.de> | 2015-01-06 06:07:48 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2015-01-06 06:07:48 +0100 |
commit | acd552d5f37ec4882f624baf8cb860c001cfdd89 (patch) | |
tree | 5545dbdf9b15d2bd1e0ff57c21f7b699a683570b | |
parent | 8328a5d4d928bd81179ab03490eb59655d418b58 (diff) | |
download | vdr-plugin-skindesigner-acd552d5f37ec4882f624baf8cb860c001cfdd89.tar.gz vdr-plugin-skindesigner-acd552d5f37ec4882f624baf8cb860c001cfdd89.tar.bz2 |
added skin blackhole
700 files changed, 61839 insertions, 210 deletions
@@ -119,3 +119,17 @@ Version 0.1.0 - added automatic determination of custom int tokens Version 0.1.1 + +- added "temperatures" view element in displaymenumainview to display + cpu and gpu temperature in main menu (scripts to get temperatures + borrowed from skinflatplus) +- added "time" view element in displaychannelview, displayreplay view + and displaymenuviews to display current time with seconds precision +- added {currenttab}, {prevtab}, {nexttab} Tokens in <tablabels> view + elements +- fixed bug that in displaytracks the audio tracks are not positioned + correctly +- fixed some minor bugs +- added skin "blackhole" + +Version 0.1.2 @@ -22,6 +22,7 @@ PLGCFG = $(call PKGCFG,plgcfg) VDRCONFDIR = $(call PKGCFG,configdir) PLGRESDIR = $(call PKGCFG,resdir)/plugins/$(PLUGIN) TMPDIR ?= /tmp +SKINDESIGNER_SCRIPTDIR ?= $(LIBDIR)/$(PLUGIN)/scripts ### The compiler options: export CFLAGS = $(call PKGCFG,cflags) @@ -44,6 +45,7 @@ SOFILE = libvdr-$(PLUGIN).so ### Includes and Defines and Dependencies: DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"' $(CONFIG) DEFINES += $(shell xml2-config --cflags) +DEFINES += -DSCRIPTFOLDER='"$(SKINDESIGNER_SCRIPTDIR)"' INCLUDES += $(shell pkg-config --cflags freetype2 fontconfig) @@ -160,7 +162,11 @@ install-skins: mkdir -p $(DESTDIR)$(PLGRESDIR)/dtd cp -r dtd/* $(DESTDIR)$(PLGRESDIR)/dtd -install: install-lib install-i18n install-themes install-skins +install-scripts: + mkdir -p $(DESTDIR)$(SKINDESIGNER_SCRIPTDIR) + cp -r scripts/* $(DESTDIR)$(SKINDESIGNER_SCRIPTDIR) + +install: install-lib install-i18n install-themes install-skins install-scripts dist: $(I18Npo) clean @-rm -rf $(TMPDIR)/$(ARCHIVE) @@ -11,6 +11,8 @@ #include "libcore/imagecache.h" #include "libcore/recfolderinfo.h" +#define SCRIPTOUTPUTPATH "/tmp/skindesigner" + class cDesignerConfig { private: cString CheckSlashAtEnd(string path); diff --git a/displaychannel.c b/displaychannel.c index d26e991..941e2fa 100644 --- a/displaychannel.c +++ b/displaychannel.c @@ -175,6 +175,7 @@ void cSDDisplayChannel::Flush(void) { if (initial || channelChange) { channelView->DrawDate(); } + channelView->DrawTime(); if (present) { SetProgressBar(present); diff --git a/displaymenu.c b/displaymenu.c index 3055e4d..f5f64ec 100644 --- a/displaymenu.c +++ b/displaymenu.c @@ -263,6 +263,7 @@ bool cSDDisplayMenu::SetPluginText(map<string,string> *stringTokens, map<string, void cSDDisplayMenu::Flush(void) { if (!doOutput) return; + bool doFlush = false; if (state == vsInit) { rootView->Start(); @@ -281,11 +282,12 @@ void cSDDisplayMenu::Flush(void) { rootView->DoFlush(); rootView->RenderDetailView(); rootView->DoFlush(); - } else { - if (rootView->RenderDynamicElements()) { - doFlush = true; - } } + + if (rootView->RenderDynamicElements()) { + doFlush = true; + } + if (doFlush) { if (config.blockFlush) rootView->OpenFlush(); diff --git a/displayreplay.c b/displayreplay.c index 95a7235..ec79c3b 100644 --- a/displayreplay.c +++ b/displayreplay.c @@ -77,7 +77,10 @@ void cSDDisplayReplay::SetMessage(eMessageType Type, const char *Text) { void cSDDisplayReplay::Flush(void) { if (!doOutput) return; - replayView->DrawDate(modeOnly); + if (!modeOnly) { + replayView->DrawDate(); + replayView->DrawTime(); + } if (initial) { replayView->DoFadeIn(); initial = false; diff --git a/dtd/displaychannel.dtd b/dtd/displaychannel.dtd index a99e87e..f9664b0 100644 --- a/dtd/displaychannel.dtd +++ b/dtd/displaychannel.dtd @@ -5,7 +5,7 @@ <!ELEMENT displaychannel (background | channelinfo | epginfo | progressbar | progressbarback |
statusinfo | audioinfo | screenresolution | channelgroup |
signalquality | signalqualityback | devices | scrapercontent |
- datetime | message | customtokens)* >
+ datetime | time | message | customtokens)* >
<!ATTLIST displaychannel
x CDATA #REQUIRED
y CDATA #REQUIRED
@@ -88,6 +88,11 @@ debug CDATA #IMPLIED
>
+<!ELEMENT time (area|areascroll)*>
+<!ATTLIST time
+ debug CDATA #IMPLIED
+>
+
<!ELEMENT message (area|areascroll)*>
<!ATTLIST message
debug CDATA #IMPLIED
diff --git a/dtd/displaymenu.dtd b/dtd/displaymenu.dtd index d939a36..5dc80ef 100644 --- a/dtd/displaymenu.dtd +++ b/dtd/displaymenu.dtd @@ -2,7 +2,7 @@ <!ENTITY % functions SYSTEM "functions.dtd">
-<!ELEMENT displaymenu (background,header,datetime,message,colorbuttons,
+<!ELEMENT displaymenu (background,header,datetime,time*,message,colorbuttons,
menudefault,menumain*,menusetup*,menuschedules*,
menutimers*,menuchannels*,menurecordings*,
menudetailedepg,menudetailedrecording,
@@ -30,6 +30,11 @@ debug CDATA #IMPLIED
>
+<!ELEMENT time (area|areascroll)*>
+<!ATTLIST time
+ debug CDATA #IMPLIED
+>
+
<!ELEMENT message (area|areascroll)*>
<!ATTLIST message
debug CDATA #IMPLIED
@@ -60,6 +65,11 @@ debug CDATA #IMPLIED
>
+<!ELEMENT temperatures (area|areascroll)*>
+<!ATTLIST temperatures
+ debug CDATA #IMPLIED
+>
+
<!ELEMENT currentschedule (area|areascroll)*>
<!ATTLIST currentschedule
debug CDATA #IMPLIED
@@ -85,7 +95,7 @@ debug CDATA #IMPLIED
>
-<!ELEMENT menudefault (background | header | datetime | colorbuttons | scrollbar | menuitems)*>
+<!ELEMENT menudefault (background | header | datetime | time | colorbuttons | scrollbar | menuitems)*>
<!ATTLIST menudefault
x CDATA #REQUIRED
y CDATA #REQUIRED
@@ -98,8 +108,8 @@ scaletvheight CDATA #IMPLIED
>
-<!ELEMENT menumain (background | header | datetime | colorbuttons | scrollbar | timers |
- discusage | devices | systemload | currentschedule | customtokens | menuitems)*>
+<!ELEMENT menumain (background | header | datetime | time | colorbuttons | scrollbar | timers |
+ discusage | devices | systemload | temperatures | currentschedule | customtokens | menuitems)*>
<!ATTLIST menumain
x CDATA #REQUIRED
y CDATA #REQUIRED
@@ -112,7 +122,7 @@ scaletvheight CDATA #IMPLIED
>
-<!ELEMENT menusetup (background | header | datetime | colorbuttons | scrollbar | menuitems)*>
+<!ELEMENT menusetup (background | header | datetime | time | colorbuttons | scrollbar | menuitems)*>
<!ATTLIST menusetup
x CDATA #REQUIRED
y CDATA #REQUIRED
@@ -125,7 +135,7 @@ scaletvheight CDATA #IMPLIED
>
-<!ELEMENT menuschedules (background | header | datetime | colorbuttons | scrollbar | menuitems)*>
+<!ELEMENT menuschedules (background | header | datetime | time | colorbuttons | scrollbar | menuitems)*>
<!ATTLIST menuschedules
x CDATA #REQUIRED
y CDATA #REQUIRED
@@ -138,7 +148,7 @@ scaletvheight CDATA #IMPLIED
>
-<!ELEMENT menutimers (background | header | datetime | colorbuttons | scrollbar | menuitems)*>
+<!ELEMENT menutimers (background | header | datetime | time | colorbuttons | scrollbar | menuitems)*>
<!ATTLIST menutimers
x CDATA #REQUIRED
y CDATA #REQUIRED
@@ -151,7 +161,7 @@ scaletvheight CDATA #IMPLIED
>
-<!ELEMENT menuchannels (background | header | datetime | colorbuttons | scrollbar | menuitems)*>
+<!ELEMENT menuchannels (background | header | datetime | time | colorbuttons | scrollbar | menuitems)*>
<!ATTLIST menuchannels
x CDATA #REQUIRED
y CDATA #REQUIRED
@@ -164,7 +174,7 @@ scaletvheight CDATA #IMPLIED
>
-<!ELEMENT menurecordings (background | header | datetime | colorbuttons | scrollbar | menuitems)*>
+<!ELEMENT menurecordings (background | header | datetime | time | colorbuttons | scrollbar | menuitems)*>
<!ATTLIST menurecordings
x CDATA #REQUIRED
y CDATA #REQUIRED
@@ -177,7 +187,7 @@ scaletvheight CDATA #IMPLIED
>
-<!ELEMENT menudetailedepg (background | header | datetime | colorbuttons | scrollbar |
+<!ELEMENT menudetailedepg (background | header | datetime | time | colorbuttons | scrollbar |
detailheader | tab | tablabels)*>
<!ATTLIST menudetailedepg
x CDATA #REQUIRED
@@ -191,7 +201,7 @@ scaletvheight CDATA #IMPLIED
>
-<!ELEMENT menudetailedrecording (background | header | datetime | colorbuttons | scrollbar |
+<!ELEMENT menudetailedrecording (background | header | datetime | time | colorbuttons | scrollbar |
detailheader | tab | tablabels)*>
<!ATTLIST menudetailedrecording
x CDATA #REQUIRED
@@ -205,7 +215,7 @@ scaletvheight CDATA #IMPLIED
>
-<!ELEMENT menudetailedtext (background | header | datetime | colorbuttons | scrollbar |
+<!ELEMENT menudetailedtext (background | header | datetime | time | colorbuttons | scrollbar |
detailheader | tab )*>
<!ATTLIST menudetailedtext
x CDATA #REQUIRED
diff --git a/dtd/displayreplay.dtd b/dtd/displayreplay.dtd index 5e492d8..6e5a111 100644 --- a/dtd/displayreplay.dtd +++ b/dtd/displayreplay.dtd @@ -2,7 +2,7 @@ <!ENTITY % functions SYSTEM "functions.dtd">
-<!ELEMENT displayreplay (background | backgroundmodeonly |datetime |
+<!ELEMENT displayreplay (background | backgroundmodeonly |datetime | time |
scrapercontent | rectitle | recinfo | currenttime |
totaltime | progressbar | cutmarks | controlicons |
controliconsmodeonly | jump | message | onpause | onpausemodeonly)*>
@@ -33,6 +33,11 @@ debug CDATA #IMPLIED
>
+<!ELEMENT time (area|areascroll)*>
+<!ATTLIST time
+ debug CDATA #IMPLIED
+>
+
<!ELEMENT scrapercontent (area|areascroll)*>
<!ATTLIST scrapercontent
debug CDATA #IMPLIED
diff --git a/libtemplate/templatefunction.c b/libtemplate/templatefunction.c index 8465961..80cf762 100644 --- a/libtemplate/templatefunction.c +++ b/libtemplate/templatefunction.c @@ -1186,6 +1186,19 @@ void cTemplateFunction::ParseStringParameters(void) { break;
}
}
+ for (map < string, int >::iterator it = intTokens->begin(); it != intTokens->end(); it++) {
+ size_t found = path.find(it->first);
+ if (found != string::npos) {
+ updated = true;
+ imgPath = path;
+ if (found > 0 && ((it->first).size() + 2 <= imgPath.size())) {
+ stringstream intVal;
+ intVal << it->second;
+ imgPath.replace(found-1, (it->first).size() + 2, intVal.str());
+ }
+ break;
+ }
+ }
}
}
diff --git a/libtemplate/templateview.c b/libtemplate/templateview.c index 9754b29..0671a0a 100644 --- a/libtemplate/templateview.c +++ b/libtemplate/templateview.c @@ -394,8 +394,11 @@ void cTemplateView::PreCache(bool isSubview) { for (map < eViewList, cTemplateViewList* >::iterator it = viewLists.begin(); it != viewLists.end(); it++) { cTemplateViewList *viewList = it->second; viewList->SetGlobals(globals); - //viewlists are only in subviews - viewList->SetContainer(osdX, osdY, osdWidth, osdHeight); + //viewlists in subviews need complete container information + if (isSubview) + viewList->SetContainer(osdX, osdY, osdWidth, osdHeight); + else + viewList->SetContainer(0, 0, osdWidth, osdHeight); viewList->CalculateParameters(); viewList->CalculateListParameters(); } @@ -668,6 +671,7 @@ void cTemplateViewChannel::SetViewElements(void) { viewElementsAllowed.insert("devices"); viewElementsAllowed.insert("scrapercontent"); viewElementsAllowed.insert("datetime"); + viewElementsAllowed.insert("time"); viewElementsAllowed.insert("message"); viewElementsAllowed.insert("customtokens"); } @@ -717,6 +721,9 @@ string cTemplateViewChannel::GetViewElementName(eViewElement ve) { case veDateTime: name = "DateTime"; break; + case veTime: + name = "Time"; + break; case veMessage: name = "Message"; break; @@ -761,6 +768,8 @@ void cTemplateViewChannel::AddPixmap(string sViewElement, cTemplatePixmap *pix, ve = veScraperContent; } else if (!sViewElement.compare("datetime")) { ve = veDateTime; + } else if (!sViewElement.compare("time")) { + ve = veTime; } else if (!sViewElement.compare("message")) { ve = veMessage; } else if (!sViewElement.compare("customtokens")) { @@ -1023,11 +1032,13 @@ void cTemplateViewMenu::SetSubViews(void) { void cTemplateViewMenu::SetViewElements(void) { viewElementsAllowed.insert("background"); viewElementsAllowed.insert("datetime"); + viewElementsAllowed.insert("time"); viewElementsAllowed.insert("header"); viewElementsAllowed.insert("colorbuttons"); viewElementsAllowed.insert("message"); viewElementsAllowed.insert("discusage"); viewElementsAllowed.insert("systemload"); + viewElementsAllowed.insert("temperatures"); viewElementsAllowed.insert("timers"); viewElementsAllowed.insert("devices"); viewElementsAllowed.insert("currentschedule"); @@ -1092,6 +1103,9 @@ string cTemplateViewMenu::GetViewElementName(eViewElement ve) { case veDateTime: name = "DateTime"; break; + case veTime: + name = "Time"; + break; case veHeader: name = "Header"; break; @@ -1104,9 +1118,12 @@ string cTemplateViewMenu::GetViewElementName(eViewElement ve) { case veDiscUsage: name = "Disc Usage"; break; - case veSystemLoad: + case veSystemLoad: name = "System Load"; break; + case veTemperatures: + name = "Temperatures"; + break; case veTimers: name = "Timers"; break; @@ -1213,6 +1230,8 @@ void cTemplateViewMenu::AddPixmap(string sViewElement, cTemplatePixmap *pix, vec ve = veBackground; } else if (!sViewElement.compare("datetime")) { ve = veDateTime; + } else if (!sViewElement.compare("time")) { + ve = veTime; } else if (!sViewElement.compare("header")) { ve = veHeader; } else if (!sViewElement.compare("colorbuttons")) { @@ -1223,6 +1242,8 @@ void cTemplateViewMenu::AddPixmap(string sViewElement, cTemplatePixmap *pix, vec ve = veDiscUsage; } else if (!sViewElement.compare("systemload")) { ve = veSystemLoad; + } else if (!sViewElement.compare("temperatures")) { + ve = veTemperatures; } else if (!sViewElement.compare("timers")) { ve = veTimers; } else if (!sViewElement.compare("currentschedule")) { @@ -1394,6 +1415,7 @@ void cTemplateViewReplay::SetViewElements(void) { viewElementsAllowed.insert("background"); viewElementsAllowed.insert("backgroundmodeonly"); viewElementsAllowed.insert("datetime"); + viewElementsAllowed.insert("time"); viewElementsAllowed.insert("rectitle"); viewElementsAllowed.insert("recinfo"); viewElementsAllowed.insert("scrapercontent"); @@ -1418,6 +1440,9 @@ string cTemplateViewReplay::GetViewElementName(eViewElement ve) { case veDateTime: name = "DateTime"; break; + case veTime: + name = "DateTime"; + break; case veRecTitle: name = "Recording Title"; break; @@ -1471,6 +1496,8 @@ void cTemplateViewReplay::AddPixmap(string sViewElement, cTemplatePixmap *pix, v ve = veBackground; } else if (!sViewElement.compare("datetime")) { ve = veDateTime; + } else if (!sViewElement.compare("time")) { + ve = veTime; } else if (!sViewElement.compare("rectitle")) { ve = veRecTitle; } else if (!sViewElement.compare("recinfo")) { diff --git a/libtemplate/templateviewelement.h b/libtemplate/templateviewelement.h index a2bd05a..71c9c74 100644 --- a/libtemplate/templateviewelement.h +++ b/libtemplate/templateviewelement.h @@ -23,6 +23,7 @@ enum eViewElement { veUndefined,
veBackground,
veDateTime,
+ veTime,
veMessage,
veDevices,
veCustomTokens,
@@ -43,6 +44,7 @@ enum eViewElement { veButtons,
veDiscUsage,
veSystemLoad,
+ veTemperatures,
veTimers,
veCurrentSchedule,
veMenuItem,
diff --git a/scripts/README b/scripts/README new file mode 100644 index 0000000..5f22c35 --- /dev/null +++ b/scripts/README @@ -0,0 +1,10 @@ +This Widget provide information about the system temperatures. + +You must manually create a link to the corresponding script, for example: +ln -s temperatures.default temperatures + +The command "temperatures" will be executed every time the widget is drawn, so please keep it short and fast. +The command can provide three temperatures: cpu, pc case and gpu temperature +The command can also be called from system information widget. So the output files must also begin with 01_ - 99_ for sort/position. + +Please install lm-sensors and configure it for your system. See the default script for an example. diff --git a/scripts/temperatures.default b/scripts/temperatures.default new file mode 100644 index 0000000..e942434 --- /dev/null +++ b/scripts/temperatures.default @@ -0,0 +1,28 @@ +#!/bin/bash + +# please update this script to fit your needs +# this script is call every time the widget will be drawn, so keep it short and fast ;) + +OUTPUTFLDR="/tmp/skindesigner/" +mkdir -p ${OUTPUTFLDR} + +# if the script is executed from system_information script set the locale back for "°C" +LANG=de_DE.UTF-8 + +# there can be 4 files, cpu, gpu, pccase, motherboard + +rm -f ${OUTPUTFLDR}/cpu ${OUTPUTFLDR}/pccase ${OUTPUTFLDR}/gpu ${OUTPUTFLDR}/motherboard + +# intel core-i cpu temp +sensors -A coretemp-isa-0000 | grep "Core 0" | awk '{print $3}' | tr -d "+" > ${OUTPUTFLDR}/cpu + +# pc case temp +#sensors -A acpitz-virtual-0 | grep "temp1" | awk '{print $2}' | tr -d "+" > ${OUTPUTFLDR}/pccase + +# motherboard temp +sensors -A acpitz-virtual-0 | grep "temp1" | awk '{print $2}' | tr -d "+" > ${OUTPUTFLDR}/motherboard + +# nvidia gpu temp +# nvidia-settings must be run as the user of the x server +GPU=`nvidia-settings -c :0 -t -query GPUCoreTemp | head -n 1` +echo "${GPU}°C" > ${OUTPUTFLDR}/gpu diff --git a/scripts/temperatures.g2v b/scripts/temperatures.g2v new file mode 100644 index 0000000..79d0774 --- /dev/null +++ b/scripts/temperatures.g2v @@ -0,0 +1,31 @@ +#!/bin/bash + +# please update this script to fit your needs +# this script is call every time the widget will be drawn, so keep it short and fast ;) + +OUTPUTFLDR="/tmp/skindesigner" +mkdir -p ${OUTPUTFLDR} + +# if the script is executed from system_information script set the locale back for "°C" +LANG=de_DE.UTF-8 + +# there can be 4 files, cpu, gpu, pccase, motherboard + +rm -f ${OUTPUTFLDR}/cpu ${OUTPUTFLDR}/gpu + +# intel core-i cpu temp +#sensors -A coretemp-isa-0000 | grep "Core 0" | awk '{print $3}' | tr -d "+" > ./cpu + +# cpu temp +CPUTEMP=($(sensors -A | grep "Core")) +CPUTEMP[2]=${CPUTEMP[2]/+} # +36.0°C -> 36.0°C +echo "${CPUTEMP[2]/./,}" > ${OUTPUTFLDR}/cpu # 36,0°C +echo "${CPUTEMP[2]%.*}°C" > ${OUTPUTFLDR}/cpu # 36°C + +# pc case temp +#sensors -A acpitz-virtual-0 | grep "temp1" | awk '{print $2}' | tr -d "+" > ${OUTPUTFLDR}/pccase + +# nvidia gpu temp +# nvidia-settings must be run as the user of the x server +GPU=$(nvidia-settings -c :0 -t -query GPUCoreTemp | head -n 1) +echo "${GPU}°C" > ${OUTPUTFLDR}/gpu diff --git a/skindesigner.c b/skindesigner.c index 1c61ba5..90739a5 100644 --- a/skindesigner.c +++ b/skindesigner.c @@ -19,7 +19,7 @@ #endif -static const char *VERSION = "0.1.1"; +static const char *VERSION = "0.1.2"; static const char *DESCRIPTION = "SkinDesigner"; static const char *MAINMENUENTRY = "Skin Designer"; diff --git a/skins/blackhole/themes/default/globals.xml b/skins/blackhole/themes/default/globals.xml new file mode 100644 index 0000000..adce91a --- /dev/null +++ b/skins/blackhole/themes/default/globals.xml @@ -0,0 +1,200 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE globals SYSTEM "../../../../dtd/globals.dtd"> + +<globals> + <!-- + define all your needed colors here + --> + <colors> + <color name="clrTransparent">00000000</color> + <color name="clrRed">FFFF0000</color> + <color name="clrGreen">FF5FE200</color> + <color name="clrYellow">FFE2DA00</color> + <color name="clrBlue">FF007FE2</color> + <color name="clrWhite">FFFFFFFF</color> + <color name="clrGray">FF999999</color> + <color name="clrRedTrans">55FF0000</color> + <color name="clrBlackTrans">99000000</color> + </colors> + <!-- + these variables can be used everywhere in the templates + variabls of type int can also be used as conditions, just + set such a variable to 1 for true and 0 for false + --> + <variables> + <var type="int" name="fadeTime">300</var> + </variables> + <!-- + translations used in the skin + --> + <translations> + <token name="tr(noactivetimers)"> + <trans lang="en_EN">no active timers</trans> + <trans lang="de_DE">keine aktiven Timer</trans> + </token> + <token name="tr(transponder)"> + <trans lang="en_EN">Transponder</trans> + <trans lang="de_DE">Transponder</trans> + </token> + <token name="tr(schedule)"> + <trans lang="en_EN">Schedule</trans> + <trans lang="de_DE">Programm</trans> + </token> + <token name="tr(reruns)"> + <trans lang="en_EN">Reruns</trans> + <trans lang="de_DE">Wiederholungen</trans> + </token> + <token name="tr(rerunsof)"> + <trans lang="en_EN">Reruns of</trans> + <trans lang="de_DE">Wiederholungen von</trans> + </token> + <token name="tr(actors)"> + <trans lang="en_EN">Actors</trans> + <trans lang="de_DE">Schauspieler</trans> + </token> + <token name="tr(episode)"> + <trans lang="en_EN">Episode</trans> + <trans lang="de_DE">Folge</trans> + </token> + <token name="tr(season)"> + <trans lang="en_EN">Season</trans> + <trans lang="de_DE">Staffel</trans> + </token> + <token name="tr(gueststars)"> + <trans lang="en_EN">Guest Stars</trans> + <trans lang="de_DE">Gaststars</trans> + </token> + <token name="tr(seriesfirstaired)"> + <trans lang="en_EN">Series First Aired</trans> + <trans lang="de_DE">Erstausstrahlung der Serie</trans> + </token> + <token name="tr(episodefirstaired)"> + <trans lang="en_EN">Episode First Aired</trans> + <trans lang="de_DE">Erstausstrahlung der Episode</trans> + </token> + <token name="tr(network)"> + <trans lang="en_EN">Network</trans> + <trans lang="de_DE">TV Station</trans> + </token> + <token name="tr(genre)"> + <trans lang="en_EN">Genre</trans> + <trans lang="de_DE">Genre</trans> + </token> + <token name="tr(status)"> + <trans lang="en_EN">Status</trans> + <trans lang="de_DE">Status</trans> + </token> + <token name="tr(rating)"> + <trans lang="en_EN">Rating</trans> + <trans lang="de_DE">Bewertung</trans> + </token> + <token name="tr(episoderating)"> + <trans lang="en_EN">Episode Rating</trans> + <trans lang="de_DE">Bewertung der Folge</trans> + </token> + <token name="tr(recinfo)"> + <trans lang="en_EN">Recording Information</trans> + <trans lang="de_DE">Aufnahme Informationen</trans> + </token> + <token name="tr(seriesgalery)"> + <trans lang="en_EN">Series Galery</trans> + <trans lang="de_DE">Serien Galerie</trans> + </token> + <token name="tr(moviegalery)"> + <trans lang="en_EN">Movie Galery</trans> + <trans lang="de_DE">Spielfilm Galerie</trans> + </token> + <token name="tr(originaltitle)"> + <trans lang="en_EN">Original Title</trans> + <trans lang="de_DE">Originaltitel</trans> + </token> + <token name="tr(budget)"> + <trans lang="en_EN">Budget</trans> + <trans lang="de_DE">Budget</trans> + </token> + <token name="tr(revenue)"> + <trans lang="en_EN">Revenue</trans> + <trans lang="de_DE">Einnahmen</trans> + </token> + <token name="tr(adult)"> + <trans lang="en_EN">Adult</trans> + <trans lang="de_DE">Nur für Erwachsene</trans> + </token> + <token name="tr(releasedate)"> + <trans lang="en_EN">Release Date</trans> + <trans lang="de_DE">Erscheinungsdatum</trans> + </token> + <token name="tr(runtime)"> + <trans lang="en_EN">Runtime</trans> + <trans lang="de_DE">Laufzeit</trans> + </token> + <token name="tr(popularity)"> + <trans lang="en_EN">Popularity</trans> + <trans lang="de_DE">Popularität</trans> + </token> + <token name="tr(voteaverage)"> + <trans lang="en_EN">Vote Average</trans> + <trans lang="de_DE">Durchschnittliche Wertung</trans> + </token> + <token name="tr(homepage)"> + <trans lang="en_EN">Homepage</trans> + <trans lang="de_DE">Homepage</trans> + </token> + <token name="tr(recsize)"> + <trans lang="en_EN">Recording size</trans> + <trans lang="de_DE">Größe der Aufnahme</trans> + </token> + <token name="tr(recsizecutted)"> + <trans lang="en_EN">Cutted Recording Size</trans> + <trans lang="de_DE">Größe der geschnittenen Aufnahme</trans> + </token> + <token name="tr(reclength)"> + <trans lang="en_EN">Recording Length</trans> + <trans lang="de_DE">Länge der Aufnahme</trans> + </token> + <token name="tr(reclengthcutted)"> + <trans lang="en_EN">Cutted Recording Length</trans> + <trans lang="de_DE">Länge der geschnittenen Aufnahme</trans> + </token> + <token name="tr(bitrate)"> + <trans lang="en_EN">Bit Rate</trans> + <trans lang="de_DE">Bitrate</trans> + </token> + <token name="tr(format)"> + <trans lang="en_EN">Format</trans> + <trans lang="de_DE">Format</trans> + </token> + <token name="tr(searchtimer)"> + <trans lang="en_EN">Searchtimer</trans> + <trans lang="de_DE">Suchtimer</trans> + </token> + <token name="tr(volume)"> + <trans lang="en_EN">Volume</trans> + <trans lang="de_DE">Lautstärke</trans> + </token> + <token name="tr(pause)"> + <trans lang="en_EN">Pause</trans> + <trans lang="de_DE">Pause</trans> + </token> + </translations> + <!-- + The three Fonts FontOSD, FontFix and FontSml configured in VDR + can be used in all template "font" attributes with this tokens: + {vdrOsd} + {vdrFix} + {vdrSml} + If you like to use further fonts, just define them below. + Syntax: + <font name="tokenname">fontname</font> + These fonts can then also be used in all templates in the "font" + attribute. + if an invalid font is used in a template, vdrOsd is used as default. + --> + <fonts> + <font name="light">Source Sans Pro:Light</font> + <font name="bold">Source Sans Pro:Bold</font> + <font name="semibold">Source Sans Pro:Semibold</font> + <font name="regular">Source Sans Pro:Regular</font> + <font name="digital">DS-Digital:Normal</font> + </fonts> +</globals> diff --git a/skins/blackhole/themes/default/icons/ico_back_active.svg b/skins/blackhole/themes/default/icons/ico_back_active.svg new file mode 100644 index 0000000..b18aa0b --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_back_active.svg @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + viewBox="0 0 100 100" + style="enable-background:new 0 0 100 100;" + xml:space="preserve" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="ico_back_active.svg"><metadata + id="metadata11"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs9"><linearGradient + inkscape:collect="always" + id="linearGradient4140"><stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4142" /><stop + style="stop-color:#800000;stop-opacity:1" + offset="1" + id="stop4144" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4146" + x1="8.4793415" + y1="92.956429" + x2="81.716125" + y2="5.6427336" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.99379431,0,0,0.99783746,1.7413488,0.10780794)" /></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1531" + inkscape:window-height="878" + id="namedview7" + showgrid="false" + inkscape:zoom="5.7268259" + inkscape:cx="49.152542" + inkscape:cy="47.669492" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><path + inkscape:connector-curvature="0" + id="path5" + d="m 88.154745,18.920038 -32.032972,20.992504 0,-17.000157 c 0,-4.370528 -3.064862,-6.157655 -6.845255,-3.99135 L 7.8352948,46.07818 c -3.7803931,2.166305 -3.7803931,5.677695 0,7.844 L 49.276518,81.079324 c 3.780393,2.166305 6.845255,0.379179 6.845255,-3.99135 l 0,-17.001154 32.032972,20.992504 C 91.935138,83.245629 95,81.458503 95,77.087974 l 0,-54.175589 c 0,-4.370528 -3.064862,-6.157655 -6.845255,-3.992347 z" + style="fill:url(#linearGradient4146);fill-opacity:1" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_back_active_x1.svg b/skins/blackhole/themes/default/icons/ico_back_active_x1.svg new file mode 100644 index 0000000..0ef371c --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_back_active_x1.svg @@ -0,0 +1,81 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + viewBox="0 0 100 100" + style="enable-background:new 0 0 100 100;" + xml:space="preserve" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="ico_back_active_x1.svg"><metadata + id="metadata11"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs9"><linearGradient + inkscape:collect="always" + id="linearGradient4140"><stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4142" /><stop + style="stop-color:#800000;stop-opacity:1" + offset="1" + id="stop4144" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4146" + x1="8.4793415" + y1="92.956429" + x2="81.716125" + y2="5.6427336" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.99379431,0,0,0.99783746,1.7413488,0.10780794)" /><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4242" + x1="4.3004775" + y1="14.50319" + x2="31.460541" + y2="3.2274182" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.91751736,0,0,1.1149932,2.6257887,0.8137125)" /></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1531" + inkscape:window-height="878" + id="namedview7" + showgrid="false" + inkscape:zoom="5.7268259" + inkscape:cx="49.152542" + inkscape:cy="47.669492" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><path + inkscape:connector-curvature="0" + id="path5" + d="m 88.154745,18.920038 -32.032972,20.992504 0,-17.000157 c 0,-4.370528 -3.064862,-6.157655 -6.845255,-3.99135 L 7.8352948,46.07818 c -3.7803931,2.166305 -3.7803931,5.677695 0,7.844 L 49.276518,81.079324 c 3.780393,2.166305 6.845255,0.379179 6.845255,-3.99135 l 0,-17.001154 32.032972,20.992504 C 91.935138,83.245629 95,81.458503 95,77.087974 l 0,-54.175589 c 0,-4.370528 -3.064862,-6.157655 -6.845255,-3.992347 z" + style="fill:url(#linearGradient4146);fill-opacity:1" /><rect + style="opacity:0.8;fill:url(#linearGradient4242);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4226" + width="26.665991" + height="9.9999895" + x="5.0000048" + y="5.0000057" + ry="2.2137191" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_back_active_x2.svg b/skins/blackhole/themes/default/icons/ico_back_active_x2.svg new file mode 100644 index 0000000..5bc5822 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_back_active_x2.svg @@ -0,0 +1,97 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + viewBox="0 0 100 100" + style="enable-background:new 0 0 100 100;" + xml:space="preserve" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="ico_back_active_x2.svg"><metadata + id="metadata11"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs9"><linearGradient + inkscape:collect="always" + id="linearGradient4140"><stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4142" /><stop + style="stop-color:#800000;stop-opacity:1" + offset="1" + id="stop4144" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4146" + x1="8.4793415" + y1="92.956429" + x2="81.716125" + y2="5.6427336" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.99379431,0,0,0.99783746,1.7413488,0.10780794)" /><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4242" + x1="4.3004775" + y1="14.50319" + x2="31.460541" + y2="3.2274182" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.91751736,0,0,1.1149932,2.6257887,0.8137125)" /><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4246" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.91751733,0,0,1.1149932,34.29179,0.8137125)" + x1="4.3004775" + y1="14.50319" + x2="31.460541" + y2="3.2274182" /></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1531" + inkscape:window-height="878" + id="namedview7" + showgrid="false" + inkscape:zoom="5.7268259" + inkscape:cx="49.152542" + inkscape:cy="47.669492" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><path + inkscape:connector-curvature="0" + id="path5" + d="m 88.154745,18.920038 -32.032972,20.992504 0,-17.000157 c 0,-4.370528 -3.064862,-6.157655 -6.845255,-3.99135 L 7.8352948,46.07818 c -3.7803931,2.166305 -3.7803931,5.677695 0,7.844 L 49.276518,81.079324 c 3.780393,2.166305 6.845255,0.379179 6.845255,-3.99135 l 0,-17.001154 32.032972,20.992504 C 91.935138,83.245629 95,81.458503 95,77.087974 l 0,-54.175589 c 0,-4.370528 -3.064862,-6.157655 -6.845255,-3.992347 z" + style="fill:url(#linearGradient4146);fill-opacity:1" /><rect + style="opacity:0.8;fill:url(#linearGradient4242);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4226" + width="26.665991" + height="9.9999895" + x="5.0000048" + y="5.0000057" + ry="2.2137191" /><rect + ry="2.2137191" + y="5.0000057" + x="36.666004" + height="9.9999895" + width="26.665991" + id="rect4244" + style="opacity:0.8;fill:url(#linearGradient4246);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_back_active_x3.svg b/skins/blackhole/themes/default/icons/ico_back_active_x3.svg new file mode 100644 index 0000000..804f7a1 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_back_active_x3.svg @@ -0,0 +1,113 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + viewBox="0 0 100 100" + style="enable-background:new 0 0 100 100;" + xml:space="preserve" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="ico_back_active_x3.svg"><metadata + id="metadata11"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs9"><linearGradient + inkscape:collect="always" + id="linearGradient4140"><stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4142" /><stop + style="stop-color:#800000;stop-opacity:1" + offset="1" + id="stop4144" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4146" + x1="8.4793415" + y1="92.956429" + x2="81.716125" + y2="5.6427336" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.99379431,0,0,0.99783746,1.7413488,0.10780794)" /><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4242" + x1="4.3004775" + y1="14.50319" + x2="31.460541" + y2="3.2274182" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.91751736,0,0,1.1149932,2.6257887,0.8137125)" /><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4246" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.91751733,0,0,1.1149932,34.29179,0.8137125)" + x1="4.3004775" + y1="14.50319" + x2="31.460541" + y2="3.2274182" /><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4250" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.91751733,0,0,1.1149932,65.959791,0.8137125)" + x1="4.3004775" + y1="14.50319" + x2="31.460541" + y2="3.2274182" /></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1531" + inkscape:window-height="878" + id="namedview7" + showgrid="false" + inkscape:zoom="5.7268259" + inkscape:cx="49.152542" + inkscape:cy="47.669492" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><path + inkscape:connector-curvature="0" + id="path5" + d="m 88.154745,18.920038 -32.032972,20.992504 0,-17.000157 c 0,-4.370528 -3.064862,-6.157655 -6.845255,-3.99135 L 7.8352948,46.07818 c -3.7803931,2.166305 -3.7803931,5.677695 0,7.844 L 49.276518,81.079324 c 3.780393,2.166305 6.845255,0.379179 6.845255,-3.99135 l 0,-17.001154 32.032972,20.992504 C 91.935138,83.245629 95,81.458503 95,77.087974 l 0,-54.175589 c 0,-4.370528 -3.064862,-6.157655 -6.845255,-3.992347 z" + style="fill:url(#linearGradient4146);fill-opacity:1" /><rect + style="opacity:0.8;fill:url(#linearGradient4242);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4226" + width="26.665991" + height="9.9999895" + x="5.0000048" + y="5.0000057" + ry="2.2137191" /><rect + ry="2.2137191" + y="5.0000057" + x="36.666004" + height="9.9999895" + width="26.665991" + id="rect4244" + style="opacity:0.8;fill:url(#linearGradient4246);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><rect + style="opacity:0.8;fill:url(#linearGradient4250);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4248" + width="26.665991" + height="9.9999895" + x="68.334007" + y="5.0000057" + ry="2.2137191" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_back_inactive.svg b/skins/blackhole/themes/default/icons/ico_back_inactive.svg new file mode 100644 index 0000000..65ca34a --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_back_inactive.svg @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + viewBox="0 0 100 100" + style="enable-background:new 0 0 100 100;" + xml:space="preserve" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="ico_back_inactive.svg"><metadata + id="metadata11"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs9"><linearGradient + inkscape:collect="always" + id="linearGradient4140"><stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4142" /><stop + style="stop-color:#00284a;stop-opacity:1" + offset="1" + id="stop4144" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4146" + x1="8.4793415" + y1="92.956429" + x2="81.716125" + y2="5.6427336" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.99379431,0,0,0.99783746,1.7413488,0.10780794)" /></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1531" + inkscape:window-height="878" + id="namedview7" + showgrid="false" + inkscape:zoom="5.7268259" + inkscape:cx="49.152542" + inkscape:cy="47.669492" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><path + inkscape:connector-curvature="0" + id="path5" + d="m 88.154745,18.920038 -32.032972,20.992504 0,-17.000157 c 0,-4.370528 -3.064862,-6.157655 -6.845255,-3.99135 L 7.8352948,46.07818 c -3.7803931,2.166305 -3.7803931,5.677695 0,7.844 L 49.276518,81.079324 c 3.780393,2.166305 6.845255,0.379179 6.845255,-3.99135 l 0,-17.001154 32.032972,20.992504 C 91.935138,83.245629 95,81.458503 95,77.087974 l 0,-54.175589 c 0,-4.370528 -3.064862,-6.157655 -6.845255,-3.992347 z" + style="fill:url(#linearGradient4146);fill-opacity:1" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_crypted.svg b/skins/blackhole/themes/default/icons/ico_crypted.svg new file mode 100644 index 0000000..df8c2fc --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_crypted.svg @@ -0,0 +1,151 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="100" + height="50" + id="svg5311" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 99.999998 50.000001" + sodipodi:docname="ico_crypted.svg"> + <defs + id="defs5313"> + <linearGradient + inkscape:collect="always" + id="linearGradient5915"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5917" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5919" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5897"> + <stop + style="stop-color:#00284a;stop-opacity:1;" + offset="0" + id="stop5899" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop5901" /> + </linearGradient> + <filter + style="color-interpolation-filters:sRGB" + id="filter7120"> + <feGaussianBlur + stdDeviation="3.92425" + id="feGaussianBlur12" /> + </filter> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter5893" + x="-0.0063413271" + width="1.0126827" + y="-0.11147067" + height="1.2229413"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.12034188" + id="feGaussianBlur5895" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5897" + id="linearGradient5903" + x1="70.15654" + y1="1028.686" + x2="102.21464" + y2="988.41858" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5915" + id="linearGradient5921" + x1="24.279434" + y1="1045.9269" + x2="137.19443" + y2="986.90466" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="9.0643817" + inkscape:cx="41.079163" + inkscape:cy="28.367353" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata5316"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1002.3622)"> + <rect + style="opacity:1;fill:url(#linearGradient5903);fill-opacity:1;stroke:#ffffff;stroke-width:1.9572556;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;" + id="rect5883" + width="98.042747" + height="48.042744" + x="0.97862577" + y="1003.3408" + ry="0.58335191" /> + <path + inkscape:connector-curvature="0" + d="m -150.86157,869.08162 c -63.87429,0 -115.71874,72.9778 -115.71874,162.87498 0,89.8971 51.84445,162.8437 115.71874,162.8437 50.82546,0 94.030674,-46.1785 109.562504,-110.3437 l 94.65626,0 32.375,-39.2188 21.343746,0 14.375,14.375 34.46875,0 5.71875,-9.875 33.21875,0 15.3125,26.5313 28.09375,0 18.21875,-18.2188 24.1875,0 21.03125,21.0313 26.40625,0 52.65625,-52.6563 0,-15.5312 -11.8125,-3.1563 -31.53125,-31.53118 -379.531256,0 c -16.1877,-62.464 -58.789514,-107.125 -108.750004,-107.125 z m -44.28125,105.0625 c 20.50286,0 37.125,25.90338 37.125,57.81248 0,31.9091 -16.62214,57.8125 -37.125,57.8125 -20.50284,0 -37.15624,-25.9034 -37.15624,-57.8125 0,-31.9091 16.65339,-57.81248 37.15624,-57.81248 z" + style="opacity:0.56000001;stroke:#000000;stroke-width:4;filter:url(#filter7120)" + id="path17" + transform="matrix(0.12135861,0,0,0.12135861,46.172783,902.75355)" /> + <path + inkscape:connector-curvature="0" + d="m 26.650848,1008.9523 c -7.751696,0 -14.043465,8.8565 -14.043465,19.7663 0,10.9097 6.291769,19.7624 14.043465,19.7624 6.168105,0 11.411428,-5.6041 13.296355,-13.3911 l 11.48735,0 3.928986,-4.7595 2.59025,0 1.74453,1.7445 4.183075,0 0.694022,-1.1984 4.03138,0 1.8583,3.2198 3.409423,0 2.210998,-2.211 2.935361,0 2.552323,2.5523 3.204629,0 6.390286,-6.3903 0,-1.8849 -1.433546,-0.383 -3.82659,-3.8266 -46.059387,0 c -1.964516,-7.5806 -7.13461,-13.0005 -13.197745,-13.0005 z m -5.373913,12.7502 c 2.4882,0 4.505439,3.1436 4.505439,7.0161 0,3.8724 -2.017239,7.016 -4.505439,7.016 -2.488193,0 -4.509232,-3.1436 -4.509232,-7.016 0,-3.8725 2.021032,-7.0161 4.509232,-7.0161 z" + style="fill:url(#linearGradient5921);fill-opacity:1;stroke:#000000;stroke-width:0.48543447" + id="path19" /> + <path + inkscape:connector-curvature="0" + d="m 89.73457,1025.7794 -2.591003,-2.591 0.186192,0.1186 c 0,0 -33.998038,0.3386 -38.197,0.3386 -4.198962,0 -4.943939,2.1338 -4.943939,2.1338 l 45.54575,0 z" + style="fill:#4d4d4d;stroke:#000000;stroke-width:0.23058137;filter:url(#filter5893)" + id="path21" /> + <path + inkscape:connector-curvature="0" + d="m 26.650848,1008.9523 c -7.751696,0 -14.043465,8.8565 -14.043465,19.7663 0,10.9097 6.291769,19.7624 14.043465,19.7624 6.168105,0 11.411428,-5.6041 13.296355,-13.3911 l 11.48735,0 3.928986,-4.7595 2.59025,0 1.74453,1.7445 4.183075,0 0.694022,-1.1984 4.03138,0 1.8583,3.2198 3.409423,0 2.210998,-2.211 2.935361,0 2.552323,2.5523 3.204629,0 6.390286,-6.3903 0,-1.8849 -1.433546,-0.383 -3.82659,-3.8266 -46.059387,0 c -1.964516,-7.5806 -7.13461,-13.0005 -13.197745,-13.0005 z m -5.373913,12.7502 c 2.4882,0 4.505439,3.1436 4.505439,7.0161 0,3.8724 -2.017239,7.016 -4.505439,7.016 -2.488193,0 -4.509232,-3.1436 -4.509232,-7.016 0,-3.8725 2.021032,-7.0161 4.509232,-7.0161 z" + style="fill:none;stroke:#000000;stroke-width:0.48543447" + id="path23" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/icons/ico_cutmark_start.svg b/skins/blackhole/themes/default/icons/ico_cutmark_start.svg new file mode 100644 index 0000000..10d0063 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_cutmark_start.svg @@ -0,0 +1,89 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="20" + height="60" + id="svg4410" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 20 60.000001" + sodipodi:docname="ico_cutmark_start.svg"> + <defs + id="defs4412" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8.4666667" + inkscape:cx="3" + inkscape:cy="32.5" + inkscape:document-units="px" + inkscape:current-layer="g5165" + showgrid="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata4415"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-992.3622)"> + <g + id="g5165" + transform="matrix(0.99676644,0,0,1.0645673,-431.01827,27.839241)"> + <g + id="g4982" + transform="matrix(1.0818105,0,0,0.94391562,-32.786305,51.651891)"> + <rect + style="display:inline;opacity:1;fill:#800000;fill-opacity:1;stroke:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5158" + width="5.9545999" + height="57.610737" + x="441.68228" + y="906.12573" + ry="0.35725299" /> + <rect + style="opacity:1;fill:#800000;fill-opacity:1;stroke:#800000;stroke-width:1.74931276;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5161" + width="13.797397" + height="7.0984745" + x="431.28522" + y="906.00037" + ry="3.5492373" /> + <rect + ry="3.5492373" + y="956.80945" + x="430.83862" + height="7.0984745" + width="13.797397" + id="rect5163" + style="opacity:1;fill:#800000;fill-opacity:1;stroke:#800000;stroke-width:1.74931276;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/icons/ico_cutmark_stop.svg b/skins/blackhole/themes/default/icons/ico_cutmark_stop.svg new file mode 100644 index 0000000..4fc3381 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_cutmark_stop.svg @@ -0,0 +1,89 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="20" + height="60" + id="svg4410" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 20 60.000001" + sodipodi:docname="ico_cutmark_stop.svg"> + <defs + id="defs4412" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8.4666667" + inkscape:cx="3" + inkscape:cy="32.5" + inkscape:document-units="px" + inkscape:current-layer="g5165" + showgrid="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata4415"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-992.3622)"> + <g + id="g5165" + transform="matrix(0.99676644,0,0,1.0645673,-431.01827,27.839241)"> + <g + id="g4982" + transform="matrix(-1.0818105,0,0,0.94391562,917.69332,51.651891)"> + <rect + style="display:inline;opacity:1;fill:#800000;fill-opacity:1;stroke:#800000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5158" + width="5.9545999" + height="57.610737" + x="441.68228" + y="906.12573" + ry="0.35725299" /> + <rect + style="opacity:1;fill:#800000;fill-opacity:1;stroke:#800000;stroke-width:1.74931276;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5161" + width="13.797397" + height="7.0984745" + x="431.28522" + y="906.00037" + ry="3.5492373" /> + <rect + ry="3.5492373" + y="956.80945" + x="430.83862" + height="7.0984745" + width="13.797397" + id="rect5163" + style="opacity:1;fill:#800000;fill-opacity:1;stroke:#800000;stroke-width:1.74931276;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/icons/ico_cutted.svg b/skins/blackhole/themes/default/icons/ico_cutted.svg new file mode 100644 index 0000000..7938510 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_cutted.svg @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Layer_1" + x="0px" + y="0px" + width="64px" + height="64px" + viewBox="0 0 64 64" + enable-background="new 0 0 64 64" + xml:space="preserve" + inkscape:version="0.91pre2 r13516" + sodipodi:docname="ico_cutted.svg"><metadata + id="metadata9"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs + id="defs7" /><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1846" + inkscape:window-height="1058" + id="namedview5" + showgrid="false" + inkscape:zoom="3.6875" + inkscape:cx="-30.508475" + inkscape:cy="32" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_1" /><path + d="M54.624,47.446c-1.681-2.928-4.358-5.073-7.348-5.889c-2.034-0.556-4.099-0.452-5.896,0.28l-5.271-9.222 c4.684-8.6,11.623-21.324,12.499-22.854c2.141-3.744-1.374-7.9-1.525-8.074l-1.021-1.185l-14.156,24.76L17.749,0.504l-1.021,1.185 c-0.152,0.174-3.667,4.33-1.526,8.074c0.875,1.529,7.815,14.253,12.5,22.854l-5.272,9.222c-1.798-0.732-3.862-0.836-5.897-0.28 c-2.989,0.815-5.667,2.961-7.347,5.889c-3.157,5.519-1.884,12.207,2.836,14.908c1.318,0.758,2.779,1.143,4.342,1.143 c0.858,0,1.75-0.068,2.598-0.356c5.06-1.722,7.652-5.859,8.893-10.105c0.053-0.182,2.55-10.299,3.944-12.503 c0,0,0.043-0.079,0.107-0.197c0.063,0.118,0.107,0.197,0.107,0.197c1.394,2.204,3.891,12.321,3.944,12.503 c1.24,4.246,3.833,8.384,8.893,10.105c0.848,0.288,1.739,0.356,2.598,0.356c1.563,0,3.023-0.385,4.342-1.143 C56.508,59.653,57.78,52.965,54.624,47.446z M22.224,54.914c-1.048,1.829-2.731,3.21-4.494,3.689 c-0.464,0.125-0.921,0.189-1.359,0.189c-0.732,0-1.407-0.178-2.005-0.521c-2.469-1.41-2.961-5.22-1.093-8.488 c1.064-1.854,2.703-3.196,4.491-3.683c1.221-0.331,2.403-0.225,3.371,0.328C23.602,47.843,24.091,51.65,22.224,54.914z M49.443,58.272c-0.599,0.343-1.273,0.521-2.005,0.521c-0.438,0-0.896-0.064-1.359-0.189c-1.763-0.479-3.446-1.86-4.494-3.689 c-1.867-3.264-1.378-7.071,1.088-8.484c0.969-0.553,2.15-0.659,3.371-0.328c1.789,0.486,3.428,1.829,4.491,3.683 C52.404,53.053,51.912,56.862,49.443,58.272z" + id="path3" + style="fill:#ffffff" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_dolby.svg b/skins/blackhole/themes/default/icons/ico_dolby.svg new file mode 100644 index 0000000..90e087a --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_dolby.svg @@ -0,0 +1,141 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 15.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="svg2" + x="0px" + y="0px" + width="150" + height="50" + viewBox="0 0 150 50" + enable-background="new 0 0 308.25 76.25" + xml:space="preserve" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="ico_dolby.svg"><metadata + id="metadata21"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs + id="defs19"><linearGradient + inkscape:collect="always" + id="linearGradient4162"><stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4164" /><stop + style="stop-color:#999999;stop-opacity:1" + offset="1" + id="stop4166" /></linearGradient><linearGradient + inkscape:collect="always" + id="linearGradient4154"><stop + style="stop-color:#00284a;stop-opacity:1;" + offset="0" + id="stop4156" /><stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop4158" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4154" + id="linearGradient4160" + x1="50.476055" + y1="29.854862" + x2="93.398026" + y2="-33.420177" + gradientUnits="userSpaceOnUse" /><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4162" + id="linearGradient4168" + x1="63.584183" + y1="1.3730028" + x2="-15.027233" + y2="62.706097" + gradientUnits="userSpaceOnUse" /></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1531" + inkscape:window-height="878" + id="namedview17" + showgrid="false" + inkscape:zoom="6.1793718" + inkscape:cx="102.46508" + inkscape:cy="26.935013" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="layer2" /><g + inkscape:groupmode="layer" + id="layer1" + inkscape:label="Back" + style="display:inline" /><g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Text"><path + id="path257" + d="m 62.683935,43.514098 -8.117377,0 c -8.418361,0 -15.434099,-8.300983 -15.434099,-18.601312 0,-9.973769 7.015738,-18.4314746 15.434099,-18.4314746 l 8.116065,0 0.0013,37.0327866 0,0 z m -46.203279,0 -8.1009838,0 0,-37.0327866 8.1009838,0 c 8.402623,0 15.441967,8.4570486 15.441967,18.4308196 0.0013,10.300984 -7.038689,18.601967 -15.441967,18.601967 M 0,50 l 71.051148,0 0,-50 L 0,0 0,50 Z" + inkscape:connector-curvature="0" + style="display:inline;fill:url(#linearGradient4160);fill-opacity:1;stroke:url(#linearGradient4168);stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + id="path239" + d="m 82.521982,33.643281 c 0,-0.619013 -0.201666,-0.851045 -0.806274,-0.851045 l -2.759085,0 0,6.25281 2.743123,0 c 0.553608,0 0.822236,-0.171688 0.822236,-0.825739 l 0,-4.576026 z m -0.562952,6.927108 -5.086029,0 0,-9.312449 5.178297,0 c 1.869498,0 2.544572,0.835083 2.544572,2.35731 l 0,4.366963 c 0,2.037683 -0.834693,2.588176 -2.63684,2.588176" + inkscape:connector-curvature="0" + style="fill:#ffffff;fill-opacity:1" /><path + style="fill:#ffffff;fill-opacity:1" + d="m 86.756185,31.254824 2.072332,0 0,9.315563 -2.072332,0 z" + id="rect241" + inkscape:connector-curvature="0" /><path + id="path243" + d="m 97.305888,40.570389 -0.2153,-0.627968 c -0.30989,0.399828 -0.900484,0.790702 -2.328887,0.790702 l -1.022734,0 c -1.775672,0 -2.744292,-0.553608 -2.744292,-2.541069 l 0,-4.67024 c 0,-2.426219 1.819665,-2.454639 3.082219,-2.454639 l 2.432444,0 c 0.93203,0 1.7383,0.177917 2.14124,0.406057 l 0,1.194422 -4.69554,0 c -0.553609,0 -0.891146,0.137818 -0.891146,0.89426 l 0,4.85828 c 0,0.606165 0.38153,0.755662 0.878688,0.755662 l 1.440859,0 c 0.38776,0 1.125899,-0.165848 1.463439,-0.340651 l 0,-2.165768 -1.950863,0 0,-1.370393 3.969863,0 0,5.270955 -1.55999,0 0,3.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#ffffff;fill-opacity:1" /><path + style="fill:#ffffff;fill-opacity:1" + d="m 101.0951,31.254824 2.07272,0 0,9.315563 -2.07272,0 z" + id="rect245" + inkscape:connector-curvature="0" /><path + style="fill:#ffffff;fill-opacity:1" + d="m 109.19483,32.780168 0,7.790221 -2.0696,0 0,-7.790221 -2.80075,0 0,-1.525342 7.63995,0 0,1.525342 z" + id="polygon247" + inkscape:connector-curvature="0" /><path + id="path249" + d="m 116.32516,32.984169 -0.12186,-0.554387 -0.0432,0 -0.13159,0.554387 -1.15665,3.635436 2.63801,0 -1.1847,-3.635436 z m 2.47294,7.58622 -0.78175,-2.391571 -3.63232,0 -0.77552,2.391571 -1.8438,0 3.3197,-9.396931 2.46281,0 3.36409,9.396931 -2.11321,0 z" + inkscape:connector-curvature="0" + style="fill:#ffffff;fill-opacity:1" /><path + style="fill:#ffffff;fill-opacity:1" + d="m 129.0453,38.985871 0,1.584518 -6.35248,0 0,-9.312449 2.06961,0 0,7.727931 z" + id="polygon251" + inkscape:connector-curvature="0" /><path + id="path255" + d="m 145.75631,11.891394 -3.8733,7.010421 -3.74211,-7.010421 -3.50774,0 c 0.65678,1.188194 5.24565,9.814277 5.24565,9.814277 l 0,5.691417 3.76391,0 c 0.003,-0.76812 0,-5.6665 0,-5.6665 0,0 4.76718,-8.64516 5.43953,-9.839194 l -3.32594,0 z" + inkscape:connector-curvature="0" + style="fill:#ffffff;fill-opacity:1" /><path + id="path259" + d="m 105.21096,12.75451 c -1.06907,-0.743985 -2.86965,-1.130187 -5.20789,-1.130187 -2.281782,0 -3.938716,0.312621 -5.213338,1.136415 -1.331462,0.856496 -1.95943,2.294631 -1.95943,4.545268 l 0,4.88125 c 0,2.254142 0.653662,3.777927 1.944247,4.533201 1.042589,0.726853 2.746629,1.071787 5.228521,1.071787 2.45075,0 4.20151,-0.351163 5.20166,-1.0531 1.29409,-0.806274 1.96954,-2.367823 1.96954,-4.551499 l 0,-4.882027 c 0,-2.141241 -0.65599,-3.668528 -1.96331,-4.551109 m -1.54754,9.215508 c 0,2.749354 -0.95966,3.382382 -3.66035,3.382382 -2.694852,0 -3.65763,-0.633028 -3.65763,-3.382382 l 0,-4.645323 c 0,-2.68239 0.962778,-3.262082 3.65763,-3.262082 2.70108,0 3.66035,0.579692 3.66035,3.262082 l 0,4.645323 z" + inkscape:connector-curvature="0" + style="fill:#ffffff;fill-opacity:1" /><path + id="path261" + d="m 84.433915,11.891394 -7.764915,0 0,15.513092 8.313462,0 c 4.093663,0 5.617447,-1.674061 5.617447,-6.172223 l 0,-3.409244 c 0,-4.270022 -1.728565,-5.931625 -6.165994,-5.931625 m 2.696406,9.712667 c 0,2.717817 -1.450594,3.402625 -2.666818,3.402625 l -4.291823,0 0,-10.839347 4.291823,0 c 1.216224,0 2.666818,0.686364 2.666818,3.213806 l 0,4.222916 0,0 z" + inkscape:connector-curvature="0" + style="fill:#ffffff;fill-opacity:1" /><path + style="fill:#ffffff;fill-opacity:1" + d="m 119.7091,24.820982 -6.46382,0 0,-12.929587 -3.50073,0 0,15.511534 9.96455,0 z" + id="polygon263" + inkscape:connector-curvature="0" /><path + id="path265" + d="m 147.31864,26.052389 0.29393,0 0.45005,0.739313 0.28732,0 -0.4812,-0.753717 c 0.25034,-0.03115 0.4411,-0.162345 0.4411,-0.46134 0,-0.33598 -0.19699,-0.485867 -0.60344,-0.485867 l -0.64393,0 0,1.700534 0.25617,0 0,-0.738923 0,0 z m 0,-0.743983 0.3496,0 c 0.30017,0 0.37881,0.08759 0.37881,0.25033 0,0.186093 -0.10356,0.275247 -0.41889,0.275247 l -0.30952,0 0,-0.525577 0,0 z m -1.17496,0.625242 c 0,0.858054 0.68131,1.475509 1.49109,1.475509 0.79693,0 1.48174,-0.617455 1.48174,-1.475509 0,-0.84248 -0.68481,-1.456821 -1.48174,-1.456821 -0.80978,0 -1.49109,0.614341 -1.49109,1.456821 m 2.69135,0 c 0,0.720624 -0.52752,1.234522 -1.20026,1.234522 -0.6817,0 -1.20689,-0.513898 -1.20689,-1.234522 0,-0.701937 0.52519,-1.227125 1.20689,-1.227125 0.67196,0 1.20026,0.525578 1.20026,1.227125" + inkscape:connector-curvature="0" + style="fill:#ffffff;fill-opacity:1" /><path + id="path267" + d="m 128.28769,25.144504 -3.15697,0 0,-11.021158 0,-0.0094 3.44155,0 c 1.16601,0 1.89091,0.926961 1.89091,2.191461 0,1.94775 -0.93747,1.994468 -3.62336,2.094523 l 0,1.795916 c 2.39469,-0.0066 4.31752,-0.154558 4.31752,2.330059 3.9e-4,1.244644 -0.79343,2.618542 -2.86965,2.618542 m 1.85664,-5.950701 c 2.75053,-0.249942 3.34852,-1.600091 3.34852,-3.536939 0,-1.710268 -0.72179,-2.577275 -1.51678,-3.066647 -0.66262,-0.417347 -1.44747,-0.698822 -3.09468,-0.698822 l -7.25568,0 0,15.513091 7.34951,0 c 2.25726,0 3.19784,-0.448492 3.63232,-0.748656 0.75061,-0.496767 1.71962,-1.603594 1.71962,-3.374594 0,-2.080507 -0.7253,-4.168411 -4.18283,-4.087433" + inkscape:connector-curvature="0" + style="fill:#ffffff;fill-opacity:1" /></g></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_folder.svg b/skins/blackhole/themes/default/icons/ico_folder.svg new file mode 100644 index 0000000..879dafc --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_folder.svg @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 18.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + width="1000px" + height="1000px" + viewBox="0 0 1000 1000" + enable-background="new 0 0 1000 1000" + xml:space="preserve" + inkscape:version="0.91pre2 r13516" + sodipodi:docname="ico_folder.svg"><metadata + id="metadata13"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs + id="defs11" /><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1846" + inkscape:window-height="1058" + id="namedview9" + showgrid="false" + inkscape:zoom="0.236" + inkscape:cx="500" + inkscape:cy="500" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><g + id="g3" + style="fill:#ffffff"><path + d="M540,190.7c-12.9-24.8-38.6-40.4-66.5-40.4H129.2c-27.6,0-50,22.4-50,50v26.8h479.7L540,190.7z" + id="path5" + style="fill:#ffffff" /><path + d="M870.8,272.1H79.2v463.7c0,27.6,22.4,50,50,50h741.5c27.6,0,50-22.4,50-50V322.1C920.8,294.5,898.4,272.1,870.8,272.1z" + id="path7" + style="fill:#ffffff" /></g></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_fwd_active.svg b/skins/blackhole/themes/default/icons/ico_fwd_active.svg new file mode 100644 index 0000000..407397a --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_fwd_active.svg @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + viewBox="0 0 100 100" + style="enable-background:new 0 0 100 100;" + xml:space="preserve" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="ico_fwd_active.svg"><metadata + id="metadata11"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs9"><linearGradient + inkscape:collect="always" + id="linearGradient4140"><stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4142" /><stop + style="stop-color:#800000;stop-opacity:1" + offset="1" + id="stop4144" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4146" + x1="83.682014" + y1="94.881378" + x2="25.314117" + y2="8.9676428" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.99379431,0,0,0.99783746,98.258651,0.10780794)" /></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1531" + inkscape:window-height="878" + id="namedview7" + showgrid="false" + inkscape:zoom="5.7268259" + inkscape:cx="41.185188" + inkscape:cy="47.669492" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><path + inkscape:connector-curvature="0" + id="path5" + d="m 11.845255,18.920038 32.032972,20.992504 0,-17.000157 c 0,-4.370528 3.064862,-6.157655 6.845255,-3.99135 L 92.164705,46.07818 c 3.780393,2.166305 3.780393,5.677695 0,7.844 L 50.723482,81.079324 c -3.780393,2.166305 -6.845255,0.379179 -6.845255,-3.99135 l 0,-17.001154 -32.032972,20.992504 C 8.064862,83.245629 5,81.458503 5,77.087974 L 5,22.912385 c 0,-4.370528 3.064862,-6.157655 6.845255,-3.992347 z" + style="fill:url(#linearGradient4146);fill-opacity:1" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_fwd_active_x1.svg b/skins/blackhole/themes/default/icons/ico_fwd_active_x1.svg new file mode 100644 index 0000000..6e0e665 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_fwd_active_x1.svg @@ -0,0 +1,89 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + viewBox="0 0 100 100" + style="enable-background:new 0 0 100 100;" + xml:space="preserve" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="ico_fwd_active_x1.svg"><metadata + id="metadata11"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs9"><linearGradient + inkscape:collect="always" + id="linearGradient4140"><stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4142" /><stop + style="stop-color:#800000;stop-opacity:1" + offset="1" + id="stop4144" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4146" + x1="83.682014" + y1="94.881378" + x2="25.314117" + y2="8.9676428" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.99379431,0,0,0.99783746,98.258651,0.10780794)" /><linearGradient + inkscape:collect="always" + id="linearGradient4140-2"><stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4142-6" /><stop + style="stop-color:#800000;stop-opacity:1" + offset="1" + id="stop4144-1" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140-2" + id="linearGradient4242" + x1="4.3004775" + y1="14.50319" + x2="31.460541" + y2="3.2274182" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.91751736,0,0,1.1149932,2.625789,0.81371249)" /></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1531" + inkscape:window-height="878" + id="namedview7" + showgrid="false" + inkscape:zoom="5.7268259" + inkscape:cx="41.185188" + inkscape:cy="47.669492" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><path + inkscape:connector-curvature="0" + id="path5" + d="m 11.845255,18.920038 32.032972,20.992504 0,-17.000157 c 0,-4.370528 3.064862,-6.157655 6.845255,-3.99135 L 92.164705,46.07818 c 3.780393,2.166305 3.780393,5.677695 0,7.844 L 50.723482,81.079324 c -3.780393,2.166305 -6.845255,0.379179 -6.845255,-3.99135 l 0,-17.001154 -32.032972,20.992504 C 8.064862,83.245629 5,81.458503 5,77.087974 L 5,22.912385 c 0,-4.370528 3.064862,-6.157655 6.845255,-3.992347 z" + style="fill:url(#linearGradient4146);fill-opacity:1" /><rect + style="opacity:0.8;fill:url(#linearGradient4242);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4226" + width="26.665991" + height="9.9999895" + x="5.0000048" + y="5.0000057" + ry="2.2137191" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_fwd_active_x2.svg b/skins/blackhole/themes/default/icons/ico_fwd_active_x2.svg new file mode 100644 index 0000000..9520630 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_fwd_active_x2.svg @@ -0,0 +1,105 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + viewBox="0 0 100 100" + style="enable-background:new 0 0 100 100;" + xml:space="preserve" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="ico_fwd_active_x2.svg"><metadata + id="metadata11"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs9"><linearGradient + inkscape:collect="always" + id="linearGradient4140"><stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4142" /><stop + style="stop-color:#800000;stop-opacity:1" + offset="1" + id="stop4144" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4146" + x1="83.682014" + y1="94.881378" + x2="25.314117" + y2="8.9676428" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.99379431,0,0,0.99783746,98.258651,0.10780794)" /><linearGradient + inkscape:collect="always" + id="linearGradient4140-2"><stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4142-6" /><stop + style="stop-color:#800000;stop-opacity:1" + offset="1" + id="stop4144-1" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140-2" + id="linearGradient4246" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.91751733,0,0,1.1149932,34.29179,0.81371249)" + x1="4.3004775" + y1="14.50319" + x2="31.460541" + y2="3.2274182" /><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140-2" + id="linearGradient4242" + x1="4.3004775" + y1="14.50319" + x2="31.460541" + y2="3.2274182" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.91751736,0,0,1.1149932,2.625789,0.81371249)" /></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1531" + inkscape:window-height="878" + id="namedview7" + showgrid="false" + inkscape:zoom="5.7268259" + inkscape:cx="41.185188" + inkscape:cy="47.669492" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><path + inkscape:connector-curvature="0" + id="path5" + d="m 11.845255,18.920038 32.032972,20.992504 0,-17.000157 c 0,-4.370528 3.064862,-6.157655 6.845255,-3.99135 L 92.164705,46.07818 c 3.780393,2.166305 3.780393,5.677695 0,7.844 L 50.723482,81.079324 c -3.780393,2.166305 -6.845255,0.379179 -6.845255,-3.99135 l 0,-17.001154 -32.032972,20.992504 C 8.064862,83.245629 5,81.458503 5,77.087974 L 5,22.912385 c 0,-4.370528 3.064862,-6.157655 6.845255,-3.992347 z" + style="fill:url(#linearGradient4146);fill-opacity:1" /><rect + style="opacity:0.8;fill:url(#linearGradient4242);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4226" + width="26.665991" + height="9.9999895" + x="5.0000048" + y="5.0000057" + ry="2.2137191" /><rect + ry="2.2137191" + y="5.0000057" + x="36.666004" + height="9.9999895" + width="26.665991" + id="rect4244" + style="opacity:0.8;fill:url(#linearGradient4246);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_fwd_active_x3.svg b/skins/blackhole/themes/default/icons/ico_fwd_active_x3.svg new file mode 100644 index 0000000..6f4ab38 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_fwd_active_x3.svg @@ -0,0 +1,121 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + viewBox="0 0 100 100" + style="enable-background:new 0 0 100 100;" + xml:space="preserve" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="ico_fwd_active_x3.svg"><metadata + id="metadata11"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs9"><linearGradient + inkscape:collect="always" + id="linearGradient4140"><stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4142" /><stop + style="stop-color:#800000;stop-opacity:1" + offset="1" + id="stop4144" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4146" + x1="83.682014" + y1="94.881378" + x2="25.314117" + y2="8.9676428" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.99379431,0,0,0.99783746,98.258651,0.10780794)" /><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140-2" + id="linearGradient4250" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.91751733,0,0,1.1149932,65.959791,0.81371249)" + x1="4.3004775" + y1="14.50319" + x2="31.460541" + y2="3.2274182" /><linearGradient + inkscape:collect="always" + id="linearGradient4140-2"><stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4142-6" /><stop + style="stop-color:#800000;stop-opacity:1" + offset="1" + id="stop4144-1" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140-2" + id="linearGradient4246" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.91751733,0,0,1.1149932,34.29179,0.81371249)" + x1="4.3004775" + y1="14.50319" + x2="31.460541" + y2="3.2274182" /><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140-2" + id="linearGradient4242" + x1="4.3004775" + y1="14.50319" + x2="31.460541" + y2="3.2274182" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.91751736,0,0,1.1149932,2.625789,0.81371249)" /></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1531" + inkscape:window-height="878" + id="namedview7" + showgrid="false" + inkscape:zoom="5.7268259" + inkscape:cx="41.185188" + inkscape:cy="47.669492" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><path + inkscape:connector-curvature="0" + id="path5" + d="m 11.845255,18.920038 32.032972,20.992504 0,-17.000157 c 0,-4.370528 3.064862,-6.157655 6.845255,-3.99135 L 92.164705,46.07818 c 3.780393,2.166305 3.780393,5.677695 0,7.844 L 50.723482,81.079324 c -3.780393,2.166305 -6.845255,0.379179 -6.845255,-3.99135 l 0,-17.001154 -32.032972,20.992504 C 8.064862,83.245629 5,81.458503 5,77.087974 L 5,22.912385 c 0,-4.370528 3.064862,-6.157655 6.845255,-3.992347 z" + style="fill:url(#linearGradient4146);fill-opacity:1" /><rect + style="opacity:0.8;fill:url(#linearGradient4242);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4226" + width="26.665991" + height="9.9999895" + x="5.0000048" + y="5.0000057" + ry="2.2137191" /><rect + ry="2.2137191" + y="5.0000057" + x="36.666004" + height="9.9999895" + width="26.665991" + id="rect4244" + style="opacity:0.8;fill:url(#linearGradient4246);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><rect + style="opacity:0.8;fill:url(#linearGradient4250);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4248" + width="26.665991" + height="9.9999895" + x="68.334007" + y="5.0000057" + ry="2.2137191" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_fwd_inactive.svg b/skins/blackhole/themes/default/icons/ico_fwd_inactive.svg new file mode 100644 index 0000000..98bf185 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_fwd_inactive.svg @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + viewBox="0 0 100 100" + style="enable-background:new 0 0 100 100;" + xml:space="preserve" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="ico_fwd_inactive.svg"><metadata + id="metadata11"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs9"><linearGradient + inkscape:collect="always" + id="linearGradient4140"><stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4142" /><stop + style="stop-color:#00284a;stop-opacity:1" + offset="1" + id="stop4144" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4140" + id="linearGradient4146" + x1="83.682014" + y1="94.881378" + x2="25.314117" + y2="8.9676428" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.99379431,0,0,0.99783746,98.258651,0.10780794)" /></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1531" + inkscape:window-height="878" + id="namedview7" + showgrid="false" + inkscape:zoom="5.7268259" + inkscape:cx="49.152542" + inkscape:cy="47.669492" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><path + inkscape:connector-curvature="0" + id="path5" + d="m 11.845255,18.920038 32.032972,20.992504 0,-17.000157 c 0,-4.370528 3.064862,-6.157655 6.845255,-3.99135 L 92.164705,46.07818 c 3.780393,2.166305 3.780393,5.677695 0,7.844 L 50.723482,81.079324 c -3.780393,2.166305 -6.845255,0.379179 -6.845255,-3.99135 l 0,-17.001154 -32.032972,20.992504 C 8.064862,83.245629 5,81.458503 5,77.087974 L 5,22.912385 c 0,-4.370528 3.064862,-6.157655 6.845255,-3.992347 z" + style="fill:url(#linearGradient4146);fill-opacity:1" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_hd1080i.svg b/skins/blackhole/themes/default/icons/ico_hd1080i.svg new file mode 100644 index 0000000..02ebf25 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_hd1080i.svg @@ -0,0 +1,173 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="50" + id="svg2" + version="1.1" + inkscape:version="0.91pre3 r13670" + viewBox="0 0 150 50.000001" + sodipodi:docname="ico_hd1080i.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4172"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4174" /> + <stop + style="stop-color:#999999;stop-opacity:1" + offset="1" + id="stop4176" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4162"> + <stop + style="stop-color:#c3c3c3;stop-opacity:1" + offset="0" + id="stop4164" /> + <stop + style="stop-color:#e71f1f;stop-opacity:1" + offset="1" + id="stop4166" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4192"> + <stop + style="stop-color:#00284a;stop-opacity:1;" + offset="0" + id="stop4194" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop4196" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4192" + id="linearGradient4198" + x1="113.87164" + y1="1049.3083" + x2="137.99171" + y2="963.38702" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(4.4999999e-6,-4.6e-5)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4162" + id="linearGradient4168" + x1="35.610756" + y1="1064.6293" + x2="103.83022" + y2="996.30615" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4172" + id="linearGradient4178" + x1="89.026787" + y1="989.05988" + x2="75.258934" + y2="1062.7659" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.83" + inkscape:cx="34.416517" + inkscape:cy="55.966018" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1002.3622)"> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:url(#linearGradient4198);fill-opacity:1;stroke:url(#linearGradient4168);stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 3.4999999e-6,1002.3622 0,50 L 150,1052.3622 l 0,-50 -149.9999965000001,0 z m 5.0000000000001,5 49.9999985,0 0,40 -49.9999985,0 0,-40 z" + id="rect4139" /> + <rect + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient4178);stroke-width:1.972;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4162" + width="148.02827" + height="48.028259" + x="0.98586887" + y="1003.3481" + ry="0.6197632" /> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text4180"> + <path + d="m 65.441323,1039.2852 12.6,0 0,-2.38 -4.62,0 0,-19.95 -2.205,0 c -1.225,0.735 -2.695,1.295 -4.725,1.645 l 0,1.855 4.06,0 0,16.45 -5.11,0 0,2.38 z" + style="" + id="path4153" /> + <path + d="m 88.754604,1039.7052 c 4.445,0 7.14,-4.165 7.14,-11.655 0,-7.49 -2.695,-11.515 -7.14,-11.515 -4.48,0 -7.175,4.025 -7.175,11.515 0,7.49 2.695,11.655 7.175,11.655 z m 0,-2.31 c -2.625,0 -4.375,-2.8 -4.375,-9.345 0,-6.545 1.75,-9.205 4.375,-9.205 2.59,0 4.34,2.66 4.34,9.205 0,6.545 -1.75,9.345 -4.34,9.345 z" + style="" + id="path4155" /> + <path + d="m 101.42789,1033.3002 c 0,-2.03 1.33,-3.675 3.115,-4.865 3.22,1.295 6.055,2.345 6.055,5.215 0,2.31 -1.785,3.92 -4.375,3.92 -2.73,0 -4.795,-1.785 -4.795,-4.27 z m 6.3,-6.195 c -2.695,-1.05 -5.145,-2.17 -5.145,-4.83 0,-2.17 1.54,-3.605 3.605,-3.605 2.45,0 3.885,1.75 3.885,3.955 0,1.645 -0.84,3.15 -2.345,4.48 z m -8.890005,6.475 c 0,3.535 3.115005,6.125 7.315005,6.125 4.34,0 7.21,-2.625 7.21,-5.95 0,-3.01 -1.89,-4.585 -3.885,-5.74 l 0,-0.14 c 1.365,-1.05 3.08,-3.045 3.08,-5.39 0,-3.465 -2.415,-5.95 -6.3,-5.95 -3.605,0 -6.335005,2.31 -6.335005,5.74 0,2.345 1.470005,3.99 3.115005,5.145 l 0,0.14 c -2.1,1.12 -4.200005,3.115 -4.200005,6.02 z" + style="" + id="path4157" /> + <path + d="m 123.48117,1039.7052 c 4.445,0 7.14,-4.165 7.14,-11.655 0,-7.49 -2.695,-11.515 -7.14,-11.515 -4.48,0 -7.175,4.025 -7.175,11.515 0,7.49 2.695,11.655 7.175,11.655 z m 0,-2.31 c -2.625,0 -4.375,-2.8 -4.375,-9.345 0,-6.545 1.75,-9.205 4.375,-9.205 2.59,0 4.34,2.66 4.34,9.205 0,6.545 -1.75,9.345 -4.34,9.345 z" + style="" + id="path4159" /> + <path + d="m 136.46945,1018.7752 c 1.12,0 1.995,-0.77 1.995,-1.855 0,-1.12 -0.875,-1.855 -1.995,-1.855 -1.12,0 -1.995,0.735 -1.995,1.855 0,1.085 0.875,1.855 1.995,1.855 z m -1.47,20.51 2.87,0 0,-17.01 -2.87,0 0,17.01 z" + style="" + id="path4161" /> + </g> + <g + style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:35px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Semi-Bold Italic';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text4186"> + <path + d="m 9.1945344,1039.5256 3.7799996,0 2.03,-10.325 9.065,0 -2.1,10.325 3.78,0 4.585,-22.89 -3.78,0 -1.855,9.275 -9.065,0 1.89,-9.275 -3.78,0 -4.5499996,22.89 z" + style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:35px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Semi-Bold Italic';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff" + id="path4164" /> + <path + d="m 31.54805,1039.5256 6.65,0 c 7.525,0 12.46,-5.25 12.46,-13.93 0,-5.81 -3.535,-8.96 -9.905,-8.96 l -4.655,0 -4.55,22.89 z m 4.375,-3.045 3.325,-16.8 1.4,0 c 3.885,0 6.16,2.1 6.16,6.16 0,6.755 -3.535,10.64 -8.68,10.64 l -2.205,0 z" + style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:35px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Semi-Bold Italic';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff" + id="path4166" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/icons/ico_hd720p.svg b/skins/blackhole/themes/default/icons/ico_hd720p.svg new file mode 100644 index 0000000..6e10a98 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_hd720p.svg @@ -0,0 +1,169 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="50" + id="svg2" + version="1.1" + inkscape:version="0.91pre3 r13670" + viewBox="0 0 150 50.000001" + sodipodi:docname="ico_hd720p.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4172"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4174" /> + <stop + style="stop-color:#999999;stop-opacity:1" + offset="1" + id="stop4176" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4162"> + <stop + style="stop-color:#c3c3c3;stop-opacity:1" + offset="0" + id="stop4164" /> + <stop + style="stop-color:#e71f1f;stop-opacity:1" + offset="1" + id="stop4166" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4192"> + <stop + style="stop-color:#00284a;stop-opacity:1;" + offset="0" + id="stop4194" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop4196" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4192" + id="linearGradient4198" + x1="113.87164" + y1="1049.3083" + x2="137.99171" + y2="963.38702" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(4.4999999e-6,-4.6e-5)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4162" + id="linearGradient4168" + x1="35.610756" + y1="1064.6293" + x2="103.83022" + y2="996.30615" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4172" + id="linearGradient4178" + x1="89.026787" + y1="989.05988" + x2="75.258934" + y2="1062.7659" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.83" + inkscape:cx="34.416517" + inkscape:cy="55.966018" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1002.3622)"> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:url(#linearGradient4198);fill-opacity:1;stroke:url(#linearGradient4168);stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 3.4999999e-6,1002.3622 0,50 L 150,1052.3622 l 0,-50 -149.9999965000001,0 z m 5.0000000000001,5 49.9999985,0 0,40 -49.9999985,0 0,-40 z" + id="rect4139" /> + <rect + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient4178);stroke-width:1.972;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4162" + width="148.02827" + height="48.028259" + x="0.98586887" + y="1003.3481" + ry="0.6197632" /> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text4180"> + <path + d="m 72.871323,1039.2852 2.975,0 c 0.385,-8.715 1.47,-13.79 6.755,-20.545 l 0,-1.785 -14.385,0 0,2.485 11.13,0 c -4.41,6.125 -6.09,11.445 -6.475,19.845 z" + style="" + id="path4158" /> + <path + d="m 85.439604,1039.2852 14.42,0 0,-2.485 -6.475,0 c -1.155,0 -2.52,0.105 -3.745,0.21 5.285,-5.53 9.1,-9.695 9.1,-13.895 0,-3.955 -2.555,-6.58 -6.685,-6.58 -2.905,0 -4.9,1.365 -6.755,3.395 l 1.645,1.645 c 1.295,-1.505 2.905,-2.695 4.76,-2.695 2.835,0 4.235,1.82 4.235,4.375 0,3.605 -3.78,7.63 -10.5,14.315 l 0,1.715 z" + style="" + id="path4160" /> + <path + d="m 110.11789,1039.7052 c 4.445,0 7.14,-4.165 7.14,-11.655 0,-7.49 -2.695,-11.515 -7.14,-11.515 -4.48,0 -7.175,4.025 -7.175,11.515 0,7.49 2.695,11.655 7.175,11.655 z m 0,-2.31 c -2.625,0 -4.375,-2.8 -4.375,-9.345 0,-6.545 1.75,-9.205 4.375,-9.205 2.59,0 4.34,2.66 4.34,9.205 0,6.545 -1.75,9.345 -4.34,9.345 z" + style="" + id="path4162" /> + <path + d="m 124.43617,1037.7452 c 1.575,1.225 3.15,1.96 4.725,1.96 3.885,0 7.35,-3.395 7.35,-9.17 0,-5.285 -2.345,-8.68 -6.72,-8.68 -1.995,0 -3.885,1.085 -5.425,2.38 l -0.105,0 -0.245,-1.96 -2.38,0 0,24.185 2.87,0 0,-5.74 -0.07,-2.975 z m 0.07,-2.24 0,-8.925 c 1.68,-1.505 3.115,-2.31 4.55,-2.31 3.22,0 4.48,2.52 4.48,6.265 0,4.2 -2.065,6.755 -4.865,6.755 -1.12,0 -2.625,-0.49 -4.165,-1.785 z" + style="" + id="path4164" /> + </g> + <g + style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:35px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Semi-Bold Italic';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text4186"> + <path + d="m 9.1945344,1039.5256 3.7799996,0 2.03,-10.325 9.065,0 -2.1,10.325 3.78,0 4.585,-22.89 -3.78,0 -1.855,9.275 -9.065,0 1.89,-9.275 -3.78,0 -4.5499996,22.89 z" + style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:35px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Semi-Bold Italic';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff" + id="path4153" /> + <path + d="m 31.54805,1039.5256 6.65,0 c 7.525,0 12.46,-5.25 12.46,-13.93 0,-5.81 -3.535,-8.96 -9.905,-8.96 l -4.655,0 -4.55,22.89 z m 4.375,-3.045 3.325,-16.8 1.4,0 c 3.885,0 6.16,2.1 6.16,6.16 0,6.755 -3.535,10.64 -8.68,10.64 l -2.205,0 z" + style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:35px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Semi-Bold Italic';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff" + id="path4155" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/icons/ico_new_rec.svg b/skins/blackhole/themes/default/icons/ico_new_rec.svg new file mode 100644 index 0000000..f3acaf5 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_new_rec.svg @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Layer_1" + x="0px" + y="0px" + width="512px" + height="512px" + viewBox="0 0 512 512" + style="enable-background:new 0 0 512 512;" + xml:space="preserve" + inkscape:version="0.91pre2 r13516" + sodipodi:docname="ico_new_rec.svg"><metadata + id="metadata9"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs + id="defs7" /><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="852" + inkscape:window-height="480" + id="namedview5" + showgrid="false" + inkscape:zoom="0.4609375" + inkscape:cx="-114.98305" + inkscape:cy="256" + inkscape:window-x="840" + inkscape:window-y="429" + inkscape:window-maximized="0" + inkscape:current-layer="Layer_1" /><path + d="M450.352,256.508l35.405-36.292c4.403-4.513,6.224-10.947,4.838-17.097c-1.387-6.15-5.79-11.182-11.704-13.37 l-47.546-17.595l16.163-48.054c2.011-5.976,0.859-12.563-3.056-17.504c-3.917-4.94-10.07-7.572-16.344-6.971l-50.478,4.766 l-6.27-50.309c-0.779-6.257-4.672-11.694-10.345-14.448c-5.671-2.753-12.353-2.45-17.75,0.806l-43.818,26.427l-27.876-42.914 c-3.435-5.287-9.311-8.477-15.616-8.477c-6.304,0-12.182,3.19-15.617,8.478l-27.616,42.517L169.4,40.138 c-5.386-3.275-12.065-3.603-17.748-0.868c-5.681,2.735-9.592,8.158-10.394,14.412l-6.448,50.288l-50.457-4.942 c-6.273-0.619-12.435,1.988-16.368,6.915c-3.933,4.927-5.106,11.51-3.117,17.492l15.994,48.109l-47.609,17.429 c-5.92,2.167-10.341,7.184-11.748,13.329c-1.408,6.146,0.39,12.586,4.775,17.114l35.279,36.413L26.219,292.18 c-4.394,4.52-6.203,10.958-4.808,17.105c1.398,6.148,5.812,11.171,11.728,13.349l47.579,17.512l-16.083,48.082 c-2,5.979-0.84,12.564,3.086,17.498c3.925,4.935,10.082,7.548,16.355,6.944l50.465-4.854l6.362,50.3 c0.792,6.255,4.692,11.685,10.369,14.429c5.677,2.745,12.356,2.43,17.748-0.836l43.37-26.258l27.545,42.566 c3.425,5.293,9.297,8.494,15.601,8.505c0.01,0,0.021,0,0.032,0c6.293,0,12.161-3.179,15.598-8.451l27.692-42.468l43.28,26.41 c5.381,3.285,12.059,3.623,17.745,0.898c5.686-2.725,9.606-8.141,10.42-14.394l6.535-50.277l50.451,5.03 c6.281,0.625,12.438-1.967,16.38-6.887c3.941-4.92,5.126-11.501,3.146-17.487l-15.912-48.135l47.639-17.347 c5.924-2.157,10.354-7.166,11.772-13.309c1.418-6.143-0.368-12.586-4.747-17.122L450.352,256.508z M196.262,297.391 c0,3.024-2.451,5.476-5.476,5.476H174.42c-1.953,0-3.757-1.04-4.737-2.729l-19.148-33.007c-3.132-5.383-8.644-15.191-13.691-25.865 c0.375,10.122,0.558,20.905,0.558,32.748v23.377c0,3.024-2.452,5.476-5.476,5.476h-11.891c-3.025,0-5.477-2.452-5.477-5.476v-82.781 c0-3.024,2.452-5.477,5.477-5.477h18.926c1.933,0,3.722,1.02,4.708,2.681l18.572,31.28c4.251,7.204,8.511,15.414,12.167,23.403 c-0.679-8.5-0.99-17.887-0.99-29.315v-22.571c0-3.024,2.451-5.477,5.476-5.477h11.891c3.025,0,5.476,2.453,5.476,5.477V297.391z M270.473,297.391c0,3.024-2.452,5.476-5.476,5.476h-52.727c-3.024,0-5.477-2.452-5.477-5.476v-82.781 c0-3.024,2.452-5.477,5.477-5.477h50.755c3.025,0,5.476,2.453,5.476,5.477v8.98c0,3.024-2.451,5.477-5.476,5.477h-31.559v15.689 h29.445c3.025,0,5.477,2.452,5.477,5.477v8.846c0,3.025-2.452,5.476-5.477,5.476h-29.445v18.379h33.53 c3.024,0,5.476,2.452,5.476,5.476V297.391z M397.251,216.039l-22.386,82.78c-0.646,2.388-2.812,4.047-5.286,4.047h-17.053 c-2.599,0-4.84-1.827-5.364-4.373l-7.38-35.84c-1.332-6.655-2.422-12.51-3.323-18.649c-1.181,6.586-2.387,12.515-3.911,18.703 l-8.302,35.916c-0.574,2.484-2.787,4.243-5.336,4.243h-17.347c-2.516,0-4.708-1.713-5.314-4.155l-20.585-82.78 c-0.407-1.635-0.039-3.367,1-4.695c1.038-1.328,2.63-2.104,4.314-2.104h14.718c2.625,0,4.882,1.864,5.377,4.443l6.575,34.212 c1.521,7.752,2.967,15.958,4.238,23.387c1.299-7.112,2.9-14.837,4.8-23.697l7.362-34.027c0.545-2.52,2.774-4.319,5.352-4.319h16.448 c2.611,0,4.859,1.846,5.371,4.407l6.976,35.029c1.375,6.916,2.568,13.689,3.719,21.153c0.84-4.962,1.786-10.026,2.765-15.268 l0.063-0.335c0.406-2.177,0.813-4.362,1.216-6.554c0.007-0.044,0.016-0.087,0.025-0.13l7.086-33.944 c0.531-2.538,2.768-4.358,5.361-4.358h13.536c1.705,0,3.313,0.794,4.349,2.148C397.35,212.635,397.696,214.394,397.251,216.039z" + id="path3" + style="fill:#ffffff" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_pause_active.svg b/skins/blackhole/themes/default/icons/ico_pause_active.svg new file mode 100644 index 0000000..4a7878a --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_pause_active.svg @@ -0,0 +1,104 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + width="100" + height="100" + viewBox="0 0 100 100" + xml:space="preserve" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="ico_pause_active.svg"><metadata + id="metadata45"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs43"><linearGradient + inkscape:collect="always" + id="linearGradient4173"><stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop4175" /><stop + style="stop-color:#800000;stop-opacity:1" + offset="1" + id="stop4177" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4173" + id="linearGradient4179" + x1="-13.433744" + y1="86.582359" + x2="54.143299" + y2="-2.3079979" + gradientUnits="userSpaceOnUse" /></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1531" + inkscape:window-height="878" + id="namedview41" + showgrid="false" + inkscape:zoom="3.3714286" + inkscape:cx="26.5" + inkscape:cy="35" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><g + id="g3" + transform="matrix(1.0377358,0,0,0.91428571,22.5,18)" + style="fill:url(#linearGradient4179);fill-opacity:1"><g + id="g5" + style="fill:url(#linearGradient4179);fill-opacity:1"><path + d="m 44,0 c -4.972,0 -9,1.529 -9,6.5 l 0,57 c 0,4.971 4.028,6.5 9,6.5 4.971,0 9,-1.529 9,-6.5 l 0,-57 C 53,1.529 48.971,0 44,0 Z" + id="path7" + inkscape:connector-curvature="0" + style="fill:url(#linearGradient4179);fill-opacity:1" /><path + d="M 9,0 C 4.028,0 0,1.529 0,6.5 l 0,57 c 0,4.971 4.028,6.5 9,6.5 4.971,0 9,-1.529 9,-6.5 l 0,-57 C 18,1.529 13.971,0 9,0 Z" + id="path9" + inkscape:connector-curvature="0" + style="fill:url(#linearGradient4179);fill-opacity:1" /></g></g><g + id="g11" + transform="translate(0,30)" /><g + id="g13" + transform="translate(0,30)" /><g + id="g15" + transform="translate(0,30)" /><g + id="g17" + transform="translate(0,30)" /><g + id="g19" + transform="translate(0,30)" /><g + id="g21" + transform="translate(0,30)" /><g + id="g23" + transform="translate(0,30)" /><g + id="g25" + transform="translate(0,30)" /><g + id="g27" + transform="translate(0,30)" /><g + id="g29" + transform="translate(0,30)" /><g + id="g31" + transform="translate(0,30)" /><g + id="g33" + transform="translate(0,30)" /><g + id="g35" + transform="translate(0,30)" /><g + id="g37" + transform="translate(0,30)" /><g + id="g39" + transform="translate(0,30)" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_pause_inactive.svg b/skins/blackhole/themes/default/icons/ico_pause_inactive.svg new file mode 100644 index 0000000..1c70101 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_pause_inactive.svg @@ -0,0 +1,104 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + width="100" + height="100" + viewBox="0 0 100 100" + xml:space="preserve" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="ico_pause_inactive.svg"><metadata + id="metadata45"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs43"><linearGradient + inkscape:collect="always" + id="linearGradient4173"><stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop4175" /><stop + style="stop-color:#00284a;stop-opacity:1" + offset="1" + id="stop4177" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4173" + id="linearGradient4179" + x1="-13.433744" + y1="86.582359" + x2="54.143299" + y2="-2.3079979" + gradientUnits="userSpaceOnUse" /></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1531" + inkscape:window-height="878" + id="namedview41" + showgrid="false" + inkscape:zoom="3.3714286" + inkscape:cx="26.5" + inkscape:cy="35" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><g + id="g3" + transform="matrix(1.0377358,0,0,0.91428571,22.5,18)" + style="fill:url(#linearGradient4179);fill-opacity:1"><g + id="g5" + style="fill:url(#linearGradient4179);fill-opacity:1"><path + d="m 44,0 c -4.972,0 -9,1.529 -9,6.5 l 0,57 c 0,4.971 4.028,6.5 9,6.5 4.971,0 9,-1.529 9,-6.5 l 0,-57 C 53,1.529 48.971,0 44,0 Z" + id="path7" + inkscape:connector-curvature="0" + style="fill:url(#linearGradient4179);fill-opacity:1" /><path + d="M 9,0 C 4.028,0 0,1.529 0,6.5 l 0,57 c 0,4.971 4.028,6.5 9,6.5 4.971,0 9,-1.529 9,-6.5 l 0,-57 C 18,1.529 13.971,0 9,0 Z" + id="path9" + inkscape:connector-curvature="0" + style="fill:url(#linearGradient4179);fill-opacity:1" /></g></g><g + id="g11" + transform="translate(0,30)" /><g + id="g13" + transform="translate(0,30)" /><g + id="g15" + transform="translate(0,30)" /><g + id="g17" + transform="translate(0,30)" /><g + id="g19" + transform="translate(0,30)" /><g + id="g21" + transform="translate(0,30)" /><g + id="g23" + transform="translate(0,30)" /><g + id="g25" + transform="translate(0,30)" /><g + id="g27" + transform="translate(0,30)" /><g + id="g29" + transform="translate(0,30)" /><g + id="g31" + transform="translate(0,30)" /><g + id="g33" + transform="translate(0,30)" /><g + id="g35" + transform="translate(0,30)" /><g + id="g37" + transform="translate(0,30)" /><g + id="g39" + transform="translate(0,30)" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_play_active.svg b/skins/blackhole/themes/default/icons/ico_play_active.svg new file mode 100644 index 0000000..af5bcb6 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_play_active.svg @@ -0,0 +1,98 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + width="100" + height="100" + viewBox="0 0 100 100" + xml:space="preserve" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="ico_play_active.svg"><metadata + id="metadata41"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs39"><linearGradient + inkscape:collect="always" + id="linearGradient4169"><stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop4171" /><stop + style="stop-color:#800000;stop-opacity:1" + offset="1" + id="stop4173" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4169" + id="linearGradient4175" + x1="17.103235" + y1="59.3172" + x2="26.194145" + y2="-7.658658" + gradientUnits="userSpaceOnUse" /></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1531" + inkscape:window-height="878" + id="namedview37" + showgrid="false" + inkscape:zoom="3.9333333" + inkscape:cx="25" + inkscape:cy="30" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><g + id="g3" + transform="matrix(1.1,0,0,1.0666631,22.5,17.999716)" + style="fill:url(#linearGradient4175);fill-opacity:1"><path + d="M 48.479,27.435 5.672,0.915 C 2.553,-1.132 0,0.374 0,4.261 l 0,51.48 c 0,3.885 2.553,5.391 5.672,3.346 l 42.807,-26.52 c 0,0 1.521,-1.07 1.521,-2.566 0,-1.496 -1.521,-2.566 -1.521,-2.566 z" + id="path5" + inkscape:connector-curvature="0" + style="fill:url(#linearGradient4175);fill-opacity:1" /></g><g + id="g7" + transform="translate(0,40)" /><g + id="g9" + transform="translate(0,40)" /><g + id="g11" + transform="translate(0,40)" /><g + id="g13" + transform="translate(0,40)" /><g + id="g15" + transform="translate(0,40)" /><g + id="g17" + transform="translate(0,40)" /><g + id="g19" + transform="translate(0,40)" /><g + id="g21" + transform="translate(0,40)" /><g + id="g23" + transform="translate(0,40)" /><g + id="g25" + transform="translate(0,40)" /><g + id="g27" + transform="translate(0,40)" /><g + id="g29" + transform="translate(0,40)" /><g + id="g31" + transform="translate(0,40)" /><g + id="g33" + transform="translate(0,40)" /><g + id="g35" + transform="translate(0,40)" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_play_inactive.svg b/skins/blackhole/themes/default/icons/ico_play_inactive.svg new file mode 100644 index 0000000..582717f --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_play_inactive.svg @@ -0,0 +1,98 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + width="100" + height="100" + viewBox="0 0 100 100" + xml:space="preserve" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="ico_play_inactive.svg"><metadata + id="metadata41"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs39"><linearGradient + inkscape:collect="always" + id="linearGradient4169"><stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop4171" /><stop + style="stop-color:#00284a;stop-opacity:1" + offset="1" + id="stop4173" /></linearGradient><linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4169" + id="linearGradient4175" + x1="17.103235" + y1="59.3172" + x2="26.194145" + y2="-7.658658" + gradientUnits="userSpaceOnUse" /></defs><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1531" + inkscape:window-height="878" + id="namedview37" + showgrid="false" + inkscape:zoom="3.9333333" + inkscape:cx="25" + inkscape:cy="30" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><g + id="g3" + transform="matrix(1.1,0,0,1.0666631,22.5,17.999716)" + style="fill:url(#linearGradient4175);fill-opacity:1"><path + d="M 48.479,27.435 5.672,0.915 C 2.553,-1.132 0,0.374 0,4.261 l 0,51.48 c 0,3.885 2.553,5.391 5.672,3.346 l 42.807,-26.52 c 0,0 1.521,-1.07 1.521,-2.566 0,-1.496 -1.521,-2.566 -1.521,-2.566 z" + id="path5" + inkscape:connector-curvature="0" + style="fill:url(#linearGradient4175);fill-opacity:1" /></g><g + id="g7" + transform="translate(0,40)" /><g + id="g9" + transform="translate(0,40)" /><g + id="g11" + transform="translate(0,40)" /><g + id="g13" + transform="translate(0,40)" /><g + id="g15" + transform="translate(0,40)" /><g + id="g17" + transform="translate(0,40)" /><g + id="g19" + transform="translate(0,40)" /><g + id="g21" + transform="translate(0,40)" /><g + id="g23" + transform="translate(0,40)" /><g + id="g25" + transform="translate(0,40)" /><g + id="g27" + transform="translate(0,40)" /><g + id="g29" + transform="translate(0,40)" /><g + id="g31" + transform="translate(0,40)" /><g + id="g33" + transform="translate(0,40)" /><g + id="g35" + transform="translate(0,40)" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_rec_on.svg b/skins/blackhole/themes/default/icons/ico_rec_on.svg new file mode 100644 index 0000000..45eb863 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_rec_on.svg @@ -0,0 +1,160 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="50" + height="50" + id="svg2" + version="1.1" + inkscape:version="0.91pre3 r13670" + viewBox="0 0 49.999999 50.000001" + sodipodi:docname="ico_rec_on.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4240"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4242" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4244" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4214"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop4216" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop4218" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4173"> + <stop + style="stop-color:#2c4255;stop-opacity:1;" + offset="0" + id="stop4175" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop4177" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4173" + id="linearGradient4179" + x1="6.1765633" + y1="1047.7924" + x2="39.66613" + y2="1009.4264" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4214" + id="linearGradient4220" + x1="8.7948284" + y1="1042.3796" + x2="43.393124" + y2="1014.2346" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4240" + id="radialGradient4246" + cx="42.006367" + cy="1003.2948" + fx="42.006367" + fy="1003.2948" + r="23.434333" + gradientTransform="translate(0,-8.3618257e-5)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4214" + id="linearGradient4155" + gradientUnits="userSpaceOnUse" + x1="8.7948284" + y1="1042.3796" + x2="43.393124" + y2="1014.2346" + gradientTransform="matrix(1.0231507,0,0,1.0231507,-0.57876763,-23.784214)" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="10.055058" + inkscape:cx="14.02337" + inkscape:cy="23.850628" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1002.3622)"> + <circle + style="opacity:1;fill:#aa0000;fill-opacity:1;stroke:url(#linearGradient4155);stroke-width:2.046;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4196" + cy="1027.3622" + cx="25" + r="23.976849" /> + <ellipse + cx="25" + cy="1027.3623" + rx="23.434328" + ry="23.43433" + id="ellipse4226" + style="opacity:1;fill:url(#radialGradient4246);fill-opacity:1;stroke:url(#linearGradient4220);stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + style="opacity:0.75;fill:#cccccc;fill-opacity:1;stroke:url(#linearGradient4179);stroke-width:2.0349884;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4137" + r="23.982506" + cy="1027.3622" + cx="24.999998" /> + <ellipse + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#00ffff;stroke-width:2.0599978;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4164" + cx="24.99999" + cy="1027.3622" + r="23.970001" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/icons/ico_recording.svg b/skins/blackhole/themes/default/icons/ico_recording.svg new file mode 100644 index 0000000..b519600 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_recording.svg @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Layer_1" + x="0px" + y="0px" + width="512px" + height="512px" + viewBox="0 0 512 512" + style="enable-background:new 0 0 512 512;" + xml:space="preserve" + inkscape:version="0.91pre2 r13516" + sodipodi:docname="ico_recording.svg"><metadata + id="metadata9"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs7" /><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1846" + inkscape:window-height="1058" + id="namedview5" + showgrid="false" + inkscape:zoom="0.4609375" + inkscape:cx="256" + inkscape:cy="256" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_1" /><path + d="M59.727,431.163h28.07c3.17,0,5.739-2.569,5.739-5.739v-37.333h53.683v37.333c0,3.17,2.57,5.739,5.739,5.739h206.084 c3.169,0,5.739-2.569,5.739-5.739v-37.333h53.683v37.333c0,3.17,2.569,5.739,5.739,5.739h28.07c3.169,0,5.738-2.569,5.738-5.739 V86.576c0-3.17-2.569-5.739-5.738-5.739h-28.07c-3.17,0-5.739,2.569-5.739,5.739v37.333h-53.683V86.576 c0-3.17-2.57-5.739-5.739-5.739H152.958c-3.169,0-5.739,2.569-5.739,5.739v37.333H93.536V86.576c0-3.17-2.569-5.739-5.739-5.739 h-28.07c-3.169,0-5.738,2.569-5.738,5.739v338.848C53.988,428.594,56.557,431.163,59.727,431.163z M364.781,176.181h53.683v53.684 h-53.683V176.181z M364.781,282.136h53.683v53.684h-53.683V282.136z M93.536,176.181h53.683v53.684H93.536V176.181z M93.536,282.136 h53.683v53.684H93.536V282.136z" + id="path3" + style="fill:#ececec" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_sd576i.svg b/skins/blackhole/themes/default/icons/ico_sd576i.svg new file mode 100644 index 0000000..934b24d --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_sd576i.svg @@ -0,0 +1,169 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="50" + id="svg2" + version="1.1" + inkscape:version="0.91pre3 r13670" + viewBox="0 0 150 50.000001" + sodipodi:docname="ico_sd576i.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4172"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4174" /> + <stop + style="stop-color:#999999;stop-opacity:1" + offset="1" + id="stop4176" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4162"> + <stop + style="stop-color:#c3c3c3;stop-opacity:1" + offset="0" + id="stop4164" /> + <stop + style="stop-color:#e71f1f;stop-opacity:1" + offset="1" + id="stop4166" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4192"> + <stop + style="stop-color:#00284a;stop-opacity:1;" + offset="0" + id="stop4194" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop4196" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4192" + id="linearGradient4198" + x1="113.87164" + y1="1049.3083" + x2="137.99171" + y2="963.38702" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(4.4999999e-6,-4.6e-5)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4162" + id="linearGradient4168" + x1="35.610756" + y1="1064.6293" + x2="103.83022" + y2="996.30615" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4172" + id="linearGradient4178" + x1="89.026787" + y1="989.05988" + x2="75.258934" + y2="1062.7659" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.83" + inkscape:cx="82.139084" + inkscape:cy="55.966018" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1002.3622)"> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:url(#linearGradient4198);fill-opacity:1;stroke:url(#linearGradient4168);stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 3.4999999e-6,1002.3622 0,50 L 150,1052.3622 l 0,-50 -149.9999965000001,0 z m 5.0000000000001,5 49.9999985,0 0,40 -49.9999985,0 0,-40 z" + id="rect4139" /> + <rect + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient4178);stroke-width:1.972;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4162" + width="148.02827" + height="48.028259" + x="0.98586887" + y="1003.3481" + ry="0.6197632" /> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text4180"> + <path + d="m 67.551323,1036.6602 c 1.54,1.54 3.745,3.045 7.315,3.045 3.885,0 7.525,-2.73 7.525,-7.56 0,-4.83 -3.115,-7 -6.93,-7 -1.365,0 -2.38,0.35 -3.43,0.91 l 0.595,-6.615 8.645,0 0,-2.485 -11.165,0 -0.735,10.745 1.54,0.98 c 1.33,-0.875 2.275,-1.365 3.815,-1.365 2.87,0 4.76,1.82 4.76,4.9 0,3.115 -2.17,5.11 -4.9,5.11 -2.625,0 -4.305,-1.225 -5.635,-2.555 l -1.4,1.89 z" + style="" + id="path4196" /> + <path + d="m 90.234604,1039.2852 2.975,0 c 0.385,-8.715 1.47,-13.79 6.755,-20.545 l 0,-1.785 -14.385,0 0,2.485 11.13,0 c -4.41,6.125 -6.09,11.445 -6.475,19.845 z" + style="" + id="path4198" /> + <path + d="m 110.78289,1037.4302 c -2.835,0 -4.55,-2.345 -4.9,-6.685 1.505,-2.1 3.255,-2.94 4.655,-2.94 2.765,0 4.13,1.82 4.13,4.725 0,2.94 -1.68,4.9 -3.885,4.9 z m 6.195,-18.515 c -1.26,-1.365 -2.975,-2.38 -5.39,-2.38 -4.445,0 -8.505,3.465 -8.505,12.425 0,7.175 3.325,10.745 7.7,10.745 3.605,0 6.615,-2.905 6.615,-7.175 0,-4.585 -2.52,-6.895 -6.37,-6.895 -1.82,0 -3.815,1.085 -5.215,2.8 0.14,-7.07 2.765,-9.485 5.88,-9.485 1.4,0 2.765,0.665 3.675,1.75 l 1.61,-1.785 z" + style="" + id="path4200" /> + <path + d="m 123.10617,1018.7752 c 1.12,0 1.995,-0.77 1.995,-1.855 0,-1.12 -0.875,-1.855 -1.995,-1.855 -1.12,0 -1.995,0.735 -1.995,1.855 0,1.085 0.875,1.855 1.995,1.855 z m -1.47,20.51 2.87,0 0,-17.01 -2.87,0 0,17.01 z" + style="" + id="path4202" /> + </g> + <g + style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:35px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Semi-Bold Italic';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text4186"> + <path + d="m 8.3545344,1035.7806 c 2.0649996,2.905 4.8649996,4.165 7.9099996,4.165 4.97,0 8.33,-3.115 8.33,-7.21 0,-2.625 -1.12,-4.13 -3.325,-5.425 l -2.45,-1.47 c -1.75,-1.05 -2.905,-1.82 -2.905,-3.29 0,-1.575 1.295,-3.08 3.5,-3.08 1.89,0 3.36,1.015 4.515,2.31 l 2.415,-2.205 c -1.61,-1.995 -3.99,-3.36 -6.72,-3.36 -4.305,0 -7.595,3.045 -7.595,6.72 0,2.695 1.47,4.34 3.465,5.565 l 2.415,1.47 c 1.68,1.015 2.765,1.855 2.765,3.29 0,2.135 -1.715,3.465 -4.095,3.465 -2.24,0 -4.165,-1.19 -5.495,-3.045 l -2.7299996,2.1 z" + style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:35px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Semi-Bold Italic';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff" + id="path4191" /> + <path + d="m 27.309769,1039.5256 6.65,0 c 7.525,0 12.46,-5.25 12.46,-13.93 0,-5.81 -3.535,-8.96 -9.905,-8.96 l -4.655,0 -4.55,22.89 z m 4.375,-3.045 3.325,-16.8 1.4,0 c 3.885,0 6.16,2.1 6.16,6.16 0,6.755 -3.535,10.64 -8.68,10.64 l -2.205,0 z" + style="font-style:italic;font-variant:normal;font-weight:600;font-stretch:normal;font-size:35px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro, Semi-Bold Italic';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff" + id="path4193" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/icons/ico_timer.svg b/skins/blackhole/themes/default/icons/ico_timer.svg new file mode 100644 index 0000000..1e377b2 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_timer.svg @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Layer_1" + x="0px" + y="0px" + width="512px" + height="512px" + viewBox="0 0 512 512" + enable-background="new 0 0 512 512" + xml:space="preserve" + inkscape:version="0.91pre2 r13516" + sodipodi:docname="ico_timer.svg"><metadata + id="metadata9"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs7" /><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="852" + inkscape:window-height="480" + id="namedview5" + showgrid="false" + inkscape:zoom="0.4609375" + inkscape:cx="256" + inkscape:cy="256" + inkscape:window-x="555" + inkscape:window-y="210" + inkscape:window-maximized="0" + inkscape:current-layer="Layer_1" /><path + d="M64,80V16c0-8.844,7.156-16,16-16s16,7.156,16,16v64c0,8.844-7.156,16-16,16S64,88.844,64,80z M336,96 c8.844,0,16-7.156,16-16V16c0-8.844-7.156-16-16-16s-16,7.156-16,16v64C320,88.844,327.156,96,336,96z M512,384 c0,70.688-57.313,128-128,128s-128-57.313-128-128s57.313-128,128-128S512,313.313,512,384z M480,384c0-52.938-43.063-96-96-96 s-96,43.063-96,96s43.063,96,96,96S480,436.938,480,384z M128,192H64v64h64V192z M64,352h64v-64H64V352z M160,256h64v-64h-64V256z M160,352h64v-64h-64V352z M32,380.813V160h352v64h32V99.188C416,79.75,400.5,64,381.344,64H368v16c0,17.625-14.344,32-32,32 s-32-14.375-32-32V64H112v16c0,17.625-14.344,32-32,32S48,97.625,48,80V64H34.672C15.516,64,0,79.75,0,99.188v281.625 C0,400.188,15.516,416,34.672,416H224v-32H34.672C33.219,384,32,382.5,32,380.813z M320,256v-64h-64v64H320z M432,384h-48v-48 c0-8.844-7.156-16-16-16s-16,7.156-16,16v64c0,8.844,7.156,16,16,16h64c8.844,0,16-7.156,16-16S440.844,384,432,384z" + id="path3" + style="fill:#ececec" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_timer_active.svg b/skins/blackhole/themes/default/icons/ico_timer_active.svg new file mode 100644 index 0000000..23a4c47 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_timer_active.svg @@ -0,0 +1,63 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + width="21.621px" + height="29.046px" + viewBox="0 0 21.621 29.046" + style="enable-background:new 0 0 21.621 29.046;" + xml:space="preserve" + inkscape:version="0.91pre2 r13516" + sodipodi:docname="ico_timer_active.svg"><metadata + id="metadata39"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs37" /><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1846" + inkscape:window-height="1058" + id="namedview35" + showgrid="false" + inkscape:zoom="8.1250432" + inkscape:cx="10.8105" + inkscape:cy="14.523" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><path + d="M21.621,17.932c0,1.291-1.193,2.104-2.486,2.104h-0.01c0.965,0.166,2.111,1.331,2.111,2.462c0,1.243-1.184,2.019-2.43,2.019 h-1.072c0.844,0.243,1.977,1.375,1.977,2.462c0,1.27-1.191,2.067-2.459,2.067H6.443C2.883,29.046,0,26.159,0,22.599 c0,0,0-6.872,0-6.88c0-2.522,1.395-5.189,3.59-6.042c1.711-1.126,5.15-3.133,5.883-6.85c0-1.449,0-2.809,0-2.809 s4.807-0.52,4.807,3.999c0,5.322-3.348,6.186-0.686,6.314h3.98c1.406,0,2.621,1.37,2.621,2.779c0,1.217-1.154,2.006-2.119,2.254 h1.059C20.428,15.365,21.621,16.642,21.621,17.932z" + id="path3" + style="fill:#2ca02c" /><g + id="g5" /><g + id="g7" /><g + id="g9" /><g + id="g11" /><g + id="g13" /><g + id="g15" /><g + id="g17" /><g + id="g19" /><g + id="g21" /><g + id="g23" /><g + id="g25" /><g + id="g27" /><g + id="g29" /><g + id="g31" /><g + id="g33" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_timer_inactive.svg b/skins/blackhole/themes/default/icons/ico_timer_inactive.svg new file mode 100644 index 0000000..b826014 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_timer_inactive.svg @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 15.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Layer_1" + x="0px" + y="0px" + width="64px" + height="64px" + viewBox="0 0 64 64" + enable-background="new 0 0 64 64" + xml:space="preserve" + inkscape:version="0.91pre2 r13516" + sodipodi:docname="ico_timer_inactive.svg"><metadata + id="metadata11"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs9" /><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1846" + inkscape:window-height="1058" + id="namedview7" + showgrid="false" + inkscape:zoom="3.6875" + inkscape:cx="32" + inkscape:cy="32" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_1" /><g + id="g3" + style="fill:#800000"><path + fill="#231F20" + d="M55.71,29.883c0.089-0.149,0.206-0.31,0.336-0.451c0.024-0.03,2.384-3.062,1.586-6.226 c-0.395-1.566-1.478-2.846-3.217-3.807c0.438-1.075,1.002-3.068,0.271-5.023c-0.596-1.592-1.905-2.803-3.892-3.598 c-0.206-1.243-0.917-4.161-3.184-6.056c-1.332-1.114-2.979-1.678-4.896-1.678c-0.303,0-0.603,0.014-0.837,0.042 c-0.412-0.05-2.626-0.289-5.701-0.289c-5.128,0-12.479,0.65-18.352,3.739l-4.07,1.208H7.932H5.846v1.765V33.4h2.065l6.229,0.094 c1.83,1.133,3.523,2.616,5.167,4.058c1.792,1.573,3.647,3.201,5.789,4.461l0.179,0.073c0.018,0.006,1.86,0.615,5.648,4.752 c2.987,4.58,2.797,7.852,2.683,9.814c-0.03,0.524-0.06,1.02-0.012,1.433c0.155,1.412,0.696,2.364,1.604,2.831 c0.37,0.191,0.791,0.287,1.249,0.287c0.728,0,1.553-0.247,2.394-0.72c4.233-2.377,4.103-6.258,3.332-10.099l-0.073-0.358 c-0.368-1.809-1.135-5.575-0.302-7.411c1.184-2.607,2.543-3.143,4.219-3.143c0.654,0,1.385,0.084,2.174,0.175 c0.85,0.098,1.729,0.196,2.668,0.196c0.861,0,1.637-0.085,2.367-0.257c4.1-0.968,4.943-3.16,4.928-4.834 C58.136,32.673,56.743,30.692,55.71,29.883z" + id="path5" + style="fill:#800000" /></g></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_videotext.svg b/skins/blackhole/themes/default/icons/ico_videotext.svg new file mode 100644 index 0000000..f75a4e6 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_videotext.svg @@ -0,0 +1,154 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="50" + height="50" + id="svg4557" + version="1.1" + inkscape:version="0.91pre3 r13670" + viewBox="0 0 49.999999 50.000002" + sodipodi:docname="ico_videotext.svg"> + <defs + id="defs4559"> + <linearGradient + inkscape:collect="always" + id="linearGradient4144"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4146" /> + <stop + style="stop-color:#999999;stop-opacity:1" + offset="1" + id="stop4148" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5131"> + <stop + style="stop-color:#00284a;stop-opacity:1;" + offset="0" + id="stop5133" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop5135" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5131" + id="linearGradient5137" + x1="25.232635" + y1="1025.8571" + x2="48.598396" + y2="1002.0261" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4144" + id="linearGradient4150" + x1="47.160355" + y1="1007.4194" + x2="-9.0758705" + y2="1061.2273" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="7.9727988" + inkscape:cx="17.389319" + inkscape:cy="26.264818" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata4562"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1002.3622)"> + <rect + style="opacity:1;fill:url(#linearGradient5137);fill-opacity:1;stroke:url(#linearGradient4150);stroke-width:1.94959891;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5113" + width="48.050404" + height="48.050404" + x="0.97479796" + y="1003.337" + ry="0.60414463" /> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text5105"> + <path + d="m 11.844751,1014.0037 -0.490909,0.5091 -0.854545,-0.8545 0,-3.891 1.345454,-1.3636 0,5.6 z m -0.6,2 -4.4545454,4.4546 -0.9636363,0 0,-0.9637 4.4545457,-4.4727 1.072727,-0.018 -0.109091,1 z m -5.6545454,-2.3454 -0.8545454,0.8545 -0.5090909,-0.5091 0,-5.6 1.3636363,1.3636 0,3.891 z m -1.3636363,6.8 0.6727272,0.6727 0.6909091,-0.6727 0,-4.5819 -0.8545454,-0.8545 -0.5090909,0.5273 0,4.9091 z" + style="" + id="path4153" /> + <path + d="m 16.231257,1014.0037 -0.509091,0.5091 -0.854546,-0.8545 0,-4.5819 0.672728,-0.6727 0.690909,0.6727 0,4.9273 z m 0,6.4546 -0.690909,0.6727 -0.672728,-0.6727 0,-4.5819 0.854546,-0.8545 0.509091,0.5273 0,4.9091 z" + style="" + id="path4155" /> + <path + d="m 26.883814,1019.5128 -0.672728,0.6909 -0.672727,-0.6909 0,-3.6364 0.854545,-0.8545 0.49091,0.5273 0,3.9636 z m 0,-5.5091 -0.49091,0.5091 -0.854545,-0.8545 0,-3.6364 0.672727,-0.6909 0.672728,0.6909 0,3.9818 z m -0.927273,-4.9273 -0.672727,0.6909 -4.418182,0 -1.345455,-1.3636 5.763637,0 0.672727,0.6727 z m 0,11.3819 -0.672727,0.6727 -5.763637,0 1.345455,-1.3637 4.418182,0 0.672727,0.691 z m -5.327273,-6.8 -0.854545,0.8545 -0.509091,-0.5091 0,-5.3454 1.363636,1.3636 0,3.6364 z m 0,5.8545 -1.363636,1.3636 0,-5.3272 0.509091,-0.5273 0.854545,0.8545 0,3.6364 z" + style="" + id="path4157" /> + <path + d="m 36.688501,1008.4037 -1.345454,1.3636 -4.672728,0 -1.345454,-1.3636 7.363636,0 z m 0,12.7273 -7.363636,0 1.345454,-1.3637 4.672728,0 1.345454,1.3637 z m -6.254545,-5.2546 0,3.6364 -1.363637,1.3636 0,-5.3272 0.509091,-0.5273 0.854546,0.8545 z m -1.363637,-1.8727 0,-5.3454 1.363637,1.3636 0,3.6364 -0.854546,0.8545 -0.509091,-0.5091 z m 6.181818,0.091 0.69091,0.6727 -0.69091,0.6728 -4.745454,0 -0.672727,-0.6728 0.672727,-0.6727 4.745454,0 z" + style="" + id="path4159" /> + <path + d="m 46.493189,1014.0037 -0.49091,0.5091 -0.854545,-0.8545 0,-3.6364 0.672727,-0.6909 0.672728,0.6909 0,3.9818 z m -0.927273,-4.9273 -0.672727,0.6909 -4.418182,0 -0.672728,-0.6909 0.672728,-0.6727 4.418182,0 0.672727,0.6727 z m 0.927273,10.4364 -0.672728,0.6909 -0.672727,-0.6909 0,-3.6364 0.854545,-0.8545 0.49091,0.5273 0,3.9636 z m -6.254546,-5.8545 -0.854545,0.8545 -0.509091,-0.5091 0,-3.9818 0.672727,-0.6909 0.690909,0.6909 0,3.6364 z m -1.363636,5.8545 0.672727,0.6909 0.690909,-0.6909 0,-3.6364 -0.854545,-0.8545 -0.509091,0.5273 0,3.9636 z m 1.6,1.6182 -0.672728,-0.6727 0.672728,-0.691 4.418182,0 0.672727,0.691 -0.672727,0.6727 -4.418182,0 z" + style="" + id="path4161" /> + </g> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:23.71295929px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text5109"> + <path + d="m 12.277513,1029.2725 -1.595236,1.6168 -5.8204532,0 -1.6167927,-1.6168 9.0324819,0 z m -3.7078447,14.2924 -0.8191749,0.7976 -0.7976177,-0.7976 0,-4.6348 1.01319,-1.0132 0.6036026,0.6036 0,5.0444 z m 0,-6.8336 -0.6036026,0.582 -1.01319,-0.9916 0,-4.333 0.7976177,-0.7976 0.8191749,0.7976 0,4.7426 z" + style="" + id="path4164" /> + <path + d="m 23.90242,1029.2725 -1.595235,1.6168 -5.54021,0 -1.595235,-1.6168 8.73068,0 z m 0,15.09 -8.73068,0 1.595235,-1.6167 5.54021,0 1.595235,1.6167 z m -7.415689,-6.23 0,4.3115 -1.616792,1.6167 0,-6.3162 0.603602,-0.6252 1.01319,1.0132 z m -1.616792,-2.2204 0,-6.3378 1.616792,1.6168 0,4.3114 -1.01319,1.0132 -0.603602,-0.6036 z m 7.32946,0.1078 0.819175,0.7976 -0.819175,0.7976 -5.626439,0 -0.797617,-0.7976 0.797617,-0.7976 5.626439,0 z" + style="" + id="path4166" /> + <path + d="m 31.323667,1036.5157 0,-1.7677 3.2767,-5.4755 0.926961,0 0,1.5737 -3.384486,5.6695 -0.819175,0 z m -1.422778,0 -3.406043,-5.6695 0,-1.5737 0.926961,0 3.2767,5.4755 0,1.7677 -0.797618,0 z m 0.797618,0.6036 0,1.7677 -3.2767,5.4755 -0.926961,0 0,-1.5736 3.406043,-5.6696 0.797618,0 z m 1.422778,0 3.406043,5.6696 0,1.5736 -0.926961,0 -3.2767,-5.4755 0,-1.7677 0.797618,0 z" + style="" + id="path4168" /> + <path + d="m 47.152234,1029.2725 -1.595235,1.6168 -5.820454,0 -1.616792,-1.6168 9.032481,0 z m -3.707844,14.2924 -0.819175,0.7976 -0.797618,-0.7976 0,-4.6348 1.01319,-1.0132 0.603603,0.6036 0,5.0444 z m 0,-6.8336 -0.603603,0.582 -1.01319,-0.9916 0,-4.333 0.797618,-0.7976 0.819175,0.7976 0,4.7426 z" + style="" + id="path4170" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/icons/ico_volume_full.svg b/skins/blackhole/themes/default/icons/ico_volume_full.svg new file mode 100644 index 0000000..3dbfe7a --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_volume_full.svg @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + width="150" + height="150" + viewBox="0 0 150 150" + enable-background="new 0 0 128 128" + xml:space="preserve" + inkscape:version="0.91pre2 r13516" + sodipodi:docname="ico_volume_full.svg"><metadata + id="metadata13"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs11" /><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1846" + inkscape:window-height="1058" + id="namedview9" + showgrid="false" + inkscape:zoom="1.84375" + inkscape:cx="64" + inkscape:cy="64" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><path + d="m 55.484746,35.10678 -21.9,16.4 -20,0 c -3.3,0 -6.0000002,2.7 -6.0000002,6 l 0,41.8 c 0,3.3 2.7000002,6 6.0000002,6 l 20,0 21.9,16.4 c 4,3 9.6,0.2 9.6,-4.8 l 0,-77 c 0,-5 -5.7,-7.8 -9.6,-4.8 z" + id="path3" + inkscape:connector-curvature="0" + style="fill:#ffffff" /><path + d="m 84.884746,44.90678 c -2.7,-2.7 -7.2,-2.7 -9.9,0 -2.7,2.7 -2.7,7.2 0,9.9 13,13 13,34.1 0,47.1 -2.7,2.7 -2.7,7.2 0,9.9 1.4,1.4 3.2,2 4.9,2 1.7,0 3.6,-0.7 4.9,-2.1 18.600004,-18.3 18.600004,-48.3 0.1,-66.8 z" + id="path5" + inkscape:connector-curvature="0" + style="fill:#ffffff" /><path + d="m 92.684746,29.20678 c -2.7,2.7 -2.7,7.2 0,9.9 10.500004,10.5 16.300004,24.4 16.300004,39.3 0,14.9 -5.8,28.8 -16.300004,39.3 -2.7,2.7 -2.7,7.2 0,9.9 1.4,1.4 3.2,2.1 4.9,2.1 1.8,0 3.600004,-0.7 4.900004,-2 13.1,-13.1 20.4,-30.6 20.4,-49.2 0,-18.6 -7.2,-36 -20.4,-49.2 -2.600004,-2.8 -7.000004,-2.8 -9.800004,-0.1 z" + id="path7" + inkscape:connector-curvature="0" + style="fill:#ffffff" /><path + inkscape:connector-curvature="0" + id="path4142" + d="m 116.58324,17.126202 c -2.74544,3.22855 -2.74544,8.609466 0,11.838016 10.67672,12.555472 16.57435,29.176524 16.57435,46.993336 0,17.816806 -5.89763,34.437866 -16.57435,46.993336 -2.74544,3.22855 -2.74544,8.60947 0,11.83802 1.42357,1.67406 3.25386,2.51109 4.98247,2.51109 1.8303,0 3.66059,-0.83703 4.98247,-2.39152 13.32049,-15.66444 20.74335,-36.59023 20.74335,-58.83135 0,-22.241121 -7.32118,-43.047331 -20.74335,-58.831352 -2.64376,-3.348126 -7.11781,-3.348126 -9.96494,-0.119576 z" + style="fill:#ffffff" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_volume_low.svg b/skins/blackhole/themes/default/icons/ico_volume_low.svg new file mode 100644 index 0000000..6b4259d --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_volume_low.svg @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + width="150" + height="150" + viewBox="0 0 150 150" + enable-background="new 0 0 128 128" + xml:space="preserve" + inkscape:version="0.91pre2 r13516" + sodipodi:docname="ico_volume_low.svg"><metadata + id="metadata13"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs11" /><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1846" + inkscape:window-height="1058" + id="namedview9" + showgrid="false" + inkscape:zoom="1.84375" + inkscape:cx="64" + inkscape:cy="64" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><path + d="m 55.484746,35.10678 -21.9,16.4 -20,0 c -3.3,0 -6.0000002,2.7 -6.0000002,6 l 0,41.8 c 0,3.3 2.7000002,6 6.0000002,6 l 20,0 21.9,16.4 c 4,3 9.6,0.2 9.6,-4.8 l 0,-77 c 0,-5 -5.7,-7.8 -9.6,-4.8 z" + id="path3" + inkscape:connector-curvature="0" + style="fill:#ffffff" /><path + d="m 84.884746,44.90678 c -2.7,-2.7 -7.2,-2.7 -9.9,0 -2.7,2.7 -2.7,7.2 0,9.9 13,13 13,34.1 0,47.1 -2.7,2.7 -2.7,7.2 0,9.9 1.4,1.4 3.2,2 4.9,2 1.7,0 3.6,-0.7 4.9,-2.1 18.600004,-18.3 18.600004,-48.3 0.1,-66.8 z" + id="path5" + inkscape:connector-curvature="0" + style="fill:#ffffff" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_volume_medium.svg b/skins/blackhole/themes/default/icons/ico_volume_medium.svg new file mode 100644 index 0000000..24042fe --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_volume_medium.svg @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + width="150" + height="150" + viewBox="0 0 150 150" + enable-background="new 0 0 128 128" + xml:space="preserve" + inkscape:version="0.91pre2 r13516" + sodipodi:docname="ico_volume_medium.svg"><metadata + id="metadata13"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs11" /><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1846" + inkscape:window-height="1058" + id="namedview9" + showgrid="false" + inkscape:zoom="1.84375" + inkscape:cx="64" + inkscape:cy="64" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><path + d="m 55.484746,35.10678 -21.9,16.4 -20,0 c -3.3,0 -6.0000002,2.7 -6.0000002,6 l 0,41.8 c 0,3.3 2.7000002,6 6.0000002,6 l 20,0 21.9,16.4 c 4,3 9.6,0.2 9.6,-4.8 l 0,-77 c 0,-5 -5.7,-7.8 -9.6,-4.8 z" + id="path3" + inkscape:connector-curvature="0" + style="fill:#ffffff" /><path + d="m 84.884746,44.90678 c -2.7,-2.7 -7.2,-2.7 -9.9,0 -2.7,2.7 -2.7,7.2 0,9.9 13,13 13,34.1 0,47.1 -2.7,2.7 -2.7,7.2 0,9.9 1.4,1.4 3.2,2 4.9,2 1.7,0 3.6,-0.7 4.9,-2.1 18.600004,-18.3 18.600004,-48.3 0.1,-66.8 z" + id="path5" + inkscape:connector-curvature="0" + style="fill:#ffffff" /><path + d="m 92.684746,29.20678 c -2.7,2.7 -2.7,7.2 0,9.9 10.500004,10.5 16.300004,24.4 16.300004,39.3 0,14.9 -5.8,28.8 -16.300004,39.3 -2.7,2.7 -2.7,7.2 0,9.9 1.4,1.4 3.2,2.1 4.9,2.1 1.8,0 3.600004,-0.7 4.900004,-2 13.1,-13.1 20.4,-30.6 20.4,-49.2 0,-18.6 -7.2,-36 -20.4,-49.2 -2.600004,-2.8 -7.000004,-2.8 -9.800004,-0.1 z" + id="path7" + inkscape:connector-curvature="0" + style="fill:#ffffff" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_volume_mute.svg b/skins/blackhole/themes/default/icons/ico_volume_mute.svg new file mode 100644 index 0000000..a2b915f --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_volume_mute.svg @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.1" + id="Capa_1" + x="0px" + y="0px" + width="150" + height="150" + viewBox="0 0 150 150" + enable-background="new 0 0 128 128" + xml:space="preserve" + inkscape:version="0.91pre2 r13516" + sodipodi:docname="ico_volume_mute.svg"><metadata + id="metadata13"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + id="defs11" /><sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1846" + inkscape:window-height="1058" + id="namedview9" + showgrid="false" + inkscape:zoom="1.84375" + inkscape:cx="64" + inkscape:cy="64" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="Capa_1" /><path + d="m 55.484746,35.10678 -21.9,16.4 -20,0 c -3.3,0 -6.0000002,2.7 -6.0000002,6 l 0,41.8 c 0,3.3 2.7000002,6 6.0000002,6 l 20,0 21.9,16.4 c 4,3 9.6,0.2 9.6,-4.8 l 0,-77 c 0,-5 -5.7,-7.8 -9.6,-4.8 z" + id="path3" + inkscape:connector-curvature="0" + style="fill:#ffffff" /></svg>
\ No newline at end of file diff --git a/skins/blackhole/themes/default/icons/ico_widescreen.svg b/skins/blackhole/themes/default/icons/ico_widescreen.svg new file mode 100644 index 0000000..ed7d0c8 --- /dev/null +++ b/skins/blackhole/themes/default/icons/ico_widescreen.svg @@ -0,0 +1,137 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="50" + id="svg4226" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 50.000001" + sodipodi:docname="ico_widescreen.svg"> + <defs + id="defs4228"> + <linearGradient + inkscape:collect="always" + id="linearGradient4152"> + <stop + style="stop-color:#999999;stop-opacity:1" + offset="0" + id="stop4154" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop4156" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4793"> + <stop + style="stop-color:#00284a;stop-opacity:1;" + offset="0" + id="stop4795" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop4797" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4793" + id="linearGradient4799" + x1="74.292336" + y1="1044.8075" + x2="136.43808" + y2="1007.2992" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.98704728,0,0,0.95610511,0.97145448,45.091876)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="linearGradient4158" + x1="4.2645707" + y1="1057.3361" + x2="159.72176" + y2="984.17682" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.98704728,0,0,0.95610511,0.97145448,45.091876)" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.5387454" + inkscape:cx="70.5" + inkscape:cy="24.5" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" + showguides="true" + inkscape:guide-bbox="true" /> + <metadata + id="metadata4231"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1002.3622)"> + <path + style="fill:url(#linearGradient4799);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4158);stroke-width:1.94290602;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 0.97145301,1003.4554 c 48.96784399,5.0284 98.28055599,5.5469 148.05709699,0 l 0,47.8053 c -49.138948,-5.9953 -98.51387,-5.3615 -148.05709699,0 z" + id="path4774" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text4801" + transform="translate(-0.3942576,1.101626)"> + <path + d="m 56.21701,1036.2286 -10.822753,0 0,-2.041 4.162597,0 0,-13.4009 -4.162597,0 0,-1.8261 q 0.845947,0 1.812744,-0.1343 0.966797,-0.1477 1.463623,-0.4163 0.617676,-0.3357 0.966797,-0.8459 0.362548,-0.5237 0.416259,-1.3965 l 2.081299,0 0,18.02 4.082031,0 0,2.041 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start" + id="path4146" + inkscape:connector-curvature="0" /> + <path + d="m 75.163544,1029.743 q 0,3.0481 -2.01416,4.9817 -2.000733,1.9202 -4.914551,1.9202 -1.477051,0 -2.685547,-0.4565 -1.208496,-0.4566 -2.13501,-1.3562 -1.154785,-1.1145 -1.785889,-2.9541 -0.617675,-1.8396 -0.617675,-4.4312 0,-2.6587 0.563965,-4.7131 0.577392,-2.0545 1.826171,-3.6524 1.181641,-1.5173 3.048096,-2.3633 1.866455,-0.8593 4.350586,-0.8593 0.792236,0 1.329346,0.067 0.537109,0.067 1.087646,0.2417 l 0,2.5647 -0.134277,0 q -0.375977,-0.2014 -1.141358,-0.376 -0.751953,-0.188 -1.544189,-0.188 -2.886963,0 -4.605713,1.8128 -1.71875,1.7993 -2.000732,4.8742 1.127929,-0.6848 2.215576,-1.0339 1.101074,-0.3625 2.537842,-0.3625 1.275634,0 2.242431,0.2417 0.980225,0.2282 2.000733,0.9399 1.18164,0.8191 1.772461,2.0679 0.604248,1.2488 0.604248,3.0346 z m -2.72583,0.1075 q 0,-1.2488 -0.375977,-2.0679 -0.362549,-0.8191 -1.208496,-1.4233 -0.617676,-0.4297 -1.369629,-0.564 -0.751953,-0.1343 -1.571045,-0.1343 -1.141357,0 -2.121582,0.2686 -0.980225,0.2685 -2.01416,0.8325 -0.02686,0.2954 -0.04028,0.5774 -0.01343,0.2685 -0.01343,0.6848 0,2.1216 0.429688,3.3569 0.443115,1.2219 1.208496,1.9336 0.617675,0.5908 1.329345,0.8728 0.725098,0.2686 1.571045,0.2686 1.947022,0 3.061524,-1.1817 1.114502,-1.195 1.114502,-3.424 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start" + id="path4148" + inkscape:connector-curvature="0" /> + <path + d="m 84.536102,1025.0568 -3.209228,0 0,-3.8269 3.209228,0 0,3.8269 z m 0,11.1718 -3.209228,0 0,-3.8269 3.209228,0 0,3.8269 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start" + id="path4150" + inkscape:connector-curvature="0" /> + <path + d="m 104.86569,1025.0299 q 0,2.6184 -0.60425,4.7534 -0.59082,2.135 -1.79931,3.6389 -1.22193,1.5308 -3.061526,2.3633 -1.839599,0.8325 -4.32373,0.8325 -0.698242,0 -1.315918,-0.081 -0.617676,-0.067 -1.101074,-0.2283 l 0,-2.5647 0.134277,0 q 0.389404,0.2014 1.101074,0.3894 0.71167,0.1746 1.584473,0.1746 2.967529,0 4.645994,-1.7725 1.6919,-1.7859 1.96045,-4.9145 -1.24878,0.7519 -2.349852,1.0742 -1.101075,0.3222 -2.403565,0.3222 -1.235351,0 -2.242431,-0.2417 -0.993653,-0.2417 -2.000733,-0.9399 -1.181641,-0.8191 -1.785889,-2.0813 -0.59082,-1.2622 -0.59082,-3.0212 0,-3.0616 2.01416,-4.9817 2.01416,-1.9202 4.914551,-1.9202 1.450195,0 2.685549,0.4566 1.23535,0.4431 2.16186,1.3427 1.14136,1.1145 1.75904,2.8736 0.61767,1.7456 0.61767,4.5251 z m -2.7124,-0.5774 q 0,-2.0813 -0.42969,-3.3435 -0.42969,-1.2622 -1.18164,-1.9604 -0.631102,-0.6043 -1.3562,-0.8594 -0.725097,-0.2686 -1.571044,-0.2686 -1.933594,0 -3.061524,1.2085 -1.114502,1.2085 -1.114502,3.3972 0,1.2757 0.362549,2.0813 0.362549,0.8057 1.221924,1.41 0.604248,0.4162 1.329346,0.5639 0.725097,0.1343 1.611328,0.1343 1.047363,0 2.121583,-0.282 1.07422,-0.282 2.01416,-0.8191 0.0134,-0.282 0.0268,-0.5505 0.0269,-0.282 0.0269,-0.7117 z" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.5px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start" + id="path4152" + inkscape:connector-curvature="0" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/menuicons/customicons/Applikationen.png b/skins/blackhole/themes/default/menuicons/customicons/Applikationen.png Binary files differnew file mode 100644 index 0000000..3c3b616 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/Applikationen.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/Audio.png b/skins/blackhole/themes/default/menuicons/customicons/Audio.png Binary files differnew file mode 100644 index 0000000..ff387fe --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/Audio.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/Aufnahmen-Liste aktualisieren.png b/skins/blackhole/themes/default/menuicons/customicons/Aufnahmen-Liste aktualisieren.png Binary files differnew file mode 100644 index 0000000..3cdddc9 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/Aufnahmen-Liste aktualisieren.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/Dienstprogramme.png b/skins/blackhole/themes/default/menuicons/customicons/Dienstprogramme.png Binary files differnew file mode 100644 index 0000000..793aba6 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/Dienstprogramme.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/FireFox.png b/skins/blackhole/themes/default/menuicons/customicons/FireFox.png Binary files differnew file mode 100644 index 0000000..192fadc --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/FireFox.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/Info.png b/skins/blackhole/themes/default/menuicons/customicons/Info.png Binary files differnew file mode 100644 index 0000000..6737431 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/Info.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/Internet.png b/skins/blackhole/themes/default/menuicons/customicons/Internet.png Binary files differnew file mode 100644 index 0000000..f3db150 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/Internet.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/Medien.png b/skins/blackhole/themes/default/menuicons/customicons/Medien.png Binary files differnew file mode 100644 index 0000000..0ce2360 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/Medien.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/Rechner neu starten.png b/skins/blackhole/themes/default/menuicons/customicons/Rechner neu starten.png Binary files differnew file mode 100644 index 0000000..5783ccf --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/Rechner neu starten.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/Remote wakeup.png b/skins/blackhole/themes/default/menuicons/customicons/Remote wakeup.png Binary files differnew file mode 100644 index 0000000..1cd2f6e --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/Remote wakeup.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/Spiele.png b/skins/blackhole/themes/default/menuicons/customicons/Spiele.png Binary files differnew file mode 100644 index 0000000..8e07161 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/Spiele.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/System herunterfahren.png b/skins/blackhole/themes/default/menuicons/customicons/System herunterfahren.png Binary files differnew file mode 100644 index 0000000..e0234df --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/System herunterfahren.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/System.png b/skins/blackhole/themes/default/menuicons/customicons/System.png Binary files differnew file mode 100644 index 0000000..81d100e --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/System.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/Tools.png b/skins/blackhole/themes/default/menuicons/customicons/Tools.png Binary files differnew file mode 100644 index 0000000..cf328ef --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/Tools.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/Tunderbird.png b/skins/blackhole/themes/default/menuicons/customicons/Tunderbird.png Binary files differnew file mode 100644 index 0000000..5ae27e0 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/Tunderbird.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/USB Massenspeicher sicher entfernen.png b/skins/blackhole/themes/default/menuicons/customicons/USB Massenspeicher sicher entfernen.png Binary files differnew file mode 100644 index 0000000..cd7b81c --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/USB Massenspeicher sicher entfernen.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/VDR neu starten.png b/skins/blackhole/themes/default/menuicons/customicons/VDR neu starten.png Binary files differnew file mode 100644 index 0000000..14904ca --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/VDR neu starten.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/Video.png b/skins/blackhole/themes/default/menuicons/customicons/Video.png Binary files differnew file mode 100644 index 0000000..490ca4b --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/Video.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/Web.png b/skins/blackhole/themes/default/menuicons/customicons/Web.png Binary files differnew file mode 100644 index 0000000..20260e3 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/Web.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/XBMC.png b/skins/blackhole/themes/default/menuicons/customicons/XBMC.png Binary files differnew file mode 100644 index 0000000..c7c4c04 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/XBMC.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/Xterm.png b/skins/blackhole/themes/default/menuicons/customicons/Xterm.png Binary files differnew file mode 100644 index 0000000..fa75282 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/Xterm.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/audiovideo.png b/skins/blackhole/themes/default/menuicons/customicons/audiovideo.png Binary files differnew file mode 100644 index 0000000..726538d --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/audiovideo.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/markad_status.png b/skins/blackhole/themes/default/menuicons/customicons/markad_status.png Binary files differnew file mode 100644 index 0000000..4fdc7a4 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/markad_status.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/schneiden_abbrechen.png b/skins/blackhole/themes/default/menuicons/customicons/schneiden_abbrechen.png Binary files differnew file mode 100644 index 0000000..b2e0bd3 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/schneiden_abbrechen.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/tux.png b/skins/blackhole/themes/default/menuicons/customicons/tux.png Binary files differnew file mode 100644 index 0000000..c5b4742 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/tux.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/usb.png b/skins/blackhole/themes/default/menuicons/customicons/usb.png Binary files differnew file mode 100644 index 0000000..c4db1d4 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/usb.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/vdrlogo.png b/skins/blackhole/themes/default/menuicons/customicons/vdrlogo.png Binary files differnew file mode 100644 index 0000000..037a191 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/vdrlogo.png diff --git a/skins/blackhole/themes/default/menuicons/customicons/yaicon_blue.png b/skins/blackhole/themes/default/menuicons/customicons/yaicon_blue.png Binary files differnew file mode 100644 index 0000000..2c49273 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/customicons/yaicon_blue.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/admin.png b/skins/blackhole/themes/default/menuicons/pluginicons/admin.png Binary files differnew file mode 100644 index 0000000..cf328ef --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/admin.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/arghdirector.png b/skins/blackhole/themes/default/menuicons/pluginicons/arghdirector.png Binary files differnew file mode 100644 index 0000000..bbd221a --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/arghdirector.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/autostart.png b/skins/blackhole/themes/default/menuicons/pluginicons/autostart.png Binary files differnew file mode 100644 index 0000000..6fdb1bb --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/autostart.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/avahi4vdr.png b/skins/blackhole/themes/default/menuicons/pluginicons/avahi4vdr.png Binary files differnew file mode 100644 index 0000000..044e71d --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/avahi4vdr.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/avards.png b/skins/blackhole/themes/default/menuicons/pluginicons/avards.png Binary files differnew file mode 100644 index 0000000..cf8d037 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/avards.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/block.png b/skins/blackhole/themes/default/menuicons/pluginicons/block.png Binary files differnew file mode 100644 index 0000000..86127c2 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/block.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/burn.png b/skins/blackhole/themes/default/menuicons/pluginicons/burn.png Binary files differnew file mode 100644 index 0000000..305d7ff --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/burn.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/cdplayer.png b/skins/blackhole/themes/default/menuicons/pluginicons/cdplayer.png Binary files differnew file mode 100644 index 0000000..89a6c19 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/cdplayer.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/chanman.png b/skins/blackhole/themes/default/menuicons/pluginicons/chanman.png Binary files differnew file mode 100644 index 0000000..a73e83c --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/chanman.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/check.png b/skins/blackhole/themes/default/menuicons/pluginicons/check.png Binary files differnew file mode 100644 index 0000000..d487a24 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/check.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/conflictcheckonly.png b/skins/blackhole/themes/default/menuicons/pluginicons/conflictcheckonly.png Binary files differnew file mode 100644 index 0000000..7f832bd --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/conflictcheckonly.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/ddci.png b/skins/blackhole/themes/default/menuicons/pluginicons/ddci.png Binary files differnew file mode 100644 index 0000000..4ad459c --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/ddci.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/devstatus.png b/skins/blackhole/themes/default/menuicons/pluginicons/devstatus.png Binary files differnew file mode 100644 index 0000000..96c0ec1 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/devstatus.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/dummydevice.png b/skins/blackhole/themes/default/menuicons/pluginicons/dummydevice.png Binary files differnew file mode 100644 index 0000000..11fd707 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/dummydevice.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/duplicates.png b/skins/blackhole/themes/default/menuicons/pluginicons/duplicates.png Binary files differnew file mode 100644 index 0000000..dc1be57 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/duplicates.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/dvbapi.png b/skins/blackhole/themes/default/menuicons/pluginicons/dvbapi.png Binary files differnew file mode 100644 index 0000000..b966461 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/dvbapi.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/dvbhddevice.png b/skins/blackhole/themes/default/menuicons/pluginicons/dvbhddevice.png Binary files differnew file mode 100644 index 0000000..b874297 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/dvbhddevice.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/dvbsddevice.png b/skins/blackhole/themes/default/menuicons/pluginicons/dvbsddevice.png Binary files differnew file mode 100644 index 0000000..106184e --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/dvbsddevice.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/dynamite.png b/skins/blackhole/themes/default/menuicons/pluginicons/dynamite.png Binary files differnew file mode 100644 index 0000000..28ea35a --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/dynamite.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/eepg.png b/skins/blackhole/themes/default/menuicons/pluginicons/eepg.png Binary files differnew file mode 100644 index 0000000..3938b96 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/eepg.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/epg2vdr.png b/skins/blackhole/themes/default/menuicons/pluginicons/epg2vdr.png Binary files differnew file mode 100644 index 0000000..ac8757e --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/epg2vdr.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/epgsearch.png b/skins/blackhole/themes/default/menuicons/pluginicons/epgsearch.png Binary files differnew file mode 100644 index 0000000..5eab415 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/epgsearch.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/epgsearchonly.png b/skins/blackhole/themes/default/menuicons/pluginicons/epgsearchonly.png Binary files differnew file mode 100644 index 0000000..b5186e7 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/epgsearchonly.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/epgsync.png b/skins/blackhole/themes/default/menuicons/pluginicons/epgsync.png Binary files differnew file mode 100644 index 0000000..5c14009 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/epgsync.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/externalplayer.png b/skins/blackhole/themes/default/menuicons/pluginicons/externalplayer.png Binary files differnew file mode 100644 index 0000000..2bd67db --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/externalplayer.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/extrecmenu.png b/skins/blackhole/themes/default/menuicons/pluginicons/extrecmenu.png Binary files differnew file mode 100644 index 0000000..6f613f1 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/extrecmenu.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/favorites.png b/skins/blackhole/themes/default/menuicons/pluginicons/favorites.png Binary files differnew file mode 100644 index 0000000..409c852 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/favorites.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/femon.png b/skins/blackhole/themes/default/menuicons/pluginicons/femon.png Binary files differnew file mode 100644 index 0000000..e87b711 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/femon.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/fepg.png b/skins/blackhole/themes/default/menuicons/pluginicons/fepg.png Binary files differnew file mode 100644 index 0000000..65023ed --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/fepg.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/filebrowser.png b/skins/blackhole/themes/default/menuicons/pluginicons/filebrowser.png Binary files differnew file mode 100644 index 0000000..d3f90e0 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/filebrowser.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/fritzbox.png b/skins/blackhole/themes/default/menuicons/pluginicons/fritzbox.png Binary files differnew file mode 100644 index 0000000..7bfc229 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/fritzbox.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/graphlcd.png b/skins/blackhole/themes/default/menuicons/pluginicons/graphlcd.png Binary files differnew file mode 100644 index 0000000..39ffd35 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/graphlcd.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/graphtft.png b/skins/blackhole/themes/default/menuicons/pluginicons/graphtft.png Binary files differnew file mode 100644 index 0000000..39ffd35 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/graphtft.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/image.png b/skins/blackhole/themes/default/menuicons/pluginicons/image.png Binary files differnew file mode 100644 index 0000000..33644e0 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/image.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/imonlcd.png b/skins/blackhole/themes/default/menuicons/pluginicons/imonlcd.png Binary files differnew file mode 100644 index 0000000..3d34fc4 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/imonlcd.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/iptv.png b/skins/blackhole/themes/default/menuicons/pluginicons/iptv.png Binary files differnew file mode 100644 index 0000000..4494ddc --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/iptv.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/lcdproc.png b/skins/blackhole/themes/default/menuicons/pluginicons/lcdproc.png Binary files differnew file mode 100644 index 0000000..3d34fc4 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/lcdproc.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/mailbox.png b/skins/blackhole/themes/default/menuicons/pluginicons/mailbox.png Binary files differnew file mode 100644 index 0000000..1bc76e8 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/mailbox.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/makemkv.png b/skins/blackhole/themes/default/menuicons/pluginicons/makemkv.png Binary files differnew file mode 100644 index 0000000..41cddf1 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/makemkv.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/markad.png b/skins/blackhole/themes/default/menuicons/pluginicons/markad.png Binary files differnew file mode 100644 index 0000000..b3defaf --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/markad.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/mlist.png b/skins/blackhole/themes/default/menuicons/pluginicons/mlist.png Binary files differnew file mode 100644 index 0000000..19c367f --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/mlist.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/music.png b/skins/blackhole/themes/default/menuicons/pluginicons/music.png Binary files differnew file mode 100644 index 0000000..abb012e --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/music.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/noepg.png b/skins/blackhole/themes/default/menuicons/pluginicons/noepg.png Binary files differnew file mode 100644 index 0000000..eb9410d --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/noepg.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/nordlichtsepg.png b/skins/blackhole/themes/default/menuicons/pluginicons/nordlichtsepg.png Binary files differnew file mode 100644 index 0000000..3ee3fa2 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/nordlichtsepg.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/osdteletext.png b/skins/blackhole/themes/default/menuicons/pluginicons/osdteletext.png Binary files differnew file mode 100644 index 0000000..664e770 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/osdteletext.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/peer.png b/skins/blackhole/themes/default/menuicons/pluginicons/peer.png Binary files differnew file mode 100644 index 0000000..998d568 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/peer.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/play.png b/skins/blackhole/themes/default/menuicons/pluginicons/play.png Binary files differnew file mode 100644 index 0000000..2848fc6 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/play.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/pvrinput.png b/skins/blackhole/themes/default/menuicons/pluginicons/pvrinput.png Binary files differnew file mode 100644 index 0000000..724f698 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/pvrinput.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/quickepgsearch.png b/skins/blackhole/themes/default/menuicons/pluginicons/quickepgsearch.png Binary files differnew file mode 100644 index 0000000..76a31f4 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/quickepgsearch.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/radio.png b/skins/blackhole/themes/default/menuicons/pluginicons/radio.png Binary files differnew file mode 100644 index 0000000..193b7d4 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/radio.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/remote.png b/skins/blackhole/themes/default/menuicons/pluginicons/remote.png Binary files differnew file mode 100644 index 0000000..7f46b1b --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/remote.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/remotetimers.png b/skins/blackhole/themes/default/menuicons/pluginicons/remotetimers.png Binary files differnew file mode 100644 index 0000000..fae3b79 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/remotetimers.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/rssreader.png b/skins/blackhole/themes/default/menuicons/pluginicons/rssreader.png Binary files differnew file mode 100644 index 0000000..db538f0 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/rssreader.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/sc.png b/skins/blackhole/themes/default/menuicons/pluginicons/sc.png Binary files differnew file mode 100644 index 0000000..2472d6c --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/sc.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/scraper2vdr.png b/skins/blackhole/themes/default/menuicons/pluginicons/scraper2vdr.png Binary files differnew file mode 100644 index 0000000..a106cb5 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/scraper2vdr.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/screenshot.png b/skins/blackhole/themes/default/menuicons/pluginicons/screenshot.png Binary files differnew file mode 100644 index 0000000..be9b4d5 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/screenshot.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/seduatmo.png b/skins/blackhole/themes/default/menuicons/pluginicons/seduatmo.png Binary files differnew file mode 100644 index 0000000..4b5292f --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/seduatmo.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/skyselectfeeds.png b/skins/blackhole/themes/default/menuicons/pluginicons/skyselectfeeds.png Binary files differnew file mode 100644 index 0000000..d81a024 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/skyselectfeeds.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/sleeptimer.png b/skins/blackhole/themes/default/menuicons/pluginicons/sleeptimer.png Binary files differnew file mode 100644 index 0000000..cd4956f --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/sleeptimer.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/softhddevice.png b/skins/blackhole/themes/default/menuicons/pluginicons/softhddevice.png Binary files differnew file mode 100644 index 0000000..df13f2c --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/softhddevice.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/streamdev-server.png b/skins/blackhole/themes/default/menuicons/pluginicons/streamdev-server.png Binary files differnew file mode 100644 index 0000000..e89ed8b --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/streamdev-server.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/systeminfo.png b/skins/blackhole/themes/default/menuicons/pluginicons/systeminfo.png Binary files differnew file mode 100644 index 0000000..b14763f --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/systeminfo.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/targavfd.png b/skins/blackhole/themes/default/menuicons/pluginicons/targavfd.png Binary files differnew file mode 100644 index 0000000..e91b111 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/targavfd.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/trayopenng.png b/skins/blackhole/themes/default/menuicons/pluginicons/trayopenng.png Binary files differnew file mode 100644 index 0000000..6ebd17d --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/trayopenng.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/tvguide.png b/skins/blackhole/themes/default/menuicons/pluginicons/tvguide.png Binary files differnew file mode 100644 index 0000000..968a37c --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/tvguide.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/tvm2vdr.png b/skins/blackhole/themes/default/menuicons/pluginicons/tvm2vdr.png Binary files differnew file mode 100644 index 0000000..47f9a91 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/tvm2vdr.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/tvscraper.png b/skins/blackhole/themes/default/menuicons/pluginicons/tvscraper.png Binary files differnew file mode 100644 index 0000000..a106cb5 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/tvscraper.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/undelete.png b/skins/blackhole/themes/default/menuicons/pluginicons/undelete.png Binary files differnew file mode 100644 index 0000000..a53d50a --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/undelete.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/weatherng.png b/skins/blackhole/themes/default/menuicons/pluginicons/weatherng.png Binary files differnew file mode 100644 index 0000000..a88f11d --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/weatherng.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/xmltv2vdr.png b/skins/blackhole/themes/default/menuicons/pluginicons/xmltv2vdr.png Binary files differnew file mode 100644 index 0000000..ea73c74 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/xmltv2vdr.png diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/yaepghg.png b/skins/blackhole/themes/default/menuicons/pluginicons/yaepghg.png Binary files differnew file mode 100644 index 0000000..53ce443 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/pluginicons/yaepghg.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/CAM.png b/skins/blackhole/themes/default/menuicons/standardicons/CAM.png Binary files differnew file mode 100644 index 0000000..a394877 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/CAM.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Channels.png b/skins/blackhole/themes/default/menuicons/standardicons/Channels.png Binary files differnew file mode 100644 index 0000000..ba2ba78 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/Channels.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Commands.png b/skins/blackhole/themes/default/menuicons/standardicons/Commands.png Binary files differnew file mode 100644 index 0000000..c6a83ef --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/Commands.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/DVB.png b/skins/blackhole/themes/default/menuicons/standardicons/DVB.png Binary files differnew file mode 100644 index 0000000..3789145 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/DVB.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/EPG.png b/skins/blackhole/themes/default/menuicons/standardicons/EPG.png Binary files differnew file mode 100644 index 0000000..e868b90 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/EPG.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/LNB.png b/skins/blackhole/themes/default/menuicons/standardicons/LNB.png Binary files differnew file mode 100644 index 0000000..896dd99 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/LNB.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Miscellaneous.png b/skins/blackhole/themes/default/menuicons/standardicons/Miscellaneous.png Binary files differnew file mode 100644 index 0000000..2a41c4d --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/Miscellaneous.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/OSD.png b/skins/blackhole/themes/default/menuicons/standardicons/OSD.png Binary files differnew file mode 100644 index 0000000..8f571c6 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/OSD.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Plugins.png b/skins/blackhole/themes/default/menuicons/standardicons/Plugins.png Binary files differnew file mode 100644 index 0000000..3fcba70 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/Plugins.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Recording.png b/skins/blackhole/themes/default/menuicons/standardicons/Recording.png Binary files differnew file mode 100644 index 0000000..741b1af --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/Recording.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Recordings.png b/skins/blackhole/themes/default/menuicons/standardicons/Recordings.png Binary files differnew file mode 100644 index 0000000..79aeeb7 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/Recordings.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Replay.png b/skins/blackhole/themes/default/menuicons/standardicons/Replay.png Binary files differnew file mode 100644 index 0000000..621596c --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/Replay.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Restart.png b/skins/blackhole/themes/default/menuicons/standardicons/Restart.png Binary files differnew file mode 100644 index 0000000..aa23cd4 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/Restart.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Schedule.png b/skins/blackhole/themes/default/menuicons/standardicons/Schedule.png Binary files differnew file mode 100644 index 0000000..3a98cac --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/Schedule.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Setup.png b/skins/blackhole/themes/default/menuicons/standardicons/Setup.png Binary files differnew file mode 100644 index 0000000..d121148 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/Setup.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/StopRecording.png b/skins/blackhole/themes/default/menuicons/standardicons/StopRecording.png Binary files differnew file mode 100644 index 0000000..ed83fbb --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/StopRecording.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/StopReplay.png b/skins/blackhole/themes/default/menuicons/standardicons/StopReplay.png Binary files differnew file mode 100644 index 0000000..9192760 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/StopReplay.png diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Timers.png b/skins/blackhole/themes/default/menuicons/standardicons/Timers.png Binary files differnew file mode 100644 index 0000000..b866c36 --- /dev/null +++ b/skins/blackhole/themes/default/menuicons/standardicons/Timers.png diff --git a/skins/blackhole/themes/default/skinparts/buttonblue.svg b/skins/blackhole/themes/default/skinparts/buttonblue.svg new file mode 100644 index 0000000..fd3724f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/buttonblue.svg @@ -0,0 +1,218 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="400" + height="70" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 399.99999 70.000001" + sodipodi:docname="buttonblue.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4180"> + <stop + style="stop-color:#cccccc;stop-opacity:1;" + offset="0" + id="stop4182" /> + <stop + style="stop-color:#cccccc;stop-opacity:0;" + offset="1" + id="stop4184" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4152"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4154" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4156" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4183"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4185" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4187" /> + </linearGradient> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4148" + x="-0.013382644" + width="1.0267653" + y="-0.11614827" + height="1.2322965"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.2304407" + id="feGaussianBlur4150" /> + </filter> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="radialGradient4189" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" + gradientTransform="matrix(1,0,0,0.00500002,0,978.44535)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="radialGradient4193" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00500002,0,1048.4454)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="radialGradient4158" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" + gradientTransform="matrix(1,0,0,0.00500002,0,978.44535)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="radialGradient4162" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00500002,0,1046.4454)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4180" + id="linearGradient4222" + gradientUnits="userSpaceOnUse" + x1="210.71375" + y1="901.98651" + x2="199.81989" + y2="1036.3486" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1.7722603" + inkscape:cx="46.297009" + inkscape:cy="37" + inkscape:document-units="px" + inkscape:current-layer="g4206" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + transform="translate(0,-982.3622)" + id="g4206" + inkscape:groupmode="layer" + inkscape:label="Blau" + style="display:inline"> + <g + id="g4640"> + <rect + style="opacity:1;fill:#0044aa;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4208" + width="400" + height="69.999992" + x="-2.857143e-006" + y="982.36218" + ry="0.42781609" /> + <path + style="opacity:1;fill:#002255;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" + d="m 55.347603,1000.9212 a 496.85897,57.329265 0 0 0 -51.3105474,0.2891 l 0,45.3711 c 0,0.237 0.1907242,0.4277 0.4277343,0.4277 l 399.1445401,0 c 0.23701,0 0.42773,-0.1907 0.42773,-0.4277 l 0,-28.8321 A 496.85897,57.329265 0 0 0 55.347603,1000.9212 Z" + id="path4210" + inkscape:connector-curvature="0" + transform="matrix(0.97355433,0,0,1.0027745,1.2811918,-2.8409497)" /> + <path + style="opacity:1;fill:url(#linearGradient4222);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" + d="m -0.9179615,985.50214 c -0.23701,0 -0.427734,0.19072 -0.427734,0.42773 l 0,23.77343 a 496.85896,57.329264 0 0 1 51.3105475,-0.289 496.85896,57.329264 0 0 1 348.689448,16.8281 l 0,-40.31253 c 0,-0.23701 -0.19072,-0.42773 -0.42773,-0.42773 l -399.1445315,0 z" + id="path4212" + inkscape:connector-curvature="0" + transform="matrix(0.97441791,0,0,0.93341814,6.350042,68.54286)" /> + <rect + style="opacity:1;fill:url(#radialGradient4189);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4214" + width="400" + height="2" + x="-2.857143e-006" + y="982.36218" + ry="0.427816" /> + <rect + ry="0.427816" + y="1052.3622" + x="-2.857143e-006" + height="2" + width="400" + id="rect4216" + style="opacity:1;fill:url(#radialGradient4193);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:1;fill:url(#radialGradient4158);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4218" + width="400" + height="1.9999976" + x="-2.857143e-006" + y="982.36218" + ry="0.023262138" /> + <rect + ry="0.023262138" + y="1050.3622" + x="-2.857143e-006" + height="1.9999976" + width="400" + id="rect4220" + style="opacity:1;fill:url(#radialGradient4162);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/buttongreen.svg b/skins/blackhole/themes/default/skinparts/buttongreen.svg new file mode 100644 index 0000000..02746ff --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/buttongreen.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="400" + height="70" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 399.99999 70.000001" + sodipodi:docname="buttongreen.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4152"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4154" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4156" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4183"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4185" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4187" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4173"> + <stop + style="stop-color:#ced659;stop-opacity:1;" + offset="0" + id="stop4175" /> + <stop + style="stop-color:#ced659;stop-opacity:0;" + offset="1" + id="stop4177" /> + </linearGradient> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4148" + x="-0.013382644" + width="1.0267653" + y="-0.11614827" + height="1.2322965"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.2304407" + id="feGaussianBlur4150" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4173" + id="linearGradient4179" + x1="186.87177" + y1="-76.304359" + x2="168.72545" + y2="50.159344" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1.3456955,985.50214)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="radialGradient4385" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00500002,0,978.44535)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="radialGradient4387" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00500002,0,1048.4454)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="radialGradient4389" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00500002,0,978.44535)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="radialGradient4391" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00500002,0,1046.4454)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1.7722603" + inkscape:cx="46.297009" + inkscape:cy="37" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Grün" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-982.3622)" + style="display:inline"> + <g + id="g4400" + transform="translate(0.17733523,0)"> + <rect + ry="0.42781609" + y="982.36218" + x="-2.857143e-006" + height="69.999992" + width="400" + id="rect4137" + style="opacity:1;fill:#008000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(0.97355433,0,0,1.0027745,1.2811918,-2.8409497)" + inkscape:connector-curvature="0" + id="path4139" + d="m 55.347603,1000.9212 a 496.85897,57.329265 0 0 0 -51.3105474,0.2891 l 0,45.3711 c 0,0.237 0.1907242,0.4277 0.4277343,0.4277 l 399.1445401,0 c 0.23701,0 0.42773,-0.1907 0.42773,-0.4277 l 0,-28.8321 A 496.85897,57.329265 0 0 0 55.347603,1000.9212 Z" + style="opacity:1;fill:#036403;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" /> + <path + transform="matrix(0.97441791,0,0,0.93341814,6.350042,68.54286)" + inkscape:connector-curvature="0" + id="path4154" + d="m -0.9179615,985.50214 c -0.23701,0 -0.427734,0.19072 -0.427734,0.42773 l 0,23.77343 a 496.85896,57.329264 0 0 1 51.3105475,-0.289 496.85896,57.329264 0 0 1 348.689448,16.8281 l 0,-40.31253 c 0,-0.23701 -0.19072,-0.42773 -0.42773,-0.42773 l -399.1445315,0 z" + style="opacity:1;fill:url(#linearGradient4179);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" /> + <rect + ry="0.427816" + y="982.36218" + x="-2.857143e-006" + height="2" + width="400" + id="rect4181" + style="opacity:1;fill:url(#radialGradient4385);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:1;fill:url(#radialGradient4387);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4191" + width="400" + height="2" + x="-2.857143e-006" + y="1052.3622" + ry="0.427816" /> + <rect + ry="0.023262138" + y="982.36218" + x="-2.857143e-006" + height="1.9999976" + width="400" + id="rect4150" + style="opacity:1;fill:url(#radialGradient4389);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:1;fill:url(#radialGradient4391);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4160" + width="400" + height="1.9999976" + x="-2.857143e-006" + y="1050.3622" + ry="0.023262138" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/buttonred.svg b/skins/blackhole/themes/default/skinparts/buttonred.svg new file mode 100644 index 0000000..1f1b756 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/buttonred.svg @@ -0,0 +1,215 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="400" + height="70" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 399.99999 70.000001" + sodipodi:docname="buttonred.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4180"> + <stop + style="stop-color:#cccccc;stop-opacity:1;" + offset="0" + id="stop4182" /> + <stop + style="stop-color:#cccccc;stop-opacity:0;" + offset="1" + id="stop4184" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4152"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4154" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4156" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4183"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4185" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4187" /> + </linearGradient> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4148" + x="-0.013382644" + width="1.0267653" + y="-0.11614827" + height="1.2322965"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.2304407" + id="feGaussianBlur4150" /> + </filter> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="radialGradient4189" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" + gradientTransform="matrix(1,0,0,0.00500002,0.17733523,978.44535)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="radialGradient4193" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00500002,0.17733523,1048.4454)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="radialGradient4158" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" + gradientTransform="matrix(1,0,0,0.00500002,0.17733523,978.44535)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="radialGradient4162" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00500002,0.17733523,1046.4454)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4180" + id="linearGradient4186" + x1="210.71375" + y1="901.98651" + x2="199.81989" + y2="1036.3486" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1.7722603" + inkscape:cx="122.11533" + inkscape:cy="37" + inkscape:document-units="px" + inkscape:current-layer="g4164" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + transform="translate(0,-982.3622)" + id="g4164" + inkscape:groupmode="layer" + inkscape:label="Rot" + style="display:inline"> + <rect + ry="0.42781609" + y="982.36218" + x="0.17733237" + height="69.999992" + width="400" + id="rect4166" + style="opacity:1;fill:#aa0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(0.97355433,0,0,1.0027745,1.458527,-2.8409497)" + inkscape:connector-curvature="0" + id="path4168" + d="m 55.347603,1000.9212 a 496.85897,57.329265 0 0 0 -51.3105474,0.2891 l 0,45.3711 c 0,0.237 0.1907242,0.4277 0.4277343,0.4277 l 399.1445401,0 c 0.23701,0 0.42773,-0.1907 0.42773,-0.4277 l 0,-28.8321 A 496.85897,57.329265 0 0 0 55.347603,1000.9212 Z" + style="opacity:1;fill:#550000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" /> + <path + transform="matrix(0.97441791,0,0,0.93341814,6.5273772,68.54286)" + inkscape:connector-curvature="0" + id="path4170" + d="m -0.9179615,985.50214 c -0.23701,0 -0.427734,0.19072 -0.427734,0.42773 l 0,23.77343 a 496.85896,57.329264 0 0 1 51.3105475,-0.289 496.85896,57.329264 0 0 1 348.689448,16.8281 l 0,-40.31253 c 0,-0.23701 -0.19072,-0.42773 -0.42773,-0.42773 l -399.1445315,0 z" + style="opacity:1;fill:url(#linearGradient4186);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" /> + <rect + ry="0.427816" + y="982.36218" + x="0.17733237" + height="2" + width="400" + id="rect4172" + style="opacity:1;fill:url(#radialGradient4189);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:1;fill:url(#radialGradient4193);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4174" + width="400" + height="2" + x="0.17733237" + y="1052.3622" + ry="0.427816" /> + <rect + ry="0.023262138" + y="982.36218" + x="0.17733237" + height="1.9999976" + width="400" + id="rect4176" + style="opacity:1;fill:url(#radialGradient4158);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:1;fill:url(#radialGradient4162);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4178" + width="400" + height="1.9999976" + x="0.17733237" + y="1050.3622" + ry="0.023262138" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/buttonyellow.svg b/skins/blackhole/themes/default/skinparts/buttonyellow.svg new file mode 100644 index 0000000..063b113 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/buttonyellow.svg @@ -0,0 +1,203 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="400" + height="70" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 399.99999 70.000001" + sodipodi:docname="buttonyellow.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4152"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4154" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4156" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4183"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4185" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4187" /> + </linearGradient> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4148" + x="-0.013382644" + width="1.0267653" + y="-0.11614827" + height="1.2322965"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.2304407" + id="feGaussianBlur4150" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="linearGradient4204" + gradientUnits="userSpaceOnUse" + x1="210.71375" + y1="901.98651" + x2="200.39896" + y2="1020.6317" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="radialGradient4565" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00500002,0,978.44535)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="radialGradient4567" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00500002,0,1048.4454)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="radialGradient4569" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00500002,0,978.44535)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="radialGradient4571" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00500002,0,1046.4454)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1.7722603" + inkscape:cx="139.77115" + inkscape:cy="37" + inkscape:document-units="px" + inkscape:current-layer="g4188" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + style="display:inline" + inkscape:label="Gelb" + inkscape:groupmode="layer" + id="g4188" + transform="translate(0,-982.3622)"> + <rect + style="opacity:1;fill:#806600;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4190" + width="400" + height="69.999992" + x="-2.857143e-006" + y="982.36218" + ry="0.42781609" /> + <path + style="opacity:1;fill:#786721;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" + d="m 55.347603,1000.9212 a 496.85897,57.329265 0 0 0 -51.3105474,0.2891 l 0,45.3711 c 0,0.237 0.1907242,0.4277 0.4277343,0.4277 l 399.1445401,0 c 0.23701,0 0.42773,-0.1907 0.42773,-0.4277 l 0,-28.8321 A 496.85897,57.329265 0 0 0 55.347603,1000.9212 Z" + id="path4192" + inkscape:connector-curvature="0" + transform="matrix(0.97355433,0,0,1.0027745,1.2811918,-0.58394479)" /> + <rect + style="opacity:1;fill:url(#radialGradient4565);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4196" + width="400" + height="2" + x="-2.857143e-006" + y="982.36218" + ry="0.427816" /> + <rect + ry="0.427816" + y="1052.3622" + x="-2.857143e-006" + height="2" + width="400" + id="rect4198" + style="opacity:1;fill:url(#radialGradient4567);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:1;fill:url(#radialGradient4569);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4200" + width="400" + height="1.9999976" + x="-2.857143e-006" + y="982.36218" + ry="0.023262138" /> + <rect + ry="0.023262138" + y="1050.3622" + x="-2.857143e-006" + height="1.9999976" + width="400" + id="rect4202" + style="opacity:1;fill:url(#radialGradient4571);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + style="opacity:1;fill:url(#linearGradient4204);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" + d="m -0.9179615,985.50214 c -0.23701,0 -0.427734,0.19072 -0.427734,0.42773 l 0,23.77343 a 496.85896,57.329264 0 0 1 51.3105475,-0.289 496.85896,57.329264 0 0 1 348.689448,16.8281 l 0,-40.31253 c 0,-0.23701 -0.19072,-0.42773 -0.42773,-0.42773 l -399.1445315,0 z" + id="path4194" + inkscape:connector-curvature="0" + transform="matrix(0.97441791,0,0,0.93341814,5.2215394,66.285855)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/displaychannelback.svg b/skins/blackhole/themes/default/skinparts/displaychannelback.svg new file mode 100644 index 0000000..8a8d8a9 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/displaychannelback.svg @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="1920" + height="324" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 1920 324" + sodipodi:docname="displaychannelback.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.77683186" + inkscape:cx="502.7572" + inkscape:cy="210.50666" + inkscape:document-units="px" + inkscape:current-layer="layer2" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Background" + style="display:inline" + transform="translate(0,-756)"> + <path + style="fill:#000000;fill-opacity:0.7254902;fill-rule:evenodd;stroke:#000000;stroke-width:1.00440681px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 0.5022034,1079.4978 0,-322.99561 199.8953666,0 c 1.61847,29.93978 18.19235,46.83581 49.97385,50.46807 l 949.50298,0 c 28.354,-2.64869 48.9217,-14.73328 49.9739,-50.46807 l 669.6495,0 0,322.99561 z" + id="path4162" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/displaychannelbackepg.svg b/skins/blackhole/themes/default/skinparts/displaychannelbackepg.svg new file mode 100644 index 0000000..5803fdb --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/displaychannelbackepg.svg @@ -0,0 +1,286 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="1280" + height="130" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 1280 130" + sodipodi:docname="displaychannelbackepg.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4794"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4796" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4798" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4778"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4780" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4782" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4759"> + <stop + style="stop-color:#00284a;stop-opacity:1;" + offset="0" + id="stop4761" /> + <stop + style="stop-color:#00284a;stop-opacity:0;" + offset="1" + id="stop4763" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4759" + id="linearGradient4766" + x1="935.20227" + y1="896.86908" + x2="935.20227" + y2="991.521" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0017221,0,0,1.0190265,-325.66949,54.937088)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4778" + id="radialGradient4786" + cx="965" + cy="876" + fx="965" + fy="876" + r="640" + gradientTransform="matrix(1,0,0,0.0015625,-324.99999,949.63124)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4778" + id="radialGradient4790" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.0015625,-324.99999,1077.6312)" + cx="965" + cy="876" + fx="965" + fy="876" + r="640" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4794" + id="radialGradient4800" + cx="326" + cy="940" + fx="326" + fy="940" + r="0.9999997" + gradientTransform="matrix(1.0000003,0,0,65.000017,-325.00009,-60085.016)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4794" + id="radialGradient4800-0" + cx="326" + cy="940" + fx="326" + fy="940" + r="0.9999997" + gradientTransform="matrix(0.9999995,0,0,65.000016,953.00041,-60085.015)" + gradientUnits="userSpaceOnUse" /> + <filter + inkscape:label="Black Hole" + inkscape:menu="Morphology" + inkscape:menu-tooltip="Creates a black light inside and outside" + height="1.5" + width="1.5" + y="-0.25" + x="-0.25" + style="color-interpolation-filters:sRGB" + id="filter4448"> + <feGaussianBlur + stdDeviation="5" + in="SourceAlpha" + result="result1" + id="feGaussianBlur4450" /> + <feComposite + operator="arithmetic" + k2="3.2" + k1="-1" + k4="-2" + result="result3" + in2="result1" + id="feComposite4452" + k3="0" /> + <feColorMatrix + values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 10 0 " + result="result2" + id="feColorMatrix4454" /> + <feComposite + result="fbSourceGraphic" + in="SourceGraphic" + operator="out" + in2="result2" + id="feComposite4456" /> + <feBlend + mode="multiply" + in="result1" + in2="fbSourceGraphic" + result="result91" + id="feBlend4458" /> + <feBlend + mode="screen" + in="fbSourceGraphic" + in2="result91" + id="feBlend4460" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4759" + id="linearGradient4232" + x1="8.9874849" + y1="1027.2526" + x2="50.451012" + y2="1027.2526" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4759" + id="linearGradient4240" + x1="8.9874849" + y1="1027.2526" + x2="50.451012" + y2="1027.2526" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4759" + id="linearGradient4309" + x1="68.407776" + y1="985.8446" + x2="34.716022" + y2="1026.4244" + gradientUnits="userSpaceOnUse" /> + <pattern + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern" /> + <filter + style="color-interpolation-filters:sRGB" + id="filter7120"> + <feGaussianBlur + stdDeviation="3.92425" + id="feGaussianBlur12" /> + </filter> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.64122727" + inkscape:cx="587.59957" + inkscape:cy="32.802006" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:showpageshadow="false" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="EPG" + transform="translate(0,-950)"> + <rect + style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4736" + width="1280" + height="129.99998" + x="5.0516455e-006" + y="950" + ry="0.35725296" /> + <rect + ry="0.35725296" + y="950" + x="4.9999999e-006" + height="129.99998" + width="1280" + id="rect4749" + style="opacity:1;fill:url(#linearGradient4766);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:url(#radialGradient4786);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4768" + width="1280" + height="1.9999907" + x="4.9999999e-006" + y="950" + ry="0.30650064" /> + <rect + ry="0.30650064" + y="1078" + x="4.9999999e-006" + height="1.9999907" + width="1280" + id="rect4788" + style="opacity:1;fill:url(#radialGradient4790);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:url(#radialGradient4800);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4792" + width="1.99999" + height="129.99998" + x="5.0000008e-006" + y="950" + ry="0.3036862" /> + <rect + style="opacity:1;fill:url(#radialGradient4800-0);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4792-6" + width="1.9999883" + height="129.99998" + x="1278" + y="950" + ry="0.3036862" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/displaymendetailback.svg b/skins/blackhole/themes/default/skinparts/displaymendetailback.svg new file mode 100644 index 0000000..1f2f89a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/displaymendetailback.svg @@ -0,0 +1,190 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="1000" + height="800" + id="svg4671" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 1000 800.00002" + sodipodi:docname="displaymendetailback.svg"> + <defs + id="defs4673"> + <linearGradient + inkscape:collect="always" + id="linearGradient5269"> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop5271" /> + <stop + style="stop-color:#333333;stop-opacity:1" + offset="1" + id="stop5273" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5257"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5259" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5261" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5223"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5225" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5227" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5223" + id="radialGradient5229" + cx="0.99998975" + cy="862.36218" + fx="0.99998975" + fy="862.36218" + r="1" + gradientTransform="matrix(1.5,0,0,400.00001,5.1315787e-6,-344292.51)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5223" + id="radialGradient5229-7" + cx="0.99998975" + cy="862.36218" + fx="0.99998975" + fy="862.36218" + r="1" + gradientTransform="matrix(1.5,0,0,400.00001,998.00004,-344292.51)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5257" + id="radialGradient5263" + cx="390" + cy="673.86218" + fx="390" + fy="673.86218" + r="390" + gradientTransform="matrix(1.2820513,0,0,0.00384615,2.8947368e-6,251.2704)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5257" + id="radialGradient5267" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.2820513,0,0,0.00384615,2.8947368e-6,1048.2704)" + cx="390" + cy="673.86218" + fx="390" + fy="673.86218" + r="390" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5269" + id="linearGradient5275" + x1="6.5118446" + y1="1046.8645" + x2="777.75482" + y2="676.42383" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.2820513,0,0,2.1052632,2.8947368e-6,-1163.1372)" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.97728979" + inkscape:cx="413.30878" + inkscape:cy="369.35647" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata4676"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-252.36218)" + style="display:inline"> + <rect + style="fill:url(#linearGradient5275);fill-opacity:1" + id="rect5219" + width="1000" + height="800" + x="-1.0263157e-005" + y="252.36217" + ry="0.84846574" /> + <rect + style="fill:url(#radialGradient5229);fill-opacity:1" + id="rect5221" + width="3" + height="800" + x="-1.0263157e-005" + y="252.36217" + ry="0.86613488" /> + <rect + style="fill:url(#radialGradient5229-7);fill-opacity:1" + id="rect5221-0" + width="3" + height="800" + x="998" + y="252.36217" + ry="0.86613488" /> + <rect + style="fill:url(#radialGradient5263);fill-opacity:1" + id="rect5255" + width="1000" + height="3" + x="-1.0263157e-005" + y="252.36218" + ry="0.17231601" /> + <rect + ry="0.17231601" + y="1049.3622" + x="-1.0263157e-005" + height="3" + width="1000" + id="rect5265" + style="fill:url(#radialGradient5267);fill-opacity:1" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/displaymenuback.svg b/skins/blackhole/themes/default/skinparts/displaymenuback.svg new file mode 100644 index 0000000..5f3f51a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/displaymenuback.svg @@ -0,0 +1,250 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="1920" + height="1080" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 1920 1080" + sodipodi:docname="displaymenuback.svg" + enable-background="new"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="marker5387" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path5389" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Tail" + orient="auto" + refY="0.0" + refX="0.0" + id="Tail" + style="overflow:visible" + inkscape:isstock="true"> + <g + id="g4825" + transform="scale(-1.2)" + style="stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"> + <path + id="path4827" + d="M -3.8048674,-3.9585227 L 0.54352094,0" + style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> + <path + id="path4829" + d="M -1.2866832,-3.9585227 L 3.0617053,0" + style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> + <path + id="path4831" + d="M 1.3053582,-3.9585227 L 5.6537466,0" + style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> + <path + id="path4833" + d="M -3.8048674,4.1775838 L 0.54352094,0.21974226" + style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> + <path + id="path4835" + d="M -1.2866832,4.1775838 L 3.0617053,0.21974226" + style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> + <path + id="path4837" + d="M 1.3053582,4.1775838 L 5.6537466,0.21974226" + style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> + </g> + </marker> + <marker + inkscape:stockid="Arrow2Sstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Sstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4819" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(0.3) translate(-2.3,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4810" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="marker5075" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path5077" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4807" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4789" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <linearGradient + inkscape:collect="always" + id="linearGradient4450"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop4452" /> + <stop + style="stop-color:#999999;stop-opacity:1" + offset="1" + id="stop4454" /> + </linearGradient> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1LendR3T" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1LendR3T"> + <path + inkscape:connector-curvature="0" + transform="matrix(-0.8,0,0,-0.8,-10,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + id="path6619" /> + </marker> + <pattern + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern" /> + <pattern + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern-8" /> + <pattern + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern-0" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4450" + id="linearGradient4318" + x1="1118" + y1="1056.3619" + x2="1810" + y2="-437.638" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.5" + inkscape:cx="779.50211" + inkscape:cy="739.63369" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" + showguides="false" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Background" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,27.638004)" + style="display:inline"> + <rect + style="fill:url(#linearGradient4318);fill-opacity:1" + id="rect4310" + width="1920" + height="1080" + x="0" + y="-27.638004" + ry="0.24633798" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/displaymenubacktv.svg b/skins/blackhole/themes/default/skinparts/displaymenubacktv.svg new file mode 100644 index 0000000..d205062 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/displaymenubacktv.svg @@ -0,0 +1,348 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="1920" + height="1080" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 1920 1080" + sodipodi:docname="displaymenubacktv.svg" + enable-background="new"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="marker5387" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path5389" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Tail" + orient="auto" + refY="0.0" + refX="0.0" + id="Tail" + style="overflow:visible" + inkscape:isstock="true"> + <g + id="g4825" + transform="scale(-1.2)" + style="stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"> + <path + id="path4827" + d="M -3.8048674,-3.9585227 L 0.54352094,0" + style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> + <path + id="path4829" + d="M -1.2866832,-3.9585227 L 3.0617053,0" + style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> + <path + id="path4831" + d="M 1.3053582,-3.9585227 L 5.6537466,0" + style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> + <path + id="path4833" + d="M -3.8048674,4.1775838 L 0.54352094,0.21974226" + style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> + <path + id="path4835" + d="M -1.2866832,4.1775838 L 3.0617053,0.21974226" + style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> + <path + id="path4837" + d="M 1.3053582,4.1775838 L 5.6537466,0.21974226" + style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" /> + </g> + </marker> + <marker + inkscape:stockid="Arrow2Sstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Sstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4819" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(0.3) translate(-2.3,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4810" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="marker5075" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path5077" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4807" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4789" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <linearGradient + inkscape:collect="always" + id="linearGradient4540"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4542" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4544" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4466"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4468" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4470" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4450"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop4452" /> + <stop + style="stop-color:#999999;stop-opacity:1" + offset="1" + id="stop4454" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4450" + id="linearGradient4460" + x1="1176.0457" + y1="1054.5479" + x2="1823.0875" + y2="-448.90463" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,27.638004)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4466" + id="radialGradient4472" + cx="1103.0937" + cy="371.64835" + fx="1103.0937" + fy="371.64835" + r="3.5686478" + gradientTransform="matrix(0.86165038,0,0,58.870242,102.51887,-21588.737)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4466" + id="radialGradient4472-1" + cx="1103.0938" + cy="371.64835" + fx="1103.0938" + fy="371.64835" + r="3.5686479" + gradientTransform="matrix(1,0,0,58.870242,724.38795,-21585.884)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4540" + id="radialGradient4546" + cx="1466.9981" + cy="141.71147" + fx="1466.9981" + fy="141.71147" + r="355.26972" + gradientTransform="matrix(1.0808689,0,0,0.01088437,-145.63269,74.952665)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4540" + id="radialGradient4546-4" + cx="1466.998" + cy="141.71147" + fx="1466.998" + fy="141.71147" + r="355.26971" + gradientTransform="matrix(1.0808689,0,0,0.01088437,-145.63275,512.95268)" + gradientUnits="userSpaceOnUse" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1LendR3T" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1LendR3T"> + <path + inkscape:connector-curvature="0" + transform="matrix(-0.8,0,0,-0.8,-10,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + id="path6619" /> + </marker> + <pattern + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern" /> + <pattern + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern-8" /> + <pattern + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern-0" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.5" + inkscape:cx="779.50211" + inkscape:cy="739.63369" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" + showguides="false" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Background" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,27.638004)" + style="display:inline"> + <path + style="opacity:1;fill:url(#linearGradient4460);fill-opacity:1;stroke:#000000;stroke-width:2.00882554;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1.265625 1.0039062 C 1.1210041 1.0039062 1.0039062 1.1210041 1.0039062 1.265625 L 1.0039062 1078.7344 C 1.0039062 1078.879 1.1210041 1078.9961 1.265625 1078.9961 L 1918.7344 1078.9961 C 1918.879 1078.9961 1918.9961 1078.879 1918.9961 1078.7344 L 1918.9961 1.265625 C 1918.9961 1.1210041 1918.879 1.0039062 1918.7344 1.0039062 L 1.265625 1.0039062 z M 1056.2441 108 L 1823.7559 108 C 1823.8908 108 1824 108.1092 1824 108.24414 L 1824 539.75586 C 1824 539.8908 1823.8908 540 1823.7559 540 L 1056.2441 540 C 1056.1092 540 1056 539.8908 1056 539.75586 L 1056 108.24414 C 1056 108.1092 1056.1092 108 1056.2441 108 z " + id="rect4137" + transform="translate(0,-27.638004)" /> + <rect + style="opacity:1;fill:url(#radialGradient4546-4);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4498-7" + width="768" + height="7.7337637" + x="1056" + y="510.62823" + ry="0.13052402" /> + <rect + style="display:inline;opacity:1;fill:url(#radialGradient4546);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4498" + width="768" + height="7.7337637" + x="1056" + y="72.628227" + ry="0.13052402" /> + <rect + style="display:inline;opacity:1;fill:url(#radialGradient4472-1);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4462-2" + width="6.9633703" + height="420" + x="1824" + y="83.144279" + ry="0.2262664" /> + <rect + style="display:inline;opacity:1;fill:url(#radialGradient4472);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4462" + width="5.9999909" + height="420" + x="1050" + y="80.291176" + ry="0.2262664" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/displaymenucorner.svg b/skins/blackhole/themes/default/skinparts/displaymenucorner.svg new file mode 100644 index 0000000..68f9285 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/displaymenucorner.svg @@ -0,0 +1,275 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="500" + height="500" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 500 500" + sodipodi:docname="displaymenucorner.svg" + style="enable-background:new"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0" + refX="0" + id="marker5387" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path5389" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.8,0,0,0.8,10,0)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Tail" + orient="auto" + refY="0" + refX="0" + id="Tail" + style="overflow:visible" + inkscape:isstock="true"> + <g + id="g4825" + transform="scale(-1.2,-1.2)" + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"> + <path + id="path4827" + d="M -3.8048674,-3.9585227 0.54352094,0" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path4829" + d="M -1.2866832,-3.9585227 3.0617053,0" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path4831" + d="M 1.3053582,-3.9585227 5.6537466,0" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path4833" + d="M -3.8048674,4.1775838 0.54352094,0.21974226" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path4835" + d="M -1.2866832,4.1775838 3.0617053,0.21974226" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path4837" + d="M 1.3053582,4.1775838 5.6537466,0.21974226" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" + inkscape:connector-curvature="0" /> + </g> + </marker> + <marker + inkscape:stockid="Arrow2Sstart" + orient="auto" + refY="0" + refX="0" + id="Arrow2Sstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4819" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" + d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" + transform="matrix(0.3,0,0,0.3,-0.69,0)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0" + refX="0" + id="Arrow2Lend" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4810" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" + d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" + transform="matrix(-1.1,0,0,-1.1,-1.1,0)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Lstart" + orient="auto" + refY="0" + refX="0" + id="marker5075" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path5077" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" + d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" + transform="matrix(1.1,0,0,1.1,1.1,0)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Lstart" + orient="auto" + refY="0" + refX="0" + id="Arrow2Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4807" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" + d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" + transform="matrix(1.1,0,0,1.1,1.1,0)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0" + refX="0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4789" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt" + transform="matrix(0.8,0,0,0.8,10,0)" + inkscape:connector-curvature="0" /> + </marker> + <linearGradient + inkscape:collect="always" + id="linearGradient4429"> + <stop + style="stop-color:#00284a;stop-opacity:1" + offset="0" + id="stop4431" /> + <stop + style="stop-color:#0000ff;stop-opacity:0;" + offset="1" + id="stop4433" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4429" + id="linearGradient4435" + x1="1558.0786" + y1="1.9836823" + x2="2120.9976" + y2="490.82275" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1433.282,587.62747)" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1LendR3T" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1LendR3T"> + <path + inkscape:connector-curvature="0" + transform="matrix(-0.8,0,0,-0.8,-10,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + id="path6619" /> + </marker> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter5290" + x="-0.012" + width="1.024" + y="-0.012" + height="1.024"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.431137" + id="feGaussianBlur5292" /> + </filter> + <pattern + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern" /> + <pattern + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern-8" /> + <pattern + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern-0" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1.0180958" + inkscape:cx="269.48002" + inkscape:cy="152.49644" + inkscape:document-units="px" + inkscape:current-layer="layer2" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" + showguides="false" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Uhr" + style="display:inline" + transform="translate(0,-580)"> + <path + style="fill:url(#linearGradient4435);fill-opacity:1;fill-rule:evenodd;stroke:#ececec;stroke-width:1.62075794px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter5290)" + d="m 5.8347289,587.93785 486.2274011,0 0,486.22735 C 359.62163,808.36538 189.20953,675.46709 5.8347289,587.93785 Z" + id="path4142" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" + transform="matrix(1.0042232,0,0,1.0042755,8.804664,-12.51067)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/displaymenucurrentback.svg b/skins/blackhole/themes/default/skinparts/displaymenucurrentback.svg new file mode 100644 index 0000000..a22368b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/displaymenucurrentback.svg @@ -0,0 +1,188 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="780" + height="380" + id="svg4671" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 780 380.00001" + sodipodi:docname="displaymenucurrentback.svg"> + <defs + id="defs4673"> + <linearGradient + inkscape:collect="always" + id="linearGradient5269"> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop5271" /> + <stop + style="stop-color:#555555;stop-opacity:1" + offset="1" + id="stop5273" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5257"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5259" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5261" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5223"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5225" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5227" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5223" + id="radialGradient5229" + cx="0.99998974" + cy="862.36218" + fx="0.99998974" + fy="862.36218" + r="1" + gradientTransform="matrix(1.5,0,0,190,5.1315787e-6,-162986.45)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5223" + id="radialGradient5229-7" + cx="0.99998975" + cy="862.36218" + fx="0.99998975" + fy="862.36218" + r="1" + gradientTransform="matrix(1.5,0,0,190,777.00003,-162986.45)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5257" + id="radialGradient5263" + cx="389.99999" + cy="673.86218" + fx="389.99999" + fy="673.86218" + r="390" + gradientTransform="matrix(1,0,0,0.00384615,0,671.2704)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5257" + id="radialGradient5267" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00384615,0,1048.2704)" + cx="389.99999" + cy="673.86218" + fx="389.99999" + fy="673.86218" + r="390" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5269" + id="linearGradient5275" + x1="6.5118446" + y1="1046.8645" + x2="778.55292" + y2="674.9657" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1.3820965" + inkscape:cx="410.76441" + inkscape:cy="163.98606" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata4676"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-672.36219)"> + <rect + style="fill:url(#linearGradient5275);fill-opacity:1" + id="rect5219" + width="780" + height="380" + x="-1.0263157e-005" + y="672.36218" + ry="0.40302122" /> + <rect + style="fill:url(#radialGradient5229);fill-opacity:1" + id="rect5221" + width="3" + height="380" + x="-1.0263157e-005" + y="672.36218" + ry="0.41141406" /> + <rect + style="fill:url(#radialGradient5229-7);fill-opacity:1" + id="rect5221-0" + width="3" + height="380" + x="777" + y="672.36218" + ry="0.41141406" /> + <rect + style="fill:url(#radialGradient5263);fill-opacity:1" + id="rect5255" + width="780" + height="3" + x="-1.0263157e-005" + y="672.36218" + ry="0.17231601" /> + <rect + ry="0.17231601" + y="1049.3622" + x="-1.0263157e-005" + height="3" + width="780" + id="rect5265" + style="fill:url(#radialGradient5267);fill-opacity:1" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/displaymenuheader.svg b/skins/blackhole/themes/default/skinparts/displaymenuheader.svg new file mode 100644 index 0000000..4945e5d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/displaymenuheader.svg @@ -0,0 +1,292 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="1600" + height="90" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 1600 90" + sodipodi:docname="displaymenuheader.svg" + style="enable-background:new"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient5254"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop5256" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop5258" /> + </linearGradient> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0" + refX="0" + id="marker5387" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path5389" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.8,0,0,0.8,10,0)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Tail" + orient="auto" + refY="0" + refX="0" + id="Tail" + style="overflow:visible" + inkscape:isstock="true"> + <g + id="g4825" + transform="scale(-1.2,-1.2)" + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"> + <path + id="path4827" + d="M -3.8048674,-3.9585227 0.54352094,0" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path4829" + d="M -1.2866832,-3.9585227 3.0617053,0" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path4831" + d="M 1.3053582,-3.9585227 5.6537466,0" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path4833" + d="M -3.8048674,4.1775838 0.54352094,0.21974226" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path4835" + d="M -1.2866832,4.1775838 3.0617053,0.21974226" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path4837" + d="M 1.3053582,4.1775838 5.6537466,0.21974226" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" + inkscape:connector-curvature="0" /> + </g> + </marker> + <marker + inkscape:stockid="Arrow2Sstart" + orient="auto" + refY="0" + refX="0" + id="Arrow2Sstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4819" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" + d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" + transform="matrix(0.3,0,0,0.3,-0.69,0)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0" + refX="0" + id="Arrow2Lend" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4810" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" + d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" + transform="matrix(-1.1,0,0,-1.1,-1.1,0)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Lstart" + orient="auto" + refY="0" + refX="0" + id="marker5075" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path5077" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" + d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" + transform="matrix(1.1,0,0,1.1,1.1,0)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Lstart" + orient="auto" + refY="0" + refX="0" + id="Arrow2Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4807" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" + d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" + transform="matrix(1.1,0,0,1.1,1.1,0)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0" + refX="0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4789" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt" + transform="matrix(0.8,0,0,0.8,10,0)" + inkscape:connector-curvature="0" /> + </marker> + <linearGradient + inkscape:collect="always" + id="linearGradient4616"> + <stop + style="stop-color:#999999;stop-opacity:1;" + offset="0" + id="stop4618" /> + <stop + style="stop-color:#999999;stop-opacity:0;" + offset="1" + id="stop4620" /> + </linearGradient> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1LendR3T" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1LendR3T"> + <path + inkscape:connector-curvature="0" + transform="matrix(-0.8,0,0,-0.8,-10,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + id="path6619" /> + </marker> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5254" + id="linearGradient5264" + x1="-66.774536" + y1="240.60486" + x2="1889.1105" + y2="-344.51166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0016968,0,0,0.97461117,-0.10886219,989.79215)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4616" + id="radialGradient4630-2" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5585614,0,0,0.00848631,-42.555463,1075.9798)" + cx="498.65219" + cy="238.05763" + fx="498.65219" + fy="238.05763" + r="471.34784" /> + <pattern + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern" /> + <pattern + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern-8" /> + <pattern + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern-0" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="3.663227" + inkscape:cx="672.90397" + inkscape:cy="-15.696543" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" + showguides="false" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Header" + style="display:inline" + transform="translate(0,-990)"> + <path + style="fill:url(#linearGradient5264);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 5.0458157e-6,990.29951 1441.623,990 c 64.8515,31.398 111.8494,58.9377 158.377,90 L 0.81838346,1080 Z" + id="path5230" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <rect + style="display:inline;opacity:1;fill:url(#radialGradient4630-2);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4626-2" + width="1469.249" + height="7.99999" + x="4.964153e-006" + y="1074" + ry="0.069612704" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/displayvolumeback.svg b/skins/blackhole/themes/default/skinparts/displayvolumeback.svg new file mode 100644 index 0000000..f3be2cc --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/displayvolumeback.svg @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="340" + height="425" + viewBox="0 0 340 425" + id="svg4261" + version="1.1" + inkscape:version="0.91pre3 r13670" + sodipodi:docname="displayvolume.svg"> + <defs + id="defs4263" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1.3236702" + inkscape:cx="167.14286" + inkscape:cy="224.50472" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata4266"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-627.36222)"> + <path + id="rect4811" + style="opacity:0.8;fill:#000000;fill-opacity:0.72549021;stroke:#ff0000;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 26.633281,927.85907 286.733419,0 c 14.47956,0 26.13639,11.65683 26.13639,26.13639 l 0,71.73344 c 0,14.4796 -11.65683,26.1364 -26.13639,26.1364 l -286.733419,0 c -14.479558,0 -26.13638655,-11.6568 -26.13638655,-26.1364 l 0,-71.73344 c 0,-14.47956 11.65682855,-26.13639 26.13638655,-26.13639 z M 61.249034,666.96976 A 169.79109,169.79092 0 0 1 300.26253,688.45566 169.79109,169.79092 0 0 1 279.06238,927.49444 169.79109,169.79092 0 0 1 39.998187,906.5801 169.79109,169.79092 0 0 1 60.626716,667.49132" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/menubutton.svg b/skins/blackhole/themes/default/skinparts/menubutton.svg new file mode 100644 index 0000000..e05dab3 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/menubutton.svg @@ -0,0 +1,143 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="960" + height="80" + id="svg4671" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 960 80.000001" + sodipodi:docname="menubutton.svg"> + <defs + id="defs4673"> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5117" + id="linearGradient5123" + x1="563.71271" + y1="307.54962" + x2="565.81268" + y2="243.68301" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5117"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop5119" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop5121" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5151" + id="radialGradient5157" + cx="530.15411" + cy="238.10101" + fx="530.15411" + fy="238.10101" + r="504.75729" + gradientTransform="matrix(1,0,0,0.0039919,0,237.15054)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5151"> + <stop + style="stop-color:#808080;stop-opacity:1;" + offset="0" + id="stop5153" /> + <stop + style="stop-color:#808080;stop-opacity:0;" + offset="1" + id="stop5155" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5151" + id="radialGradient5165" + cx="530.15411" + cy="310.10101" + fx="530.15411" + fy="310.10101" + r="504.75729" + gradientTransform="matrix(1,0,0,0.0039919,0,308.8631)" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1.1419098" + inkscape:cx="467.14286" + inkscape:cy="20" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata4676"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-972.3622)"> + <g + transform="matrix(0.95095209,0,0,1.0522181,-24.15114,723.94816)" + style="display:inline" + id="g5189"> + <rect + style="opacity:1;fill:url(#linearGradient5123);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4598" + width="1008.7696" + height="70" + x="26" + y="239.99966" + ry="0.104419" /> + <rect + style="opacity:1;fill:url(#radialGradient5157);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect5085" + width="1009.5146" + height="4.0298715" + x="25.396799" + y="236.08607" + ry="0.035066329" /> + <rect + ry="0.035066329" + y="308.08606" + x="25.396799" + height="4.0298715" + width="1009.5146" + id="rect5113" + style="opacity:1;fill:url(#radialGradient5165);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/menubuttonactive.svg b/skins/blackhole/themes/default/skinparts/menubuttonactive.svg new file mode 100644 index 0000000..1edd668 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/menubuttonactive.svg @@ -0,0 +1,139 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="960" + height="80" + id="svg5278" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 960 80.000001" + sodipodi:docname="menubuttonactive.svg"> + <defs + id="defs5280"> + <linearGradient + inkscape:collect="always" + id="linearGradient4146"> + <stop + style="stop-color:#5f8dd3;stop-opacity:1;" + offset="0" + id="stop4148" /> + <stop + style="stop-color:#5f8dd3;stop-opacity:0;" + offset="1" + id="stop4150" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4146" + id="radialGradient5083" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0464083,0,0,0.0039623,-76.850467,1049.7359)" + cx="532.15411" + cy="158.05797" + fx="532.15411" + fy="158.05797" + r="504.75729" /> + <linearGradient + gradientTransform="matrix(0.95165438,0,0,1.142857,-24.74301,789.50506)" + inkscape:collect="always" + xlink:href="#linearGradient5073" + id="linearGradient5079" + x1="571.08295" + y1="223.60255" + x2="573.04272" + y2="164.76302" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5073"> + <stop + style="stop-color:#00284a;stop-opacity:1;" + offset="0" + id="stop5075" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop5077" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4146" + id="radialGradient4152" + cx="480" + cy="974.36218" + fx="480" + fy="974.36218" + r="480" + gradientTransform="matrix(1,0,0,0.00416667,0,970.30234)" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="3.6493863" + inkscape:cx="438.84901" + inkscape:cy="32.058072" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata5283"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-972.3622)"> + <rect + style="display:inline;opacity:1;fill:url(#linearGradient5079);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4576" + width="960" + height="79.999992" + x="-1.0000001e-006" + y="972.36218" + ry="0.11933599" /> + <rect + style="display:inline;opacity:1;fill:url(#radialGradient4152);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4572" + width="960" + height="3.99999" + x="-1.0000001e-006" + y="972.36218" + ry="0.034806311" /> + <rect + ry="0.034806311" + y="1048.3622" + x="-1.0000001e-006" + height="3.99999" + width="960" + id="rect5081" + style="display:inline;opacity:1;fill:url(#radialGradient5083);fill-opacity:1.0;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/messageblue.svg b/skins/blackhole/themes/default/skinparts/messageblue.svg new file mode 100644 index 0000000..1bdd0eb --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/messageblue.svg @@ -0,0 +1,196 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="1728" + height="162" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 1728 162" + sodipodi:docname="messageblue.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4180"> + <stop + style="stop-color:#cccccc;stop-opacity:1;" + offset="0" + id="stop4182" /> + <stop + style="stop-color:#cccccc;stop-opacity:0;" + offset="1" + id="stop4184" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4152"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4154" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4156" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4183"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4185" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4187" /> + </linearGradient> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4148" + x="-0.013382644" + width="1.0267653" + y="-0.11614827" + height="1.2322965"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.2304407" + id="feGaussianBlur4150" /> + </filter> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="radialGradient4189" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" + gradientTransform="matrix(4.3178877,0,0,0.00750001,0.75138186,884.48694)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="radialGradient4193" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.3178877,0,0,0.01125004,0.75138278,1039.0494)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="radialGradient4162" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.3178876,0,0,0.00750002,1.7324077e-5,1043.487)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4180" + id="linearGradient4222" + gradientUnits="userSpaceOnUse" + x1="210.71375" + y1="901.98651" + x2="199.81989" + y2="1036.3486" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.85962546" + inkscape:cx="449.03608" + inkscape:cy="116.50387" + inkscape:document-units="px" + inkscape:current-layer="g4206" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + transform="translate(0,-890.3622)" + id="g4206" + inkscape:groupmode="layer" + inkscape:label="Blau" + style="display:inline"> + <rect + ry="0.9900887" + y="890.36218" + x="5.0709259e-006" + height="161.99998" + width="1727.155" + id="rect4208" + style="opacity:1;fill:#0044aa;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(4.2074416,0,0,2.2560334,5.5259383,-1321.8079)" + inkscape:connector-curvature="0" + id="path4210" + d="m 55.347603,1000.9212 a 496.85897,57.329265 0 0 0 -51.3105474,0.2891 l 0,45.3711 c 0,0.237 0.1907242,0.4277 0.4277343,0.4277 l 399.1445401,0 c 0.23701,0 0.42773,-0.1907 0.42773,-0.4277 l 0,-28.8321 A 496.85897,57.329265 0 0 0 55.347603,1000.9212 Z" + style="opacity:1;fill:#002255;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" /> + <path + transform="matrix(4.2074271,0,0,2.1001906,28.170151,-1165.7311)" + inkscape:connector-curvature="0" + id="path4212" + d="m -0.9179615,985.50214 c -0.23701,0 -0.427734,0.19072 -0.427734,0.42773 l 0,23.77343 a 496.85896,57.329264 0 0 1 51.3105475,-0.289 496.85896,57.329264 0 0 1 348.689448,16.8281 l 0,-40.31253 c 0,-0.23701 -0.19072,-0.42773 -0.42773,-0.42773 l -399.1445315,0 z" + style="opacity:1;fill:url(#linearGradient4222);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" /> + <rect + ry="0.64172226" + y="890.36218" + x="0.75136954" + height="2.9999919" + width="1727.155" + id="rect4214" + style="opacity:1;fill:url(#radialGradient4189);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:1;fill:url(#radialGradient4193);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4216" + width="1727.155" + height="4.4999995" + x="0.75137043" + y="1047.8622" + ry="0.96258593" /> + <rect + style="opacity:1;fill:url(#radialGradient4162);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4220" + width="1727.155" + height="2.9999919" + x="4.9999999e-006" + y="1049.3622" + ry="0.034893151" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/messagegreen.svg b/skins/blackhole/themes/default/skinparts/messagegreen.svg new file mode 100644 index 0000000..483ad23 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/messagegreen.svg @@ -0,0 +1,197 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="1728" + height="162" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 1728 162" + sodipodi:docname="messagegreen.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4152"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4154" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4156" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4183"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4185" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4187" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4173"> + <stop + style="stop-color:#ced659;stop-opacity:1;" + offset="0" + id="stop4175" /> + <stop + style="stop-color:#ced659;stop-opacity:0;" + offset="1" + id="stop4177" /> + </linearGradient> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4148" + x="-0.013382644" + width="1.0267653" + y="-0.11614827" + height="1.2322965"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.2304407" + id="feGaussianBlur4150" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4173" + id="linearGradient4179" + x1="186.87177" + y1="-76.304359" + x2="168.72545" + y2="50.159344" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1.3456955,985.50214)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="radialGradient4387" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00500002,0.17733523,1048.4454)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="radialGradient4391" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.3199999,0,0,0.0075,2.3864843e-5,1043.487)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="radialGradient4217" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.3199999,0,0,0.0075,1.7348835e-5,884.48702)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.85962546" + inkscape:cx="717.17611" + inkscape:cy="116.50387" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Grün" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-890.3622)" + style="display:inline"> + <rect + style="opacity:1;fill:#008000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4137" + width="1728" + height="161.99998" + x="1.3048174e-005" + y="890.36218" + ry="0.99008864" /> + <path + style="opacity:1;fill:#036403;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" + d="m 55.347603,1000.9212 a 496.85897,57.329265 0 0 0 -51.3105474,0.2891 l 0,45.3711 c 0,0.237 0.1907242,0.4277 0.4277343,0.4277 l 399.1445401,0 c 0.23701,0 0.42773,-0.1907 0.42773,-0.4277 l 0,-28.8321 A 496.85897,57.329265 0 0 0 55.347603,1000.9212 Z" + id="path4139" + inkscape:connector-curvature="0" + transform="matrix(4.2085896,0,0,1.881705,4.590517,-930.16199)" /> + <path + style="opacity:1;fill:url(#linearGradient4179);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" + d="m -0.9179615,985.50214 c -0.23701,0 -0.427734,0.19072 -0.427734,0.42773 l 0,23.77343 a 496.85896,57.329264 0 0 1 51.3105475,-0.289 496.85896,57.329264 0 0 1 348.689448,16.8281 l 0,-40.31253 c 0,-0.23701 -0.19072,-0.42773 -0.42773,-0.42773 l -399.1445315,0 z" + id="path4154" + inkscape:connector-curvature="0" + transform="matrix(4.2125314,0,0,1.9743876,27.162466,-1045.6397)" /> + <rect + ry="0.427816" + y="1052.3622" + x="0.17733237" + height="2" + width="400" + id="rect4191" + style="opacity:1;fill:url(#radialGradient4387);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + ry="0.034893107" + y="1049.3622" + x="1.1516008e-005" + height="2.9999878" + width="1728" + id="rect4160" + style="opacity:1;fill:url(#radialGradient4391);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:1;fill:url(#radialGradient4217);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4215" + width="1728" + height="2.9999878" + x="4.9999999e-006" + y="890.36218" + ry="0.034893107" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/messagered.svg b/skins/blackhole/themes/default/skinparts/messagered.svg new file mode 100644 index 0000000..4c01d9b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/messagered.svg @@ -0,0 +1,196 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="1728" + height="162" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 1728 162" + sodipodi:docname="messagered.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4180"> + <stop + style="stop-color:#cccccc;stop-opacity:1;" + offset="0" + id="stop4182" /> + <stop + style="stop-color:#cccccc;stop-opacity:0;" + offset="1" + id="stop4184" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4152"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4154" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4156" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4183"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4185" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4187" /> + </linearGradient> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4148" + x="-0.013382644" + width="1.0267653" + y="-0.11614827" + height="1.2322965"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.2304407" + id="feGaussianBlur4150" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4180" + id="linearGradient4186" + x1="210.71375" + y1="901.98651" + x2="199.81989" + y2="1036.3486" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="radialGradient4201" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00500002,0,1048.4454)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="radialGradient4203" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.3199999,0,0,0.0075,1.6001723e-5,884.48697)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="radialGradient4228" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.3199999,0,0,0.0075,1.6001723e-5,1043.487)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.85962546" + inkscape:cx="449.03608" + inkscape:cy="116.50387" + inkscape:document-units="px" + inkscape:current-layer="g4164" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + transform="translate(0,-890.3622)" + id="g4164" + inkscape:groupmode="layer" + inkscape:label="Rot" + style="display:inline"> + <rect + ry="0.99008864" + y="890.36218" + x="5.1415495e-006" + height="161.99998" + width="1728" + id="rect4166" + style="opacity:1;fill:#aa0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(4.2115011,0,0,1.7477339,4.6976628,-787.25101)" + inkscape:connector-curvature="0" + id="path4168" + d="m 55.347603,1000.9212 a 496.85897,57.329265 0 0 0 -51.3105474,0.2891 l 0,45.3711 c 0,0.237 0.1907242,0.4277 0.4277343,0.4277 l 399.1445401,0 c 0.23701,0 0.42773,-0.1907 0.42773,-0.4277 l 0,-28.8321 A 496.85897,57.329265 0 0 0 55.347603,1000.9212 Z" + style="opacity:1;fill:#550000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" /> + <path + transform="matrix(4.2125314,0,0,1.9743876,27.162466,-1045.6397)" + inkscape:connector-curvature="0" + id="path4170" + d="m -0.9179615,985.50214 c -0.23701,0 -0.427734,0.19072 -0.427734,0.42773 l 0,23.77343 a 496.85896,57.329264 0 0 1 51.3105475,-0.289 496.85896,57.329264 0 0 1 348.689448,16.8281 l 0,-40.31253 c 0,-0.23701 -0.19072,-0.42773 -0.42773,-0.42773 l -399.1445315,0 z" + style="opacity:1;fill:url(#linearGradient4186);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" /> + <rect + style="opacity:1;fill:url(#radialGradient4201);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4174" + width="400" + height="2" + x="-2.857143e-006" + y="1052.3622" + ry="0.427816" /> + <rect + ry="0.034893107" + y="890.36218" + x="3.6588654e-006" + height="2.9999878" + width="1728" + id="rect4176" + style="opacity:1;fill:url(#radialGradient4203);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:1;fill:url(#radialGradient4228);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4226" + width="1728" + height="2.9999878" + x="3.6588654e-006" + y="1049.3622" + ry="0.034893107" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/messageyellow.svg b/skins/blackhole/themes/default/skinparts/messageyellow.svg new file mode 100644 index 0000000..51a1f43 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/messageyellow.svg @@ -0,0 +1,203 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="1728" + height="162" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 1728 162" + sodipodi:docname="messageyellow.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4152"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4154" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4156" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4183"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4185" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4187" /> + </linearGradient> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4148" + x="-0.013382644" + width="1.0267653" + y="-0.11614827" + height="1.2322965"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="2.2304407" + id="feGaussianBlur4150" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="linearGradient4204" + gradientUnits="userSpaceOnUse" + x1="210.71375" + y1="901.98651" + x2="199.81989" + y2="1036.3486" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="radialGradient4565" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.3178877,0,0,0.01125004,0.57403969,883.54934)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4183" + id="radialGradient4567" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.3178877,0,0,0.01125004,0.57403969,1041.0494)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="radialGradient4569" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.3178877,0,0,0.00750002,0.57403877,884.48695)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4152" + id="radialGradient4571" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.3178876,0,0,0.00750002,0.57403877,1043.487)" + cx="200" + cy="983.36218" + fx="200" + fy="983.36218" + r="200" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.85962546" + inkscape:cx="449.03608" + inkscape:cy="116.50387" + inkscape:document-units="px" + inkscape:current-layer="g4188" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + style="display:inline" + inkscape:label="Gelb" + inkscape:groupmode="layer" + id="g4188" + transform="translate(0,-890.3622)"> + <rect + style="opacity:1;fill:#ffcc00;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4190" + width="1728" + height="161.99998" + x="5.0721487e-006" + y="890.36224" + ry="0.9900887" /> + <path + style="opacity:1;fill:#aa8800;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" + d="m 55.347603,1000.9212 a 496.85897,57.329265 0 0 0 -51.3105474,0.2891 l 0,45.3711 c 0,0.237 0.1907242,0.4277 0.4277343,0.4277 l 399.1445401,0 c 0.23701,0 0.42773,-0.1907 0.42773,-0.4277 l 0,-28.8321 A 496.85897,57.329265 0 0 0 55.347603,1000.9212 Z" + id="path4192" + inkscape:connector-curvature="0" + transform="matrix(4.2074416,0,0,2.2560334,5.5259383,-1321.8079)" /> + <path + style="opacity:1;fill:url(#linearGradient4204);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4148)" + d="m -0.9179615,985.50214 c -0.23701,0 -0.427734,0.19072 -0.427734,0.42773 l 0,23.77343 a 496.85896,57.329264 0 0 1 51.3105475,-0.289 496.85896,57.329264 0 0 1 348.689448,16.8281 l 0,-40.31253 c 0,-0.23701 -0.19072,-0.42773 -0.42773,-0.42773 l -399.1445315,0 z" + id="path4194" + inkscape:connector-curvature="0" + transform="matrix(4.2074271,0,0,2.1001906,27.992808,-1163.7311)" /> + <rect + style="opacity:1;fill:url(#radialGradient4565);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4196" + width="1727.155" + height="4.4999995" + x="0.57402736" + y="892.36224" + ry="0.96258593" /> + <rect + ry="0.96258593" + y="1049.8622" + x="0.57402736" + height="4.4999995" + width="1727.155" + id="rect4198" + style="opacity:1;fill:url(#radialGradient4567);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="opacity:1;fill:url(#radialGradient4569);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4200" + width="1727.155" + height="2.9999919" + x="0.57402647" + y="890.36218" + ry="0.034893151" /> + <rect + ry="0.034893151" + y="1049.3622" + x="0.57402647" + height="2.9999919" + width="1727.155" + id="rect4202" + style="opacity:1;fill:url(#radialGradient4571);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/progressbar.svg b/skins/blackhole/themes/default/skinparts/progressbar.svg new file mode 100644 index 0000000..77e5327 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/progressbar.svg @@ -0,0 +1,105 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="50" + height="30" + id="svg5635" + version="1.1" + inkscape:version="0.91pre3 r13670" + viewBox="0 0 49.999999 30" + sodipodi:docname="progressbar.svg"> + <defs + id="defs5637"> + <pattern + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern" /> + <pattern + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern-2" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6185" + id="linearGradient6191" + x1="42.000378" + y1="1025.342" + x2="42.000378" + y2="1049.3121" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.62499992,0,0,0.64999977,1.7955524e-6,366.32701)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient6185"> + <stop + style="stop-color:#00284a;stop-opacity:1" + offset="0" + id="stop6187" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop6189" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16.542884" + inkscape:cx="26.283646" + inkscape:cy="14.817159" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata5640"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1022.3622)"> + <rect + style="opacity:0.95;fill:url(#linearGradient6191);fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect6183" + width="49.999992" + height="25.999985" + x="4.9999999e-006" + y="1024.3622" + rx="0" + ry="0" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/progressbarback.svg b/skins/blackhole/themes/default/skinparts/progressbarback.svg new file mode 100644 index 0000000..eb07fe8 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/progressbarback.svg @@ -0,0 +1,158 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="600" + height="30" + id="svg5061" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 599.99999 30" + sodipodi:docname="progressbarback.svg"> + <defs + id="defs5063"> + <linearGradient + inkscape:collect="always" + id="linearGradient4169"> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4171" /> + <stop + style="stop-color:#00284a;stop-opacity:1" + offset="1" + id="stop4173" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5627"> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop5629" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop5631" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5619"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop5621" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop5623" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5619" + id="linearGradient5625" + x1="292" + y1="1049.1788" + x2="292" + y2="1018.4011" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0003642,0,0,1.5755257,-0.1092438,-604.90605)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5627" + id="linearGradient5633" + x1="269" + y1="1054.1072" + x2="269" + y2="1030.1171" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0003642,0,0,1.5755257,-0.1092438,-604.90605)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4169" + id="linearGradient4179" + gradientUnits="userSpaceOnUse" + x1="589.40759" + y1="1047.4875" + x2="589.39136" + y2="1033.7078" + gradientTransform="translate(-600.00029,0)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5627" + id="linearGradient4181" + gradientUnits="userSpaceOnUse" + x1="592.67389" + y1="1053.8467" + x2="592.67389" + y2="1018.0886" + gradientTransform="translate(-600.00029,0)" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1.7930029" + inkscape:cx="307" + inkscape:cy="2" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata5066"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1022.3622)"> + <rect + style="opacity:1;fill:url(#linearGradient5625);fill-opacity:1;stroke:url(#linearGradient5633);stroke-width:2.02869797;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5609" + width="597.97125" + height="27.971302" + x="1.014344" + y="1023.3765" + rx="14.067764" + ry="13.985651" /> + <path + sodipodi:open="true" + d="m -13.968908,1023.3526 a 12.963513,14.009566 0 0 1 11.2431397,7.0125 12.963513,14.009566 0 0 1 -0.018472,14.0287 12.963513,14.009566 0 0 1 -11.261561,6.9778" + sodipodi:end="1.5745921" + sodipodi:start="4.7114391" + sodipodi:ry="14.009566" + sodipodi:rx="12.963513" + sodipodi:cy="1037.3622" + sodipodi:cx="-13.956594" + sodipodi:type="arc" + id="path4177" + style="opacity:1;fill:url(#linearGradient4179);fill-opacity:1;stroke:url(#linearGradient4181);stroke-width:1.98086679;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + transform="scale(-1,1)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/progressbarback_replay.svg b/skins/blackhole/themes/default/skinparts/progressbarback_replay.svg new file mode 100644 index 0000000..427e654 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/progressbarback_replay.svg @@ -0,0 +1,113 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="1250" + height="90" + id="svg5061" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 1250 90" + sodipodi:docname="progressbarback_replay.svg"> + <defs + id="defs5063"> + <linearGradient + inkscape:collect="always" + id="linearGradient5627"> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop5629" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop5631" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5619"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop5621" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop5623" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5619" + id="linearGradient5625" + x1="292" + y1="1049.1788" + x2="292" + y2="1018.4011" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.0826315,0,0,4.7821383,0.21066728,-3977.3574)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5627" + id="linearGradient5633" + x1="269" + y1="1054.1072" + x2="269" + y2="1030.1171" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.0826315,0,0,4.7821383,0.21066728,-3977.3574)" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1.7554841" + inkscape:cx="106.52332" + inkscape:cy="11.991057" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata5066"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-962.3622)"> + <rect + style="opacity:1;fill:url(#linearGradient5625);fill-opacity:1;stroke:url(#linearGradient5633);stroke-width:5;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5609" + width="1244.9003" + height="84.900314" + x="2.5498345" + y="964.91199" + rx="0" + ry="0" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/progressbarback_replay_left.svg b/skins/blackhole/themes/default/skinparts/progressbarback_replay_left.svg new file mode 100644 index 0000000..17c639c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/progressbarback_replay_left.svg @@ -0,0 +1,116 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="45" + height="90" + id="svg4149" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 45 90.000001" + sodipodi:docname="progressbarback_replay_left.svg"> + <defs + id="defs4151"> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4169" + id="linearGradient4179" + gradientUnits="userSpaceOnUse" + x1="589.40759" + y1="1047.4875" + x2="589.39136" + y2="1033.7078" + gradientTransform="matrix(3.0433093,0,0,2.8551909,-1827.9644,-1954.5046)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4169"> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4171" /> + <stop + style="stop-color:#00284a;stop-opacity:1" + offset="1" + id="stop4173" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5627" + id="linearGradient4181" + gradientUnits="userSpaceOnUse" + x1="592.67389" + y1="1053.8467" + x2="592.67389" + y2="1018.0886" + gradientTransform="matrix(3.0433093,0,0,2.8551909,-1827.9644,-1954.5046)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5627"> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop5629" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop5631" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="3.7945122" + inkscape:cx="75.714286" + inkscape:cy="25.714286" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata4154"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-962.3622)"> + <path + d="m -44.997844,967.36603 a 39.451977,39.999985 0 0 1 34.686991,19.95181 39.451977,39.999985 0 0 1 -0.199294,40.43366 39.451977,39.999985 0 0 1 -34.881936,19.5993" + sodipodi:end="1.5946277" + sodipodi:start="4.6985523" + sodipodi:ry="39.999985" + sodipodi:rx="39.451977" + sodipodi:cy="1007.3622" + sodipodi:cx="-44.451977" + sodipodi:type="arc" + id="path4177" + style="opacity:1;fill:url(#linearGradient4179);fill-opacity:1;stroke:url(#linearGradient4181);stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + transform="scale(-1,1)" + sodipodi:open="true" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/progressbarend.svg b/skins/blackhole/themes/default/skinparts/progressbarend.svg new file mode 100644 index 0000000..13c2ae5 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/progressbarend.svg @@ -0,0 +1,116 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="15" + height="30" + id="svg4191" + version="1.1" + inkscape:version="0.91pre3 r13670" + viewBox="0 0 15 30" + sodipodi:docname="progressbarend.svg"> + <defs + id="defs4193"> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4169" + id="linearGradient4223" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-585.00008,-3.4468423e-5)" + x1="589.40759" + y1="1047.4875" + x2="589.39136" + y2="1033.7078" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4169"> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4171" /> + <stop + style="stop-color:#00284a;stop-opacity:1" + offset="1" + id="stop4173" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5627" + id="linearGradient4225" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-585.00008,-3.4468423e-5)" + x1="592.67389" + y1="1053.8467" + x2="592.67389" + y2="1018.0886" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5627"> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop5629" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop5631" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="20.693842" + inkscape:cx="-0.27737725" + inkscape:cy="14.43038" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata4196"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1022.3622)"> + <path + style="opacity:1;fill:url(#linearGradient4223);fill-opacity:1;stroke:url(#linearGradient4225);stroke-width:1.98086679;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4221" + sodipodi:type="arc" + sodipodi:cx="1.0436943" + sodipodi:cy="1037.3622" + sodipodi:rx="12.963513" + sodipodi:ry="14.009566" + sodipodi:start="4.7114391" + sodipodi:end="1.5745921" + d="m 1.0313805,1023.3526 a 12.963513,14.009566 0 0 1 11.2431395,7.0125 12.963513,14.009566 0 0 1 -0.01847,14.0287 12.963513,14.009566 0 0 1 -11.26156118,6.9778" + sodipodi:open="true" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/scrollbar.svg b/skins/blackhole/themes/default/skinparts/scrollbar.svg new file mode 100644 index 0000000..0c6de52 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/scrollbar.svg @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="20" + height="300" + id="svg5360" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 20 300" + sodipodi:docname="scrollbar.svg"> + <defs + id="defs5362"> + <linearGradient + id="linearGradient5933" + inkscape:collect="always"> + <stop + id="stop5935" + offset="0" + style="stop-color:#cccccc;stop-opacity:1" /> + <stop + id="stop5937" + offset="1" + style="stop-color:#000000;stop-opacity:0" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5236" + id="linearGradient5242" + x1="-1072.1458" + y1="554.61908" + x2="-1059.5234" + y2="554.61908" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.2327116,0,0,0.37971031,1306.489,691.76762)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5236"> + <stop + style="stop-color:#cccccc;stop-opacity:1" + offset="0" + id="stop5238" /> + <stop + style="stop-color:#000000;stop-opacity:0" + offset="1" + id="stop5240" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5933" + id="linearGradient5246" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.2327116,0,0,0.37971031,1326.4889,691.76762)" + x1="-1069.5354" + y1="554.61908" + x2="-1058.8707" + y2="554.61908" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4860596" + inkscape:cx="-66.453039" + inkscape:cy="136.37059" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata5365"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-752.3622)"> + <rect + transform="scale(-1,1)" + style="opacity:1;fill:url(#linearGradient5242);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5232" + width="10.138358" + height="300" + x="-10.138315" + y="752.36218" + ry="0.19488853" /> + <rect + ry="0.19488853" + y="752.36218" + x="9.8615866" + height="300" + width="10.138358" + id="rect5244" + style="opacity:1;fill:url(#linearGradient5246);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/scrollbarback.svg b/skins/blackhole/themes/default/skinparts/scrollbarback.svg new file mode 100644 index 0000000..a0be373 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/scrollbarback.svg @@ -0,0 +1,112 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="30" + height="800" + id="svg4741" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 30 800.00001" + sodipodi:docname="scrollbarback.svg"> + <defs + id="defs4743"> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4616" + id="linearGradient4891" + x1="1034.0717" + y1="213.93652" + x2="1060.0741" + y2="213.93652" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.99999887,0,0,7.2676787,22.001189,-1000.2029)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4616"> + <stop + style="stop-color:#999999;stop-opacity:1;" + offset="0" + id="stop4618" /> + <stop + style="stop-color:#999999;stop-opacity:0;" + offset="1" + id="stop4620" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4616" + id="linearGradient4911" + x1="-1083.0437" + y1="554.61908" + x2="-1052.5197" + y2="554.61908" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1.0511824" + inkscape:cx="20" + inkscape:cy="402.85714" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata4746"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-252.36219)"> + <g + transform="matrix(1.0344843,0,0,1.0125609,-1089.3886,90.776624)" + style="display:inline" + id="g4671"> + <rect + ry="0.51325583" + y="159.58109" + x="1067.0741" + height="790.07593" + width="14.999974" + id="rect4883" + style="opacity:1;fill:url(#linearGradient4891);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + transform="scale(-1,1)" + style="opacity:1;fill:url(#linearGradient4911);fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4893" + width="14.999974" + height="790.07593" + x="-1068.0741" + y="159.58109" + ry="0.51325583" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tabback.svg b/skins/blackhole/themes/default/skinparts/tabback.svg new file mode 100644 index 0000000..15e2a15 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tabback.svg @@ -0,0 +1,242 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="800" + height="200" + id="svg4153" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 800 200" + sodipodi:docname="tabback.svg"> + <defs + id="defs4155"> + <linearGradient + inkscape:collect="always" + id="linearGradient4160"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4162" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4164" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4146"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop4148" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop4150" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4703"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop4705" /> + <stop + style="stop-color:#333333;stop-opacity:1" + offset="1" + id="stop4707" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4703" + id="linearGradient4709" + x1="13.839722" + y1="1040.7826" + x2="801.53772" + y2="853.17749" + gradientUnits="userSpaceOnUse" /> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4799" + x="-0.096" + width="1.192" + y="-0.0576" + height="1.1152"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.2" + id="feGaussianBlur4801" /> + </filter> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4146" + id="radialGradient4152" + cx="400.00001" + cy="971.36218" + fx="400.00001" + fy="971.36218" + r="380" + gradientTransform="matrix(1,0,0,0.00263157,0,968.80596)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4146" + id="radialGradient4156" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.00263157,-3.417212e-6,1030.806)" + cx="400.00001" + cy="971.36218" + fx="400.00001" + fy="971.36218" + r="380" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4160" + id="radialGradient4166" + cx="19.000002" + cy="1002.3622" + fx="19.000002" + fy="1002.3622" + r="1.0000009" + gradientTransform="matrix(1,0,0,29.999973,0,-29068.476)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4160" + id="radialGradient4170" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,29.999973,382,-29068.476)" + cx="19.000002" + cy="1002.3622" + fx="19.000002" + fy="1002.3622" + r="1.0000009" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4160" + id="radialGradient4174" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,29.999973,762,-29068.476)" + cx="19.000002" + cy="1002.3622" + fx="19.000002" + fy="1002.3622" + r="1.0000009" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.3725434" + inkscape:cx="744.58182" + inkscape:cy="69.621951" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata4158"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.3622)"> + <rect + style="fill:url(#linearGradient4709);fill-opacity:1" + id="rect4701" + width="800" + height="200" + x="0" + y="852.36218" + ry="1.0185972" /> + <rect + style="fill:#000000;fill-opacity:1;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke:#ececec;stroke-opacity:1" + id="rect4711" + width="760" + height="60" + x="20" + y="972.36218" + ry="0.95768344" /> + <path + style="fill:#1957d1;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4799)" + d="m 380,977.3622 -30,25 30,25 z" + id="path4713" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" + transform="matrix(1.1299389,0,0,0.99316334,-42.224391,6.8524135)" /> + <path + transform="matrix(-1.1299389,0,0,0.99316334,842.63101,6.8524135)" + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path4803" + d="m 380,977.3622 -30,25 30,25 z" + style="fill:#1957d1;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4799)" /> + <rect + style="fill:url(#radialGradient4152);fill-opacity:1;stroke:#ececec;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4144" + width="760" + height="1.9999858" + x="20.000008" + y="970.36218" + ry="0.99999291" /> + <rect + ry="0.99999291" + y="1032.3622" + x="20.000006" + height="1.9999858" + width="760" + id="rect4154" + style="fill:url(#radialGradient4156);fill-opacity:1;stroke:#ececec;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="fill:url(#radialGradient4166);fill-opacity:1;stroke:#ececec;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4158" + width="1.9999918" + height="59.999989" + x="18.000006" + y="972.36218" + ry="0.95897168" /> + <rect + ry="0.95897168" + y="972.36218" + x="400" + height="59.999989" + width="1.9999918" + id="rect4168" + style="fill:url(#radialGradient4170);fill-opacity:1;stroke:#ececec;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="fill:url(#radialGradient4174);fill-opacity:1;stroke:#ececec;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4172" + width="1.9999918" + height="59.999989" + x="780" + y="972.36218" + ry="0.95897168" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tacho_load_back.svg b/skins/blackhole/themes/default/skinparts/tacho_load_back.svg new file mode 100644 index 0000000..91107ec --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tacho_load_back.svg @@ -0,0 +1,767 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="tacho_load_back.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4633"> + <stop + style="stop-color:#e6e6e6;stop-opacity:1;" + offset="0" + id="stop4635" /> + <stop + style="stop-color:#999999;stop-opacity:1" + offset="1" + id="stop4637" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4620"> + <stop + style="stop-color:#b3b3b3;stop-opacity:1;" + offset="0" + id="stop4622" /> + <stop + style="stop-color:#b3b3b3;stop-opacity:0;" + offset="1" + id="stop4624" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4620" + id="radialGradient4626" + cx="110.27615" + cy="12.330762" + fx="110.27615" + fy="12.330762" + r="74.998166" + gradientTransform="matrix(-1.8628953,0.67964205,-0.52439662,-1.4373683,322.17528,-44.829535)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4633" + id="linearGradient4643" + x1="80.356987" + y1="68.492752" + x2="68.958046" + y2="80.47979" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.94150667,0,0,0.94152267,4.3869559,4.3857232)" /> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4263" + x="-0.05507957" + width="1.1101591" + y="-0.026737965" + height="1.0534759"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.39862517" + id="feGaussianBlur4265" /> + </filter> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="71.263485" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Back" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-902.3622)" + style="display:inline" /> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Uhr" + style="display:inline" /> + <g + inkscape:groupmode="layer" + id="layer3" + inkscape:label="Ziffernblatt" /> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Ziffern"> + <g + id="g4404"> + <path + sodipodi:open="true" + d="M 28.394987,19.250286 A 72.763588,72.685867 0 0 1 130.82373,28.448256 72.763588,72.685867 0 0 1 121.73828,130.77851 72.763588,72.685867 0 0 1 19.28783,121.82499 72.763588,72.685867 0 0 1 28.128539,19.473353" + sodipodi:end="4.012464" + sodipodi:start="4.0172418" + sodipodi:ry="72.685867" + sodipodi:rx="72.763588" + sodipodi:cy="75.070084" + sodipodi:cx="74.999954" + sodipodi:type="arc" + id="path4618" + style="display:inline;opacity:0.75;fill:#000000;fill-opacity:1;stroke:url(#radialGradient4626);stroke-width:4.494;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + d="M 70.175796,69.215654 A 7.5318813,7.5319991 0 0 1 80.778362,70.168778 7.5318813,7.5319991 0 0 1 79.837929,80.772642 7.5318813,7.5319991 0 0 1 69.233115,79.844873 7.5318813,7.5319991 0 0 1 70.14819,69.23879" + sodipodi:open="true" + sodipodi:end="4.0124596" + sodipodi:start="4.0172418" + sodipodi:ry="7.5319991" + sodipodi:rx="7.5318813" + sodipodi:cy="74.999924" + sodipodi:cx="74.999954" + sodipodi:type="arc" + id="path4631" + style="display:inline;opacity:0.75;fill:url(#linearGradient4643);fill-opacity:1;stroke:#999999;stroke-width:0.94151461;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path4245" + d="m 128.27004,104.31786 c 4.05369,-9.895602 6.31749,-18.412239 6.97609,-29.704639 l 10.35162,0 c -0.28964,12.8754 -3.86039,23.940773 -9.22644,35.780599 z" + style="display:inline;fill:#d40000;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4263)" /> + <rect + inkscape:transform-center-y="63.763147" + inkscape:transform-center-x="-1.380587e-005" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4651" + width="1.999997" + height="14.240295" + x="74.000023" + y="131.489" /> + <rect + inkscape:transform-center-y="55.220514" + inkscape:transform-center-x="31.881558" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4656" + width="1.999997" + height="14.240295" + x="101.37493" + y="83.961533" + transform="matrix(0.8660254,0.5,-0.5,0.8660254,0,0)" /> + <rect + transform="matrix(0.5,0.8660254,-0.8660254,0.5,0,0)" + y="29.114088" + x="101.31856" + height="14.240295" + width="1.999997" + id="rect4658" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="55.220498" + inkscape:transform-center-y="31.881587" /> + <rect + inkscape:transform-center-y="1.4955199e-005" + inkscape:transform-center-x="63.763147" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4660" + width="1.999997" + height="14.240295" + x="73.846016" + y="-18.357008" + transform="matrix(0,1,-1,0,0,0)" /> + <rect + transform="matrix(-0.5,0.8660254,-0.8660254,-0.5,0,0)" + y="-45.731911" + x="26.31855" + height="14.240295" + width="1.999997" + id="rect4662" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="55.220514" + inkscape:transform-center-y="-31.881561" /> + <rect + inkscape:transform-center-y="-55.220498" + inkscape:transform-center-x="31.881587" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4664" + width="1.999997" + height="14.240295" + x="-28.528894" + y="-45.675541" + transform="matrix(-0.8660254,0.5,-0.5,-0.8660254,0,0)" /> + <rect + transform="scale(-1,-1)" + y="-18.203001" + x="-75.999992" + height="14.240295" + width="1.999997" + id="rect4666" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="1.2844736e-005" + inkscape:transform-center-y="-63.763147" /> + <rect + inkscape:transform-center-y="-55.220513" + inkscape:transform-center-x="-31.881559" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4668" + width="1.999997" + height="14.240295" + x="-103.37489" + y="29.324465" + transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,0,0)" /> + <rect + transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,0,0)" + y="84.171913" + x="-103.31852" + height="14.240295" + width="1.999997" + id="rect4670" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-55.220498" + inkscape:transform-center-y="-31.881592" /> + <rect + inkscape:transform-center-y="-2.044845e-005" + inkscape:transform-center-x="-63.763147" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4672" + width="1.999997" + height="14.240295" + x="-75.845978" + y="131.64301" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0.5,-0.8660254,0.8660254,0.5,0,0)" + y="159.01791" + x="-28.318512" + height="14.240295" + width="1.999997" + id="rect4674" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-55.220518" + inkscape:transform-center-y="31.881558" /> + <rect + transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,0,0)" + y="126.76038" + x="81.426651" + height="10.718534" + width="1.9999983" + id="rect4676" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="6.8351622" + inkscape:transform-center-y="65.032436" /> + <rect + transform="matrix(0.9781476,0.20791169,-0.20791169,0.9781476,0,0)" + inkscape:transform-center-y="63.961713" + inkscape:transform-center-x="13.595462" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4688" + width="1.9999983" + height="10.718534" + x="87.950188" + y="117.77891" /> + <rect + y="108.16473" + x="93.499168" + height="10.718534" + width="1.9999983" + id="rect4690" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="20.206801" + inkscape:transform-center-y="62.190201" + transform="matrix(0.95105652,0.30901699,-0.30901699,0.95105652,0,0)" /> + <rect + transform="matrix(0.91354546,0.40673664,-0.40673664,0.91354546,0,0)" + inkscape:transform-center-y="59.737327" + inkscape:transform-center-x="26.596754" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4692" + width="1.9999983" + height="10.718534" + x="98.012794" + y="98.023193" /> + <rect + y="76.607063" + x="103.74807" + height="10.718534" + width="1.9999983" + id="rect4694" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="38.435639" + inkscape:transform-center-y="52.902143" + transform="matrix(0.809017,0.58778525,-0.58778525,0.809017,0,0)" /> + <rect + transform="matrix(0.74314483,0.6691306,-0.6691306,0.74314483,0,0)" + inkscape:transform-center-y="48.594723" + inkscape:transform-center-x="43.754863" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4696" + width="1.9999983" + height="10.718534" + x="104.90688" + y="65.567108" /> + <rect + y="54.466499" + x="104.90536" + height="10.718534" + width="1.9999983" + id="rect4698" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="48.5947" + inkscape:transform-center-y="43.754887" + transform="matrix(0.66913061,0.74314482,-0.74314482,0.66913061,0,0)" /> + <rect + transform="matrix(0.58778526,0.80901699,-0.80901699,0.58778526,0,0)" + inkscape:transform-center-y="38.435662" + inkscape:transform-center-x="52.902125" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4700" + width="1.9999983" + height="10.718534" + x="103.74351" + y="43.426861" /> + <rect + y="22.012312" + x="98.002342" + height="10.718534" + width="1.9999983" + id="rect4702" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="59.737308" + inkscape:transform-center-y="26.596781" + transform="matrix(0.40673665,0.91354545,-0.91354545,0.40673665,0,0)" /> + <rect + transform="matrix(0.309017,0.95105651,-0.95105651,0.309017,0,0)" + inkscape:transform-center-y="20.206832" + inkscape:transform-center-x="62.190182" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4704" + width="1.9999983" + height="10.718534" + x="93.485924" + y="11.872024" /> + <rect + y="2.2593789" + x="87.934296" + height="10.718534" + width="1.9999983" + id="rect4706" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="63.961687" + inkscape:transform-center-y="13.595491" + transform="matrix(0.2079117,0.9781476,-0.9781476,0.2079117,0,0)" /> + <rect + transform="matrix(0.10452847,0.99452189,-0.99452189,0.10452847,0,0)" + inkscape:transform-center-y="6.8351958" + inkscape:transform-center-x="65.032414" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4708" + width="1.9999983" + height="10.718534" + x="81.408287" + y="-6.720304" /> + <rect + y="-22.395264" + x="65.729012" + height="10.718534" + width="1.9999983" + id="rect4710" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="65.032416" + inkscape:transform-center-y="-6.8351727" + transform="matrix(-0.10452846,0.9945219,-0.9945219,-0.10452846,0,0)" /> + <rect + transform="matrix(-0.20791169,0.9781476,-0.9781476,-0.20791169,0,0)" + inkscape:transform-center-y="-13.595466" + inkscape:transform-center-x="63.961692" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4712" + width="1.9999983" + height="10.718534" + x="56.747536" + y="-28.918802" /> + <rect + y="-34.467785" + x="47.133366" + height="10.718534" + width="1.9999983" + id="rect4714" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="62.190189" + inkscape:transform-center-y="-20.206804" + transform="matrix(-0.30901699,0.95105652,-0.95105652,-0.30901699,0,0)" /> + <rect + transform="matrix(-0.40673664,0.91354546,-0.91354546,-0.40673664,0,0)" + inkscape:transform-center-y="-26.596753" + inkscape:transform-center-x="59.737318" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4716" + width="1.9999983" + height="10.718534" + x="36.991837" + y="-38.981415" /> + <rect + y="-44.716694" + x="15.575709" + height="10.718534" + width="1.9999983" + id="rect4718" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="52.902137" + inkscape:transform-center-y="-38.435636" + transform="matrix(-0.58778525,0.809017,-0.809017,-0.58778525,0,0)" /> + <rect + transform="matrix(-0.6691306,0.74314483,-0.74314483,-0.6691306,0,0)" + inkscape:transform-center-y="-43.754862" + inkscape:transform-center-x="48.594717" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4720" + width="1.9999983" + height="10.718534" + x="4.5357528" + y="-45.875504" /> + <rect + y="-45.873978" + x="-6.5648546" + height="10.718534" + width="1.9999983" + id="rect4722" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="43.754881" + inkscape:transform-center-y="-48.594699" + transform="matrix(-0.74314482,0.66913061,-0.66913061,-0.74314482,0,0)" /> + <rect + transform="matrix(-0.80901699,0.58778526,-0.58778526,-0.80901699,0,0)" + inkscape:transform-center-y="-52.902122" + inkscape:transform-center-x="38.435657" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4724" + width="1.9999983" + height="10.718534" + x="-17.604492" + y="-44.712132" /> + <rect + y="-38.970963" + x="-39.019043" + height="10.718534" + width="1.9999983" + id="rect4726" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="26.596775" + inkscape:transform-center-y="-59.737308" + transform="matrix(-0.91354545,0.40673665,-0.40673665,-0.91354545,0,0)" /> + <rect + transform="matrix(-0.95105651,0.309017,-0.309017,-0.95105651,0,0)" + inkscape:transform-center-y="-62.190181" + inkscape:transform-center-x="20.206825" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4728" + width="1.9999983" + height="10.718534" + x="-49.159332" + y="-34.454544" /> + <rect + y="-28.902918" + x="-58.771976" + height="10.718534" + width="1.9999983" + id="rect4730" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="13.595486" + inkscape:transform-center-y="-63.961685" + transform="matrix(-0.9781476,0.2079117,-0.2079117,-0.9781476,0,0)" /> + <rect + transform="matrix(-0.99452189,0.10452847,-0.10452847,-0.99452189,0,0)" + inkscape:transform-center-y="-65.032411" + inkscape:transform-center-x="6.8351958" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4732" + width="1.9999983" + height="10.718534" + x="-67.751656" + y="-22.376909" /> + <rect + y="2.2838387" + x="-89.95015" + height="10.718534" + width="1.9999983" + id="rect4734" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-13.59546" + inkscape:transform-center-y="-63.961689" + transform="matrix(-0.9781476,-0.20791169,0.20791169,-0.9781476,0,0)" /> + <rect + transform="matrix(-0.9945219,-0.10452846,0.10452846,-0.9945219,0,0)" + inkscape:transform-center-y="-65.032413" + inkscape:transform-center-x="-6.8351672" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4736" + width="1.9999983" + height="10.718534" + x="-83.426613" + y="-6.6976385" /> + <rect + transform="matrix(-0.95105652,-0.30901699,0.30901699,-0.95105652,0,0)" + inkscape:transform-center-y="-62.190189" + inkscape:transform-center-x="-20.2068" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4738" + width="1.9999983" + height="10.718534" + x="-95.49913" + y="11.89801" /> + <rect + y="22.039541" + x="-100.01276" + height="10.718534" + width="1.9999983" + id="rect4740" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-26.596747" + inkscape:transform-center-y="-59.737321" + transform="matrix(-0.91354546,-0.40673664,0.40673664,-0.91354546,0,0)" /> + <rect + transform="matrix(-0.74314483,-0.6691306,0.6691306,-0.74314483,0,0)" + inkscape:transform-center-y="-48.594714" + inkscape:transform-center-x="-43.75486" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4742" + width="1.9999983" + height="10.718534" + x="-106.90685" + y="54.495621" /> + <rect + y="43.455666" + x="-105.74803" + height="10.718534" + width="1.9999983" + id="rect4744" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-38.435629" + inkscape:transform-center-y="-52.902142" + transform="matrix(-0.809017,-0.58778525,0.58778525,-0.809017,0,0)" /> + <rect + y="65.59623" + x="-106.90533" + height="10.718534" + width="1.9999983" + id="rect4746" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-48.594699" + inkscape:transform-center-y="-43.754879" + transform="matrix(-0.66913061,-0.74314482,0.74314482,-0.66913061,0,0)" /> + <rect + transform="matrix(-0.58778526,-0.80901699,0.80901699,-0.58778526,0,0)" + inkscape:transform-center-y="-38.435656" + inkscape:transform-center-x="-52.902119" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4748" + width="1.9999983" + height="10.718534" + x="-105.74348" + y="76.635864" /> + <rect + y="98.050407" + x="-100.00231" + height="10.718534" + width="1.9999983" + id="rect4750" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-59.737299" + inkscape:transform-center-y="-26.596772" + transform="matrix(-0.40673665,-0.91354545,0.91354545,-0.40673665,0,0)" /> + <rect + transform="matrix(-0.309017,-0.95105651,0.95105651,-0.309017,0,0)" + inkscape:transform-center-y="-20.206824" + inkscape:transform-center-x="-62.190172" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4752" + width="1.9999983" + height="10.718534" + x="-95.485893" + y="108.1907" /> + <rect + y="117.80334" + x="-89.934265" + height="10.718534" + width="1.9999983" + id="rect4754" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-63.961672" + inkscape:transform-center-y="-13.595487" + transform="matrix(-0.2079117,-0.9781476,0.9781476,-0.2079117,0,0)" /> + <rect + transform="matrix(-0.10452847,-0.99452189,0.99452189,-0.10452847,0,0)" + inkscape:transform-center-y="-6.8351946" + inkscape:transform-center-x="-65.032398" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4756" + width="1.9999983" + height="10.718534" + x="-83.408257" + y="126.78302" /> + <rect + y="142.45798" + x="-67.728981" + height="10.718534" + width="1.9999983" + id="rect4758" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-65.032401" + inkscape:transform-center-y="6.8351634" + transform="matrix(0.10452846,-0.9945219,0.9945219,0.10452846,0,0)" /> + <rect + transform="matrix(0.20791169,-0.9781476,0.9781476,0.20791169,0,0)" + inkscape:transform-center-y="13.595459" + inkscape:transform-center-x="-63.961682" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4760" + width="1.9999983" + height="10.718534" + x="-58.747505" + y="148.98152" /> + <rect + y="154.5305" + x="-49.133335" + height="10.718534" + width="1.9999983" + id="rect4762" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-62.190181" + inkscape:transform-center-y="20.206799" + transform="matrix(0.30901699,-0.95105652,0.95105652,0.30901699,0,0)" /> + <rect + transform="matrix(0.40673664,-0.91354546,0.91354546,0.40673664,0,0)" + inkscape:transform-center-y="26.596748" + inkscape:transform-center-x="-59.737308" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4764" + width="1.9999983" + height="10.718534" + x="-38.991806" + y="159.04413" /> + <text + sodipodi:linespacing="125%" + id="text4769" + y="129.64612" + x="69.422562" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#008000" + y="129.64612" + x="69.422562" + id="tspan4771" + sodipodi:role="line">0</tspan></text> + <g + id="text4769-3" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4316" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#008000" + d="m 38.200996,101.65682 -0.552273,0.57273 -0.961363,-0.96137 0,-4.090904 1.513636,-1.534091 0,6.013635 z m -0.286364,-6.299999 -1.513636,1.534091 -4.970454,0 -1.513637,-1.534091 7.997727,0 z m -6.75,5.911359 -0.961363,0.96137 -0.572727,-0.57273 0,-6.013635 1.53409,1.534091 0,4.090904 z m 7.036364,8.12046 -1.513636,-1.53409 0,-4.09091 0.961363,-0.96136 0.552273,0.59318 0,5.99318 z m -0.286364,0.28636 -7.997727,0 1.513637,-1.53409 4.970454,0 1.513636,1.53409 z m -6.75,-1.82045 -1.53409,1.53409 0,-5.99318 0.572727,-0.59318 0.961363,0.96136 0,4.09091 z" /> + <path + id="path4318" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#008000" + d="m 40.660815,109.675 0,-1.53409 1.534091,0 0,1.53409 -1.534091,0 z" /> + <path + id="path4320" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#008000" + d="m 52.899984,95.356821 -1.513636,1.534091 -4.970455,0 -1.513636,-1.534091 7.997727,0 z m 0,14.318179 -7.997727,0 1.513636,-1.53409 4.970455,0 1.513636,1.53409 z m -8.284091,-8.01818 0,-6.013635 1.534091,1.534091 0,4.090904 -0.961364,0.96137 -0.572727,-0.57273 z m 8.570455,1.73864 0,5.99318 -1.513637,-1.53409 0,-4.09091 0.961364,-0.96136 0.552273,0.59318 z m -1.615909,-1.63637 0.777272,0.75682 -0.777272,0.75682 -5.338637,0 -0.756818,-0.75682 0.756818,-0.75682 5.338637,0 z" /> + </g> + <g + id="text4769-3-3" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4323" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#008000" + d="m 29.331,54.935455 0,5.993182 -1.534091,-1.534091 0,-4.090909 0.961363,-0.961364 0.572728,0.593182 z m -1.534091,-2.127273 0,-4.090909 1.534091,-1.534091 0,6.013636 -0.572728,0.572728 -0.961363,-0.961364 z" /> + <path + id="path4325" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#008000" + d="m 32.744672,61.215 0,-1.534091 1.53409,0 0,1.534091 -1.53409,0 z" /> + <path + id="path4327" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#008000" + d="m 45.270204,53.196818 -0.552272,0.572728 -0.961364,-0.961364 0,-4.090909 1.513636,-1.534091 0,6.013636 z m -0.286363,-6.3 -1.513637,1.534091 -4.970454,0 -1.513637,-1.534091 7.997728,0 z m -6.75,5.911364 -0.961364,0.961364 -0.572727,-0.572728 0,-6.013636 1.534091,1.534091 0,4.090909 z m 7.036363,8.120455 -1.513636,-1.534091 0,-4.090909 0.961364,-0.961364 0.552272,0.593182 0,5.993182 z m -0.286363,0.286363 -7.997728,0 1.513637,-1.534091 4.970454,0 1.513637,1.534091 z m -6.75,-1.820454 -1.534091,1.534091 0,-5.993182 0.572727,-0.593182 0.961364,0.961364 0,4.090909 z" /> + </g> + <g + id="text4769-3-3-0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffff00;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4330" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffff00" + d="m 67.563719,28.791591 0,5.993182 -1.534091,-1.534091 0,-4.090909 0.961364,-0.961364 0.572727,0.593182 z m -1.534091,-2.127273 0,-4.090909 1.534091,-1.534091 0,6.013637 -0.572727,0.572727 -0.961364,-0.961364 z" /> + <path + id="path4332" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffff00" + d="m 70.977391,35.071136 0,-1.53409 1.534091,0 0,1.53409 -1.534091,0 z" /> + <path + id="path4334" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffff00" + d="m 83.21656,20.752955 -1.513636,1.534091 -4.970455,0 -1.513636,-1.534091 7.997727,0 z m 0,14.318181 -7.997727,0 1.513636,-1.53409 4.970455,0 1.513636,1.53409 z m -8.284091,-8.018181 0,-6.013637 1.534091,1.534091 0,4.090909 -0.961364,0.961364 -0.572727,-0.572727 z m 8.570455,1.738636 0,5.993182 -1.513637,-1.534091 0,-4.090909 0.961364,-0.961364 0.552273,0.593182 z m -1.615909,-1.636364 0.777272,0.756819 -0.777272,0.756818 -5.338637,0 -0.756818,-0.756818 0.756818,-0.756819 5.338637,0 z" /> + </g> + <g + id="text4769-3-3-0-9" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffff00;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4337" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffff00" + d="m 107.67709,46.948088 -1.51364,1.534091 -4.97045,0 -1.513638,-1.534091 7.997728,0 z m 0,14.318182 -7.997728,0 1.513638,-1.534091 4.97045,0 1.51364,1.534091 z m -6.75,-5.911364 0,4.090909 -1.534092,1.534091 0,-5.993182 0.572728,-0.593182 0.961364,0.961364 z m 5.52273,-2.495454 0,-4.09091 1.51363,-1.53409 0,6.013636 -0.55227,0.572727 -0.96136,-0.961363 z m -0.10228,0.490909 0.77728,0.756818 -0.77728,0.756818 -5.33863,0 -0.75682,-0.756818 0.75682,-0.756818 5.33863,0 z" /> + <path + id="path4339" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffff00" + d="m 110.42327,61.26627 0,-1.534091 1.53409,0 0,1.534091 -1.53409,0 z" /> + <path + id="path4341" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffff00" + d="m 122.9488,53.248088 -0.55227,0.572727 -0.96136,-0.961363 0,-4.09091 1.51363,-1.53409 0,6.013636 z m -0.28636,-6.3 -1.51364,1.534091 -4.97045,0 -1.51364,-1.534091 7.99773,0 z m -6.75,5.911364 -0.96136,0.961363 -0.57273,-0.572727 0,-6.013636 1.53409,1.53409 0,4.09091 z m 7.03636,8.120454 -1.51363,-1.534091 0,-4.090909 0.96136,-0.961364 0.55227,0.593182 0,5.993182 z m -0.28636,0.286364 -7.99773,0 1.51364,-1.534091 4.97045,0 1.51364,1.534091 z m -6.75,-1.820455 -1.53409,1.534091 0,-5.993182 0.57273,-0.593182 0.96136,0.961364 0,4.090909 z" /> + </g> + <g + id="text4769-3-3-0-9-9" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4344" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ff0000" + d="m 107.00009,95.273119 -1.51364,1.534091 -4.97045,0 -1.51364,-1.534091 7.99773,0 z m 0,14.318181 -7.99773,0 1.51364,-1.53409 4.97045,0 1.51364,1.53409 z m -6.75,-5.91136 0,4.09091 -1.534094,1.53409 0,-5.99318 0.572728,-0.59319 0.961366,0.96137 z m 5.52272,-2.49546 0,-4.090906 1.51364,-1.534091 0,6.013637 -0.55227,0.57273 -0.96137,-0.96137 z m -0.10227,0.49091 0.77727,0.75682 -0.77727,0.75682 -5.33863,0 -0.756823,-0.75682 0.756823,-0.75682 5.33863,0 z" /> + <path + id="path4346" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ff0000" + d="m 109.74627,109.5913 0,-1.53409 1.53409,0 0,1.53409 -1.53409,0 z" /> + <path + id="path4348" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ff0000" + d="m 121.98544,95.273119 -1.51364,1.534091 -4.97045,0 -1.51364,-1.534091 7.99773,0 z m 0,14.318181 -7.99773,0 1.51364,-1.53409 4.97045,0 1.51364,1.53409 z m -8.28409,-8.01818 0,-6.013637 1.53409,1.534091 0,4.090906 -0.96136,0.96137 -0.57273,-0.57273 z m 8.57045,1.73864 0,5.99318 -1.51363,-1.53409 0,-4.09091 0.96136,-0.96137 0.55227,0.59319 z m -1.61591,-1.63637 0.77728,0.75682 -0.77728,0.75682 -5.33863,0 -0.75682,-0.75682 0.75682,-0.75682 5.33863,0 z" /> + </g> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tacho_percent_back.svg b/skins/blackhole/themes/default/skinparts/tacho_percent_back.svg new file mode 100644 index 0000000..7541297 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tacho_percent_back.svg @@ -0,0 +1,749 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="tacho_percent_back.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4633"> + <stop + style="stop-color:#e6e6e6;stop-opacity:1;" + offset="0" + id="stop4635" /> + <stop + style="stop-color:#999999;stop-opacity:1" + offset="1" + id="stop4637" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4620"> + <stop + style="stop-color:#b3b3b3;stop-opacity:1;" + offset="0" + id="stop4622" /> + <stop + style="stop-color:#b3b3b3;stop-opacity:0;" + offset="1" + id="stop4624" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4620" + id="radialGradient4626" + cx="110.27615" + cy="12.330762" + fx="110.27615" + fy="12.330762" + r="74.998166" + gradientTransform="matrix(-1.8628953,0.67964205,-0.52439662,-1.4373683,322.17528,-44.829535)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4633" + id="linearGradient4643" + x1="80.356987" + y1="68.492752" + x2="68.958046" + y2="80.47979" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.94150667,0,0,0.94152267,4.3869559,4.3857232)" /> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4263" + x="-0.05507957" + width="1.1101591" + y="-0.026737965" + height="1.0534759"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.39862517" + id="feGaussianBlur4265" /> + </filter> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="65.064049" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Uhr" + style="display:inline" /> + <g + inkscape:groupmode="layer" + id="layer3" + inkscape:label="Ziffernblatt" /> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Ziffern"> + <g + id="g4406"> + <path + sodipodi:open="true" + d="M 28.394987,19.250286 A 72.763588,72.685867 0 0 1 130.82373,28.448256 72.763588,72.685867 0 0 1 121.73828,130.77851 72.763588,72.685867 0 0 1 19.28783,121.82499 72.763588,72.685867 0 0 1 28.128539,19.473353" + sodipodi:end="4.012464" + sodipodi:start="4.0172418" + sodipodi:ry="72.685867" + sodipodi:rx="72.763588" + sodipodi:cy="75.070084" + sodipodi:cx="74.999954" + sodipodi:type="arc" + id="path4618" + style="display:inline;opacity:0.75;fill:#000000;fill-opacity:1;stroke:url(#radialGradient4626);stroke-width:4.494;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + d="M 70.175796,69.215654 A 7.5318813,7.5319991 0 0 1 80.778362,70.168778 7.5318813,7.5319991 0 0 1 79.837929,80.772642 7.5318813,7.5319991 0 0 1 69.233115,79.844873 7.5318813,7.5319991 0 0 1 70.14819,69.23879" + sodipodi:open="true" + sodipodi:end="4.0124596" + sodipodi:start="4.0172418" + sodipodi:ry="7.5319991" + sodipodi:rx="7.5318813" + sodipodi:cy="74.999924" + sodipodi:cx="74.999954" + sodipodi:type="arc" + id="path4631" + style="display:inline;opacity:0.75;fill:url(#linearGradient4643);fill-opacity:1;stroke:#999999;stroke-width:0.94151461;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path4245" + d="m 128.27004,104.31786 c 4.05369,-9.895602 6.31749,-18.412239 6.97609,-29.704639 l 10.35162,0 c -0.28964,12.8754 -3.86039,23.940773 -9.22644,35.780599 z" + style="display:inline;fill:#d40000;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4263)" /> + <rect + inkscape:transform-center-y="63.763147" + inkscape:transform-center-x="-1.380587e-005" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4651" + width="1.999997" + height="14.240295" + x="74.000023" + y="131.489" /> + <rect + inkscape:transform-center-y="55.220514" + inkscape:transform-center-x="31.881558" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4656" + width="1.999997" + height="14.240295" + x="101.37493" + y="83.961533" + transform="matrix(0.8660254,0.5,-0.5,0.8660254,0,0)" /> + <rect + transform="matrix(0.5,0.8660254,-0.8660254,0.5,0,0)" + y="29.114088" + x="101.31856" + height="14.240295" + width="1.999997" + id="rect4658" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="55.220498" + inkscape:transform-center-y="31.881587" /> + <rect + inkscape:transform-center-y="1.4955199e-005" + inkscape:transform-center-x="63.763147" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4660" + width="1.999997" + height="14.240295" + x="73.846016" + y="-18.357008" + transform="matrix(0,1,-1,0,0,0)" /> + <rect + transform="matrix(-0.5,0.8660254,-0.8660254,-0.5,0,0)" + y="-45.731911" + x="26.31855" + height="14.240295" + width="1.999997" + id="rect4662" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="55.220514" + inkscape:transform-center-y="-31.881561" /> + <rect + inkscape:transform-center-y="-55.220498" + inkscape:transform-center-x="31.881587" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4664" + width="1.999997" + height="14.240295" + x="-28.528894" + y="-45.675541" + transform="matrix(-0.8660254,0.5,-0.5,-0.8660254,0,0)" /> + <rect + transform="scale(-1,-1)" + y="-18.203001" + x="-75.999992" + height="14.240295" + width="1.999997" + id="rect4666" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="1.2844736e-005" + inkscape:transform-center-y="-63.763147" /> + <rect + inkscape:transform-center-y="-55.220513" + inkscape:transform-center-x="-31.881559" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4668" + width="1.999997" + height="14.240295" + x="-103.37489" + y="29.324465" + transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,0,0)" /> + <rect + transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,0,0)" + y="84.171913" + x="-103.31852" + height="14.240295" + width="1.999997" + id="rect4670" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-55.220498" + inkscape:transform-center-y="-31.881592" /> + <rect + inkscape:transform-center-y="-2.044845e-005" + inkscape:transform-center-x="-63.763147" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4672" + width="1.999997" + height="14.240295" + x="-75.845978" + y="131.64301" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0.5,-0.8660254,0.8660254,0.5,0,0)" + y="159.01791" + x="-28.318512" + height="14.240295" + width="1.999997" + id="rect4674" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-55.220518" + inkscape:transform-center-y="31.881558" /> + <rect + transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,0,0)" + y="126.76038" + x="81.426651" + height="10.718534" + width="1.9999983" + id="rect4676" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="6.8351622" + inkscape:transform-center-y="65.032436" /> + <rect + transform="matrix(0.9781476,0.20791169,-0.20791169,0.9781476,0,0)" + inkscape:transform-center-y="63.961713" + inkscape:transform-center-x="13.595462" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4688" + width="1.9999983" + height="10.718534" + x="87.950188" + y="117.77891" /> + <rect + y="108.16473" + x="93.499168" + height="10.718534" + width="1.9999983" + id="rect4690" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="20.206801" + inkscape:transform-center-y="62.190201" + transform="matrix(0.95105652,0.30901699,-0.30901699,0.95105652,0,0)" /> + <rect + transform="matrix(0.91354546,0.40673664,-0.40673664,0.91354546,0,0)" + inkscape:transform-center-y="59.737327" + inkscape:transform-center-x="26.596754" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4692" + width="1.9999983" + height="10.718534" + x="98.012794" + y="98.023193" /> + <rect + y="76.607063" + x="103.74807" + height="10.718534" + width="1.9999983" + id="rect4694" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="38.435639" + inkscape:transform-center-y="52.902143" + transform="matrix(0.809017,0.58778525,-0.58778525,0.809017,0,0)" /> + <rect + transform="matrix(0.74314483,0.6691306,-0.6691306,0.74314483,0,0)" + inkscape:transform-center-y="48.594723" + inkscape:transform-center-x="43.754863" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4696" + width="1.9999983" + height="10.718534" + x="104.90688" + y="65.567108" /> + <rect + y="54.466499" + x="104.90536" + height="10.718534" + width="1.9999983" + id="rect4698" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="48.5947" + inkscape:transform-center-y="43.754887" + transform="matrix(0.66913061,0.74314482,-0.74314482,0.66913061,0,0)" /> + <rect + transform="matrix(0.58778526,0.80901699,-0.80901699,0.58778526,0,0)" + inkscape:transform-center-y="38.435662" + inkscape:transform-center-x="52.902125" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4700" + width="1.9999983" + height="10.718534" + x="103.74351" + y="43.426861" /> + <rect + y="22.012312" + x="98.002342" + height="10.718534" + width="1.9999983" + id="rect4702" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="59.737308" + inkscape:transform-center-y="26.596781" + transform="matrix(0.40673665,0.91354545,-0.91354545,0.40673665,0,0)" /> + <rect + transform="matrix(0.309017,0.95105651,-0.95105651,0.309017,0,0)" + inkscape:transform-center-y="20.206832" + inkscape:transform-center-x="62.190182" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4704" + width="1.9999983" + height="10.718534" + x="93.485924" + y="11.872024" /> + <rect + y="2.2593789" + x="87.934296" + height="10.718534" + width="1.9999983" + id="rect4706" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="63.961687" + inkscape:transform-center-y="13.595491" + transform="matrix(0.2079117,0.9781476,-0.9781476,0.2079117,0,0)" /> + <rect + transform="matrix(0.10452847,0.99452189,-0.99452189,0.10452847,0,0)" + inkscape:transform-center-y="6.8351958" + inkscape:transform-center-x="65.032414" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4708" + width="1.9999983" + height="10.718534" + x="81.408287" + y="-6.720304" /> + <rect + y="-22.395264" + x="65.729012" + height="10.718534" + width="1.9999983" + id="rect4710" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="65.032416" + inkscape:transform-center-y="-6.8351727" + transform="matrix(-0.10452846,0.9945219,-0.9945219,-0.10452846,0,0)" /> + <rect + transform="matrix(-0.20791169,0.9781476,-0.9781476,-0.20791169,0,0)" + inkscape:transform-center-y="-13.595466" + inkscape:transform-center-x="63.961692" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4712" + width="1.9999983" + height="10.718534" + x="56.747536" + y="-28.918802" /> + <rect + y="-34.467785" + x="47.133366" + height="10.718534" + width="1.9999983" + id="rect4714" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="62.190189" + inkscape:transform-center-y="-20.206804" + transform="matrix(-0.30901699,0.95105652,-0.95105652,-0.30901699,0,0)" /> + <rect + transform="matrix(-0.40673664,0.91354546,-0.91354546,-0.40673664,0,0)" + inkscape:transform-center-y="-26.596753" + inkscape:transform-center-x="59.737318" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4716" + width="1.9999983" + height="10.718534" + x="36.991837" + y="-38.981415" /> + <rect + y="-44.716694" + x="15.575709" + height="10.718534" + width="1.9999983" + id="rect4718" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="52.902137" + inkscape:transform-center-y="-38.435636" + transform="matrix(-0.58778525,0.809017,-0.809017,-0.58778525,0,0)" /> + <rect + transform="matrix(-0.6691306,0.74314483,-0.74314483,-0.6691306,0,0)" + inkscape:transform-center-y="-43.754862" + inkscape:transform-center-x="48.594717" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4720" + width="1.9999983" + height="10.718534" + x="4.5357528" + y="-45.875504" /> + <rect + y="-45.873978" + x="-6.5648546" + height="10.718534" + width="1.9999983" + id="rect4722" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="43.754881" + inkscape:transform-center-y="-48.594699" + transform="matrix(-0.74314482,0.66913061,-0.66913061,-0.74314482,0,0)" /> + <rect + transform="matrix(-0.80901699,0.58778526,-0.58778526,-0.80901699,0,0)" + inkscape:transform-center-y="-52.902122" + inkscape:transform-center-x="38.435657" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4724" + width="1.9999983" + height="10.718534" + x="-17.604492" + y="-44.712132" /> + <rect + y="-38.970963" + x="-39.019043" + height="10.718534" + width="1.9999983" + id="rect4726" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="26.596775" + inkscape:transform-center-y="-59.737308" + transform="matrix(-0.91354545,0.40673665,-0.40673665,-0.91354545,0,0)" /> + <rect + transform="matrix(-0.95105651,0.309017,-0.309017,-0.95105651,0,0)" + inkscape:transform-center-y="-62.190181" + inkscape:transform-center-x="20.206825" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4728" + width="1.9999983" + height="10.718534" + x="-49.159332" + y="-34.454544" /> + <rect + y="-28.902918" + x="-58.771976" + height="10.718534" + width="1.9999983" + id="rect4730" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="13.595486" + inkscape:transform-center-y="-63.961685" + transform="matrix(-0.9781476,0.2079117,-0.2079117,-0.9781476,0,0)" /> + <rect + transform="matrix(-0.99452189,0.10452847,-0.10452847,-0.99452189,0,0)" + inkscape:transform-center-y="-65.032411" + inkscape:transform-center-x="6.8351958" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4732" + width="1.9999983" + height="10.718534" + x="-67.751656" + y="-22.376909" /> + <rect + y="2.2838387" + x="-89.95015" + height="10.718534" + width="1.9999983" + id="rect4734" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-13.59546" + inkscape:transform-center-y="-63.961689" + transform="matrix(-0.9781476,-0.20791169,0.20791169,-0.9781476,0,0)" /> + <rect + transform="matrix(-0.9945219,-0.10452846,0.10452846,-0.9945219,0,0)" + inkscape:transform-center-y="-65.032413" + inkscape:transform-center-x="-6.8351672" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4736" + width="1.9999983" + height="10.718534" + x="-83.426613" + y="-6.6976385" /> + <rect + transform="matrix(-0.95105652,-0.30901699,0.30901699,-0.95105652,0,0)" + inkscape:transform-center-y="-62.190189" + inkscape:transform-center-x="-20.2068" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4738" + width="1.9999983" + height="10.718534" + x="-95.49913" + y="11.89801" /> + <rect + y="22.039541" + x="-100.01276" + height="10.718534" + width="1.9999983" + id="rect4740" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-26.596747" + inkscape:transform-center-y="-59.737321" + transform="matrix(-0.91354546,-0.40673664,0.40673664,-0.91354546,0,0)" /> + <rect + transform="matrix(-0.74314483,-0.6691306,0.6691306,-0.74314483,0,0)" + inkscape:transform-center-y="-48.594714" + inkscape:transform-center-x="-43.75486" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4742" + width="1.9999983" + height="10.718534" + x="-106.90685" + y="54.495621" /> + <rect + y="43.455666" + x="-105.74803" + height="10.718534" + width="1.9999983" + id="rect4744" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-38.435629" + inkscape:transform-center-y="-52.902142" + transform="matrix(-0.809017,-0.58778525,0.58778525,-0.809017,0,0)" /> + <rect + y="65.59623" + x="-106.90533" + height="10.718534" + width="1.9999983" + id="rect4746" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-48.594699" + inkscape:transform-center-y="-43.754879" + transform="matrix(-0.66913061,-0.74314482,0.74314482,-0.66913061,0,0)" /> + <rect + transform="matrix(-0.58778526,-0.80901699,0.80901699,-0.58778526,0,0)" + inkscape:transform-center-y="-38.435656" + inkscape:transform-center-x="-52.902119" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4748" + width="1.9999983" + height="10.718534" + x="-105.74348" + y="76.635864" /> + <rect + y="98.050407" + x="-100.00231" + height="10.718534" + width="1.9999983" + id="rect4750" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-59.737299" + inkscape:transform-center-y="-26.596772" + transform="matrix(-0.40673665,-0.91354545,0.91354545,-0.40673665,0,0)" /> + <rect + transform="matrix(-0.309017,-0.95105651,0.95105651,-0.309017,0,0)" + inkscape:transform-center-y="-20.206824" + inkscape:transform-center-x="-62.190172" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4752" + width="1.9999983" + height="10.718534" + x="-95.485893" + y="108.1907" /> + <rect + y="117.80334" + x="-89.934265" + height="10.718534" + width="1.9999983" + id="rect4754" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-63.961672" + inkscape:transform-center-y="-13.595487" + transform="matrix(-0.2079117,-0.9781476,0.9781476,-0.2079117,0,0)" /> + <rect + transform="matrix(-0.10452847,-0.99452189,0.99452189,-0.10452847,0,0)" + inkscape:transform-center-y="-6.8351946" + inkscape:transform-center-x="-65.032398" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4756" + width="1.9999983" + height="10.718534" + x="-83.408257" + y="126.78302" /> + <rect + y="142.45798" + x="-67.728981" + height="10.718534" + width="1.9999983" + id="rect4758" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-65.032401" + inkscape:transform-center-y="6.8351634" + transform="matrix(0.10452846,-0.9945219,0.9945219,0.10452846,0,0)" /> + <rect + transform="matrix(0.20791169,-0.9781476,0.9781476,0.20791169,0,0)" + inkscape:transform-center-y="13.595459" + inkscape:transform-center-x="-63.961682" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4760" + width="1.9999983" + height="10.718534" + x="-58.747505" + y="148.98152" /> + <rect + y="154.5305" + x="-49.133335" + height="10.718534" + width="1.9999983" + id="rect4762" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-62.190181" + inkscape:transform-center-y="20.206799" + transform="matrix(0.30901699,-0.95105652,0.95105652,0.30901699,0,0)" /> + <rect + transform="matrix(0.40673664,-0.91354546,0.91354546,0.40673664,0,0)" + inkscape:transform-center-y="26.596748" + inkscape:transform-center-x="-59.737308" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4764" + width="1.9999983" + height="10.718534" + x="-38.991806" + y="159.04413" /> + <g + id="text4769" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4320" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#008000" + d="m 79.220289,121.62794 -0.552273,0.57272 -0.961363,-0.96136 0,-4.09091 1.513636,-1.53409 0,6.01364 z m -0.286364,-6.3 -1.513636,1.53409 -4.970455,0 -1.513636,-1.53409 7.997727,0 z m -6.75,5.91136 -0.961363,0.96136 -0.572728,-0.57272 0,-6.01364 1.534091,1.53409 0,4.09091 z m 7.036364,8.12045 -1.513636,-1.53409 0,-4.09091 0.961363,-0.96136 0.552273,0.59318 0,5.99318 z m -0.286364,0.28637 -7.997727,0 1.513636,-1.53409 4.970455,0 1.513636,1.53409 z m -6.75,-1.82046 -1.534091,1.53409 0,-5.99318 0.572728,-0.59318 0.961363,0.96136 0,4.09091 z" /> + </g> + <g + id="text4769-3" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4323" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#008000" + d="m 37.914632,95.356821 -1.513636,1.534091 -4.970454,0 -1.513637,-1.534091 7.997727,0 z m 0,14.318179 -7.997727,0 1.513637,-1.53409 4.970454,0 1.513636,1.53409 z m -6.75,-5.91136 0,4.09091 -1.53409,1.53409 0,-5.99318 0.572727,-0.59318 0.961363,0.96136 z m 5.522728,-2.49546 0,-4.090904 1.513636,-1.534091 0,6.013635 -0.552273,0.57273 -0.961363,-0.96137 z m -0.102273,0.49091 0.777273,0.75682 -0.777273,0.75682 -5.338636,0 -0.756819,-0.75682 0.756819,-0.75682 5.338636,0 z" /> + <path + id="path4325" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#008000" + d="m 49.23127,101.65682 -0.552273,0.57273 -0.961364,-0.96137 0,-4.090904 1.513637,-1.534091 0,6.013635 z m -0.286364,-6.299999 -1.513636,1.534091 -4.970455,0 -1.513636,-1.534091 7.997727,0 z m -6.75,5.911359 -0.961364,0.96137 -0.572727,-0.57273 0,-6.013635 1.534091,1.534091 0,4.090904 z m 7.036364,8.12046 -1.513637,-1.53409 0,-4.09091 0.961364,-0.96136 0.552273,0.59318 0,5.99318 z m -0.286364,0.28636 -7.997727,0 1.513636,-1.53409 4.970455,0 1.513636,1.53409 z m -6.75,-1.82045 -1.534091,1.53409 0,-5.99318 0.572727,-0.59318 0.961364,0.96136 0,4.09091 z" /> + </g> + <g + id="text4769-3-3" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4328" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#008000" + d="m 26.856,53.196818 0,-6.013636 1.534091,1.534091 0,4.090909 -0.961364,0.961364 L 26.856,53.196818 Z m 8.570454,1.738637 0,5.993182 -1.513636,-1.534091 0,-4.090909 0.961364,-0.961364 0.552272,0.593182 z m -1.513636,-2.127273 0,-4.090909 1.513636,-1.534091 0,6.013636 -0.552272,0.572728 -0.961364,-0.961364 z m -0.102273,0.490909 0.777273,0.756818 -0.777273,0.756818 -5.338636,0 -0.756818,-0.756818 0.756818,-0.756818 5.338636,0 z" /> + <path + id="path4330" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#008000" + d="m 46.456728,53.196818 -0.552273,0.572728 -0.961364,-0.961364 0,-4.090909 1.513637,-1.534091 0,6.013636 z m -0.286364,-6.3 -1.513636,1.534091 -4.970455,0 -1.513636,-1.534091 7.997727,0 z m -6.75,5.911364 -0.961364,0.961364 -0.572727,-0.572728 0,-6.013636 1.534091,1.534091 0,4.090909 z m 7.036364,8.120455 -1.513637,-1.534091 0,-4.090909 0.961364,-0.961364 0.552273,0.593182 0,5.993182 z m -0.286364,0.286363 -7.997727,0 1.513636,-1.534091 4.970455,0 1.513636,1.534091 z m -6.75,-1.820454 -1.534091,1.534091 0,-5.993182 0.572727,-0.593182 0.961364,0.961364 0,4.090909 z" /> + </g> + <g + id="text4769-3-3-0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffff00;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4333" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffff00" + d="m 73.37281,20.752955 -1.513636,1.534091 -4.970455,0 -1.513636,-1.534091 7.997727,0 z m 0,14.318181 -7.997727,0 1.513636,-1.53409 4.970455,0 1.513636,1.53409 z m -6.75,-5.911363 0,4.090909 -1.534091,1.534091 0,-5.993182 0.572727,-0.593182 0.961364,0.961364 z m -1.534091,-2.106818 0,-6.013637 1.534091,1.534091 0,4.090909 -0.961364,0.961364 -0.572727,-0.572727 z m 8.570455,1.738636 0,5.993182 -1.513637,-1.534091 0,-4.090909 0.961364,-0.961364 0.552273,0.593182 z m -1.615909,-1.636364 0.777272,0.756819 -0.777272,0.756818 -5.338637,0 -0.756818,-0.756818 0.756818,-0.756819 5.338637,0 z" /> + <path + id="path4335" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffff00" + d="m 84.689447,27.052955 -0.552273,0.572727 -0.961363,-0.961364 0,-4.090909 1.513636,-1.534091 0,6.013637 z m -0.286364,-6.3 -1.513636,1.534091 -4.970454,0 -1.513637,-1.534091 7.997727,0 z m -6.75,5.911363 -0.961363,0.961364 -0.572727,-0.572727 0,-6.013637 1.53409,1.534091 0,4.090909 z m 7.036364,8.120455 -1.513636,-1.534091 0,-4.090909 0.961363,-0.961364 0.552273,0.593182 0,5.993182 z m -0.286364,0.286363 -7.997727,0 1.513637,-1.53409 4.970454,0 1.513636,1.53409 z m -6.75,-1.820454 -1.53409,1.534091 0,-5.993182 0.572727,-0.593182 0.961363,0.961364 0,4.090909 z" /> + </g> + <g + id="text4769-3-3-0-9" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffff00;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4338" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffff00" + d="m 110.77677,46.948088 -1.51364,1.534091 -4.97045,0 -1.51364,-1.534091 7.99773,0 z m 0,14.318182 -7.99773,0 1.51364,-1.534091 4.97045,0 1.51364,1.534091 z m -6.75,-5.911364 0,4.090909 -1.53409,1.534091 0,-5.993182 0.57272,-0.593182 0.96137,0.961364 z m -1.53409,-2.106818 0,-6.013636 1.53409,1.53409 0,4.09091 -0.96137,0.961363 -0.57272,-0.572727 z m 8.57045,1.738636 0,5.993182 -1.51364,-1.534091 0,-4.090909 0.96137,-0.961364 0.55227,0.593182 z m -1.51364,-2.127272 0,-4.09091 1.51364,-1.53409 0,6.013636 -0.55227,0.572727 -0.96137,-0.961363 z m -0.10227,0.490909 0.77727,0.756818 -0.77727,0.756818 -5.33863,0 -0.75682,-0.756818 0.75682,-0.756818 5.33863,0 z" /> + <path + id="path4340" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffff00" + d="m 122.0934,53.248088 -0.55227,0.572727 -0.96136,-0.961363 0,-4.09091 1.51363,-1.53409 0,6.013636 z m -0.28636,-6.3 -1.51364,1.534091 -4.97045,0 -1.51364,-1.534091 7.99773,0 z m -6.75,5.911364 -0.96136,0.961363 -0.57273,-0.572727 0,-6.013636 1.53409,1.53409 0,4.09091 z m 7.03636,8.120454 -1.51363,-1.534091 0,-4.090909 0.96136,-0.961364 0.55227,0.593182 0,5.993182 z m -0.28636,0.286364 -7.99773,0 1.51364,-1.534091 4.97045,0 1.51364,1.534091 z m -6.75,-1.820455 -1.53409,1.534091 0,-5.993182 0.57273,-0.593182 0.96136,0.961364 0,4.090909 z" /> + </g> + <g + id="text4769-3-3-0-9-9" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4343" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ff0000" + d="m 98.490885,103.31176 0,5.99318 -1.534091,-1.53409 0,-4.09091 0.961364,-0.96137 0.572727,0.59319 z m -1.534091,-2.12728 0,-4.090906 1.534091,-1.534091 0,6.013637 -0.572727,0.57273 -0.961364,-0.96137 z" /> + <path + id="path4345" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ff0000" + d="m 110.47501,101.57312 -0.55227,0.57273 -0.96136,-0.96137 0,-4.090906 1.51363,-1.534091 0,6.013637 z m -0.28636,-6.300001 -1.51364,1.534091 -4.97045,0 -1.51364,-1.534091 7.99773,0 z m -6.75,5.911361 -0.96137,0.96137 -0.57272,-0.57273 0,-6.013637 1.53409,1.534091 0,4.090906 z m 7.03636,8.12046 -1.51363,-1.53409 0,-4.09091 0.96136,-0.96137 0.55227,0.59319 0,5.99318 z m -0.28636,0.28636 -7.99773,0 1.51364,-1.53409 4.97045,0 1.51364,1.53409 z m -6.75,-1.82045 -1.53409,1.53409 0,-5.99318 0.57272,-0.59319 0.96137,0.96137 0,4.09091 z" /> + <path + id="path4347" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ff0000" + d="m 121.50528,101.57312 -0.55227,0.57273 -0.96136,-0.96137 0,-4.090906 1.51363,-1.534091 0,6.013637 z m -0.28636,-6.300001 -1.51364,1.534091 -4.97045,0 -1.51364,-1.534091 7.99773,0 z m -6.75,5.911361 -0.96136,0.96137 -0.57273,-0.57273 0,-6.013637 1.53409,1.534091 0,4.090906 z m 7.03636,8.12046 -1.51363,-1.53409 0,-4.09091 0.96136,-0.96137 0.55227,0.59319 0,5.99318 z m -0.28636,0.28636 -7.99773,0 1.51364,-1.53409 4.97045,0 1.51364,1.53409 z m -6.75,-1.82045 -1.53409,1.53409 0,-5.99318 0.57273,-0.59319 0.96136,0.96137 0,4.09091 z" /> + </g> + <g + id="text6300" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4350" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff" + d="m 96.274659,116.5055 -1.009091,1.03637 -2.181818,0 -1.009091,-1.03637 1.009091,-1.00909 2.181818,0 1.009091,1.00909 z m 0,6.62727 -1.009091,1.0091 -2.181818,0 -1.009091,-1.0091 1.009091,-1.03636 2.181818,0 1.009091,1.03636 z m -5.590909,-1.41818 1.009091,0.98182 1.036363,-0.98182 0,-3.79091 -1.036363,-1.03636 -1.009091,1.03636 0,3.79091 z m 4.936363,0 0,-3.79091 1.036364,-1.03636 1.009091,1.03636 0,3.79091 -1.009091,0.98182 -1.036364,-0.98182 z m 8.536367,5.42728 -1.00909,1.03636 -2.15455,0 -1.036363,-1.03636 1.036363,-1.0091 2.15455,0 1.00909,1.0091 z m 0,6.62727 -1.00909,1.00909 -2.15455,0 -1.036363,-1.00909 1.036363,-1.03637 2.15455,0 1.00909,1.03637 z m -5.590912,-1.41818 1.009091,0.98181 1.036361,-0.98181 0,-3.79091 -1.036361,-1.03637 -1.009091,1.03637 0,3.79091 z m 4.963632,0 0,-3.79091 1.0091,-1.03637 1.00909,1.03637 0,3.79091 -1.00909,0.98181 -1.0091,-0.98181 z m -4.854541,-6.3 -4.936364,8.61818 -0.763636,-2.78182 3.709091,-6.38182 1.718182,-0.49091 0.272727,1.03637 z m -0.354546,-3.43637 3.681817,-6.38182 2.80909,-0.73636 -4.990907,8.56364 -1.036363,0.3 -0.463637,-1.74546 z" /> + </g> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tacho_temp_back.svg b/skins/blackhole/themes/default/skinparts/tacho_temp_back.svg new file mode 100644 index 0000000..a7c544f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tacho_temp_back.svg @@ -0,0 +1,640 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="tacho_temp_back.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4633"> + <stop + style="stop-color:#e6e6e6;stop-opacity:1;" + offset="0" + id="stop4635" /> + <stop + style="stop-color:#999999;stop-opacity:1" + offset="1" + id="stop4637" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4620"> + <stop + style="stop-color:#b3b3b3;stop-opacity:1;" + offset="0" + id="stop4622" /> + <stop + style="stop-color:#b3b3b3;stop-opacity:0;" + offset="1" + id="stop4624" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4620" + id="radialGradient4626" + cx="110.27615" + cy="12.330762" + fx="110.27615" + fy="12.330762" + r="74.998166" + gradientTransform="matrix(-1.8628953,0.67964205,-0.52439662,-1.4373683,322.17528,-44.829535)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4633" + id="linearGradient4643" + x1="80.356987" + y1="68.492752" + x2="68.958046" + y2="80.47979" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.94150667,0,0,0.94152267,4.3869559,4.3857232)" /> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4263" + x="-0.05507957" + width="1.1101591" + y="-0.026737965" + height="1.0534759"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.39862517" + id="feGaussianBlur4265" /> + </filter> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Uhr" + style="display:inline" /> + <g + inkscape:groupmode="layer" + id="layer3" + inkscape:label="Ziffernblatt" + style="display:inline" /> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Ziffern" + style="display:inline"> + <g + id="g4294"> + <path + sodipodi:open="true" + d="M 28.394987,19.250286 A 72.763588,72.685867 0 0 1 130.82373,28.448256 72.763588,72.685867 0 0 1 121.73828,130.77851 72.763588,72.685867 0 0 1 19.28783,121.82499 72.763588,72.685867 0 0 1 28.128539,19.473353" + sodipodi:end="4.012464" + sodipodi:start="4.0172418" + sodipodi:ry="72.685867" + sodipodi:rx="72.763588" + sodipodi:cy="75.070084" + sodipodi:cx="74.999954" + sodipodi:type="arc" + id="path4618" + style="display:inline;opacity:0.75;fill:#000000;fill-opacity:1;stroke:url(#radialGradient4626);stroke-width:4.49399996;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + d="M 70.175796,69.215654 A 7.5318813,7.5319991 0 0 1 80.778362,70.168778 7.5318813,7.5319991 0 0 1 79.837929,80.772642 7.5318813,7.5319991 0 0 1 69.233115,79.844873 7.5318813,7.5319991 0 0 1 70.14819,69.23879" + sodipodi:open="true" + sodipodi:end="4.0124596" + sodipodi:start="4.0172418" + sodipodi:ry="7.5319991" + sodipodi:rx="7.5318813" + sodipodi:cy="74.999924" + sodipodi:cx="74.999954" + sodipodi:type="arc" + id="path4631" + style="display:inline;opacity:0.75;fill:url(#linearGradient4643);fill-opacity:1;stroke:#999999;stroke-width:0.94151461;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path4245" + d="m 128.27004,104.31786 c 4.05369,-9.895602 6.31749,-18.412239 6.97609,-29.704639 l 10.35162,0 c -0.28964,12.8754 -3.86039,23.940773 -9.22644,35.780599 z" + style="display:inline;fill:#d40000;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4263)" /> + <rect + transform="matrix(0.5,0.8660254,-0.8660254,0.5,0,0)" + y="29.114088" + x="101.31856" + height="14.240295" + width="1.999997" + id="rect4658" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="55.220498" + inkscape:transform-center-y="31.881587" /> + <rect + inkscape:transform-center-y="1.4955199e-005" + inkscape:transform-center-x="63.763147" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4660" + width="1.999997" + height="14.240295" + x="73.846016" + y="-18.357008" + transform="matrix(0,1,-1,0,0,0)" /> + <rect + transform="matrix(-0.5,0.8660254,-0.8660254,-0.5,0,0)" + y="-45.731911" + x="26.31855" + height="14.240295" + width="1.999997" + id="rect4662" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="55.220514" + inkscape:transform-center-y="-31.881561" /> + <rect + inkscape:transform-center-y="-55.220498" + inkscape:transform-center-x="31.881587" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4664" + width="1.999997" + height="14.240295" + x="-28.528894" + y="-45.675541" + transform="matrix(-0.8660254,0.5,-0.5,-0.8660254,0,0)" /> + <rect + transform="scale(-1,-1)" + y="-18.203001" + x="-75.999992" + height="14.240295" + width="1.999997" + id="rect4666" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="1.2844736e-005" + inkscape:transform-center-y="-63.763147" /> + <rect + inkscape:transform-center-y="-55.220513" + inkscape:transform-center-x="-31.881559" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4668" + width="1.999997" + height="14.240295" + x="-103.37489" + y="29.324465" + transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,0,0)" /> + <rect + transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,0,0)" + y="84.171913" + x="-103.31852" + height="14.240295" + width="1.999997" + id="rect4670" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-55.220498" + inkscape:transform-center-y="-31.881592" /> + <rect + inkscape:transform-center-y="-2.044845e-005" + inkscape:transform-center-x="-63.763147" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4672" + width="1.999997" + height="14.240295" + x="-75.845978" + y="131.64301" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + transform="matrix(0.5,-0.8660254,0.8660254,0.5,0,0)" + y="159.01791" + x="-28.318512" + height="14.240295" + width="1.999997" + id="rect4674" + style="display:inline;opacity:1;fill:#cccccc;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-55.220518" + inkscape:transform-center-y="31.881558" /> + <rect + y="22.012312" + x="98.002342" + height="10.718534" + width="1.9999983" + id="rect4702" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="59.737308" + inkscape:transform-center-y="26.596781" + transform="matrix(0.40673665,0.91354545,-0.91354545,0.40673665,0,0)" /> + <rect + transform="matrix(0.309017,0.95105651,-0.95105651,0.309017,0,0)" + inkscape:transform-center-y="20.206832" + inkscape:transform-center-x="62.190182" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4704" + width="1.9999983" + height="10.718534" + x="93.485924" + y="11.872024" /> + <rect + y="2.2593789" + x="87.934296" + height="10.718534" + width="1.9999983" + id="rect4706" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="63.961687" + inkscape:transform-center-y="13.595491" + transform="matrix(0.2079117,0.9781476,-0.9781476,0.2079117,0,0)" /> + <rect + transform="matrix(0.10452847,0.99452189,-0.99452189,0.10452847,0,0)" + inkscape:transform-center-y="6.8351958" + inkscape:transform-center-x="65.032414" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4708" + width="1.9999983" + height="10.718534" + x="81.408287" + y="-6.720304" /> + <rect + y="-22.395264" + x="65.729012" + height="10.718534" + width="1.9999983" + id="rect4710" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="65.032416" + inkscape:transform-center-y="-6.8351727" + transform="matrix(-0.10452846,0.9945219,-0.9945219,-0.10452846,0,0)" /> + <rect + transform="matrix(-0.20791169,0.9781476,-0.9781476,-0.20791169,0,0)" + inkscape:transform-center-y="-13.595466" + inkscape:transform-center-x="63.961692" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4712" + width="1.9999983" + height="10.718534" + x="56.747536" + y="-28.918802" /> + <rect + y="-34.467785" + x="47.133366" + height="10.718534" + width="1.9999983" + id="rect4714" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="62.190189" + inkscape:transform-center-y="-20.206804" + transform="matrix(-0.30901699,0.95105652,-0.95105652,-0.30901699,0,0)" /> + <rect + transform="matrix(-0.40673664,0.91354546,-0.91354546,-0.40673664,0,0)" + inkscape:transform-center-y="-26.596753" + inkscape:transform-center-x="59.737318" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4716" + width="1.9999983" + height="10.718534" + x="36.991837" + y="-38.981415" /> + <rect + y="-44.716694" + x="15.575709" + height="10.718534" + width="1.9999983" + id="rect4718" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="52.902137" + inkscape:transform-center-y="-38.435636" + transform="matrix(-0.58778525,0.809017,-0.809017,-0.58778525,0,0)" /> + <rect + transform="matrix(-0.6691306,0.74314483,-0.74314483,-0.6691306,0,0)" + inkscape:transform-center-y="-43.754862" + inkscape:transform-center-x="48.594717" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4720" + width="1.9999983" + height="10.718534" + x="4.5357528" + y="-45.875504" /> + <rect + y="-45.873978" + x="-6.5648546" + height="10.718534" + width="1.9999983" + id="rect4722" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="43.754881" + inkscape:transform-center-y="-48.594699" + transform="matrix(-0.74314482,0.66913061,-0.66913061,-0.74314482,0,0)" /> + <rect + transform="matrix(-0.80901699,0.58778526,-0.58778526,-0.80901699,0,0)" + inkscape:transform-center-y="-52.902122" + inkscape:transform-center-x="38.435657" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4724" + width="1.9999983" + height="10.718534" + x="-17.604492" + y="-44.712132" /> + <rect + y="-38.970963" + x="-39.019043" + height="10.718534" + width="1.9999983" + id="rect4726" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="26.596775" + inkscape:transform-center-y="-59.737308" + transform="matrix(-0.91354545,0.40673665,-0.40673665,-0.91354545,0,0)" /> + <rect + transform="matrix(-0.95105651,0.309017,-0.309017,-0.95105651,0,0)" + inkscape:transform-center-y="-62.190181" + inkscape:transform-center-x="20.206825" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4728" + width="1.9999983" + height="10.718534" + x="-49.159332" + y="-34.454544" /> + <rect + y="-28.902918" + x="-58.771976" + height="10.718534" + width="1.9999983" + id="rect4730" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="13.595486" + inkscape:transform-center-y="-63.961685" + transform="matrix(-0.9781476,0.2079117,-0.2079117,-0.9781476,0,0)" /> + <rect + transform="matrix(-0.99452189,0.10452847,-0.10452847,-0.99452189,0,0)" + inkscape:transform-center-y="-65.032411" + inkscape:transform-center-x="6.8351958" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4732" + width="1.9999983" + height="10.718534" + x="-67.751656" + y="-22.376909" /> + <rect + y="2.2838387" + x="-89.95015" + height="10.718534" + width="1.9999983" + id="rect4734" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-13.59546" + inkscape:transform-center-y="-63.961689" + transform="matrix(-0.9781476,-0.20791169,0.20791169,-0.9781476,0,0)" /> + <rect + transform="matrix(-0.9945219,-0.10452846,0.10452846,-0.9945219,0,0)" + inkscape:transform-center-y="-65.032413" + inkscape:transform-center-x="-6.8351672" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4736" + width="1.9999983" + height="10.718534" + x="-83.426613" + y="-6.6976385" /> + <rect + transform="matrix(-0.95105652,-0.30901699,0.30901699,-0.95105652,0,0)" + inkscape:transform-center-y="-62.190189" + inkscape:transform-center-x="-20.2068" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4738" + width="1.9999983" + height="10.718534" + x="-95.49913" + y="11.89801" /> + <rect + y="22.039541" + x="-100.01276" + height="10.718534" + width="1.9999983" + id="rect4740" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-26.596747" + inkscape:transform-center-y="-59.737321" + transform="matrix(-0.91354546,-0.40673664,0.40673664,-0.91354546,0,0)" /> + <rect + transform="matrix(-0.74314483,-0.6691306,0.6691306,-0.74314483,0,0)" + inkscape:transform-center-y="-48.594714" + inkscape:transform-center-x="-43.75486" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4742" + width="1.9999983" + height="10.718534" + x="-106.90685" + y="54.495621" /> + <rect + y="43.455666" + x="-105.74803" + height="10.718534" + width="1.9999983" + id="rect4744" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-38.435629" + inkscape:transform-center-y="-52.902142" + transform="matrix(-0.809017,-0.58778525,0.58778525,-0.809017,0,0)" /> + <rect + y="65.59623" + x="-106.90533" + height="10.718534" + width="1.9999983" + id="rect4746" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-48.594699" + inkscape:transform-center-y="-43.754879" + transform="matrix(-0.66913061,-0.74314482,0.74314482,-0.66913061,0,0)" /> + <rect + transform="matrix(-0.58778526,-0.80901699,0.80901699,-0.58778526,0,0)" + inkscape:transform-center-y="-38.435656" + inkscape:transform-center-x="-52.902119" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4748" + width="1.9999983" + height="10.718534" + x="-105.74348" + y="76.635864" /> + <rect + y="98.050407" + x="-100.00231" + height="10.718534" + width="1.9999983" + id="rect4750" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-59.737299" + inkscape:transform-center-y="-26.596772" + transform="matrix(-0.40673665,-0.91354545,0.91354545,-0.40673665,0,0)" /> + <rect + transform="matrix(-0.309017,-0.95105651,0.95105651,-0.309017,0,0)" + inkscape:transform-center-y="-20.206824" + inkscape:transform-center-x="-62.190172" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4752" + width="1.9999983" + height="10.718534" + x="-95.485893" + y="108.1907" /> + <rect + y="117.80334" + x="-89.934265" + height="10.718534" + width="1.9999983" + id="rect4754" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-63.961672" + inkscape:transform-center-y="-13.595487" + transform="matrix(-0.2079117,-0.9781476,0.9781476,-0.2079117,0,0)" /> + <rect + transform="matrix(-0.10452847,-0.99452189,0.99452189,-0.10452847,0,0)" + inkscape:transform-center-y="-6.8351946" + inkscape:transform-center-x="-65.032398" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4756" + width="1.9999983" + height="10.718534" + x="-83.408257" + y="126.78302" /> + <rect + y="142.45798" + x="-67.728981" + height="10.718534" + width="1.9999983" + id="rect4758" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-65.032401" + inkscape:transform-center-y="6.8351634" + transform="matrix(0.10452846,-0.9945219,0.9945219,0.10452846,0,0)" /> + <rect + transform="matrix(0.20791169,-0.9781476,0.9781476,0.20791169,0,0)" + inkscape:transform-center-y="13.595459" + inkscape:transform-center-x="-63.961682" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4760" + width="1.9999983" + height="10.718534" + x="-58.747505" + y="148.98152" /> + <rect + y="154.5305" + x="-49.133335" + height="10.718534" + width="1.9999983" + id="rect4762" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + inkscape:transform-center-x="-62.190181" + inkscape:transform-center-y="20.206799" + transform="matrix(0.30901699,-0.95105652,0.95105652,0.30901699,0,0)" /> + <rect + transform="matrix(0.40673664,-0.91354546,0.91354546,0.40673664,0,0)" + inkscape:transform-center-y="26.596748" + inkscape:transform-center-x="-59.737308" + style="display:inline;opacity:1;fill:#808080;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect4764" + width="1.9999983" + height="10.718534" + x="-38.991806" + y="159.04413" /> + <g + id="text4769" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4222" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff" + d="m 73.930286,127.34366 q 0,1.8457 -1.274414,3.12012 -1.274414,1.27441 -3.131103,1.27441 -1.85669,0 -3.131104,-1.26343 -1.274414,-1.27441 -1.274414,-3.1311 0,-1.8457 1.274414,-3.12012 1.274414,-1.27441 3.131104,-1.27441 1.867676,0 3.131103,1.27441 1.274414,1.27442 1.274414,3.12012 z m -1.812744,0 q 0,-1.12061 -0.736084,-1.87866 -0.736084,-0.76905 -1.856689,-0.76905 -1.120606,0 -1.85669,0.76905 -0.736084,0.75805 -0.736084,1.87866 0,1.14258 0.747071,1.90063 0.758056,0.74707 1.845703,0.74707 1.120605,0 1.856689,-0.76904 0.736084,-0.76904 0.736084,-1.87866 z" /> + <path + id="path4224" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff" + d="m 85.441881,125.28622 -1.513636,1.53409 -5.256819,0 -0.756818,-0.77727 0.756818,-0.75682 6.770455,0 z m -7.036364,5.91136 -0.961363,0.96137 -0.572728,-0.57273 0,-4.47955 0.756819,-0.77727 0.777272,0.77727 0,4.09091 z m 7.036364,8.40682 -6.770455,0 -0.756818,-0.75682 0.756818,-0.77727 5.256819,0 1.513636,1.53409 z m -7.036364,-1.82045 -0.777272,0.77727 -0.756819,-0.77727 0,-4.45909 0.572728,-0.59319 0.961363,0.96137 0,4.09091 z" /> + </g> + <g + id="text4769-3-3-0-9-9" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.83625031px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4246" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.83625031px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ff0000" + d="m 111.31015,100.62009 -1.26716,1.28429 -4.1611,0 -1.26717,-1.28429 6.69543,0 z m 0,11.98671 -6.69543,0 1.26717,-1.28429 4.1611,0 1.26716,1.28429 z m -5.65087,-4.9488 0,3.42477 -1.28429,1.28429 0,-5.01729 0.47947,-0.49659 0.80482,0.80482 z m -1.28429,-1.76376 0,-5.03441 1.28429,1.28429 0,3.42477 -0.80482,0.80482 -0.47947,-0.47947 z m 7.1749,1.45553 0,5.01729 -1.26717,-1.28429 0,-3.42477 0.80482,-0.80482 0.46235,0.49659 z m -1.26717,-1.78088 0,-3.42477 1.26717,-1.28429 0,5.03441 -0.46235,0.47947 -0.80482,-0.80482 z m -0.0856,0.41097 0.65071,0.63358 -0.65071,0.63359 -4.46933,0 -0.63358,-0.63359 0.63358,-0.63358 4.46933,0 z" /> + <path + id="path4248" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.83625031px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ff0000" + d="m 120.78407,105.89424 -0.46235,0.47947 -0.80482,-0.80482 0,-3.42477 1.26717,-1.28429 0,5.03441 z m -0.23974,-5.27415 -1.26716,1.28429 -4.1611,0 -1.26717,-1.28429 6.69543,0 z m -5.65087,4.9488 -0.80483,0.80482 -0.47946,-0.47947 0,-5.03441 1.28429,1.28429 0,3.42477 z m 5.89061,6.79817 -1.26717,-1.28429 0,-3.42477 0.80482,-0.80482 0.46235,0.49659 0,5.01729 z m -0.23974,0.23974 -6.69543,0 1.26717,-1.28429 4.1611,0 1.26716,1.28429 z m -5.65087,-1.52403 -1.28429,1.28429 0,-5.01729 0.47946,-0.49659 0.80483,0.80482 0,3.42477 z" /> + </g> + <g + id="text4769-3-3-0-9-9-1-9-3" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.83625031px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffff00;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4240" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.83625031px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffff00" + d="m 112.20966,45.414296 -1.26717,1.28429 -4.1611,0 -1.26716,-1.28429 6.69543,0 z m 0,11.986705 -6.69543,0 1.26716,-1.28429 4.1611,0 1.26717,1.28429 z m -5.65088,-4.948797 0,3.424773 -1.28429,1.28429 0,-5.017292 0.47947,-0.496592 0.80482,0.804821 z m -1.28429,-1.763758 0,-5.034416 1.28429,1.28429 0,3.424773 -0.80482,0.804822 -0.47947,-0.479469 z m 7.1749,1.455529 0,5.017292 -1.26716,-1.28429 0,-3.424773 0.80482,-0.804821 0.46234,0.496592 z m -1.35278,-1.369909 0.65071,0.633583 -0.65071,0.633583 -4.46933,0 -0.63358,-0.633583 0.63358,-0.633583 4.46933,0 z" /> + <path + id="path4242" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.83625031px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffff00" + d="m 121.68357,50.688446 -0.46234,0.479469 -0.80482,-0.804822 0,-3.424773 1.26716,-1.28429 0,5.034416 z m -0.23973,-5.27415 -1.26717,1.28429 -4.1611,0 -1.26716,-1.28429 6.69543,0 z m -5.65088,4.948797 -0.80482,0.804822 -0.47947,-0.479469 0,-5.034416 1.28429,1.28429 0,3.424773 z m 5.89061,6.798174 -1.26716,-1.28429 0,-3.424773 0.80482,-0.804821 0.46234,0.496592 0,5.017292 z m -0.23973,0.239734 -6.69543,0 1.26716,-1.28429 4.1611,0 1.26717,1.28429 z m -5.65088,-1.524024 -1.28429,1.28429 0,-5.017292 0.47947,-0.496592 0.80482,0.804821 0,3.424773 z" /> + </g> + <g + id="text4769-3-3-0-9-9-1-9-4" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.83625031px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffff00;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4235" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.83625031px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffff00" + d="m 66.393345,26.050339 0,-5.034416 1.28429,1.28429 0,3.424773 -0.804822,0.804821 -0.479468,-0.479468 z m 7.174899,1.455528 0,5.017293 -1.267166,-1.28429 0,-3.424773 0.804822,-0.804822 0.462344,0.496592 z m -1.267166,-1.780881 0,-3.424773 1.267166,-1.28429 0,5.034416 -0.462344,0.479468 -0.804822,-0.804821 z m -0.08562,0.410972 0.650707,0.633583 -0.650707,0.633583 -4.469329,0 -0.633582,-0.633583 0.633582,-0.633583 4.469329,0 z" /> + <path + id="path4237" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.83625031px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffff00" + d="m 82.802422,26.050339 -0.462345,0.479468 -0.804821,-0.804821 0,-3.424773 1.267166,-1.28429 0,5.034416 z m -0.239734,-5.27415 -1.267166,1.28429 -4.161099,0 -1.267166,-1.28429 6.695431,0 z m -5.650875,4.948797 -0.804822,0.804821 -0.479468,-0.479468 0,-5.034416 1.28429,1.28429 0,3.424773 z m 5.890609,6.798174 -1.267166,-1.28429 0,-3.424773 0.804821,-0.804822 0.462345,0.496592 0,5.017293 z m -0.239734,0.239734 -6.695431,0 1.267166,-1.28429 4.161099,0 1.267166,1.28429 z m -5.650875,-1.524024 -1.28429,1.28429 0,-5.017293 0.479468,-0.496592 0.804822,0.804822 0,3.424773 z" /> + </g> + <g + id="text4769-3-3-0-9-9-1-9-4-6-0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.83625031px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4230" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.83625031px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#008000" + d="m 35.30512,45.660405 -1.267166,1.28429 -4.161099,0 -1.267165,-1.28429 6.69543,0 z m 0,11.986705 -6.69543,0 1.267165,-1.28429 4.161099,0 1.267166,1.28429 z m -5.650875,-4.948797 0,3.424773 -1.28429,1.28429 0,-5.017292 0.479469,-0.496592 0.804821,0.804821 z m 4.623443,-2.089111 0,-3.424773 1.267166,-1.28429 0,5.034416 -0.462344,0.479469 -0.804822,-0.804822 z m -0.08562,0.410973 0.650707,0.633583 -0.650707,0.633583 -4.469328,0 -0.633583,-0.633583 0.633583,-0.633583 4.469328,0 z" /> + <path + id="path4232" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.83625031px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#008000" + d="m 44.779032,50.934555 -0.462344,0.479469 -0.804822,-0.804822 0,-3.424773 1.267166,-1.28429 0,5.034416 z m -0.239734,-5.27415 -1.267166,1.28429 -4.161099,0 -1.267166,-1.28429 6.695431,0 z m -5.650875,4.948797 -0.804822,0.804822 -0.479468,-0.479469 0,-5.034416 1.28429,1.28429 0,3.424773 z m 5.890609,6.798174 -1.267166,-1.28429 0,-3.424773 0.804822,-0.804821 0.462344,0.496592 0,5.017292 z m -0.239734,0.239734 -6.695431,0 1.267166,-1.28429 4.161099,0 1.267166,1.28429 z m -5.650875,-1.524024 -1.28429,1.28429 0,-5.017292 0.479468,-0.496592 0.804822,0.804821 0,3.424773 z" /> + </g> + <g + id="text4769-3-3-0-9-9-1-9-4-6-0-3-0" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.83625031px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"> + <path + id="path4227" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.83625031px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#008000" + d="m 36.033065,103.95548 -0.462344,0.47947 -0.804822,-0.80482 0,-3.42477 1.267166,-1.284293 0,5.034413 z m -0.239734,-5.274147 -1.267166,1.284289 -4.161099,0 -1.267166,-1.284289 6.695431,0 z m -5.650875,4.948797 -0.804822,0.80482 -0.479468,-0.47947 0,-5.034413 1.28429,1.284293 0,3.42477 z m 5.890609,6.79817 -1.267166,-1.28429 0,-3.42477 0.804822,-0.80482 0.462344,0.49659 0,5.01729 z m -0.239734,0.23974 -6.695431,0 1.267166,-1.28429 4.161099,0 1.267166,1.28429 z m -5.650875,-1.52403 -1.28429,1.28429 0,-5.01729 0.479468,-0.49659 0.804822,0.80482 0,3.42477 z" /> + </g> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_0.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_0.svg new file mode 100644 index 0000000..4d168fe --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_0.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_0.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="translate(-3.3580325e-5,2.3383546e-6)" + style="opacity:0.8" + inkscape:transform-center-x="3.3694135e-005" + inkscape:transform-center-y="35.455306"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_100.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_100.svg new file mode 100644 index 0000000..598d8ac --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_100.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_100.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.97814759,0.2079117,-0.2079117,0.97814759,17.241565,-13.95348)" + style="opacity:0.8" + inkscape:transform-center-x="8.7643616" + inkscape:transform-center-y="34.655627"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1000.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1000.svg new file mode 100644 index 0000000..990fa9b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1000.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1000.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.5,0.8660254,-0.8660254,-0.5,177.49066,47.615077)" + style="opacity:0.8" + inkscape:transform-center-x="30.56512" + inkscape:transform-center-y="-17.227666"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1025.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1025.svg new file mode 100644 index 0000000..b40b6a8 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1025.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1025.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.54463903,0.83867056,-0.83867056,-0.54463903,178.78576,53.016614)" + style="opacity:0.8" + inkscape:transform-center-x="29.567617" + inkscape:transform-center-y="-18.848648"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1050.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1050.svg new file mode 100644 index 0000000..47997af --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1050.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1050.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.58778525,0.80901699,-0.80901699,-0.58778525,179.79639,58.478528)" + style="opacity:0.8" + inkscape:transform-center-x="28.486379" + inkscape:transform-center-y="-20.421353"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1075.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1075.svg new file mode 100644 index 0000000..d0ed44d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1075.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1075.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.62932039,0.77714596,-0.77714596,-0.62932039,180.51978,63.985849)" + style="opacity:0.8" + inkscape:transform-center-x="27.324364" + inkscape:transform-center-y="-21.935385"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1100.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1100.svg new file mode 100644 index 0000000..d58d742 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1100.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1100.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.66913061,0.74314482,-0.74314482,-0.66913061,180.95394,69.523482)" + style="opacity:0.8" + inkscape:transform-center-x="26.084761" + inkscape:transform-center-y="-23.386593"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1125.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1125.svg new file mode 100644 index 0000000..81c65a3 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1125.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1125.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.70710678,0.70710678,-0.70710678,-0.70710678,181.09769,75.076248)" + style="opacity:0.8" + inkscape:transform-center-x="24.770956" + inkscape:transform-center-y="-24.770996"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1150.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1150.svg new file mode 100644 index 0000000..e1ae54a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1150.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1150.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.74314482,0.66913061,-0.66913061,-0.74314482,180.95064,80.628927)" + style="opacity:0.8" + inkscape:transform-center-x="23.386546" + inkscape:transform-center-y="-26.0848"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1175.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1175.svg new file mode 100644 index 0000000..8be719c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1175.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1175.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.77714596,0.62932039,-0.62932039,-0.77714596,180.51318,86.166301)" + style="opacity:0.8" + inkscape:transform-center-x="21.935338" + inkscape:transform-center-y="-27.324405"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1200.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1200.svg new file mode 100644 index 0000000..bd6ff13 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1200.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1200.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.80901699,0.58778525,-0.58778525,-0.80901699,179.78652,91.673191)" + style="opacity:0.8" + inkscape:transform-center-x="20.421301" + inkscape:transform-center-y="-28.486414"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1225.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1225.svg new file mode 100644 index 0000000..5d78139 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1225.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1225.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.83867056,0.54463903,-0.54463903,-0.83867056,178.77265,97.134503)" + style="opacity:0.8" + inkscape:transform-center-x="18.84859" + inkscape:transform-center-y="-29.567646"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_125.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_125.svg new file mode 100644 index 0000000..4a1b44d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_125.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_125.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.96592582,0.25881905,-0.25881905,0.96592582,21.978525,-16.854355)" + style="opacity:0.8" + inkscape:transform-center-x="9.8966225" + inkscape:transform-center-y="34.209401"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1250.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1250.svg new file mode 100644 index 0000000..43afd57 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1250.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1250.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.8660254,0.5,-0.5,-0.8660254,177.47434,102.53527)" + style="opacity:0.8" + inkscape:transform-center-x="17.227623" + inkscape:transform-center-y="-30.565139"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1275.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1275.svg new file mode 100644 index 0000000..af80da7 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1275.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1275.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.89100652,0.4539905,-0.4539905,-0.89100652,175.89516,107.86069)" + style="opacity:0.8" + inkscape:transform-center-x="15.642348" + inkscape:transform-center-y="-31.476162"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1300.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1300.svg new file mode 100644 index 0000000..499bde9 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1300.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1300.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.91354545,0.40673664,-0.40673664,-0.91354545,174.03943,113.09616)" + style="opacity:0.8" + inkscape:transform-center-x="14.014202" + inkscape:transform-center-y="-32.298228"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1325.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1325.svg new file mode 100644 index 0000000..01302c1 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1325.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1325.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.93358042,0.35836795,-0.35836795,-0.93358042,171.91224,118.22733)" + style="opacity:0.8" + inkscape:transform-center-x="12.347645" + inkscape:transform-center-y="-33.029086"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1350.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1350.svg new file mode 100644 index 0000000..41b9568 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1350.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1350.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.95105651,0.309017,-0.309017,-0.95105651,169.51942,123.24014)" + style="opacity:0.8" + inkscape:transform-center-x="10.999005" + inkscape:transform-center-y="-33.666729"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1375.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1375.svg new file mode 100644 index 0000000..2b4c520 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1375.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1375.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.96592582,0.25881905,-0.25881905,-0.96592582,166.86753,128.12085)" + style="opacity:0.8" + inkscape:transform-center-x="9.8965576" + inkscape:transform-center-y="-34.20941"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1400.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1400.svg new file mode 100644 index 0000000..773836c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1400.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1400.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.97814759,0.2079117,-0.2079117,-0.97814759,163.96384,132.85608)" + style="opacity:0.8" + inkscape:transform-center-x="8.764293" + inkscape:transform-center-y="-34.655637"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1425.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1425.svg new file mode 100644 index 0000000..9a77b0a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1425.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1425.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.98768833,0.15643447,-0.15643447,-0.98768833,160.8163,137.43286)" + style="opacity:0.8" + inkscape:transform-center-x="7.0325119" + inkscape:transform-center-y="-35.004172"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1450.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1450.svg new file mode 100644 index 0000000..f829c2f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1450.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1450.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.99452189,0.10452847,-0.10452847,-0.99452189,157.43355,141.83864)" + style="opacity:0.8" + inkscape:transform-center-x="4.6990596" + inkscape:transform-center-y="-35.25405"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1475.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1475.svg new file mode 100644 index 0000000..45204bd --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1475.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1475.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.99862953,0.05233596,-0.05233596,-0.99862953,153.82485,146.06134)" + style="opacity:0.8" + inkscape:transform-center-x="2.352732" + inkscape:transform-center-y="-35.404571"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_150.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_150.svg new file mode 100644 index 0000000..8b05ccb --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_150.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_150.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.95105651,0.309017,-0.309017,0.95105651,26.860813,-19.503341)" + style="opacity:0.8" + inkscape:transform-center-x="10.999069" + inkscape:transform-center-y="33.66672"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1500.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1500.svg new file mode 100644 index 0000000..23ed0f3 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1500.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1500.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-1,0,0,-1,150.0001,150.08939)" + style="opacity:0.8" + inkscape:transform-center-x="-4.7393749e-005" + inkscape:transform-center-y="-35.455293"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1525.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1525.svg new file mode 100644 index 0000000..8063be0 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1525.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1525.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.99862953,-0.05233596,0.05233596,-0.99862953,145.96978,153.91174)" + style="opacity:0.8" + inkscape:transform-center-x="-2.3528274" + inkscape:transform-center-y="-35.404569"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1550.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1550.svg new file mode 100644 index 0000000..bac31b1 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1550.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1550.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.99452189,-0.10452847,0.10452847,-0.99452189,141.74494,157.51793)" + style="opacity:0.8" + inkscape:transform-center-x="-4.6991612" + inkscape:transform-center-y="-35.254038"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1575.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1575.svg new file mode 100644 index 0000000..6964b58 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1575.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1575.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.98768833,-0.15643447,0.15643447,-0.98768833,137.33715,160.89806)" + style="opacity:0.8" + inkscape:transform-center-x="-7.0326078" + inkscape:transform-center-y="-35.004154"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1600.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1600.svg new file mode 100644 index 0000000..11c871a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1600.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1600.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.97814759,-0.2079117,0.2079117,-0.97814759,132.7585,164.04287)" + style="opacity:0.8" + inkscape:transform-center-x="-8.7643739" + inkscape:transform-center-y="-34.655617"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1625.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1625.svg new file mode 100644 index 0000000..2cb0192 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1625.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1625.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.96592582,-0.25881905,0.25881905,-0.96592582,128.02154,166.94375)" + style="opacity:0.8" + inkscape:transform-center-x="-9.8966348" + inkscape:transform-center-y="-34.209386"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1650.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1650.svg new file mode 100644 index 0000000..297c578 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1650.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1650.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.95105651,-0.309017,0.309017,-0.95105651,123.13925,169.59274)" + style="opacity:0.8" + inkscape:transform-center-x="-10.99908" + inkscape:transform-center-y="-33.666701"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1675.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1675.svg new file mode 100644 index 0000000..353f3cc --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1675.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1675.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.93358042,-0.35836795,0.35836795,-0.93358042,118.12501,171.98258)" + style="opacity:0.8" + inkscape:transform-center-x="-12.347699" + inkscape:transform-center-y="-33.029053"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1700.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1700.svg new file mode 100644 index 0000000..a4a5986 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1700.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1700.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.91354545,-0.40673664,0.40673664,-0.91354545,112.99257,174.10672)" + style="opacity:0.8" + inkscape:transform-center-x="-14.014254" + inkscape:transform-center-y="-32.298192"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1725.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1725.svg new file mode 100644 index 0000000..4f64a5a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1725.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1725.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.89100652,-0.4539905,0.4539905,-0.89100652,107.756,175.95933)" + style="opacity:0.8" + inkscape:transform-center-x="-15.642402" + inkscape:transform-center-y="-31.476129"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_175.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_175.svg new file mode 100644 index 0000000..d97b9bc --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_175.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_175.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.93358042,0.35836795,-0.35836795,0.93358042,31.875048,-21.893178)" + style="opacity:0.8" + inkscape:transform-center-x="12.347693" + inkscape:transform-center-y="33.029075"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1750.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1750.svg new file mode 100644 index 0000000..5512322 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1750.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1750.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,102.42965,177.53535)" + style="opacity:0.8" + inkscape:transform-center-x="-17.227677" + inkscape:transform-center-y="-30.565094"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1775.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1775.svg new file mode 100644 index 0000000..ba4ef39 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1775.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1775.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.83867056,-0.54463903,0.54463903,-0.83867056,97.028112,178.83045)" + style="opacity:0.8" + inkscape:transform-center-x="-18.848658" + inkscape:transform-center-y="-29.567591"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1800.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1800.svg new file mode 100644 index 0000000..57492d5 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1800.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1800.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.80901699,-0.58778525,0.58778525,-0.80901699,91.566196,179.84108)" + style="opacity:0.8" + inkscape:transform-center-x="-20.421361" + inkscape:transform-center-y="-28.486353"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1825.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1825.svg new file mode 100644 index 0000000..7a9719b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1825.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1825.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.77714596,-0.62932039,0.62932039,-0.77714596,86.058873,180.56447)" + style="opacity:0.8" + inkscape:transform-center-x="-21.935391" + inkscape:transform-center-y="-27.324338"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1850.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1850.svg new file mode 100644 index 0000000..b3bb135 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1850.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1850.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.74314482,-0.66913061,0.66913061,-0.74314482,80.521239,180.99863)" + style="opacity:0.8" + inkscape:transform-center-x="-23.386598" + inkscape:transform-center-y="-26.084735"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1875.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1875.svg new file mode 100644 index 0000000..5eaa54f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1875.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1875.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,74.968472,181.14238)" + style="opacity:0.8" + inkscape:transform-center-x="-24.771" + inkscape:transform-center-y="-24.77093"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1900.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1900.svg new file mode 100644 index 0000000..cf92c73 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1900.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1900.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.66913061,-0.74314482,0.74314482,-0.66913061,69.415791,180.99533)" + style="opacity:0.8" + inkscape:transform-center-x="-26.084802" + inkscape:transform-center-y="-23.38652"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1925.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1925.svg new file mode 100644 index 0000000..36d59ca --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1925.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1925.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.62932039,-0.77714596,0.77714596,-0.62932039,63.878416,180.55787)" + style="opacity:0.8" + inkscape:transform-center-x="-27.324406" + inkscape:transform-center-y="-21.935312"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1950.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1950.svg new file mode 100644 index 0000000..b7fd1e0 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1950.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1950.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.58778525,-0.80901699,0.80901699,-0.58778525,58.371525,179.83121)" + style="opacity:0.8" + inkscape:transform-center-x="-28.486414" + inkscape:transform-center-y="-20.421275"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_1975.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_1975.svg new file mode 100644 index 0000000..6b22a08 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_1975.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_1975.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.54463903,-0.83867056,0.83867056,-0.54463903,52.910211,178.81734)" + style="opacity:0.8" + inkscape:transform-center-x="-29.567644" + inkscape:transform-center-y="-18.848564"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_200.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_200.svg new file mode 100644 index 0000000..70d1b6e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_200.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_200.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.91354545,0.40673664,-0.40673664,0.91354545,37.007485,-24.017315)" + style="opacity:0.8" + inkscape:transform-center-x="14.014251" + inkscape:transform-center-y="32.298217"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2000.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2000.svg new file mode 100644 index 0000000..ef13633 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2000.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2000.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,47.509444,177.51903)" + style="opacity:0.8" + inkscape:transform-center-x="-30.565137" + inkscape:transform-center-y="-17.227597"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2025.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2025.svg new file mode 100644 index 0000000..8b4a838 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2025.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2025.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.4539905,-0.89100652,0.89100652,-0.4539905,42.184026,175.93985)" + style="opacity:0.8" + inkscape:transform-center-x="-31.476162" + inkscape:transform-center-y="-15.642322"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2050.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2050.svg new file mode 100644 index 0000000..51f3d30 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2050.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2050.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.40673664,-0.91354545,0.91354545,-0.40673664,36.948555,174.08412)" + style="opacity:0.8" + inkscape:transform-center-x="-32.298227" + inkscape:transform-center-y="-14.014176"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2075.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2075.svg new file mode 100644 index 0000000..0e6f35e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2075.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2075.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.35836795,-0.93358042,0.93358042,-0.35836795,31.81738,171.95693)" + style="opacity:0.8" + inkscape:transform-center-x="-33.02908" + inkscape:transform-center-y="-12.347619"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2100.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2100.svg new file mode 100644 index 0000000..947578d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2100.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2100.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.309017,-0.95105651,0.95105651,-0.309017,26.804566,169.56411)" + style="opacity:0.8" + inkscape:transform-center-x="-33.666719" + inkscape:transform-center-y="-10.998979"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2125.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2125.svg new file mode 100644 index 0000000..d929459 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2125.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2125.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.25881905,-0.96592582,0.96592582,-0.25881905,21.923852,166.91222)" + style="opacity:0.8" + inkscape:transform-center-x="-34.209396" + inkscape:transform-center-y="-9.8965316"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2150.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2150.svg new file mode 100644 index 0000000..a34eb85 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2150.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2150.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.2079117,-0.97814759,0.97814759,-0.2079117,17.188616,164.00853)" + style="opacity:0.8" + inkscape:transform-center-x="-34.655617" + inkscape:transform-center-y="-8.764267"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2175.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2175.svg new file mode 100644 index 0000000..f441cf8 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2175.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2175.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.15643447,-0.98768833,0.98768833,-0.15643447,12.611837,160.86099)" + style="opacity:0.8" + inkscape:transform-center-x="-35.004153" + inkscape:transform-center-y="-7.0324859"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2200.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2200.svg new file mode 100644 index 0000000..c5b1607 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2200.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2200.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.10452847,-0.99452189,0.99452189,-0.10452847,8.2060599,157.47824)" + style="opacity:0.8" + inkscape:transform-center-x="-35.254034" + inkscape:transform-center-y="-4.6990336"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2225.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2225.svg new file mode 100644 index 0000000..c321a2d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2225.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2225.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.05233596,-0.99862953,0.99862953,-0.05233596,3.9833602,153.86954)" + style="opacity:0.8" + inkscape:transform-center-x="-35.404555" + inkscape:transform-center-y="-2.352706"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_225.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_225.svg new file mode 100644 index 0000000..868a25d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_225.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_225.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.89100652,0.4539905,-0.4539905,0.89100652,42.244057,-25.86993)" + style="opacity:0.8" + inkscape:transform-center-x="15.642397" + inkscape:transform-center-y="31.476149"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2250.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2250.svg new file mode 100644 index 0000000..3235836 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2250.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2250.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0,-1,1,0,-0.04468769,150.04479)" + style="opacity:0.8" + inkscape:transform-center-x="-35.455279" + inkscape:transform-center-y="7.3393749e-005"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2275.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2275.svg new file mode 100644 index 0000000..d8687b5 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2275.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2275.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.05233596,-0.99862953,0.99862953,0.05233596,-3.8670433,146.01447)" + style="opacity:0.8" + inkscape:transform-center-x="-35.404549" + inkscape:transform-center-y="2.3528534"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2300.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2300.svg new file mode 100644 index 0000000..7ca20b7 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2300.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2300.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.10452847,-0.99452189,0.99452189,0.10452847,-7.4732299,141.78962)" + style="opacity:0.8" + inkscape:transform-center-x="-35.254022" + inkscape:transform-center-y="4.6991772"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2325.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2325.svg new file mode 100644 index 0000000..b2b6dc5 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2325.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2325.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.15643447,-0.98768833,0.98768833,0.15643447,-10.853363,137.38183)" + style="opacity:0.8" + inkscape:transform-center-x="-35.004135" + inkscape:transform-center-y="7.0326238"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2350.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2350.svg new file mode 100644 index 0000000..d35b6bc --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2350.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2350.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.2079117,-0.97814759,0.97814759,0.2079117,-13.998178,132.80318)" + style="opacity:0.8" + inkscape:transform-center-x="-34.655593" + inkscape:transform-center-y="8.7643899"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2375.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2375.svg new file mode 100644 index 0000000..1be5d45 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2375.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2375.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.25881905,-0.96592582,0.96592582,0.25881905,-16.899055,128.06622)" + style="opacity:0.8" + inkscape:transform-center-x="-34.209365" + inkscape:transform-center-y="9.8966508"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2400.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2400.svg new file mode 100644 index 0000000..073630d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2400.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2400.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.309017,-0.95105651,0.95105651,0.309017,-19.548043,123.18393)" + style="opacity:0.8" + inkscape:transform-center-x="-33.666682" + inkscape:transform-center-y="10.999096"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2425.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2425.svg new file mode 100644 index 0000000..153d12d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2425.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2425.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.35836795,-0.93358042,0.93358042,0.35836795,-21.937881,118.16969)" + style="opacity:0.8" + inkscape:transform-center-x="-33.029036" + inkscape:transform-center-y="12.347715"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2450.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2450.svg new file mode 100644 index 0000000..749a08d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2450.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2450.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.40673664,-0.91354545,0.91354545,0.40673664,-24.062019,113.03725)" + style="opacity:0.8" + inkscape:transform-center-x="-32.298177" + inkscape:transform-center-y="14.01427"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2475.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2475.svg new file mode 100644 index 0000000..bb3fb91 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2475.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2475.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.4539905,-0.89100652,0.89100652,0.4539905,-25.914635,107.80068)" + style="opacity:0.8" + inkscape:transform-center-x="-31.476108" + inkscape:transform-center-y="15.642418"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_25.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_25.svg new file mode 100644 index 0000000..4a28938 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_25.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_25.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.99862953,0.05233596,-0.05233596,0.99862953,4.0302867,-3.8223513)" + style="opacity:0.8" + inkscape:transform-center-x="2.3528134" + inkscape:transform-center-y="35.404578"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_250.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_250.svg new file mode 100644 index 0000000..cdcf41c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_250.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_250.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.8660254,0.5,-0.5,0.8660254,47.570411,-27.445945)" + style="opacity:0.8" + inkscape:transform-center-x="17.227668" + inkscape:transform-center-y="30.565119"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2500.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2500.svg new file mode 100644 index 0000000..877113c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2500.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2500.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.5,-0.8660254,0.8660254,0.5,-27.490651,102.47432)" + style="opacity:0.8" + inkscape:transform-center-x="-30.565077" + inkscape:transform-center-y="17.227683"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_2525.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_2525.svg new file mode 100644 index 0000000..dd8fe5d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_2525.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_2525.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.54463903,-0.83867056,0.83867056,0.54463903,-28.785747,97.072781)" + style="opacity:0.8" + inkscape:transform-center-x="-29.567578" + inkscape:transform-center-y="18.848663"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_275.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_275.svg new file mode 100644 index 0000000..eae0c73 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_275.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_275.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.83867056,0.54463903,-0.54463903,0.83867056,52.971948,-28.74104)" + style="opacity:0.8" + inkscape:transform-center-x="18.84865" + inkscape:transform-center-y="29.567621"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_300.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_300.svg new file mode 100644 index 0000000..904da77 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_300.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_300.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.80901699,0.58778525,-0.58778525,0.80901699,58.433862,-29.751666)" + style="opacity:0.8" + inkscape:transform-center-x="20.421355" + inkscape:transform-center-y="28.486387"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_325.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_325.svg new file mode 100644 index 0000000..1ebffbd --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_325.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_325.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.77714596,0.62932039,-0.62932039,0.77714596,63.941183,-30.475052)" + style="opacity:0.8" + inkscape:transform-center-x="21.935387" + inkscape:transform-center-y="27.324376"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_350.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_350.svg new file mode 100644 index 0000000..d821f9b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_350.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_350.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.74314482,0.66913061,-0.66913061,0.74314482,69.478815,-30.909216)" + style="opacity:0.8" + inkscape:transform-center-x="23.386596" + inkscape:transform-center-y="26.084769"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_375.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_375.svg new file mode 100644 index 0000000..8702d8f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_375.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_375.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,75.031581,-31.052968)" + style="opacity:0.8" + inkscape:transform-center-x="24.770999" + inkscape:transform-center-y="24.770962"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_400.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_400.svg new file mode 100644 index 0000000..af530ee --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_400.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_400.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.66913061,0.74314482,-0.74314482,0.66913061,80.58426,-30.905913)" + style="opacity:0.8" + inkscape:transform-center-x="26.084803" + inkscape:transform-center-y="23.386557"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_425.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_425.svg new file mode 100644 index 0000000..1a1a90a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_425.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_425.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.62932039,0.77714596,-0.77714596,0.62932039,86.121633,-30.468455)" + style="opacity:0.8" + inkscape:transform-center-x="27.324409" + inkscape:transform-center-y="21.935347"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_450.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_450.svg new file mode 100644 index 0000000..6a0eb9f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_450.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_450.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.58778525,0.80901699,-0.80901699,0.58778525,91.628522,-29.741793)" + style="opacity:0.8" + inkscape:transform-center-x="28.486419" + inkscape:transform-center-y="20.421312"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_475.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_475.svg new file mode 100644 index 0000000..389c10e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_475.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_475.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.54463903,0.83867056,-0.83867056,0.54463903,97.089834,-28.727918)" + style="opacity:0.8" + inkscape:transform-center-x="29.567651" + inkscape:transform-center-y="18.848606"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_50.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_50.svg new file mode 100644 index 0000000..c3fe331 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_50.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_50.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.99452189,0.10452847,-0.10452847,0.99452189,8.2551301,-7.4285358)" + style="opacity:0.8" + inkscape:transform-center-x="4.6991438" + inkscape:transform-center-y="35.254053"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_500.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_500.svg new file mode 100644 index 0000000..fd9e8f2 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_500.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_500.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.5,0.8660254,-0.8660254,0.5,102.4906,-27.42961)" + style="opacity:0.8" + inkscape:transform-center-x="30.565145" + inkscape:transform-center-y="17.227637"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_525.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_525.svg new file mode 100644 index 0000000..1d8df0e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_525.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_525.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.4539905,0.89100652,-0.89100652,0.4539905,107.81602,-25.850427)" + style="opacity:0.8" + inkscape:transform-center-x="31.476168" + inkscape:transform-center-y="15.642365"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_550.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_550.svg new file mode 100644 index 0000000..78feb6c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_550.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_550.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.40673664,0.91354545,-0.91354545,0.40673664,113.05149,-23.994697)" + style="opacity:0.8" + inkscape:transform-center-x="32.298234" + inkscape:transform-center-y="14.014219"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_575.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_575.svg new file mode 100644 index 0000000..98a9008 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_575.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_575.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.35836795,0.93358042,-0.93358042,0.35836795,118.18266,-21.867507)" + style="opacity:0.8" + inkscape:transform-center-x="33.029092" + inkscape:transform-center-y="12.347662"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_600.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_600.svg new file mode 100644 index 0000000..e6d5a15 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_600.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_600.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.309017,0.95105651,-0.95105651,0.309017,123.19547,-19.474688)" + style="opacity:0.8" + inkscape:transform-center-x="33.666735" + inkscape:transform-center-y="10.999021"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_625.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_625.svg new file mode 100644 index 0000000..878ee6d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_625.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_625.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.25881905,0.96592582,-0.96592582,0.25881905,128.07618,-16.822798)" + style="opacity:0.8" + inkscape:transform-center-x="34.209416" + inkscape:transform-center-y="9.8965736"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_650.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_650.svg new file mode 100644 index 0000000..7b6977f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_650.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_650.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.2079117,0.97814759,-0.97814759,0.2079117,132.81141,-13.919106)" + style="opacity:0.8" + inkscape:transform-center-x="34.655643" + inkscape:transform-center-y="8.764311"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_675.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_675.svg new file mode 100644 index 0000000..e082a48 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_675.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_675.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.15643447,0.98768833,-0.98768833,0.15643447,137.38819,-10.77157)" + style="opacity:0.8" + inkscape:transform-center-x="35.004178" + inkscape:transform-center-y="7.0325259"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_700.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_700.svg new file mode 100644 index 0000000..20bad7e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_700.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_700.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.10452847,0.99452189,-0.99452189,0.10452847,141.79397,-7.3888176)" + style="opacity:0.8" + inkscape:transform-center-x="35.254056" + inkscape:transform-center-y="4.699076"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_725.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_725.svg new file mode 100644 index 0000000..ee2ff51 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_725.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_725.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.05233596,0.99862953,-0.99862953,0.05233596,146.01667,-3.7801205)" + style="opacity:0.8" + inkscape:transform-center-x="35.404577" + inkscape:transform-center-y="2.3527455"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_75.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_75.svg new file mode 100644 index 0000000..17d65c6 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_75.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_75.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.98768833,0.15643447,-0.15643447,0.98768833,12.662917,-10.808667)" + style="opacity:0.8" + inkscape:transform-center-x="7.0325935" + inkscape:transform-center-y="35.004167"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_750.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_750.svg new file mode 100644 index 0000000..99307c6 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_750.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_750.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0,1,-1,0,150.04472,0.04463005)" + style="opacity:0.8" + inkscape:transform-center-x="35.455299" + inkscape:transform-center-y="-3.3343749e-005"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_775.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_775.svg new file mode 100644 index 0000000..345bf28 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_775.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_775.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.05233596,0.99862953,-0.99862953,-0.05233596,153.86707,4.0749507)" + style="opacity:0.8" + inkscape:transform-center-x="35.404575" + inkscape:transform-center-y="-2.3528127"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_800.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_800.svg new file mode 100644 index 0000000..8beeb3d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_800.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_800.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.10452847,0.99452189,-0.99452189,-0.10452847,157.47325,8.2997943)" + style="opacity:0.8" + inkscape:transform-center-x="35.254054" + inkscape:transform-center-y="-4.6991429"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_825.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_825.svg new file mode 100644 index 0000000..b62c246 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_825.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_825.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.15643447,0.98768833,-0.98768833,-0.15643447,160.85338,12.707581)" + style="opacity:0.8" + inkscape:transform-center-x="35.00417" + inkscape:transform-center-y="-7.0325928"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_850.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_850.svg new file mode 100644 index 0000000..b1e9d70 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_850.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_850.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.2079117,0.97814759,-0.97814759,-0.2079117,163.99819,17.286229)" + style="opacity:0.8" + inkscape:transform-center-x="34.655633" + inkscape:transform-center-y="-8.7643609"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_875.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_875.svg new file mode 100644 index 0000000..1b083ec --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_875.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_875.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.25881905,0.96592582,-0.96592582,-0.25881905,166.89907,22.023189)" + style="opacity:0.8" + inkscape:transform-center-x="34.209402" + inkscape:transform-center-y="-9.8966218"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_900.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_900.svg new file mode 100644 index 0000000..a3665da --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_900.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_900.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.309017,0.95105651,-0.95105651,-0.309017,169.54806,26.905477)" + style="opacity:0.8" + inkscape:transform-center-x="33.666717" + inkscape:transform-center-y="-10.999069"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_925.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_925.svg new file mode 100644 index 0000000..98e4e66 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_925.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_925.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.35836795,0.93358042,-0.93358042,-0.35836795,171.9379,31.919712)" + style="opacity:0.8" + inkscape:transform-center-x="33.029069" + inkscape:transform-center-y="-12.347693"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_950.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_950.svg new file mode 100644 index 0000000..6f7de06 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_950.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_950.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.40673664,0.91354545,-0.91354545,-0.40673664,174.06204,37.05215)" + style="opacity:0.8" + inkscape:transform-center-x="32.298208" + inkscape:transform-center-y="-14.01425"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/load_975.svg b/skins/blackhole/themes/default/skinparts/tachohands/load_975.svg new file mode 100644 index 0000000..76430e7 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/load_975.svg @@ -0,0 +1,181 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="load_975.svg"> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4885" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4887" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff0000;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4587" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4589" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lstart" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4236" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="DotL" + orient="auto" + refY="0.0" + refX="0.0" + id="DotL" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4297" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt" + transform="scale(0.8) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker4506" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4239" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow2Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4257" + style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(1.1) rotate(180) translate(1,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Lend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path4157" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#aa0000;fill-opacity:1" + transform="scale(0.8) rotate(180) translate(12.5,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="61.135797" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.4539905,0.89100652,-0.89100652,-0.4539905,175.91465,42.288723)" + style="opacity:0.8" + inkscape:transform-center-x="31.476145" + inkscape:transform-center-y="-15.642395"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_0.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_0.svg new file mode 100644 index 0000000..6041ba0 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_0.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_0.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="translate(-3.3231822e-5,3.1722513e-6)" + style="opacity:0.8" + inkscape:transform-center-x="3.307229e-005" + inkscape:transform-center-y="35.455306"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_1.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_1.svg new file mode 100644 index 0000000..0e59a32 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_1.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_1.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.99862953,0.05233596,-0.05233596,0.99862953,4.0302871,-3.8223504)" + style="opacity:0.8" + inkscape:transform-center-x="2.3528127" + inkscape:transform-center-y="35.404578"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_10.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_10.svg new file mode 100644 index 0000000..682d505 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_10.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_10.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.8660254,0.5,-0.5,0.8660254,47.570411,-27.445944)" + style="opacity:0.8" + inkscape:transform-center-x="17.227668" + inkscape:transform-center-y="30.56512"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_100.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_100.svg new file mode 100644 index 0000000..e027920 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_100.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_100.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.5,-0.8660254,0.8660254,0.5,-27.490651,102.47432)" + style="opacity:0.8" + inkscape:transform-center-x="-30.565076" + inkscape:transform-center-y="17.227683"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_11.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_11.svg new file mode 100644 index 0000000..b6406b6 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_11.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_11.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.83867056,0.54463903,-0.54463903,0.83867056,52.971948,-28.741039)" + style="opacity:0.8" + inkscape:transform-center-x="18.84865" + inkscape:transform-center-y="29.567622"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_12.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_12.svg new file mode 100644 index 0000000..ef49e35 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_12.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_12.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.80901699,0.58778525,-0.58778525,0.80901699,58.433862,-29.751665)" + style="opacity:0.8" + inkscape:transform-center-x="20.421355" + inkscape:transform-center-y="28.486388"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_13.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_13.svg new file mode 100644 index 0000000..2ba26c2 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_13.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_13.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.77714596,0.62932039,-0.62932039,0.77714596,63.941183,-30.475051)" + style="opacity:0.8" + inkscape:transform-center-x="21.935387" + inkscape:transform-center-y="27.324377"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_14.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_14.svg new file mode 100644 index 0000000..2b0a14e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_14.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_14.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.74314482,0.66913061,-0.66913061,0.74314482,69.478815,-30.909215)" + style="opacity:0.8" + inkscape:transform-center-x="23.386596" + inkscape:transform-center-y="26.08477"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_15.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_15.svg new file mode 100644 index 0000000..a94b2f7 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_15.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_15.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,75.03158,-31.052967)" + style="opacity:0.8" + inkscape:transform-center-x="24.771" + inkscape:transform-center-y="24.770963"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_16.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_16.svg new file mode 100644 index 0000000..85b0dba --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_16.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_16.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.66913061,0.74314482,-0.74314482,0.66913061,80.584259,-30.905912)" + style="opacity:0.8" + inkscape:transform-center-x="26.084804" + inkscape:transform-center-y="23.386558"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_17.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_17.svg new file mode 100644 index 0000000..1b817de --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_17.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_17.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.62932039,0.77714596,-0.77714596,0.62932039,86.121632,-30.468454)" + style="opacity:0.8" + inkscape:transform-center-x="27.32441" + inkscape:transform-center-y="21.935348"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_18.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_18.svg new file mode 100644 index 0000000..9c39b42 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_18.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_18.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.58778525,0.80901699,-0.80901699,0.58778525,91.628521,-29.741792)" + style="opacity:0.8" + inkscape:transform-center-x="28.48642" + inkscape:transform-center-y="20.421313"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_19.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_19.svg new file mode 100644 index 0000000..3937818 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_19.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_19.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.54463903,0.83867056,-0.83867056,0.54463903,97.089833,-28.727918)" + style="opacity:0.8" + inkscape:transform-center-x="29.567652" + inkscape:transform-center-y="18.848606"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_2.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_2.svg new file mode 100644 index 0000000..7257737 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_2.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_2.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.99452189,0.10452847,-0.10452847,0.99452189,8.2551305,-7.4285349)" + style="opacity:0.8" + inkscape:transform-center-x="4.6991431" + inkscape:transform-center-y="35.254053"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_20.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_20.svg new file mode 100644 index 0000000..6576b8f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_20.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_20.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.5,0.8660254,-0.8660254,0.5,102.4906,-27.42961)" + style="opacity:0.8" + inkscape:transform-center-x="30.565145" + inkscape:transform-center-y="17.227637"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_21.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_21.svg new file mode 100644 index 0000000..cb903b6 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_21.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_21.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.4539905,0.89100652,-0.89100652,0.4539905,107.81602,-25.850427)" + style="opacity:0.8" + inkscape:transform-center-x="31.476168" + inkscape:transform-center-y="15.642365"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_22.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_22.svg new file mode 100644 index 0000000..eba9327 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_22.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_22.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.40673664,0.91354545,-0.91354545,0.40673664,113.05149,-23.994697)" + style="opacity:0.8" + inkscape:transform-center-x="32.298234" + inkscape:transform-center-y="14.014219"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_23.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_23.svg new file mode 100644 index 0000000..a6a2038 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_23.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_23.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.35836795,0.93358042,-0.93358042,0.35836795,118.18266,-21.867507)" + style="opacity:0.8" + inkscape:transform-center-x="33.029092" + inkscape:transform-center-y="12.347662"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_24.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_24.svg new file mode 100644 index 0000000..2b9fe5b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_24.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_24.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.309017,0.95105651,-0.95105651,0.309017,123.19547,-19.474688)" + style="opacity:0.8" + inkscape:transform-center-x="33.666735" + inkscape:transform-center-y="10.999021"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_25.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_25.svg new file mode 100644 index 0000000..3741900 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_25.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_25.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.25881905,0.96592582,-0.96592582,0.25881905,128.07618,-16.822798)" + style="opacity:0.8" + inkscape:transform-center-x="34.209416" + inkscape:transform-center-y="9.8965736"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_26.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_26.svg new file mode 100644 index 0000000..c849311 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_26.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_26.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.2079117,0.97814759,-0.97814759,0.2079117,132.81141,-13.919106)" + style="opacity:0.8" + inkscape:transform-center-x="34.655643" + inkscape:transform-center-y="8.764311"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_27.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_27.svg new file mode 100644 index 0000000..9e0dea6 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_27.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_27.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.15643447,0.98768833,-0.98768833,0.15643447,137.38819,-10.77157)" + style="opacity:0.8" + inkscape:transform-center-x="35.004178" + inkscape:transform-center-y="7.0325259"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_28.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_28.svg new file mode 100644 index 0000000..e558758 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_28.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_28.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.10452847,0.99452189,-0.99452189,0.10452847,141.79397,-7.3888176)" + style="opacity:0.8" + inkscape:transform-center-x="35.254056" + inkscape:transform-center-y="4.699076"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_29.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_29.svg new file mode 100644 index 0000000..acf6df6 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_29.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_29.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.05233596,0.99862953,-0.99862953,0.05233596,146.01667,-3.7801205)" + style="opacity:0.8" + inkscape:transform-center-x="35.404577" + inkscape:transform-center-y="2.3527455"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_3.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_3.svg new file mode 100644 index 0000000..f50d732 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_3.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_3.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.98768833,0.15643447,-0.15643447,0.98768833,12.662917,-10.808666)" + style="opacity:0.8" + inkscape:transform-center-x="7.0325932" + inkscape:transform-center-y="35.004168"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_30.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_30.svg new file mode 100644 index 0000000..f8a67f6 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_30.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_30.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0,1,-1,0,150.04472,0.04463005)" + style="opacity:0.8" + inkscape:transform-center-x="35.455299" + inkscape:transform-center-y="-3.3343749e-005"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_31.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_31.svg new file mode 100644 index 0000000..a549aac --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_31.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_31.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.05233596,0.99862953,-0.99862953,-0.05233596,153.86707,4.0749507)" + style="opacity:0.8" + inkscape:transform-center-x="35.404575" + inkscape:transform-center-y="-2.3528127"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_32.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_32.svg new file mode 100644 index 0000000..57f681b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_32.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_32.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.10452847,0.99452189,-0.99452189,-0.10452847,157.47325,8.2997943)" + style="opacity:0.8" + inkscape:transform-center-x="35.254054" + inkscape:transform-center-y="-4.6991429"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_33.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_33.svg new file mode 100644 index 0000000..ce84f07 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_33.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_33.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.15643447,0.98768833,-0.98768833,-0.15643447,160.85338,12.707581)" + style="opacity:0.8" + inkscape:transform-center-x="35.00417" + inkscape:transform-center-y="-7.0325928"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_34.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_34.svg new file mode 100644 index 0000000..e915bef --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_34.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_34.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.2079117,0.97814759,-0.97814759,-0.2079117,163.99819,17.286229)" + style="opacity:0.8" + inkscape:transform-center-x="34.655633" + inkscape:transform-center-y="-8.7643609"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_35.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_35.svg new file mode 100644 index 0000000..97722f3 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_35.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_35.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.25881905,0.96592582,-0.96592582,-0.25881905,166.89907,22.023189)" + style="opacity:0.8" + inkscape:transform-center-x="34.209402" + inkscape:transform-center-y="-9.8966218"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_36.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_36.svg new file mode 100644 index 0000000..1e44e9d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_36.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_36.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.309017,0.95105651,-0.95105651,-0.309017,169.54806,26.905477)" + style="opacity:0.8" + inkscape:transform-center-x="33.666717" + inkscape:transform-center-y="-10.999069"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_37.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_37.svg new file mode 100644 index 0000000..72c295e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_37.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_37.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.35836795,0.93358042,-0.93358042,-0.35836795,171.9379,31.919712)" + style="opacity:0.8" + inkscape:transform-center-x="33.029069" + inkscape:transform-center-y="-12.347693"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_38.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_38.svg new file mode 100644 index 0000000..c2236ce --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_38.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_38.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.40673664,0.91354545,-0.91354545,-0.40673664,174.06204,37.05215)" + style="opacity:0.8" + inkscape:transform-center-x="32.298208" + inkscape:transform-center-y="-14.01425"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_39.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_39.svg new file mode 100644 index 0000000..2c9ceab --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_39.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_39.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.4539905,0.89100652,-0.89100652,-0.4539905,175.91465,42.288723)" + style="opacity:0.8" + inkscape:transform-center-x="31.476145" + inkscape:transform-center-y="-15.642395"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_4.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_4.svg new file mode 100644 index 0000000..6a5ff90 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_4.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_4.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.97814759,0.2079117,-0.2079117,0.97814759,17.241565,-13.953479)" + style="opacity:0.8" + inkscape:transform-center-x="8.7643613" + inkscape:transform-center-y="34.655628"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_40.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_40.svg new file mode 100644 index 0000000..6b8b94b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_40.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_40.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.5,0.8660254,-0.8660254,-0.5,177.49066,47.615077)" + style="opacity:0.8" + inkscape:transform-center-x="30.56512" + inkscape:transform-center-y="-17.227666"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_41.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_41.svg new file mode 100644 index 0000000..93d438c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_41.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_41.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.54463903,0.83867056,-0.83867056,-0.54463903,178.78576,53.016614)" + style="opacity:0.8" + inkscape:transform-center-x="29.567617" + inkscape:transform-center-y="-18.848648"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_42.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_42.svg new file mode 100644 index 0000000..821d228 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_42.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_42.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.58778525,0.80901699,-0.80901699,-0.58778525,179.79639,58.478528)" + style="opacity:0.8" + inkscape:transform-center-x="28.486379" + inkscape:transform-center-y="-20.421353"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_43.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_43.svg new file mode 100644 index 0000000..c343676 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_43.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_43.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.62932039,0.77714596,-0.77714596,-0.62932039,180.51978,63.985849)" + style="opacity:0.8" + inkscape:transform-center-x="27.324364" + inkscape:transform-center-y="-21.935385"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_44.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_44.svg new file mode 100644 index 0000000..2fe2106 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_44.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_44.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.66913061,0.74314482,-0.74314482,-0.66913061,180.95394,69.523482)" + style="opacity:0.8" + inkscape:transform-center-x="26.084761" + inkscape:transform-center-y="-23.386593"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_45.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_45.svg new file mode 100644 index 0000000..f0709b2 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_45.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_45.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.70710678,0.70710678,-0.70710678,-0.70710678,181.09769,75.076248)" + style="opacity:0.8" + inkscape:transform-center-x="24.770956" + inkscape:transform-center-y="-24.770996"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_46.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_46.svg new file mode 100644 index 0000000..2ea8cb7 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_46.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_46.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.74314482,0.66913061,-0.66913061,-0.74314482,180.95064,80.628927)" + style="opacity:0.8" + inkscape:transform-center-x="23.386546" + inkscape:transform-center-y="-26.0848"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_47.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_47.svg new file mode 100644 index 0000000..8c3dc2a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_47.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_47.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.77714596,0.62932039,-0.62932039,-0.77714596,180.51318,86.166301)" + style="opacity:0.8" + inkscape:transform-center-x="21.935338" + inkscape:transform-center-y="-27.324405"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_48.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_48.svg new file mode 100644 index 0000000..d664d55 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_48.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_48.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.80901699,0.58778525,-0.58778525,-0.80901699,179.78652,91.673191)" + style="opacity:0.8" + inkscape:transform-center-x="20.421301" + inkscape:transform-center-y="-28.486414"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_49.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_49.svg new file mode 100644 index 0000000..b5471b4 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_49.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_49.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.83867056,0.54463903,-0.54463903,-0.83867056,178.77265,97.134503)" + style="opacity:0.8" + inkscape:transform-center-x="18.84859" + inkscape:transform-center-y="-29.567646"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_5.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_5.svg new file mode 100644 index 0000000..66d774f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_5.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_5.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.96592582,0.25881905,-0.25881905,0.96592582,21.978525,-16.854354)" + style="opacity:0.8" + inkscape:transform-center-x="9.8966222" + inkscape:transform-center-y="34.209402"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_50.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_50.svg new file mode 100644 index 0000000..a6012e8 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_50.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_50.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.8660254,0.5,-0.5,-0.8660254,177.47434,102.53527)" + style="opacity:0.8" + inkscape:transform-center-x="17.227623" + inkscape:transform-center-y="-30.565139"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_51.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_51.svg new file mode 100644 index 0000000..63a3074 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_51.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_51.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.89100652,0.4539905,-0.4539905,-0.89100652,175.89516,107.86069)" + style="opacity:0.8" + inkscape:transform-center-x="15.642348" + inkscape:transform-center-y="-31.476162"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_52.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_52.svg new file mode 100644 index 0000000..fe98f74 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_52.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_52.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.91354545,0.40673664,-0.40673664,-0.91354545,174.03943,113.09616)" + style="opacity:0.8" + inkscape:transform-center-x="14.014202" + inkscape:transform-center-y="-32.298228"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_53.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_53.svg new file mode 100644 index 0000000..e3a0fc4 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_53.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_53.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.93358042,0.35836795,-0.35836795,-0.93358042,171.91224,118.22733)" + style="opacity:0.8" + inkscape:transform-center-x="12.347645" + inkscape:transform-center-y="-33.029086"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_54.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_54.svg new file mode 100644 index 0000000..8d9f119 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_54.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_54.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.95105651,0.309017,-0.309017,-0.95105651,169.51942,123.24014)" + style="opacity:0.8" + inkscape:transform-center-x="10.999005" + inkscape:transform-center-y="-33.666729"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_55.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_55.svg new file mode 100644 index 0000000..377a6b3 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_55.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_55.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.96592582,0.25881905,-0.25881905,-0.96592582,166.86753,128.12085)" + style="opacity:0.8" + inkscape:transform-center-x="9.8965576" + inkscape:transform-center-y="-34.20941"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_56.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_56.svg new file mode 100644 index 0000000..51aa033 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_56.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_56.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.97814759,0.2079117,-0.2079117,-0.97814759,163.96384,132.85608)" + style="opacity:0.8" + inkscape:transform-center-x="8.764293" + inkscape:transform-center-y="-34.655637"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_57.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_57.svg new file mode 100644 index 0000000..c1c706c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_57.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_57.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.98768833,0.15643447,-0.15643447,-0.98768833,160.8163,137.43286)" + style="opacity:0.8" + inkscape:transform-center-x="7.0325119" + inkscape:transform-center-y="-35.004172"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_58.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_58.svg new file mode 100644 index 0000000..4539158 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_58.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_58.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.99452189,0.10452847,-0.10452847,-0.99452189,157.43355,141.83864)" + style="opacity:0.8" + inkscape:transform-center-x="4.6990596" + inkscape:transform-center-y="-35.25405"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_59.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_59.svg new file mode 100644 index 0000000..c3533ac --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_59.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_59.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.99862953,0.05233596,-0.05233596,-0.99862953,153.82485,146.06134)" + style="opacity:0.8" + inkscape:transform-center-x="2.352732" + inkscape:transform-center-y="-35.404571"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_6.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_6.svg new file mode 100644 index 0000000..358b3b2 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_6.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_6.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.95105651,0.309017,-0.309017,0.95105651,26.860813,-19.50334)" + style="opacity:0.8" + inkscape:transform-center-x="10.999069" + inkscape:transform-center-y="33.666721"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_60.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_60.svg new file mode 100644 index 0000000..db3aaa1 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_60.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_60.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-1,0,0,-1,150.0001,150.08939)" + style="opacity:0.8" + inkscape:transform-center-x="-4.7393749e-005" + inkscape:transform-center-y="-35.455293"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_61.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_61.svg new file mode 100644 index 0000000..4c09b06 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_61.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_61.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.99862953,-0.05233596,0.05233596,-0.99862953,145.96978,153.91174)" + style="opacity:0.8" + inkscape:transform-center-x="-2.3528274" + inkscape:transform-center-y="-35.404569"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_62.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_62.svg new file mode 100644 index 0000000..e7cec7b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_62.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_62.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.99452189,-0.10452847,0.10452847,-0.99452189,141.74494,157.51793)" + style="opacity:0.8" + inkscape:transform-center-x="-4.6991612" + inkscape:transform-center-y="-35.254038"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_63.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_63.svg new file mode 100644 index 0000000..fdb3829 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_63.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_63.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.98768833,-0.15643447,0.15643447,-0.98768833,137.33715,160.89806)" + style="opacity:0.8" + inkscape:transform-center-x="-7.0326078" + inkscape:transform-center-y="-35.004154"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_64.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_64.svg new file mode 100644 index 0000000..521e82d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_64.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_64.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.97814759,-0.2079117,0.2079117,-0.97814759,132.7585,164.04287)" + style="opacity:0.8" + inkscape:transform-center-x="-8.7643739" + inkscape:transform-center-y="-34.655617"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_65.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_65.svg new file mode 100644 index 0000000..3b91b2d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_65.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_65.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.96592582,-0.25881905,0.25881905,-0.96592582,128.02154,166.94375)" + style="opacity:0.8" + inkscape:transform-center-x="-9.8966348" + inkscape:transform-center-y="-34.209386"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_66.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_66.svg new file mode 100644 index 0000000..cb28310 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_66.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_66.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.95105651,-0.309017,0.309017,-0.95105651,123.13925,169.59274)" + style="opacity:0.8" + inkscape:transform-center-x="-10.99908" + inkscape:transform-center-y="-33.666701"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_67.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_67.svg new file mode 100644 index 0000000..aaaabdc --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_67.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_67.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.93358042,-0.35836795,0.35836795,-0.93358042,118.12501,171.98258)" + style="opacity:0.8" + inkscape:transform-center-x="-12.347699" + inkscape:transform-center-y="-33.029053"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_68.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_68.svg new file mode 100644 index 0000000..ca1c93d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_68.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_68.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.91354545,-0.40673664,0.40673664,-0.91354545,112.99257,174.10672)" + style="opacity:0.8" + inkscape:transform-center-x="-14.014254" + inkscape:transform-center-y="-32.298192"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_69.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_69.svg new file mode 100644 index 0000000..74f4479 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_69.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_69.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.89100652,-0.4539905,0.4539905,-0.89100652,107.756,175.95933)" + style="opacity:0.8" + inkscape:transform-center-x="-15.642402" + inkscape:transform-center-y="-31.476129"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_7.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_7.svg new file mode 100644 index 0000000..6a2733a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_7.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_7.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.93358042,0.35836795,-0.35836795,0.93358042,31.875048,-21.893177)" + style="opacity:0.8" + inkscape:transform-center-x="12.347693" + inkscape:transform-center-y="33.029076"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_70.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_70.svg new file mode 100644 index 0000000..c6aa3c9 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_70.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_70.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,102.42965,177.53535)" + style="opacity:0.8" + inkscape:transform-center-x="-17.227677" + inkscape:transform-center-y="-30.565094"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_71.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_71.svg new file mode 100644 index 0000000..0b49abe --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_71.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_71.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.83867056,-0.54463903,0.54463903,-0.83867056,97.028112,178.83045)" + style="opacity:0.8" + inkscape:transform-center-x="-18.848658" + inkscape:transform-center-y="-29.567591"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_72.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_72.svg new file mode 100644 index 0000000..a57dc7b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_72.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_72.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.80901699,-0.58778525,0.58778525,-0.80901699,91.566196,179.84108)" + style="opacity:0.8" + inkscape:transform-center-x="-20.421361" + inkscape:transform-center-y="-28.486353"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_73.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_73.svg new file mode 100644 index 0000000..56dc382 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_73.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_73.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.77714596,-0.62932039,0.62932039,-0.77714596,86.058873,180.56447)" + style="opacity:0.8" + inkscape:transform-center-x="-21.935391" + inkscape:transform-center-y="-27.324338"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_74.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_74.svg new file mode 100644 index 0000000..f562a38 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_74.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_74.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.74314482,-0.66913061,0.66913061,-0.74314482,80.521239,180.99863)" + style="opacity:0.8" + inkscape:transform-center-x="-23.386598" + inkscape:transform-center-y="-26.084735"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_75.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_75.svg new file mode 100644 index 0000000..a7b1452 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_75.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_75.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,74.968472,181.14238)" + style="opacity:0.8" + inkscape:transform-center-x="-24.771" + inkscape:transform-center-y="-24.77093"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_76.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_76.svg new file mode 100644 index 0000000..f31de9e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_76.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_76.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.66913061,-0.74314482,0.74314482,-0.66913061,69.415791,180.99533)" + style="opacity:0.8" + inkscape:transform-center-x="-26.084802" + inkscape:transform-center-y="-23.38652"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_77.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_77.svg new file mode 100644 index 0000000..e2afdf2 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_77.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_77.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.62932039,-0.77714596,0.77714596,-0.62932039,63.878416,180.55787)" + style="opacity:0.8" + inkscape:transform-center-x="-27.324406" + inkscape:transform-center-y="-21.935312"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_78.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_78.svg new file mode 100644 index 0000000..631d4de --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_78.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_78.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.58778525,-0.80901699,0.80901699,-0.58778525,58.371525,179.83121)" + style="opacity:0.8" + inkscape:transform-center-x="-28.486414" + inkscape:transform-center-y="-20.421275"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_79.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_79.svg new file mode 100644 index 0000000..49e4b90 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_79.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_79.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.54463903,-0.83867056,0.83867056,-0.54463903,52.910211,178.81734)" + style="opacity:0.8" + inkscape:transform-center-x="-29.567644" + inkscape:transform-center-y="-18.848564"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_8.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_8.svg new file mode 100644 index 0000000..004fc51 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_8.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_8.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.91354545,0.40673664,-0.40673664,0.91354545,37.007485,-24.017314)" + style="opacity:0.8" + inkscape:transform-center-x="14.014251" + inkscape:transform-center-y="32.298218"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_80.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_80.svg new file mode 100644 index 0000000..6f23b2f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_80.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_80.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,47.509444,177.51903)" + style="opacity:0.8" + inkscape:transform-center-x="-30.565137" + inkscape:transform-center-y="-17.227597"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_81.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_81.svg new file mode 100644 index 0000000..827bace --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_81.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_81.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.4539905,-0.89100652,0.89100652,-0.4539905,42.184026,175.93985)" + style="opacity:0.8" + inkscape:transform-center-x="-31.476162" + inkscape:transform-center-y="-15.642322"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_82.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_82.svg new file mode 100644 index 0000000..71823e0 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_82.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_82.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.40673664,-0.91354545,0.91354545,-0.40673664,36.948555,174.08412)" + style="opacity:0.8" + inkscape:transform-center-x="-32.298227" + inkscape:transform-center-y="-14.014176"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_83.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_83.svg new file mode 100644 index 0000000..ff20447 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_83.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_83.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.35836795,-0.93358042,0.93358042,-0.35836795,31.81738,171.95693)" + style="opacity:0.8" + inkscape:transform-center-x="-33.02908" + inkscape:transform-center-y="-12.347619"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_84.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_84.svg new file mode 100644 index 0000000..8dd67fa --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_84.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_84.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.309017,-0.95105651,0.95105651,-0.309017,26.804566,169.56411)" + style="opacity:0.8" + inkscape:transform-center-x="-33.666719" + inkscape:transform-center-y="-10.998979"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_85.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_85.svg new file mode 100644 index 0000000..7a62631 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_85.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_85.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.25881905,-0.96592582,0.96592582,-0.25881905,21.923852,166.91222)" + style="opacity:0.8" + inkscape:transform-center-x="-34.209396" + inkscape:transform-center-y="-9.8965316"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_86.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_86.svg new file mode 100644 index 0000000..6b73f31 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_86.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_86.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.2079117,-0.97814759,0.97814759,-0.2079117,17.188616,164.00853)" + style="opacity:0.8" + inkscape:transform-center-x="-34.655617" + inkscape:transform-center-y="-8.764267"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_87.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_87.svg new file mode 100644 index 0000000..eeb0514 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_87.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_87.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.15643447,-0.98768833,0.98768833,-0.15643447,12.611837,160.86099)" + style="opacity:0.8" + inkscape:transform-center-x="-35.004153" + inkscape:transform-center-y="-7.0324859"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_88.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_88.svg new file mode 100644 index 0000000..7fc1376 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_88.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_88.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.10452847,-0.99452189,0.99452189,-0.10452847,8.2060599,157.47824)" + style="opacity:0.8" + inkscape:transform-center-x="-35.254034" + inkscape:transform-center-y="-4.6990336"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_89.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_89.svg new file mode 100644 index 0000000..5ad1e96 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_89.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_89.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.05233596,-0.99862953,0.99862953,-0.05233596,3.9833602,153.86954)" + style="opacity:0.8" + inkscape:transform-center-x="-35.404555" + inkscape:transform-center-y="-2.352706"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_9.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_9.svg new file mode 100644 index 0000000..d118420 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_9.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_9.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.89100652,0.4539905,-0.4539905,0.89100652,42.244057,-25.869929)" + style="opacity:0.8" + inkscape:transform-center-x="15.642397" + inkscape:transform-center-y="31.47615"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_90.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_90.svg new file mode 100644 index 0000000..80ec2c6 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_90.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_90.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0,-1,1,0,-0.04468769,150.04479)" + style="opacity:0.8" + inkscape:transform-center-x="-35.455279" + inkscape:transform-center-y="7.3393749e-005"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_91.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_91.svg new file mode 100644 index 0000000..dc3edf9 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_91.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_91.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.05233596,-0.99862953,0.99862953,0.05233596,-3.8670433,146.01447)" + style="opacity:0.8" + inkscape:transform-center-x="-35.404549" + inkscape:transform-center-y="2.3528534"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_92.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_92.svg new file mode 100644 index 0000000..3dbe027 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_92.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_92.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.10452847,-0.99452189,0.99452189,0.10452847,-7.4732298,141.78962)" + style="opacity:0.8" + inkscape:transform-center-x="-35.254022" + inkscape:transform-center-y="4.6991772"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_93.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_93.svg new file mode 100644 index 0000000..76076ac --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_93.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_93.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.15643447,-0.98768833,0.98768833,0.15643447,-10.853363,137.38183)" + style="opacity:0.8" + inkscape:transform-center-x="-35.004134" + inkscape:transform-center-y="7.0326238"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_94.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_94.svg new file mode 100644 index 0000000..be16f08 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_94.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_94.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.2079117,-0.97814759,0.97814759,0.2079117,-13.998178,132.80318)" + style="opacity:0.8" + inkscape:transform-center-x="-34.655592" + inkscape:transform-center-y="8.7643899"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_95.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_95.svg new file mode 100644 index 0000000..e86fb22 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_95.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_95.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.25881905,-0.96592582,0.96592582,0.25881905,-16.899055,128.06622)" + style="opacity:0.8" + inkscape:transform-center-x="-34.209364" + inkscape:transform-center-y="9.8966508"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_96.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_96.svg new file mode 100644 index 0000000..29ae525 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_96.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_96.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.309017,-0.95105651,0.95105651,0.309017,-19.548043,123.18393)" + style="opacity:0.8" + inkscape:transform-center-x="-33.666681" + inkscape:transform-center-y="10.999096"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_97.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_97.svg new file mode 100644 index 0000000..f95f36e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_97.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_97.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.35836795,-0.93358042,0.93358042,0.35836795,-21.937881,118.16969)" + style="opacity:0.8" + inkscape:transform-center-x="-33.029035" + inkscape:transform-center-y="12.347715"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_98.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_98.svg new file mode 100644 index 0000000..dfc8c02 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_98.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_98.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.40673664,-0.91354545,0.91354545,0.40673664,-24.062019,113.03725)" + style="opacity:0.8" + inkscape:transform-center-x="-32.298176" + inkscape:transform-center-y="14.01427"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/perc_99.svg b/skins/blackhole/themes/default/skinparts/tachohands/perc_99.svg new file mode 100644 index 0000000..d1e3a3c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/perc_99.svg @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="perc_99.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.2556286" + inkscape:cx="23.300481" + inkscape:cy="72.768692" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.4539905,-0.89100652,0.89100652,0.4539905,-25.914635,107.80068)" + style="opacity:0.8" + inkscape:transform-center-x="-31.476107" + inkscape:transform-center-y="15.642418"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="89.047386" + y="134.77823" + id="text6300" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6302" + x="89.047386" + y="134.77823" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:DS-Digital;-inkscape-font-specification:'DS-Digital, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff">%</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_0.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_0.svg new file mode 100644 index 0000000..583b664 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_0.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_0.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.51322343,0.88892912,-0.8612809,0.49726076,101.15454,-28.938284)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="30.389496" + inkscape:transform-center-y="17.13327"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_1.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_1.svg new file mode 100644 index 0000000..319af2f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_1.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_1.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.46599712,0.91457091,-0.88612516,0.45150332,106.56095,-27.427568)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="31.29694" + inkscape:transform-center-y="15.556682"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_10.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_10.svg new file mode 100644 index 0000000..a0eea0a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_10.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_10.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-3.4154506e-8,1.026447,-0.99452152,-1.5373359e-8,149.64533,-1.9353541)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="35.261071" + inkscape:transform-center-y="-1.9831535e-005"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_11.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_11.svg new file mode 100644 index 0000000..4f8d1ca --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_11.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_11.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.05372012,1.0250403,-0.99315856,-0.05204925,153.57206,2.0761677)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="35.210504" + inkscape:transform-center-y="-2.3399082"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_12.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_12.svg new file mode 100644 index 0000000..d97b402 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_12.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_12.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.10729296,1.020824,-0.98907342,-0.10395582,157.28346,6.2877009)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="35.060511" + inkscape:transform-center-y="-4.6733855"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_13.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_13.svg new file mode 100644 index 0000000..128a04b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_13.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_13.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.16057172,1.0138097,-0.9822773,-0.15557746,160.76936,10.687702)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="34.811531" + inkscape:transform-center-y="-6.9940534"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_14.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_14.svg new file mode 100644 index 0000000..0118cbb --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_14.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_14.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.21341036,1.0040166,-0.97278883,-0.20677267,164.0202,15.264111)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="34.464275" + inkscape:transform-center-y="-8.8419033"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_15.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_15.svg new file mode 100644 index 0000000..f999097 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_15.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_15.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.26566406,0.99147157,-0.96063401,-0.25740113,167.02708,20.004384)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="34.019705" + inkscape:transform-center-y="-9.9667542"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_16.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_16.svg new file mode 100644 index 0000000..29d77b1 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_16.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_16.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.31718959,0.97620901,-0.94584616,-0.30732407,169.78175,24.895529)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="33.479062" + inkscape:transform-center-y="-11.061676"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_17.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_17.svg new file mode 100644 index 0000000..4e9ba30 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_17.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_17.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.36784572,0.95827073,-0.92846581,-0.35640466,172.27666,29.924139)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="32.84384" + inkscape:transform-center-y="-12.280037"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_18.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_18.svg new file mode 100644 index 0000000..e45c278 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_18.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_18.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.41749362,0.9377059,-0.9085406,-0.40450837,174.50497,35.07643)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="32.115793" + inkscape:transform-center-y="-13.937465"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_19.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_19.svg new file mode 100644 index 0000000..5ed9014 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_19.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_19.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.46599719,0.91457088,-0.88612514,-0.45150335,176.46058,40.338281)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="31.296915" + inkscape:transform-center-y="-15.556691"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_2.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_2.svg new file mode 100644 index 0000000..8951e17 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_2.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_2.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.41749354,0.93770593,-0.90854061,0.40450834,111.88088,-25.635972)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="32.115817" + inkscape:transform-center-y="13.937456"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_20.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_20.svg new file mode 100644 index 0000000..89fce58 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_20.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_20.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.5132235,0.88892908,-0.86128088,-0.49726079,178.13813,45.69527)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="30.38946" + inkscape:transform-center-y="-17.133277"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_21.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_21.svg new file mode 100644 index 0000000..1fbed8a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_21.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_21.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.5590431,0.86085079,-0.83407591,-0.54165527,179.53301,51.132713)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="29.395935" + inkscape:transform-center-y="-18.722744"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_22.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_22.svg new file mode 100644 index 0000000..3ca7200 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_22.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_22.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.6033304,0.83041297,-0.80458479,-0.58456511,180.64141,56.635707)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="28.319057" + inkscape:transform-center-y="-20.288373"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_23.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_23.svg new file mode 100644 index 0000000..521f929 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_23.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_23.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.64596401,0.79769904,-0.77288836,-0.6258727,181.46028,62.189168)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="27.161799" + inkscape:transform-center-y="-21.795711"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_24.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_24.svg new file mode 100644 index 0000000..d453f59 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_24.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_24.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.68682708,0.76279868,-0.7390735,-0.66546481,181.98739,67.777875)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="25.927331" + inkscape:transform-center-y="-23.240607"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_25.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_25.svg new file mode 100644 index 0000000..a0c6803 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_25.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_25.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.72580761,0.72580754,-0.70323289,-0.70323293,182.22128,73.386509)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="24.619062" + inkscape:transform-center-y="-24.619088"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_26.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_26.svg new file mode 100644 index 0000000..d03f1a0 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_26.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_26.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.76279875,0.68682701,-0.66546477,-0.73907354,182.16132,78.999698)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="23.240581" + inkscape:transform-center-y="-25.92736"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_27.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_27.svg new file mode 100644 index 0000000..ec8a536 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_27.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_27.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.79769911,0.64596394,-0.62587265,-0.7728884,181.80767,84.602056)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="21.795683" + inkscape:transform-center-y="-27.161824"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_28.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_28.svg new file mode 100644 index 0000000..f7d67c1 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_28.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_28.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.83041303,0.60333032,-0.58456506,-0.80458483,181.1613,90.178228)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="20.288345" + inkscape:transform-center-y="-28.319085"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_29.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_29.svg new file mode 100644 index 0000000..d0274b5 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_29.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_29.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.86085085,0.55904302,-0.54165522,-0.83407595,180.22398,95.712929)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="18.722717" + inkscape:transform-center-y="-29.39596"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_3.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_3.svg new file mode 100644 index 0000000..749b283 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_3.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_3.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.36784564,0.95827076,-0.92846582,0.35640463,117.09976,-23.568408)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="32.843863" + inkscape:transform-center-y="12.280027"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_30.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_30.svg new file mode 100644 index 0000000..c20ca1d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_30.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_30.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.88892913,0.51322342,-0.49726074,-0.86128092,178.99828,101.19099)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="17.133267" + inkscape:transform-center-y="-30.389487"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_31.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_31.svg new file mode 100644 index 0000000..a41fe18 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_31.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_31.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.91457092,0.46599711,-0.4515033,-0.88612518,177.48756,106.59739)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="15.556683" + inkscape:transform-center-y="-31.296941"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_32.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_32.svg new file mode 100644 index 0000000..01c0b8d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_32.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_32.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.93770594,0.41749353,-0.40450832,-0.90854063,175.69596,111.91732)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="13.937461" + inkscape:transform-center-y="-32.115818"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_33.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_33.svg new file mode 100644 index 0000000..2803210 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_33.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_33.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.95827077,0.36784563,-0.35640461,-0.92846584,173.6284,117.1362)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="12.280028" + inkscape:transform-center-y="-32.843864"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_34.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_34.svg new file mode 100644 index 0000000..ff26872 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_34.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_34.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.97620905,0.31718949,-0.30732402,-0.94584619,171.29053,122.23971)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="11.061655" + inkscape:transform-center-y="-33.47909"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_35.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_35.svg new file mode 100644 index 0000000..0edc1af --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_35.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_35.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.9914716,0.26566396,-0.25740108,-0.96063404,168.68877,127.21388)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="9.9667321" + inkscape:transform-center-y="-34.019726"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_36.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_36.svg new file mode 100644 index 0000000..4a0c025 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_36.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_36.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-1.0040166,0.21341026,-0.20677262,-0.97278886,165.83025,132.04506)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="8.8418811" + inkscape:transform-center-y="-34.464295"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_37.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_37.svg new file mode 100644 index 0000000..a0a3b2f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_37.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_37.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-1.0138097,0.16057162,-0.15557741,-0.98227733,162.7228,136.72002)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="6.9940198" + inkscape:transform-center-y="-34.81155"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_38.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_38.svg new file mode 100644 index 0000000..24a3a14 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_38.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_38.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-1.020824,0.10729286,-0.10395577,-0.98907345,159.37494,141.22594)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="4.6733562" + inkscape:transform-center-y="-35.060528"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_39.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_39.svg new file mode 100644 index 0000000..933217d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_39.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_39.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-1.0250403,0.05372002,-0.0520492,-0.99315858,155.79585,145.55047)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="2.3398809" + inkscape:transform-center-y="-35.21052"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_4.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_4.svg new file mode 100644 index 0000000..8327519 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_4.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_4.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.3171895,0.97620904,-0.94584617,0.30732404,122.20328,-21.230543)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="33.479079" + inkscape:transform-center-y="11.061649"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_40.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_40.svg new file mode 100644 index 0000000..c6983a7 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_40.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_40.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-1.026447,-6.5708448e-8,3.5604836e-8,-0.99452154,151.99534,149.68176)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-1.4318327e-005" + inkscape:transform-center-y="-35.261083"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_41.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_41.svg new file mode 100644 index 0000000..4d6a38a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_41.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_41.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-1.0250403,-0.05372014,0.05204927,-0.99315858,147.98382,153.60849)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-2.3399045" + inkscape:transform-center-y="-35.210515"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_42.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_42.svg new file mode 100644 index 0000000..a3ccf58 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_42.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_42.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-1.020824,-0.10729298,0.10395584,-0.98907344,143.77229,157.31989)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-4.673385" + inkscape:transform-center-y="-35.060522"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_43.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_43.svg new file mode 100644 index 0000000..66a5df9 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_43.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_43.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-1.0138097,-0.16057174,0.15557748,-0.98227732,139.37229,160.80579)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-6.994054" + inkscape:transform-center-y="-34.811542"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_44.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_44.svg new file mode 100644 index 0000000..d21f36c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_44.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_44.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-1.0040166,-0.21341038,0.20677269,-0.97278885,134.79588,164.05663)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-8.8419025" + inkscape:transform-center-y="-34.464286"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_45.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_45.svg new file mode 100644 index 0000000..70e2f55 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_45.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_45.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.99147159,-0.26566408,0.25740115,-0.96063403,130.05561,167.06351)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-9.966755" + inkscape:transform-center-y="-34.019716"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_46.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_46.svg new file mode 100644 index 0000000..8e06c20 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_46.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_46.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.97620903,-0.31718961,0.30732409,-0.94584618,125.16447,169.81818)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-11.061682" + inkscape:transform-center-y="-33.479073"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_47.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_47.svg new file mode 100644 index 0000000..9099236 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_47.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_47.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.95827075,-0.36784575,0.35640468,-0.92846583,120.13586,172.31309)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-12.280043" + inkscape:transform-center-y="-32.843852"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_48.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_48.svg new file mode 100644 index 0000000..7513f95 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_48.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_48.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.93770591,-0.41749365,0.40450839,-0.90854062,114.98357,174.5414)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-13.937473" + inkscape:transform-center-y="-32.115805"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_49.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_49.svg new file mode 100644 index 0000000..43e05bf --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_49.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_49.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.91457089,-0.46599722,0.45150337,-0.88612516,109.72172,176.49701)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-15.5567" + inkscape:transform-center-y="-31.296927"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_5.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_5.svg new file mode 100644 index 0000000..3586d3a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_5.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_5.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.26566397,0.9914716,-0.96063402,0.2574011,127.17745,-18.628784)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="34.019715" + inkscape:transform-center-y="9.9667262"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_50.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_50.svg new file mode 100644 index 0000000..2b0269f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_50.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_50.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.88892909,-0.51322353,0.49726081,-0.8612809,104.36473,178.17456)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-17.133285" + inkscape:transform-center-y="-30.389472"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_51.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_51.svg new file mode 100644 index 0000000..d783688 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_51.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_51.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.8608508,-0.55904313,0.54165529,-0.83407592,98.927287,179.56944)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-18.722752" + inkscape:transform-center-y="-29.395946"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_52.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_52.svg new file mode 100644 index 0000000..6ceb4dc --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_52.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_52.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.83041298,-0.60333043,0.58456513,-0.8045848,93.424294,180.67784)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-20.288382" + inkscape:transform-center-y="-28.319068"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_53.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_53.svg new file mode 100644 index 0000000..92ffafa --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_53.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_53.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.79769905,-0.64596404,0.62587272,-0.77288837,87.870833,181.49671)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-21.79572" + inkscape:transform-center-y="-27.16181"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_54.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_54.svg new file mode 100644 index 0000000..47eb891 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_54.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_54.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.76279869,-0.68682711,0.66546484,-0.73907351,82.282126,182.02382)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-23.240617" + inkscape:transform-center-y="-25.927342"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_55.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_55.svg new file mode 100644 index 0000000..2416e10 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_55.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_55.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.72580755,-0.72580764,0.70323296,-0.7032329,76.673492,182.25771)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-24.619098" + inkscape:transform-center-y="-24.619073"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_56.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_56.svg new file mode 100644 index 0000000..ca081c8 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_56.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_56.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.68682702,-0.76279878,0.73907357,-0.66546477,71.060303,182.19775)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-25.92737" + inkscape:transform-center-y="-23.240591"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_57.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_57.svg new file mode 100644 index 0000000..a0a0c9e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_57.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_57.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.64596394,-0.79769914,0.77288843,-0.62587265,65.457945,181.8441)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-27.161834" + inkscape:transform-center-y="-21.795693"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_58.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_58.svg new file mode 100644 index 0000000..91bb7e4 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_58.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_58.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.60333032,-0.83041306,0.80458486,-0.58456506,59.881774,181.19773)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-28.319096" + inkscape:transform-center-y="-20.288355"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_59.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_59.svg new file mode 100644 index 0000000..a8b674b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_59.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_59.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.55904302,-0.86085088,0.83407598,-0.54165522,54.347073,180.26041)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-29.395971" + inkscape:transform-center-y="-18.722727"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_6.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_6.svg new file mode 100644 index 0000000..68bf620 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_6.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_6.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.21341027,1.0040166,-0.97278884,0.20677264,132.00863,-15.770263)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="34.464284" + inkscape:transform-center-y="8.8418762"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_60.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_60.svg new file mode 100644 index 0000000..f4ce105 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_60.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_60.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.51322342,-0.88892916,0.86128095,-0.49726074,48.869013,179.03471)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-30.389499" + inkscape:transform-center-y="-17.133277"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_61.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_61.svg new file mode 100644 index 0000000..03d604a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_61.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_61.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.46599711,-0.91457095,0.88612521,-0.4515033,43.462608,177.52399)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-31.296948" + inkscape:transform-center-y="-15.556693"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_62.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_62.svg new file mode 100644 index 0000000..8e8983f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_62.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_62.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.41749353,-0.93770597,0.90854066,-0.40450832,38.142678,175.73239)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-32.115825" + inkscape:transform-center-y="-13.937471"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_63.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_63.svg new file mode 100644 index 0000000..cdafad6 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_63.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_63.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.36784563,-0.9582708,0.92846587,-0.35640461,32.923803,173.66483)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-32.843876" + inkscape:transform-center-y="-12.280038"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_64.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_64.svg new file mode 100644 index 0000000..896e5ae --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_64.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_64.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.31718949,-0.97620908,0.94584622,-0.30732402,27.820288,171.32696)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-33.479097" + inkscape:transform-center-y="-11.061665"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_65.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_65.svg new file mode 100644 index 0000000..3f99928 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_65.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_65.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.26566396,-0.99147163,0.96063407,-0.25740108,22.846122,168.7252)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-34.019737" + inkscape:transform-center-y="-9.9667424"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_66.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_66.svg new file mode 100644 index 0000000..d6c0a9d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_66.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_66.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.21341026,-1.0040166,0.97278889,-0.20677262,18.014939,165.86668)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-34.464303" + inkscape:transform-center-y="-8.8418891"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_67.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_67.svg new file mode 100644 index 0000000..e6983e1 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_67.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_67.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.16057162,-1.0138097,0.98227736,-0.15557741,13.33998,162.75923)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-34.811559" + inkscape:transform-center-y="-6.9940278"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_68.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_68.svg new file mode 100644 index 0000000..5246932 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_68.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_68.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.10729286,-1.020824,0.98907348,-0.10395577,8.8340594,159.41137)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-35.060536" + inkscape:transform-center-y="-4.6733642"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_69.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_69.svg new file mode 100644 index 0000000..f7845d3 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_69.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_69.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(-0.05372002,-1.0250403,0.99315861,-0.0520492,4.5095274,155.83228)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-35.210526" + inkscape:transform-center-y="-2.3398889"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_7.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_7.svg new file mode 100644 index 0000000..b0daefe --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_7.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_7.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.16057163,1.0138097,-0.98227731,0.15557743,136.68359,-12.662815)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="34.811539" + inkscape:transform-center-y="6.9940133"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_70.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_70.svg new file mode 100644 index 0000000..98d4b13 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_70.svg @@ -0,0 +1,81 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_70.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(6.5708448e-8,-1.026447,0.99452157,3.7174915e-8,0.37823717,152.03177)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-35.261089"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_71.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_71.svg new file mode 100644 index 0000000..83d4e32 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_71.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_71.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.05372015,-1.0250403,0.99315861,0.05204927,-3.5484876,148.02025)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-35.210527" + inkscape:transform-center-y="2.33989"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_72.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_72.svg new file mode 100644 index 0000000..42a7bb2 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_72.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_72.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.10729299,-1.020824,0.98907347,0.10395584,-7.2598842,143.80872)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-35.060537" + inkscape:transform-center-y="4.6733705"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_73.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_73.svg new file mode 100644 index 0000000..4edc25e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_73.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_73.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.16057175,-1.0138097,0.98227735,0.15557748,-10.74578,139.40872)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-34.811561" + inkscape:transform-center-y="6.9940395"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_74.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_74.svg new file mode 100644 index 0000000..57e0bf1 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_74.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_74.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.21341039,-1.0040166,0.97278888,0.20677269,-13.99662,134.83231)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-34.464305" + inkscape:transform-center-y="8.841888"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_75.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_75.svg new file mode 100644 index 0000000..8eabc82 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_75.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_75.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.26566409,-0.99147159,0.96063406,0.25740115,-17.003494,130.09204)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-34.019741" + inkscape:transform-center-y="9.9667405"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_76.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_76.svg new file mode 100644 index 0000000..75ba075 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_76.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_76.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.31718962,-0.97620903,0.94584621,0.30732409,-19.758161,125.2009)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-33.479101" + inkscape:transform-center-y="11.061667"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_77.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_77.svg new file mode 100644 index 0000000..17638b3 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_77.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_77.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.36784576,-0.95827075,0.92846586,0.35640468,-22.25307,120.17229)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-32.843881" + inkscape:transform-center-y="12.280028"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_78.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_78.svg new file mode 100644 index 0000000..f222c82 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_78.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_78.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.41749366,-0.93770591,0.90854065,0.40450839,-24.481383,115.02)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-32.115831" + inkscape:transform-center-y="13.937458"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_79.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_79.svg new file mode 100644 index 0000000..471e948 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_79.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_79.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.46599723,-0.91457089,0.88612519,0.45150337,-26.436992,109.75815)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-31.296954" + inkscape:transform-center-y="15.556685"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_8.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_8.svg new file mode 100644 index 0000000..483a0f8 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_8.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_8.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.10729287,1.020824,-0.98907343,0.10395579,141.18951,-9.3149569)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="35.060517" + inkscape:transform-center-y="4.6733478"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_80.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_80.svg new file mode 100644 index 0000000..3897a77 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_80.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_80.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.51322354,-0.88892909,0.86128093,0.49726081,-28.114537,104.40116)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-30.389504" + inkscape:transform-center-y="17.13327"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_81.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_81.svg new file mode 100644 index 0000000..15c3157 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_81.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_81.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.55904314,-0.8608508,0.83407595,0.54165529,-29.50942,98.963719)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="-29.395975" + inkscape:transform-center-y="18.722739"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachohands/temp_9.svg b/skins/blackhole/themes/default/skinparts/tachohands/temp_9.svg new file mode 100644 index 0000000..b1c8397 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachohands/temp_9.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 150 150" + sodipodi:docname="temp_9.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="4.1351511" + inkscape:cx="30.095283" + inkscape:cy="73.684984" + inkscape:document-units="px" + inkscape:current-layer="layer6" + showgrid="false" + units="px" + showguides="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer6" + inkscape:label="Zeiger" + style="display:inline"> + <g + id="g6296" + transform="matrix(0.05372003,1.0250403,-0.99315856,0.05204922,145.51404,-5.7358653)" + style="display:inline;opacity:0.8" + inkscape:transform-center-x="35.210509" + inkscape:transform-center-y="2.3398741"> + <rect + ry="1.9714236" + inkscape:transform-center-y="34.553266" + inkscape:transform-center-x="-6.7619679e-005" + y="74.999992" + x="73.000046" + height="68.999992" + width="3.99999" + id="rect4647-0" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#999999;stroke-width:0;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6288" + d="m 65.000024,119.99999 10,26 10,-26 z" + style="fill:#d40000;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/tachos_back.svg b/skins/blackhole/themes/default/skinparts/tachos_back.svg new file mode 100644 index 0000000..1425edf --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/tachos_back.svg @@ -0,0 +1,162 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="600" + height="150" + id="svg4482" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 600 150" + sodipodi:docname="tachos_back.svg"> + <defs + id="defs4484"> + <linearGradient + inkscape:collect="always" + id="linearGradient5043"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5045" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop5047" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5032"> + <stop + style="stop-color:#555555;stop-opacity:1" + offset="0" + id="stop5034" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop5036" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5032" + id="linearGradient5038" + x1="599.11041" + y1="750.20166" + x2="351.35126" + y2="1038.757" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5043" + id="radialGradient5049" + cx="150" + cy="75" + fx="150" + fy="75" + r="1" + gradientTransform="matrix(1,0,0,75,0,-5550)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5043" + id="radialGradient5053" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,75,150,-5550)" + cx="150" + cy="75" + fx="150" + fy="75" + r="1" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5043" + id="radialGradient5057" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,75,300,-5550)" + cx="150" + cy="75" + fx="150" + fy="75" + r="1" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1.9545646" + inkscape:cx="304.59735" + inkscape:cy="74.034843" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata4487"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-902.3622)"> + <rect + style="fill:url(#linearGradient5038);fill-opacity:1" + id="rect5030" + width="600" + height="150" + x="0" + y="902.36224" + ry="0.99071312" /> + </g> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Layer 2"> + <rect + style="fill:url(#radialGradient5049);fill-opacity:1" + id="rect5041" + width="2" + height="150" + x="149" + y="4.4408921e-016" + ry="1.0120623" /> + <rect + ry="1.0120623" + y="4.4408921e-016" + x="299" + height="150" + width="2" + id="rect5051" + style="fill:url(#radialGradient5053);fill-opacity:1" /> + <rect + style="fill:url(#radialGradient5057);fill-opacity:1" + id="rect5055" + width="2" + height="150" + x="449" + y="4.4408921e-016" + ry="1.0120623" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchback.svg b/skins/blackhole/themes/default/skinparts/watchback.svg new file mode 100644 index 0000000..297be69 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchback.svg @@ -0,0 +1,950 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="watchback.svg"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient4703"> + <stop + style="stop-color:#0000ff;stop-opacity:1;" + offset="0" + id="stop4705" /> + <stop + style="stop-color:#aaaaaa;stop-opacity:1" + offset="1" + id="stop4707" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4632"> + <stop + style="stop-color:#111111;stop-opacity:1" + offset="0" + id="stop4634" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop4636" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4593"> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop4595" /> + <stop + style="stop-color:#555555;stop-opacity:1" + offset="1" + id="stop4597" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4593" + id="linearGradient4626" + gradientUnits="userSpaceOnUse" + x1="89.300102" + y1="278.60709" + x2="217.84399" + y2="22.412598" + gradientTransform="matrix(0.96551722,0,0,0.96551714,5.1724164,5.172439)" /> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4628" + x="-0.011999981" + width="1.024" + y="-0.012000019" + height="1.024"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.3999911" + id="feGaussianBlur4630" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4632" + id="linearGradient4638" + x1="34.089806" + y1="271.97308" + x2="260.29636" + y2="24.454491" + gradientUnits="userSpaceOnUse" /> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4644" + x="-0.011999981" + width="1.024" + y="-0.012000019" + height="1.024"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.4499908" + id="feGaussianBlur4646" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4703" + id="linearGradient4709" + x1="-204.95076" + y1="47.005383" + x2="-205.42775" + y2="82.237648" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4703" + id="linearGradient4717" + x1="-205.8251" + y1="-185.34164" + x2="-205.59959" + y2="-140.44257" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4703" + id="linearGradient4727" + x1="-205.18201" + y1="155.57944" + x2="-205.15691" + y2="192.12451" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4703" + id="linearGradient4735" + x1="-204.42682" + y1="-73.98455" + x2="-203.19908" + y2="-28.186365" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4703" + id="linearGradient4745" + x1="-151.936" + y1="248.05977" + x2="-144.57596" + y2="316.51266" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4703" + id="linearGradient4755" + x1="-54.153198" + y1="308.10574" + x2="-55.242977" + y2="373.39899" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4703" + id="linearGradient4765" + x1="55.686234" + y1="305.61441" + x2="65.469177" + y2="397.63538" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4703" + id="linearGradient4775" + x1="150.30801" + y1="279.82416" + x2="154.18004" + y2="200.03514" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4703" + id="linearGradient4783" + x1="-151.5" + y1="21.983833" + x2="-147.19199" + y2="77.792557" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4703" + id="linearGradient4791" + x1="-54.690376" + y1="78.919342" + x2="-50.80159" + y2="132.77943" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4703" + id="linearGradient4799" + x1="55.284603" + y1="105.08643" + x2="50.025658" + y2="40.91032" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4703" + id="linearGradient4807" + x1="149.87201" + y1="52.004196" + x2="152" + y2="4.0435781" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer4" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer3" + inkscape:label="Hintergrund" + style="display:inline"> + <path + style="opacity:1;fill:url(#linearGradient4638);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4644)" + id="path4575" + sodipodi:type="arc" + sodipodi:cx="149.9996" + sodipodi:cy="149.9995" + sodipodi:rx="144.99931" + sodipodi:ry="144.99886" + sodipodi:start="3.1275602" + sodipodi:end="3.1002807" + sodipodi:open="true" + d="M 5.0145656,152.03412 A 144.99931,144.99886 0 0 1 146.97625,5.0321639 144.99931,144.99886 0 0 1 294.9434,145.98757 144.99931,144.99886 0 0 1 154.99994,294.91211 144.99931,144.99886 0 0 1 5.1240059,155.98798" /> + <path + d="M 10.014058,151.96399 A 139.99933,139.99889 0 0 1 147.0805,10.031077 139.99933,139.99889 0 0 1 289.94533,146.12594 139.99933,139.99889 0 0 1 154.82751,289.91514 139.99933,139.99889 0 0 1 10.119725,155.78151" + sodipodi:open="true" + sodipodi:end="3.1002807" + sodipodi:start="3.1275602" + sodipodi:ry="139.99889" + sodipodi:rx="139.99933" + sodipodi:cy="149.99953" + sodipodi:cx="149.9996" + sodipodi:type="arc" + id="path4624" + style="opacity:1;fill:url(#linearGradient4626);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4628)" /> + </g> + <g + inkscape:label="1 s Ticks" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-752.3622)" + style="display:inline"> + <g + id="g4335" + transform="matrix(0.9945219,-0.10452846,0.10452846,0.9945219,-93.498077,20.674768)" + style="fill:#cccccc"> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4337" + width="2.9999945" + height="19.999998" + x="149" + y="772.36218" + ry="0.31718317" /> + <rect + ry="0.31718317" + y="1012.3622" + x="149" + height="19.999998" + width="2.9999945" + id="rect4339" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.97814761,-0.20791169,0.20791169,0.97814761,-184.32286,51.009487)" + id="g4341" + style="fill:#cccccc"> + <rect + ry="0.31718317" + y="772.36218" + x="149" + height="19.999998" + width="2.9999945" + id="rect4343" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4345" + width="2.9999945" + height="19.999998" + x="149" + y="1012.3622" + ry="0.31718317" /> + </g> + <g + id="g4347" + transform="matrix(0.95105653,-0.30901699,0.30901699,0.95105653,-271.47926,90.671805)" + style="fill:#cccccc"> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4349" + width="2.9999945" + height="19.999998" + x="149" + y="772.36218" + ry="0.31718317" /> + <rect + ry="0.31718317" + y="1012.3622" + x="149" + height="19.999998" + width="2.9999945" + id="rect4351" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.91354547,-0.40673664,0.40673664,0.91354547,-354.01236,139.22717)" + id="g4353" + style="fill:#cccccc"> + <rect + ry="0.31718317" + y="772.36218" + x="149" + height="19.999998" + width="2.9999945" + id="rect4355" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4357" + width="2.9999945" + height="19.999998" + x="149" + y="1012.3622" + ry="0.31718317" /> + </g> + <g + transform="matrix(0.80901701,-0.58778525,0.58778525,0.80901701,-501.65225,260.79751)" + id="g4365" + style="fill:#cccccc"> + <rect + ry="0.31718317" + y="772.36218" + x="149" + height="19.999998" + width="2.9999945" + id="rect4367" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4369" + width="2.9999945" + height="19.999998" + x="149" + y="1012.3622" + ry="0.31718317" /> + </g> + <g + id="g4371" + transform="matrix(0.74314484,-0.66913061,0.66913061,0.74314484,-565.14146,332.48054)" + style="fill:#cccccc"> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4373" + width="2.9999945" + height="19.999998" + x="149" + y="772.36218" + ry="0.31718317" /> + <rect + ry="0.31718317" + y="1012.3622" + x="149" + height="19.999998" + width="2.9999945" + id="rect4375" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.66913062,-0.74314483,0.74314483,0.66913062,-620.78995,410.40731)" + id="g4377" + style="fill:#cccccc"> + <rect + ry="0.31718317" + y="772.36218" + x="149" + height="19.999998" + width="2.9999945" + id="rect4379" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4381" + width="2.9999945" + height="19.999998" + x="149" + y="1012.3622" + ry="0.31718317" /> + </g> + <g + id="g4383" + transform="matrix(0.58778527,-0.809017,0.809017,0.58778527,-667.98803,493.72404)" + style="fill:#cccccc"> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4385" + width="2.9999945" + height="19.999998" + x="149" + y="772.36218" + ry="0.31718317" /> + <rect + ry="0.31718317" + y="1012.3622" + x="149" + height="19.999998" + width="2.9999945" + id="rect4387" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + id="g4395" + transform="matrix(0.40673666,-0.91354547,0.91354547,0.40673666,-735.06275,672.827)" + style="fill:#cccccc"> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4397" + width="2.9999945" + height="19.999998" + x="149" + y="772.36218" + ry="0.31718317" /> + <rect + ry="0.31718317" + y="1012.3622" + x="149" + height="19.999998" + width="2.9999945" + id="rect4399" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.30901701,-0.95105653,0.95105653,0.30901701,-754.20451,766.65093)" + id="g4401" + style="fill:#cccccc"> + <rect + ry="0.31718317" + y="772.36218" + x="149" + height="19.999998" + width="2.9999945" + id="rect4403" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4405" + width="2.9999945" + height="19.999998" + x="149" + y="1012.3622" + ry="0.31718317" /> + </g> + <g + id="g4407" + transform="matrix(0.2079117,-0.97814762,0.97814762,0.2079117,-763.43413,861.96174)" + style="fill:#cccccc"> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4409" + width="2.9999945" + height="19.999998" + x="149" + y="772.36218" + ry="0.31718317" /> + <rect + ry="0.31718317" + y="1012.3622" + x="149" + height="19.999998" + width="2.9999945" + id="rect4411" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.10452847,-0.99452192,0.99452192,0.10452847,-762.6505,957.71519)" + id="g4413" + style="fill:#cccccc"> + <rect + ry="0.31718317" + y="772.36218" + x="149" + height="19.999998" + width="2.9999945" + id="rect4415" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4417" + width="2.9999945" + height="19.999998" + x="149" + y="1012.3622" + ry="0.31718317" /> + </g> + <g + transform="matrix(-0.10452846,-0.9945219,0.9945219,-0.10452846,-731.18743,1146.3603)" + id="g4425" + style="fill:#cccccc"> + <rect + ry="0.31718317" + y="772.36218" + x="149" + height="19.999998" + width="2.9999945" + id="rect4427" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4429" + width="2.9999945" + height="19.999998" + x="149" + y="1012.3622" + ry="0.31718317" /> + </g> + <g + id="g4431" + transform="matrix(-0.20791169,-0.97814761,0.97814761,-0.20791169,-700.85271,1237.1851)" + style="fill:#cccccc"> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4433" + width="2.9999945" + height="19.999998" + x="149" + y="772.36218" + ry="0.31718317" /> + <rect + ry="0.31718317" + y="1012.3622" + x="149" + height="19.999998" + width="2.9999945" + id="rect4435" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + transform="matrix(-0.30901699,-0.95105653,0.95105653,-0.30901699,-661.19039,1324.3415)" + id="g4437" + style="fill:#cccccc"> + <rect + ry="0.31718317" + y="772.36218" + x="149" + height="19.999998" + width="2.9999945" + id="rect4439" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4441" + width="2.9999945" + height="19.999998" + x="149" + y="1012.3622" + ry="0.31718317" /> + </g> + <g + id="g4443" + transform="matrix(-0.40673664,-0.91354547,0.91354547,-0.40673664,-612.63502,1406.8746)" + style="fill:#cccccc"> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4445" + width="2.9999945" + height="19.999998" + x="149" + y="772.36218" + ry="0.31718317" /> + <rect + ry="0.31718317" + y="1012.3622" + x="149" + height="19.999998" + width="2.9999945" + id="rect4447" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + id="g4455" + transform="matrix(-0.58778525,-0.80901701,0.80901701,-0.58778525,-491.06468,1554.5145)" + style="fill:#cccccc"> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4457" + width="2.9999945" + height="19.999998" + x="149" + y="772.36218" + ry="0.31718317" /> + <rect + ry="0.31718317" + y="1012.3622" + x="149" + height="19.999998" + width="2.9999945" + id="rect4459" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + transform="matrix(-0.66913061,-0.74314484,0.74314484,-0.66913061,-419.38165,1618.0037)" + id="g4461" + style="fill:#cccccc"> + <rect + ry="0.31718317" + y="772.36218" + x="149" + height="19.999998" + width="2.9999945" + id="rect4463" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4465" + width="2.9999945" + height="19.999998" + x="149" + y="1012.3622" + ry="0.31718317" /> + </g> + <g + id="g4467" + transform="matrix(-0.74314483,-0.66913062,0.66913062,-0.74314483,-341.45488,1673.6522)" + style="fill:#cccccc"> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4469" + width="2.9999945" + height="19.999998" + x="149" + y="772.36218" + ry="0.31718317" /> + <rect + ry="0.31718317" + y="1012.3622" + x="149" + height="19.999998" + width="2.9999945" + id="rect4471" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + transform="matrix(-0.809017,-0.58778527,0.58778527,-0.809017,-258.13815,1720.8503)" + id="g4473" + style="fill:#cccccc"> + <rect + ry="0.31718317" + y="772.36218" + x="149" + height="19.999998" + width="2.9999945" + id="rect4475" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4477" + width="2.9999945" + height="19.999998" + x="149" + y="1012.3622" + ry="0.31718317" /> + </g> + <g + transform="matrix(-0.91354547,-0.40673666,0.40673666,-0.91354547,-79.035195,1787.9251)" + id="g4485" + style="fill:#cccccc"> + <rect + ry="0.31718317" + y="772.36218" + x="149" + height="19.999998" + width="2.9999945" + id="rect4487" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4489" + width="2.9999945" + height="19.999998" + x="149" + y="1012.3622" + ry="0.31718317" /> + </g> + <g + id="g4491" + transform="matrix(-0.95105653,-0.30901701,0.30901701,-0.95105653,14.788736,1807.0669)" + style="fill:#cccccc"> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4493" + width="2.9999945" + height="19.999998" + x="149" + y="772.36218" + ry="0.31718317" /> + <rect + ry="0.31718317" + y="1012.3622" + x="149" + height="19.999998" + width="2.9999945" + id="rect4495" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + transform="matrix(-0.97814762,-0.2079117,0.2079117,-0.97814762,110.09955,1816.2965)" + id="g4497" + style="fill:#cccccc"> + <rect + ry="0.31718317" + y="772.36218" + x="149" + height="19.999998" + width="2.9999945" + id="rect4499" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4501" + width="2.9999945" + height="19.999998" + x="149" + y="1012.3622" + ry="0.31718317" /> + </g> + <g + id="g4503" + transform="matrix(-0.99452192,-0.10452847,0.10452847,-0.99452192,205.853,1815.5129)" + style="fill:#cccccc"> + <rect + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4505" + width="2.9999945" + height="19.999998" + x="149" + y="772.36218" + ry="0.31718317" /> + <rect + ry="0.31718317" + y="1012.3622" + x="149" + height="19.999998" + width="2.9999945" + id="rect4507" + style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + </g> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="5 s Ticks 1" + style="display:inline"> + <rect + ry="0.47577462" + y="19.999983" + x="149" + height="29.999989" + width="2.9999924" + id="rect4511" + style="opacity:1;fill:url(#linearGradient4807);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + style="opacity:1;fill:url(#linearGradient4775);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4513" + width="2.9999924" + height="29.999989" + x="149" + y="249.99998" + ry="0.47577462" /> + <rect + style="opacity:1;fill:url(#linearGradient4799);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4523" + width="2.9999924" + height="29.999989" + x="53.836845" + y="75.153801" + ry="0.47577462" + transform="matrix(0.8660254,-0.5,0.5,0.8660254,0,0)" /> + <rect + ry="0.47577462" + y="305.15381" + x="53.836845" + height="29.999989" + width="2.9999924" + id="rect4525" + style="opacity:1;fill:url(#linearGradient4765);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.8660254,-0.5,0.5,0.8660254,0,0)" /> + <rect + ry="0.47577462" + y="75.336823" + x="-56.153786" + height="29.999989" + width="2.9999924" + id="rect4529" + style="opacity:1;fill:url(#linearGradient4791);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.5,-0.8660254,0.8660254,0.5,0,0)" /> + <rect + style="opacity:1;fill:url(#linearGradient4755);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4531" + width="2.9999924" + height="29.999989" + x="-56.153786" + y="305.33682" + ry="0.47577462" + transform="matrix(0.5,-0.8660254,0.8660254,0.5,0,0)" /> + <rect + style="opacity:1;fill:url(#linearGradient4783);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4535" + width="2.9999924" + height="29.999989" + x="-151.5" + y="20.500013" + ry="0.47577462" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + ry="0.47577462" + y="250.50002" + x="-151.5" + height="29.999989" + width="2.9999924" + id="rect4537" + style="opacity:1;fill:url(#linearGradient4745);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0,-1,1,0,0,0)" /> + <rect + ry="0.47577462" + y="-74.663162" + x="-206.65381" + height="29.999989" + width="2.9999924" + id="rect4541" + style="opacity:1;fill:url(#linearGradient4735);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,0,0)" /> + <rect + style="opacity:1;fill:url(#linearGradient4727);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4543" + width="2.9999924" + height="29.999989" + x="-206.65381" + y="155.33684" + ry="0.47577462" + transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,0,0)" /> + <rect + style="opacity:1;fill:url(#linearGradient4717);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4547" + width="2.9999924" + height="29.999989" + x="-206.83685" + y="-184.65382" + ry="0.47577462" + transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,0,0)" /> + <rect + ry="0.47577462" + y="45.346169" + x="-206.83685" + height="29.999989" + width="2.9999924" + id="rect4549" + style="opacity:1;fill:url(#linearGradient4709);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,0,0)" /> + </g> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="Ziffern" + style="display:inline"> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="136.77315" + y="69.322876" + id="text4602" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan4604" + x="136.77315" + y="69.322876" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#b3b3b3">12</tspan></text> + <text + sodipodi:linespacing="125%" + id="text4606" + y="158.63371" + x="233.22884" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#b3b3b3" + y="158.63371" + x="233.22884" + id="tspan4608" + sodipodi:role="line">3</tspan></text> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="143.40765" + y="245.39281" + id="text4610" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan4612" + x="143.40765" + y="245.39281" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#b3b3b3">6</tspan></text> + <text + sodipodi:linespacing="125%" + id="text4614" + y="158.63371" + x="53.07613" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22.5px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#b3b3b3" + y="158.63371" + x="53.07613" + id="tspan4616" + sodipodi:role="line">9</tspan></text> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_0.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_0.svg new file mode 100644 index 0000000..fc79b4c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_0.svg @@ -0,0 +1,68 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_0.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-35.102415" + inkscape:transform-center-x="-0.1600401" + ry="0.26296809" + y="80.000008" + x="148" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_1.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_1.svg new file mode 100644 index 0000000..3a9be10 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_1.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_1.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-34.893393" + inkscape:transform-center-x="-3.828363" + ry="0.26296809" + y="63.462925" + x="162.86639" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_10.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_10.svg new file mode 100644 index 0000000..2d36afd --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_10.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_10.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-17.412611" + inkscape:transform-center-x="-30.479598" + ry="0.26296809" + y="-125.24942" + x="202.82253" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.50000001,0.8660254,-0.8660254,0.50000001,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_11.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_11.svg new file mode 100644 index 0000000..b3fd835 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_11.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_11.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-14.13124" + inkscape:transform-center-x="-32.13274" + ry="0.26296809" + y="-146.39264" + x="195.93419" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.40673665,0.91354545,-0.91354545,0.40673665,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_12.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_12.svg new file mode 100644 index 0000000..8f6790e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_12.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_12.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-10.695045" + inkscape:transform-center-x="-33.433835" + ry="0.26296809" + y="-166.70001" + x="186.87352" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.309017,0.95105651,-0.95105651,0.309017,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_13.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_13.svg new file mode 100644 index 0000000..cfc7738 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_13.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_13.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-7.1416669" + inkscape:transform-center-x="-34.368619" + ry="0.26296809" + y="-185.94904" + x="175.73979" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.2079117,0.9781476,-0.9781476,0.2079117,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_14.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_14.svg new file mode 100644 index 0000000..3b9123d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_14.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_14.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-3.5100451" + inkscape:transform-center-x="-34.926849" + ry="0.26296809" + y="-203.92882" + x="162.65498" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.10452847,0.99452189,-0.99452189,0.10452847,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_15.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_15.svg new file mode 100644 index 0000000..1ad0f29 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_15.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_15.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="0.16003096" + inkscape:transform-center-x="-35.102412" + ry="0.26296809" + y="-220.44237" + x="147.76245" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0,1,-1,0,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_16.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_16.svg new file mode 100644 index 0000000..d25b200 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_16.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_16.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="3.8283579" + inkscape:transform-center-x="-34.893388" + ry="0.26296809" + y="-235.30876" + x="131.22537" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.10452846,0.9945219,-0.9945219,-0.10452846,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_17.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_17.svg new file mode 100644 index 0000000..c8651ca --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_17.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_17.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="7.4547398" + inkscape:transform-center-x="-34.302069" + ry="0.26296809" + y="-248.36513" + x="113.22492" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.20791169,0.9781476,-0.9781476,-0.20791169,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_18.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_18.svg new file mode 100644 index 0000000..594f0b2 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_18.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_18.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="10.99945" + inkscape:transform-center-x="-33.334935" + ry="0.26296809" + y="-259.46841" + x="93.958321" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.30901699,0.95105652,-0.95105652,-0.30901699,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_19.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_19.svg new file mode 100644 index 0000000..4c2813f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_19.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_19.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="14.423637" + inkscape:transform-center-x="-32.002558" + ry="0.26296809" + y="-268.49695" + x="73.63665" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.40673664,0.91354546,-0.91354546,-0.40673664,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_2.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_2.svg new file mode 100644 index 0000000..f0c400d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_2.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_2.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-34.302069" + inkscape:transform-center-x="-7.4547463" + ry="0.26296809" + y="45.462475" + x="175.92276" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.9781476,0.20791169,-0.20791169,0.9781476,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_20.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_20.svg new file mode 100644 index 0000000..7e0ce77 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_20.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_20.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="17.689801" + inkscape:transform-center-x="-30.319561" + ry="0.26296809" + y="-275.35184" + x="52.482567" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.5,0.86602541,-0.86602541,-0.5,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_21.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_21.svg new file mode 100644 index 0000000..54230e0 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_21.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_21.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="20.762154" + inkscape:transform-center-x="-28.304382" + ry="0.26296809" + y="-279.95798" + x="30.727837" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.58778525,0.809017,-0.809017,-0.58778525,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_22.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_22.svg new file mode 100644 index 0000000..fd4b0c7 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_22.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_22.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="23.607029" + inkscape:transform-center-x="-25.979092" + ry="0.26296809" + y="-282.26489" + x="8.6108074" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.6691306,0.74314483,-0.74314483,-0.6691306,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_23.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_23.svg new file mode 100644 index 0000000..b025cd7 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_23.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_23.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="26.193264" + inkscape:transform-center-x="-23.369171" + ry="0.26296809" + y="-282.24731" + x="-13.626201" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.74314482,0.66913061,-0.66913061,-0.74314482,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_24.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_24.svg new file mode 100644 index 0000000..90db457 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_24.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_24.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="28.492515" + inkscape:transform-center-x="-20.503211" + ry="0.26296809" + y="-279.90543" + x="-35.739555" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.80901699,0.58778526,-0.58778526,-0.80901699,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_25.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_25.svg new file mode 100644 index 0000000..82a04bf --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_25.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_25.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="30.479596" + inkscape:transform-center-x="-17.412613" + ry="0.26296809" + y="-275.26489" + x="-57.486977" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.8660254,0.50000001,-0.50000001,-0.8660254,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_26.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_26.svg new file mode 100644 index 0000000..f189103 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_26.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_26.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="32.132736" + inkscape:transform-center-x="-14.131238" + ry="0.26296809" + y="-268.37656" + x="-78.630196" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.91354545,0.40673665,-0.40673665,-0.91354545,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_27.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_27.svg new file mode 100644 index 0000000..851c98f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_27.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_27.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="33.433825" + inkscape:transform-center-x="-10.695038" + ry="0.26296809" + y="-259.31589" + x="-98.937561" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.95105651,0.309017,-0.309017,-0.95105651,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_28.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_28.svg new file mode 100644 index 0000000..9bea225 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_28.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_28.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="34.368611" + inkscape:transform-center-x="-7.1416575" + ry="0.26296809" + y="-248.18216" + x="-118.18658" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.9781476,0.2079117,-0.2079117,-0.9781476,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_29.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_29.svg new file mode 100644 index 0000000..eb325b7 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_29.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_29.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="34.926842" + inkscape:transform-center-x="-3.510042" + ry="0.26296809" + y="-235.09735" + x="-136.16637" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.99452189,0.10452847,-0.10452847,-0.99452189,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_3.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_3.svg new file mode 100644 index 0000000..0a3f9f4 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_3.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_3.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-33.334927" + inkscape:transform-center-x="-10.999445" + ry="0.26296809" + y="26.195871" + x="187.02603" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.95105652,0.30901699,-0.30901699,0.95105652,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_30.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_30.svg new file mode 100644 index 0000000..d452484 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_30.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_30.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="35.102406" + inkscape:transform-center-x="0.16003948" + ry="0.26296809" + y="-220.20482" + x="-152.67992" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="scale(-1,-1)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_31.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_31.svg new file mode 100644 index 0000000..20a0eb1 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_31.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_31.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="34.893385" + inkscape:transform-center-x="3.8283651" + ry="0.26296809" + y="-203.66774" + x="-167.54631" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.9945219,-0.10452846,0.10452846,-0.9945219,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_32.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_32.svg new file mode 100644 index 0000000..719a270 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_32.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_32.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="34.302056" + inkscape:transform-center-x="7.4547404" + ry="0.26296809" + y="-185.66728" + x="-180.60268" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.9781476,-0.20791169,0.20791169,-0.9781476,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_33.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_33.svg new file mode 100644 index 0000000..94ccc8c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_33.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_33.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="33.334914" + inkscape:transform-center-x="10.99945" + ry="0.26296809" + y="-166.40068" + x="-191.70595" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.95105652,-0.30901699,0.30901699,-0.95105652,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_34.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_34.svg new file mode 100644 index 0000000..f0d1411 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_34.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_34.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="32.002546" + inkscape:transform-center-x="14.423637" + ry="0.26296809" + y="-146.07901" + x="-200.7345" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.91354546,-0.40673664,0.40673664,-0.91354546,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_35.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_35.svg new file mode 100644 index 0000000..56cfc19 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_35.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_35.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="30.319552" + inkscape:transform-center-x="17.689803" + ry="0.26296809" + y="-124.92493" + x="-207.58939" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86602541,-0.5,0.5,-0.86602541,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_36.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_36.svg new file mode 100644 index 0000000..7527d65 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_36.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_36.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="28.304373" + inkscape:transform-center-x="20.76215" + ry="0.26296809" + y="-103.1702" + x="-212.19553" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.809017,-0.58778525,0.58778525,-0.809017,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_37.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_37.svg new file mode 100644 index 0000000..a856d86 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_37.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_37.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="25.979083" + inkscape:transform-center-x="23.607026" + ry="0.26296809" + y="-81.053169" + x="-214.50244" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.74314483,-0.6691306,0.6691306,-0.74314483,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_38.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_38.svg new file mode 100644 index 0000000..0f6298a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_38.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_38.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="23.369164" + inkscape:transform-center-x="26.193257" + ry="0.26296809" + y="-58.816162" + x="-214.48486" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.66913061,-0.74314482,0.74314482,-0.66913061,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_39.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_39.svg new file mode 100644 index 0000000..f9f8135 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_39.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_39.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="20.503202" + inkscape:transform-center-x="28.492511" + ry="0.26296809" + y="-36.702808" + x="-212.14297" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.58778526,-0.80901699,0.80901699,-0.58778526,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_4.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_4.svg new file mode 100644 index 0000000..36984ff --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_4.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_4.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-32.002558" + inkscape:transform-center-x="-14.423641" + ry="0.26296809" + y="5.8742027" + x="196.05458" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.91354546,0.40673664,-0.40673664,0.91354546,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_40.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_40.svg new file mode 100644 index 0000000..f7112b9 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_40.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_40.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="17.412603" + inkscape:transform-center-x="30.479595" + ry="0.26296809" + y="-14.955388" + x="-207.50244" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.50000001,-0.8660254,0.8660254,-0.50000001,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_41.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_41.svg new file mode 100644 index 0000000..9c884d6 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_41.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_41.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="14.131227" + inkscape:transform-center-x="32.132739" + ry="0.26296809" + y="6.18783" + x="-200.61411" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.40673665,-0.91354545,0.91354545,-0.40673665,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_42.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_42.svg new file mode 100644 index 0000000..74f8bf4 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_42.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_42.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="10.695027" + inkscape:transform-center-x="33.433828" + ry="0.26296809" + y="26.495197" + x="-191.55344" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.309017,-0.95105651,0.95105651,-0.309017,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_43.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_43.svg new file mode 100644 index 0000000..99ece4a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_43.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_43.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="7.1416542" + inkscape:transform-center-x="34.368607" + ry="0.26296809" + y="45.744221" + x="-180.41971" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.2079117,-0.9781476,0.9781476,-0.2079117,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_44.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_44.svg new file mode 100644 index 0000000..8e32086 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_44.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_44.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="3.5100336" + inkscape:transform-center-x="34.92684" + ry="0.26296809" + y="63.724003" + x="-167.3349" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.10452847,-0.99452189,0.99452189,-0.10452847,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_45.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_45.svg new file mode 100644 index 0000000..45c24f9 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_45.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_45.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-0.16004645" + inkscape:transform-center-x="35.102406" + ry="0.26296809" + y="80.237556" + x="-152.44237" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0,-1,1,0,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_46.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_46.svg new file mode 100644 index 0000000..aa998f0 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_46.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_46.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-3.8283676" + inkscape:transform-center-x="34.893384" + ry="0.26296809" + y="95.103951" + x="-135.90529" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.10452846,-0.9945219,0.9945219,0.10452846,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_47.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_47.svg new file mode 100644 index 0000000..40badec --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_47.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_47.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-7.4547472" + inkscape:transform-center-x="34.302065" + ry="0.26296809" + y="108.16031" + x="-117.90484" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.20791169,-0.9781476,0.9781476,0.20791169,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_48.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_48.svg new file mode 100644 index 0000000..0ae50ab --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_48.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_48.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-10.999449" + inkscape:transform-center-x="33.33492" + ry="0.26296809" + y="119.26359" + x="-98.638237" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.30901699,-0.95105652,0.95105652,0.30901699,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_49.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_49.svg new file mode 100644 index 0000000..34d499a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_49.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_49.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-14.423644" + inkscape:transform-center-x="32.002555" + ry="0.26296809" + y="128.29213" + x="-78.316566" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.40673664,-0.91354546,0.91354546,0.40673664,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_5.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_5.svg new file mode 100644 index 0000000..67a8a19 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_5.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_5.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-30.319564" + inkscape:transform-center-x="-17.689802" + ry="0.26296809" + y="-15.279881" + x="202.90947" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86602541,0.5,-0.5,0.86602541,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_50.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_50.svg new file mode 100644 index 0000000..33489c2 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_50.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_50.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-17.689808" + inkscape:transform-center-x="30.319563" + ry="0.26296809" + y="135.14702" + x="-57.162483" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.5,-0.86602541,0.86602541,0.5,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_51.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_51.svg new file mode 100644 index 0000000..a144d3e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_51.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_51.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-20.762157" + inkscape:transform-center-x="28.304379" + ry="0.26296809" + y="139.75316" + x="-35.407753" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.58778525,-0.809017,0.809017,0.58778525,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_52.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_52.svg new file mode 100644 index 0000000..a10ac1e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_52.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_52.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-23.607034" + inkscape:transform-center-x="25.979088" + ry="0.26296809" + y="142.06007" + x="-13.290724" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.6691306,-0.74314483,0.74314483,0.6691306,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_53.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_53.svg new file mode 100644 index 0000000..cf7d1f3 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_53.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_53.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-26.193264" + inkscape:transform-center-x="23.369163" + ry="0.26296809" + y="142.0425" + x="8.9462843" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.74314482,-0.66913061,0.66913061,0.74314482,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_54.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_54.svg new file mode 100644 index 0000000..9819b1c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_54.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_54.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-28.492519" + inkscape:transform-center-x="20.503204" + ry="0.26296809" + y="139.70061" + x="31.059637" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.80901699,-0.58778526,0.58778526,0.80901699,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_55.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_55.svg new file mode 100644 index 0000000..39e2072 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_55.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_55.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-30.479604" + inkscape:transform-center-x="17.412608" + ry="0.26296809" + y="135.06007" + x="52.807056" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.8660254,-0.50000001,0.50000001,0.8660254,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_56.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_56.svg new file mode 100644 index 0000000..ed48711 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_56.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_56.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-32.132748" + inkscape:transform-center-x="14.131238" + ry="0.26296809" + y="128.17174" + x="73.950272" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.91354545,-0.40673665,0.40673665,0.91354545,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_57.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_57.svg new file mode 100644 index 0000000..b3bb4cb --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_57.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_57.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-33.433839" + inkscape:transform-center-x="10.695041" + ry="0.26296809" + y="119.11107" + x="94.257637" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.95105651,-0.309017,0.309017,0.95105651,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_58.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_58.svg new file mode 100644 index 0000000..02d9434 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_58.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_58.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-34.368619" + inkscape:transform-center-x="7.1416629" + ry="0.26296809" + y="107.97734" + x="113.50666" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.9781476,-0.2079117,0.2079117,0.9781476,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_59.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_59.svg new file mode 100644 index 0000000..5a9e002 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_59.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_59.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.4694444" + inkscape:cx="144.5" + inkscape:cy="144" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-34.926852" + inkscape:transform-center-x="3.5100357" + ry="0.26296809" + y="94.892532" + x="131.48645" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.99452189,-0.10452847,0.10452847,0.99452189,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_6.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_6.svg new file mode 100644 index 0000000..63dff34 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_6.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_6.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-28.30438" + inkscape:transform-center-x="-20.762155" + ry="0.26296809" + y="-37.034611" + x="207.51561" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.809017,0.58778525,-0.58778525,0.809017,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_7.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_7.svg new file mode 100644 index 0000000..b7e04b6 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_7.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_7.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-25.979089" + inkscape:transform-center-x="-23.60703" + ry="0.26296809" + y="-59.151638" + x="209.82253" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.74314483,0.6691306,-0.6691306,0.74314483,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_8.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_8.svg new file mode 100644 index 0000000..6a1af52 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_8.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_8.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-23.369166" + inkscape:transform-center-x="-26.193266" + ry="0.26296809" + y="-81.388649" + x="209.80495" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.66913061,0.74314482,-0.74314482,0.66913061,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/h_9.svg b/skins/blackhole/themes/default/skinparts/watchhands/h_9.svg new file mode 100644 index 0000000..af499e5 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/h_9.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="h_9.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="-80.75477" + inkscape:cy="190.98862" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + inkscape:transform-center-y="-20.503206" + inkscape:transform-center-x="-28.492515" + ry="0.26296809" + y="-103.502" + x="207.46306" + height="69.999992" + width="4.9999952" + id="rect4811" + style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.58778526,0.80901699,-0.80901699,0.58778526,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_0.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_0.svg new file mode 100644 index 0000000..fe740c8 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_0.svg @@ -0,0 +1,68 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_0.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="148.00002" + y="60.000004" + ry="0.33810186" + inkscape:transform-center-x="-0.16005756" + inkscape:transform-center-y="-45.131682" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_1.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_1.svg new file mode 100644 index 0000000..cc7d420 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_1.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_1.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="162.86948" + y="43.462761" + ry="0.33810186" + inkscape:transform-center-x="-4.8767323" + inkscape:transform-center-y="-44.867716" + transform="matrix(0.9945219,0.10452846,-0.10452846,0.9945219,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_10.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_10.svg new file mode 100644 index 0000000..27598d5 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_10.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_10.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="202.8479" + y="-145.26405" + ry="0.33810186" + inkscape:transform-center-x="-39.165217" + inkscape:transform-center-y="-22.427216" + transform="matrix(0.50000001,0.8660254,-0.8660254,0.50000001,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_11.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_11.svg new file mode 100644 index 0000000..66ecef0 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_11.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_11.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="195.96095" + y="-166.41" + ry="0.33810186" + inkscape:transform-center-x="-41.294947" + inkscape:transform-center-y="-18.210481" + transform="matrix(0.40673664,0.91354546,-0.91354546,0.40673664,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_12.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_12.svg new file mode 100644 index 0000000..1657d4d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_12.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_12.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="186.90138" + y="-186.72023" + ry="0.33810186" + inkscape:transform-center-x="-42.972243" + inkscape:transform-center-y="-13.794225" + transform="matrix(0.30901699,0.95105652,-0.95105652,0.30901699,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_13.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_13.svg new file mode 100644 index 0000000..0442293 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_13.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_13.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="175.76845" + y="-205.97221" + ry="0.33810186" + inkscape:transform-center-x="-44.178728" + inkscape:transform-center-y="-9.226836" + transform="matrix(0.20791169,0.9781476,-0.9781476,0.20791169,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_14.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_14.svg new file mode 100644 index 0000000..bf78351 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_14.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_14.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="162.68411" + y="-223.95502" + ry="0.33810186" + inkscape:transform-center-x="-44.901174" + inkscape:transform-center-y="-4.55836" + transform="matrix(0.10452846,0.9945219,-0.9945219,0.10452846,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_15.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_15.svg new file mode 100644 index 0000000..3e8c402 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_15.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_15.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="147.79175" + y="-240.47163" + ry="0.33810186" + inkscape:transform-center-x="-45.131684" + inkscape:transform-center-y="0.16006331" + transform="matrix(0,1,-1,0,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_16.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_16.svg new file mode 100644 index 0000000..d2cd2af --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_16.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_16.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="131.2545" + y="-255.34109" + ry="0.33810186" + inkscape:transform-center-x="-44.867724" + inkscape:transform-center-y="4.8767272" + transform="matrix(-0.10452846,0.9945219,-0.9945219,-0.10452846,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_17.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_17.svg new file mode 100644 index 0000000..0c719e8 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_17.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_17.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="113.25357" + y="-268.40048" + ry="0.33810186" + inkscape:transform-center-x="-44.112176" + inkscape:transform-center-y="9.5399651" + transform="matrix(-0.20791169,0.9781476,-0.9781476,-0.20791169,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_18.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_18.svg new file mode 100644 index 0000000..32c72f6 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_18.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_18.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="93.986176" + y="-279.50671" + ry="0.33810186" + inkscape:transform-center-x="-42.873323" + inkscape:transform-center-y="14.098682" + transform="matrix(-0.30901699,0.95105652,-0.95105652,-0.30901699,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_19.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_19.svg new file mode 100644 index 0000000..b37c85c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_19.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_19.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="73.663406" + y="-288.53812" + ry="0.33810186" + inkscape:transform-center-x="-41.164744" + inkscape:transform-center-y="18.502927" + transform="matrix(-0.40673664,0.91354546,-0.91354546,-0.40673664,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_2.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_2.svg new file mode 100644 index 0000000..52a594a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_2.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_2.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="175.92886" + y="25.46183" + ry="0.33810186" + inkscape:transform-center-x="-9.5399696" + inkscape:transform-center-y="-44.112169" + transform="matrix(0.9781476,0.20791169,-0.20791169,0.9781476,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_20.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_20.svg new file mode 100644 index 0000000..e86a080 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_20.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_20.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="52.507931" + y="-295.39575" + ry="0.33810186" + inkscape:transform-center-x="-39.00517" + inkscape:transform-center-y="22.70446" + transform="matrix(-0.5,0.86602541,-0.86602541,-0.5,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_21.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_21.svg new file mode 100644 index 0000000..92777ba --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_21.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_21.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="30.751532" + y="-300.00446" + ry="0.33810186" + inkscape:transform-center-x="-36.418231" + inkscape:transform-center-y="26.657231" + transform="matrix(-0.58778525,0.809017,-0.809017,-0.58778525,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_22.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_22.svg new file mode 100644 index 0000000..ce8990f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_22.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_22.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="8.632576" + y="-302.31375" + ry="0.33810186" + inkscape:transform-center-x="-33.432288" + inkscape:transform-center-y="30.317941" + transform="matrix(-0.6691306,0.74314483,-0.74314483,-0.6691306,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_23.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_23.svg new file mode 100644 index 0000000..775d19c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_23.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_23.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-13.606597" + y="-302.29834" + ry="0.33810186" + inkscape:transform-center-x="-30.080056" + inkscape:transform-center-y="33.646485" + transform="matrix(-0.74314482,0.66913061,-0.66913061,-0.74314482,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_24.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_24.svg new file mode 100644 index 0000000..549c48f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_24.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_24.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-35.722332" + y="-299.95837" + ry="0.33810186" + inkscape:transform-center-x="-26.398256" + inkscape:transform-center-y="36.60638" + transform="matrix(-0.80901699,0.58778526,-0.58778526,-0.80901699,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_25.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_25.svg new file mode 100644 index 0000000..bd016d3 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_25.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_25.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-57.472321" + y="-295.31952" + ry="0.33810186" + inkscape:transform-center-x="-22.427239" + inkscape:transform-center-y="39.165222" + transform="matrix(-0.8660254,0.50000001,-0.50000001,-0.8660254,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_26.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_26.svg new file mode 100644 index 0000000..d481659 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_26.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_26.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-78.618271" + y="-288.43259" + ry="0.33810186" + inkscape:transform-center-x="-18.210506" + inkscape:transform-center-y="41.294963" + transform="matrix(-0.91354545,0.40673665,-0.40673665,-0.91354545,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_27.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_27.svg new file mode 100644 index 0000000..b6d8af5 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_27.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_27.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-98.928497" + y="-279.37302" + ry="0.33810186" + inkscape:transform-center-x="-13.794247" + inkscape:transform-center-y="42.97226" + transform="matrix(-0.95105651,0.309017,-0.309017,-0.95105651,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_28.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_28.svg new file mode 100644 index 0000000..21122d4 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_28.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_28.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-118.18048" + y="-268.24008" + ry="0.33810186" + inkscape:transform-center-x="-9.2268599" + inkscape:transform-center-y="44.178747" + transform="matrix(-0.9781476,0.2079117,-0.2079117,-0.9781476,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_29.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_29.svg new file mode 100644 index 0000000..ab99cc3 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_29.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_29.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-136.16328" + y="-255.15575" + ry="0.33810186" + inkscape:transform-center-x="-4.5583706" + inkscape:transform-center-y="44.901194" + transform="matrix(-0.99452189,0.10452847,-0.10452847,-0.99452189,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_3.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_3.svg new file mode 100644 index 0000000..033130d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_3.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_3.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="187.0351" + y="6.1944332" + ry="0.33810186" + inkscape:transform-center-x="-14.098682" + inkscape:transform-center-y="-42.873322" + transform="matrix(0.95105652,0.30901699,-0.30901699,0.95105652,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_30.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_30.svg new file mode 100644 index 0000000..0de0ca7 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_30.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_30.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-152.6799" + y="-240.26338" + ry="0.33810186" + inkscape:transform-center-x="0.16004943" + inkscape:transform-center-y="45.131705" + transform="scale(-1,-1)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_31.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_31.svg new file mode 100644 index 0000000..1e9544e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_31.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_31.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-167.54936" + y="-223.72614" + ry="0.33810186" + inkscape:transform-center-x="4.8767134" + inkscape:transform-center-y="44.867735" + transform="matrix(-0.9945219,-0.10452846,0.10452846,-0.9945219,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_32.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_32.svg new file mode 100644 index 0000000..644ee12 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_32.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_32.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-180.60875" + y="-205.7252" + ry="0.33810186" + inkscape:transform-center-x="9.5399546" + inkscape:transform-center-y="44.112188" + transform="matrix(-0.9781476,-0.20791169,0.20791169,-0.9781476,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_33.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_33.svg new file mode 100644 index 0000000..10f1fe3 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_33.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_33.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-191.71498" + y="-186.45781" + ry="0.33810186" + inkscape:transform-center-x="14.098677" + inkscape:transform-center-y="42.87334" + transform="matrix(-0.95105652,-0.30901699,0.30901699,-0.95105652,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_34.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_34.svg new file mode 100644 index 0000000..b6b76dc --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_34.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_34.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-200.74638" + y="-166.13504" + ry="0.33810186" + inkscape:transform-center-x="18.502928" + inkscape:transform-center-y="41.164758" + transform="matrix(-0.91354546,-0.40673664,0.40673664,-0.91354546,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_35.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_35.svg new file mode 100644 index 0000000..15db93b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_35.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_35.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-207.604" + y="-144.97957" + ry="0.33810186" + inkscape:transform-center-x="22.704458" + inkscape:transform-center-y="39.005173" + transform="matrix(-0.86602541,-0.5,0.5,-0.86602541,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_36.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_36.svg new file mode 100644 index 0000000..406e0c2 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_36.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_36.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-212.21271" + y="-123.22317" + ry="0.33810186" + inkscape:transform-center-x="26.657232" + inkscape:transform-center-y="36.418233" + transform="matrix(-0.809017,-0.58778525,0.58778525,-0.809017,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_37.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_37.svg new file mode 100644 index 0000000..6d4808b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_37.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_37.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-214.522" + y="-101.10421" + ry="0.33810186" + inkscape:transform-center-x="30.317942" + inkscape:transform-center-y="33.432288" + transform="matrix(-0.74314483,-0.6691306,0.6691306,-0.74314483,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_38.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_38.svg new file mode 100644 index 0000000..9b1c617 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_38.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_38.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-214.50659" + y="-78.865036" + ry="0.33810186" + inkscape:transform-center-x="33.64648" + inkscape:transform-center-y="30.080057" + transform="matrix(-0.66913061,-0.74314482,0.74314482,-0.66913061,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_39.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_39.svg new file mode 100644 index 0000000..0ad3381 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_39.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_39.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-212.16664" + y="-56.749302" + ry="0.33810186" + inkscape:transform-center-x="36.606378" + inkscape:transform-center-y="26.398266" + transform="matrix(-0.58778526,-0.80901699,0.80901699,-0.58778526,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_4.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_4.svg new file mode 100644 index 0000000..56429dc --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_4.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_4.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="196.0665" + y="-14.128333" + ry="0.33810186" + inkscape:transform-center-x="-18.502929" + inkscape:transform-center-y="-41.164745" + transform="matrix(0.91354546,0.40673664,-0.40673664,0.91354546,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_40.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_40.svg new file mode 100644 index 0000000..0f50408 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_40.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_40.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-207.52779" + y="-34.999313" + ry="0.33810186" + inkscape:transform-center-x="39.165211" + inkscape:transform-center-y="22.427252" + transform="matrix(-0.50000001,-0.8660254,0.8660254,-0.50000001,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_41.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_41.svg new file mode 100644 index 0000000..13d2cfe --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_41.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_41.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-200.64084" + y="-13.853366" + ry="0.33810186" + inkscape:transform-center-x="41.294948" + inkscape:transform-center-y="18.210509" + transform="matrix(-0.40673665,-0.91354545,0.91354545,-0.40673665,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_42.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_42.svg new file mode 100644 index 0000000..604c4cb --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_42.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_42.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-191.58127" + y="6.4568601" + ry="0.33810186" + inkscape:transform-center-x="42.972247" + inkscape:transform-center-y="13.794251" + transform="matrix(-0.309017,-0.95105651,0.95105651,-0.309017,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_43.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_43.svg new file mode 100644 index 0000000..3ce6918 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_43.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_43.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-180.44833" + y="25.708841" + ry="0.33810186" + inkscape:transform-center-x="44.178731" + inkscape:transform-center-y="9.2268642" + transform="matrix(-0.2079117,-0.9781476,0.9781476,-0.2079117,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_44.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_44.svg new file mode 100644 index 0000000..f585fc8 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_44.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_44.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-167.364" + y="43.69165" + ry="0.33810186" + inkscape:transform-center-x="44.901186" + inkscape:transform-center-y="4.5583765" + transform="matrix(-0.10452847,-0.99452189,0.99452189,-0.10452847,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_45.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_45.svg new file mode 100644 index 0000000..0db4bd6 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_45.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_45.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-152.47163" + y="60.208263" + ry="0.33810186" + inkscape:transform-center-x="45.131692" + inkscape:transform-center-y="-0.16004275" + transform="matrix(0,-1,1,0,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_46.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_46.svg new file mode 100644 index 0000000..4da739a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_46.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_46.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-135.93439" + y="75.077721" + ry="0.33810186" + inkscape:transform-center-x="44.867724" + inkscape:transform-center-y="-4.8767176" + transform="matrix(0.10452846,-0.9945219,0.9945219,0.10452846,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_47.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_47.svg new file mode 100644 index 0000000..3a64bd9 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_47.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_47.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-117.93346" + y="88.137108" + ry="0.33810186" + inkscape:transform-center-x="44.112179" + inkscape:transform-center-y="-9.5399581" + transform="matrix(0.20791169,-0.9781476,0.9781476,0.20791169,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_48.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_48.svg new file mode 100644 index 0000000..1e327fb --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_48.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_48.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-98.666061" + y="99.243347" + ry="0.33810186" + inkscape:transform-center-x="42.873328" + inkscape:transform-center-y="-14.098673" + transform="matrix(0.30901699,-0.95105652,0.95105652,0.30901699,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_49.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_49.svg new file mode 100644 index 0000000..a8ee213 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_49.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_49.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-78.3433" + y="108.27475" + ry="0.33810186" + inkscape:transform-center-x="41.164754" + inkscape:transform-center-y="-18.502919" + transform="matrix(0.40673664,-0.91354546,0.91354546,0.40673664,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_5.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_5.svg new file mode 100644 index 0000000..0089db4 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_5.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_5.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="202.92412" + y="-35.283806" + ry="0.33810186" + inkscape:transform-center-x="-22.704454" + inkscape:transform-center-y="-39.005156" + transform="matrix(0.86602541,0.5,-0.5,0.86602541,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_50.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_50.svg new file mode 100644 index 0000000..8054684 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_50.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_50.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-57.187824" + y="115.13237" + ry="0.33810186" + inkscape:transform-center-x="39.005168" + inkscape:transform-center-y="-22.704448" + transform="matrix(0.5,-0.86602541,0.86602541,0.5,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_51.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_51.svg new file mode 100644 index 0000000..93aaf1c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_51.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_51.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-35.431427" + y="119.74107" + ry="0.33810186" + inkscape:transform-center-x="36.418235" + inkscape:transform-center-y="-26.657221" + transform="matrix(0.58778525,-0.809017,0.809017,0.58778525,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_52.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_52.svg new file mode 100644 index 0000000..bb69fb3 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_52.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_52.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="-13.312471" + y="122.05037" + ry="0.33810186" + inkscape:transform-center-x="33.432294" + inkscape:transform-center-y="-30.317933" + transform="matrix(0.6691306,-0.74314483,0.74314483,0.6691306,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_53.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_53.svg new file mode 100644 index 0000000..cc62002 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_53.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_53.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="8.9267015" + y="122.03496" + ry="0.33810186" + inkscape:transform-center-x="30.080059" + inkscape:transform-center-y="-33.646472" + transform="matrix(0.74314482,-0.66913061,0.66913061,0.74314482,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_54.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_54.svg new file mode 100644 index 0000000..564ac1d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_54.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_54.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="31.042435" + y="119.695" + ry="0.33810186" + inkscape:transform-center-x="26.398263" + inkscape:transform-center-y="-36.606376" + transform="matrix(0.80901699,-0.58778526,0.58778526,0.80901699,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_55.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_55.svg new file mode 100644 index 0000000..ad00b96 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_55.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_55.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="52.792423" + y="115.05614" + ry="0.33810186" + inkscape:transform-center-x="22.427242" + inkscape:transform-center-y="-39.165213" + transform="matrix(0.8660254,-0.50000001,0.50000001,0.8660254,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_56.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_56.svg new file mode 100644 index 0000000..d4289ef --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_56.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_56.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="73.93837" + y="108.1692" + ry="0.33810186" + inkscape:transform-center-x="18.210504" + inkscape:transform-center-y="-41.294945" + transform="matrix(0.91354545,-0.40673665,0.40673665,0.91354545,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_57.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_57.svg new file mode 100644 index 0000000..1bc4ad4 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_57.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_57.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="94.248596" + y="99.109627" + ry="0.33810186" + inkscape:transform-center-x="13.794248" + inkscape:transform-center-y="-42.972244" + transform="matrix(0.95105651,-0.309017,0.309017,0.95105651,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_58.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_58.svg new file mode 100644 index 0000000..e93b706 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_58.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_58.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="113.50058" + y="87.976692" + ry="0.33810186" + inkscape:transform-center-x="9.2268556" + inkscape:transform-center-y="-44.178728" + transform="matrix(0.9781476,-0.2079117,0.2079117,0.9781476,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_59.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_59.svg new file mode 100644 index 0000000..8680cce --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_59.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_59.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="131.48338" + y="74.892365" + ry="0.33810186" + inkscape:transform-center-x="4.5583813" + inkscape:transform-center-y="-44.90118" + transform="matrix(0.99452189,-0.10452847,0.10452847,0.99452189,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_6.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_6.svg new file mode 100644 index 0000000..9dc0882 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_6.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_6.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="207.53282" + y="-57.040207" + ry="0.33810186" + inkscape:transform-center-x="-26.657225" + inkscape:transform-center-y="-36.418224" + transform="matrix(0.809017,0.58778525,-0.58778525,0.809017,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_7.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_7.svg new file mode 100644 index 0000000..ae6dbd6 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_7.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_7.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="209.84212" + y="-79.159164" + ry="0.33810186" + inkscape:transform-center-x="-30.317935" + inkscape:transform-center-y="-33.432285" + transform="matrix(0.74314483,0.6691306,-0.6691306,0.74314483,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_8.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_8.svg new file mode 100644 index 0000000..284be20 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_8.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_8.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="209.82671" + y="-101.39834" + ry="0.33810186" + inkscape:transform-center-x="-33.646478" + inkscape:transform-center-y="-30.08005" + transform="matrix(0.66913061,0.74314482,-0.74314482,0.66913061,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/m_9.svg b/skins/blackhole/themes/default/skinparts/watchhands/m_9.svg new file mode 100644 index 0000000..831d712 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/m_9.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="m_9.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.3897849" + inkscape:cx="145" + inkscape:cy="159" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect4809" + width="4.9999943" + height="89.999992" + x="207.48676" + y="-123.51407" + ry="0.33810186" + inkscape:transform-center-x="-36.606382" + inkscape:transform-center-y="-26.398246" + transform="matrix(0.58778526,0.80901699,-0.80901699,0.58778526,0,0)" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_0.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_0.svg new file mode 100644 index 0000000..21cb0f7 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_0.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_0.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="30.031693" + x="148.98105" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.99999998,-2.1071537e-4,2.1071537e-4,0.99999998,0,0)" + inkscape:transform-center-x="-0.22827304" + inkscape:transform-center-y="-59.824822" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_1.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_1.svg new file mode 100644 index 0000000..1ee8c87 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_1.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_1.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="13.506389" + x="163.82228" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.9945439,0.1043189,-0.1043189,0.9945439,0,0)" + inkscape:transform-center-x="-6.4804172" + inkscape:transform-center-y="-59.473235" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_10.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_10.svg new file mode 100644 index 0000000..4ea8b4a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_10.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_10.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-175.00835" + x="203.64046" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.50018246,0.86592003,-0.86592003,0.50018246,0,0)" + inkscape:transform-center-x="-51.92395" + inkscape:transform-center-y="-29.71473" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_11.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_11.svg new file mode 100644 index 0000000..560667c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_11.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_11.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-196.12389" + x="196.74974" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.40692912,0.91345974,-0.91345974,0.40692912,0,0)" + inkscape:transform-center-x="-54.745543" + inkscape:transform-center-y="-24.12442" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_12.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_12.svg new file mode 100644 index 0000000..90c20b9 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_12.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_12.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-216.40347" + x="187.68961" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.30921738,0.95099138,-0.95099138,0.30921738,0,0)" + inkscape:transform-center-x="-56.96733" + inkscape:transform-center-y="-18.269791" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_13.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_13.svg new file mode 100644 index 0000000..ce12797 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_13.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_13.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-235.62492" + x="176.5593" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.20811779,0.97810377,-0.97810377,0.20811779,0,0)" + inkscape:transform-center-x="-58.564969" + inkscape:transform-center-y="-12.215005" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_14.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_14.svg new file mode 100644 index 0000000..2374b55 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_14.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_14.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-253.57765" + x="163.48077" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.10473802,0.99449985,-0.99449985,0.10473802,0,0)" + inkscape:transform-center-x="-59.520968" + inkscape:transform-center-y="-6.0263875" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_15.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_15.svg new file mode 100644 index 0000000..7370a78 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_15.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_15.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-270.06494" + x="148.59734" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(2.1071313e-4,0.99999998,-0.99999998,2.1071313e-4,0,0)" + inkscape:transform-center-x="-59.824828" + inkscape:transform-center-y="0.22826732" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_16.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_16.svg new file mode 100644 index 0000000..1c887f1 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_16.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_16.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-284.90619" + x="132.07205" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.1043189,0.9945439,-0.9945439,-0.1043189,0,0)" + inkscape:transform-center-x="-59.473252" + inkscape:transform-center-y="6.4804324" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_17.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_17.svg new file mode 100644 index 0000000..24e8653 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_17.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_17.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-297.93875" + x="114.08595" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.20770558,0.97819139,-0.97819139,-0.20770558,0,0)" + inkscape:transform-center-x="-58.470054" + inkscape:transform-center-y="12.661587" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_18.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_18.svg new file mode 100644 index 0000000..e69531b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_18.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_18.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-309.01987" + x="94.836098" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.30881659,0.95112161,-0.95112161,-0.30881659,0,0)" + inkscape:transform-center-x="-56.826255" + inkscape:transform-center-y="18.704008" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_19.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_19.svg new file mode 100644 index 0000000..0b2a3a9 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_19.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_19.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-318.02811" + x="74.533409" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.40654414,0.91363114,-0.91363114,-0.40654414,0,0)" + inkscape:transform-center-x="-54.55984" + inkscape:transform-center-y="24.541503" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_2.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_2.svg new file mode 100644 index 0000000..a9e0bcd --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_2.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_2.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-4.4797187" + x="176.85484" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.97819139,0.20770558,-0.20770558,0.97819139,0,0)" + inkscape:transform-center-x="-12.661557" + inkscape:transform-center-y="-58.470047" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_20.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_20.svg new file mode 100644 index 0000000..ff2f8df --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_20.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_20.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-324.86481" + x="53.400318" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.49981751,0.86613074,-0.86613074,-0.49981751,0,0)" + inkscape:transform-center-x="-51.695675" + inkscape:transform-center-y="30.11012" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_21.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_21.svg new file mode 100644 index 0000000..e697370 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_21.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_21.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-329.45505" + x="31.668369" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.58761477,0.80914083,-0.80914083,-0.58761477,0,0)" + inkscape:transform-center-x="-48.265121" + inkscape:transform-center-y="35.348847" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_22.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_22.svg new file mode 100644 index 0000000..15f97e2 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_22.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_22.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-331.74854" + x="9.5756598" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.668974,0.7432858,-0.7432858,-0.668974,0,0)" + inkscape:transform-center-x="-44.305763" + inkscape:transform-center-y="40.200285" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_23.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_23.svg new file mode 100644 index 0000000..10f9955 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_23.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_23.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-331.72012" + x="-12.635757" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.74300382,0.66928718,-0.66928718,-0.74300382,0,0)" + inkscape:transform-center-x="-39.860969" + inkscape:transform-center-y="44.61127" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_24.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_24.svg new file mode 100644 index 0000000..3421f9b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_24.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_24.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-329.37015" + x="-34.72253" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.80889313,0.58795571,-0.58795571,-0.80889313,0,0)" + inkscape:transform-center-x="-34.979457" + inkscape:transform-center-y="48.533486" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_25.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_25.svg new file mode 100644 index 0000000..7a658a7 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_25.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_25.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-324.72437" + x="-56.442673" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86592003,0.50018247,-0.50018247,-0.86592003,0,0)" + inkscape:transform-center-x="-29.714712" + inkscape:transform-center-y="51.92397" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_26.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_26.svg new file mode 100644 index 0000000..495212f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_26.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_26.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-317.83365" + x="-77.558212" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.91345973,0.40692913,-0.40692913,-0.91345973,0,0)" + inkscape:transform-center-x="-24.124401" + inkscape:transform-center-y="54.745555" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_27.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_27.svg new file mode 100644 index 0000000..96d565f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_27.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_27.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-308.7735" + x="-97.837799" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.95099138,0.30921739,-0.30921739,-0.95099138,0,0)" + inkscape:transform-center-x="-18.269773" + inkscape:transform-center-y="56.967332" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_28.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_28.svg new file mode 100644 index 0000000..ee39f1f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_28.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_28.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-297.64319" + x="-117.05925" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.97810377,0.2081178,-0.2081178,-0.97810377,0,0)" + inkscape:transform-center-x="-12.21498" + inkscape:transform-center-y="58.564964" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_29.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_29.svg new file mode 100644 index 0000000..e58adf0 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_29.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_29.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-284.56467" + x="-135.01198" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.99449985,0.10473802,-0.10473802,-0.99449985,0,0)" + inkscape:transform-center-x="-6.0263649" + inkscape:transform-center-y="59.52095" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_3.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_3.svg new file mode 100644 index 0000000..c1b3b0c --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_3.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_3.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-23.72957" + x="187.93596" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.95112161,0.30881659,-0.30881659,0.95112161,0,0)" + inkscape:transform-center-x="-18.703982" + inkscape:transform-center-y="-56.826248" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_30.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_30.svg new file mode 100644 index 0000000..6aded60 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_30.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_30.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-269.68121" + x="-151.49928" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.99999998,2.1071313e-4,-2.1071313e-4,-0.99999998,0,0)" + inkscape:transform-center-x="0.22827386" + inkscape:transform-center-y="59.824806" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_31.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_31.svg new file mode 100644 index 0000000..a8b1998 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_31.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_31.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-253.15591" + x="-166.34052" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.9945439,-0.1043189,0.1043189,-0.9945439,0,0)" + inkscape:transform-center-x="6.4804204" + inkscape:transform-center-y="59.473222" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_32.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_32.svg new file mode 100644 index 0000000..720797f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_32.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_32.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-235.16982" + x="-179.37308" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.97819139,-0.20770558,0.20770558,-0.97819139,0,0)" + inkscape:transform-center-x="12.661572" + inkscape:transform-center-y="58.47004" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_33.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_33.svg new file mode 100644 index 0000000..becfb21 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_33.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_33.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-215.91997" + x="-190.45419" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.95112161,-0.30881659,0.30881659,-0.95112161,0,0)" + inkscape:transform-center-x="18.703994" + inkscape:transform-center-y="56.826245" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_34.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_34.svg new file mode 100644 index 0000000..6026629 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_34.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_34.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-195.61728" + x="-199.46245" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.91363114,-0.40654414,0.40654414,-0.91363114,0,0)" + inkscape:transform-center-x="24.541491" + inkscape:transform-center-y="54.559847" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_35.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_35.svg new file mode 100644 index 0000000..1d7d4f4 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_35.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_35.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-174.48419" + x="-206.29915" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86613074,-0.49981751,0.49981751,-0.86613074,0,0)" + inkscape:transform-center-x="30.110104" + inkscape:transform-center-y="51.695683" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_36.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_36.svg new file mode 100644 index 0000000..ab3120f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_36.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_36.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-152.75224" + x="-210.88939" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.80914083,-0.58761477,0.58761477,-0.80914083,0,0)" + inkscape:transform-center-x="35.348823" + inkscape:transform-center-y="48.265129" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_37.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_37.svg new file mode 100644 index 0000000..c5e13b9 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_37.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_37.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-130.65953" + x="-213.18288" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.7432858,-0.668974,0.668974,-0.7432858,0,0)" + inkscape:transform-center-x="40.200252" + inkscape:transform-center-y="44.305771" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_38.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_38.svg new file mode 100644 index 0000000..bf8ea2a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_38.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_38.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-108.44811" + x="-213.15448" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.66928718,-0.74300382,0.74300382,-0.66928718,0,0)" + inkscape:transform-center-x="44.611243" + inkscape:transform-center-y="39.860992" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_39.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_39.svg new file mode 100644 index 0000000..7126aa6 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_39.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_39.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-86.361343" + x="-210.8045" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.58795571,-0.80889313,0.80889313,-0.58795571,0,0)" + inkscape:transform-center-x="48.533472" + inkscape:transform-center-y="34.979482" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_4.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_4.svg new file mode 100644 index 0000000..4f22687 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_4.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_4.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-44.032261" + x="196.94421" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.91363114,0.40654414,-0.40654414,0.91363114,0,0)" + inkscape:transform-center-x="-24.541481" + inkscape:transform-center-y="-54.559848" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_40.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_40.svg new file mode 100644 index 0000000..4fab092 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_40.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_40.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-64.641205" + x="-206.15871" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.50018247,-0.86592003,0.86592003,-0.50018247,0,0)" + inkscape:transform-center-x="51.923956" + inkscape:transform-center-y="29.714727" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_41.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_41.svg new file mode 100644 index 0000000..34235c0 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_41.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_41.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-43.525669" + x="-199.26799" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.40692913,-0.91345973,0.91345973,-0.40692913,0,0)" + inkscape:transform-center-x="54.745548" + inkscape:transform-center-y="24.124414" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_42.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_42.svg new file mode 100644 index 0000000..415778b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_42.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_42.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-23.24608" + x="-190.20786" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.30921739,-0.95099138,0.95099138,-0.30921739,0,0)" + inkscape:transform-center-x="56.967331" + inkscape:transform-center-y="18.269797" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_43.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_43.svg new file mode 100644 index 0000000..b011837 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_43.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_43.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-4.0246282" + x="-179.07755" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.2081178,-0.97810377,0.97810377,-0.2081178,0,0)" + inkscape:transform-center-x="58.564972" + inkscape:transform-center-y="12.214999" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_44.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_44.svg new file mode 100644 index 0000000..dfe5902 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_44.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_44.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="13.928093" + x="-165.99902" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.10473802,-0.99449985,0.99449985,-0.10473802,0,0)" + inkscape:transform-center-x="59.520963" + inkscape:transform-center-y="6.0263756" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_45.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_45.svg new file mode 100644 index 0000000..815d091 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_45.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_45.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="30.41539" + x="-151.11559" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-2.1071313e-4,-0.99999998,0.99999998,-2.1071313e-4,0,0)" + inkscape:transform-center-x="59.824829" + inkscape:transform-center-y="-0.22826621" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_46.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_46.svg new file mode 100644 index 0000000..904f469 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_46.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_46.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="45.256626" + x="-134.59029" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.1043189,-0.9945439,0.9945439,0.1043189,0,0)" + inkscape:transform-center-x="59.47324" + inkscape:transform-center-y="-6.4804095" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_47.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_47.svg new file mode 100644 index 0000000..67136e0 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_47.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_47.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="58.289196" + x="-116.60418" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.20770558,-0.97819139,0.97819139,0.20770558,0,0)" + inkscape:transform-center-x="58.470051" + inkscape:transform-center-y="-12.661554" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_48.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_48.svg new file mode 100644 index 0000000..63f5847 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_48.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_48.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="69.370308" + x="-97.354324" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.30881659,-0.95112161,0.95112161,0.30881659,0,0)" + inkscape:transform-center-x="56.826254" + inkscape:transform-center-y="-18.703981" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_49.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_49.svg new file mode 100644 index 0000000..4c8d944 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_49.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_49.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="78.378563" + x="-77.051636" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.40654414,-0.91363114,0.91363114,0.40654414,0,0)" + inkscape:transform-center-x="54.559855" + inkscape:transform-center-y="-24.541477" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_5.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_5.svg new file mode 100644 index 0000000..42466bb --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_5.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_5.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-65.165352" + x="203.78091" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86613074,0.49981751,-0.49981751,0.86613074,0,0)" + inkscape:transform-center-x="-30.110102" + inkscape:transform-center-y="-51.695679" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_50.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_50.svg new file mode 100644 index 0000000..622b614 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_50.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_50.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="85.215256" + x="-55.918545" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.49981751,-0.86613074,0.86613074,0.49981751,0,0)" + inkscape:transform-center-x="51.695689" + inkscape:transform-center-y="-30.110096" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_51.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_51.svg new file mode 100644 index 0000000..4accac5 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_51.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_51.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="89.805489" + x="-34.186596" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.58761477,-0.80914083,0.80914083,0.58761477,0,0)" + inkscape:transform-center-x="48.265134" + inkscape:transform-center-y="-35.348821" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_52.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_52.svg new file mode 100644 index 0000000..ed2155b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_52.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_52.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="92.098969" + x="-12.093886" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.668974,-0.7432858,0.7432858,0.668974,0,0)" + inkscape:transform-center-x="44.305776" + inkscape:transform-center-y="-40.200258" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_53.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_53.svg new file mode 100644 index 0000000..e47e57a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_53.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_53.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="92.070572" + x="10.117531" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.74300382,-0.66928718,0.66928718,0.74300382,0,0)" + inkscape:transform-center-x="39.860991" + inkscape:transform-center-y="-44.611248" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_54.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_54.svg new file mode 100644 index 0000000..1867c67 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_54.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_54.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="89.720604" + x="32.204304" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.80889313,-0.58795571,0.58795571,0.80889313,0,0)" + inkscape:transform-center-x="34.979481" + inkscape:transform-center-y="-48.53347" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_55.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_55.svg new file mode 100644 index 0000000..d20310d --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_55.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_55.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="85.074814" + x="53.924442" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86592003,-0.50018247,0.50018247,0.86592003,0,0)" + inkscape:transform-center-x="29.714731" + inkscape:transform-center-y="-51.923948" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_56.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_56.svg new file mode 100644 index 0000000..c77f1e5 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_56.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_56.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="78.184097" + x="75.039978" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.91345973,-0.40692913,0.40692913,0.91345973,0,0)" + inkscape:transform-center-x="24.124422" + inkscape:transform-center-y="-54.74554" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_57.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_57.svg new file mode 100644 index 0000000..ce5d81a --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_57.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_57.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="69.123955" + x="95.319565" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.95099138,-0.30921739,0.30921739,0.95099138,0,0)" + inkscape:transform-center-x="18.2698" + inkscape:transform-center-y="-56.967327" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_58.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_58.svg new file mode 100644 index 0000000..7011250 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_58.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_58.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="57.993652" + x="114.54102" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.97810377,-0.2081178,0.2081178,0.97810377,0,0)" + inkscape:transform-center-x="12.215002" + inkscape:transform-center-y="-58.564969" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_59.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_59.svg new file mode 100644 index 0000000..50d3798 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_59.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_59.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="43.692689" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1846" + inkscape:window-height="1058" + inkscape:window-x="66" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="44.915134" + x="132.49374" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.99449985,-0.10473802,0.10473802,0.99449985,0,0)" + inkscape:transform-center-x="6.0263817" + inkscape:transform-center-y="-59.520957" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_6.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_6.svg new file mode 100644 index 0000000..f0b6c4e --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_6.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_6.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-86.897301" + x="208.37114" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.80914083,0.58761478,-0.58761478,0.80914083,0,0)" + inkscape:transform-center-x="-35.348818" + inkscape:transform-center-y="-48.265125" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_7.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_7.svg new file mode 100644 index 0000000..39d480b --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_7.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_7.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-108.99001" + x="210.66463" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.7432858,0.66897401,-0.66897401,0.7432858,0,0)" + inkscape:transform-center-x="-40.200259" + inkscape:transform-center-y="-44.305764" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_8.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_8.svg new file mode 100644 index 0000000..c6059c2 --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_8.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_8.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-131.20143" + x="210.63623" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.66928717,0.74300382,-0.74300382,0.66928717,0,0)" + inkscape:transform-center-x="-44.611252" + inkscape:transform-center-y="-39.860979" /> + </g> +</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchhands/s_9.svg b/skins/blackhole/themes/default/skinparts/watchhands/s_9.svg new file mode 100644 index 0000000..9de138f --- /dev/null +++ b/skins/blackhole/themes/default/skinparts/watchhands/s_9.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + version="1.1" + inkscape:version="0.91pre2 r13516" + viewBox="0 0 299.99999 300" + sodipodi:docname="s_9.svg"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.1480363" + inkscape:cx="151" + inkscape:cy="166.12166" + inkscape:document-units="px" + inkscape:current-layer="layer5" + showgrid="false" + units="px" + inkscape:window-width="1531" + inkscape:window-height="878" + inkscape:window-x="61" + inkscape:window-y="-8" + inkscape:window-maximized="1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="Zeiger" + style="display:inline"> + <rect + ry="0.33689189" + y="-153.28821" + x="208.28625" + height="119.99999" + width="2.9999931" + id="rect4663" + style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.5879557,0.80889313,-0.80889313,0.5879557,0,0)" + inkscape:transform-center-x="-48.533475" + inkscape:transform-center-y="-34.979477" /> + </g> +</svg> diff --git a/skins/blackhole/xmlfiles/displayaudiotracks.xml b/skins/blackhole/xmlfiles/displayaudiotracks.xml new file mode 100644 index 0000000..e0460b5 --- /dev/null +++ b/skins/blackhole/xmlfiles/displayaudiotracks.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE displayaudiotracks SYSTEM "../../../dtd/displayaudiotracks.dtd"> + +<displayaudiotracks x="25%" y="0" width="50%" height="100%" fadetime="{fadeTime}"> + <!-- Available Variables background: + {numtracks} number of displayed tracks + --> + <background> + <area x="0" y="{areaheight} - {numtracks} * {areaheight} / 10 - {areaheight} / 10" width="100%" height="{areaheight} / 10 + {areaheight} / 10 * {numtracks}" layer="1"> + <fill color="{clrBlackTrans}" /> + </area> + </background> + + <!-- Available Variables header: + {numtracks} number of displayed tracks + {title} title of menu + --> + <header> + <area x="0" y="{areaheight} - {numtracks} * {areaheight} / 10 - {areaheight} / 10" width="100%" height="{areaheight} / 10" layer="2"> + <drawtext align="center" valign="center" font="{semibold}" fontsize="80%" color="{clrWhite}" text="{title}" /> + </area> + </header> + + <!-- Available Variables header: + {numelements} number of displayed tracks + --> + <menuitems x="0" y="{areaheight} - {numelements} * {areaheight} / 10" orientation="vertical" width="100%" height="{numelements} * {areaheight} / 10" align="top" numlistelements="{numelements}"> + <!-- Available Variables auidotrack listelement: + {current} true if item is currently selected + {title} title of auio track + --> + <listelement> + <area x="1%" width="98%" layer="2"> + <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="0" width="{areawidth}" height="{areaheight}*0.98"/> + <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="0" width="{areawidth}" height="{areaheight}*0.98"/> + </area> + <area x="1%" width="98%" layer="3"> + <drawtext x="10" valign="center" font="{regular}" fontsize="60%" color="{clrWhite}" text="{title}" /> + </area> + </listelement> + </menuitems> + +</displayaudiotracks> diff --git a/skins/blackhole/xmlfiles/displaychannel.xml b/skins/blackhole/xmlfiles/displaychannel.xml new file mode 100644 index 0000000..c2f0b4e --- /dev/null +++ b/skins/blackhole/xmlfiles/displaychannel.xml @@ -0,0 +1,269 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE displaychannel SYSTEM "../../../dtd/displaychannel.dtd"> + +<displaychannel x="0" y="70%" width="100%" height="30%" fadetime="{fadeTime}"> + + <background> + <!-- global background --> + <area x="0" y="0" width="100%" height="100%" layer="1"> + <drawimage imagetype="skinpart" path="displaychannelback" x="0" y="0" width="100%" height="100%"/> + </area> + <!-- epg background --> + <area x="17%" y="36%" width="67%" height="40%" layer="2"> + <drawimage imagetype="skinpart" path="displaychannelbackepg" x="0" y="0" width="100%" height="100%"/> + </area> + <!-- watch background --> + <area x="86%" y="20%" width="{areaheight}*0.6" height="{areaheight}*0.6" layer="2"> + <drawimage imagetype="skinpart" path="watchback" x="0" y="0" width="100%" height="100%"/> + </area> + </background> + + <!-- Available Variables channelinfo: + {channelnumber} Number of Channel, with "-" in case of channel switching + {channelname} Name of current Channel + {channellogoexists} true if a channel logo exists + {channelid} ChannelID as path to display channel logo + {switching} true if a number is pressed on the remote to switch to a dedicated channel + --> + <channelinfo> + <area x="17%" y="16%" width="67%" height="18%" layer="2"> + <drawtext x="0" y="0" font="{semibold}" fontsize="100%" color="{clrWhite}" text="{channelnumber} {channelname}" /> + </area> + <area x="2%" y="20%" width="13%" height="70%" layer="2"> + <drawimage cache="true" imagetype="channellogo" path="{channelid}" width="100%" height="100%" align="center" valign="center"/> + </area> + </channelinfo> + + <!-- Available Variables epginfo: + {currenttitle} Title of the current Schedule + {currentsubtitle} Subtitle of the current Schedule + {currentstart} Start of current Schedule in hh:mm + {currentstop} End of current Schedule in hh:mm + {currentduration} Duration of current Schedule in min + {currentdurationhours} Duration, full hours + {currentdurationminutes} Duration, rest of minutes + {currentelapsed} Elapsed time of current Schedule in min + {currentremaining} Remaining time of current Schedule in min + {currentrecording} true if current Schedule is recorded + {hasVPS} true if current Schedule has VPS + {nexttitle} Title of next Schedule + {nextsubtitle} Subtitle of next Schedule + {nextstart} Start of next Schedule in hh:mm + {nextstop} Stop of next Schedule in hh:mm + {nextduration} Duration of next Schedule in min + {nextdurationhours} Duration, full hours + {nextdurationminutes} Duration, rest of minutes + {nextrecording} true if next Schedule will be recorded + --> + <epginfo> + <area x="17%" y="37%" width="66%" height="20%" layer="2"> + <drawtext name="starttime" x="1%" valign="center" font="{regular}" fontsize="80%" color="{clrWhite}" text="{currentstart}" /> + <drawtext align="right" name="elapsed" valign="center" font="{regular}" fontsize="75%" color="{clrWhite}" text="{currentelapsed}/{currentduration}min" /> + <drawtext x="{width(starttime)} + 40" y="0" width="{areawidth} - {width(starttime)} - {width(elapsed)} - 45" font="{regular}" fontsize="70%" color="{clrWhite}" text="{currenttitle}" /> + <drawtext x="{width(starttime)} + 40" y="56%" width="{areawidth} - {width(starttime)} - {width(elapsed)} - 45" font="{regular}" fontsize="45%" color="{clrWhite}" text="{currentsubtitle}" /> + </area> + <area x="17%" y="57%" width="66%" height="20%" layer="2"> + <drawtext name="starttime" x="1%" valign="center" font="{regular}" fontsize="80%" color="{clrGray}" text="{nextstart}" /> + <drawtext align="right" name="duration" valign="center" font="{regular}" fontsize="75%" color="{clrGray}" text="{nextduration}min" /> + <drawtext x="{width(starttime)} + 40" y="0" width="{areawidth} - {width(starttime)} - {width(duration)} - 45" font="{regular}" fontsize="70%" color="{clrGray}" text="{nexttitle}" /> + <drawtext x="{width(starttime)} + 40" y="55%" width="{areawidth} - {width(starttime)} - {width(duration)} - 45" font="{regular}" fontsize="40%" color="{clrGray}" text="{nextsubtitle}" /> + </area> + </epginfo> + + <!-- Available Variables progressbar: + {start} Start of current Schedule in hh:mm + {stop} End of current Schedule in hh:mm + {duration} Total Duration of current Schedule in seconds + {elapsed} Elapsed time of current Schedule in seconds + {remaining} Remaining time of current Schedule in seconds + --> + <progressbar> + <area x="67%" y="5%" width="30%" height="5%" layer="4"> + <drawimage imagetype="skinpart" path="progressbar" x="{areaheight}/2" y="0" width="{elapsed}/{duration}*{areawidth} - {elapsed}/{duration}*{areaheight}" height="100%"/> + </area> + <area x="67%" y="5%" width="30%" height="5%" layer="5"> + <drawimage imagetype="skinpart" path="progressbarend" x="{areaheight}/2 + {elapsed}/{duration}*{areawidth} - {elapsed}/{duration}*{areaheight} - 1" y="0" width="{areaheight}/2" height="100%"/> + </area> + </progressbar> + + <progressbarback> + <area x="67%" y="5%" width="30%" height="5%" layer="3"> + <drawimage imagetype="skinpart" path="progressbarback" x="0" y="0" width="100%" height="100%"/> + </area> + </progressbarback> + + <!-- Available Variables statusinfo: + {isRadio} true if channel is a radio channel + {hasVT} true if channel has video text + {isStereo} true if a stereo audio trac is available + {isDolby} true if a dolby audio track is available + {isEncrypted} true if channel is encrypted + {isRecording} true if currently a recording is running on this channel + {newmails} true if mailbox plugin is installed and new mails are available + --> + <statusinfo> + <area x="17%" y="80%" width="67%" height="15%" layer="3"> + <drawimage condition="{isDolby}" imagetype="icon" path="ico_dolby" x="{areaheight}*6 + 20" y="0" width="{areaheight}*3" height="{areaheight}"/> + <drawimage condition="{hasVT}" imagetype="icon" path="ico_videotext" x="{areaheight}*9 + 30" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{isEncrypted}" imagetype="icon" path="ico_crypted" x="{areaheight}*10 + 40" y="0" width="{areaheight}*2" height="{areaheight}"/> + </area> + </statusinfo> + + <!-- Available Variables audioinfo: + {numaudiotracks} number of available audio tracks for current channel + {audiochannel} 0 if current channel is stereo, 1 for left chanel only, 2 for right channel only + {trackdesc} description of the current audio track + {tracklang} language of the current audio track + --> + <audioinfo> + </audioinfo> + + <!-- Available Variables screenresolution: + {screenwidth} width of currently displayed channel in px + {screenheight} height of currently displayed channel in px + {resolution} resolution: hd1080i, hd720p, sd576i + {aspect} screen aspect, each 4:3, 16:9 or 21:9 + {isHD} true for hd1080i and hd720p + {isWideScreen} true if aspect is 16:9 or 21:9 + --> + <screenresolution> + <area x="17%" y="80%" width="67%" height="15%" layer="4"> + <drawimage imagetype="icon" path="ico_{resolution}" x="0" y="0" width="{areaheight}*3" height="{areaheight}"/> + <drawimage condition="{isWideScreen}" imagetype="icon" path="ico_widescreen" x="{areaheight}*3 + 10" y="0" width="{areaheight}*3" height="{areaheight}"/> + </area> + </screenresolution> + + <!-- Available Variables dvbdeviceinfo: + {prevAvailable} true if previous Channel Group is avaialble + {nextAvailable} true if next Channel Group is avaialble + {group} Name of current Channel Group + {nextgroup} Name of next Channel Group + {prevgroup} Name of prev Channel Group + {sepexists} true if a channel separator logo exists + {seppath} path for separator logo to use in imagetype "seplogo" + --> + <channelgroup> + <area x="17%" y="37%" width="66%" height="40%" layer="3"> + <drawtext x="1%" width="24%" valign="center" font="{semibold}" fontsize="40%" color="{clrWhite}" text="{prevgroup}" /> + <drawtext x="30%" width="40%" valign="center" font="{semibold}" fontsize="60%" color="{clrWhite}" text="{group}" /> + <drawtext align="right" width="25%" valign="center" font="{semibold}" fontsize="40%" color="{clrWhite}" text="{nextgroup}" /> + </area> + </channelgroup> + + <!-- Available Variables signalquality: + {signalstrength} STR value of currently displayed channel + {signalquality} SNR value of currently displayed channel + --> + <signalquality> + </signalquality> + + <!-- background of signalmeter, will only be drawn if signalquality was deleted --> + <signalqualityback> + </signalqualityback> + + <!-- Available Variables devices: + {numdevices} number of available devices + {devices[]} array with available devices + {devices[num]} number of current device + {devices[type]} type of device (DVB-S, DVB-C, ...) + {devices[istuned]} true if device is currently tuned to a transponder + {devices[livetv]} true if device is currently playing livetv + {devices[recording]} true if device is currently recording + {devices[hascam]} true if device has a CAM + {devices[cam]} number of CAM + {devices[signalstrength]} signalstrength of devcie + {devices[signalquality]} signalstrength of devcie + {devices[channelnumber]} number of the currently tuned channel + {devices[channelname]} name of the currently tuned channel + {devices[channellogoexists]} true if a channel logo exists + {devices[channelid]} ID of the currently tuned channel + {devices[source]} source of the currently tuned channel + --> + <devices> + </devices> + + <!-- Available Variables scrapercontent: + {posterpath} Full Path of Poster to use in image path attribute + {posterwidth} width of poster in pixel + {posterheight} height of poster in pixel + {hasPoster} true if poster is available + {bannerpath} Full Path of banner to use in image path attribute + {bannerwidth} width of banner in pixel + {bannerheight} height of banner in pixel + {hasBanner} true if banner is available + + Use this tokens if you want to display a banner for series and a poster for movies: + {mediapath} Full Path of Poster or Banner to use in image path attribute + {mediawidth} width of image in pixel + {mediaheight} height of image in pixel + {isbanner} true if image is a banner, false if it is a poster + --> + <scrapercontent> + </scrapercontent> + + <!-- Available Variables datetime: + {time} time in hh:mm + {day} day in digits + {dayleadingzero} day in digits with leading 0 + {dayname} Full name of the day + {daynameshort} Short 3 char name of the day + {month} month in digits with leading 0 + {monthname} Full name of the month + {monthnameshort} 3 letter abbrivation of month name + {year} year in yyyy + --> + <datetime> + <area x="17%" y="16%" width="67%" height="18%" layer="3"> + <drawtext align="right" y="0" font="{semibold}" fontsize="100%" color="{clrWhite}" text="{daynameshort} {day}.{month}" /> + </area> + <area x="86%" y="80%" width="{areaheight}*0.6" height="16%" layer="3"> + <drawtext align="center" y="0" font="{digital}" fontsize="100%" color="{clrWhite}" text="{time}" /> + </area> + </datetime> + + <!-- Available Variables time: + {sec} current seconds + {min} current minutes + {hour} current hours + {hmins} current "hourminutes" to display an hour hand + --> + <time> + <area x="86%" y="20%" width="{areaheight}*0.6" height="{areaheight}*0.6" layer="5"> + <drawimage imagetype="skinpart" path="watchhands/s_{sec}" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="86%" y="20%" width="{areaheight}*0.6" height="{areaheight}*0.6" layer="4"> + <drawimage imagetype="skinpart" path="watchhands/m_{min}" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="86%" y="20%" width="{areaheight}*0.6" height="{areaheight}*0.6" layer="3"> + <drawimage imagetype="skinpart" path="watchhands/h_{hmins}" x="0" y="0" width="100%" height="100%"/> + </area> + </time> + + <!-- Available Variables message: + {text} message text + {status} true if message is a status message + {info} true if message is a info message + {warning} true if message is a warn message + {error} true if message is a error message + --> + <message> + <area x="5%" y="80%" width="90%" height="15%" layer="6"> + <drawimage condition="{status}" imagetype="skinpart" path="messageblue" x="0" y="0" width="100%" height="100%" /> + <drawimage condition="{info}" imagetype="skinpart" path="messagegreen" x="0" y="0" width="100%" height="100%" /> + <drawimage condition="{warning}" imagetype="skinpart" path="messageyellow" x="0" y="0" width="100%" height="100%" /> + <drawimage condition="{error}" imagetype="skinpart" path="messagered" x="0" y="0" width="100%" height="100%" /> + </area> + <area x="5%" y="80%" width="90%" height="15%" layer="7"> + <drawtext align="center" valign="center" font="{regular}" fontsize="40%" color="{clrWhite}" text="{text}" /> + </area> + </message> + + <!-- Available Variables customtokens: + all custom tokens set by the svdrp command SCTK are available in this viewelement + For instance, use an appropriate script which runs periodically as cronjob and + sets these custom tokens with svdrpsend or dbus2vdr + --> + <customtokens> + </customtokens> + +</displaychannel> diff --git a/skins/blackhole/xmlfiles/displaymenu.xml b/skins/blackhole/xmlfiles/displaymenu.xml new file mode 100644 index 0000000..712f870 --- /dev/null +++ b/skins/blackhole/xmlfiles/displaymenu.xml @@ -0,0 +1,241 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE displaymenu SYSTEM "../../../dtd/displaymenu.dtd" [ +<!ENTITY displaymenudefault SYSTEM "displaymenudefault.xml"> +<!ENTITY displaymenumain SYSTEM "displaymenumain.xml"> +<!ENTITY displaymenusetup SYSTEM "displaymenusetup.xml"> +<!ENTITY displaymenuschedules SYSTEM "displaymenuschedules.xml"> +<!ENTITY displaymenutimers SYSTEM "displaymenutimers.xml"> +<!ENTITY displaymenuchannels SYSTEM "displaymenuchannels.xml"> +<!ENTITY displaymenurecordings SYSTEM "displaymenurecordings.xml"> +<!ENTITY displaymenudetailepg SYSTEM "displaymenudetailepg.xml"> +<!ENTITY displaymenudetailrecording SYSTEM "displaymenudetailrecording.xml"> +<!ENTITY displaymenudetailtext SYSTEM "displaymenudetailtext.xml"> +]> + +<displaymenu x="0" y="0" width="100%" height="100%" fadetime="0"> + <!-- + The following background, header, datetime and colorbuttons definitions are default + implementations. If one or more of these elements are not implemented in the subview, + the default implementations are used. + --> + <background> + <area x="0" y="0" width="100%" height="100%" layer="1"> + <drawimage imagetype="skinpart" path="displaymenubacktv" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="0" y="0" width="83%" height="8%" layer="2"> + <drawimage imagetype="skinpart" path="displaymenuheader" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="74%" y="0" width="26%" height="46%" layer="3"> + <drawimage imagetype="skinpart" path="displaymenucorner" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="{areawidth}*0.865" y="{areawidth}*0.005" width="13%" height="{areawidth}*0.13" layer="4"> + <drawimage imagetype="skinpart" path="watchback" x="0" y="0" width="100%" height="100%"/> + </area> + </background> + <!-- Available Variables header: + {title} title of current menu + {vdrversion} running VDR Version + {hasicon} true if a menu icon is available + {icon} path of menu icon + {freetime} available disc capacity in hh:mm + {freepercent} available disc capacity in percent + {usedpercent} used disc capacity in percent + {freegb} available disc capacity in gigabytes + {discalert} true if disc usage is > 95% + {vdrusagestring} localized VDR internal usage string + --> + <header> + <area x="0" y="0" width="83%" height="8%" layer="3"> + <drawtext x="1%" width="100%" valign="center" font="{semibold}" fontsize="90%" color="{clrWhite}" text="{title}" /> + </area> + </header> + <!-- Available Variables datetime: + {time} time in hh:mm + {day} day in digits + {dayleadingzero} day in digits with leading 0 + {dayname} Full name of the day + {daynameshort} Short 3 char name of the day + {month} month in digits with leading 0 + {monthname} Full name of the month + {monthnameshort} 3 letter abbrivation of month name + {year} year in yyyy + --> + <datetime> + <area x="81%" y="0" width="7%" height="5%" layer="5"> + <drawtext x="0" valign="center" font="{digital}" fontsize="90%" color="{clrWhite}" text="{time}" /> + </area> + <area x="40%" y="0" width="37%" height="8%" layer="3"> + <drawtext align="right" valign="center" font="{semibold}" fontsize="90%" color="{clrWhite}" text="{daynameshort} {day}.{month}" /> + </area> + </datetime> + + <!-- Available Variables time: + {sec} current seconds + {min} current minutes + {hour} current hours + {hmins} current "hourminutes" to display an hour hand + --> + <time> + <area x="{areawidth}*0.865" y="{areawidth}*0.005" width="13%" height="{areawidth}*0.13" layer="5"> + <drawimage imagetype="skinpart" path="watchhands/s_{sec}" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="{areawidth}*0.865" y="{areawidth}*0.005" width="13%" height="{areawidth}*0.13" layer="6"> + <drawimage imagetype="skinpart" path="watchhands/m_{min}" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="{areawidth}*0.865" y="{areawidth}*0.005" width="13%" height="{areawidth}*0.13" layer="7"> + <drawimage imagetype="skinpart" path="watchhands/h_{hmins}" x="0" y="0" width="100%" height="100%"/> + </area> + </time> + + <!-- Available Variables message: + {text} message text + {status} true if message is an status message + {info} true if message is an info message + {warning} true if message is an warn message + {error} true if message is an error message + --> + <message> + <area x="5%" y="80%" width="90%" height="15%" layer="6"> + <drawimage condition="{status}" imagetype="skinpart" path="messageblue" x="0" y="0" width="100%" height="100%" /> + <drawimage condition="{info}" imagetype="skinpart" path="messagegreen" x="0" y="0" width="100%" height="100%" /> + <drawimage condition="{warning}" imagetype="skinpart" path="messageyellow" x="0" y="0" width="100%" height="100%" /> + <drawimage condition="{error}" imagetype="skinpart" path="messagered" x="0" y="0" width="100%" height="100%" /> + </area> + <area x="5%" y="80%" width="90%" height="15%" layer="7"> + <drawtext align="center" valign="center" font="{regular}" fontsize="40%" color="{clrWhite}" text="{text}" /> + </area> + </message> + <!-- Available Variables colorbuttons: + {red1} true if red button is button 1 + {red2} true if red button is button 2 + {red3} true if red button is button 3 + {red4} true if red button is button 4 + {green1} true if green button is button 1 + {green2} true if green button is button 2 + {green3} true if green button is button 3 + {green4} true if green button is button 4 + {yellow1} true if yellow button is button 1 + {yellow2} true if yellow button is button 2 + {yellow3} true if yellow button is button 3 + {yellow4} true if yellow button is button 4 + {blue1} true if blue button is button 1 + {blue2} true if blue button is button 2 + {blue3} true if blue button is button 3 + {blue4} true if blue button is button 4 + {red} label of red button + {green} label of green button + {yellow} label of yellow button + {blue} label of blue button + --> + <colorbuttons> + <area condition="{red1}" x="0" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttonred" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{red1}" x="0" y="90%" width="25%" height="10%" layer="3"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{red}" /> + </area> + <area condition="{green1}" x="0" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttongreen" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{green1}" x="0" y="90%" width="25%" height="10%" layer="3"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{green}" /> + </area> + <area condition="{yellow1}" x="0" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttonyellow" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{yellow1}" x="0" y="90%" width="25%" height="10%" layer="4"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{yellow}" /> + </area> + <area condition="{blue1}" x="0" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttonblue" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{blue1}" x="0" y="90%" width="25%" height="10%" layer="3"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{blue}" /> + </area> + + <area condition="{red2}" x="25%" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttonred" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{red2}" x="25%" y="90%" width="25%" height="10%" layer="3"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{red}" /> + </area> + <area condition="{green2}" x="25%" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttongreen" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{green2}" x="25%" y="90%" width="25%" height="10%" layer="3"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{green}" /> + </area> + <area condition="{yellow2}" x="25%" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttonyellow" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{yellow2}" x="25%" y="90%" width="25%" height="10%" layer="3"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{yellow}" /> + </area> + <area condition="{blue2}" x="25%" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttonblue" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{blue2}" x="25%" y="90%" width="25%" height="10%" layer="3"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{blue}" /> + </area> + + <area condition="{red3}" x="50%" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttonred" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{red3}" x="50%" y="90%" width="25%" height="10%" layer="3"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{red}" /> + </area> + <area condition="{green3}" x="50%" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttongreen" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{green3}" x="50%" y="90%" width="25%" height="10%" layer="3"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{green}" /> + </area> + <area condition="{yellow3}" x="50%" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttonyellow" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{yellow3}" x="50%" y="90%" width="25%" height="10%" layer="3"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{yellow}" /> + </area> + <area condition="{blue3}" x="50%" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttonblue" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{blue3}" x="50%" y="90%" width="25%" height="10%" layer="3"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{blue}" /> + </area> + + <area condition="{red4}" x="75%" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttonred" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{red4}" x="75%" y="90%" width="25%" height="10%" layer="3"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{red}" /> + </area> + <area condition="{green4}" x="75%" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttongreen" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{green4}" x="75%" y="90%" width="25%" height="10%" layer="3"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{green}" /> + </area> + <area condition="{yellow4}" x="75%" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttonyellow" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{yellow4}" x="75%" y="90%" width="25%" height="10%" layer="3"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{yellow}" /> + </area> + <area condition="{blue4}" x="75%" y="90%" width="25%" height="10%" layer="2"> + <drawimage imagetype="skinpart" path="buttonblue" align="center" valign="center" width="90%" height="75%"/> + </area> + <area condition="{blue4}" x="75%" y="90%" width="25%" height="10%" layer="3"> + <drawtext align="center" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{blue}" /> + </area> + </colorbuttons> + &displaymenudefault; + &displaymenumain; + &displaymenusetup; + &displaymenuschedules; + &displaymenutimers; + &displaymenuchannels; + &displaymenurecordings; + &displaymenudetailepg; + &displaymenudetailrecording; + &displaymenudetailtext; +</displaymenu> diff --git a/skins/blackhole/xmlfiles/displaymenuchannels.xml b/skins/blackhole/xmlfiles/displaymenuchannels.xml new file mode 100644 index 0000000..eacde76 --- /dev/null +++ b/skins/blackhole/xmlfiles/displaymenuchannels.xml @@ -0,0 +1,121 @@ +<menuchannels x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="55%" scaletvy="10%" scaletvwidth="40%" scaletvheight="40%"> + + <scrollbar> + <area x="52%" y="10%" width="2%" height="80%" layer="2"> + <drawimage imagetype="skinpart" path="scrollbarback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="52%" y="10%" width="2%" height="80%" layer="3"> + <drawimage imagetype="skinpart" path="scrollbar" x="0" y="{areaheight} * {offset} / 1000" width="100%" height="{areaheight} * {height} / 1000"/> + </area> + </scrollbar> + + <menuitems x="1%" y="10%" orientation="vertical" width="98%" height="80%" align="center" numlistelements="10"> + <!-- Available Variables channels menu listelement: + {nummenuitem} number of item in list, starts with 1 + {number} number of the displayed channel + {name} name of the displayed channel + {channellogoexists} true if a channel logo exists + {channelid} ChannelID as path to display channel logo + {transponder} Transponder of channel + {frequency} Frequency of channel + {source} Source of channel (S, C, T) + {sourcedescription} Descriptin of source from sources.conf + {position} orbital position of the satellite in case this is a DVB-S source + {isAtsc} true if channel is a ATSC channel + {isCable} true if channel is cable channel + {isSat} true if channel is a satellite channel + {isTerr} true if channel is terrestrical + {presenteventtitle} title of present event on this channel + {presenteventstart} present event start time in hh::mm + {presenteventstop} present event event stop time in hh::mm + {current} true if item is currently selected + {separator} true if item is a list separator + --> + <listelement> + <area x="0" width="51%" layer="2"> + <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="0" width="100%" height="100%"/> + <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="0" width="100%" height="100%"/> + </area> + <area condition="not{separator}" x="1%" width="9%" layer="3"> + <drawimage name="logo" imagetype="channellogo" path="{channelid}" width="90%" height="90%" align="center" valign="center" /> + </area> + <area condition="not{separator}" x="11%" width="39%" layer="3"> + <drawtext condition="not{current}" x="0" y="5%" font="{regular}" fontsize="35%" color="{clrGray}" text="{sourcedescription}, Transp. {transponder}" /> + <drawtext condition="{current}" x="0" y="5%" font="{regular}" fontsize="35%" color="{clrWhite}" text="{sourcedescription}, Transp. {transponder}" /> + </area> + <area condition="not{separator}" x="11%" width="39%" layer="3"> + <drawtext condition="not{current}" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrGray}" text="{number} {name}" /> + <drawtext condition="{current}" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrWhite}" text="{number} {name}" /> + </area> + <area condition="{separator}" x="1%" width="50%" layer="3"> + <drawtext x="0" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{name}" /> + </area> + </listelement> + <!-- additional element which is drawn for current element --> + <!-- Available Variables channels menu currentelement: + {menuitemx} x position of according menu item + {menuitemy} y position of according menu item + {menuitemwidth} width of according menu item + {menuitemheight} height of according menu item + {number} number of the displayed channel + {name} name of the displayed channel + {channellogoexists} true if a channel logo exists + {channelid} ChannelID as path to display channel logo + {transponder} Transponder of channel + {frequency} Frequency of channel + {source} Source of channel (S, C, T) + {sourcedescription} Descriptin of source from sources.conf + {position} orbital position of the satellite in case this is a DVB-S source + {isAtsc} true if channel is a ATSC channel + {isCable} true if channel is cable channel + {isSat} true if channel is a satellite channel + {isTerr} true if channel is terrestrical + {presenteventtitle} title of present event on this channel + {presenteventstart} present event start time in hh::mm + {presenteventstop} present event stop time in hh::mm + {presenteventshorttext} present event short text + {presenteventdescription} present event description + {presenteventday} present event name of day + {presenteventdate} present event date in dd:mm:yy + {presenteventelapsed} present event elapsed time + {presenteventduration} present event duration + {presenteventdurationhours} duration, full hours + {presenteventdurationminutes} duration, rest of minutes + {hasposter} true if a scraped poster is available for this elements present evemt + {posterwidth} width of scraped poster + {posterheight} height of scraped poster + {posterpath} absolute path of scraped poster + {nexteventtitle} title of next event on this channel + {nexteventstart} next event start time in hh::mm + {nexteventstop} next event event stop time in hh::mm + {nexteventshorttext} next event short text + {nexteventdescription} next event description + {nexteventday} next event name of day + {nexteventdate} next event date in dd:mm:yy + {nexteventduration} next event duration + {nexteventdurationhours} duration, full hours + {nexteventdurationminutes} duration, rest of minutes + {schedule[]} array with following 10 schedules + {schedule[title]} title of event + {schedule[shorttext]} shorttext of event + {schedule[start]} start time of event in hh:mm + {schedule[stop]} stop time of event in hh:mm + --> + <currentelement delay="500" fadetime="0"> + <area x="55%" y="52%" width="45%" height="48%" layer="2"> + <drawimage imagetype="skinpart" path="displaymenucurrentback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="55%" y="53%" width="44%" height="47%" layer="3"> + <drawimage name="logo" imagetype="channellogo" path="{channelid}" width="30%" height="30%" align="right" y="0" /> + </area> + <areascroll mode="forthandback" orientation="vertical" delay="1000" scrollspeed="medium" x="55%" y="52%" width="45%" height="48%" layer="4"> + <drawtext x="10" y="0" font="{semibold}" fontsize="15%" color="{clrWhite}" text="{tr(schedule)}:" /> + <loop name="schedule" x="0" y="16%" orientation="vertical"> + <drawtext x="10" font="{regular}" width="{areawidth}-20" fontsize="12%" color="{clrWhite}" text="{schedule[start]} - {schedule[title]}" /> + </loop> + </areascroll> + </currentelement> + + </menuitems> + +</menuchannels>
\ No newline at end of file diff --git a/skins/blackhole/xmlfiles/displaymenudefault.xml b/skins/blackhole/xmlfiles/displaymenudefault.xml new file mode 100644 index 0000000..a70d80a --- /dev/null +++ b/skins/blackhole/xmlfiles/displaymenudefault.xml @@ -0,0 +1,75 @@ +<menudefault x="0" y="0" width="100%" height="100%" fadetime="0"> + <background> + <area x="0" y="0" width="100%" height="100%" layer="1"> + <drawimage imagetype="skinpart" path="displaymenuback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="0" y="0" width="83%" height="8%" layer="2"> + <drawimage imagetype="skinpart" path="displaymenuheader" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="74%" y="0" width="26%" height="46%" layer="3"> + <drawimage imagetype="skinpart" path="displaymenucorner" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="{areawidth}*0.865" y="{areawidth}*0.005" width="13%" height="{areawidth}*0.13" layer="4"> + <drawimage imagetype="skinpart" path="watchback" x="0" y="0" width="100%" height="100%"/> + </area> + </background> + + <scrollbar> + <area x="97%" y="10%" width="2%" height="80%" layer="2"> + <drawimage imagetype="skinpart" path="scrollbarback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="97%" y="10%" width="2%" height="80%" layer="3"> + <drawimage imagetype="skinpart" path="scrollbar" x="0" y="{areaheight} * {offset} / 1000" width="100%" height="{areaheight} * {height} / 1000"/> + </area> + </scrollbar> + + <!-- IMPORTANT: menuitemwidth and determinatefont have to be defined here. menuitemwidth defines the total width of the + default menu items, determinatefont the function which sets the actual font to use. With that it is possible to determinate + the correct column widths --> + <menuitems x="1%" y="10%" orientation="vertical" width="95%" height="80%" align="center" menuitemwidth="94%" determinatefont="column1" numlistelements="16"> + <!-- Available Variables default menu listelement: + {nummenuitem} number of item in list, starts with 1 + {column1} text of column1 + {column2} text of column2 + {column3} text of column3 + {column4} text of column4 + {column5} text of column5 + {column6} text of column6 + {column2set} true if column2 is used + {column3set} true if column3 is used + {column4set} true if column4 is used + {column5set} true if column5 is used + {column6set} true if column6 is used + {column2x} proposed x value of column2 + {column3x} proposed x value of column3 + {column4x} proposed x value of column4 + {column5x} proposed x value of column5 + {column6x} proposed x value of column6 + {column1width} proposed width of column1 + {column2width} proposed width of column2 + {column3width} proposed width of column3 + {column4width} proposed width of column4 + {column5width} proposed width of column5 + {column6width} proposed width of column6 + {current} true if column is currently selected + {separator} true if column is a list separator + --> + <listelement> + <area x="0" width="100%" layer="2"> + <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="0" width="100%" height="100%"/> + <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="0" width="100%" height="100%"/> + </area> + <areascroll scrollelement="column1" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="1%" width="{column1width}" layer="3"> + <drawtext name="column1" x="{column1x}" width="{column1width}" valign="center" font="{regular}" fontsize="90%" color="{clrWhite}" text="{column1}" /> + </areascroll> + <area x="1%" width="100%" layer="3"> + <drawtext condition="{column2set}" x="{column2x}" valign="center" font="{regular}" fontsize="90%" width="{column2width}" color="{clrWhite}" text="{column2}" /> + <drawtext condition="{column3set}" x="{column3x}" valign="center" font="{regular}" fontsize="90%" width="{column3width}" color="{clrWhite}" text="{column3}" /> + <drawtext condition="{column4set}" x="{column4x}" valign="center" font="{regular}" fontsize="90%" width="{column4width}" color="{clrWhite}" text="{column4}" /> + <drawtext condition="{column5set}" x="{column5x}" valign="center" font="{regular}" fontsize="90%" width="{column5width}" color="{clrWhite}" text="{column5}" /> + <drawtext condition="{column6set}" x="{column6x}" valign="center" font="{regular}" fontsize="90%" width="{column6width}" color="{clrWhite}" text="{column6}" /> + </area> + </listelement> + + </menuitems> +</menudefault> diff --git a/skins/blackhole/xmlfiles/displaymenudetailepg.xml b/skins/blackhole/xmlfiles/displaymenudetailepg.xml new file mode 100644 index 0000000..e3bcf16 --- /dev/null +++ b/skins/blackhole/xmlfiles/displaymenudetailepg.xml @@ -0,0 +1,301 @@ +<menudetailedepg x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="55%" scaletvy="10%" scaletvwidth="40%" scaletvheight="40%" > + <header> + <area x="0" y="0" width="1" height="1" layer="1"> + <fill color="{clrTransparent}" /> + </area> + </header> + + + <scrollbar> + <area x="52%" y="10%" width="2%" height="80%" layer="2"> + <drawimage imagetype="skinpart" path="scrollbarback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="52%" y="10%" width="2%" height="80%" layer="3"> + <drawimage imagetype="skinpart" path="scrollbar" x="0" y="{areaheight} * {offset} / 1000" width="100%" height="{areaheight} * {height} / 1000"/> + </area> + </scrollbar> + + <!-- Available Variables in detailheader elements: + {title} title of event + {shorttext} shorttext of event + {start} event start time in hh::mm + {stop} event stop time + {day} Day of event as three letter abrivation + {date} date of current event in dd.mm.yy + {daynumeric} day as number + {month} month as number + {year} year as number + {running} true if event is currently running + {elapsed} elapsed time of event, if not running 0 + {duration} duration of event + {durationhours} duration, full hours + {durationminutes} duration, rest of minutes + {vps} vps description string + {channelname} Channelname of event + {channelnumber} Channelnumber of event + {channellogoexists} true if a channel logo exists + {channelid} ChannelID as path to display channel logo + {ismovie} true if event is scraped as a movie + {isseries} true if event is scraped as a series + {posteravailable} true if a poster is available + {posterwidth} width of scraped poster + {posterheight} height of scraped poster + {posterpath} absolute path of scraped poster + {banneravailable} true if a banner is available + {bannerwidth} width of banner + {bannerheight} height of banner + {bannerpath} path of banner + {epgpicavailable} true if a epg picture is available + {epgpicpath} path of epg picture + --> + <detailheader> + <area x="0" y="0" width="83%" height="8%" layer="3"> + <drawimage name="logo" imagetype="channellogo" path="{channelid}" x="1%" width="5%" height="90%" align="left" valign="center" /> + <drawtext x="{posx(logo)} + {width(logo)}+20" valign="center" font="{semibold}" fontsize="80%" color="{clrWhite}" text="{channelnumber} - {channelname}" /> + </area> + <area x="1%" y="10%" width="50%" height="80%" layer="2"> + <drawimage imagetype="skinpart" path="displaymendetailback" x="0" y="0" width="100%" height="100%" /> + </area> + <area x="55%" y="52%" width="43%" height="38%" layer="2"> + <drawimage imagetype="skinpart" path="displaymenucurrentback" x="0" y="0" width="100%" height="100%"/> + </area> + <area condition="not{ismovie}++not{isseries}" x="55%" y="52%" width="43%" height="20%" layer="3"> + <drawtext x="3%" y="15%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{day} {date} {start} - {stop} ({duration} mins)" /> + <drawtext x="3%" y="30%" width="96%" font="{semibold}" fontsize="30%" color="{clrWhite}" text="{title}" /> + <drawtext x="3%" y="60%" width="96%" font="{regular}" fontsize="20%" color="{clrWhite}" text="{shorttext}" /> + </area> + <area condition="{isseries}" x="55%" y="52%" width="43%" height="20%" layer="3"> + <drawimage name="banner" imagetype="image" path="{bannerpath}" align="center" y="1%" width="{areawidth}-20" height="{areawidth} * {bannerheight} / {bannerwidth}"/> + <drawtext name="datetime" x="3%" y="{posy(banner)} + {height(banner)}" font="{regular}" fontsize="15%" color="{clrWhite}" text="{day} {date} {start} - {stop} ({duration} mins)" /> + <drawtext x="3%" y="{posy(datetime)} + {height(datetime)}" width="96%" font="{semibold}" fontsize="30%" color="{clrWhite}" text="{title} - {shorttext}" /> + </area> + <area condition="{ismovie}" x="55%" y="52%" width="43%" height="20%" layer="3"> + <drawimage name="poster" imagetype="image" path="{posterpath}" x="1%" valign="center" width="{areaheight} * {posterwidth} / {posterheight}" height="{areaheight}-20"/> + <drawtext x="{posx(poster)} + {width(poster)} + 10" y="15%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{day} {date} {start} - {stop} ({duration} mins)" /> + <drawtext x="{posx(poster)} + {width(poster)} + 10" y="30%" width="{areawidth} - {posx(poster)} - {width(poster)} - 20" font="{semibold}" fontsize="30%" color="{clrWhite}" text="{title}" /> + <drawtext x="{posx(poster)} + {width(poster)} + 10" y="60%" width="{areawidth} - {posx(poster)} - {width(poster)} - 20" font="{regular}" fontsize="20%" color="{clrWhite}" text="{shorttext}" /> + </area> + <area x="56%" y="72%" width="41%" height="17%" layer="2"> + <drawimage imagetype="skinpart" path="tabback" x="0" y="0" width="100%" height="100%"/> + </area> + </detailheader> + + <!-- Available Variables in tab elements: + {title} title of event + {shorttext} shorttext of event + {description} description of event + {start} event start time in hh::mm + {stop} event stop time + {day} Day of event as three letter abrivation + {date} date of current event in dd.mm.yy + {daynumeric} day as number + {month} month as number + {year} year as number + {running} true if event is currently running + {elapsed} elapsed time of event, if not running 0 + {duration} duration of event + {durationhours} duration, full hours + {durationminutes} duration, rest of minutes + {vps} vps description string + {channellogoexists} true if a channel logo exists + {channelid} ChannelID as path to display channel logo + {hasreruns} true if reruns of this event are found + {reruns[]} array with reruns + {reruns[title]} title of rerun + {reruns[shorttext]} shorttext of rerun + {reruns[date]} date of rerun in dd:mm + {reruns[day]} short dayname of rerun + {reruns[start]} start time of rerun in hh:mm + {reruns[stop]} stop time of rerun in hh:mm + {reruns[channelname]} name of channel on which rerun occurs + {reruns[channelnumber]} number of channel on which rerun occurs + {reruns[channelid]} id of channel on which rerun occurs to display channel logo + {reruns[channellogoexists]} true if channel logo exists + {epgpic1avaialble} true if first epg picture is available + {epgpic2avaialble} true if first epg picture is available + {epgpic3avaialble} true if first epg picture is available + {epgpic1path} path of first epg picture + {epgpic2path} path of second epg picture + {epgpic3path} path of third epg picture + + {ismovie} true if event is scraped as a movie + Available variables for movies: + {movietitle} movie title from themoviedb + {movieoriginalTitle} movie original title from themoviedb + {movietagline} movie tagline from themoviedb + {movieoverview} movie overview from themoviedb + {movieadult} true if movie is rated as adult + {moviebudget} movie budget from themoviedb in $ + {movierevenue} movie revenue from themoviedb in $ + {moviegenres} movie genres from themoviedb + {moviehomepage} movie homepage from themoviedb + {moviereleasedate} movie release date from themoviedb + {movieruntime} movie runtime from themoviedb + {moviepopularity} movie popularity from themoviedb + {movievoteaverage} movie vote average from themoviedb + {posterwidth} width of scraped poster + {posterheight} height of scraped poster + {posterpath} absolute path of scraped poster + {fanartwidth} width of scraped fanart + {fanartheight} height of scraped fanart + {fanartpath} absolute path of scraped fanart + {movieiscollection} true if movie is part of a collection + {moviecollectionName} name of movie collection + {collectionposterwidth} width of scraped collection poster + {collectionposterheight} height of scraped collection poster + {collectionposterpath} absolute path of scraped collection poster + {collectionfanartwidth} width of scraped collection fanart + {collectionfanartheight} height of scraped collection fanart + {collectionfanartpath} absolute path of scraped collection fanart + {actors[]} array with movie actors + {actors[name]} real name of actor + {actors[role]} actor role + {actors[thumb]} absolute path of scraped actor thumb + {actors[thumbwidth]} width of scraped actor thumb + {actors[thumbheight]} height of scraped actor thumb + + {isseries} true if event is scraped as a series + Available variables for series: + {seriesname} name of series + {seriesoverview} series overview + {seriesfirstaired} first aired date + {seriesnetwork} network which produces series + {seriesgenre} series genre + {seriesrating} series thetvdb rating + {seriesstatus} status of series (running / finished) + {episodetitle} title of episode + {episodenumber} number of episode + {episodeseason} season of episode + {episodefirstaired} first aired date of episode + {episodegueststars} guest stars of episode + {episodeoverview} episode overview + {episoderating} user rating for episode + {episodeimagewidth} episode image width + {episodeimageheight} episode image height + {episodeimagepath} episode image path + {seasonposterwidth} episode season poster width + {seasonposterheight} episode season poster height + {seasonposterpath} episode season poster path + {seriesposter1width} width of 1st poster + {seriesposter1height} height of 1st poster + {seriesposter1path} path of 1st poster + {seriesposter2width} width of 2nd poster + {seriesposter2height} height of 2nd poster + {seriesposter2path} path of 2nd poster + {seriesposter3width} width of 3rd poster + {seriesposter3height} height of 3rd poster + {seriesposter3path} path of 3rd poster + {seriesfanart1width} width of 1st fanart + {seriesfanart1height} height of 1st fanart + {seriesfanart1path} path of 1st fanart + {seriesfanart2width} width of 2nd fanart + {seriesfanart2height} height of 2nd fanart + {seriesfanart2path} path of 2nd fanart + {seriesfanart3width} width of 3rd fanart + {seriesfanart3height} height of 3rd fanart + {seriesfanart3path} path of 3rd fanart + {seriesbanner1width} width of 1st banner + {seriesbanner1height} height of 1st banner + {seriesbanner1path} path of 1st banner + {seriesbanner2width} width of 2nd banner + {seriesbanner2height} height of 2nd banner + {seriesbanner2path} path of 2nd banner + {seriesbanner3width} width of 3rd banner + {seriesbanner3height} height of 3rd banner + {seriesbanner3path} path of 3rd fanart + {actors[]} array with movie actors + {actors[name]} real name of actor + {actors[role]} actor role + {actors[thumb]} absolute path of scraped actor thumb + {actors[thumbwidth]} width of scraped actor thumb + {actors[thumbheight]} height of scraped actor thumb + --> + + <!-- a tab is one scrolling area, just position and draw as inside a normal area --> + <!-- just define as many tabs as needed --> + + <!-- TAB EPGINFO --> + <tab name="EPG Info" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> + <drawtext x="0" y="0" font="{semibold}" fontsize="6%" color="{clrWhite}" text="{day} {date} {start} - {stop} ({duration} mins)" /> + <drawtext x="0" y="6%" width="100%" font="{semibold}" fontsize="8%" color="{clrWhite}" text="{title}" /> + <drawtext x="0" y="14%" width="100%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{shorttext}" /> + + <drawtextbox condition="not{isseries}++not{ismovie}" x="0" y="20%" width="96%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{description}" /> + <drawimage condition="{isseries}" name="seriesposter" imagetype="image" path="{seriesposter1path}" x="{areawidth}*0.6" y="20%" width="{areawidth}*0.4" height="{areawidth} * 0.4 * {seriesposter1height} / {seriesposter1width}"/> + <drawimage condition="{ismovie}" name="movieposter" imagetype="image" path="{posterpath}" x="{areawidth}*0.6" y="20%" width="{areawidth}*0.4" height="{areawidth} * 0.4 * {posterheight} / {posterwidth}" /> + <drawtextbox condition="{isseries}" x="0" y="20%" width="96%" float="topright" floatwidth="{width(seriesposter)} + 10" floatheight="{height(seriesposter)} + 20" font="{regular}" fontsize="6%" color="{clrWhite}" text="{description}" /> + <drawtextbox condition="{ismovie}" x="0" y="20%" width="96%" float="topright" floatwidth="{width(movieposter)} + 10" floatheight="{height(movieposter)} + 20" font="{regular}" fontsize="6%" color="{clrWhite}" text="{description}" /> + + </tab> + <!-- TAB RERUNS --> + <tab name="{tr(reruns)}" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> + <drawtext align="center" y="0" width="100%" name="title" font="{semibold}" fontsize="6%" color="{clrWhite}" text="{tr(rerunsof)} '{title}'" /> + <loop name="reruns" x="0" y="{height(title)} + 10" width="{areawidth}" orientation="vertical"> + <drawimage name="logo" condition="{reruns[channellogoexists]}" imagetype="channellogo" path="{reruns[channelid]}" x="0" width="10%" height="10%" /> + <drawtext name="channelname" condition="not{reruns[channellogoexists]}" x="0" y="2%" font="{regular}" fontsize="5%" color="{clrWhite}" text="{reruns[channelname]}" /> + <drawtext condition="{reruns[channellogoexists]}" x="{width(logo)}+20" y="0" width="{areawidth} - {width(logo)} - 20" font="{regular}" fontsize="5%" color="{clrWhite}" text="{reruns[day]} {reruns[date]} {reruns[start]} - {reruns[stop]}" /> + <drawtext condition="{reruns[channellogoexists]}" x="{width(logo)}+20" y="4%" width="{areawidth} - {width(logo)} - 20" font="{semibold}" fontsize="5%" color="{clrWhite}" text="{reruns[title]} {reruns[shorttext]}" /> + <drawtext condition="not{reruns[channellogoexists]}" x="{width(channelname)}+20" y="0" width="{areawidth} - {width(logo)} - 20" font="{regular}" fontsize="5%" color="{clrWhite}" text="{reruns[day]} {reruns[date]} {reruns[start]} - {reruns[stop]}" /> + <drawtext condition="not{reruns[channellogoexists]}" x="{width(channelname)}+20" y="4%" width="{areawidth} - {width(logo)} - 20" font="{semibold}" fontsize="5%" color="{clrWhite}" text="{reruns[title]} {reruns[shorttext]}" /> + </loop> + </tab> + <!-- TAB ACTORS --> + <tab condition="{isseries}||{ismovie}" name="{tr(actors)}" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> + <drawtext align="center" name="title" y="0" font="{semibold}" fontsize="15%" color="{clrWhite}" text="{tr(actors)}" /> + <loop name="actors" x="0" y="{height(title)} + 10" width="{areawidth}" orientation="horizontal" columnwidth="{areawidth}*0.3" rowheight="{areawidth}*0.3*1.8" overflow="linewrap"> + <drawimage name="thumb" imagetype="image" path="{actors[thumb]}" x="20" y="0" width="{columnwidth}-40" height="{columnwidth} * {actors[thumbheight]} / {actors[thumbwidth]} - 40 * {actors[thumbheight]} / {actors[thumbwidth]}"/> + <drawtext align="center" y="{height(thumb)} + 10" width="{columnwidth}" name="actorname" font="{regular}" fontsize="7%" color="{clrWhite}" text="{actors[name]}" /> + <drawtext align="center" y="{height(thumb)} + 10 + {height(actorname)}" width="{columnwidth}" font="{regular}" fontsize="7%" color="{clrWhite}" text="{actors[role]}" /> + </loop> + </tab> + <!-- TAB TVDBINFO --> + <tab condition="{isseries}" name="TvDBInfo" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> + <drawimage name="banner" imagetype="image" path="{seriesbanner1path}" align="center" y="10" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {seriesbanner1height} / {seriesbanner1width}"/> + <drawimage name="episodeimage" imagetype="image" path="{episodeimagepath}" x="{areawidth}*0.7" y="{height(banner)} + 20" width="{areawidth}*0.3" height="{areawidth} * 0.3 * {episodeimageheight} / {episodeimagewidth}"/> + <drawimage name="seasonposter" imagetype="image" path="{seasonposterpath}" x="{areawidth}*0.7" y="{height(banner)} + {height(episodeimage)} + 30" width="{areawidth}*0.3" height="{areawidth} * 0.3 * {seasonposterheight} / {seasonposterwidth}"/> + <drawtextbox x="0" y="{height(banner)} + 20" width="96%" float="topright" floatwidth="{width(seasonposter)} + 10" floatheight="{height(episodeimage)} + {height(seasonposter)} + 30" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(episode)}: {episodetitle} ({tr(season)} {episodeseason}, {tr(episode)} {episodenumber}) {episodeoverview}| {tr(gueststars)}: {episodegueststars}|| {tr(seriesfirstaired)}: {seriesfirstaired}|| {tr(episodefirstaired)}: {episodefirstaired}|| {tr(network)}: {seriesnetwork}|| {tr(genre)}: {seriesgenre}|| {tr(status)}: {seriesstatus}|| {tr(rating)}: {seriesrating}|| {tr(episoderating)}: {episoderating} |{seriesoverview} " /> + </tab> + <!-- TAB SERIESGALERY --> + <tab condition="{isseries}" name="{tr(seriesgalery)}" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> + <drawimage name="banner1" imagetype="image" path="{seriesbanner1path}" align="center" y="10" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {seriesbanner1height} / {seriesbanner1width}"/> + <drawimage name="fanart1" imagetype="image" path="{seriesfanart1path}" align="center" y="{posy(banner1)} + {height(banner1)} + 20" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {seriesfanart1height} / {seriesfanart1width}"/> + <drawimage name="banner2" imagetype="image" path="{seriesbanner2path}" align="center" y="{posy(fanart1)} + {height(fanart1)} + 20" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {seriesbanner2height} / {seriesbanner2width}"/> + <drawimage name="fanart2" imagetype="image" path="{seriesfanart2path}" align="center" y="{posy(banner2)} + {height(banner2)} + 20" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {seriesfanart2height} / {seriesfanart2width}"/> + <drawimage name="banner3" imagetype="image" path="{seriesbanner3path}" align="center" y="{posy(fanart2)} + {height(fanart2)} + 20" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {seriesbanner3height} / {seriesbanner3width}"/> + <drawimage name="fanart3" imagetype="image" path="{seriesfanart3path}" align="center" y="{posy(banner3)} + {height(banner3)} + 20" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {seriesfanart3height} / {seriesfanart3width}"/> + <drawimage name="poster1" imagetype="image" path="{seriesposter1path}" align="center" y="{posy(fanart3)} + {height(fanart3)} + 20" width="{areawidth}*0.5" height="{areawidth} * 0.5 * {seriesposter1height} / {seriesposter1width}"/> + <drawimage name="poster2" imagetype="image" path="{seriesposter2path}" align="center" y="{posy(poster1)} + {height(poster1)} + 20" width="{areawidth}*0.5" height="{areawidth} * 0.5 * {seriesposter2height} / {seriesposter2width}"/> + <drawimage name="poster3" imagetype="image" path="{seriesposter3path}" align="center" y="{posy(poster2)} + {height(poster2)} + 20" width="{areawidth}*0.5" height="{areawidth} * 0.5 * {seriesposter3height} / {seriesposter3width}"/> + </tab> + <!-- TAB MOVIEDBINFO --> + <tab condition="{ismovie}" name="MovieDBInfo" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> + <drawimage name="poster" imagetype="image" path="{posterpath}" x="70%" y="10" width="{areawidth}*0.3" height="{areawidth} * 0.3 * {posterheight} / {posterwidth}"/> + <drawtextbox x="0" y="10" width="96%" float="topright" floatwidth="{width(poster)} + 10" floatheight="{height(poster)} + 20" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(originaltitle)}: {movieoriginalTitle} |{tr(genre)}: {moviegenres} ||{movietagline} |{movieoverview} |{tr(budget)}: {moviebudget} ||{tr(revenue)}: {movierevenue} ||{tr(adult)}: {movieadult} ||{tr(releasedate)}: {moviereleasedate} ||{tr(runtime)}: {movieruntime} min || {tr(popularity)}: {moviepopularity} || {tr(voteaverage)}: {movievoteaverage} || {tr(homepage)}: {moviehomepage}| " /> + </tab> + <!-- TAB MOVIEGALERY --> + <tab condition="{ismovie}" name="{tr(moviegalery)}" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> + <drawimage name="fanart" imagetype="image" path="{fanartpath}" align="center" y="10" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {fanartheight} / {fanartwidth}"/> + <drawimage name="poster" imagetype="image" path="{posterpath}" align="center" y="{height(fanart)} + 30" width="{areawidth}*0.6" height="{areawidth} * 0.6 * {posterheight} / {posterwidth}"/> + <drawimage condition="{movieiscollection}" name="collectionfanart" imagetype="image" path="{collectionfanartpath}" align="center" y="{posy(poster)} + {height(poster)} + 20" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {collectionfanartheight} / {collectionfanartwidth}"/> + <drawimage condition="{movieiscollection}" name="collectionposter" imagetype="image" path="{collectionposterpath}" align="center" y="{posy(collectionfanart)} + {height(collectionfanart)} + 20" width="{areawidth}*0.6" height="{areawidth} * 0.6 * {collectionposterheight} / {collectionposterwidth}"/> + </tab> + <!-- Available Variables tablabels: + {currenttab} name of currently active tab + {prevtab} name of prev tab + {nexttab} name of next tab + {tabs[]} array with available tab labels + {tabs[title]} title of tab + {tabs[current]} true if tab is displayed currently + --> + <tablabels> + <area x="56%" y="72%" width="41%" height="9%" layer="3"> + <drawtext align="center" y="0" width="100%" font="{semibold}" fontsize="100%" color="{clrWhite}" text="{currenttab}" /> + </area> + <area x="56%" y="81%" width="18%" height="8%" layer="3"> + <drawtext align="center" valign="center" width="100%" font="{regular}" fontsize="60%" color="{clrGray}" text="{prevtab}" /> + </area> + <area x="79%" y="81%" width="17%" height="8%" layer="3"> + <drawtext align="center" valign="center" width="100%" font="{regular}" fontsize="60%" color="{clrGray}" text="{nexttab}" /> + </area> + </tablabels> +</menudetailedepg>
\ No newline at end of file diff --git a/skins/blackhole/xmlfiles/displaymenudetailrecording.xml b/skins/blackhole/xmlfiles/displaymenudetailrecording.xml new file mode 100644 index 0000000..988372f --- /dev/null +++ b/skins/blackhole/xmlfiles/displaymenudetailrecording.xml @@ -0,0 +1,260 @@ +<menudetailedrecording x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="55%" scaletvy="10%" scaletvwidth="40%" scaletvheight="40%" > + + <scrollbar> + <area x="52%" y="10%" width="2%" height="80%" layer="2"> + <drawimage imagetype="skinpart" path="scrollbarback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="52%" y="10%" width="2%" height="80%" layer="3"> + <drawimage imagetype="skinpart" path="scrollbar" x="0" y="{areaheight} * {offset} / 1000" width="100%" height="{areaheight} * {height} / 1000"/> + </area> + </scrollbar> + + <!-- Available Variables in detailheader elements: + {name} name of recording + {shorttext} shorttext of recording + {date} date of recording in dd.mm.yy + {time} time of current recording in hh:mm + {daynumeric} day as number + {month} month as number + {year} year as number + {duration} real duration of recording in minutes + {durationhours} real duration, full hours + {durationminutes} real duration, rest of minutes + {durationevent} duration of corresponding event in minutes + {durationeventhours} event duration, full hours + {durationeventminutes} event duration, rest of minutes + {ismovie} true if event is scraped as a movie + {isseries} true if event is scraped as a series + {posteravailable} true if a poster is available + {posterwidth} width of scraped poster + {posterheight} height of scraped poster + {posterpath} absolute path of scraped poster + {banneravailable} true if a banner is available + {bannerwidth} width of banner + {bannerheight} height of banner + {bannerpath} path of banner + {recimgavailable} true if a recording image is available in the recording path + {recimgpath} path of rec image + --> + <detailheader> + <area x="1%" y="10%" width="50%" height="80%" layer="2"> + <drawimage imagetype="skinpart" path="displaymendetailback" x="0" y="0" width="100%" height="100%" /> + </area> + <area x="55%" y="52%" width="43%" height="38%" layer="2"> + <drawimage imagetype="skinpart" path="displaymenucurrentback" x="0" y="0" width="100%" height="100%"/> + </area> + <area condition="not{ismovie}++not{isseries}" x="55%" y="52%" width="43%" height="20%" layer="3"> + <drawtext x="3%" y="15%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{date} {time} ({duration} mins)" /> + <drawtext x="3%" y="30%" width="96%" font="{semibold}" fontsize="30%" color="{clrWhite}" text="{name}" /> + <drawtext x="3%" y="60%" width="96%" font="{regular}" fontsize="20%" color="{clrWhite}" text="{shorttext}" /> + </area> + <area condition="{isseries}" x="55%" y="52%" width="43%" height="20%" layer="3"> + <drawimage name="banner" imagetype="image" path="{bannerpath}" align="center" y="1%" width="{areawidth}-20" height="{areawidth} * {bannerheight} / {bannerwidth}"/> + <drawtext name="datetime" x="3%" y="{posy(banner)} + {height(banner)}" font="{regular}" fontsize="15%" color="{clrWhite}" text="{date} {time} ({duration} mins)" /> + <drawtext x="3%" y="{posy(datetime)} + {height(datetime)}" width="96%" font="{semibold}" fontsize="30%" color="{clrWhite}" text="{name} - {shorttext}" /> + </area> + <area condition="{ismovie}" x="55%" y="52%" width="43%" height="20%" layer="3"> + <drawimage name="poster" imagetype="image" path="{posterpath}" x="1%" valign="center" width="{areaheight} * {posterwidth} / {posterheight}" height="{areaheight}-20"/> + <drawtext x="{posx(poster)} + {width(poster)} + 10" y="15%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{date} {time} ({duration} mins)" /> + <drawtext x="{posx(poster)} + {width(poster)} + 10" y="30%" width="{areawidth} - {posx(poster)} - {width(poster)} - 20" font="{semibold}" fontsize="30%" color="{clrWhite}" text="{name}" /> + <drawtext x="{posx(poster)} + {width(poster)} + 10" y="60%" width="{areawidth} - {posx(poster)} - {width(poster)} - 20" font="{regular}" fontsize="20%" color="{clrWhite}" text="{shorttext}" /> + </area> + <area x="56%" y="72%" width="41%" height="17%" layer="2"> + <drawimage imagetype="skinpart" path="tabback" x="0" y="0" width="100%" height="100%"/> + </area> + </detailheader> + <!-- Available Variables in tab elements: + {name} title of recording + {shorttext} shorttext of recording + {description} description of recording + {date} date of recording in dd.mm.yy + {time} time of current recording in hh:mm + {daynumeric} day as number + {month} month as number + {year} year as number + {duration} real duration of recording in minutes + {durationhours} real duration, full hours + {durationminutes} real duration, rest of minutes + {durationevent} duration of corresponding event in minutes + {durationeventhours} event duration, full hours + {durationeventminutes} event duration, rest of minutes + + {recordingsize} size of recording (automatically in GB / MB) + {recordingsizecutted} size of cutted recording (automatically in GB / MB) + {recordinglength} length of recording (in hh::mm:ss) + {recordinglengthcutted} length of cutted recording (in hh::mm:ss) + {recordingbitrate} bitrate of recording (in MBit/s) + {recordingformat} format of recording (TS / PS) + {searchtimer} name of accordign searchtimer (if available) + + {recimg1avaialble} true if first recording image is available + {recimg2avaialble} true if first recording image is available + {recimg3avaialble} true if first recording image is available + {recimg1path} path of first recording image + {recimg2path} path of second recording image + {recimg3path} path of third recording image + + {ismovie} true if event is scraped as a movie + Available variables for movies: + {movietitle} movie title from themoviedb + {movieoriginalTitle} movie original title from themoviedb + {movietagline} movie tagline from themoviedb + {movieoverview} movie overview from themoviedb + {movieadult} true if movie is rated as adult + {moviebudget} movie budget from themoviedb in $ + {movierevenue} movie revenue from themoviedb in $ + {moviegenres} movie genres from themoviedb + {moviehomepage} movie homepage from themoviedb + {moviereleasedate} movie release date from themoviedb + {movieruntime} movie runtime from themoviedb + {moviepopularity} movie popularity from themoviedb + {movievoteaverage} movie vote average from themoviedb + {posterwidth} width of scraped poster + {posterheight} height of scraped poster + {posterpath} absolute path of scraped poster + {fanartwidth} width of scraped fanart + {fanartheight} height of scraped fanart + {fanartpath} absolute path of scraped fanart + {movieiscollection} true if movie is part of a collection + {moviecollectionName} name of movie collection + {collectionposterwidth} width of scraped collection poster + {collectionposterheight} height of scraped collection poster + {collectionposterpath} absolute path of scraped collection poster + {collectionfanartwidth} width of scraped collection fanart + {collectionfanartheight} height of scraped collection fanart + {collectionfanartpath} absolute path of scraped collection fanart + {actors[]} array with movie actors + {actors[name]} real name of actor + {actors[role]} actor role + {actors[thumb]} absolute path of scraped actor thumb + {actors[thumbwidth]} width of scraped actor thumb + {actors[thumbheight]} height of scraped actor thumb + + {isseries} true if event is scraped as a series + Available variables for series: + {seriesname} name of series + {seriesoverview} series overview + {seriesfirstaired} first aired date + {seriesnetwork} network which produces series + {seriesgenre} series genre + {seriesrating} series thetvdb rating + {seriesstatus} status of series (running / finished) + {episodetitle} title of episode + {episodenumber} number of episode + {episodeseason} season of episode + {episodefirstaired} first aired date of episode + {episodegueststars} guest stars of episode + {episodeoverview} episode overview + {episoderating} user rating for episode + {episodeimagewidth} episode image width + {episodeimageheight} episode image height + {episodeimagepath} episode image path + {seasonposterwidth} episode season poster width + {seasonposterheight} episode season poster height + {seasonposterpath} episode season poster path + {seriesposter1width} width of 1st poster + {seriesposter1height} height of 1st poster + {seriesposter1path} path of 1st poster + {seriesposter2width} width of 2nd poster + {seriesposter2height} height of 2nd poster + {seriesposter2path} path of 2nd poster + {seriesposter3width} width of 3rd poster + {seriesposter3height} height of 3rd poster + {seriesposter3path} path of 3rd poster + {seriesfanart1width} width of 1st fanart + {seriesfanart1height} height of 1st fanart + {seriesfanart1path} path of 1st fanart + {seriesfanart2width} width of 2nd fanart + {seriesfanart2height} height of 2nd fanart + {seriesfanart2path} path of 2nd fanart + {seriesfanart3width} width of 3rd fanart + {seriesfanart3height} height of 3rd fanart + {seriesfanart3path} path of 3rd fanart + {seriesbanner1width} width of 1st banner + {seriesbanner1height} height of 1st banner + {seriesbanner1path} path of 1st banner + {seriesbanner2width} width of 2nd banner + {seriesbanner2height} height of 2nd banner + {seriesbanner2path} path of 2nd banner + {seriesbanner3width} width of 3rd banner + {seriesbanner3height} height of 3rd banner + {seriesbanner3path} path of 3rd fanart + {actors[]} array with movie actors + {actors[name]} real name of actor + {actors[role]} actor role + {actors[thumb]} absolute path of scraped actor thumb + {actors[thumbwidth]} width of scraped actor thumb + {actors[thumbheight]} height of scraped actor thumb + --> + + <!-- a tab is one scrolling area, just position and draw as inside a normal area --> + <!-- just define as many tabs as needed --> + <tab name="Info" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> + <drawtext x="0" y="0" font="{semibold}" fontsize="6%" color="{clrWhite}" text="{date} {time} ({duration} mins)" /> + <drawtext x="0" y="6%" font="{semibold}" fontsize="8%" color="{clrWhite}" text="{name}" /> + <drawtext x="0" y="14%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{shorttext}" /> + <drawtextbox condition="not{isseries}++not{ismovie}" x="0" y="20%" width="96%" font="{regular}" fontsize="8%" color="{clrWhite}" text="{description}" /> + <drawimage condition="{isseries}" name="seriesposter" imagetype="image" path="{seriesposter1path}" x="{areawidth}*0.7" y="20%" width="{areawidth}*0.3" height="{areawidth} * 0.3 * {seriesposter1height} / {seriesposter1width}"/> + <drawimage condition="{ismovie}" name="movieposter" imagetype="image" path="{posterpath}" x="{areawidth}*0.7" y="20%" width="{areawidth}*0.3" height="{areawidth} * 0.3 * {posterheight} / {posterwidth}" /> + <drawtextbox condition="{isseries}" x="0" y="20%" width="96%" float="topright" floatwidth="{width(seriesposter)} + 10" floatheight="{height(seriesposter)} + 20" font="{regular}" fontsize="6%" color="{clrWhite}" text="{description}" /> + <drawtextbox condition="{ismovie}" x="0" y="20%" width="96%" float="topright" floatwidth="{width(movieposter)} + 10" floatheight="{height(movieposter)} + 20" font="{regular}" fontsize="6%" color="{clrWhite}" text="{description}" /> + </tab> + <tab name="{tr(recinfo)}" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> + <drawtext align="center" y="0" name="title" font="{regular}" fontsize="8%" color="{clrWhite}" text="{tr(recinfo)}" /> + <drawtextbox x="0" y="{height(title)} + 20" width="96%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(recsize)}: {recordingsize} {tr(recsizecutted)}: {recordingsizecutted} {tr(reclength)}: {recordinglength} {tr(reclengthcutted)}: {recordinglengthcutted} {tr(bitrate)}: {recordingbitrate} {tr(format)}: {recordingformat} {tr(searchtimer)}: {searchtimer} " /> + </tab> + <tab condition="{isseries}||{ismovie}" name="{tr(actors)}" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> + <drawtext align="center" name="title" y="0" font="{semibold}" fontsize="10%" color="{clrWhite}" text="{tr(actors)}" /> + <loop name="actors" x="0" y="{height(title)} + 10" width="{areawidth}" orientation="horizontal" columnwidth="{areawidth}*0.3" rowheight="{areawidth}*0.3*1.8" overflow="linewrap"> + <drawimage name="thumb" imagetype="image" path="{actors[thumb]}" x="20" y="0" width="{columnwidth}-40" height="{columnwidth} * {actors[thumbheight]} / {actors[thumbwidth]} - 40 * {actors[thumbheight]} / {actors[thumbwidth]}"/> + <drawtext align="center" y="{height(thumb)} + 10" width="{columnwidth}" name="actorname" font="{regular}" fontsize="5%" color="{clrWhite}" text="{actors[name]}" /> + <drawtext align="center" y="{height(thumb)} + 10 + {height(actorname)}" width="{columnwidth}" font="{regular}" fontsize="5%" color="{clrWhite}" text="{actors[role]}" /> + </loop> + </tab> + <tab condition="{isseries}" name="TvDBInfo" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> + <drawimage name="banner" imagetype="image" path="{seriesbanner1path}" align="center" y="10" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {seriesbanner1height} / {seriesbanner1width}"/> + <drawimage name="episodeimage" imagetype="image" path="{episodeimagepath}" x="{areawidth}*0.7" y="{height(banner)} + 20" width="{areawidth}*0.3" height="{areawidth} * 0.3 * {episodeimageheight} / {episodeimagewidth}"/> + <drawimage name="seasonposter" imagetype="image" path="{seasonposterpath}" x="{areawidth}*0.7" y="{height(banner)} + {height(episodeimage)} + 30" width="{areawidth}*0.3" height="{areawidth} * 0.3 * {seasonposterheight} / {seasonposterwidth}"/> + <drawtextbox x="0" y="{height(banner)} + 20" width="96%" float="topright" floatwidth="{width(seasonposter)} + 10" floatheight="{height(episodeimage)} + {height(seasonposter)} + 30" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(episode)}: {episodetitle} ({tr(season)} {episodeseason}, {tr(episode)} {episodenumber}) {episodeoverview}| {tr(gueststars)}: {episodegueststars}|| {tr(seriesfirstaired)}: {seriesfirstaired}|| {tr(episodefirstaired)}: {episodefirstaired}|| {tr(network)}: {seriesnetwork}|| {tr(genre)}: {seriesgenre}|| {tr(status)}: {seriesstatus}|| {tr(rating)}: {seriesrating}|| {tr(episoderating)}: {episoderating} |{seriesoverview} " /> + </tab> + <tab condition="{isseries}" name="{tr(seriesgalery)}" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> + <drawimage name="banner1" imagetype="image" path="{seriesbanner1path}" align="center" y="10" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {seriesbanner1height} / {seriesbanner1width}"/> + <drawimage name="fanart1" imagetype="image" path="{seriesfanart1path}" align="center" y="{posy(banner1)} + {height(banner1)} + 20" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {seriesfanart1height} / {seriesfanart1width}"/> + <drawimage name="banner2" imagetype="image" path="{seriesbanner2path}" align="center" y="{posy(fanart1)} + {height(fanart1)} + 20" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {seriesbanner2height} / {seriesbanner2width}"/> + <drawimage name="fanart2" imagetype="image" path="{seriesfanart2path}" align="center" y="{posy(banner2)} + {height(banner2)} + 20" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {seriesfanart2height} / {seriesfanart2width}"/> + <drawimage name="banner3" imagetype="image" path="{seriesbanner3path}" align="center" y="{posy(fanart2)} + {height(fanart2)} + 20" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {seriesbanner3height} / {seriesbanner3width}"/> + <drawimage name="fanart3" imagetype="image" path="{seriesfanart3path}" align="center" y="{posy(banner3)} + {height(banner3)} + 20" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {seriesfanart3height} / {seriesfanart3width}"/> + <drawimage name="poster1" imagetype="image" path="{seriesposter1path}" align="center" y="{posy(fanart3)} + {height(fanart3)} + 20" width="{areawidth}*0.5" height="{areawidth} * 0.5 * {seriesposter1height} / {seriesposter1width}"/> + <drawimage name="poster2" imagetype="image" path="{seriesposter2path}" align="center" y="{posy(poster1)} + {height(poster1)} + 20" width="{areawidth}*0.5" height="{areawidth} * 0.5 * {seriesposter2height} / {seriesposter2width}"/> + <drawimage name="poster3" imagetype="image" path="{seriesposter3path}" align="center" y="{posy(poster2)} + {height(poster2)} + 20" width="{areawidth}*0.5" height="{areawidth} * 0.5 * {seriesposter3height} / {seriesposter3width}"/> + </tab> + <tab condition="{ismovie}" name="MovieDBInfo" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> + <drawimage name="poster" imagetype="image" path="{posterpath}" x="70%" y="10" width="{areawidth}*0.3" height="{areawidth} * 0.3 * {posterheight} / {posterwidth}"/> + <drawtextbox x="0" y="10" width="96%" float="topright" floatwidth="{width(poster)} + 10" floatheight="{height(poster)} + 20" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(originaltitle)}: {movieoriginalTitle} |{tr(genre)}: {moviegenres} ||{movietagline} |{movieoverview} |{tr(budget)}: {moviebudget}$ ||{tr(revenue)}: {movierevenue}$ ||{tr(adult)}: {movieadult} ||{tr(releasedate)}: {moviereleasedate} ||{tr(runtime)}: {movieruntime} min || {tr(popularity)}: {moviepopularity} || {tr(voteaverage)}: {movievoteaverage} || {tr(homepage)}: {moviehomepage}| " /> + </tab> + <tab condition="{ismovie}" name="{tr(moviegalery)}" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> + <drawimage name="fanart" imagetype="image" path="{fanartpath}" align="center" y="10" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {fanartheight} / {fanartwidth}"/> + <drawimage name="poster" imagetype="image" path="{posterpath}" align="center" y="{height(fanart)} + 30" width="{areawidth}*0.6" height="{areawidth} * 0.6 * {posterheight} / {posterwidth}"/> + <drawimage condition="{movieiscollection}" name="collectionfanart" imagetype="image" path="{collectionfanartpath}" align="center" y="{posy(poster)} + {height(poster)} + 20" width="{areawidth}*0.9" height="{areawidth} * 0.9 * {collectionfanartheight} / {collectionfanartwidth}"/> + <drawimage condition="{movieiscollection}" name="collectionposter" imagetype="image" path="{collectionposterpath}" align="center" y="{posy(collectionfanart)} + {height(collectionfanart)} + 20" width="{areawidth}*0.6" height="{areawidth} * 0.6 * {collectionposterheight} / {collectionposterwidth}"/> + </tab> <!-- Available Variables tablabels: + {currenttab} name of currently active tab + {prevtab} name of prev tab + {nexttab} name of next tab + {tabs[]} array with available tab labels + {tabs[title]} title of tab + {tabs[current]} true if tab is displayed currently + --> + <tablabels> + <area x="56%" y="72%" width="41%" height="9%" layer="3"> + <drawtext align="center" y="0" width="100%" font="{semibold}" fontsize="100%" color="{clrWhite}" text="{currenttab}" /> + </area> + <area x="56%" y="81%" width="18%" height="8%" layer="3"> + <drawtext align="center" valign="center" width="100%" font="{regular}" fontsize="60%" color="{clrGray}" text="{prevtab}" /> + </area> + <area x="79%" y="81%" width="17%" height="8%" layer="3"> + <drawtext align="center" valign="center" width="100%" font="{regular}" fontsize="60%" color="{clrGray}" text="{nexttab}" /> + </area> + </tablabels> + +</menudetailedrecording> diff --git a/skins/blackhole/xmlfiles/displaymenudetailtext.xml b/skins/blackhole/xmlfiles/displaymenudetailtext.xml new file mode 100644 index 0000000..84bf634 --- /dev/null +++ b/skins/blackhole/xmlfiles/displaymenudetailtext.xml @@ -0,0 +1,37 @@ +<menudetailedtext x="0" y="0" width="100%" height="100%" fadetime="0"> + + <background> + <area x="0" y="0" width="100%" height="100%" layer="1"> + <drawimage imagetype="skinpart" path="displaymenuback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="1%" y="10%" width="93%" height="80%" layer="2"> + <drawimage imagetype="skinpart" path="displaymendetailback" x="0" y="0" width="100%" height="100%" /> + </area> + <area x="0" y="0" width="83%" height="8%" layer="2"> + <drawimage imagetype="skinpart" path="displaymenuheader" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="74%" y="0" width="26%" height="46%" layer="3"> + <drawimage imagetype="skinpart" path="displaymenucorner" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="{areawidth}*0.865" y="{areawidth}*0.005" width="13%" height="{areawidth}*0.13" layer="4"> + <drawimage imagetype="skinpart" path="watchback" x="0" y="0" width="100%" height="100%"/> + </area> + </background> + + <scrollbar> + <area x="97%" y="10%" width="2%" height="80%" layer="2"> + <drawimage imagetype="skinpart" path="scrollbarback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="97%" y="10%" width="2%" height="80%" layer="3"> + <drawimage imagetype="skinpart" path="scrollbar" x="0" y="{areaheight} * {offset} / 1000" width="100%" height="{areaheight} * {height} / 1000"/> + </area> + </scrollbar> + + <!-- Available Variables in tab elements: + {text} detailed text + --> + <tab name="text" x="2%" y="11%" width="92%" height="79%" layer="3" scrollheight="{areaheight}/4"> + <drawtextbox x="0" y="0" width="100%" font="{regular}" fontsize="5%" color="{clrWhite}" text="{text}" /> + </tab> + +</menudetailedtext>
\ No newline at end of file diff --git a/skins/blackhole/xmlfiles/displaymenumain.xml b/skins/blackhole/xmlfiles/displaymenumain.xml new file mode 100644 index 0000000..2cee80b --- /dev/null +++ b/skins/blackhole/xmlfiles/displaymenumain.xml @@ -0,0 +1,210 @@ +<menumain x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="55%" scaletvy="10%" scaletvwidth="40%" scaletvheight="40%" > + + <header> + <area x="0" y="0" width="83%" height="8%" layer="3"> + <drawtext x="1%" width="100%" valign="center" font="{semibold}" fontsize="90%" color="{clrWhite}" text="{title} - {vdrversion}" /> + </area> + </header> + + <background> + <area x="0" y="0" width="100%" height="100%" layer="1"> + <drawimage imagetype="skinpart" path="displaymenubacktv" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="0" y="0" width="83%" height="8%" layer="2"> + <drawimage imagetype="skinpart" path="displaymenuheader" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="74%" y="0" width="26%" height="46%" layer="3"> + <drawimage imagetype="skinpart" path="displaymenucorner" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="{areawidth}*0.865" y="{areawidth}*0.005" width="13%" height="{areawidth}*0.13" layer="4"> + <drawimage imagetype="skinpart" path="watchback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="55%" y="51%" width="44%" height="19%" layer="2"> + <drawimage imagetype="skinpart" path="tachos_back" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="55%" y="51%" width="44%" height="19%" layer="3"> + <drawimage imagetype="skinpart" path="tacho_percent_back" x="{areawidth}*0.005" y="5%" width="24%" height="{areawidth}*0.24"/> + </area> + <area x="55%" y="51%" width="44%" height="19%" layer="3"> + <drawimage imagetype="skinpart" path="tacho_load_back" x="{areawidth}*0.255" y="5%" width="24%" height="{areawidth}*0.24"/> + </area> + <area x="55%" y="51%" width="44%" height="19%" layer="3"> + <drawimage imagetype="skinpart" path="tacho_temp_back" x="{areawidth}*0.505" y="5%" width="24%" height="{areawidth}*0.24"/> + </area> + <area x="55%" y="51%" width="44%" height="19%" layer="3"> + <drawimage imagetype="skinpart" path="tacho_temp_back" x="{areawidth}*0.755" y="5%" width="24%" height="{areawidth}*0.24"/> + </area> + <area x="55%" y="71%" width="44%" height="19%" layer="2"> + <drawimage imagetype="skinpart" path="tachos_back" x="0" y="0" width="100%" height="100%"/> + </area> + </background> + + <scrollbar> + <area x="52%" y="10%" width="2%" height="80%" layer="2"> + <drawimage imagetype="skinpart" path="scrollbarback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="52%" y="10%" width="2%" height="80%" layer="3"> + <drawimage imagetype="skinpart" path="scrollbar" x="0" y="{areaheight} * {offset} / 1000" width="100%" height="{areaheight} * {height} / 1000"/> + </area> + </scrollbar> + + <!-- Available Variables timers: + {numtimers} number of active timers (max. 15 timers will be displayed) + {numtimerconflicts} number of current timer conflicts + {timer1exists} true if timer 1 available + {timer2exists} true if timer 2 available + ... + {timer15exists} true if timer 15 available + {timers[]} array with active timers (local and remote if remotetimers plugin is in use) + {timers[title]} title of timer + {timers[datetime]} date and time of timer + {timers[recording]} true if timer is recording currently + {timers[channelname]} name of channel for which timer is created + {timers[channelnumber]} number of channel + {timers[channelid]} ChannelID of channel + {timers[channellogoexists]} true if channel logo exists + --> + <timers> + <area condition="not{numtimers}" x="55%" y="71%" width="44%" height="19%" layer="2"> + <drawtext align="center" valign="center" font="{semibold}" fontsize="40%" color="{clrWhite}" text="{tr(noactivetimers)}" /> + </area> + <area condition="{numtimers}" x="55%" y="71%" width="44%" height="19%" layer="2"> + <loop name="timers" x="0" y="0" orientation="horizontal" columnwidth="{areawidth}/4" rowheight="{areaheight}" overflow="cut"> + <drawimage cache="true" name="logo" imagetype="channellogo" path="{timers[channelid]}" width="{columnwidth}-15" height="40%" align="center" y="10" /> + <drawrectangle condition="{timers[recording]}" x="0" y="{height(logo)}+10" width="{columnwidth}-5" height="{rowheight} - {height(logo)} - 20" color="{clrRedTrans}" /> + <drawtextbox x="5" y="{height(logo)} + 10" width="{columnwidth}-10" align="center" maxlines="2" font="{regular}" fontsize="15%" color="{clrWhite}" text="{timers[title]}" /> + <drawtext align="center" y="75%" font="{regular}" fontsize="20%" color="{clrWhite}" text="{timers[datetime]}" /> + </loop> + </area> + </timers> + + <!-- Available Variables discusage: + {freetime} available disc capacity in hh:mm + {freepercent} available disc capacity in percent + {usedpercent} used disc capacity in percent + {freegb} available disc capacity in gigabytes + {discalert} true if disc usage is > 95% + {vdrusagestring} localized VDR internal usage string + --> + <discusage> + <area x="55%" y="51%" width="44%" height="19%" layer="5"> + <drawimage imagetype="skinpart" path="tachohands/perc_{usedpercent}" x="{areawidth}*0.005" y="5%" width="24%" height="{areawidth}*0.24"/> + </area> + <area x="55%" y="51%" width="11%" height="19%" layer="4"> + <drawtext align="center" y="80%" font="{regular}" fontsize="14%" color="{clrWhite}" text="Disc Usage: {usedpercent}%" /> + </area> + </discusage> + + <!-- Available Variables devices: + {numdevices} number of available devices + {devices[]} array with available devices + {devices[num]} number of current device + {devices[type]} type of device (DVB-S, DVB-C, ...) + {devices[istuned]} true if device is currently tuned to a transponder + {devices[livetv]} true if device is currently playing livetv + {devices[recording]} true if device is currently recording + {devices[hascam]} true if device has a CAM + {devices[cam]} number of CAM + {devices[signalstrength]} signalstrength of devcie + {devices[signalquality]} signalstrength of devcie + {devices[channelnumber]} number of the currently tuned channel + {devices[channelname]} name of the currently tuned channel + {devices[channellogoexists]} true if a channel logo exists + {devices[channelid]} ID of the currently tuned channel + {devices[source]} source of the currently tuned channel + --> + <devices> + </devices> + + <!-- Available Variables systemload: + {load} current system load + {loadhand} system load for tacho hand (between 0 and 2.5 in 0.025 steps multiplied by 1000, >2.5 is always 2525) + --> + <systemload> + <area x="55%" y="51%" width="44%" height="19%" layer="5"> + <drawimage imagetype="skinpart" path="tachohands/load_{loadhand}" x="{areawidth}*0.255" y="5%" width="24%" height="{areawidth}*0.24"/> + </area> + <area x="66%" y="51%" width="11%" height="19%" layer="4"> + <drawtext align="center" y="80%" font="{regular}" fontsize="14%" color="{clrWhite}" text="Load: {load}" /> + </area> + </systemload> + + <!-- Available Variables tempreatures: + {cputemp} current cpu temperature in °C + {gputemp} current gpu temperature in °C + --> + <temperatures> + <area x="55%" y="51%" width="44%" height="19%" layer="5"> + <drawimage condition="gt({cputemp}, 80)" imagetype="skinpart" path="tachohands/temp_81" x="{areawidth}*0.505" y="5%" width="24%" height="{areawidth}*0.24"/> + <drawimage condition="lt({cputemp}, 81)" imagetype="skinpart" path="tachohands/temp_{cputemp}" x="{areawidth}*0.505" y="5%" width="24%" height="{areawidth}*0.24"/> + <drawimage condition="gt({gputemp}, 80)" imagetype="skinpart" path="tachohands/temp_81" x="{areawidth}*0.755" y="5%" width="24%" height="{areawidth}*0.24"/> + <drawimage condition="lt({cputemp}, 81)" imagetype="skinpart" path="tachohands/temp_{gputemp}" x="{areawidth}*0.755" y="5%" width="24%" height="{areawidth}*0.24"/> + </area> + <area x="77%" y="51%" width="11%" height="19%" layer="4"> + <drawtext align="center" y="80%" font="{regular}" fontsize="14%" color="{clrWhite}" text="CPU Temp: {cputemp}°C" /> + </area> + <area x="88%" y="51%" width="11%" height="19%" layer="4"> + <drawtext align="center" y="80%" font="{regular}" fontsize="14%" color="{clrWhite}" text="GPU Temp: {gputemp}°C" /> + </area> + </temperatures> + + <!-- Available Variables currentschedule: + {title} Title of the current Schedule + {subtitle} Subtitle of the current Schedule + {start} Start of current Schedule in hh:mm + {stop} End of current Schedule in hh:mm + {duration} Duration of current Schedule in min + {durationhours} Duration, full hours + {minutes} Duration, rest of minutes + {elapsed} Elapsed time of current Schedule in min + {remaining} Remaining time of current Schedule in min + {hasPoster} true if poster is available + {posterpath} Full Path of Poster to use in image path attribute + {posterwidth} width of poster in pixel + {posterheight} height of poster in pixel + {hasBanner} true if banner is available + {bannerpath} Full Path of banner to use in image path attribute + {bannerwidth} width of banner in pixel + {bannerheight} height of banner in pixel + --> + <currentschedule> + </currentschedule> + + <!-- Available Variables customtokens: + all custom tokens set by the svdrp command SCTK are available in this viewelement + For instance, use an appropriate script which runs periodically as cronjob and + sets these custom tokens with svdrpsend or dbus2vdr + --> + <customtokens> + </customtokens> + + <menuitems x="1%" y="10%" orientation="vertical" width="50%" height="80%" align="center" numlistelements="10"> + <!-- Available Variables main menu listelement: + {nummenuitem} number of item in list, starts with 1 + {label} label of menu item + {number} number of menu item (or empty string if not set) + {icon} path of appropriate icon + {current} true if item is currently selected + {separator} true if item is a list separator + --> + <listelement> + <area x="0" width="100%" layer="2"> + <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="0" width="100%" height="100%"/> + <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="0" width="100%" layer="3"> + <drawtext condition="not{current}" x="1%" width="98%" valign="center" font="{regular}" fontsize="80%" color="{clrGray}" text="{number} {label} " /> + <drawtext condition="{current}" x="1%" width="98%" valign="center" font="{regular}" fontsize="80%" color="{clrWhite}" text="{number} {label} " /> + </area> + </listelement> + <!-- additional element which is drawn for current element --> + <!-- Available Variables main menu currentelement: + {label} label of menu item + {number} number of menu item (or empty string if not set) + {icon} path of appropriate icon + --> + <currentelement delay="50" fadetime="0"> + </currentelement> + </menuitems> + +</menumain> diff --git a/skins/blackhole/xmlfiles/displaymenurecordings.xml b/skins/blackhole/xmlfiles/displaymenurecordings.xml new file mode 100644 index 0000000..ed00f51 --- /dev/null +++ b/skins/blackhole/xmlfiles/displaymenurecordings.xml @@ -0,0 +1,119 @@ +<menurecordings x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="55%" scaletvy="10%" scaletvwidth="40%" scaletvheight="40%"> + + <scrollbar> + <area x="52%" y="10%" width="2%" height="80%" layer="2"> + <drawimage imagetype="skinpart" path="scrollbarback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="52%" y="10%" width="2%" height="80%" layer="3"> + <drawimage imagetype="skinpart" path="scrollbar" x="0" y="{areaheight} * {offset} / 1000" width="100%" height="{areaheight} * {height} / 1000"/> + </area> + </scrollbar> + + <menuitems x="1%" y="10%" orientation="vertical" width="98%" height="80%" align="center" numlistelements="10"> + <!-- Available Variables recordings menu listelement: + {nummenuitem} number of item in list, starts with 1 + {name} Name of recording + {date} Date of recording + {time} Time of recording + {daynumeric} day as number + {month} month as number + {year} year as number + {duration} real duration of recording in minutes + {durationhours} real duration, full hours + {durationminutes} real duration, rest of minutes + {durationevent} duration of corresponding event in minutes + {durationeventhours} event duration, full hours + {durationeventminutes} event duration, rest of minutes + {current} true if item is currently selected + {new} true if recording is new + {cutted} true if recording is cutted + {folder} true if item is a folder + {numrecordingsfolder} if item is a folder, number of recordings in this folder + {newrecordingsfolder} if item is a folder, number of new recordings in this folder + {hasposterthumbnail} true if a scraped poster thumbnail is available for recording + {thumbnailbwidth} width of scraped poster thumbnail + {thumbnailheight} height of scraped poster thumbnail + {thumbnailpath} absolute path of scraped poster thumbnail + --> + <listelement> + <area x="0" width="51%" layer="2"> + <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="0" width="100%" height="100%"/> + <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="0" width="100%" height="100%"/> + </area> + <area condition="not{folder}" x="1%" width="50%" layer="3"> + <drawtext condition="not{current}" x="0" y="5%" font="{regular}" fontsize="35%" color="{clrGray}" text="{date} - {time}, {duration} min" /> + <drawtext condition="{current}" x="0" y="5%" font="{regular}" fontsize="35%" color="{clrWhite}" text="{date} - {time}, {duration} min" /> + </area> + <area condition="not{folder}" x="1%" width="50%" layer="3"> + <drawimage name="new" condition="{new}" imagetype="icon" path="ico_new_rec" align="right" y="8%" width="{areaheight}/2" height="{areaheight}/2" /> + <drawimage name="cutted" condition="{new}++{cutted}" imagetype="icon" path="ico_cutted" x="{areawidth} - {areaheight} - 10" y="8%" width="{areaheight}/2" height="{areaheight}/2" /> + <drawimage condition="not{new}++{cutted}" imagetype="icon" path="ico_cutted" align="right" y="8%" width="{areaheight}/2" height="{areaheight}/2" /> + </area> + <areascroll condition="not{folder}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="1%" width="50%" layer="3"> + <drawtext condition="not{current}" name="menutext" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrGray}" text="{name}" /> + <drawtext condition="{current}" name="menutext" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrWhite}" text="{name}" /> + </areascroll> + <area condition="{folder}" x="1%" width="4%" layer="3"> + <drawimage imagetype="icon" path="ico_folder" x="0" valign="center" width="{areaheight}*0.8" height="80%"/> + </area> + <areascroll condition="{folder}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="6%" width="45%" layer="3"> + <drawtext condition="not{current}" name="menutext" x="0" valign="center" font="{regular}" fontsize="70%" color="{clrGray}" text="{name} ({numrecordingsfolder} rec., {newrecordingsfolder} new)" /> + <drawtext condition="{current}" name="menutext" x="0" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{name} ({numrecordingsfolder} rec., {newrecordingsfolder} new)" /> + </areascroll> + </listelement> + <!-- additional element which is drawn for current element --> + <!-- Available Variables channels menu currentelement: + {menuitemx} x position of according menu item + {menuitemy} y position of according menu item + {menuitemwidth} width of according menu item + {menuitemheight} height of according menu item + {name} Name of recording + {shorttext} Short Text of recording + {description} Descrption of recording + {date} Date of recording + {time} Time of recording + {daynumeric} day as number + {month} month as number + {year} year as number + {duration} real duration of recording in minutes + {durationhours} real duration, full hours + {durationminutes} real duration, rest of minutes + {durationevent} duration of corresponding event in minutes + {durationeventhours} event duration, full hours + {durationeventminutes} event duration, rest of minutes {new} true if recording is new + {cutted} true if recording is cutted + {folder} true if item is a folder + {numrecordingsfolder} if item is a folder, number of recordings in this folder + {newrecordingsfolder} if item is a folder, number of new recordings in this folder + {hasposter} true if a scraped poster is available for recording + {posterwidth} width of scraped poster + {posterheight} height of scraped poster + {posterpath} absolute path of scraped poster + --> + <currentelement delay="500" fadetime="0"> + <area x="55%" y="52%" width="45%" height="48%" layer="2"> + <drawimage imagetype="skinpart" path="displaymenucurrentback" x="0" y="0" width="100%" height="100%"/> + </area> + <area condition="{folder}" x="55%" y="52%" width="45%" height="48%" layer="3"> + <drawimage imagetype="icon" path="ico_folder" x="25%" y="3%" width="50%" height="{areawidth}*0.5"/> + <drawtext align="center" y="75%" font="{regular}" fontsize="20%" color="{clrWhite}" text="{numrecordingsfolder} recs, {newrecordingsfolder} new" /> + </area> + <areascroll condition="not{folder}++not{hasposter}" orientation="vertical" mode="forthandback" delay="1000" scrollspeed="medium" x="56%" y="53%" width="43%" height="46%" layer="3"> + <drawtext x="0" y="0" font="{semibold}" width="100%" fontsize="10%" color="{clrWhite}" text="{date} - {time}, {duration} min" /> + <drawtext x="0" y="10%" font="{semibold}" width="100%" fontsize="12%" color="{clrWhite}" text="{name}" /> + <drawtextbox name="shorttext" x="0" y="21%" width="100%" font="{regular}" fontsize="9%" color="{clrWhite}" text="{shorttext}" /> + <drawtextbox x="0" y="{posy(shorttext)} + {height(shorttext)}" width="100%" font="{regular}" fontsize="8%" color="{clrWhite}" text="{description}" /> + </areascroll> + <area condition="not{folder}++{hasposter}" x="56%" y="53%" width="15%" height="46%" layer="3"> + <drawimage imagetype="image" path="{posterpath}" align="center" valign="center" width="{areawidth}" height="{areawidth} * {posterheight} / {posterwidth}"/> + </area> + <areascroll condition="not{folder}++{hasposter}" orientation="vertical" mode="forthandback" delay="1000" scrollspeed="medium" x="72%" y="53%" width="27%" height="46%" layer="3"> + <drawtext x="0" y="0" font="{semibold}" width="100%" fontsize="10%" color="{clrWhite}" text="{date} - {time}, {duration} min" /> + <drawtext x="0" y="10%" font="{semibold}" width="100%" fontsize="12%" color="{clrWhite}" text="{name}" /> + <drawtextbox name="shorttext" x="0" y="21%" width="100%" font="{regular}" fontsize="9%" color="{clrWhite}" text="{shorttext}" /> + <drawtextbox x="0" y="{posy(shorttext)} + {height(shorttext)}" width="100%" font="{regular}" fontsize="8%" color="{clrWhite}" text="{description}" /> + </areascroll> + </currentelement> + </menuitems> + +</menurecordings>
\ No newline at end of file diff --git a/skins/blackhole/xmlfiles/displaymenuschedules.xml b/skins/blackhole/xmlfiles/displaymenuschedules.xml new file mode 100644 index 0000000..4304bef --- /dev/null +++ b/skins/blackhole/xmlfiles/displaymenuschedules.xml @@ -0,0 +1,196 @@ +<menuschedules x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="55%" scaletvy="10%" scaletvwidth="40%" scaletvheight="40%" > + <!-- Available Variables header: + {title} title of current menu + {vdrversion} running VDR Version + {hasicon} true if a menu icon is available + {icon} path of menu icon + {channelnumber} Number of Channel of current event + {channelname} Name of current Channel of current event + {channellogoexists} true if a channel logo exists + {channelid} ChannelID as path to display channel logo + {whatson} true if menu "What's on" is displayed + {whatsonnow} true if menu "What's on now" is displayed + {whatsonnext} true if menu "What's on next" is displayed + --> + <header> + <area x="0" y="0" width="83%" height="8%" layer="3"> + <drawtext condition="{whatsonnow}||{whatsonnext}" x="5" valign="center" font="{semibold}" fontsize="100%" color="{clrWhite}" text="{title}" /> + <drawimage name="logo" condition="{whatson}" imagetype="channellogo" path="{channelid}" x="1%" width="5%" height="90%" align="left" valign="center" /> + <drawtext condition="{whatson}" x="{posx(logo)} + {width(logo)}+20" valign="center" font="{semibold}" fontsize="100%" color="{clrWhite}" text="{channelnumber} - {channelname}" /> + </area> + </header> + + <scrollbar> + <area x="52%" y="10%" width="2%" height="80%" layer="2"> + <drawimage imagetype="skinpart" path="scrollbarback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="52%" y="10%" width="2%" height="80%" layer="3"> + <drawimage imagetype="skinpart" path="scrollbar" x="0" y="{areaheight} * {offset} / 1000" width="100%" height="{areaheight} * {height} / 1000"/> + </area> + </scrollbar> + + <menuitems x="1%" y="10%" orientation="vertical" width="98%" height="80%" align="center" numlistelements="10"> + <!-- Available Variables schedules menu listelement: + {nummenuitem} number of item in list, starts with 1 + {title} title of event + {shorttext} shorttext of event + {start} event start time in hh::mm + {stop} event stop time + {day} day of current event + {date} date of current event in dd.mm.yy + {daynumeric} day as number + {month} month as number + {year} year as number + {running} true if event is currently running + {elapsed} elapsed time of event, if not running 0 + {duration} duration of event + {durationhours} duration, full hours + {durationminutes} duration, rest of minutes + {current} true if item is currently selected + {separator} true if item is a list separator + {channelname} Channel Name + {channelnumber} Channel Number + {channelid} ChannelID as path to display channel logo + {channellogoexists} true if a channel logo exists + {whatson} true if menu "What's on" is displayed + {whatsonnow} true if menu "What's on now" is displayed + {whatsonnext} true if menu "What's on next" is displayed + {timerpartitial} true if partitial timer is set for the event + {timerfull} true if full timer is set for the event + {hasVPS} true if event has VPS information + --> + <listelement> + <area x="0" width="51%" layer="2"> + <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="0" width="100%" height="100%"/> + <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="0" width="100%" height="100%"/> + </area> + <!-- progress bar for running --> + <area condition="{running}" x="25%" width="25%" layer="4"> + <drawimage imagetype="skinpart" path="progressbarback" x="0" y="10%" width="100%" height="20%"/> + </area> + <area condition="{running}" x="25%" width="25%" layer="5"> + <drawimage imagetype="skinpart" path="progressbar" x="{areaheight}*0.1" y="10%" width="{elapsed}/{duration}*{areawidth} - {elapsed}/{duration}*{areaheight}*0.2" height="20%"/> + </area> + <area condition="{running}" x="25%" width="25%" layer="6"> + <drawimage imagetype="skinpart" path="progressbarend" x="{areaheight}*0.1 + {elapsed}/{duration}*{areawidth} - {elapsed}/{duration}*{areaheight}*0.2 - 1" y="10%" width="{areaheight}*0.1" height="20%"/> + </area> + <!-- timer symbols--> + <area condition="{timerfull}||{timerpartitial}" x="47%" width="3%" layer="4"> + <drawimage condition="{timerfull}" imagetype="icon" path="ico_timer" align="right" y="1%" width="{areaheight}/2" height="{areaheight}/2" /> + <drawimage condition="{timerpartitial}" imagetype="icon" path="ico_timer" align="right" y="1%" width="{areaheight} * 0.35" height="{areaheight} * 0.35" /> + </area> + <!-- element whatson --> + <area condition="not{separator}++{whatson}++not{current}" x="1%" width="50%" layer="3"> + <drawtext x="0" y="5%" font="{regular}" fontsize="35%" color="{clrGray}" text="{start} - {stop}" /> + </area> + <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" condition="not{separator}++{whatson}++not{current}" x="1%" width="50%" layer="3"> + <drawtext name="menutext" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrGray}" text="{title}" /> + </areascroll> + <!-- current element whatson --> + <area condition="not{separator}++{whatson}++{current}" x="1%" width="50%" layer="3"> + <drawtext x="0" y="5%" font="{regular}" fontsize="35%" color="{clrWhite}" text="{start} - {stop}" /> + </area> + <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" condition="not{separator}++{whatson}++{current}" x="1%" width="50%" layer="3"> + <drawtext name="menutext" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrWhite}" text="{title}" /> + </areascroll> + <!-- element whatsonnow --> + <area condition="not{separator}++{whatsonnow}" x="1%" width="9%" layer="3"> + <drawimage name="logo" imagetype="channellogo" path="{channelid}" width="90%" height="90%" align="center" valign="center" /> + </area> + <area condition="not{separator}++{whatsonnow}++not{current}" x="11%" width="39%" layer="3"> + <drawtext x="0" y="5%" font="{regular}" fontsize="35%" color="{clrGray}" text="{start} - {stop}" /> + </area> + <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" condition="not{separator}++{whatsonnow}++not{current}" x="11%" width="39%" layer="3"> + <drawtext name="menutext" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrGray}" text="{title}" /> + </areascroll> + <!-- current element whatsonnow --> + <area condition="not{separator}++{whatsonnow}++{current}" x="11%" width="39%" layer="3"> + <drawtext x="0" y="5%" font="{regular}" fontsize="35%" color="{clrWhite}" text="{start} - {stop}" /> + </area> + <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" condition="not{separator}++{whatsonnow}++{current}" x="11%" width="39%" layer="3"> + <drawtext name="menutext" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrWhite}" text="{title}" /> + </areascroll> + <!-- element whatsonnext --> + <area condition="not{separator}++{whatsonnext}" x="1%" width="9%" layer="3"> + <drawimage name="logo" imagetype="channellogo" path="{channelid}" width="90%" height="90%" align="center" valign="center" /> + </area> + <area condition="not{separator}++{whatsonnext}++not{current}" x="11%" width="39%" layer="3"> + <drawtext x="0" y="5%" font="{regular}" fontsize="35%" color="{clrGray}" text="{start} - {stop}" /> + </area> + <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" condition="not{separator}++{whatsonnext}++not{current}" x="11%" width="39%" layer="3"> + <drawtext name="menutext" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrGray}" text="{title}" /> + </areascroll> + <!-- current element whatsonnext --> + <area condition="not{separator}++{whatsonnext}++{current}" x="11%" width="39%" layer="3"> + <drawtext x="0" y="5%" font="{regular}" fontsize="35%" color="{clrWhite}" text="{start} - {stop}" /> + </area> + <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" condition="not{separator}++{whatsonnext}++{current}" x="11%" width="39%" layer="3"> + <drawtext name="menutext" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrWhite}" text="{title}" /> + </areascroll> + <!-- day or channel separator --> + <area condition="{separator}" x="1%" width="50%" layer="3"> + <drawtext x="0" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{title}" /> + </area> + </listelement> + <!-- Available Variables schedules menu currentelement: + {menuitemx} x position of according menu item + {menuitemy} y position of according menu item + {menuitemwidth} width of according menu item + {menuitemheight} height of according menu item + {title} title of event + {shorttext} shorttext of event + {description} detailed description of event + {start} event start time in hh::mm + {stop} event stop time + {day} day of current event + {date} date of current event in dd.mm.yy + {daynumeric} day as number + {month} month as number + {year} year as number + {running} true if event is currently running + {elapsed} elapsed time of event, if not running 0 + {duration} duration of event + {durationhours} duration, full hours + {durationminutes} duration, rest of minutes + {channelname} Channel Name + {channelnumber} Channel Number + {channelid} ChannelID as path to display channel logo + {channellogoexists} true if a channel logo exists + {hasposter} true if a scraped poster is available for this element + {posterwidth} width of scraped poster + {posterheight} height of scraped poster + {posterpath} absolute path of scraped poster + {timerpartitial} true if partitial timer is set for the event + {timerfull} true if full timer is set for the event + {whatson} true if menu "What's on" is displayed + {whatsonnow} true if menu "What's on now" is displayed + {whatsonnext} true if menu "What's on next" is displayed + {schedule[]} array with next 10 schedules, only for whatsonnow and whatsonnext + {schedule[title]} title of event + {schedule[shorttext]} shorttext of event + {schedule[start]} start time of event in hh:mm + {schedule[stop]} stop time of event in hh:mm + --> + <currentelement delay="200" fadetime="0"> + <area x="55%" y="52%" width="45%" height="48%" layer="2"> + <drawimage imagetype="skinpart" path="displaymenucurrentback" x="0" y="0" width="100%" height="100%"/> + </area> + <areascroll condition="not{hasposter}" orientation="vertical" mode="forthandback" delay="1000" scrollspeed="medium" x="56%" y="53%" width="43%" height="46%" layer="3"> + <drawtext x="0" y="0" font="{semibold}" width="100%" fontsize="10%" color="{clrWhite}" text="{day} {daynumeric}.{month} {start} - {stop}" /> + <drawtext x="0" y="10%" font="{semibold}" width="100%" fontsize="12%" color="{clrWhite}" text="{title}" /> + <drawtextbox name="shorttext" x="0" y="21%" width="100%" font="{regular}" fontsize="9%" color="{clrWhite}" text="{shorttext}" /> + <drawtextbox x="0" y="{posy(shorttext)} + {height(shorttext)}" width="100%" font="{regular}" fontsize="8%" color="{clrWhite}" text="{description}" /> + </areascroll> + <area condition="{hasposter}" x="56%" y="53%" width="15%" height="46%" layer="3"> + <drawimage imagetype="image" path="{posterpath}" align="center" valign="center" width="{areawidth}" height="{areawidth} * {posterheight} / {posterwidth}"/> + </area> + <areascroll condition="{hasposter}" orientation="vertical" mode="forthandback" delay="1000" scrollspeed="medium" x="72%" y="53%" width="27%" height="46%" layer="3"> + <drawtext x="0" y="0" font="{semibold}" width="100%" fontsize="10%" color="{clrWhite}" text="{day} {daynumeric}.{month} {start} - {stop}" /> + <drawtext x="0" y="10%" font="{semibold}" width="100%" fontsize="12%" color="{clrWhite}" text="{title}" /> + <drawtextbox name="shorttext" x="0" y="21%" width="100%" font="{regular}" fontsize="9%" color="{clrWhite}" text="{shorttext}" /> + <drawtextbox x="0" y="{posy(shorttext)} + {height(shorttext)}" width="100%" font="{regular}" fontsize="8%" color="{clrWhite}" text="{description}" /> + </areascroll> + </currentelement> + </menuitems> + +</menuschedules>
\ No newline at end of file diff --git a/skins/blackhole/xmlfiles/displaymenusetup.xml b/skins/blackhole/xmlfiles/displaymenusetup.xml new file mode 100644 index 0000000..590f102 --- /dev/null +++ b/skins/blackhole/xmlfiles/displaymenusetup.xml @@ -0,0 +1,51 @@ +<menusetup x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="55%" scaletvy="10%" scaletvwidth="40%" scaletvheight="40%" > + + <scrollbar> + <area x="52%" y="10%" width="2%" height="80%" layer="2"> + <drawimage imagetype="skinpart" path="scrollbarback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="52%" y="10%" width="2%" height="80%" layer="3"> + <drawimage imagetype="skinpart" path="scrollbar" x="0" y="{areaheight} * {offset} / 1000" width="100%" height="{areaheight} * {height} / 1000"/> + </area> + </scrollbar> + + <menuitems x="1%" y="10%" orientation="vertical" width="98%" height="80%" align="center" numlistelements="10"> + <!-- Available Variables setup menu listelement: + {nummenuitem} number of item in list, starts with 1 + {label} label of menu item + {number} number of menu item (or empty string if not set) + {icon} path of appropriate icon + {current} true if item is currently selected + {separator} true if item is a list separator + --> + <listelement> + <area x="0" width="51%" layer="2"> + <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="0" width="100%" height="100%"/> + <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="0" width="51%" layer="3"> + <drawtext condition="not{current}" x="1%" width="98%" valign="center" font="{regular}" fontsize="80%" color="{clrGray}" text="{number} {label} " /> + <drawtext condition="{current}" x="1%" width="98%" valign="center" font="{regular}" fontsize="80%" color="{clrWhite}" text="{number} {label} " /> + </area> + </listelement> + <!-- additional element which is drawn for current element --> + <!-- Available Variables main menu currentelement: + {menuitemx} x position of according menu item + {menuitemy} y position of according menu item + {menuitemwidth} width of according menu item + {menuitemheight} height of according menu item + {label} label of menu item + {number} number of menu item (or empty string if not set) + {icon} path of appropriate icon + --> + <currentelement delay="50" fadetime="0"> + <area x="55%" y="52%" width="45%" height="48%" layer="2"> + <drawimage imagetype="skinpart" path="displaymenucurrentback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="55%" y="52%" width="45%" height="48%" layer="3"> + <drawimage imagetype="menuicon" path="{icon}" align="center" valign="center" width="{areaheight}*0.9" height="{areaheight}*0.9"/> + </area> + </currentelement> + </menuitems> + +</menusetup> diff --git a/skins/blackhole/xmlfiles/displaymenutimers.xml b/skins/blackhole/xmlfiles/displaymenutimers.xml new file mode 100644 index 0000000..7223440 --- /dev/null +++ b/skins/blackhole/xmlfiles/displaymenutimers.xml @@ -0,0 +1,117 @@ +<menutimers x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="55%" scaletvy="10%" scaletvwidth="40%" scaletvheight="40%" > + + <scrollbar> + <area x="52%" y="10%" width="2%" height="80%" layer="2"> + <drawimage imagetype="skinpart" path="scrollbarback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="52%" y="10%" width="2%" height="80%" layer="3"> + <drawimage imagetype="skinpart" path="scrollbar" x="0" y="{areaheight} * {offset} / 1000" width="100%" height="{areaheight} * {height} / 1000"/> + </area> + </scrollbar> + + <menuitems x="1%" y="10%" orientation="vertical" width="98%" height="80%" align="center" numlistelements="10"> + <!-- Available Variables channels menu listelement: + {nummenuitem} number of item in list, starts with 1 + {title} Title of Timer + {timerstart} Start Time of Timer in hh::mm + {timerstop} End Time of Timer in hh::mm + {day} Day (numerical) + {dayname} Day, for repeating timers days where timer is active + {month} Month (two digits) + {monthname} Month, three letter abbrevation + {year} Year (4 digits) + {channelname} Name of channel which is set for the timer + {channellogoexists} true if a channel logo exists + {channelid} ID of channel which is set for the timer (for dispalying channel logo) + {channelnumber} Number of channel which is set for the timer + {eventtitle} Title of corresponding event + {eventstart} Start Time of corresponding event in hh::mm + {eventstop} Stop Time of corresponding event in hh::mm + {current} true if item is currently selected + {flagactive} true if timer is active + {flaginstant} true if timer is an instant timer + {flagvps} true if timer uses VPS + {flagrecording} true if is recording currently + {flagpending} true if timer is pending + --> + <listelement> + <area x="0" width="51%" layer="2"> + <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="0" width="100%" height="100%"/> + <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="0" width="100%" height="100%"/> + </area> + <area condition="not{separator}" x="1%" width="9%" layer="3"> + <drawimage name="logo" imagetype="channellogo" path="{channelid}" width="90%" height="90%" align="center" valign="center" /> + </area> + <area condition="not{separator}" x="11%" width="39%" layer="3"> + <drawtext condition="not{current}" x="0" y="5%" font="{regular}" fontsize="35%" color="{clrGray}" text="{channelname}, {dayname} {day}.{month} {timerstart} - {timerstop}" /> + <drawtext condition="{current}" x="0" y="5%" font="{regular}" fontsize="35%" color="{clrWhite}" text="{channelname}, {dayname} {day}.{month} {timerstart} - {timerstop}" /> + </area> + <area condition="not{separator}" x="11%" width="39%" layer="4"> + <drawimage condition="{flagactive}" imagetype="icon" path="ico_timer_active" align="right" y="8%" width="{areaheight}/3" height="{areaheight}/3" /> + <drawimage condition="not{flagactive}" imagetype="icon" path="ico_timer_inactive" align="right" y="8%" width="{areaheight}/3" height="{areaheight}/3" /> + </area> + <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" condition="not{separator}" x="11%" width="39%" layer="3"> + <drawtext condition="not{current}" name="menutext" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrGray}" text="{title}" /> + <drawtext condition="{current}" name="menutext" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrWhite}" text="{title}" /> + </areascroll> + <area condition="{separator}" x="1%" width="50%" layer="3"> + <drawtext x="0" valign="center" font="{regular}" fontsize="70%" color="{clrWhite}" text="{title}" /> + </area> + </listelement> + <!-- additional element which is drawn for current element --> + <!-- Available Variables channels menu currentelement: + {menuitemx} x position of according menu item + {menuitemy} y position of according menu item + {menuitemwidth} width of according menu item + {menuitemheight} height of according menu item + {title} Title of Timer + {timerstart} Start Time of Timer in hh::mm + {timerstop} End Time of Timer in hh::mm + {day} Day (numerical) + {dayname} Day, for repeating timers days where timer is active + {month} Month (two digits) + {monthname} Month, three letter abbrevation + {year} Year (4 digits)# + {channelname} Name of channel which is set for the timer + {channellogoexists} true if a channel logo exists + {channelid} ID of channel which is set for the timer (for dispalying channel logo) + {channelnumber} Number of channel which is set for the timer + {eventtitle} Title of corresponding event + {eventstart} Start Time of corresponding event in hh::mm + {eventstop} Stop Time of corresponding event in hh::mm + {eventshorttext} Short Text corresponding event + {eventdescription} Description corresponding event + {hasposter} true if a scraped poster is available for event + {posterwidth} width of scraped poster + {posterheight} height of scraped poster + {posterpath} absolute path of scraped poster + {flagactive} true if timer is active + {flaginstant} true if timer is an instant timer + {flagvps} true if timer uses VPS + {flagrecording} true if is recording currently + {flagpending} true if timer is pending + --> + <currentelement delay="500" fadetime="0"> + <area condition="{flagactive}" x="55%" y="52%" width="45%" height="48%" layer="2"> + <drawimage imagetype="skinpart" path="displaymenucurrentback" x="0" y="0" width="100%" height="100%"/> + </area> + <areascroll condition="{flagactive} ++ not{hasposter}" orientation="vertical" mode="forthandback" delay="1000" scrollspeed="medium" x="56%" y="53%" width="43%" height="46%" layer="3"> + <drawtext x="0" y="0" font="{semibold}" width="100%" fontsize="10%" color="{clrWhite}" text="{dayname} {day}.{month} {eventstart} - {eventstop}" /> + <drawtext x="0" y="10%" font="{semibold}" width="100%" fontsize="12%" color="{clrWhite}" text="{eventtitle}" /> + <drawtextbox name="shorttext" x="0" y="21%" width="100%" font="{regular}" fontsize="9%" color="{clrWhite}" text="{eventshorttext}" /> + <drawtextbox x="0" y="{posy(shorttext)} + {height(shorttext)}" width="100%" font="{regular}" fontsize="8%" color="{clrWhite}" text="{eventdescription}" /> + </areascroll> + <area condition="{flagactive} ++ {hasposter}" x="56%" y="53%" width="15%" height="46%" layer="3"> + <drawimage imagetype="image" path="{posterpath}" align="center" valign="center" width="{areawidth}" height="{areawidth} * {posterheight} / {posterwidth}"/> + </area> + <areascroll condition="{flagactive} ++ {hasposter}" orientation="vertical" mode="forthandback" delay="1000" scrollspeed="medium" x="72%" y="53%" width="27%" height="46%" layer="3"> + <drawtext x="0" y="0" font="{semibold}" width="100%" fontsize="10%" color="{clrWhite}" text="{dayname} {day}.{month} {eventstart} - {eventstop}" /> + <drawtext x="0" y="10%" font="{semibold}" width="100%" fontsize="12%" color="{clrWhite}" text="{eventtitle}" /> + <drawtextbox name="shorttext" x="0" y="21%" width="100%" font="{regular}" fontsize="9%" color="{clrWhite}" text="{eventshorttext}" /> + <drawtextbox x="0" y="{posy(shorttext)} + {height(shorttext)}" width="100%" font="{regular}" fontsize="8%" color="{clrWhite}" text="{eventdescription}" /> + </areascroll> + </currentelement> + + </menuitems> + +</menutimers>
\ No newline at end of file diff --git a/skins/blackhole/xmlfiles/displaymessage.xml b/skins/blackhole/xmlfiles/displaymessage.xml new file mode 100644 index 0000000..1f18edf --- /dev/null +++ b/skins/blackhole/xmlfiles/displaymessage.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE displaymessage SYSTEM "../../../dtd/displaymessage.dtd">
+
+<displaymessage x="0" y="0" width="100%" height="100%" fadetime="{fadetime}">
+
+ <background>
+ </background>
+
+ <!-- Available Variables message:
+ {text} message text
+ {status} true if message is a status message
+ {info} true if message is a info message
+ {warning} true if message is a warn message
+ {error} true if message is a error message
+ -->
+ <message>
+ <area x="5%" y="80%" width="90%" height="15%" layer="6">
+ <drawimage condition="{status}" imagetype="skinpart" path="messageblue" x="0" y="0" width="100%" height="100%" />
+ <drawimage condition="{info}" imagetype="skinpart" path="messagegreen" x="0" y="0" width="100%" height="100%" />
+ <drawimage condition="{warning}" imagetype="skinpart" path="messageyellow" x="0" y="0" width="100%" height="100%" />
+ <drawimage condition="{error}" imagetype="skinpart" path="messagered" x="0" y="0" width="100%" height="100%" />
+ </area>
+ <area x="5%" y="80%" width="90%" height="15%" layer="7">
+ <drawtext align="center" valign="center" font="{regular}" fontsize="40%" color="{clrWhite}" text="{text}" />
+ </area>
+ </message>
+
+</displaymessage>
diff --git a/skins/blackhole/xmlfiles/displayreplay.xml b/skins/blackhole/xmlfiles/displayreplay.xml new file mode 100644 index 0000000..1f5bcf5 --- /dev/null +++ b/skins/blackhole/xmlfiles/displayreplay.xml @@ -0,0 +1,367 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE displayreplay SYSTEM "../../../dtd/displayreplay.dtd"> + +<displayreplay x="0" y="70%" width="100%" height="30%" fadetime="{fadeTime}"> + + <background> + <!-- global background --> + <area x="0" y="0" width="100%" height="100%" layer="1"> + <drawimage imagetype="skinpart" path="displaychannelback" x="0" y="0" width="100%" height="100%"/> + </area> + <!-- progressbar background --> + <area x="17%" y="36%" width="67%" height="40%" layer="2"> + <drawimage imagetype="skinpart" path="displaychannelbackepg" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="18%" y="45%" width="65%" height="8%" layer="3"> + <drawimage imagetype="skinpart" path="progressbarback_replay" x="0" y="0" width="100%" height="100%"/> + </area> + <!-- watch background --> + <area x="86%" y="20%" width="{areaheight}*0.6" height="{areaheight}*0.6" layer="2"> + <drawimage imagetype="skinpart" path="watchback" x="0" y="0" width="100%" height="100%"/> + </area> + </background> + + <backgroundmodeonly> + <area x="{areawidth}/2 - 2.5*{areaheight}*0.3" y="40%" width="5*{areaheight}*0.3" height="30%" layer="3"> + <fill color="{clrBlackTrans}" /> + </area> + </backgroundmodeonly> + + <!-- Available Variables datetime: + {time} time in hh:mm + {day} day in digits + {dayleadingzero} day in digits with leading 0 + {dayname} Full name of the day + {daynameshort} Short 3 char name of the day + {month} month in digits with leading 0 + {monthname} Full name of the month + {monthnameshort} 3 letter abbrivation of month name + {year} year in yyyy + --> + <datetime> + <area x="86%" y="5%" width="{areaheight}*0.6" height="14%" layer="3"> + <drawtext align="center" y="0" font="{semibold}" fontsize="100%" color="{clrWhite}" text="{daynameshort} {day}.{month}" /> + </area> + <area x="86%" y="80%" width="{areaheight}*0.6" height="16%" layer="3"> + <drawtext align="center" y="0" font="{digital}" fontsize="100%" color="{clrWhite}" text="{time}" /> + </area> + </datetime> + + <!-- Available Variables time: + {sec} current seconds + {min} current minutes + {hour} current hours + {hmins} current "hourminutes" to display an hour hand + --> + <time> + <area x="86%" y="20%" width="{areaheight}*0.6" height="{areaheight}*0.6" layer="5"> + <drawimage imagetype="skinpart" path="watchhands/s_{sec}" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="86%" y="20%" width="{areaheight}*0.6" height="{areaheight}*0.6" layer="4"> + <drawimage imagetype="skinpart" path="watchhands/m_{min}" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="86%" y="20%" width="{areaheight}*0.6" height="{areaheight}*0.6" layer="3"> + <drawimage imagetype="skinpart" path="watchhands/h_{hmins}" x="0" y="0" width="100%" height="100%"/> + </area> + </time> + + <!-- Available Variables scrapercontent: + {posterpath} Full Path of Poster to use in image path attribute + {posterwidth} width of poster in pixel + {posterheight} height of poster in pixel + {hasposter} true if poster is available + {bannerpath} Full Path of banner to use in image path attribute + {bannerwidth} width of banner in pixel + {bannerheight} height of banner in pixel + {hasBanner} true if banner is available + + Use this tokens if you want to display a banner for series and a poster for movies: + {mediapath} Full Path of Poster or Banner to use in image path attribute + {mediawidth} width of image in pixel + {mediaheight} height of image in pixel + {isbanner} true if image is a banner, false if it is a poster + --> + <scrapercontent debug="true"> + <area condition="{hasposter}" x="1%" y="15%" width="{areaheight}*0.7*{posterwidth}/{posterheight}" height="70%" layer="2"> + <drawimage imagetype="image" path="{posterpath}" x="0" y="0" width="100%" height="100%"/> + </area> + <area condition="not{hasposter}" x="1%" y="15%" width="14%" height="70%" layer="2"> + <drawimage imagetype="icon" path="ico_recording" x="0" y="0" width="100%" height="100%"/> + </area> + </scrapercontent> + + <!-- Available Variables rectitle: + {rectitle} Title of Recording + {recsubtitle} Subtitle of the Recording + {recdate} Date Recording in dd.mm.yy + {rectime} Time of Recording in hh:mm + --> + <rectitle> + <area x="17%" y="16%" width="67%" height="18%" layer="2"> + <drawtext x="0" y="0" font="{semibold}" width="100%" fontsize="100%" color="{clrWhite}" text="{rectitle} - {recsubtitle}" /> + </area> + </rectitle> + + <!-- Available Variables recinfo: + {screenwidth} width of currently displayed recording in px + {screenheight} height of currently displayed recording in px + {resolution} resolution: hd1080i, hd720p, sd576i + {aspect} screen aspect, each 4:3, 16:9 or 21:9 + {isHD} true for hd1080i and hd720p + {isWideScreen} true if aspect is 16:9 or 21:9 + --> + <recinfo> + <area x="17%" y="80%" width="67%" height="15%" layer="4"> + <drawimage imagetype="icon" path="ico_{resolution}" x="0" y="0" width="{areaheight}*3" height="{areaheight}"/> + <drawimage condition="{isWideScreen}" imagetype="icon" path="ico_widescreen" x="{areaheight}*3 + 10" y="0" width="{areaheight}*3" height="{areaheight}"/> + </area> + </recinfo> + + <!-- Available Variables currenttime: + {reccurrent} Current Time in hh:mm:ss + --> + <currenttime> + <area x="18%" y="61%" width="30%" height="15%" layer="3"> + <drawtext x="0" valign="center" font="{digital}" fontsize="80%" color="{clrWhite}" text="{reccurrent}" /> + </area> + </currenttime> + + <!-- Available Variables totaltime: + {rectotal} Total Time in hh:mm:ss + --> + <totaltime> + <area x="54%" y="61%" width="29%" height="15%" layer="3"> + <drawtext align="right" valign="center" font="{digital}" fontsize="80%" color="{clrWhite}" text="{rectotal}" /> + </area> + </totaltime> + + <!-- Available Variables progressbar: + {current} current frame of recording + {total} total frames of recording + --> + <progressbar> + <area x="18%" y="45%" width="65%" height="8%" layer="4"> + <drawimage imagetype="skinpart" path="progressbar" x="2" y="2" width="{current}/{total}*{areawidth} - {current}/{total}*4" height="{areaheight}-4"/> + </area> + </progressbar> + + <!-- Available Variables cutmarks: + {marks[]} array of available marks + {marks[position]} frame of current mark + {marks[endposition]} frame where startmark ends + {marks[total]} total number of frames + {marks[active]} true if current replay position hits exactly the mark + {marks[startmark]} true if mark is start mark + --> + <cutmarks> + <area x="18%" y="43%" width="65%" height="12%" layer="5" transparency="40"> + <loop name="marks" x="0" y="0" orientation="absolute"> + <!-- draw mark --> + <drawimage condition="{marks[startmark]}" imagetype="icon" path="ico_cutmark_start" x="{marks[position]}/{marks[total]}*{areawidth} - {areaheight}/3" y="0" width="{areaheight}/3" height="{areaheight}" /> + <drawimage condition="not{marks[startmark]}" imagetype="icon" path="ico_cutmark_stop" x="{marks[position]}/{marks[total]}*{areawidth}" y="0" width="{areaheight}/3" height="{areaheight}" /> + <!-- draw bar to next mark if mark is startmark--> + <drawrectangle condition="{marks[startmark]}" x="{marks[position]}/{marks[total]}*{areawidth}" y="40%" width="{marks[endposition]}/{marks[total]}*{areawidth} - {marks[position]}/{marks[total]}*{areawidth}" height="20%" color="{clrRed}" /> + </loop> + </area> + </cutmarks> + + <!-- Available Variables controlicons and controliconsmodeonly: + {play} true if recording is played currently + {pause} true if recording is paused + {forward} true if fast forwarding + {forward1x} true if fast forwarding 1x (with 3 trickspeeds) + {forward2x} true if fast forwarding 2x (with 3 trickspeeds) + {forward3x} true if fast forwarding 3x (with 3 trickspeeds) + {rewind} true if rewinding + {rewind1x} true if rewinding 1x (with 3 trickspeeds) + {rewind2x} true if rewinding 2x (with 3 trickspeeds) + {rewind3x} true if rewinding 3x (with 3 trickspeeds) + --> + <controlicons> + <area x="67%" y="1%" width="25%" height="20%" layer="3"> + <drawimage condition="not{rewind} ++ not{rewind1x} ++ not{rewind2x} ++ not{rewind3x}" imagetype="icon" path="ico_back_inactive" x="0" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{rewind}" imagetype="icon" path="ico_back_active" x="{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{rewind1x}" imagetype="icon" path="ico_back_active_x1" x="0" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{rewind2x}" imagetype="icon" path="ico_back_active_x2" x="0" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{rewind3x}" imagetype="icon" path="ico_back_active_x3" x="0" y="0" width="{areaheight}" height="{areaheight}"/> + + <drawimage condition="not{pause}" imagetype="icon" path="ico_pause_inactive" x="{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{pause}" imagetype="icon" path="ico_pause_active" x="{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + + <drawimage condition="not{play}" imagetype="icon" path="ico_play_inactive" x="2*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{play}" imagetype="icon" path="ico_play_active" x="2*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + + <drawimage condition="not{forward} ++ not{forward1x} ++ not{forward2x} ++ not{forward3x}" imagetype="icon" path="ico_fwd_inactive" x="3*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{forward}" imagetype="icon" path="ico_fwd_active" x="3*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{forward1x}" imagetype="icon" path="ico_fwd_active_x1" x="3*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{forward2x}" imagetype="icon" path="ico_fwd_active_x2" x="3*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{forward3x}" imagetype="icon" path="ico_fwd_active_x3" x="3*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + </area> + </controlicons> + + <controliconsmodeonly> + <area x="{areawidth}/2 - 2*{areaheight}*0.3" y="40%" width="4*{areaheight}*0.3" height="30%" layer="3"> + <drawimage condition="not{rewind} ++ not{rewind1x} ++ not{rewind2x} ++ not{rewind3x}" imagetype="icon" path="ico_back_inactive" x="0" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{rewind}" imagetype="icon" path="ico_back_active" x="{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{rewind1x}" imagetype="icon" path="ico_back_active_x1" x="0" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{rewind2x}" imagetype="icon" path="ico_back_active_x2" x="0" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{rewind3x}" imagetype="icon" path="ico_back_active_x3" x="0" y="0" width="{areaheight}" height="{areaheight}"/> + + <drawimage condition="not{pause}" imagetype="icon" path="ico_pause_inactive" x="{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{pause}" imagetype="icon" path="ico_pause_active" x="{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + + <drawimage condition="not{play}" imagetype="icon" path="ico_play_inactive" x="2*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{play}" imagetype="icon" path="ico_play_active" x="2*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + + <drawimage condition="not{forward} ++ not{forward1x} ++ not{forward2x} ++ not{forward3x}" imagetype="icon" path="ico_fwd_inactive" x="3*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{forward}" imagetype="icon" path="ico_fwd_active" x="3*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{forward1x}" imagetype="icon" path="ico_fwd_active_x1" x="3*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{forward2x}" imagetype="icon" path="ico_fwd_active_x2" x="3*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + <drawimage condition="{forward3x}" imagetype="icon" path="ico_fwd_active_x3" x="3*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> + </area> + </controliconsmodeonly> + + <!-- Available Variables jump: + {jump} time to jump to in hh:mm + --> + <jump> + <area x="50%" y="80%" width="30%" height="20%" layer="3"> + <drawtext align="right" valign="center" font="{digital}" fontsize="60%" color="{clrWhite}" text="{jump}" /> + </area> + </jump> + <!-- Available Variables message: + {text} message text + {status} true if message is a status message + {info} true if message is a info message + {warning} true if message is a warn message + {error} true if message is a error message + --> + <message> + <area x="5%" y="80%" width="90%" height="15%" layer="6"> + <drawimage condition="{status}" imagetype="skinpart" path="messageblue" x="0" y="0" width="100%" height="100%" /> + <drawimage condition="{info}" imagetype="skinpart" path="messagegreen" x="0" y="0" width="100%" height="100%" /> + <drawimage condition="{warning}" imagetype="skinpart" path="messageyellow" x="0" y="0" width="100%" height="100%" /> + <drawimage condition="{error}" imagetype="skinpart" path="messagered" x="0" y="0" width="100%" height="100%" /> + </area> + <area x="5%" y="80%" width="90%" height="15%" layer="7"> + <drawtext align="center" valign="center" font="{regular}" fontsize="40%" color="{clrWhite}" text="{text}" /> + </area> + </message> + + <!-- Available Variables onpause and onpausemodeonly: + {name} title of recording + {shorttext} shorttext of recording + {description} description of recording + {date} date of recording in dd.mm.yy + {time} time of recording in hh:mm + {daynumeric} day as number + {month} month as number + {year} year as number + {duration} real duration of recording in minutes + {durationhours} real duration, full hours + {durationminutes} real duration, rest of minutes + {durationevent} duration of corresponding event in minutes + {durationeventhours} event duration, full hours + {durationeventminutes} event duration, rest of minutes + + {ismovie} true if event is scraped as a movie + Available variables for movies: + {movietitle} movie title from themoviedb + {movieoriginalTitle} movie original title from themoviedb + {movietagline} movie tagline from themoviedb + {movieoverview} movie overview from themoviedb + {movieadult} true if movie is rated as adult + {moviebudget} movie budget from themoviedb in $ + {movierevenue} movie revenue from themoviedb in $ + {moviegenres} movie genres from themoviedb + {moviehomepage} movie homepage from themoviedb + {moviereleasedate} movie release date from themoviedb + {movieruntime} movie runtime from themoviedb + {moviepopularity} movie popularity from themoviedb + {movievoteaverage} movie vote average from themoviedb + {posterwidth} width of scraped poster + {posterheight} height of scraped poster + {posterpath} absolute path of scraped poster + {fanartwidth} width of scraped fanart + {fanartheight} height of scraped fanart + {fanartpath} absolute path of scraped fanart + {movieiscollection} true if movie is part of a collection + {moviecollectionName} name of movie collection + {collectionposterwidth} width of scraped collection poster + {collectionposterheight} height of scraped collection poster + {collectionposterpath} absolute path of scraped collection poster + {collectionfanartwidth} width of scraped collection fanart + {collectionfanartheight} height of scraped collection fanart + {collectionfanartpath} absolute path of scraped collection fanart + {actors[]} array with movie actors + {actors[name]} real name of actor + {actors[role]} actor role + {actors[thumb]} absolute path of scraped actor thumb + {actors[thumbwidth]} width of scraped actor thumb + {actors[thumbheight]} height of scraped actor thumb + + {isseries} true if event is scraped as a series + Available variables for series: + {seriesname} name of series + {seriesoverview} series overview + {seriesfirstaired} first aired date + {seriesnetwork} network which produces series + {seriesgenre} series genre + {seriesrating} series thetvdb rating + {seriesstatus} status of series (running / finished) + {episodetitle} title of episode + {episodenumber} number of episode + {episodeseason} season of episode + {episodefirstaired} first aired date of episode + {episodegueststars} guest stars of episode + {episodeoverview} episode overview + {episoderating} user rating for episode + {episodeimagewidth} episode image width + {episodeimageheight} episode image height + {episodeimagepath} episode image path + {seasonposterwidth} episode season poster width + {seasonposterheight} episode season poster height + {seasonposterpath} episode season poster path + {seriesposter1width} width of 1st poster + {seriesposter1height} height of 1st poster + {seriesposter1path} path of 1st poster + {seriesposter2width} width of 2nd poster + {seriesposter2height} height of 2nd poster + {seriesposter2path} path of 2nd poster + {seriesposter3width} width of 3rd poster + {seriesposter3height} height of 3rd poster + {seriesposter3path} path of 3rd poster + {seriesfanart1width} width of 1st fanart + {seriesfanart1height} height of 1st fanart + {seriesfanart1path} path of 1st fanart + {seriesfanart2width} width of 2nd fanart + {seriesfanart2height} height of 2nd fanart + {seriesfanart2path} path of 2nd fanart + {seriesfanart3width} width of 3rd fanart + {seriesfanart3height} height of 3rd fanart + {seriesfanart3path} path of 3rd fanart + {seriesbanner1width} width of 1st banner + {seriesbanner1height} height of 1st banner + {seriesbanner1path} path of 1st banner + {seriesbanner2width} width of 2nd banner + {seriesbanner2height} height of 2nd banner + {seriesbanner2path} path of 2nd banner + {seriesbanner3width} width of 3rd banner + {seriesbanner3height} height of 3rd banner + {seriesbanner3path} path of 3rd fanart + {actors[]} array with movie actors + {actors[name]} real name of actor + {actors[role]} actor role + {actors[thumb]} absolute path of scraped actor thumb + {actors[thumbwidth]} width of scraped actor thumb + {actors[thumbheight]} height of scraped actor thumb + --> + <!-- delay (in seconds) defines the time to wait till viewelement is displayed + fadetime in ms --> + <onpause delay="60" fadetime="0"> + </onpause> + + <onpausemodeonly delay="30" fadetime="0"> + </onpausemodeonly> + +</displayreplay> diff --git a/skins/blackhole/xmlfiles/displayvolume.xml b/skins/blackhole/xmlfiles/displayvolume.xml new file mode 100644 index 0000000..1b886ad --- /dev/null +++ b/skins/blackhole/xmlfiles/displayvolume.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE displayvolume SYSTEM "../../../dtd/displayvolume.dtd"> + +<displayvolume x="79%" y="{areaheight} - {areawidth}*0.26" width="20%" height="{areawidth}*0.25" fadetime="{fadeTime}"> + + <background> + <area x="0" y="0" width="100%" height="100%" layer="2"> + <drawimage imagetype="skinpart" path="displayvolumeback" x="0" y="0" width="100%" height="100%"/> + </area> + <area x="0" y="0" width="100%" height="100%" layer="3"> + <drawimage imagetype="skinpart" path="tacho_percent_back" x="{areawidth}*0.059" y="{areawidth}*0.059" width="{areawidth}*0.882" height="{areawidth}*0.882"/> + </area> + </background> + + <!-- Available Variables volume: + {volume} current volume, range from 0 to 255 + {volpercent} current volume in % + {maxvolume} maximal volume + {mute} true if volume is muted + --> + <volume> + <area x="0" y="80%" width="100%" height="20%" layer="4"> + <drawtext align="center" valign="center" color="{clrWhite}" font="{semibold}" fontsize="80%" text="{volume} / {maxvolume}" /> + </area> + <area x="0" y="0" width="100%" height="100%" layer="5"> + <drawimage imagetype="skinpart" path="tachohands/perc_{volpercent}" x="{areawidth}*0.059" y="{areawidth}*0.059" width="{areawidth}*0.882" height="{areawidth}*0.882"/> + </area> + <area x="0" y="80%" width="20%" height="20%" layer="5"> + <drawimage condition="gt({volpercent}, 74)" imagetype="icon" path="ico_volume_full" align="center" valign="center" width="90%" height="90%"/> + <drawimage condition="gt({volpercent}, 34) ++ lt({volpercent}, 75)" imagetype="icon" path="ico_volume_medium" align="center" valign="center" width="90%" height="90%"/> + <drawimage condition="gt({volpercent}, 0) ++ lt({volpercent}, 35)" imagetype="icon" path="ico_volume_low" align="center" valign="center" width="90%" height="90%"/> + <drawimage condition="eq({volpercent}, 0)" imagetype="icon" path="ico_volume_mute" align="center" valign="center" width="90%" height="90%"/> + </area> + </volume> + +</displayvolume> diff --git a/skinskeleton/xmlfiles/displaychannel.xml b/skinskeleton/xmlfiles/displaychannel.xml index 72a058e..925e9ec 100644 --- a/skinskeleton/xmlfiles/displaychannel.xml +++ b/skinskeleton/xmlfiles/displaychannel.xml @@ -160,6 +160,15 @@ <datetime> </datetime> + <!-- Available Variables time: + {sec} current seconds + {min} current minutes + {hour} current hours + {hmins} current "hourminutes" to display an hour hand + --> + <time> + </time> + <!-- Available Variables message: {text} message text {status} true if message is a status message diff --git a/skinskeleton/xmlfiles/displaymenu.xml b/skinskeleton/xmlfiles/displaymenu.xml index 1174ff6..1a31df0 100644 --- a/skinskeleton/xmlfiles/displaymenu.xml +++ b/skinskeleton/xmlfiles/displaymenu.xml @@ -47,6 +47,14 @@ --> <datetime> </datetime> + <!-- Available Variables time: + {sec} current seconds + {min} current minutes + {hour} current hours + {hmins} current "hourminutes" to display an hour hand + --> + <time> + </time> <!-- Available Variables message: {text} message text {status} true if message is an status message diff --git a/skinskeleton/xmlfiles/displaymenudetailepg.xml b/skinskeleton/xmlfiles/displaymenudetailepg.xml index 334f52d..2a110c6 100644 --- a/skinskeleton/xmlfiles/displaymenudetailepg.xml +++ b/skinskeleton/xmlfiles/displaymenudetailepg.xml @@ -172,6 +172,9 @@ </tab> <!-- Available Variables tablabels: + {currenttab} name of currently active tab + {prevtab} name of prev tab + {nexttab} name of next tab {tabs[]} array with available tab labels {tabs[title]} title of tab {tabs[current]} true if tab is displayed currently diff --git a/skinskeleton/xmlfiles/displaymenudetailrecording.xml b/skinskeleton/xmlfiles/displaymenudetailrecording.xml index 3905ebb..0fa3a21 100644 --- a/skinskeleton/xmlfiles/displaymenudetailrecording.xml +++ b/skinskeleton/xmlfiles/displaymenudetailrecording.xml @@ -158,6 +158,9 @@ </tab> <!-- Available Variables tablabels: + {currenttab} name of currently active tab + {prevtab} name of prev tab + {nexttab} name of next tab {tabs[]} array with available tab labels {tabs[title]} title of tab {tabs[current]} true if tab is displayed currently diff --git a/skinskeleton/xmlfiles/displaymenumain.xml b/skinskeleton/xmlfiles/displaymenumain.xml index 18aa1d2..7d372cc 100644 --- a/skinskeleton/xmlfiles/displaymenumain.xml +++ b/skinskeleton/xmlfiles/displaymenumain.xml @@ -57,6 +57,13 @@ <systemload> </systemload> + <!-- Available Variables tempreatures: + {cputemp} current cpu temperature in °C + {gputemp} current gpu temperature in °C + --> + <temperatures> + </temperatures> + <!-- Available Variables currentschedule: {title} Title of the current Schedule {subtitle} Subtitle of the current Schedule diff --git a/skinskeleton/xmlfiles/displayvolume.xml b/skinskeleton/xmlfiles/displayvolume.xml index fb3da32..d5bb8a0 100644 --- a/skinskeleton/xmlfiles/displayvolume.xml +++ b/skinskeleton/xmlfiles/displayvolume.xml @@ -8,7 +8,7 @@ <!-- Available Variables volume: {volume} current volume, range from 0 to 255 - {volumepercent} current volume in % + {volpercent} current volume in % {maxvolume} maximal volume {mute} true if volume is muted --> diff --git a/views/displaychannelview.c b/views/displaychannelview.c index 8c2b90c..dc4eeea 100644 --- a/views/displaychannelview.c +++ b/views/displaychannelview.c @@ -6,7 +6,6 @@ #include "../libcore/helpers.h" cDisplayChannelView::cDisplayChannelView(cTemplateView *tmplView) : cView(tmplView) { - lastDate = ""; lastScreenWidth = 0; lastScreenHeight = 0; lastSignalDisplay = 0; @@ -64,35 +63,31 @@ void cDisplayChannelView::DrawDate(void) { if (!ViewElementImplemented(veDateTime)) { return; } - cString curDate = DayDateTime(); - if (strcmp(curDate, lastDate)) { - map < string, string > stringTokens; - map < string, int > intTokens; - - time_t t = time(0); // get time now - struct tm * now = localtime(&t); - - intTokens.insert(pair<string, int>("year", now->tm_year + 1900)); - intTokens.insert(pair<string, int>("day", now->tm_mday)); - - char monthname[20]; - char monthshort[10]; - strftime(monthshort, sizeof(monthshort), "%b", now); - strftime(monthname, sizeof(monthname), "%B", now); - - stringTokens.insert(pair<string,string>("monthname", monthname)); - stringTokens.insert(pair<string,string>("monthnameshort", monthshort)); - stringTokens.insert(pair<string,string>("month", *cString::sprintf("%02d", now->tm_mon + 1))); - stringTokens.insert(pair<string,string>("dayleadingzero", *cString::sprintf("%02d", now->tm_mday))); - stringTokens.insert(pair<string,string>("dayname", *WeekDayNameFull(now->tm_wday))); - stringTokens.insert(pair<string,string>("daynameshort", *WeekDayName(now->tm_wday))); - stringTokens.insert(pair<string,string>("time", *TimeString(t))); - - ClearViewElement(veDateTime); - DrawViewElement(veDateTime, &stringTokens, &intTokens); - - lastDate = curDate; + + map < string, string > stringTokens; + map < string, int > intTokens; + + if (!SetDate(stringTokens, intTokens)) { + return; } + + ClearViewElement(veDateTime); + DrawViewElement(veDateTime, &stringTokens, &intTokens); +} + +void cDisplayChannelView::DrawTime(void) { + if (!ViewElementImplemented(veTime)) { + return; + } + + map < string, string > stringTokens; + map < string, int > intTokens; + + if (!SetTime(stringTokens, intTokens)) { + return; + } + ClearViewElement(veTime); + DrawViewElement(veTime, &stringTokens, &intTokens); } void cDisplayChannelView::DrawProgressBar(cString &start, cString &stop, int Current, int Total) { diff --git a/views/displaychannelview.h b/views/displaychannelview.h index 4cb0be4..bae9910 100644 --- a/views/displaychannelview.h +++ b/views/displaychannelview.h @@ -7,7 +7,6 @@ class cDisplayChannelView : public cView, public cViewHelpers { private: - cString lastDate; int lastScreenWidth; int lastScreenHeight; int lastSignalDisplay; @@ -27,6 +26,7 @@ public: void DrawChannel(cString &number, cString &name, cString &id, bool switching); void ClearChannel(void); void DrawDate(void); + void DrawTime(void); void DrawProgressBar(cString &start, cString &stop, int Current, int Total); void ClearProgressBar(void); void DrawProgressBarBack(void); diff --git a/views/displaymenudetailview.c b/views/displaymenudetailview.c index cec9749..527db7e 100644 --- a/views/displaymenudetailview.c +++ b/views/displaymenudetailview.c @@ -790,18 +790,42 @@ void cDisplayMenuDetailView::DrawTabLabels(void) { map < string, int > labelIntTokens; map < string, vector< map< string, string > > > labelLoopTokens; + string labelPrev = ""; + string labelPrevTemp = ""; + string labelCurrent = ""; + string labelNext = ""; + bool wasCurrent = false; vector< map< string, string > > tabLabels; for (list<cTemplateViewTab*>::iterator it = activeTabs.begin(); it != activeTabs.end(); it++) { cTemplateViewTab *tab = *it; map< string, string > tabLabel; tabLabel.insert(pair< string, string >("tabs[title]", tab->GetName())); + if (wasCurrent) { + labelNext = tab->GetName(); + } if (tab == currentTmplTab) { + wasCurrent = true; + labelCurrent = tab->GetName(); + labelPrev = labelPrevTemp; tabLabel.insert(pair< string, string >("tabs[current]", "1")); } else { + wasCurrent = false; tabLabel.insert(pair< string, string >("tabs[current]", "0")); } + labelPrevTemp = tab->GetName(); tabLabels.push_back(tabLabel); } + if (labelNext.size() == 0 && activeTabs.size() > 0) { + cTemplateViewTab *firstTab = activeTabs.front(); + labelNext = firstTab->GetName(); + } + if (labelPrev.size() == 0 && activeTabs.size() > 0) { + cTemplateViewTab *lastTab = activeTabs.back(); + labelPrev = lastTab->GetName(); + } + labelStringTokens.insert(pair< string, string >("currenttab", labelCurrent)); + labelStringTokens.insert(pair< string, string >("nexttab", labelNext)); + labelStringTokens.insert(pair< string, string >("prevtab", labelPrev)); labelLoopTokens.insert(pair< string, vector< map< string, string > > >("tabs", tabLabels)); ClearViewElement(veTabLabels); diff --git a/views/displaymenurootview.c b/views/displaymenurootview.c index 47de424..556e19a 100644 --- a/views/displaymenurootview.c +++ b/views/displaymenurootview.c @@ -393,10 +393,8 @@ void cDisplayMenuRootView::Render(void) { if (!view) return; if (!view->DrawBackground()) { - if (!defaultBackgroundDrawn) { - defaultBackgroundDrawn = true; - DrawBackground(); - } + defaultBackgroundDrawn = true; + DrawBackground(); } else { defaultBackgroundDrawn = false; } @@ -415,13 +413,6 @@ void cDisplayMenuRootView::Render(void) { defaultButtonsDrawn = false; } - if (!view->DrawDateTime()) { - defaultDateTimeDrawn = true; - DrawDateTime(); - } else { - defaultDateTimeDrawn = false; - } - view->DrawStaticViewElements(); view->DrawDynamicViewElements(); } @@ -443,7 +434,24 @@ void cDisplayMenuRootView::RenderMenuScrollBar(int Total, int Offset) { } bool cDisplayMenuRootView::RenderDynamicElements(void) { - return view->DrawDynamicViewElements(); + bool updated = false; + if (view->DrawTime()) { + updated = true; + } else if (DrawTime()) { + updated = true; + } + if (view->DrawDynamicViewElements()){ + updated = true; + } + + if (!view->DrawDateTime()) { + defaultDateTimeDrawn = true; + DrawDateTime(); + } else { + defaultDateTimeDrawn = false; + } + + return updated; } /******************************************************************* @@ -451,7 +459,9 @@ bool cDisplayMenuRootView::RenderDynamicElements(void) { *******************************************************************/ void cDisplayMenuRootView::DrawBackground(void) { - DrawViewElement(veBackground); + map < string, string > stringTokens; + map < string, int > intTokens; + DrawViewElement(veBackground, &stringTokens, &intTokens); } void cDisplayMenuRootView::DrawHeader(void) { if (!ViewElementImplemented(veHeader)) { @@ -500,28 +510,29 @@ void cDisplayMenuRootView::DrawDateTime(void) { map < string, string > stringTokens; map < string, int > intTokens; - time_t t = time(0); // get time now - struct tm * now = localtime(&t); - - intTokens.insert(pair<string, int>("year", now->tm_year + 1900)); - intTokens.insert(pair<string, int>("day", now->tm_mday)); - - char monthname[20]; - char monthshort[10]; - strftime(monthshort, sizeof(monthshort), "%b", now); - strftime(monthname, sizeof(monthname), "%B", now); - - stringTokens.insert(pair<string,string>("monthname", monthname)); - stringTokens.insert(pair<string,string>("monthnameshort", monthshort)); - stringTokens.insert(pair<string,string>("month", *cString::sprintf("%02d", now->tm_mon + 1))); - stringTokens.insert(pair<string,string>("dayleadingzero", *cString::sprintf("%02d", now->tm_mday))); - stringTokens.insert(pair<string,string>("dayname", *WeekDayNameFull(now->tm_wday))); - stringTokens.insert(pair<string,string>("daynameshort", *WeekDayName(now->tm_wday))); - stringTokens.insert(pair<string,string>("time", *TimeString(t))); + if (!SetDate(stringTokens, intTokens)) { + return; + } ClearViewElement(veDateTime); DrawViewElement(veDateTime, &stringTokens, &intTokens); +} +bool cDisplayMenuRootView::DrawTime(void) { + if (!ViewElementImplemented(veTime)) { + return false; + } + + map < string, string > stringTokens; + map < string, int > intTokens; + + if (!SetTime(stringTokens, intTokens)) { + return false; + } + + ClearViewElement(veTime); + DrawViewElement(veTime, &stringTokens, &intTokens); + return true; } diff --git a/views/displaymenurootview.h b/views/displaymenurootview.h index a605507..33a78a9 100644 --- a/views/displaymenurootview.h +++ b/views/displaymenurootview.h @@ -12,7 +12,7 @@ enum ePluginMenuType { mtUnknown }; -class cDisplayMenuRootView : public cView { +class cDisplayMenuRootView : public cView, public cViewHelpers { private: eMenuCategory cat; eSubView viewType; @@ -35,6 +35,7 @@ private: void DrawBackground(void); void DrawHeader(void); void DrawDateTime(void); + bool DrawTime(void); void DrawColorButtons(void); void DrawMessage(eMessageType type, const char *text); void ClearRootView(void); diff --git a/views/displaymenuview.c b/views/displaymenuview.c index 5f9b0b8..e7ec491 100644 --- a/views/displaymenuview.c +++ b/views/displaymenuview.c @@ -1,4 +1,6 @@ #define __STL_CONFIG_H +#include <fstream> +#include <iostream> #include <vdr/menu.h> #include <vdr/videodir.h> #include "displaymenuview.h" @@ -25,7 +27,10 @@ bool cDisplayMenuView::DrawBackground(void) { if (!ViewElementImplemented(veBackground)) { return false; } - DrawViewElement(veBackground); + map < string, string > stringTokens; + map < string, int > intTokens; + + DrawViewElement(veBackground, &stringTokens, &intTokens); return true; } @@ -72,35 +77,36 @@ bool cDisplayMenuView::DrawDateTime(void) { return false; } - cString curDate = DayDateTime(); - map < string, string > stringTokens; map < string, int > intTokens; - time_t t = time(0); // get time now - struct tm * now = localtime(&t); - - intTokens.insert(pair<string, int>("year", now->tm_year + 1900)); - intTokens.insert(pair<string, int>("day", now->tm_mday)); - - char monthname[20]; - char monthshort[10]; - strftime(monthshort, sizeof(monthshort), "%b", now); - strftime(monthname, sizeof(monthname), "%B", now); - - stringTokens.insert(pair<string,string>("monthname", monthname)); - stringTokens.insert(pair<string,string>("monthnameshort", monthshort)); - stringTokens.insert(pair<string,string>("month", *cString::sprintf("%02d", now->tm_mon + 1))); - stringTokens.insert(pair<string,string>("dayleadingzero", *cString::sprintf("%02d", now->tm_mday))); - stringTokens.insert(pair<string,string>("dayname", *WeekDayNameFull(now->tm_wday))); - stringTokens.insert(pair<string,string>("daynameshort", *WeekDayName(now->tm_wday))); - stringTokens.insert(pair<string,string>("time", *TimeString(t))); + if (!SetDate(stringTokens, intTokens)) { + return false; + } ClearViewElement(veDateTime); DrawViewElement(veDateTime, &stringTokens, &intTokens); return true; } +bool cDisplayMenuView::DrawTime(void) { + if (!ViewElementImplemented(veTime)) { + return false; + } + + map < string, string > stringTokens; + map < string, int > intTokens; + + if (!SetTime(stringTokens, intTokens)) { + return false; + } + + ClearViewElement(veTime); + DrawViewElement(veTime, &stringTokens, &intTokens); + + return true; +} + bool cDisplayMenuView::DrawColorButtons(void) { if (!ViewElementImplemented(veButtons)) { return false; @@ -229,6 +235,7 @@ cDisplayMenuMainView::~cDisplayMenuMainView() { void cDisplayMenuMainView::DrawStaticViewElements(void) { DrawTimers(); DrawDiscUsage(); + DrawTemperatures(); DrawCurrentSchedule(); DrawCustomTokens(); } @@ -374,7 +381,30 @@ bool cDisplayMenuMainView::DrawLoad(void) { return false; } string load = *cString::sprintf("%.2f", systemLoad); + int loadHand = systemLoad * 1000; + int loadHandValue = 0; + if (loadHand > 2500) + loadHandValue = 2525; + else { + + int loadHandDec = loadHand - (loadHand / 100) * 100; + + if (loadHandDec <= 12) + loadHandDec = 0; + else if (loadHandDec <= 37) + loadHandDec = 25; + else if (loadHandDec <= 62) + loadHandDec = 50; + else if (loadHandDec <= 87) + loadHandDec = 75; + else + loadHandDec = 0; + + loadHandValue = loadHand / 100 * 100 + loadHandDec; + } + stringTokens.insert(pair<string,string>("load", load)); + intTokens.insert(pair<string,int>("loadhand", loadHandValue)); lastSystemLoad = systemLoad; } @@ -384,6 +414,55 @@ bool cDisplayMenuMainView::DrawLoad(void) { return true; } +void cDisplayMenuMainView::DrawTemperatures(void) { + if (!ViewElementImplemented(veTemperatures)) { + return; + } + + cString execCommand = cString::sprintf("cd \"%s/\"; \"%s/temperatures\"", SCRIPTFOLDER, SCRIPTFOLDER); + system(*execCommand); + + string tempCPU, tempGPU; + int cpu, gpu; + + cString itemFilename = cString::sprintf("%s/cpu", SCRIPTOUTPUTPATH ); + ifstream file(*itemFilename, ifstream::in); + if( file.is_open() ) { + std::getline(file, tempCPU); + if (tempCPU.size() > 2) { + cpu = atoi(tempCPU.substr(0,2).c_str()); + } else + cpu = 0; + file.close(); + } else { + tempCPU = "0°C"; + cpu = 0; + } + + itemFilename = cString::sprintf("%s/gpu", SCRIPTOUTPUTPATH ); + ifstream file2(*itemFilename, ifstream::in); + if( file2.is_open() ) { + std::getline(file2, tempGPU); + if (tempGPU.size() > 2) { + gpu = atoi(tempGPU.substr(0,2).c_str()); + } else + gpu = 0; + file2.close(); + } else { + tempGPU = "0°C"; + gpu = 0; + } + + map < string, string > stringTokens; + map < string, int > intTokens; + + intTokens.insert(pair<string,int>("cputemp", cpu)); + intTokens.insert(pair<string,int>("gputemp", gpu)); + + ClearViewElement(veTemperatures); + DrawViewElement(veTemperatures, &stringTokens, &intTokens); +} + bool cDisplayMenuMainView::DrawDevices(void) { if (!ViewElementImplemented(veDevices)) { return false; diff --git a/views/displaymenuview.h b/views/displaymenuview.h index 04bc986..da1c55c 100644 --- a/views/displaymenuview.h +++ b/views/displaymenuview.h @@ -5,7 +5,7 @@ #include "viewhelpers.h" #include "displaymenulistview.h" -class cDisplayMenuView : public cView { +class cDisplayMenuView : public cView, public cViewHelpers { protected: eMenuCategory cat; string menuTitle; @@ -22,6 +22,7 @@ public: bool DrawBackground(void); virtual bool DrawHeader(void); bool DrawDateTime(void); + bool DrawTime(void); bool DrawColorButtons(void); bool DrawMessage(eMessageType type, const char *text); void DrawScrollbar(int numMax, int numDisplayed, int offset); @@ -30,13 +31,14 @@ public: bool BackgroundImplemented(void); }; -class cDisplayMenuMainView : public cDisplayMenuView, public cViewHelpers { +class cDisplayMenuMainView : public cDisplayMenuView { private: bool initial; double lastSystemLoad; void DrawTimers(void); void DrawDiscUsage(void); bool DrawLoad(void); + void DrawTemperatures(void); bool DrawDevices(void); void DrawCurrentSchedule(void); void DrawCustomTokens(void); diff --git a/views/displayreplayview.c b/views/displayreplayview.c index 299978f..1c8429b 100644 --- a/views/displayreplayview.c +++ b/views/displayreplayview.c @@ -6,7 +6,6 @@ cDisplayReplayView::cDisplayReplayView(cTemplateView *tmplView) : cView(tmplView) { onPauseView = NULL; - lastDate = ""; numMarksLast = 0; lastMarks = NULL; markActive = -1; @@ -43,40 +42,35 @@ void cDisplayReplayView::DrawBackground(bool modeOnly) { DrawViewElement(veBackground, &stringTokens, &intTokens); } -void cDisplayReplayView::DrawDate(bool modeOnly) { - if (modeOnly) - return; +void cDisplayReplayView::DrawDate(void) { if (!ViewElementImplemented(veDateTime)) { return; } - cString curDate = DayDateTime(); - if (strcmp(curDate, lastDate)) { - map < string, string > stringTokens; - map < string, int > intTokens; - - time_t t = time(0); // get time now - struct tm * now = localtime(&t); - - intTokens.insert(pair<string, int>("year", now->tm_year + 1900)); - intTokens.insert(pair<string, int>("day", now->tm_mday)); - - char monthname[20]; - char monthshort[10]; - strftime(monthshort, sizeof(monthshort), "%b", now); - strftime(monthname, sizeof(monthname), "%B", now); - stringTokens.insert(pair<string,string>("monthname", monthname)); - stringTokens.insert(pair<string,string>("monthnameshort", monthshort)); - stringTokens.insert(pair<string,string>("month", *cString::sprintf("%02d", now->tm_mon + 1))); - stringTokens.insert(pair<string,string>("dayleadingzero", *cString::sprintf("%02d", now->tm_mday))); - stringTokens.insert(pair<string,string>("dayname", *WeekDayNameFull(now->tm_wday))); - stringTokens.insert(pair<string,string>("daynameshort", *WeekDayName(now->tm_wday))); - stringTokens.insert(pair<string,string>("time", *TimeString(t))); - - ClearViewElement(veDateTime); - DrawViewElement(veDateTime, &stringTokens, &intTokens); - - lastDate = curDate; + + map < string, string > stringTokens; + map < string, int > intTokens; + + if (!SetDate(stringTokens, intTokens)) { + return; + } + + ClearViewElement(veDateTime); + DrawViewElement(veDateTime, &stringTokens, &intTokens); +} + +void cDisplayReplayView::DrawTime(void) { + if (!ViewElementImplemented(veTime)) { + return; } + + map < string, string > stringTokens; + map < string, int > intTokens; + + if (!SetTime(stringTokens, intTokens)) { + return; + } + ClearViewElement(veTime); + DrawViewElement(veTime, &stringTokens, &intTokens); } void cDisplayReplayView::DrawTitle(const cRecording *recording) { @@ -134,75 +128,71 @@ void cDisplayReplayView::DrawScraperContent(const cRecording *recording) { return; } - static cPlugin *pScraper = GetScraperPlugin(); - if (!pScraper) { - return; - } + int mediaWidth = 0; + int mediaHeight = 0; + string mediaPath = ""; + bool isBanner = false; + int posterWidth = 0; + int posterHeight = 0; + string posterPath = ""; + bool hasPoster = false; + int bannerWidth = 0; + int bannerHeight = 0; + string bannerPath = ""; + bool hasBanner = false; - ScraperGetPosterBannerV2 call; - call.event = NULL; - call.recording = recording; - if (pScraper->Service("GetPosterBannerV2", &call)) { - int mediaWidth = 0; - int mediaHeight = 0; - string mediaPath = ""; - bool isBanner = false; - int posterWidth = 0; - int posterHeight = 0; - string posterPath = ""; - bool hasPoster = false; - int bannerWidth = 0; - int bannerHeight = 0; - string bannerPath = ""; - bool hasBanner = false; - - if ((call.type == tSeries) && call.banner.path.size() > 0) { - mediaWidth = call.banner.width; - mediaHeight = call.banner.height; - mediaPath = call.banner.path; - isBanner = true; - bannerWidth = mediaWidth; - bannerHeight = mediaHeight; - bannerPath = mediaPath; - hasBanner = true; - - ScraperGetPoster callPoster; - callPoster.event = NULL; - callPoster.recording = recording; - if (pScraper->Service("GetPoster", &callPoster)) { - posterWidth = callPoster.poster.width; - posterHeight = callPoster.poster.height; - posterPath = callPoster.poster.path; + static cPlugin *pScraper = GetScraperPlugin(); + if (pScraper) { + ScraperGetPosterBannerV2 call; + call.event = NULL; + call.recording = recording; + if (pScraper->Service("GetPosterBannerV2", &call)) { + if ((call.type == tSeries) && call.banner.path.size() > 0) { + mediaWidth = call.banner.width; + mediaHeight = call.banner.height; + mediaPath = call.banner.path; + isBanner = true; + bannerWidth = mediaWidth; + bannerHeight = mediaHeight; + bannerPath = mediaPath; + hasBanner = true; + + ScraperGetPoster callPoster; + callPoster.event = NULL; + callPoster.recording = recording; + if (pScraper->Service("GetPoster", &callPoster)) { + posterWidth = callPoster.poster.width; + posterHeight = callPoster.poster.height; + posterPath = callPoster.poster.path; + hasPoster = true; + } + } else if (call.type == tMovie && call.poster.path.size() > 0 && call.poster.height > 0) { + mediaWidth = call.poster.width; + mediaHeight = call.poster.height; + mediaPath = call.poster.path; + posterWidth = call.poster.width; + posterHeight = call.poster.height; + posterPath = call.poster.path; hasPoster = true; } - } else if (call.type == tMovie && call.poster.path.size() > 0 && call.poster.height > 0) { - mediaWidth = call.poster.width; - mediaHeight = call.poster.height; - mediaPath = call.poster.path; - posterWidth = call.poster.width; - posterHeight = call.poster.height; - posterPath = call.poster.path; - hasPoster = true; - } else - return; - - map < string, int > intTokens; - map < string, string > stringTokens; - intTokens.insert(pair<string,int>("mediawidth", mediaWidth)); - intTokens.insert(pair<string,int>("mediaheight", mediaHeight)); - intTokens.insert(pair<string,int>("isbanner", isBanner)); - stringTokens.insert(pair<string,string>("mediapath", mediaPath)); - intTokens.insert(pair<string,int>("posterwidth", posterWidth)); - intTokens.insert(pair<string,int>("posterheight", posterHeight)); - stringTokens.insert(pair<string,string>("posterpath", posterPath)); - intTokens.insert(pair<string,int>("hasposter", hasPoster)); - intTokens.insert(pair<string,int>("bannerwidth", bannerWidth)); - intTokens.insert(pair<string,int>("bannerheight", bannerHeight)); - stringTokens.insert(pair<string,string>("bannerpath", bannerPath)); - intTokens.insert(pair<string,int>("hasbanner", hasBanner)); - ClearViewElement(veScraperContent); - DrawViewElement(veScraperContent, &stringTokens, &intTokens); + } } + map < string, int > intTokens; + map < string, string > stringTokens; + intTokens.insert(pair<string,int>("mediawidth", mediaWidth)); + intTokens.insert(pair<string,int>("mediaheight", mediaHeight)); + intTokens.insert(pair<string,int>("isbanner", isBanner)); + stringTokens.insert(pair<string,string>("mediapath", mediaPath)); + intTokens.insert(pair<string,int>("posterwidth", posterWidth)); + intTokens.insert(pair<string,int>("posterheight", posterHeight)); + stringTokens.insert(pair<string,string>("posterpath", posterPath)); + intTokens.insert(pair<string,int>("hasposter", hasPoster)); + intTokens.insert(pair<string,int>("bannerwidth", bannerWidth)); + intTokens.insert(pair<string,int>("bannerheight", bannerHeight)); + stringTokens.insert(pair<string,string>("bannerpath", bannerPath)); + intTokens.insert(pair<string,int>("hasbanner", hasBanner)); + ClearViewElement(veScraperContent); + DrawViewElement(veScraperContent, &stringTokens, &intTokens); } void cDisplayReplayView::DrawCurrent(const char *current) { diff --git a/views/displayreplayview.h b/views/displayreplayview.h index cf94a4a..cb8f7f7 100644 --- a/views/displayreplayview.h +++ b/views/displayreplayview.h @@ -5,10 +5,9 @@ #include "view.h" #include "displayreplayonpauseview.h" -class cDisplayReplayView : public cView { +class cDisplayReplayView : public cView, public cViewHelpers { private: cDisplayReplayOnPauseView *onPauseView; - cString lastDate; int numMarksLast; int *lastMarks; int markActive; @@ -20,7 +19,8 @@ public: virtual ~cDisplayReplayView(); bool createOsd(void); void DrawBackground(bool modeOnly); - void DrawDate(bool modeOnly); + void DrawDate(void); + void DrawTime(void); void DrawTitle(const cRecording *recording); void DrawRecordingInformation(const cRecording *recording); void DrawScraperContent(const cRecording *recording); diff --git a/views/displayvolumeview.c b/views/displayvolumeview.c index e3700dd..4ab2fdd 100644 --- a/views/displayvolumeview.c +++ b/views/displayvolumeview.c @@ -40,7 +40,7 @@ void cDisplayVolumeView::DrawVolume(int current, int total, bool mute) { intTokens.insert(pair<string,int>("volume", current)); intTokens.insert(pair<string,int>("maxvolume", total)); - intTokens.insert(pair<string,int>("volumepercent", (double)current *100 / (double)total)); + intTokens.insert(pair<string,int>("volpercent", (double)current *100 / (double)total)); intTokens.insert(pair<string,int>("mute", mute)); ClearViewElement(veVolume); diff --git a/views/viewhelpers.c b/views/viewhelpers.c index 0bcc738..e0223af 100644 --- a/views/viewhelpers.c +++ b/views/viewhelpers.c @@ -6,6 +6,8 @@ cViewHelpers::cViewHelpers(void) { devicesInit = false; + lastSecond = -1; + lastMinute = -1; } cViewHelpers::~cViewHelpers() { @@ -377,3 +379,50 @@ void cViewHelpers::SetScraperTokens(const cEvent *event, const cRecording *recor } } + +bool cViewHelpers::SetTime(map < string, string > &stringTokens, map < string, int > &intTokens) { + time_t t = time(0); // get time now + struct tm * now = localtime(&t); + int sec = now->tm_sec; + if (sec == lastSecond) + return false; + + int min = now->tm_min; + int hour = now->tm_hour; + int hourMinutes = hour%12 * 5 + min / 12; + + intTokens.insert(pair<string, int>("sec", sec)); + intTokens.insert(pair<string, int>("min", min)); + intTokens.insert(pair<string, int>("hour", hour)); + intTokens.insert(pair<string, int>("hmins", hourMinutes)); + + lastSecond = sec; + return true; +} + +bool cViewHelpers::SetDate(map < string, string > &stringTokens, map < string, int > &intTokens) { + time_t t = time(0); // get time now + struct tm * now = localtime(&t); + int min = now->tm_min; + if (min == lastMinute) + return false; + + intTokens.insert(pair<string, int>("year", now->tm_year + 1900)); + intTokens.insert(pair<string, int>("day", now->tm_mday)); + + char monthname[20]; + char monthshort[10]; + strftime(monthshort, sizeof(monthshort), "%b", now); + strftime(monthname, sizeof(monthname), "%B", now); + + stringTokens.insert(pair<string,string>("monthname", monthname)); + stringTokens.insert(pair<string,string>("monthnameshort", monthshort)); + stringTokens.insert(pair<string,string>("month", *cString::sprintf("%02d", now->tm_mon + 1))); + stringTokens.insert(pair<string,string>("dayleadingzero", *cString::sprintf("%02d", now->tm_mday))); + stringTokens.insert(pair<string,string>("dayname", *WeekDayNameFull(now->tm_wday))); + stringTokens.insert(pair<string,string>("daynameshort", *WeekDayName(now->tm_wday))); + stringTokens.insert(pair<string,string>("time", *TimeString(t))); + + lastMinute = min; + return true; +}
\ No newline at end of file diff --git a/views/viewhelpers.h b/views/viewhelpers.h index 8e57bb4..2b3167b 100644 --- a/views/viewhelpers.h +++ b/views/viewhelpers.h @@ -7,11 +7,15 @@ private: int* lastSignalStrength; int* lastSignalQuality; bool* recDevices; + int lastSecond; + int lastMinute; protected: void InitDevices(void); bool SetDevices(bool initial, map<string,int> *intTokens, vector<map<string,string> > *devices); bool CheckNewMails(void); void SetScraperTokens(const cEvent *event, const cRecording *recording, map < string, string > &stringTokens, map < string, int > &intTokens, map < string, vector< map< string, string > > > &loopTokens); + bool SetTime(map < string, string > &stringTokens, map < string, int > &intTokens); + bool SetDate(map < string, string > &stringTokens, map < string, int > &intTokens); public: cViewHelpers(void); virtual ~cViewHelpers(void); |