diff options
1263 files changed, 1421 insertions, 70771 deletions
@@ -342,3 +342,6 @@ Version 0.4.7 - fixed timeshifttotal in displayreplay timeshift mode Version 0.4.8 + +- implemented Skin Repositories + @@ -48,11 +48,11 @@ DEFINES += $(shell xml2-config --cflags) DEFINES += -DSCRIPTFOLDER='"$(SKINDESIGNER_SCRIPTDIR)"' INCLUDES += $(shell pkg-config --cflags freetype2 fontconfig) - INCLUDES += $(shell pkg-config --cflags librsvg-2.0 cairo-png) -ljpeg -LIBS += $(shell pkg-config --libs librsvg-2.0 cairo-png) -ljpeg +LIBS += $(shell pkg-config --libs librsvg-2.0 cairo-png) -ljpeg LIBS += $(shell xml2-config --libs) +LIBS += $(shell pkg-config --libs libcurl) ### The object files: OBJS = $(PLUGIN).o \ @@ -67,6 +67,7 @@ OBJS = $(PLUGIN).o \ displayvolume.o \ displayplugin.o \ libcore/cairoimage.o \ + libcore/curlfuncs.o \ libcore/pixmapcontainer.o \ libcore/fontmanager.o \ libcore/imagecache.o \ @@ -49,6 +49,12 @@ void cDesignerConfig::SetPathes(void) { dsyslog("skindesigner: using Installer Skin Directory %s", *installerSkinPath); dsyslog("skindesigner: using common ChannelLogo Directory %s", *logoPath); dsyslog("skindesigner: using EPG Images Directory %s", *epgImagePath); + + vdrThemesPath = cPlugin::ConfigDirectory(PLUGIN_NAME_I18N); + size_t found = vdrThemesPath.find("/plugins"); + if (found != string::npos) + vdrThemesPath = vdrThemesPath.substr(0, found); + vdrThemesPath += "/themes/"; } void cDesignerConfig::SetSkinPath(cString path) { @@ -71,12 +77,12 @@ void cDesignerConfig::SetEpgImagePath(cString path) { epgImagePathSet = true; } -void cDesignerConfig::ReadSkins(void) { +void cDesignerConfig::ReadSkinFolder(cString &skinFolder, vector<string> *container) { DIR *folder = NULL; struct dirent *dirEntry; - folder = opendir(skinPath); + folder = opendir(skinFolder); if (!folder) { - esyslog("skindesigner: no skins found in %s", *skinPath); + esyslog("skindesigner: no skins found in %s", *skinFolder); return; } while (dirEntry = readdir(folder)) { @@ -84,9 +90,31 @@ void cDesignerConfig::ReadSkins(void) { int dirEntryType = dirEntry->d_type; if (!dirEntryName.compare(".") || !dirEntryName.compare("..") || dirEntryType != DT_DIR) continue; - skins.push_back(dirEntryName); + container->push_back(dirEntryName); + } + dsyslog("skindesigner %ld skins found in %s", container->size(), *skinFolder); +} + + + +void cDesignerConfig::ReadSkins(void) { + ReadSkinFolder(skinPath, &deliveredSkins); + ReadSkinFolder(installerSkinPath, &installerSkins); + for (vector<string>::iterator it = deliveredSkins.begin(); it != deliveredSkins.end(); it++) { + skins.push_back(*it); + } + for (vector<string>::iterator it = installerSkins.begin(); it != installerSkins.end(); it++) { + string instSkin = *it; + bool found = false; + for (vector<string>::iterator it2 = deliveredSkins.begin(); it2 != deliveredSkins.end(); it2++) { + if (!instSkin.compare(*it2)) { + found = true; + break; + } + } + if (!found) + skins.push_back(instSkin); } - dsyslog("skindesigner %ld skins found in %s", skins.size(), *skinPath); } void cDesignerConfig::ClearSkinSetups(void) { @@ -129,6 +157,35 @@ bool cDesignerConfig::GetSkin(string &skin) { return true; } +cString cDesignerConfig::GetSkinPath(string skin) { + for (vector<string>::iterator it = deliveredSkins.begin(); it != deliveredSkins.end(); it++) { + if (!skin.compare(*it)) { + return skinPath; + } + } + return installerSkinPath; +} + +void cDesignerConfig::AddNewSkinRef(string skin) { + cSkinDesigner *newSkin = new cSkinDesigner(skin); + AddSkin(newSkin); + skins.push_back(skin); + installerSkins.push_back(skin); + ReadSkinSetup(skin); + map < string, cSkinSetup* >::iterator hit = skinSetups.find(skin); + if (hit != skinSetups.end()) + (hit->second)->TranslateSetup(); +} + +cSkinDesigner* cDesignerConfig::GetNextSkinRef(void) { + if (skinRefsIterator == skinRefs.end()) { + return NULL; + } + cSkinDesigner *skin = *skinRefsIterator; + skinRefsIterator++; + return skin; +} + cSkinSetup* cDesignerConfig::GetSkinSetup(string &skin) { map< string, cSkinSetup* >::iterator hit = skinSetups.find(skin); if (hit != skinSetups.end()) { @@ -205,16 +262,16 @@ void cDesignerConfig::SetSkinSetupParameters(void) { void cDesignerConfig::ReadSkinRepos(void) { skinRepos.Read(*skinPath); - skinRepos.Debug(); - /* - cSkinRepo *holo = skinRepos.GetRepo("Holo"); - if (holo) { - esyslog("skindesigner: installing Holo"); - holo->Install(*installerSkinPath); - } - */ + dsyslog("skindesigner: read %d skinrepositories from %s", skinRepos.Count(), *skinPath); } +bool cDesignerConfig::SkinInstalled(string name) { + for (vector<string>::iterator it = installerSkins.begin(); it != installerSkins.end(); it++) { + if (!name.compare(*it)) + return true; + } + return false; +} void cDesignerConfig::UpdateGlobals(void) { string activeSkin = Setup.OSDSkin; @@ -7,6 +7,7 @@ #include <vdr/tools.h> #include <vdr/skins.h> #include <vdr/plugin.h> +#include "designer.h" #include "libcore/fontmanager.h" #include "libcore/imagecache.h" #include "libcore/recfolderinfo.h" @@ -37,12 +38,17 @@ private: map < string, multimap< int, pair <int, string> > > pluginSubViews; map < string, map< int, map <int, string> > > pluginViewElements; map < string, map< int, map <int, string> > > pluginViewGrids; + vector<cSkinDesigner*> skinRefs; + vector<cSkinDesigner*>::iterator skinRefsIterator; + vector<string> deliveredSkins; + vector<string> installerSkins; vector<string> skins; vector<string>::iterator skinIterator; map < string, cSkinSetup* > skinSetups; map < string, cSkinSetup* >::iterator setupIt; vector < pair <string, int> > skinSetupParameters; cSkinRepos skinRepos; + void ReadSkinFolder(cString &folder, vector<string> *container); public: cDesignerConfig(); ~cDesignerConfig(); @@ -56,6 +62,11 @@ public: void ReadSkinSetup(string skin); void InitSkinIterator(void) { skinIterator = skins.begin(); }; bool GetSkin(string &skin); + cString GetSkinPath(string skin); + void AddSkin(cSkinDesigner *skin) { skinRefs.push_back(skin); }; + void AddNewSkinRef(string skin); + void InitSkinRefsIterator(void) { skinRefsIterator = skinRefs.begin(); }; + cSkinDesigner *GetNextSkinRef(void); void ClearSkinSetups(void); void DebugSkinSetups(void); void DebugSkinSetupParameters(void); @@ -67,6 +78,10 @@ public: void SetSkinSetupParameters(void); void UpdateSkinSetupParameter(string name, int value); void ReadSkinRepos(void); + void InitSkinRepoIterator(void) { skinRepos.InitRepoIterator(); }; + cSkinRepo *GetNextSkinRepo(void) { return skinRepos.GetNextRepo(); }; + cSkinRepo *GetSkinRepo(string name) { return skinRepos.GetRepo(name); }; + bool SkinInstalled(string name); void SetGlobals(cGlobals *globals) { tmplGlobals = globals; }; void UpdateGlobals(void); void CheckDecimalPoint(void); @@ -92,6 +107,7 @@ public: cString installerSkinPath; cString logoPath; cString epgImagePath; + string vdrThemesPath; bool replaceDecPoint; char decPoint; //Setup Parameter @@ -1,6 +1,8 @@ #ifndef __SKINDESIGNER_H #define __SKINDESIGNER_H +class cSkinDesigner; + #include "config.h" #include "libtemplate/template.h" #include "libtemplate/xmlparser.h" diff --git a/libcore/curlfuncs.c b/libcore/curlfuncs.c new file mode 100644 index 0000000..ed1ea01 --- /dev/null +++ b/libcore/curlfuncs.c @@ -0,0 +1,236 @@ +/* +Copyright (c) 2002, Mayukh Bose +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +* Neither the name of Mayukh Bose nor the names of other +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/* + Change History: + 11/23/2004 - Removed the #include <unistd.h> line because I didn't + need it. Wonder why I had it there in the first place :). + 10/20/2004 - Publicly released this code. +*/ +#include <string> +#include <cstdio> +#include <curl/curl.h> +#include <curl/easy.h> +#include <vdr/tools.h> +#include "curlfuncs.h" + +#ifndef TRUE +#define TRUE 1 +#endif + +using namespace std; + +// Local function prototypes +int CurlDoPost(const char *url, string *sOutput, const string &sReferer, + struct curl_httppost *formpost, struct curl_slist *headerlist); + +namespace curlfuncs { + string sBuf; + bool bInitialized = false; + CURL *curl = NULL; +} + +size_t collect_data(void *ptr, size_t size, size_t nmemb, void *stream) +{ + string sTmp; + register size_t actualsize = size * nmemb; + if ((FILE *)stream == NULL) { + sTmp.assign((char *)ptr, actualsize); + curlfuncs::sBuf += sTmp; + } + else { + fwrite(ptr, size, nmemb, (FILE *)stream); + } + return actualsize; +} + +inline void InitCurlLibraryIfNeeded() +{ + if (!curlfuncs::bInitialized) { + curl_global_init(CURL_GLOBAL_ALL); + curlfuncs::curl = curl_easy_init(); + if (!curlfuncs::curl) + throw string("Could not create new curl instance"); + curl_easy_setopt(curlfuncs::curl, CURLOPT_NOPROGRESS, 1); // Do not show progress + curl_easy_setopt(curlfuncs::curl, CURLOPT_WRITEFUNCTION, collect_data); + curl_easy_setopt(curlfuncs::curl, CURLOPT_WRITEDATA, 0); // Set option to write to string + curl_easy_setopt(curlfuncs::curl, CURLOPT_FOLLOWLOCATION, TRUE); + curl_easy_setopt(curlfuncs::curl, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Mayukh's libcurl wrapper http://www.mayukhbose.com/)"); + curlfuncs::bInitialized = true; + } +} + +int CurlGetUrl(const char *url, string *sOutput, const string &sReferer) +{ + InitCurlLibraryIfNeeded(); + + curl_easy_setopt(curlfuncs::curl, CURLOPT_URL, url); // Set the URL to get + if (sReferer != "") + curl_easy_setopt(curlfuncs::curl, CURLOPT_REFERER, sReferer.c_str()); + curl_easy_setopt(curlfuncs::curl, CURLOPT_HTTPGET, TRUE); + curl_easy_setopt(curlfuncs::curl, CURLOPT_WRITEDATA, 0); // Set option to write to string + curlfuncs::sBuf = ""; + if (curl_easy_perform(curlfuncs::curl) == 0) + *sOutput = curlfuncs::sBuf; + else { + // We have an error here mate! + *sOutput = ""; + return 0; + } + + return 1; +} + +int CurlGetUrlFile(const char *url, const char *filename, const string &sReferer) +{ + int nRet = 0; + InitCurlLibraryIfNeeded(); + + // Point the output to a file + FILE *fp; + if ((fp = fopen(filename, "w")) == NULL) + return 0; + + curl_easy_setopt(curlfuncs::curl, CURLOPT_WRITEDATA, fp); // Set option to write to file + curl_easy_setopt(curlfuncs::curl, CURLOPT_URL, url); // Set the URL to get + if (sReferer != "") + curl_easy_setopt(curlfuncs::curl, CURLOPT_REFERER, sReferer.c_str()); + curl_easy_setopt(curlfuncs::curl, CURLOPT_HTTPGET, TRUE); + if (curl_easy_perform(curlfuncs::curl) == 0) + nRet = 1; + else + nRet = 0; + + curl_easy_setopt(curlfuncs::curl, CURLOPT_WRITEDATA, NULL); // Set option back to default (string) + fclose(fp); + return nRet; +} + +int CurlPostUrl(const char *url, const string &sPost, string *sOutput, const string &sReferer) +{ + InitCurlLibraryIfNeeded(); + + int retval = 1; + string::size_type nStart = 0, nEnd, nPos; + string sTmp, sName, sValue; + struct curl_httppost *formpost=NULL; + struct curl_httppost *lastptr=NULL; + struct curl_slist *headerlist=NULL; + + // Add the POST variables here + while ((nEnd = sPost.find("##", nStart)) != string::npos) { + sTmp = sPost.substr(nStart, nEnd - nStart); + if ((nPos = sTmp.find("=")) == string::npos) + return 0; + sName = sTmp.substr(0, nPos); + sValue = sTmp.substr(nPos+1); + curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, sName.c_str(), CURLFORM_COPYCONTENTS, sValue.c_str(), CURLFORM_END); + nStart = nEnd + 2; + } + sTmp = sPost.substr(nStart); + if ((nPos = sTmp.find("=")) == string::npos) + return 0; + sName = sTmp.substr(0, nPos); + sValue = sTmp.substr(nPos+1); + curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, sName.c_str(), CURLFORM_COPYCONTENTS, sValue.c_str(), CURLFORM_END); + + retval = CurlDoPost(url, sOutput, sReferer, formpost, headerlist); + + curl_formfree(formpost); + curl_slist_free_all(headerlist); + return retval; +} + +int CurlPostRaw(const char *url, const string &sPost, string *sOutput, const string &sReferer) +{ + InitCurlLibraryIfNeeded(); + + int retval; + struct curl_httppost *formpost=NULL; + struct curl_slist *headerlist=NULL; + + curl_easy_setopt(curlfuncs::curl, CURLOPT_POSTFIELDS, sPost.c_str()); + curl_easy_setopt(curlfuncs::curl, CURLOPT_POSTFIELDSIZE, 0); //FIXME: Should this be the size instead, in case this is binary string? + + retval = CurlDoPost(url, sOutput, sReferer, formpost, headerlist); + + curl_formfree(formpost); + curl_slist_free_all(headerlist); + return retval; +} + +int CurlDoPost(const char *url, string *sOutput, const string &sReferer, + struct curl_httppost *formpost, struct curl_slist *headerlist) +{ + headerlist = curl_slist_append(headerlist, "Expect:"); + + // Now do the form post + curl_easy_setopt(curlfuncs::curl, CURLOPT_URL, url); + if (sReferer != "") + curl_easy_setopt(curlfuncs::curl, CURLOPT_REFERER, sReferer.c_str()); + curl_easy_setopt(curlfuncs::curl, CURLOPT_HTTPPOST, formpost); + + curl_easy_setopt(curlfuncs::curl, CURLOPT_WRITEDATA, 0); // Set option to write to string + curlfuncs::sBuf = ""; + if (curl_easy_perform(curlfuncs::curl) == 0) { + *sOutput = curlfuncs::sBuf; + return 1; + } + else { + // We have an error here mate! + *sOutput = ""; + return 0; + } +} + +void FreeCurlLibrary(void) +{ + if (curlfuncs::curl) + curl_easy_cleanup(curlfuncs::curl); + curl_global_cleanup(); + curlfuncs::bInitialized = false; +} + +int CurlSetCookieFile(char *filename) +{ + InitCurlLibraryIfNeeded(); + if (curl_easy_setopt(curlfuncs::curl, CURLOPT_COOKIEFILE, filename) != 0) + return 0; + if (curl_easy_setopt(curlfuncs::curl, CURLOPT_COOKIEJAR, filename) != 0) + return 0; + return 1; +} + +char *CurlEscape(const char *url) { + InitCurlLibraryIfNeeded(); + return curl_escape(url , strlen(url)); +} diff --git a/libcore/curlfuncs.h b/libcore/curlfuncs.h new file mode 100644 index 0000000..e0f76cf --- /dev/null +++ b/libcore/curlfuncs.h @@ -0,0 +1,45 @@ +/* +Copyright (c) 2002, Mayukh Bose +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +* Neither the name of Mayukh Bose nor the names of other +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef __CURLFUNCS_H_20020513__ +#define __CURLFUNCS_H_20020513__ +#include <string> + using namespace std; + +int CurlGetUrl(const char *url, string *sOutput, const string &sReferer=""); +int CurlGetUrlFile(const char *url, const char *filename, const string &sReferer=""); +void FreeCurlLibrary(void); +int CurlSetCookieFile(char *filename); +int CurlPostUrl(const char *url, const string &sPost, string *sOutput, const string &sReferer = ""); +int CurlPostRaw(const char *url, const string &sPost, string *sOutput, const string &sReferer = ""); +char *CurlEscape(const char *url); +#endif diff --git a/libcore/fontmanager.c b/libcore/fontmanager.c index 1f45af7..1bca226 100644 --- a/libcore/fontmanager.c +++ b/libcore/fontmanager.c @@ -178,3 +178,18 @@ int cFontManager::GetFontHeight(const char *name, int height, int charWidth) { return realHeight; } + +bool cFontManager::FontInstalled(string fontName) { + cStringList availableFonts; + cFont::GetAvailableFontNames(&availableFonts); + int numFonts = availableFonts.Size(); + string compare = fontName + ":"; + for (int i=0; i<numFonts; i++) { + string currentFont = availableFonts[i]; + if (currentFont.find(compare) == 0) { + return true; + } + } + return false; +} + diff --git a/libcore/fontmanager.h b/libcore/fontmanager.h index bfabb5c..5661c2b 100644 --- a/libcore/fontmanager.h +++ b/libcore/fontmanager.h @@ -31,6 +31,7 @@ class cFontManager { cFont *FontUncached(string fontName, int fontSize); void Debug(void); void ListAvailableFonts(void); + bool FontInstalled(string fontName); }; #endif //__FONTMANAGER_H
\ No newline at end of file diff --git a/libcore/helpers.c b/libcore/helpers.c index 6aef313..1e72dc3 100644 --- a/libcore/helpers.c +++ b/libcore/helpers.c @@ -2,6 +2,8 @@ #include <sstream> #include <vector> #include <stdlib.h> +#include <fstream> +#include <iostream> #include "helpers.h" #include <vdr/skins.h> diff --git a/libcore/imagecache.c b/libcore/imagecache.c index af05777..f9878fe 100644 --- a/libcore/imagecache.c +++ b/libcore/imagecache.c @@ -27,18 +27,20 @@ cImageCache::~cImageCache() { } void cImageCache::SetPathes(void) { - string logoPathSkin = *cString::sprintf("%s%s/themes/%s/logos/", *config.skinPath, Setup.OSDSkin, Setup.OSDTheme); + cString skinPath = config.GetSkinPath(Setup.OSDSkin); + + string logoPathSkin = *cString::sprintf("%s%s/themes/%s/logos/", *skinPath, Setup.OSDSkin, Setup.OSDTheme); if (FolderExists(logoPathSkin)) { logoPath = logoPathSkin; } else { logoPath = *config.logoPath; } - iconPathSkin = *cString::sprintf("%s%s/", *config.skinPath, Setup.OSDSkin); - skinPartsPathSkin = *cString::sprintf("%s%s/skinparts/", *config.skinPath, Setup.OSDSkin); + iconPathSkin = *cString::sprintf("%s%s/", *skinPath, Setup.OSDSkin); + skinPartsPathSkin = *cString::sprintf("%s%s/skinparts/", *skinPath, Setup.OSDSkin); - iconPathTheme = *cString::sprintf("%s%s/themes/%s/", *config.skinPath, Setup.OSDSkin, Setup.OSDTheme); - skinPartsPathTheme = *cString::sprintf("%s%s/themes/%s/skinparts/", *config.skinPath, Setup.OSDSkin, Setup.OSDTheme); + iconPathTheme = *cString::sprintf("%s%s/themes/%s/", *skinPath, Setup.OSDSkin, Setup.OSDTheme); + skinPartsPathTheme = *cString::sprintf("%s%s/themes/%s/skinparts/", *skinPath, Setup.OSDSkin, Setup.OSDTheme); dsyslog("skindesigner: using channel logo path %s", logoPath.c_str()); dsyslog("skindesigner: using icon path %s", iconPathTheme.c_str()); diff --git a/libcore/skinrepo.c b/libcore/skinrepo.c index 1d5e3e4..4822c5d 100644 --- a/libcore/skinrepo.c +++ b/libcore/skinrepo.c @@ -1,3 +1,5 @@ +#include <iostream> +#include <fstream> #include "skinrepo.h" #include "../libcore/helpers.h" @@ -8,27 +10,61 @@ using namespace std; cSkinRepo::cSkinRepo(void) { name = ""; repoType = rtUndefined; + action = eaUndefined; url = ""; + author = "unknown"; command = ""; + command2 = ""; tempfile = ""; result = -1; + skinPath = ""; + themesPath = ""; } cSkinRepo::~cSkinRepo() { } -void cSkinRepo::Install(string path) { +void cSkinRepo::Install(string path, string themesPath) { if (Running()) return; + action = eaInstall; + this->skinPath = path + name; + this->themesPath = themesPath; if (repoType == rtGit) { - command = *cString::sprintf("git clone --progress %s %s%s", url.c_str(), path.c_str(), name.c_str()); + command = *cString::sprintf("git clone --progress %s %s", url.c_str(), skinPath.c_str()); tempfile = *cString::sprintf("gitclone_%s_%ld.out", name.c_str(), time(0)); Start(); } else if (repoType == rtZipUrl) { + size_t hit = url.find_last_of('/'); + if (hit == string::npos) + return; + string filename = url.substr(hit+1); + + command = *cString::sprintf("wget -P /tmp/ %s", url.c_str()); + command2 = *cString::sprintf("unzip /tmp/%s -d %s", filename.c_str(), path.c_str()); + + Start(); + } +} + +void cSkinRepo::Update(string path) { + if (Running()) + return; + action = eaUpdate; + this->skinPath = path + name; + if (repoType == rtGit) { + + command = *cString::sprintf("cd %s; git pull", skinPath.c_str()); + tempfile = *cString::sprintf("gitpull_%s_%ld.out", name.c_str(), time(0)); + + Start(); + + } else if (repoType == rtZipUrl) { + //TODO } @@ -40,9 +76,66 @@ void cSkinRepo::Action(void) { if (tempfile.size() > 0) { command = *cString::sprintf("%s > /tmp/%s 2>&1", command.c_str(), tempfile.c_str()); } - dsyslog("skindesigner: executing %s", command.c_str()); + result = system (command.c_str()); - dsyslog("skindesigner: execution done, result: %d", result); + + if (result == 0 && command2.size() > 0) { + result = system (command2.c_str()); + } + + if (result == 0) { + if (action == eaInstall) + CreateThemeFiles(); + } +} + +void cSkinRepo::CreateThemeFiles(void) { + string availableThemesPath = skinPath + "/themes/"; + DIR *folder = NULL; + struct dirent *dirEntry; + folder = opendir(availableThemesPath.c_str()); + if (!folder) { + return; + } + vector<string> skinThemes; + while (dirEntry = readdir(folder)) { + string dirEntryName = dirEntry->d_name; + int dirEntryType = dirEntry->d_type; + if (!dirEntryName.compare(".") || !dirEntryName.compare("..") || dirEntryType != DT_DIR) + continue; + skinThemes.push_back(dirEntryName); + } + for (vector<string>::iterator it = skinThemes.begin(); it != skinThemes.end(); it++) { + string themeName = *it; + string themeFileName = themesPath; + themeFileName += name + "-" + themeName + ".theme"; + if (FileExists(themeFileName)) { + continue; + } + ofstream themeFile (themeFileName.c_str()); + if (themeFile.is_open()) { + themeFile << "Description = "; + themeFile << themeName << "\n"; + themeFile.close(); + } + } +} + +bool cSkinRepo::SuccessfullyUpdated(void) { + string logfilePath = "/tmp/" + tempfile; + bool updated = true; + string line; + ifstream logfile(logfilePath.c_str()); + if (logfile.is_open()) { + while ( getline (logfile, line) ) { + if (line.find("up-to-date") != string::npos) { + updated = false; + break; + } + } + logfile.close(); + } + return updated; } void cSkinRepo::Debug() { @@ -53,6 +146,7 @@ void cSkinRepo::Debug() { strRepoType = "ZipUrl"; dsyslog("skindesigner: --- skinrepo %s, Type %s ---", name.c_str(), strRepoType.c_str()); dsyslog("skindesigner: url %s", url.c_str()); + dsyslog("skindesigner: author %s", author.c_str()); if (specialFonts.size() > 0) { for (vector<string>::iterator it = specialFonts.begin(); it != specialFonts.end(); it++) { dsyslog("skindesigner: special font %s", (*it).c_str()); @@ -87,7 +181,6 @@ cSkinRepos::~cSkinRepos() { void cSkinRepos::Read(string path) { string filepath = path + repoFile; - esyslog("skindesigner: reading skinrepos from %s", filepath.c_str()); xmlParserCtxtPtr ctxt = xmlNewParserCtxt(); xmlNodePtr root = NULL; @@ -132,6 +225,14 @@ cSkinRepo *cSkinRepos::GetRepo(string name) { return NULL; } +cSkinRepo *cSkinRepos::GetNextRepo(void) { + if (repoIt == repos.end()) + return NULL; + cSkinRepo *repo = *repoIt; + repoIt++; + return repo; +} + void cSkinRepos::Debug(void) { for (vector<cSkinRepo*>::iterator it = repos.begin(); it != repos.end(); it++) { @@ -171,6 +272,11 @@ void cSkinRepos::ReadRepository(xmlNodePtr node) { value = xmlNodeListGetString(doc, node->xmlChildrenNode, 1); if (value) repo->SetUrl((const char *)value); + //Skin Author + } else if (!xmlStrcmp(node->name, (const xmlChar *) "author")) { + value = xmlNodeListGetString(doc, node->xmlChildrenNode, 1); + if (value) + repo->SetAuthor((const char *)value); //Repo Specialfonts } else if (!xmlStrcmp(node->name, (const xmlChar *) "specialfonts")) { xmlNodePtr child = node->xmlChildrenNode; diff --git a/libcore/skinrepo.h b/libcore/skinrepo.h index c3daaf0..9466a2a 100644 --- a/libcore/skinrepo.h +++ b/libcore/skinrepo.h @@ -18,33 +18,55 @@ enum eRepoType { rtZipUrl }; +enum eAction { + eaUndefined, + eaInstall, + eaUpdate +}; + // --- cSkinRepo ------------------------------------------------------------- class cSkinRepo : public cThread { private: string name; eRepoType repoType; + eAction action; string url; + string author; vector<string> specialFonts; vector<string> supportedPlugins; vector< pair < string, string > > screenshots; //helpers for execution string command; + string command2; string tempfile; int result; + string skinPath; + string themesPath; virtual void Action(void); + void CreateThemeFiles(void); public: cSkinRepo(void); virtual ~cSkinRepo(void); void SetName(string name) { this->name = name; }; void SetRepoType(eRepoType type) { this->repoType = type; }; void SetUrl(string url) { this->url = url; }; + void SetAuthor(string author) { this->author = author; }; void SetSpecialFont(string font) { specialFonts.push_back(font); }; void SetSupportedPlugin(string plugin) { supportedPlugins.push_back(plugin); }; void SetScreenshot(string desc, string url) { screenshots.push_back(pair<string, string>(desc, url)); }; + eRepoType Type(void) { return repoType; }; string Name(void) { return name; }; - void Install(string path); + string Author(void) { return author; }; + string Url(void) { return url; }; + vector<string> SpecialFonts(void) { return specialFonts; }; + vector<string> SupportedPlugins(void) { return supportedPlugins; }; + vector< pair < string, string > > Screenshots(void) { return screenshots; }; + void Install(string path, string themesPath); + void Update(string path); bool InstallationFinished(void) { return !(Running()); }; + bool SuccessfullyInstalled(void) { if (result == 0) return true; return false; }; + bool SuccessfullyUpdated(void); void Debug(void); }; @@ -55,12 +77,16 @@ private: string repoFile; xmlDocPtr doc; vector<cSkinRepo*> repos; + vector<cSkinRepo*>::iterator repoIt; void ReadRepository(xmlNodePtr node); public: cSkinRepos(void); virtual ~cSkinRepos(void); void Read(string path); + int Count(void) { return repos.size(); }; cSkinRepo *GetRepo(string name); + void InitRepoIterator(void) { repoIt = repos.begin(); }; + cSkinRepo *GetNextRepo(void); void Debug(void); }; diff --git a/libcore/skinsetup.c b/libcore/skinsetup.c index 88901c8..f695935 100644 --- a/libcore/skinsetup.c +++ b/libcore/skinsetup.c @@ -32,8 +32,8 @@ cSkinSetupMenu::cSkinSetupMenu(void) { } cSkinSetupMenu::~cSkinSetupMenu(void) { - for (map < string, cSkinSetupParameter* >::iterator p = parameters.begin(); p != parameters.end(); p++) { - delete p->second; + for (vector < cSkinSetupParameter* >::iterator p = parameters.begin(); p != parameters.end(); p++) { + delete (*p); } for (vector < cSkinSetupMenu* >::iterator s = subMenus.begin(); s != subMenus.end(); s++) { delete (*s); @@ -43,7 +43,7 @@ cSkinSetupMenu::~cSkinSetupMenu(void) { cSkinSetupParameter *cSkinSetupMenu::GetNextParameter(bool deep) { cSkinSetupParameter *param = NULL; if (paramIt != parameters.end()) { - param = paramIt->second; + param = *paramIt; paramIt++; return param; } @@ -64,9 +64,10 @@ cSkinSetupParameter *cSkinSetupMenu::GetNextParameter(bool deep) { } cSkinSetupParameter *cSkinSetupMenu::GetParameter(string name) { - map < string, cSkinSetupParameter* >::iterator hit = parameters.find(name); - if (hit != parameters.end()) - return hit->second; + for (vector < cSkinSetupParameter* >::iterator it = parameters.begin(); it != parameters.end(); it++) { + if (!name.compare((*it)->name)) + return *it; + } cSkinSetupParameter *paramHit = NULL; for (vector < cSkinSetupMenu* >::iterator subMenu = subMenus.begin(); subMenu != subMenus.end(); subMenu++) { @@ -101,7 +102,7 @@ void cSkinSetupMenu::SetParameter(eSetupParameterType paramType, xmlChar *name, } param->value = atoi((const char*)value); - parameters.insert(pair< string, cSkinSetupParameter* >(param->name, param)); + parameters.push_back(param); } cSkinSetupMenu *cSkinSetupMenu::GetMenu(string &name) { @@ -134,8 +135,8 @@ cSkinSetupMenu *cSkinSetupMenu::GetNextSubMenu(bool deep) { void cSkinSetupMenu::Debug(bool deep) { dsyslog("skindesigner: Menu %s Setup Parameters", name.c_str()); - for (map < string, cSkinSetupParameter* >::iterator p = parameters.begin(); p != parameters.end(); p++) { - (p->second)->Debug(); + for (vector < cSkinSetupParameter* >::iterator p = parameters.begin(); p != parameters.end(); p++) { + (*p)->Debug(); } if (subMenus.empty()) return; @@ -159,7 +160,7 @@ cSkinSetup::~cSkinSetup() { } bool cSkinSetup::ReadFromXML(void) { - string xmlPath = *cString::sprintf("%s%s/setup.xml", *config.skinPath, skin.c_str()); + string xmlPath = *cString::sprintf("%s%s/setup.xml", *config.GetSkinPath(skin), skin.c_str()); cXmlParser parser; if (!parser.ReadSkinSetup(this, xmlPath)) { return false; diff --git a/libcore/skinsetup.h b/libcore/skinsetup.h index 6e99799..0de768b 100644 --- a/libcore/skinsetup.h +++ b/libcore/skinsetup.h @@ -43,8 +43,8 @@ private: cSkinSetupMenu *parent; vector < cSkinSetupMenu* > subMenus; vector < cSkinSetupMenu* >::iterator subMenuIt; - map < string, cSkinSetupParameter* > parameters; - map < string, cSkinSetupParameter* >::iterator paramIt; + vector < cSkinSetupParameter* > parameters; + vector < cSkinSetupParameter* >::iterator paramIt; public: cSkinSetupMenu(void); virtual ~cSkinSetupMenu(void); diff --git a/libskindesignerapi/Makefile b/libskindesignerapi/Makefile index 403a764..7948799 100644 --- a/libskindesignerapi/Makefile +++ b/libskindesignerapi/Makefile @@ -3,7 +3,7 @@ NAME = skindesignerapi LIBNAME = lib$(NAME) MAJOR = 0 -MINOR = 0.1 +MINOR = 0.2 VERSION = $(MAJOR).$(MINOR) SONAME = $(LIBNAME).so.$(MAJOR) diff --git a/libskindesignerapi/skindesignerosdbase.c b/libskindesignerapi/skindesignerosdbase.c index 26efb73..f552664 100644 --- a/libskindesignerapi/skindesignerosdbase.c +++ b/libskindesignerapi/skindesignerosdbase.c @@ -75,6 +75,10 @@ void skindesignerapi::cSkindesignerOsdItem::AddLoopToken(string loopName, map<st **********************************************************************/ skindesignerapi::cSkindesignerOsdMenu::cSkindesignerOsdMenu(const char *Title, int c0, int c1, int c2, int c3, int c4) : cOsdMenu(Title, c0, c1, c2, c3, c4) { init = true; + firstCallCleared = false; + secondCall = false; + firstMenu = -1; + firstType = mtList; displayText = false; sdDisplayMenu = NULL; pluginName = ""; @@ -87,6 +91,10 @@ skindesignerapi::cSkindesignerOsdMenu::~cSkindesignerOsdMenu() { } void skindesignerapi::cSkindesignerOsdMenu::SetPluginMenu(int menu, eMenuType type) { + if (firstCallCleared) { + firstMenu = menu; + firstType = type; + } if (type == mtList) displayText = false; else if (type == mtText) @@ -155,6 +163,15 @@ void skindesignerapi::cSkindesignerOsdMenu::TextKeyDown(void) { } void skindesignerapi::cSkindesignerOsdMenu::Display(void) { + if (firstCallCleared) { + firstCallCleared = false; + secondCall = true; + return; + } + if (secondCall) { + SetSkinDesignerDisplayMenu(); + SetPluginMenu(firstMenu, firstType); + } if (displayText) { if (sdDisplayMenu) { sdDisplayMenu->SetTitle(Title()); diff --git a/libskindesignerapi/skindesignerosdbase.h b/libskindesignerapi/skindesignerosdbase.h index 353b5d7..1b41092 100644 --- a/libskindesignerapi/skindesignerosdbase.h +++ b/libskindesignerapi/skindesignerosdbase.h @@ -61,6 +61,10 @@ public: class cSkindesignerOsdMenu : public cOsdMenu { private: bool init; + bool firstCallCleared; + bool secondCall; + int firstMenu; + eMenuType firstType; bool displayText; string pluginName; ISDDisplayMenu *sdDisplayMenu; @@ -70,6 +74,7 @@ private: map < string, vector< map< string, string > > > loopTokens; bool SetSkinDesignerDisplayMenu(void); protected: + void FirstCallCleared(void) { firstCallCleared = true; }; void ClearTokens(void); void SetPluginName(string name) {pluginName = name; }; void SetPluginMenu(int menu, eMenuType type); diff --git a/libtemplate/template.c b/libtemplate/template.c index 189efd0..c542d13 100644 --- a/libtemplate/template.c +++ b/libtemplate/template.c @@ -70,6 +70,8 @@ bool cTemplate::ReadFromXML(string xmlfile) { templateName << "plug-" << plugName << "-" << it->second.c_str(); if (parser.ReadPluginView(plugName, templateNumber, templateName.str())) { ok = parser.ParsePluginView(plugName, templateNumber); + } else { + dsyslog("skindesigner: template %s for plugin %s not available", templateName.str().c_str(), plugName.c_str()); } } } diff --git a/libtemplate/templatefunction.c b/libtemplate/templatefunction.c index 246db23..b2bad34 100644 --- a/libtemplate/templatefunction.c +++ b/libtemplate/templatefunction.c @@ -548,7 +548,7 @@ int cTemplateFunction::GetWidth(bool cutted) { return funcWidth;
}
-int cTemplateFunction::GetHeight(void) {
+int cTemplateFunction::GetHeight(map < string, vector< map< string, string > > > *loopTokens) {
int funcHeight = 0;
switch (type) {
case ftDrawText:
@@ -578,9 +578,12 @@ int cTemplateFunction::GetHeight(void) { textboxHeight = funcHeight;
}
break; }
- case ftLoop:
- //TODO: to be implemented
- break;
+ case ftLoop: {
+ cTemplateLoopFunction *loopFunc = dynamic_cast<cTemplateLoopFunction*>(this);
+ if (loopFunc) {
+ funcHeight = loopFunc->CalculateHeight(loopTokens);
+ }
+ break; }
default:
esyslog("skindesigner: GetHeight not implemented for funcType %d", type);
break;
diff --git a/libtemplate/templatefunction.h b/libtemplate/templatefunction.h index 43cb106..a000110 100644 --- a/libtemplate/templatefunction.h +++ b/libtemplate/templatefunction.h @@ -246,7 +246,7 @@ public: string GetParamName(eParamType pt); //Dynamic width or height parameter int GetWidth(bool cutted = true); - int GetHeight(void); + int GetHeight(map < string, vector< map< string, string > > > *loopTokens = NULL); int GetContainerWidth(void) { return containerWidth; }; int GetContainerHeight(void) { return containerHeight; }; void GetNeededWidths(multimap<eParamType,string> *widths); diff --git a/libtemplate/templateloopfunction.c b/libtemplate/templateloopfunction.c index 4de9ec4..07219ac 100644 --- a/libtemplate/templateloopfunction.c +++ b/libtemplate/templateloopfunction.c @@ -21,8 +21,8 @@ void cTemplateLoopFunction::AddFunction(string name, vector<pair<string, string> if (!name.compare("drawtext")) { type = ftDrawText; } else if (!name.compare("drawtextbox")) { - type = ftDrawTextBox; - } else if (!name.compare("drawimage")) { + type = ftDrawTextBox; + } else if (!name.compare("drawimage")) { type = ftDrawImage; } else if (!name.compare("drawrectangle")) { type = ftDrawRectangle; @@ -149,6 +149,21 @@ int cTemplateLoopFunction::GetLoopElementsHeight(void) { return maxHeight; } +int cTemplateLoopFunction::CalculateHeight(map < string, vector< map< string, string > > > *loopTokens) { + if (!loopTokens) { + return 0; + } + int rowHeight = GetLoopElementsHeight(); + string loopName = GetParameter(ptName); + map < string, vector< map< string, string > > >::iterator hit = loopTokens->find(loopName); + if (hit == loopTokens->end()) + return 0; + vector< map< string, string > > toks = hit->second; + int numElements = toks.size(); + + return numElements * rowHeight; +} + bool cTemplateLoopFunction::ReplaceWidthFunctions(void) { bool replaced = false; InitIterator(); diff --git a/libtemplate/templateloopfunction.h b/libtemplate/templateloopfunction.h index 599dfcb..1a28c65 100644 --- a/libtemplate/templateloopfunction.h +++ b/libtemplate/templateloopfunction.h @@ -26,6 +26,7 @@ public: int GetLoopElementsHeight(void); int GetContainerWidth(void) { return containerWidth; }; int GetContainerHeight(void) { return containerHeight; }; + int CalculateHeight(map < string, vector< map< string, string > > > *loopTokens); bool Ready(void); void Debug(void); }; diff --git a/libtemplate/templatepixmap.c b/libtemplate/templatepixmap.c index 473561a..d6866b5 100644 --- a/libtemplate/templatepixmap.c +++ b/libtemplate/templatepixmap.c @@ -187,7 +187,7 @@ void cTemplatePixmap::ClearDynamicFunctionParameters(void) { }
}
-void cTemplatePixmap::ParseDynamicFunctionParameters(map <string,string> *stringTokens, map <string,int> *intTokens) {
+void cTemplatePixmap::ParseDynamicFunctionParameters(map <string,string> *stringTokens, map <string,int> *intTokens, map < string, vector< map< string, string > > > *loopTokens) {
InitIterator();
cTemplateFunction *func = NULL;
bool completelyParsed = true;
@@ -208,7 +208,7 @@ void cTemplatePixmap::ParseDynamicFunctionParameters(map <string,string> *string }
bool replacedWidth = ReplaceWidthFunctions();
- bool replacedHeight = ReplaceHeightFunctions();
+ bool replacedHeight = ReplaceHeightFunctions(loopTokens);
bool replacedPosX = ReplacePosXFunctions();
bool replacedPosY = ReplacePosYFunctions();
@@ -425,7 +425,7 @@ bool cTemplatePixmap::ReplaceWidthFunctions(void) { return replaced;
}
-bool cTemplatePixmap::ReplaceHeightFunctions(void) {
+bool cTemplatePixmap::ReplaceHeightFunctions(map < string, vector< map< string, string > > > *loopTokens) {
bool replaced = false;
InitIterator();
cTemplateFunction *func = NULL;
@@ -443,7 +443,7 @@ bool cTemplatePixmap::ReplaceHeightFunctions(void) { cTemplateFunction *myFunc = *it;
string myFuncName = myFunc->GetParameter(ptName);
if (!myFuncName.compare(label)) {
- funcHeight = myFunc->GetHeight();
+ funcHeight = myFunc->GetHeight(loopTokens);
func->SetHeight(type, label, funcHeight);
if (func->Updated()) {
func->CompleteParameters();
diff --git a/libtemplate/templatepixmap.h b/libtemplate/templatepixmap.h index fd2d3ce..5f16f21 100644 --- a/libtemplate/templatepixmap.h +++ b/libtemplate/templatepixmap.h @@ -32,7 +32,7 @@ protected: cGlobals *globals; //functions replacing {width(label)} and {height(label)} tokens bool ReplaceWidthFunctions(void); - bool ReplaceHeightFunctions(void); + bool ReplaceHeightFunctions(map < string, vector< map< string, string > > > *loopTokens); //functions replacing {posx(label)} and {posy(label)} tokens bool ReplacePosXFunctions(void); bool ReplacePosYFunctions(void); @@ -65,7 +65,7 @@ public: //Parse pixmap parameters with dynamically set Tokens void ParseDynamicParameters(map <string,string> *stringTokens, map <string,int> *intTokens, bool initFuncs); //Parse all function parameters with dynamically set Tokens - void ParseDynamicFunctionParameters(map <string,string> *stringTokens, map <string,int> *intTokens); + void ParseDynamicFunctionParameters(map <string,string> *stringTokens, map <string,int> *intTokens, map < string, vector< map< string, string > > > *loopTokens); //Calculate size of drawport in case area scrolls bool CalculateDrawPortSize(cSize &size, map < string, vector< map< string, string > > > *loopTokens = NULL); //Set max width for text in scrollarea diff --git a/libtemplate/xmlparser.c b/libtemplate/xmlparser.c index 4aa0a81..4db7ce5 100644 --- a/libtemplate/xmlparser.c +++ b/libtemplate/xmlparser.c @@ -320,13 +320,13 @@ string cXmlParser::GetPath(string xmlFile) { string activeTheme = Setup.OSDTheme; string path = ""; if (!xmlFile.compare("globals.xml")) { - path = *cString::sprintf("%s%s/%s", *config.skinPath, activeSkin.c_str(), xmlFile.c_str()); + path = *cString::sprintf("%s%s/%s", *config.GetSkinPath(activeSkin), activeSkin.c_str(), xmlFile.c_str()); } else if (!xmlFile.compare("theme.xml")) { - path = *cString::sprintf("%s%s/themes/%s/%s", *config.skinPath, activeSkin.c_str(), activeTheme.c_str(), xmlFile.c_str()); + path = *cString::sprintf("%s%s/themes/%s/%s", *config.GetSkinPath(activeSkin), activeSkin.c_str(), activeTheme.c_str(), xmlFile.c_str()); } else if (!xmlFile.compare("setup.xml")) { - path = *cString::sprintf("%s%s/%s", *config.skinPath, activeSkin.c_str(), xmlFile.c_str()); + path = *cString::sprintf("%s%s/%s", *config.GetSkinPath(activeSkin), activeSkin.c_str(), xmlFile.c_str()); } else { - path = *cString::sprintf("%s%s/xmlfiles/%s", *config.skinPath, activeSkin.c_str(), xmlFile.c_str()); + path = *cString::sprintf("%s%s/xmlfiles/%s", *config.GetSkinPath(activeSkin), activeSkin.c_str(), xmlFile.c_str()); } return path; } diff --git a/po/de_DE.po b/po/de_DE.po index 850370f..3cfbb71 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: vdr-skindesigner 0.0.1\n" "Report-Msgid-Bugs-To: <see README>\n" -"POT-Creation-Date: 2015-05-09 10:38+0200\n" +"POT-Creation-Date: 2015-05-29 18:13+0200\n" "PO-Revision-Date: 2014-09-27 11:02+0200\n" "Last-Translator: Louis Braun <louis.braun@gmx.de>\n" "Language-Team: \n" @@ -21,8 +21,35 @@ msgstr "eines nach dem anderen" msgid "at one go" msgstr "alle auf einmal" -msgid "Skin" -msgstr "" +msgid "Downloading Skin Screenshots..." +msgstr "Lade Screenshots herunter..." + +msgid "Install Skin" +msgstr "Installiere Skin" + +msgid "Update from Git" +msgstr "Aus Git aktualisieren" + +msgid "Installing Skin..." +msgstr "Installiere Skin..." + +msgid "Skin successfully installed" +msgstr "Skin installiert" + +msgid "Skin NOT successfully installed" +msgstr "Skin NICHT installiert" + +msgid "No Git Repsoitory available" +msgstr "Kein Git Repository verfügbar" + +msgid "Updating Skin from Git..." +msgstr "Aktualisiere Skin aus Git..." + +msgid "Skin successfully updated" +msgstr "Skin erfolgreich aktualisiert" + +msgid "Skin already up to date" +msgstr "Skin ist auf aktuellem Stand" msgid "Plugin Setup" msgstr "" @@ -63,12 +90,6 @@ msgstr "Anzahl der initial zu cachenden Logos" msgid "Number to cache in maximum" msgstr "Maximale Anzahl zu cachender Logos" -msgid "Skin Setup" -msgstr "" - -msgid "has no setup" -msgstr "hat kein Setup" - msgid "Cache Statistics" msgstr "Cache Statistik" @@ -90,5 +111,29 @@ msgstr "Logos" msgid "skinparts" msgstr "Skinparts" +msgid "Skin Setup" +msgstr "" + +msgid "Skin" +msgstr "" + +msgid "has no setup" +msgstr "hat kein Setup" + +msgid "Install new skins" +msgstr "" + +msgid "Preview Skin" +msgstr "Skin Vorschau" + +msgid "Author" +msgstr "Autor" + +msgid "Used Fonts" +msgstr "Benutze Schriften" + +msgid "Supported Plugins" +msgstr "Unterstützte Plugins" + msgid "Skin Designer" msgstr "Skin Designer" diff --git a/po/fi_FI.po b/po/fi_FI.po index 8baebda..8efee65 100644 --- a/po/fi_FI.po +++ b/po/fi_FI.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: vdr-skindesigner 0.2.0\n" "Report-Msgid-Bugs-To: <see README>\n" -"POT-Creation-Date: 2015-05-09 10:38+0200\n" +"POT-Creation-Date: 2015-05-29 18:13+0200\n" "PO-Revision-Date: 2015-01-25 01:25+0200\n" "Last-Translator: Rolf Ahrenberg\n" "Language-Team: Finnish\n" @@ -21,8 +21,35 @@ msgstr "yksi kerrallaan" msgid "at one go" msgstr "kaikki kerralla" -msgid "Skin" -msgstr "Ulkoasu" +msgid "Downloading Skin Screenshots..." +msgstr "" + +msgid "Install Skin" +msgstr "" + +msgid "Update from Git" +msgstr "" + +msgid "Installing Skin..." +msgstr "" + +msgid "Skin successfully installed" +msgstr "" + +msgid "Skin NOT successfully installed" +msgstr "" + +msgid "No Git Repsoitory available" +msgstr "" + +msgid "Updating Skin from Git..." +msgstr "" + +msgid "Skin successfully updated" +msgstr "" + +msgid "Skin already up to date" +msgstr "" msgid "Plugin Setup" msgstr "Yleiset" @@ -63,12 +90,6 @@ msgstr "Oletuksena välimuistissa pidettävät logot" msgid "Number to cache in maximum" msgstr "Maksimissaan välimuistissa pidettävät logot" -msgid "Skin Setup" -msgstr "Ulkoasut" - -msgid "has no setup" -msgstr "ei asetuksia" - msgid "Cache Statistics" msgstr "Välimuisti" @@ -90,5 +111,29 @@ msgstr "logo(a)" msgid "skinparts" msgstr "osasta" +msgid "Skin Setup" +msgstr "Ulkoasut" + +msgid "Skin" +msgstr "Ulkoasu" + +msgid "has no setup" +msgstr "ei asetuksia" + +msgid "Install new skins" +msgstr "" + +msgid "Preview Skin" +msgstr "" + +msgid "Author" +msgstr "" + +msgid "Used Fonts" +msgstr "" + +msgid "Supported Plugins" +msgstr "" + msgid "Skin Designer" msgstr "Skin Designer -ulkoasu" @@ -1,3 +1,4 @@ +#include "libcore/curlfuncs.h" #include "setup.h" cSkinDesignerSetup::cSkinDesignerSetup() { @@ -25,6 +26,7 @@ void cSkinDesignerSetup::Setup(void) { Clear(); SkinSetup(); + InstallSkins(); PluginSetup(); ImageCacheStatistics(); @@ -38,19 +40,80 @@ eOSState cSkinDesignerSetup::ProcessKey(eKeys Key) { if (hadSubMenu && Key == kOk) { Store(); } - if (!hadSubMenu && (state == osUnknown || Key == kOk)) { - if ((Key == kOk && !hadSubMenu)) { - switch (Key) { - case kOk: { - string itemText = Get(Current())->Text(); - size_t hit = itemText.find(tr("Skin")); - if (hit == 0) { - string skin = itemText.substr(strlen(tr("Skin"))+1); - state = AddSubMenu(new cSkindesignerSkinSetup(skin, "")); - } - break; - } default: - break; + if (!hadSubMenu && (Key == kOk || Key == kUp || Key == kDown || Key == kLeft || Key == kRight || Key == kRed)) { + SetHelp(NULL, NULL, NULL, NULL); + cOsdItem *current = Get(Current()); + cSkinMenuItem *skinMenuItem = dynamic_cast<cSkinMenuItem*>(current); + if (!skinMenuItem) + return state; + eItemType type = skinMenuItem->Type(); + string skinName = skinMenuItem->GetSkinName(); + // KEY OK + if ((Key == kOk)) { + if (type == itSkinSetup) { + state = AddSubMenu(new cSkindesignerSkinSetup(skinName, "")); + } else if (type == itNoSkinSetup) { + state = osContinue; + } else if (type == itSkinRepo) { + Skins.Message(mtStatus, tr("Downloading Skin Screenshots...")); + cSkindesignerSkinPreview *prev = new cSkindesignerSkinPreview(skinName); + Skins.Message(mtStatus, NULL); + state = AddSubMenu(prev); + } + } + // Menu Moves + if (Key == kUp || Key == kDown || Key == kLeft || Key == kRight) { + if (type == itSkinRepo) { + SetHelp(tr("Install Skin"), NULL, NULL, NULL); + } else if (type == itSkinSetup || type == itNoSkinSetup) { + cSkinRepo *repo = config.GetSkinRepo(skinName); + if (repo && repo->Type() == rtGit) { + SetHelp(tr("Update from Git"), NULL, NULL, NULL); + } + } + } + // KEY RED + if (Key == kRed) { + if (type == itSkinRepo) { + Skins.Message(mtStatus, tr("Installing Skin...")); + cSkinRepo *skinRepo = config.GetSkinRepo(skinName); + if (!skinRepo) { + return state; + } + skinRepo->Install(*config.installerSkinPath, config.vdrThemesPath); + while (!skinRepo->InstallationFinished()) { + cCondWait::SleepMs(50); + } + bool ok = skinRepo->SuccessfullyInstalled(); + if (ok) { + config.AddNewSkinRef(skinName); + Skins.Message(mtStatus, tr("Skin successfully installed")); + cCondWait::SleepMs(1000); + state = osEnd; + } else { + Skins.Message(mtStatus, tr("Skin NOT successfully installed")); + state = osContinue; + } + } else if (type == itSkinSetup || type == itNoSkinSetup) { + cSkinRepo *skinRepo = config.GetSkinRepo(skinName); + if (!skinRepo || skinRepo->Type() != rtGit) { + Skins.Message(mtStatus, tr("No Git Repsoitory available")); + return state; + } + Skins.Message(mtStatus, tr("Updating Skin from Git...")); + skinRepo->Update(*config.installerSkinPath); + while (!skinRepo->InstallationFinished()) { + cCondWait::SleepMs(50); + } + bool ok = skinRepo->SuccessfullyUpdated(); + if (ok) { + Skins.Message(mtStatus, tr("Skin successfully updated")); + cCondWait::SleepMs(1000); + state = osEnd; + } else { + Skins.Message(mtStatus, tr("Skin already up to date")); + state = osContinue; + } } } } @@ -118,22 +181,6 @@ void cSkinDesignerSetup::PluginSetup(void) { Add(new cMenuEditIntItem(tr("Number to cache in maximum"), &numLogosMax, 0, 1000)); } -void cSkinDesignerSetup::SkinSetup(void) { - Add(InfoItem(tr("Skin Setup"))); - - config.InitSkinIterator(); - string skin = ""; - while (config.GetSkin(skin)) { - cSkinSetup *skinSetup = config.GetSkinSetup(skin); - if (!skinSetup) { - Add(new cOsdItem(cString::sprintf("%s %s\t%s", tr("Skin"), skin.c_str(), tr("has no setup")))); - cList<cOsdItem>::Last()->SetSelectable(false); - } else { - Add(new cOsdItem(cString::sprintf("%s %s", tr("Skin"), skin.c_str()))); - } - } -} - void cSkinDesignerSetup::ImageCacheStatistics(void) { if (!imgCache) { return; @@ -162,8 +209,40 @@ void cSkinDesignerSetup::ImageCacheStatistics(void) { cList<cOsdItem>::Last()->SetSelectable(false); } -// --- cSkinSetupSubMenu ----------------------------------------------------------- +void cSkinDesignerSetup::SkinSetup(void) { + Add(InfoItem(tr("Skin Setup"))); + + config.InitSkinIterator(); + string skin = ""; + while (config.GetSkin(skin)) { + cSkinSetup *skinSetup = config.GetSkinSetup(skin); + if (!skinSetup) { + Add(new cSkinMenuItem(skin.c_str(), *cString::sprintf("%s %s\t(%s)", tr("Skin"), skin.c_str(), tr("has no setup")), itNoSkinSetup)); + } else { + Add(new cSkinMenuItem(skin.c_str(), *cString::sprintf("%s %s", tr("Skin"), skin.c_str()), itSkinSetup)); + } + } +} + +void cSkinDesignerSetup::InstallSkins(void) { + Add(InfoItem(tr("Install new skins"))); + + config.InitSkinRepoIterator(); + cSkinRepo *repo = NULL; + while (repo = config.GetNextSkinRepo()) { + if (config.SkinInstalled(repo->Name())) + continue; + Add(new cSkinMenuItem(repo->Name(), *cString::sprintf("%s %s", tr("Preview Skin"), repo->Name().c_str()), itSkinRepo)); + } +} + +// --- cSkinMenuItem ----------------------------------------------------------- +cSkinMenuItem::cSkinMenuItem(string skinName, string displayText, eItemType type) : cOsdItem(displayText.c_str()) { + this->skinName = skinName; + this->type = type; +} +// --- cSkinSetupSubMenu ----------------------------------------------------------- cSkinSetupSubMenu::cSkinSetupSubMenu(string name, string displayText) : cOsdItem(displayText.c_str()) { this->name = name; } @@ -193,8 +272,30 @@ eOSState cSkindesignerSkinSetup::ProcessKey(eKeys Key) { break; } else { return osBack; + } + } + case kRed: { + cSkinRepo *skinRepo = config.GetSkinRepo(skin); + if (!skinRepo) { + Skins.Message(mtStatus, tr("No Git Repsoitory available")); + return state; + } + Skins.Message(mtStatus, tr("Updating Skin from Git...")); + skinRepo->Update(*config.installerSkinPath); + while (!skinRepo->InstallationFinished()) { + cCondWait::SleepMs(50); + } + bool ok = skinRepo->SuccessfullyUpdated(); + if (ok) { + Skins.Message(mtStatus, tr("Skin successfully updated")); + cCondWait::SleepMs(1000); + state = osEnd; + } else { + Skins.Message(mtStatus, tr("Skin already up to date")); + state = osContinue; } - } default: + } + default: break; } } @@ -206,6 +307,12 @@ void cSkindesignerSkinSetup::Set(void) { if (!menu) { return; } + + cSkinRepo *repo = config.GetSkinRepo(skin); + if (repo && repo->Type() == rtGit) { + SetHelp(tr("Update from Git"), NULL, NULL, NULL); + } + menu->InitParameterIterator(); cSkinSetupParameter *param = NULL; while (param = menu->GetNextParameter(false)) { @@ -222,3 +329,141 @@ void cSkindesignerSkinSetup::Set(void) { Add(new cSkinSetupSubMenu(subMenu->GetName(), subMenu->GetDisplayText())); } } + +// --- cSkindesignerSkinPreview ----------------------------------------------------------- + +cSkindesignerSkinPreview::cSkindesignerSkinPreview(string skinName) : +cSkindesignerOsdMenu(*cString::sprintf("%s: %s \"%s\"", trVDR("Preview"), tr("Skin"), skinName.c_str())) { + this->skinName = skinName; + SetPluginName("setup"); + FirstCallCleared(); + Set(); +} + +cSkindesignerSkinPreview::~cSkindesignerSkinPreview() { +} + +eOSState cSkindesignerSkinPreview::ProcessKey(eKeys Key) { + eOSState state = cOsdMenu::ProcessKey(Key); + switch (Key) { + case kOk: + case kBack: + state = osBack; + break; + case kLeft: { + TextKeyLeft(); + state = osContinue; + break; + } case kRight: { + TextKeyRight(); + state = osContinue; + break; + } case kUp: { + TextKeyUp(); + state = osContinue; + break; + } case kDown: { + TextKeyDown(); + state = osContinue; + break; + } case kRed: { + Skins.Message(mtStatus, tr("Installing Skin...")); + bool ok = InstallSkin(); + if (ok) + Skins.Message(mtStatus, tr("Skin successfully installed")); + else + Skins.Message(mtStatus, tr("Skin NOT successfully installed")); + cCondWait::SleepMs(1000); + state = osEnd; + break; + } default: + break; + } + return state; +} + +void cSkindesignerSkinPreview::Display(void) { + SetHelp(tr("Install Skin"), NULL, NULL, NULL); + skindesignerapi::cSkindesignerOsdMenu::Display(); +} + +void cSkindesignerSkinPreview::Set(void) { + SetPluginMenu(0, skindesignerapi::mtText); + ClearTokens(); + Clear(); + + cSkinRepo *skinRepo = config.GetSkinRepo(skinName); + if (!skinRepo) { + esyslog("skindesigner: no valid skin repository found for skin %s", skinName.c_str()); + return; + } + + AddStringToken("menuheader", *cString::sprintf("%s: %s \"%s\"", trVDR("Preview"), tr("Skin"), skinName.c_str())); + AddStringToken("skinname", skinName); + AddStringToken("author", skinRepo->Author()); + + stringstream plainText; + plainText << *cString::sprintf("%s: %s \"%s\"", trVDR("Preview"), tr("Skin"), skinName.c_str()) << "\n\n"; + plainText << tr("Author") << ": " << skinRepo->Author() << "\n"; + + plainText << tr("Used Fonts") << ": \n"; + vector<string> specialFonts = skinRepo->SpecialFonts(); + for (vector<string>::iterator it = specialFonts.begin(); it != specialFonts.end(); it++) { + map<string,string> usedFonts; + usedFonts.insert(pair<string,string>("fonts[name]", *it)); + usedFonts.insert(pair<string,string>("fonts[installed]", CheckFontInstalled(*it))); + AddLoopToken("fonts", usedFonts); + plainText << *it << "\n"; + } + + plainText << tr("Supported Plugins") << ": \n"; + vector<string> supportedPlugins = skinRepo->SupportedPlugins(); + for (vector<string>::iterator it = supportedPlugins.begin(); it != supportedPlugins.end(); it++) { + map<string,string> plugins; + plugins.insert(pair<string,string>("plugins[name]", *it)); + AddLoopToken("plugins", plugins); + plainText << *it << "\n"; + } + + SetText(plainText.str().c_str()); + + vector< pair < string, string > > screenshots = skinRepo->Screenshots(); + int i = 0; + for (vector< pair < string, string > >::iterator it = screenshots.begin(); it != screenshots.end(); it++) { + string url = it->second; + string imgType = ".jpg"; + if (url.find(".png") != string::npos) + imgType = ".png"; + stringstream tempName; + tempName << "/tmp/screenshot_" << skinName << "_" << i++ << imgType; + dsyslog("skindesigner: download screenshot name %s url %s", tempName.str().c_str(), url.c_str()); + CurlGetUrlFile(url.c_str(), tempName.str().c_str()); + map<string,string> img; + img.insert(pair<string,string>("screenshots[desc]", it->first)); + img.insert(pair<string,string>("screenshots[path]", tempName.str())); + AddLoopToken("screenshots", img); + } +} + +bool cSkindesignerSkinPreview::InstallSkin(void) { + cSkinRepo *skinRepo = config.GetSkinRepo(skinName); + if (!skinRepo) { + esyslog("skindesigner: no valid skin repository found for skin %s", skinName.c_str()); + return false; + } + skinRepo->Install(*config.installerSkinPath, config.vdrThemesPath); + while (!skinRepo->InstallationFinished()) { + cCondWait::SleepMs(50); + } + bool ok = skinRepo->SuccessfullyInstalled(); + if (ok) { + config.AddNewSkinRef(skinName); + } + return ok; +} + +string cSkindesignerSkinPreview::CheckFontInstalled(string fontName) { + if (fontManager->FontInstalled(fontName)) + return "1"; + return "0"; +} @@ -2,6 +2,13 @@ #define __SKINDESIGNER_SETUP_H #include "config.h" +#include "libskindesignerapi/skindesignerosdbase.h" + +enum eItemType { + itSkinSetup, + itNoSkinSetup, + itSkinRepo +}; // --- cSkinDesignerSetup ----------------------------------------------------------- @@ -23,13 +30,27 @@ private: virtual eOSState ProcessKey(eKeys Key); cOsdItem *InfoItem(const char *label); void PluginSetup(void); - void SkinSetup(void); void ImageCacheStatistics(void); + void SkinSetup(void); + void InstallSkins(void); public: cSkinDesignerSetup(void); virtual ~cSkinDesignerSetup(); }; +// --- cSkinMenuItem ----------------------------------------------------------- + +class cSkinMenuItem : public cOsdItem { +private: + string skinName; + eItemType type; +public: + cSkinMenuItem(string skinName, string displayText, eItemType type); + virtual ~cSkinMenuItem() {}; + string GetSkinName(void) { return skinName; }; + eItemType Type(void) { return type; }; +}; + // --- cSkinSetupSubMenu ----------------------------------------------------------- class cSkinSetupSubMenu : public cOsdItem { @@ -55,4 +76,20 @@ public: virtual ~cSkindesignerSkinSetup(); }; +// --- cSkindesignerSkinPreview ----------------------------------------------------------- + +class cSkindesignerSkinPreview : public skindesignerapi::cSkindesignerOsdMenu { +private: + string skinName; +protected: + virtual eOSState ProcessKey(eKeys Key); + void Set(void); + bool InstallSkin(void); + string CheckFontInstalled(string fontName); +public: + cSkindesignerSkinPreview(string skin); + virtual ~cSkindesignerSkinPreview(); + void Display(void); +}; + #endif //__SKINDESIGNER_SETUP_H
\ No newline at end of file diff --git a/skindesigner.c b/skindesigner.c index cae0e6e..d162478 100644 --- a/skindesigner.c +++ b/skindesigner.c @@ -24,7 +24,6 @@ static const char *DESCRIPTION = trNOOP("Skin Designer"); class cPluginSkinDesigner : public cPlugin, public skindesignerapi::SkindesignerAPI { private: - vector<cSkinDesigner*> skins; string libskindesignerApiVersion; protected: bool ServiceRegisterPlugin(skindesignerapi::cPluginStructure *plugStructure); @@ -118,15 +117,24 @@ bool cPluginSkinDesigner::Start(void) { libskindesignerApiVersion = LIBSKINDESIGNERAPIVERSION; dsyslog("skindesigner: using libskindesigner API Version %s", libskindesignerApiVersion.c_str()); + //register template for skin preview page + skindesignerapi::cPluginStructure plugStruct; + plugStruct.name = "setup"; + plugStruct.libskindesignerAPIVersion = LIBSKINDESIGNERAPIVERSION; + plugStruct.SetMenu(0, "skinpreview.xml"); + ServiceRegisterPlugin(&plugStruct); + config.SetOsdLanguage(); config.SetPathes(); config.ReadSkins(); config.InitSkinIterator(); string skin = ""; + bool skinAvailable = false; while (config.GetSkin(skin)) { config.ReadSkinSetup(skin); cSkinDesigner *newSkin = new cSkinDesigner(skin); - skins.push_back(newSkin); + config.AddSkin(newSkin); + skinAvailable = true; if (!trueColorAvailable) { newSkin->ActivateBackupSkin(); } @@ -135,7 +143,7 @@ bool cPluginSkinDesigner::Start(void) { config.SetSkinSetupParameters(); config.ReadSkinRepos(); - if (skins.size() == 0) { + if (!skinAvailable) { esyslog("skindesigner: no skins found! Using default Skin LCARS!"); } return true; @@ -195,11 +203,13 @@ const char **cPluginSkinDesigner::SVDRPHelpPages(void) { cString cPluginSkinDesigner::SVDRPCommand(const char *Command, const char *Option, int &ReplyCode) { cSkinDesigner *activeSkin = NULL; - for (vector<cSkinDesigner*>::iterator skin = skins.begin(); skin != skins.end(); skin++) { + cSkinDesigner *availableSkin = NULL; + config.InitSkinRefsIterator(); + while (availableSkin = config.GetNextSkinRef()) { string activeSkinName = Setup.OSDSkin; - string currentSkinName = (*skin)->Description(); + string currentSkinName = availableSkin->Description(); if (!currentSkinName.compare(activeSkinName)) { - activeSkin = *skin; + activeSkin = availableSkin; break; } } @@ -264,9 +274,11 @@ bool cPluginSkinDesigner::ServiceRegisterPlugin(skindesignerapi::cPluginStructur skindesignerapi::ISDDisplayMenu *cPluginSkinDesigner::ServiceGetDisplayMenu(void) { cSkin *current = Skins.Current(); - for (vector<cSkinDesigner*>::iterator skin = skins.begin(); skin != skins.end(); skin++) { - if (*skin == current) { - cSDDisplayMenu *displayMenu = (*skin)->GetDisplayMenu(); + cSkinDesigner *availableSkin = NULL; + config.InitSkinRefsIterator(); + while (availableSkin = config.GetNextSkinRef()) { + if (availableSkin == current) { + cSDDisplayMenu *displayMenu = availableSkin->GetDisplayMenu(); if (displayMenu) { return displayMenu; } else { @@ -281,9 +293,11 @@ skindesignerapi::ISkinDisplayPlugin *cPluginSkinDesigner::ServiceGetDisplayPlugi if (pluginName.size() == 0 || viewID < 0) return NULL; cSkin *current = Skins.Current(); - for (vector<cSkinDesigner*>::iterator skin = skins.begin(); skin != skins.end(); skin++) { - if (*skin == current) { - cSkinDisplayPlugin *displayPlugin = (*skin)->DisplayPlugin(pluginName, viewID, subViewID); + cSkinDesigner *availableSkin = NULL; + config.InitSkinRefsIterator(); + while (availableSkin = config.GetNextSkinRef()) { + if (availableSkin == current) { + cSkinDisplayPlugin *displayPlugin = availableSkin->DisplayPlugin(pluginName, viewID, subViewID); if (displayPlugin) { return displayPlugin; } else { diff --git a/skins/blackhole/globals.xml b/skins/blackhole/globals.xml deleted file mode 100644 index 9096212..0000000 --- a/skins/blackhole/globals.xml +++ /dev/null @@ -1,269 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE globals SYSTEM "../../dtd/globals.dtd"> - -<globals> - <!-- - define all your needed colors here - --> - <colors> - </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> - </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(since)"> - <trans lang="en_EN">since</trans> - <trans lang="de_DE">Seit</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> - <token name="tr(temp)"> - <trans lang="en_EN">Temperature</trans> - <trans lang="de_DE">Temperatur</trans> - </token> - <token name="tr(apparenttemp)"> - <trans lang="en_EN">Felt Temperature</trans> - <trans lang="de_DE">Gefühlte Temperatur</trans> - </token> - <token name="tr(todaymin)"> - <trans lang="en_EN">minimum today</trans> - <trans lang="de_DE">heutiges Minimum</trans> - </token> - <token name="tr(todaymax)"> - <trans lang="en_EN">maximum today</trans> - <trans lang="de_DE">heutiges Maximum</trans> - </token> - <token name="tr(precipitationprobability)"> - <trans lang="en_EN">Precipitation Prob.</trans> - <trans lang="de_DE">Regenwahrsch.</trans> - </token> - <token name="tr(precipitationintensity)"> - <trans lang="en_EN">Precipitation Intensity</trans> - <trans lang="de_DE">Regenmenge</trans> - </token> - <token name="tr(humidity)"> - <trans lang="en_EN">Humidity</trans> - <trans lang="de_DE">Luftfeuchtigkeit</trans> - </token> - <token name="tr(apparenttemp)"> - <trans lang="en_EN">Felt Temperature</trans> - <trans lang="de_DE">Gefühlte Temperatur</trans> - </token> - <token name="tr(windbearing)"> - <trans lang="en_EN">Wind Bearing</trans> - <trans lang="de_DE">Windrichtung</trans> - </token> - <token name="tr(windspeed)"> - <trans lang="en_EN">Wind Speed</trans> - <trans lang="de_DE">Windgeschwindigkeit</trans> - </token> - <token name="tr(cloudcover)"> - <trans lang="en_EN">Cloud Cover</trans> - <trans lang="de_DE">Bewölkung</trans> - </token> - <token name="tr(pressure)"> - <trans lang="en_EN">Pressure</trans> - <trans lang="de_DE">Luftdruck</trans> - </token> - <token name="tr(ozone)"> - <trans lang="en_EN">Ozone</trans> - <trans lang="de_DE">Ozon</trans> - </token> - <token name="tr(visibility)"> - <trans lang="en_EN">visibility</trans> - <trans lang="de_DE">Sicht</trans> - </token> - <token name="tr(conditions)"> - <trans lang="en_EN">Weather Conditions</trans> - <trans lang="de_DE">Wetterlage</trans> - </token> - <token name="tr(from)"> - <trans lang="en_EN">from</trans> - <trans lang="de_DE">aus</trans> - </token> - <token name="tr(felt)"> - <trans lang="en_EN">felt</trans> - <trans lang="de_DE">gefühlt</trans> - </token> - <token name="tr(min)"> - <trans lang="en_EN">min</trans> - <trans lang="de_DE">min</trans> - </token> - <token name="tr(max)"> - <trans lang="en_EN">max</trans> - <trans lang="de_DE">max</trans> - </token> - <token name="tr(for)"> - <trans lang="en_EN">for</trans> - <trans lang="de_DE">für</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> - </fonts> -</globals> diff --git a/skins/blackhole/setup.xml b/skins/blackhole/setup.xml deleted file mode 100644 index 0383788..0000000 --- a/skins/blackhole/setup.xml +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE setup SYSTEM "../../dtd/setup.dtd"> - -<setup> - <menu> - <parameter type="bool" name="showdevices" displaytext="{tr(showdevices)}">0</parameter> - <parameter type="bool" name="showposter" displaytext="{tr(showpostertext)}">1</parameter> - <parameter type="bool" name="showmainmenuicons" displaytext="{tr(showmainmenuicons)}">1</parameter> - <parameter type="int" name="fadetime" min="0" max="1000" displaytext="{tr(fadetext)}">300</parameter> - <parameter type="int" name="shifttimechannel" min="0" max="1000" displaytext="{tr(shiftchanneltext)}">0</parameter> - <parameter type="int" name="shifttimevolume" min="0" max="1000" displaytext="{tr(shiftvolumetext)}">0</parameter> - <parameter type="int" name="shifttimereplay" min="0" max="1000" displaytext="{tr(shiftreplaytext)}">0</parameter> - <parameter type="int" name="shifttimemessage" min="0" max="1000" displaytext="{tr(shiftmessagetext)}">0</parameter> - <parameter type="int" name="shifttimemenu" min="0" max="1000" displaytext="{tr(shiftmenutext)}">0</parameter> - <parameter type="int" name="nummenuitemsmain" min="6" max="30" displaytext="{tr(nummenuitemsmain)}">10</parameter> - <parameter type="int" name="nummenuitems" min="6" max="30" displaytext="{tr(nummenuitems)}">10</parameter> - <parameter type="int" name="nummenuitemsdefault" min="6" max="30" displaytext="{tr(nummenuitemsdefault)}">16</parameter> - <parameter type="bool" name="showsubtitle" displaytext="{tr(showsubtitle)}">1</parameter> - </menu> - - <translations> - <token name="tr(showdevices)"> - <trans lang="en_EN">Show DVB device info when switching channel</trans> - <trans lang="de_DE">DVB Karten Info beim Umschalten anzeigen</trans> - <trans lang="fi_FI">Näytä DVB-tiedot kanavanvaihdossa</trans> - </token> - <token name="tr(showpostertext)"> - <trans lang="en_EN">Show Poster when switching channel</trans> - <trans lang="de_DE">Poster beim Umschalten anzeigen</trans> - <trans lang="fi_FI">Näytä posterit kanavanvaihdossa</trans> - </token> - <token name="tr(showmainmenuicons)"> - <trans lang="en_EN">Show Icons in Main Menu</trans> - <trans lang="de_DE">Icons im Hauptmenü anzeigen</trans> - <trans lang="fi_FI">Näytä ikonit päävalikossa</trans> - </token> - <token name="tr(fadetext)"> - <trans lang="en_EN">Fade time [ms]</trans> - <trans lang="de_DE">Einblendzeit [ms]</trans> - <trans lang="fi_FI">Häivytyksen kesto [ms]</trans> - </token> - <token name="tr(shiftchanneltext)"> - <trans lang="en_EN">Shift time for Channel Display [ms]</trans> - <trans lang="de_DE">Einfahrzeit für Channel Display [ms]</trans> - </token> - <token name="tr(shiftvolumetext)"> - <trans lang="en_EN">Shift time for Volume Display [ms]</trans> - <trans lang="de_DE">Einfahrzeit für Volume Display [ms]</trans> - </token> - <token name="tr(shiftreplaytext)"> - <trans lang="en_EN">Shift time for Replay Display [ms]</trans> - <trans lang="de_DE">Einfahrzeit für Replay Display [ms]</trans> - </token> - <token name="tr(shiftmessagetext)"> - <trans lang="en_EN">Shift time for Message Display [ms]</trans> - <trans lang="de_DE">Einfahrzeit für Message Display [ms]</trans> - </token> - <token name="tr(shiftmenutext)"> - <trans lang="en_EN">Shift time for Clock in Menu [ms]</trans> - <trans lang="de_DE">Einfahrzeit für Uhr im Menü [ms]</trans> - </token> - <token name="tr(nummenuitemsmain)"> - <trans lang="en_EN">Items in main menu</trans> - <trans lang="de_DE">Elemente im Hauptmenü</trans> - <trans lang="fi_FI">Valinnat päävalikossa</trans> - </token> - <token name="tr(nummenuitems)"> - <trans lang="en_EN">Items in schedules, timers, ... menus</trans> - <trans lang="de_DE">Elemente in Programm, Timer, ... Menüs</trans> - <trans lang="fi_FI">Valinnat alivalikoissa</trans> - </token> - <token name="tr(nummenuitemsdefault)"> - <trans lang="en_EN">Items in default list menu</trans> - <trans lang="de_DE">Elemente im Standard ListenMenü</trans> - <trans lang="fi_FI">Valinnat valikkolistoissa</trans> - </token> - <token name="tr(showsubtitle)"> - <trans lang="en_EN">Show shorttexts in schedules menus</trans> - <trans lang="de_DE">Kurztexte im Programm Menü anzeigen</trans> - <trans lang="fi_FI">Näytä lyhyet kuvaukset ohjelmaoppaassa</trans> - </token> - </translations> -</setup> diff --git a/skins/blackhole/themes/default/icons/clear-day.png b/skins/blackhole/themes/default/icons/clear-day.png Binary files differdeleted file mode 100644 index 2b06a14..0000000 --- a/skins/blackhole/themes/default/icons/clear-day.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/clear-night.png b/skins/blackhole/themes/default/icons/clear-night.png Binary files differdeleted file mode 100644 index 9bbe49f..0000000 --- a/skins/blackhole/themes/default/icons/clear-night.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/cloudy.png b/skins/blackhole/themes/default/icons/cloudy.png Binary files differdeleted file mode 100644 index 9870c7f..0000000 --- a/skins/blackhole/themes/default/icons/cloudy.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/fog.png b/skins/blackhole/themes/default/icons/fog.png Binary files differdeleted file mode 100644 index 9bc88d2..0000000 --- a/skins/blackhole/themes/default/icons/fog.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_activetimer.png b/skins/blackhole/themes/default/icons/ico_activetimer.png Binary files differdeleted file mode 100644 index af4c33c..0000000 --- a/skins/blackhole/themes/default/icons/ico_activetimer.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_arrow_left.png b/skins/blackhole/themes/default/icons/ico_arrow_left.png Binary files differdeleted file mode 100644 index 57800c7..0000000 --- a/skins/blackhole/themes/default/icons/ico_arrow_left.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_arrow_right.png b/skins/blackhole/themes/default/icons/ico_arrow_right.png Binary files differdeleted file mode 100644 index ea45f3a..0000000 --- a/skins/blackhole/themes/default/icons/ico_arrow_right.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_back_active.svg b/skins/blackhole/themes/default/icons/ico_back_active.svg deleted file mode 100644 index 5c50a6a..0000000 --- a/skins/blackhole/themes/default/icons/ico_back_active.svg +++ /dev/null @@ -1,66 +0,0 @@ -<?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.48.5 r10040" - sodipodi:docname="ico_back_active.svg" - width="100%" - height="100%"><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 - id="linearGradient4140"><stop - style="stop-color:#3c0000;stop-opacity:1;" - offset="0" - id="stop4142" /><stop - style="stop-color:#c80000;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="1400" - inkscape:window-height="998" - id="namedview7" - showgrid="false" - inkscape:zoom="5.7268259" - inkscape:cx="49.152542" - inkscape:cy="47.669492" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 deleted file mode 100644 index bbda2ee..0000000 --- a/skins/blackhole/themes/default/icons/ico_back_active_x1.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?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.48.5 r10040" - sodipodi:docname="ico_back_active_x1.svg" - width="100%" - height="100%"><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 - id="linearGradient4140"><stop - style="stop-color:#3c0000;stop-opacity:1;" - offset="0" - id="stop4142" /><stop - style="stop-color:#c80000;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="1400" - inkscape:window-height="998" - id="namedview7" - showgrid="false" - inkscape:zoom="5.7268259" - inkscape:cx="49.152542" - inkscape:cy="47.844109" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 deleted file mode 100644 index 7af4481..0000000 --- a/skins/blackhole/themes/default/icons/ico_back_active_x2.svg +++ /dev/null @@ -1,98 +0,0 @@ -<?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.48.5 r10040" - sodipodi:docname="ico_back_active_x2.svg" - width="100%" - height="100%"><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 - id="linearGradient4140"><stop - style="stop-color:#3c0000;stop-opacity:1;" - offset="0" - id="stop4142" /><stop - style="stop-color:#c80000;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="1400" - inkscape:window-height="998" - id="namedview7" - showgrid="false" - inkscape:zoom="5.7268259" - inkscape:cx="49.152542" - inkscape:cy="47.669492" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 deleted file mode 100644 index d1bef47..0000000 --- a/skins/blackhole/themes/default/icons/ico_back_active_x3.svg +++ /dev/null @@ -1,114 +0,0 @@ -<?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.48.5 r10040" - sodipodi:docname="ico_back_active_x3.svg" - width="100%" - height="100%"><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 - id="linearGradient4140"><stop - style="stop-color:#3c0000;stop-opacity:1;" - offset="0" - id="stop4142" /><stop - style="stop-color:#c80000;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="1400" - inkscape:window-height="998" - id="namedview7" - showgrid="false" - inkscape:zoom="5.7268259" - inkscape:cx="49.152542" - inkscape:cy="47.669492" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 deleted file mode 100644 index 68be369..0000000 --- a/skins/blackhole/themes/default/icons/ico_back_inactive.svg +++ /dev/null @@ -1,66 +0,0 @@ -<?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.48.5 r10040" - sodipodi:docname="ico_back_inactive.svg" - width="100%" - height="100%"><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 - id="linearGradient4140"><stop - style="stop-color:#001428;stop-opacity:1;" - offset="0" - id="stop4142" /><stop - style="stop-color:#003c5e;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="1400" - inkscape:window-height="998" - id="namedview7" - showgrid="false" - inkscape:zoom="5.7268259" - inkscape:cx="49.152542" - inkscape:cy="47.669492" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 deleted file mode 100644 index df8c2fc..0000000 --- a/skins/blackhole/themes/default/icons/ico_crypted.svg +++ /dev/null @@ -1,151 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 48c2ba7..0000000 --- a/skins/blackhole/themes/default/icons/ico_cutmark_start.svg +++ /dev/null @@ -1,95 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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.48.5 r10040" - 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="1400" - inkscape:window-height="998" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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> - <path - style="fill:#aa0000" - d="m 3.519685,59.740436 c -2.83822384,-0.789744 -4.24837212,-3.695526 -2.9953,-6.172178 0.5947804,-1.175563 1.9241322,-2.128627 3.3448652,-2.398063 0.3451571,-0.06546 2.2147922,-0.119014 4.1547447,-0.119014 l 3.5271861,0 0,-21.082677 0,-21.0826772 -3.277559,-0.00205 C 3.9689183,8.8810825 3.2550989,8.7351141 1.9590647,7.5925166 1.3158013,7.0254087 0.72338554,5.9229248 0.59012999,5.0449332 0.30222385,3.1479828 1.3351839,1.3732383 3.2570871,0.46279302 L 4.0511811,0.08661428 11.427803,0.05280619 c 7.852023,-0.03598691 7.823923,-0.03781394 8.276987,0.53816458 0.229454,0.29170214 0.232218,0.64095123 0.232218,29.33856123 0,26.76419 -0.01526,29.066633 -0.19444,29.340098 -0.420963,0.642471 -0.397558,0.640708 -8.353449,0.629257 -5.4874666,-0.0079 -7.4719699,-0.04786 -7.869434,-0.158451 z" - id="path2993" - inkscape:connector-curvature="0" - transform="matrix(1.0032441,0,0,0.9393488,432.41651,906.02347)" /> - </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 deleted file mode 100644 index 41d6096..0000000 --- a/skins/blackhole/themes/default/icons/ico_cutmark_stop.svg +++ /dev/null @@ -1,101 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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.48.5 r10040" - 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="1400" - inkscape:window-height="998" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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> - <path - style="fill:#aa0000" - d="M 0.85091519,59.729752 C 0.64982404,59.641517 0.38407601,59.419967 0.26036401,59.237418 0.04070838,58.913296 0.03543308,58.225468 0.03543308,29.909449 0.03543308,1.098751 0.03694318,0.91134105 0.27165355,0.59351129 0.40157481,0.41758023 0.6619666,0.21826921 0.85030197,0.1505979 1.4004033,-0.04706056 15.228276,-0.0127743 15.980315,0.18811282 c 1.408449,0.37622972 2.534731,1.27768338 3.085096,2.46925198 0.294992,0.6386724 0.340101,0.8773257 0.340101,1.7993282 0,0.9373467 -0.0411,1.1467558 -0.347677,1.7716535 -0.423189,0.8625773 -1.332315,1.7752418 -2.130623,2.1389155 -0.929628,0.4234972 -1.892379,0.5167151 -5.346503,0.5176726 l -3.2185043,8.922e-4 0,21.0826772 0,21.082677 3.5137793,7.09e-4 c 1.932579,3.54e-4 3.823152,0.05135 4.201272,0.113278 1.52058,0.249034 2.766688,1.146842 3.412498,2.458669 0.351895,0.714801 0.388199,0.888184 0.388199,1.854019 0,0.924739 -0.04492,1.162737 -0.340101,1.801812 -0.570443,1.235036 -1.815604,2.195088 -3.238547,2.497005 -0.980546,0.20805 -14.9641015,0.165601 -15.44838981,-0.0469 l 0,-2.5e-5 z" - id="path2987" - inkscape:connector-curvature="0" - transform="matrix(1.0032441,0,0,0.9393488,432.41651,906.02347)" /> - <path - style="fill:#aa0000" - d="M 3.9119451,59.797809 C 0.19680771,59.715951 0.30997061,59.765067 0.19557725,58.184801 0.0939909,56.781454 0.09298143,2.9742768 0.1945165,1.6439522 0.31082504,0.12006393 0.14135753,0.19082843 3.9262317,0.08570069 5.6202608,0.03864774 9.0520163,0.04798849 11.552355,0.1064579 l 4.54607,0.10630802 0.795398,0.39514232 c 0.951729,0.47280566 1.758455,1.29073706 2.178946,2.20921206 0.270512,0.5908743 0.295774,0.7697596 0.254353,1.8010521 -0.04037,1.005014 -0.08802,1.2167376 -0.389731,1.7315661 -0.439402,0.7497843 -1.325166,1.6129526 -1.98094,1.9304075 -0.833557,0.4035178 -1.62389,0.4899888 -5.198577,0.5687805 l -3.3956693,0.074846 0,21.0637045 0,21.063704 2.0374013,0.0081 c 3.809821,0.01522 5.972535,0.161343 6.731889,0.454852 0.841806,0.325377 1.81099,1.191339 2.279029,2.036298 0.327626,0.591473 0.349318,0.711311 0.349318,1.929846 0,1.215005 -0.02237,1.339587 -0.345121,1.922134 -0.447454,0.807625 -1.319724,1.61625 -2.168492,2.010271 -0.645838,0.299814 -0.791543,0.317066 -3.332843,0.394612 -2.960391,0.09033 -5.5826017,0.08784 -10.0014409,-0.0095 l 0,-3e-6 z" - id="path2989" - inkscape:connector-curvature="0" - transform="matrix(1.0032441,0,0,0.9393488,432.41651,906.02347)" /> - </g> - </g> -</svg> diff --git a/skins/blackhole/themes/default/icons/ico_cutted.svg b/skins/blackhole/themes/default/icons/ico_cutted.svg deleted file mode 100644 index 7938510..0000000 --- a/skins/blackhole/themes/default/icons/ico_cutted.svg +++ /dev/null @@ -1,48 +0,0 @@ -<?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_delete_active.png b/skins/blackhole/themes/default/icons/ico_delete_active.png Binary files differdeleted file mode 100644 index f473717..0000000 --- a/skins/blackhole/themes/default/icons/ico_delete_active.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_delete_inactive.png b/skins/blackhole/themes/default/icons/ico_delete_inactive.png Binary files differdeleted file mode 100644 index 21b0a88..0000000 --- a/skins/blackhole/themes/default/icons/ico_delete_inactive.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_dolby.svg b/skins/blackhole/themes/default/icons/ico_dolby.svg deleted file mode 100644 index 90e087a..0000000 --- a/skins/blackhole/themes/default/icons/ico_dolby.svg +++ /dev/null @@ -1,141 +0,0 @@ -<?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_edit_active.png b/skins/blackhole/themes/default/icons/ico_edit_active.png Binary files differdeleted file mode 100644 index ec39699..0000000 --- a/skins/blackhole/themes/default/icons/ico_edit_active.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_edit_inactive.png b/skins/blackhole/themes/default/icons/ico_edit_inactive.png Binary files differdeleted file mode 100644 index 71f016c..0000000 --- a/skins/blackhole/themes/default/icons/ico_edit_inactive.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_folder.svg b/skins/blackhole/themes/default/icons/ico_folder.svg deleted file mode 100644 index 879dafc..0000000 --- a/skins/blackhole/themes/default/icons/ico_folder.svg +++ /dev/null @@ -1,53 +0,0 @@ -<?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 deleted file mode 100644 index d1cacb5..0000000 --- a/skins/blackhole/themes/default/icons/ico_fwd_active.svg +++ /dev/null @@ -1,66 +0,0 @@ -<?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.48.5 r10040" - sodipodi:docname="ico_fwd_active_.svg" - width="100%" - height="100%"><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 /></cc:Work></rdf:RDF></metadata><defs - id="defs9"><linearGradient - id="linearGradient4140"><stop - style="stop-color:#3c0000;stop-opacity:1;" - offset="0" - id="stop4142" /><stop - style="stop-color:#c80000;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="1400" - inkscape:window-height="998" - id="namedview7" - showgrid="false" - inkscape:zoom="5.7268259" - inkscape:cx="41.185188" - inkscape:cy="47.669492" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 deleted file mode 100644 index 6e6b723..0000000 --- a/skins/blackhole/themes/default/icons/ico_fwd_active_x1.svg +++ /dev/null @@ -1,89 +0,0 @@ -<?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.48.5 r10040" - sodipodi:docname="ico_fwd_active_x1_.svg" - width="100%" - height="100%"><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 /></cc:Work></rdf:RDF></metadata><defs - id="defs9"><linearGradient - id="linearGradient4140"><stop - style="stop-color:#3c0000;stop-opacity:1;" - offset="0" - id="stop4142" /><stop - style="stop-color:#c80000;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 - id="linearGradient4140-2"><stop - style="stop-color:#3c0000;stop-opacity:1;" - offset="0" - id="stop4142-6" /><stop - style="stop-color:#c80000;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="1400" - inkscape:window-height="998" - id="namedview7" - showgrid="false" - inkscape:zoom="5.7268259" - inkscape:cx="41.185188" - inkscape:cy="48.018726" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 deleted file mode 100644 index 2007221..0000000 --- a/skins/blackhole/themes/default/icons/ico_fwd_active_x2.svg +++ /dev/null @@ -1,105 +0,0 @@ -<?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.48.5 r10040" - sodipodi:docname="ico_fwd_active_x2_.svg" - width="100%" - height="100%"><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 /></cc:Work></rdf:RDF></metadata><defs - id="defs9"><linearGradient - id="linearGradient4140"><stop - style="stop-color:#3c0000;stop-opacity:1;" - offset="0" - id="stop4142" /><stop - style="stop-color:#c80000;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 - id="linearGradient4140-2"><stop - style="stop-color:#3c0000;stop-opacity:1;" - offset="0" - id="stop4142-6" /><stop - style="stop-color:#c80000;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="1400" - inkscape:window-height="998" - id="namedview7" - showgrid="false" - inkscape:zoom="5.7268259" - inkscape:cx="41.185188" - inkscape:cy="48.018726" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 deleted file mode 100644 index 36b75c7..0000000 --- a/skins/blackhole/themes/default/icons/ico_fwd_active_x3.svg +++ /dev/null @@ -1,121 +0,0 @@ -<?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.48.5 r10040" - sodipodi:docname="ico_fwd_active_x3_.svg" - width="100%" - height="100%"><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 /></cc:Work></rdf:RDF></metadata><defs - id="defs9"><linearGradient - id="linearGradient4140"><stop - style="stop-color:#3c0000;stop-opacity:1;" - offset="0" - id="stop4142" /><stop - style="stop-color:#c80000;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 - id="linearGradient4140-2"><stop - style="stop-color:#3c0000;stop-opacity:1;" - offset="0" - id="stop4142-6" /><stop - style="stop-color:#c80000;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="1400" - inkscape:window-height="998" - id="namedview7" - showgrid="false" - inkscape:zoom="5.7268259" - inkscape:cx="41.185188" - inkscape:cy="48.018726" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 deleted file mode 100644 index fd121a0..0000000 --- a/skins/blackhole/themes/default/icons/ico_fwd_inactive.svg +++ /dev/null @@ -1,66 +0,0 @@ -<?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.48.5 r10040" - sodipodi:docname="ico_fwd_inactive.svg" - width="100%" - height="100%"><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 - id="linearGradient4140"><stop - style="stop-color:#001428;stop-opacity:1;" - offset="0" - id="stop4142" /><stop - style="stop-color:#003c5e;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="1400" - inkscape:window-height="998" - id="namedview7" - showgrid="false" - inkscape:zoom="5.7268259" - inkscape:cx="49.152542" - inkscape:cy="47.669492" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 deleted file mode 100644 index 02ebf25..0000000 --- a/skins/blackhole/themes/default/icons/ico_hd1080i.svg +++ /dev/null @@ -1,173 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 6e10a98..0000000 --- a/skins/blackhole/themes/default/icons/ico_hd720p.svg +++ /dev/null @@ -1,169 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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_info_active.png b/skins/blackhole/themes/default/icons/ico_info_active.png Binary files differdeleted file mode 100644 index c88f76d..0000000 --- a/skins/blackhole/themes/default/icons/ico_info_active.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_info_inactive.png b/skins/blackhole/themes/default/icons/ico_info_inactive.png Binary files differdeleted file mode 100644 index 37eeed2..0000000 --- a/skins/blackhole/themes/default/icons/ico_info_inactive.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_new_rec.svg b/skins/blackhole/themes/default/icons/ico_new_rec.svg deleted file mode 100644 index f3acaf5..0000000 --- a/skins/blackhole/themes/default/icons/ico_new_rec.svg +++ /dev/null @@ -1,48 +0,0 @@ -<?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_no.png b/skins/blackhole/themes/default/icons/ico_no.png Binary files differdeleted file mode 100644 index 47cdba0..0000000 --- a/skins/blackhole/themes/default/icons/ico_no.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_pause_active.svg b/skins/blackhole/themes/default/icons/ico_pause_active.svg deleted file mode 100644 index 8c20614..0000000 --- a/skins/blackhole/themes/default/icons/ico_pause_active.svg +++ /dev/null @@ -1,103 +0,0 @@ -<?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.48.5 r10040" - 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 - id="linearGradient4173"><stop - style="stop-color:#3c0000;stop-opacity:1;" - offset="0" - id="stop4175" /><stop - style="stop-color:#c80000;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="1400" - inkscape:window-height="998" - id="namedview41" - showgrid="false" - inkscape:zoom="3.3714286" - inkscape:cx="26.5" - inkscape:cy="35" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 deleted file mode 100644 index d67da95..0000000 --- a/skins/blackhole/themes/default/icons/ico_pause_inactive.svg +++ /dev/null @@ -1,103 +0,0 @@ -<?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.48.5 r10040" - 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 - id="linearGradient4173"><stop - style="stop-color:#001428;stop-opacity:1;" - offset="0" - id="stop4175" /><stop - style="stop-color:#003c5e;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="1400" - inkscape:window-height="998" - id="namedview41" - showgrid="false" - inkscape:zoom="3.3714286" - inkscape:cx="26.5" - inkscape:cy="35" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 deleted file mode 100644 index bcb7da2..0000000 --- a/skins/blackhole/themes/default/icons/ico_play_active.svg +++ /dev/null @@ -1,97 +0,0 @@ -<?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.48.5 r10040" - 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 - id="linearGradient4169"><stop - style="stop-color:#3c0000;stop-opacity:1;" - offset="0" - id="stop4171" /><stop - style="stop-color:#c80000;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="1400" - inkscape:window-height="998" - id="namedview37" - showgrid="false" - inkscape:zoom="3.9333333" - inkscape:cx="25" - inkscape:cy="30" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 deleted file mode 100644 index 5eee008..0000000 --- a/skins/blackhole/themes/default/icons/ico_play_inactive.svg +++ /dev/null @@ -1,97 +0,0 @@ -<?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.48.5 r10040" - 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 - id="linearGradient4169"><stop - style="stop-color:#001428;stop-opacity:1;" - offset="0" - id="stop4171" /><stop - style="stop-color:#003c5e;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="1400" - inkscape:window-height="998" - id="namedview37" - showgrid="false" - inkscape:zoom="3.9333333" - inkscape:cx="25" - inkscape:cy="30" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 deleted file mode 100644 index 7dc41a6..0000000 --- a/skins/blackhole/themes/default/icons/ico_rec_on.svg +++ /dev/null @@ -1,160 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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="21.134219" - 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:0;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_record_active.png b/skins/blackhole/themes/default/icons/ico_record_active.png Binary files differdeleted file mode 100644 index 476da99..0000000 --- a/skins/blackhole/themes/default/icons/ico_record_active.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_record_inactive.png b/skins/blackhole/themes/default/icons/ico_record_inactive.png Binary files differdeleted file mode 100644 index 2a91da3..0000000 --- a/skins/blackhole/themes/default/icons/ico_record_inactive.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_recording.svg b/skins/blackhole/themes/default/icons/ico_recording.svg deleted file mode 100644 index b519600..0000000 --- a/skins/blackhole/themes/default/icons/ico_recording.svg +++ /dev/null @@ -1,48 +0,0 @@ -<?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 deleted file mode 100644 index 934b24d..0000000 --- a/skins/blackhole/themes/default/icons/ico_sd576i.svg +++ /dev/null @@ -1,169 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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_search_active.png b/skins/blackhole/themes/default/icons/ico_search_active.png Binary files differdeleted file mode 100644 index 7bf7bc7..0000000 --- a/skins/blackhole/themes/default/icons/ico_search_active.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_search_inactive.png b/skins/blackhole/themes/default/icons/ico_search_inactive.png Binary files differdeleted file mode 100644 index 4a210bb..0000000 --- a/skins/blackhole/themes/default/icons/ico_search_inactive.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_sort_name.png b/skins/blackhole/themes/default/icons/ico_sort_name.png Binary files differdeleted file mode 100644 index bef06d5..0000000 --- a/skins/blackhole/themes/default/icons/ico_sort_name.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_sort_number.png b/skins/blackhole/themes/default/icons/ico_sort_number.png Binary files differdeleted file mode 100644 index 4084ba5..0000000 --- a/skins/blackhole/themes/default/icons/ico_sort_number.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_sort_provider.png b/skins/blackhole/themes/default/icons/ico_sort_provider.png Binary files differdeleted file mode 100644 index fe5cc64..0000000 --- a/skins/blackhole/themes/default/icons/ico_sort_provider.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_sort_time.png b/skins/blackhole/themes/default/icons/ico_sort_time.png Binary files differdeleted file mode 100644 index a8f3515..0000000 --- a/skins/blackhole/themes/default/icons/ico_sort_time.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/ico_switchtimer.svg b/skins/blackhole/themes/default/icons/ico_switchtimer.svg deleted file mode 100644 index 533305d..0000000 --- a/skins/blackhole/themes/default/icons/ico_switchtimer.svg +++ /dev/null @@ -1,162 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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.91pre2 r13516" - viewBox="0 0 49.999999 50.000001" - sodipodi:docname="ico_switchtimer.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="-0.844769" - inkscape:cy="23.850628" - 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="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1002.3622)"> - <circle - style="opacity:1;fill:#ff7f2a;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" - d="M 48.976849,1027.3622 A 23.976849,23.976849 0 0 1 25,1051.339 23.976849,23.976849 0 0 1 1.0231514,1027.3622 23.976849,23.976849 0 0 1 25,1003.3853 a 23.976849,23.976849 0 0 1 23.976849,23.9769 z" /> - <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" - d="M 48.434328,1027.3623 A 23.434328,23.43433 0 0 1 25,1050.7966 23.434328,23.43433 0 0 1 1.5656719,1027.3623 23.434328,23.43433 0 0 1 25,1003.928 a 23.434328,23.43433 0 0 1 23.434328,23.4343 z" /> - <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_timer.svg b/skins/blackhole/themes/default/icons/ico_timer.svg deleted file mode 100644 index 1e377b2..0000000 --- a/skins/blackhole/themes/default/icons/ico_timer.svg +++ /dev/null @@ -1,48 +0,0 @@ -<?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 deleted file mode 100644 index 23a4c47..0000000 --- a/skins/blackhole/themes/default/icons/ico_timer_active.svg +++ /dev/null @@ -1,63 +0,0 @@ -<?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 deleted file mode 100644 index b826014..0000000 --- a/skins/blackhole/themes/default/icons/ico_timer_inactive.svg +++ /dev/null @@ -1,51 +0,0 @@ -<?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 deleted file mode 100644 index f75a4e6..0000000 --- a/skins/blackhole/themes/default/icons/ico_videotext.svg +++ /dev/null @@ -1,154 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 3dbfe7a..0000000 --- a/skins/blackhole/themes/default/icons/ico_volume_full.svg +++ /dev/null @@ -1,61 +0,0 @@ -<?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 deleted file mode 100644 index 6b4259d..0000000 --- a/skins/blackhole/themes/default/icons/ico_volume_low.svg +++ /dev/null @@ -1,53 +0,0 @@ -<?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 deleted file mode 100644 index 24042fe..0000000 --- a/skins/blackhole/themes/default/icons/ico_volume_medium.svg +++ /dev/null @@ -1,57 +0,0 @@ -<?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 deleted file mode 100644 index a2b915f..0000000 --- a/skins/blackhole/themes/default/icons/ico_volume_mute.svg +++ /dev/null @@ -1,49 +0,0 @@ -<?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 deleted file mode 100644 index ed7d0c8..0000000 --- a/skins/blackhole/themes/default/icons/ico_widescreen.svg +++ /dev/null @@ -1,137 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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/icons/ico_yes.png b/skins/blackhole/themes/default/icons/ico_yes.png Binary files differdeleted file mode 100644 index 2f1af98..0000000 --- a/skins/blackhole/themes/default/icons/ico_yes.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/partly-cloudy-day.png b/skins/blackhole/themes/default/icons/partly-cloudy-day.png Binary files differdeleted file mode 100644 index b6df179..0000000 --- a/skins/blackhole/themes/default/icons/partly-cloudy-day.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/partly-cloudy-night.png b/skins/blackhole/themes/default/icons/partly-cloudy-night.png Binary files differdeleted file mode 100644 index aa358fb..0000000 --- a/skins/blackhole/themes/default/icons/partly-cloudy-night.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/rain.png b/skins/blackhole/themes/default/icons/rain.png Binary files differdeleted file mode 100644 index 8275003..0000000 --- a/skins/blackhole/themes/default/icons/rain.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/sleet.png b/skins/blackhole/themes/default/icons/sleet.png Binary files differdeleted file mode 100644 index 1d99ae0..0000000 --- a/skins/blackhole/themes/default/icons/sleet.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/snow.png b/skins/blackhole/themes/default/icons/snow.png Binary files differdeleted file mode 100644 index 939e22f..0000000 --- a/skins/blackhole/themes/default/icons/snow.png +++ /dev/null diff --git a/skins/blackhole/themes/default/icons/wind.png b/skins/blackhole/themes/default/icons/wind.png Binary files differdeleted file mode 100644 index d92ec15..0000000 --- a/skins/blackhole/themes/default/icons/wind.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/Applikationen.png b/skins/blackhole/themes/default/menuicons/customicons/Applikationen.png Binary files differdeleted file mode 100644 index 3c3b616..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/Applikationen.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/Audio.png b/skins/blackhole/themes/default/menuicons/customicons/Audio.png Binary files differdeleted file mode 100644 index ff387fe..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/Audio.png +++ /dev/null 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 differdeleted file mode 100644 index 3cdddc9..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/Aufnahmen-Liste aktualisieren.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/Dienstprogramme.png b/skins/blackhole/themes/default/menuicons/customicons/Dienstprogramme.png Binary files differdeleted file mode 100644 index 793aba6..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/Dienstprogramme.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/FireFox.png b/skins/blackhole/themes/default/menuicons/customicons/FireFox.png Binary files differdeleted file mode 100644 index 192fadc..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/FireFox.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/Info.png b/skins/blackhole/themes/default/menuicons/customicons/Info.png Binary files differdeleted file mode 100644 index 6737431..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/Info.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/Internet.png b/skins/blackhole/themes/default/menuicons/customicons/Internet.png Binary files differdeleted file mode 100644 index f3db150..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/Internet.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/Medien.png b/skins/blackhole/themes/default/menuicons/customicons/Medien.png Binary files differdeleted file mode 100644 index 0ce2360..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/Medien.png +++ /dev/null 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 differdeleted file mode 100644 index 5783ccf..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/Rechner neu starten.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/Remote wakeup.png b/skins/blackhole/themes/default/menuicons/customicons/Remote wakeup.png Binary files differdeleted file mode 100644 index 1cd2f6e..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/Remote wakeup.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/Spiele.png b/skins/blackhole/themes/default/menuicons/customicons/Spiele.png Binary files differdeleted file mode 100644 index 8e07161..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/Spiele.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/System herunterfahren.png b/skins/blackhole/themes/default/menuicons/customicons/System herunterfahren.png Binary files differdeleted file mode 100644 index e0234df..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/System herunterfahren.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/System.png b/skins/blackhole/themes/default/menuicons/customicons/System.png Binary files differdeleted file mode 100644 index 81d100e..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/System.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/Tools.png b/skins/blackhole/themes/default/menuicons/customicons/Tools.png Binary files differdeleted file mode 100644 index cf328ef..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/Tools.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/Tunderbird.png b/skins/blackhole/themes/default/menuicons/customicons/Tunderbird.png Binary files differdeleted file mode 100644 index 5ae27e0..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/Tunderbird.png +++ /dev/null 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 differdeleted file mode 100644 index cd7b81c..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/USB Massenspeicher sicher entfernen.png +++ /dev/null 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 differdeleted file mode 100644 index 14904ca..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/VDR neu starten.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/Video.png b/skins/blackhole/themes/default/menuicons/customicons/Video.png Binary files differdeleted file mode 100644 index 490ca4b..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/Video.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/Web.png b/skins/blackhole/themes/default/menuicons/customicons/Web.png Binary files differdeleted file mode 100644 index 20260e3..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/Web.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/XBMC.png b/skins/blackhole/themes/default/menuicons/customicons/XBMC.png Binary files differdeleted file mode 100644 index c7c4c04..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/XBMC.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/Xterm.png b/skins/blackhole/themes/default/menuicons/customicons/Xterm.png Binary files differdeleted file mode 100644 index fa75282..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/Xterm.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/audiovideo.png b/skins/blackhole/themes/default/menuicons/customicons/audiovideo.png Binary files differdeleted file mode 100644 index 726538d..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/audiovideo.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/markad_status.png b/skins/blackhole/themes/default/menuicons/customicons/markad_status.png Binary files differdeleted file mode 100644 index 4fdc7a4..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/markad_status.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/schneiden_abbrechen.png b/skins/blackhole/themes/default/menuicons/customicons/schneiden_abbrechen.png Binary files differdeleted file mode 100644 index b2e0bd3..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/schneiden_abbrechen.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/tux.png b/skins/blackhole/themes/default/menuicons/customicons/tux.png Binary files differdeleted file mode 100644 index c5b4742..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/tux.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/usb.png b/skins/blackhole/themes/default/menuicons/customicons/usb.png Binary files differdeleted file mode 100644 index c4db1d4..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/usb.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/vdrlogo.png b/skins/blackhole/themes/default/menuicons/customicons/vdrlogo.png Binary files differdeleted file mode 100644 index 037a191..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/vdrlogo.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/customicons/yaicon_blue.png b/skins/blackhole/themes/default/menuicons/customicons/yaicon_blue.png Binary files differdeleted file mode 100644 index 2c49273..0000000 --- a/skins/blackhole/themes/default/menuicons/customicons/yaicon_blue.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/admin.png b/skins/blackhole/themes/default/menuicons/pluginicons/admin.png Binary files differdeleted file mode 100644 index cf328ef..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/admin.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/arghdirector.png b/skins/blackhole/themes/default/menuicons/pluginicons/arghdirector.png Binary files differdeleted file mode 100644 index bbd221a..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/arghdirector.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/autostart.png b/skins/blackhole/themes/default/menuicons/pluginicons/autostart.png Binary files differdeleted file mode 100644 index 6fdb1bb..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/autostart.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/avahi4vdr.png b/skins/blackhole/themes/default/menuicons/pluginicons/avahi4vdr.png Binary files differdeleted file mode 100644 index 044e71d..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/avahi4vdr.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/avards.png b/skins/blackhole/themes/default/menuicons/pluginicons/avards.png Binary files differdeleted file mode 100644 index cf8d037..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/avards.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/block.png b/skins/blackhole/themes/default/menuicons/pluginicons/block.png Binary files differdeleted file mode 100644 index 86127c2..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/block.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/burn.png b/skins/blackhole/themes/default/menuicons/pluginicons/burn.png Binary files differdeleted file mode 100644 index 305d7ff..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/burn.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/cdplayer.png b/skins/blackhole/themes/default/menuicons/pluginicons/cdplayer.png Binary files differdeleted file mode 100644 index 89a6c19..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/cdplayer.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/chanman.png b/skins/blackhole/themes/default/menuicons/pluginicons/chanman.png Binary files differdeleted file mode 100644 index a73e83c..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/chanman.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/check.png b/skins/blackhole/themes/default/menuicons/pluginicons/check.png Binary files differdeleted file mode 100644 index d487a24..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/check.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/conflictcheckonly.png b/skins/blackhole/themes/default/menuicons/pluginicons/conflictcheckonly.png Binary files differdeleted file mode 100644 index 7f832bd..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/conflictcheckonly.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/ddci.png b/skins/blackhole/themes/default/menuicons/pluginicons/ddci.png Binary files differdeleted file mode 100644 index 4ad459c..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/ddci.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/devstatus.png b/skins/blackhole/themes/default/menuicons/pluginicons/devstatus.png Binary files differdeleted file mode 100644 index 96c0ec1..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/devstatus.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/dummydevice.png b/skins/blackhole/themes/default/menuicons/pluginicons/dummydevice.png Binary files differdeleted file mode 100644 index 11fd707..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/dummydevice.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/duplicates.png b/skins/blackhole/themes/default/menuicons/pluginicons/duplicates.png Binary files differdeleted file mode 100644 index dc1be57..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/duplicates.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/dvbapi.png b/skins/blackhole/themes/default/menuicons/pluginicons/dvbapi.png Binary files differdeleted file mode 100644 index b966461..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/dvbapi.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/dvbhddevice.png b/skins/blackhole/themes/default/menuicons/pluginicons/dvbhddevice.png Binary files differdeleted file mode 100644 index b874297..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/dvbhddevice.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/dvbsddevice.png b/skins/blackhole/themes/default/menuicons/pluginicons/dvbsddevice.png Binary files differdeleted file mode 100644 index 106184e..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/dvbsddevice.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/dynamite.png b/skins/blackhole/themes/default/menuicons/pluginicons/dynamite.png Binary files differdeleted file mode 100644 index 28ea35a..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/dynamite.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/eepg.png b/skins/blackhole/themes/default/menuicons/pluginicons/eepg.png Binary files differdeleted file mode 100644 index 3938b96..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/eepg.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/epg2vdr.png b/skins/blackhole/themes/default/menuicons/pluginicons/epg2vdr.png Binary files differdeleted file mode 100644 index ac8757e..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/epg2vdr.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/epgsearch.png b/skins/blackhole/themes/default/menuicons/pluginicons/epgsearch.png Binary files differdeleted file mode 100644 index 5eab415..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/epgsearch.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/epgsearchonly.png b/skins/blackhole/themes/default/menuicons/pluginicons/epgsearchonly.png Binary files differdeleted file mode 100644 index b5186e7..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/epgsearchonly.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/epgsync.png b/skins/blackhole/themes/default/menuicons/pluginicons/epgsync.png Binary files differdeleted file mode 100644 index 5c14009..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/epgsync.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/externalplayer.png b/skins/blackhole/themes/default/menuicons/pluginicons/externalplayer.png Binary files differdeleted file mode 100644 index 2bd67db..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/externalplayer.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/extrecmenu.png b/skins/blackhole/themes/default/menuicons/pluginicons/extrecmenu.png Binary files differdeleted file mode 100644 index 6f613f1..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/extrecmenu.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/favorites.png b/skins/blackhole/themes/default/menuicons/pluginicons/favorites.png Binary files differdeleted file mode 100644 index 409c852..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/favorites.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/femon.png b/skins/blackhole/themes/default/menuicons/pluginicons/femon.png Binary files differdeleted file mode 100644 index e87b711..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/femon.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/fepg.png b/skins/blackhole/themes/default/menuicons/pluginicons/fepg.png Binary files differdeleted file mode 100644 index 65023ed..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/fepg.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/filebrowser.png b/skins/blackhole/themes/default/menuicons/pluginicons/filebrowser.png Binary files differdeleted file mode 100644 index d3f90e0..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/filebrowser.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/fritzbox.png b/skins/blackhole/themes/default/menuicons/pluginicons/fritzbox.png Binary files differdeleted file mode 100644 index 7bfc229..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/fritzbox.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/graphlcd.png b/skins/blackhole/themes/default/menuicons/pluginicons/graphlcd.png Binary files differdeleted file mode 100644 index 39ffd35..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/graphlcd.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/graphtft.png b/skins/blackhole/themes/default/menuicons/pluginicons/graphtft.png Binary files differdeleted file mode 100644 index 39ffd35..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/graphtft.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/image.png b/skins/blackhole/themes/default/menuicons/pluginicons/image.png Binary files differdeleted file mode 100644 index 33644e0..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/image.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/imonlcd.png b/skins/blackhole/themes/default/menuicons/pluginicons/imonlcd.png Binary files differdeleted file mode 100644 index 3d34fc4..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/imonlcd.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/iptv.png b/skins/blackhole/themes/default/menuicons/pluginicons/iptv.png Binary files differdeleted file mode 100644 index 4494ddc..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/iptv.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/lcdproc.png b/skins/blackhole/themes/default/menuicons/pluginicons/lcdproc.png Binary files differdeleted file mode 100644 index 3d34fc4..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/lcdproc.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/mailbox.png b/skins/blackhole/themes/default/menuicons/pluginicons/mailbox.png Binary files differdeleted file mode 100644 index 1bc76e8..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/mailbox.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/makemkv.png b/skins/blackhole/themes/default/menuicons/pluginicons/makemkv.png Binary files differdeleted file mode 100644 index 41cddf1..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/makemkv.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/markad.png b/skins/blackhole/themes/default/menuicons/pluginicons/markad.png Binary files differdeleted file mode 100644 index b3defaf..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/markad.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/mlist.png b/skins/blackhole/themes/default/menuicons/pluginicons/mlist.png Binary files differdeleted file mode 100644 index 19c367f..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/mlist.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/music.png b/skins/blackhole/themes/default/menuicons/pluginicons/music.png Binary files differdeleted file mode 100644 index abb012e..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/music.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/noepg.png b/skins/blackhole/themes/default/menuicons/pluginicons/noepg.png Binary files differdeleted file mode 100644 index eb9410d..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/noepg.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/nordlichtsepg.png b/skins/blackhole/themes/default/menuicons/pluginicons/nordlichtsepg.png Binary files differdeleted file mode 100644 index 3ee3fa2..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/nordlichtsepg.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/osdteletext.png b/skins/blackhole/themes/default/menuicons/pluginicons/osdteletext.png Binary files differdeleted file mode 100644 index 664e770..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/osdteletext.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/peer.png b/skins/blackhole/themes/default/menuicons/pluginicons/peer.png Binary files differdeleted file mode 100644 index 998d568..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/peer.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/play.png b/skins/blackhole/themes/default/menuicons/pluginicons/play.png Binary files differdeleted file mode 100644 index 2848fc6..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/play.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/pvrinput.png b/skins/blackhole/themes/default/menuicons/pluginicons/pvrinput.png Binary files differdeleted file mode 100644 index 724f698..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/pvrinput.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/quickepgsearch.png b/skins/blackhole/themes/default/menuicons/pluginicons/quickepgsearch.png Binary files differdeleted file mode 100644 index 76a31f4..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/quickepgsearch.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/radio.png b/skins/blackhole/themes/default/menuicons/pluginicons/radio.png Binary files differdeleted file mode 100644 index 193b7d4..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/radio.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/remote.png b/skins/blackhole/themes/default/menuicons/pluginicons/remote.png Binary files differdeleted file mode 100644 index 7f46b1b..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/remote.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/remotetimers.png b/skins/blackhole/themes/default/menuicons/pluginicons/remotetimers.png Binary files differdeleted file mode 100644 index fae3b79..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/remotetimers.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/rssreader.png b/skins/blackhole/themes/default/menuicons/pluginicons/rssreader.png Binary files differdeleted file mode 100644 index db538f0..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/rssreader.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/sc.png b/skins/blackhole/themes/default/menuicons/pluginicons/sc.png Binary files differdeleted file mode 100644 index 2472d6c..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/sc.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/scraper2vdr.png b/skins/blackhole/themes/default/menuicons/pluginicons/scraper2vdr.png Binary files differdeleted file mode 100644 index a106cb5..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/scraper2vdr.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/screenshot.png b/skins/blackhole/themes/default/menuicons/pluginicons/screenshot.png Binary files differdeleted file mode 100644 index be9b4d5..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/screenshot.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/seduatmo.png b/skins/blackhole/themes/default/menuicons/pluginicons/seduatmo.png Binary files differdeleted file mode 100644 index 4b5292f..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/seduatmo.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/skyselectfeeds.png b/skins/blackhole/themes/default/menuicons/pluginicons/skyselectfeeds.png Binary files differdeleted file mode 100644 index d81a024..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/skyselectfeeds.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/sleeptimer.png b/skins/blackhole/themes/default/menuicons/pluginicons/sleeptimer.png Binary files differdeleted file mode 100644 index cd4956f..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/sleeptimer.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/softhddevice.png b/skins/blackhole/themes/default/menuicons/pluginicons/softhddevice.png Binary files differdeleted file mode 100644 index df13f2c..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/softhddevice.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/streamdev-server.png b/skins/blackhole/themes/default/menuicons/pluginicons/streamdev-server.png Binary files differdeleted file mode 100644 index e89ed8b..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/streamdev-server.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/systeminfo.png b/skins/blackhole/themes/default/menuicons/pluginicons/systeminfo.png Binary files differdeleted file mode 100644 index b14763f..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/systeminfo.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/targavfd.png b/skins/blackhole/themes/default/menuicons/pluginicons/targavfd.png Binary files differdeleted file mode 100644 index e91b111..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/targavfd.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/trayopenng.png b/skins/blackhole/themes/default/menuicons/pluginicons/trayopenng.png Binary files differdeleted file mode 100644 index 6ebd17d..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/trayopenng.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/tvguide.png b/skins/blackhole/themes/default/menuicons/pluginicons/tvguide.png Binary files differdeleted file mode 100644 index 968a37c..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/tvguide.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/tvm2vdr.png b/skins/blackhole/themes/default/menuicons/pluginicons/tvm2vdr.png Binary files differdeleted file mode 100644 index 47f9a91..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/tvm2vdr.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/tvscraper.png b/skins/blackhole/themes/default/menuicons/pluginicons/tvscraper.png Binary files differdeleted file mode 100644 index a106cb5..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/tvscraper.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/undelete.png b/skins/blackhole/themes/default/menuicons/pluginicons/undelete.png Binary files differdeleted file mode 100644 index a53d50a..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/undelete.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/weatherforecast.png b/skins/blackhole/themes/default/menuicons/pluginicons/weatherforecast.png Binary files differdeleted file mode 100644 index a88f11d..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/weatherforecast.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/weatherng.png b/skins/blackhole/themes/default/menuicons/pluginicons/weatherng.png Binary files differdeleted file mode 100644 index a88f11d..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/weatherng.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/xmltv2vdr.png b/skins/blackhole/themes/default/menuicons/pluginicons/xmltv2vdr.png Binary files differdeleted file mode 100644 index ea73c74..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/xmltv2vdr.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/pluginicons/yaepghg.png b/skins/blackhole/themes/default/menuicons/pluginicons/yaepghg.png Binary files differdeleted file mode 100644 index 53ce443..0000000 --- a/skins/blackhole/themes/default/menuicons/pluginicons/yaepghg.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/CAM.png b/skins/blackhole/themes/default/menuicons/standardicons/CAM.png Binary files differdeleted file mode 100644 index a394877..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/CAM.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Channels.png b/skins/blackhole/themes/default/menuicons/standardicons/Channels.png Binary files differdeleted file mode 100644 index ba2ba78..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/Channels.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Commands.png b/skins/blackhole/themes/default/menuicons/standardicons/Commands.png Binary files differdeleted file mode 100644 index c6a83ef..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/Commands.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/DVB.png b/skins/blackhole/themes/default/menuicons/standardicons/DVB.png Binary files differdeleted file mode 100644 index 3789145..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/DVB.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/EPG.png b/skins/blackhole/themes/default/menuicons/standardicons/EPG.png Binary files differdeleted file mode 100644 index e868b90..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/EPG.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/LNB.png b/skins/blackhole/themes/default/menuicons/standardicons/LNB.png Binary files differdeleted file mode 100644 index 896dd99..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/LNB.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Miscellaneous.png b/skins/blackhole/themes/default/menuicons/standardicons/Miscellaneous.png Binary files differdeleted file mode 100644 index 2a41c4d..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/Miscellaneous.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/OSD.png b/skins/blackhole/themes/default/menuicons/standardicons/OSD.png Binary files differdeleted file mode 100644 index 8f571c6..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/OSD.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Plugins.png b/skins/blackhole/themes/default/menuicons/standardicons/Plugins.png Binary files differdeleted file mode 100644 index 3fcba70..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/Plugins.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Recording.png b/skins/blackhole/themes/default/menuicons/standardicons/Recording.png Binary files differdeleted file mode 100644 index 741b1af..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/Recording.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Recordings.png b/skins/blackhole/themes/default/menuicons/standardicons/Recordings.png Binary files differdeleted file mode 100644 index 79aeeb7..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/Recordings.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Replay.png b/skins/blackhole/themes/default/menuicons/standardicons/Replay.png Binary files differdeleted file mode 100644 index 621596c..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/Replay.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Restart.png b/skins/blackhole/themes/default/menuicons/standardicons/Restart.png Binary files differdeleted file mode 100644 index aa23cd4..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/Restart.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Schedule.png b/skins/blackhole/themes/default/menuicons/standardicons/Schedule.png Binary files differdeleted file mode 100644 index 3a98cac..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/Schedule.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Setup.png b/skins/blackhole/themes/default/menuicons/standardicons/Setup.png Binary files differdeleted file mode 100644 index d121148..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/Setup.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/StopRecording.png b/skins/blackhole/themes/default/menuicons/standardicons/StopRecording.png Binary files differdeleted file mode 100644 index ed83fbb..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/StopRecording.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/StopReplay.png b/skins/blackhole/themes/default/menuicons/standardicons/StopReplay.png Binary files differdeleted file mode 100644 index 9192760..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/StopReplay.png +++ /dev/null diff --git a/skins/blackhole/themes/default/menuicons/standardicons/Timers.png b/skins/blackhole/themes/default/menuicons/standardicons/Timers.png Binary files differdeleted file mode 100644 index b866c36..0000000 --- a/skins/blackhole/themes/default/menuicons/standardicons/Timers.png +++ /dev/null diff --git a/skins/blackhole/themes/default/skinparts/buttonblue.svg b/skins/blackhole/themes/default/skinparts/buttonblue.svg deleted file mode 100644 index fd3724f..0000000 --- a/skins/blackhole/themes/default/skinparts/buttonblue.svg +++ /dev/null @@ -1,218 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 02746ff..0000000 --- a/skins/blackhole/themes/default/skinparts/buttongreen.svg +++ /dev/null @@ -1,220 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 1f1b756..0000000 --- a/skins/blackhole/themes/default/skinparts/buttonred.svg +++ /dev/null @@ -1,215 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 063b113..0000000 --- a/skins/blackhole/themes/default/skinparts/buttonyellow.svg +++ /dev/null @@ -1,203 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 8a8d8a9..0000000 --- a/skins/blackhole/themes/default/skinparts/displaychannelback.svg +++ /dev/null @@ -1,65 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 5803fdb..0000000 --- a/skins/blackhole/themes/default/skinparts/displaychannelbackepg.svg +++ /dev/null @@ -1,286 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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/displaychannellogoback.svg b/skins/blackhole/themes/default/skinparts/displaychannellogoback.svg deleted file mode 100644 index 02eca0f..0000000 --- a/skins/blackhole/themes/default/skinparts/displaychannellogoback.svg +++ /dev/null @@ -1,184 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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="200" - viewBox="0 0 299.99998 200" - id="svg3615" - version="1.1" - inkscape:version="0.91pre3 r13670" - sodipodi:docname="displaychannellogoback.svg"> - <defs - id="defs3617"> - <linearGradient - inkscape:collect="always" - id="linearGradient4451"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4453" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4455" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4437"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4439" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4441" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4425"> - <stop - style="stop-color:#333333;stop-opacity:1;" - offset="0" - id="stop4427" /> - <stop - style="stop-color:#444444;stop-opacity:1" - offset="1" - id="stop4429" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4425" - id="linearGradient4431" - x1="10.741395" - y1="1047.0458" - x2="296.81735" - y2="858.87219" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4437" - id="radialGradient4443" - cx="0.99998474" - cy="952.36224" - fx="0.99998474" - fy="952.36224" - r="0.99999934" - gradientTransform="matrix(1,0,0,100.00006,0,-94283.922)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4437" - id="radialGradient4447" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,100.00006,298,-94283.922)" - cx="0.99998474" - cy="952.36224" - fx="0.99998474" - fy="952.36224" - r="0.99999934" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4451" - id="radialGradient4457" - cx="149.99999" - cy="853.36224" - fx="149.99999" - fy="853.36224" - r="150" - gradientTransform="matrix(1,0,0,0.00666668,0,847.67315)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4451" - id="radialGradient4461" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.00666668,0,1045.6732)" - cx="149.99999" - cy="853.36224" - fx="149.99999" - fy="853.36224" - r="150" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2.5136364" - inkscape:cx="161.76342" - inkscape:cy="98.571429" - 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="metadata3620"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+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,-852.36225)"> - <rect - style="opacity:1;fill:url(#linearGradient4431);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect3623" - width="300" - height="199.99998" - x="-1.021635e-005" - y="852.36224" /> - <rect - style="opacity:1;fill:url(#radialGradient4443);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4435" - width="1.9999887" - height="199.99998" - x="-9.5986316e-006" - y="852.36224" /> - <rect - y="852.36224" - x="298" - height="199.99998" - width="1.9999887" - id="rect4445" - style="opacity:1;fill:url(#radialGradient4447);fill-opacity:1;stroke:#ffffff;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:1;fill:url(#radialGradient4457);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4449" - width="300" - height="1.999995" - x="-1.2490499e-005" - y="852.36224" /> - <rect - y="1050.3623" - x="-1.2490499e-005" - height="1.999995" - width="300" - id="rect4459" - style="opacity:1;fill:url(#radialGradient4461);fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> -</svg> diff --git a/skins/blackhole/themes/default/skinparts/displaymendetailback.svg b/skins/blackhole/themes/default/skinparts/displaymendetailback.svg deleted file mode 100644 index 1f2f89a..0000000 --- a/skins/blackhole/themes/default/skinparts/displaymendetailback.svg +++ /dev/null @@ -1,190 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 5f3f51a..0000000 --- a/skins/blackhole/themes/default/skinparts/displaymenuback.svg +++ /dev/null @@ -1,250 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index d205062..0000000 --- a/skins/blackhole/themes/default/skinparts/displaymenubacktv.svg +++ /dev/null @@ -1,348 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 68f9285..0000000 --- a/skins/blackhole/themes/default/skinparts/displaymenucorner.svg +++ /dev/null @@ -1,275 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index a22368b..0000000 --- a/skins/blackhole/themes/default/skinparts/displaymenucurrentback.svg +++ /dev/null @@ -1,188 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 4945e5d..0000000 --- a/skins/blackhole/themes/default/skinparts/displaymenuheader.svg +++ /dev/null @@ -1,292 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index f3be2cc..0000000 --- a/skins/blackhole/themes/default/skinparts/displayvolumeback.svg +++ /dev/null @@ -1,62 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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/line_horizontal.svg b/skins/blackhole/themes/default/skinparts/line_horizontal.svg deleted file mode 100644 index ba9a692..0000000 --- a/skins/blackhole/themes/default/skinparts/line_horizontal.svg +++ /dev/null @@ -1,90 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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="2" - id="svg4149" - version="1.1" - inkscape:version="0.91pre2 r13516" - viewBox="0 0 1000 2" - sodipodi:docname="line_horizontal.svg"> - <defs - id="defs4151"> - <linearGradient - inkscape:collect="always" - id="linearGradient4699"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4701" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4703" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4699" - id="radialGradient4705" - cx="500.00001" - cy="1051.3621" - fx="500.00001" - fy="1051.3621" - r="500" - gradientTransform="matrix(1,0,0,0.00200001,0,1049.2593)" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2.9895833" - inkscape:cx="480" - inkscape:cy="-2.8421709e-014" - 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,-1050.3622)"> - <rect - style="fill:url(#radialGradient4705);fill-opacity:1;stroke:#ececec;stroke-width:0;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-opacity:1" - id="rect4697" - width="1000" - height="1.9999974" - x="9.7061184e-006" - y="1050.3621" - ry="0" /> - </g> -</svg> diff --git a/skins/blackhole/themes/default/skinparts/line_vertical.svg b/skins/blackhole/themes/default/skinparts/line_vertical.svg deleted file mode 100644 index 1d049e3..0000000 --- a/skins/blackhole/themes/default/skinparts/line_vertical.svg +++ /dev/null @@ -1,90 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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="2" - height="600" - id="svg2" - version="1.1" - inkscape:version="0.91pre2 r13516" - viewBox="0 0 2 600.00001" - sodipodi:docname="line_vertical.svg"> - <defs - id="defs4"> - <linearGradient - inkscape:collect="always" - id="linearGradient4139"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4141" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4143" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4139" - id="radialGradient4145" - cx="1" - cy="752.36218" - fx="1" - fy="752.36218" - r="0.99999159" - gradientTransform="matrix(1,0,0,300.00253,0,-224958.19)" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="32.464618" - inkscape:cx="4.2628169" - inkscape:cy="426.0172" - 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="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+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,-452.36219)"> - <rect - style="fill:url(#radialGradient4145);fill-opacity:1;stroke:#ececec;stroke-width:0;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-opacity:1" - id="rect4137" - width="1.9999732" - height="600" - x="1.3416932e-005" - y="452.36218" - ry="0" /> - </g> -</svg> diff --git a/skins/blackhole/themes/default/skinparts/menubutton.svg b/skins/blackhole/themes/default/skinparts/menubutton.svg deleted file mode 100644 index e05dab3..0000000 --- a/skins/blackhole/themes/default/skinparts/menubutton.svg +++ /dev/null @@ -1,143 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 1edd668..0000000 --- a/skins/blackhole/themes/default/skinparts/menubuttonactive.svg +++ /dev/null @@ -1,139 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 1bdd0eb..0000000 --- a/skins/blackhole/themes/default/skinparts/messageblue.svg +++ /dev/null @@ -1,196 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 483ad23..0000000 --- a/skins/blackhole/themes/default/skinparts/messagegreen.svg +++ /dev/null @@ -1,197 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 4c01d9b..0000000 --- a/skins/blackhole/themes/default/skinparts/messagered.svg +++ /dev/null @@ -1,196 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 51a1f43..0000000 --- a/skins/blackhole/themes/default/skinparts/messageyellow.svg +++ /dev/null @@ -1,203 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 77e5327..0000000 --- a/skins/blackhole/themes/default/skinparts/progressbar.svg +++ /dev/null @@ -1,105 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 8aa4552..0000000 --- a/skins/blackhole/themes/default/skinparts/progressbarback.svg +++ /dev/null @@ -1,156 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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.48.5 r10040" - 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 - id="linearGradient5627"> - <stop - style="stop-color:#323232;stop-opacity:1;" - offset="0" - id="stop5629" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="1" - id="stop5631" /> - </linearGradient> - <linearGradient - id="linearGradient5619"> - <stop - style="stop-color:#323232;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.2678445" - inkscape:cx="277.67286" - inkscape:cy="-23.838292" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - units="px" - inkscape:window-width="1600" - inkscape:window-height="1153" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 c 7.1595473,-0.01 12.96902034,6.259 12.97582106,13.9963 0.006801,7.7372 -5.79164626,14.0155 -12.95119406,14.0228 -0.02051,10e-5 -0.04101,0 -0.06152,-10e-5" - 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 deleted file mode 100644 index 4cfdbd3..0000000 --- a/skins/blackhole/themes/default/skinparts/progressbarback_replay.svg +++ /dev/null @@ -1,111 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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.48.5 r10040" - viewBox="0 0 1250 90" - sodipodi:docname="progressbarback_replay.svg"> - <defs - id="defs5063"> - <linearGradient - id="linearGradient5627"> - <stop - style="stop-color:#323232;stop-opacity:1;" - offset="0" - id="stop5629" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="1" - id="stop5631" /> - </linearGradient> - <linearGradient - id="linearGradient5619"> - <stop - style="stop-color:#323232;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="0.87774205" - inkscape:cx="570.58359" - inkscape:cy="78.787158" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - units="px" - inkscape:window-width="1600" - inkscape:window-height="1153" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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 deleted file mode 100644 index 17c639c..0000000 --- a/skins/blackhole/themes/default/skinparts/progressbarback_replay_left.svg +++ /dev/null @@ -1,116 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index e0d86bf..0000000 --- a/skins/blackhole/themes/default/skinparts/progressbarend.svg +++ /dev/null @@ -1,115 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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.48.5 r10040" - 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.52893" - y1="1055.7797" - x2="592.62555" - y2="1017.992" /> - <linearGradient - id="linearGradient5627"> - <stop - style="stop-color:#323232;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.527028" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - units="px" - inkscape:window-width="1600" - inkscape:window-height="1153" - inkscape:window-x="-2" - inkscape:window-y="-3" - 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.98086679000000010;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 c 7.1595475,-0.01 12.9690205,6.259 12.9758215,13.9963 0.0068,7.7372 -5.7916464,14.0155 -12.951194,14.0228 -0.020507,10e-5 -0.041014,0 -0.0615202,-10e-5" - sodipodi:open="true" /> - </g> -</svg> diff --git a/skins/blackhole/themes/default/skinparts/scrollbar.svg b/skins/blackhole/themes/default/skinparts/scrollbar.svg deleted file mode 100644 index 0c6de52..0000000 --- a/skins/blackhole/themes/default/skinparts/scrollbar.svg +++ /dev/null @@ -1,120 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index a0be373..0000000 --- a/skins/blackhole/themes/default/skinparts/scrollbarback.svg +++ /dev/null @@ -1,112 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 15e2a15..0000000 --- a/skins/blackhole/themes/default/skinparts/tabback.svg +++ /dev/null @@ -1,242 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 91107ec..0000000 --- a/skins/blackhole/themes/default/skinparts/tacho_load_back.svg +++ /dev/null @@ -1,767 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 7541297..0000000 --- a/skins/blackhole/themes/default/skinparts/tacho_percent_back.svg +++ /dev/null @@ -1,749 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index a7c544f..0000000 --- a/skins/blackhole/themes/default/skinparts/tacho_temp_back.svg +++ /dev/null @@ -1,640 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index 4d168fe..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_0.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 598d8ac..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_100.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 990fa9b..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1000.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index b40b6a8..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1025.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 47997af..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1050.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d0ed44d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1075.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d58d742..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1100.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 81c65a3..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1125.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index e1ae54a..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1150.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 8be719c..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1175.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index bd6ff13..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1200.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 5d78139..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1225.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 4a1b44d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_125.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 43afd57..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1250.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index af80da7..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1275.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 499bde9..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1300.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 01302c1..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1325.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 41b9568..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1350.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 2b4c520..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1375.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 773836c..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1400.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 9a77b0a..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1425.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index f829c2f..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1450.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 45204bd..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1475.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 8b05ccb..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_150.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 23ed0f3..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1500.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 8063be0..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1525.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index bac31b1..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1550.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 6964b58..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1575.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 11c871a..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1600.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 2cb0192..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1625.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 297c578..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1650.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 353f3cc..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1675.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a4a5986..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1700.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 4f64a5a..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1725.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d97b9bc..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_175.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 5512322..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1750.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index ba4ef39..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1775.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 57492d5..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1800.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 7a9719b..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1825.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index b3bb135..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1850.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 5eaa54f..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1875.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index cf92c73..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1900.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 36d59ca..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1925.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index b7fd1e0..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1950.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 6b22a08..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_1975.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 70d1b6e..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_200.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index ef13633..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2000.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 8b4a838..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2025.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 51f3d30..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2050.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 0e6f35e..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2075.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 947578d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2100.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d929459..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2125.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a34eb85..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2150.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index f441cf8..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2175.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index c5b1607..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2200.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index c321a2d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2225.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 868a25d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_225.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 3235836..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2250.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d8687b5..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2275.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 7ca20b7..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2300.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index b2b6dc5..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2325.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d35b6bc..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2350.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 1be5d45..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2375.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 073630d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2400.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 153d12d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2425.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 749a08d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2450.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index bb3fb91..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2475.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 4a28938..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_25.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index cdcf41c..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_250.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 877113c..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2500.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index dd8fe5d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_2525.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index eae0c73..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_275.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 904da77..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_300.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 1ebffbd..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_325.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d821f9b..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_350.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 8702d8f..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_375.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index af530ee..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_400.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 1a1a90a..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_425.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 6a0eb9f..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_450.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 389c10e..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_475.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index c3fe331..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_50.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index fd9e8f2..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_500.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 1d8df0e..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_525.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 78feb6c..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_550.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 98a9008..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_575.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index e6d5a15..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_600.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 878ee6d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_625.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 7b6977f..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_650.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index e082a48..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_675.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 20bad7e..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_700.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index ee2ff51..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_725.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 17d65c6..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_75.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 99307c6..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_750.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 345bf28..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_775.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 8beeb3d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_800.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index b62c246..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_825.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index b1e9d70..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_850.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 1b083ec..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_875.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a3665da..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_900.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 98e4e66..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_925.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 6f7de06..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_950.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 76430e7..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/load_975.svg +++ /dev/null @@ -1,181 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 6041ba0..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_0.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 0e59a32..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_1.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 682d505..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_10.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index e027920..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_100.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index b6406b6..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_11.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index ef49e35..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_12.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 2ba26c2..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_13.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 2b0a14e..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_14.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a94b2f7..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_15.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 85b0dba..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_16.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 1b817de..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_17.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 9c39b42..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_18.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 3937818..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_19.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 7257737..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_2.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 6576b8f..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_20.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index cb903b6..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_21.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index eba9327..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_22.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a6a2038..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_23.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 2b9fe5b..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_24.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 3741900..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_25.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index c849311..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_26.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 9e0dea6..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_27.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index e558758..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_28.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index acf6df6..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_29.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index f50d732..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_3.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index f8a67f6..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_30.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a549aac..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_31.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 57f681b..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_32.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index ce84f07..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_33.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index e915bef..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_34.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 97722f3..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_35.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 1e44e9d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_36.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 72c295e..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_37.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index c2236ce..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_38.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 2c9ceab..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_39.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 6a5ff90..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_4.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 6b8b94b..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_40.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 93d438c..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_41.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 821d228..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_42.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index c343676..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_43.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 2fe2106..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_44.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index f0709b2..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_45.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 2ea8cb7..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_46.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 8c3dc2a..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_47.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d664d55..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_48.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index b5471b4..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_49.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 66d774f..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_5.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a6012e8..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_50.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 63a3074..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_51.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index fe98f74..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_52.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index e3a0fc4..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_53.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 8d9f119..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_54.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 377a6b3..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_55.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 51aa033..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_56.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index c1c706c..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_57.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 4539158..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_58.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index c3533ac..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_59.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 358b3b2..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_6.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index db3aaa1..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_60.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 4c09b06..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_61.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index e7cec7b..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_62.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index fdb3829..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_63.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 521e82d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_64.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 3b91b2d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_65.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index cb28310..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_66.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index aaaabdc..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_67.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index ca1c93d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_68.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 74f4479..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_69.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 6a2733a..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_7.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index c6aa3c9..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_70.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 0b49abe..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_71.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a57dc7b..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_72.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 56dc382..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_73.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index f562a38..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_74.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a7b1452..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_75.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index f31de9e..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_76.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index e2afdf2..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_77.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 631d4de..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_78.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 49e4b90..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_79.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 004fc51..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_8.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 6f23b2f..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_80.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 827bace..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_81.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 71823e0..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_82.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index ff20447..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_83.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 8dd67fa..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_84.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 7a62631..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_85.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 6b73f31..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_86.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index eeb0514..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_87.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 7fc1376..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_88.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 5ad1e96..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_89.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d118420..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_9.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 80ec2c6..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_90.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index dc3edf9..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_91.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 3dbe027..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_92.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 76076ac..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_93.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index be16f08..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_94.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index e86fb22..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_95.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 29ae525..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_96.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index f95f36e..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_97.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index dfc8c02..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_98.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d1e3a3c..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/perc_99.svg +++ /dev/null @@ -1,94 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 583b664..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_0.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 319af2f..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_1.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a0eea0a..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_10.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 4f8d1ca..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_11.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d97b402..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_12.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 128a04b..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_13.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 0118cbb..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_14.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index f999097..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_15.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 29d77b1..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_16.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 4e9ba30..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_17.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index e45c278..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_18.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 5ed9014..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_19.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 8951e17..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_2.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 89fce58..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_20.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 1fbed8a..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_21.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 3ca7200..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_22.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 521f929..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_23.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d453f59..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_24.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a0c6803..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_25.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d03f1a0..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_26.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index ec8a536..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_27.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index f7d67c1..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_28.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d0274b5..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_29.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 749b283..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_3.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index c20ca1d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_30.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a41fe18..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_31.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 01c0b8d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_32.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 2803210..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_33.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index ff26872..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_34.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 0edc1af..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_35.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 4a0c025..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_36.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a0a3b2f..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_37.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 24a3a14..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_38.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 933217d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_39.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 8327519..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_4.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index c6983a7..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_40.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 4d6a38a..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_41.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a3ccf58..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_42.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 66a5df9..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_43.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d21f36c..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_44.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 70e2f55..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_45.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 8e06c20..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_46.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 9099236..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_47.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 7513f95..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_48.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 43e05bf..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_49.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 3586d3a..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_5.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 2b0269f..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_50.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d783688..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_51.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 6ceb4dc..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_52.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 92ffafa..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_53.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 47eb891..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_54.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 2416e10..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_55.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index ca081c8..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_56.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a0a0c9e..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_57.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 91bb7e4..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_58.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index a8b674b..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_59.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 68bf620..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_6.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index f4ce105..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_60.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 03d604a..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_61.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 8e8983f..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_62.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index cdafad6..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_63.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 896e5ae..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_64.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 3f99928..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_65.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index d6c0a9d..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_66.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index e6983e1..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_67.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 5246932..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_68.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index f7845d3..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_69.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index b0daefe..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_7.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 98d4b13..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_70.svg +++ /dev/null @@ -1,81 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 83d4e32..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_71.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 42a7bb2..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_72.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 4edc25e..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_73.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 57e0bf1..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_74.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 8eabc82..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_75.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 75ba075..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_76.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 17638b3..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_77.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index f222c82..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_78.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 471e948..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_79.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 483a0f8..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_8.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 3897a77..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_80.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 15c3157..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_81.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index b1c8397..0000000 --- a/skins/blackhole/themes/default/skinparts/tachohands/temp_9.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.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 deleted file mode 100644 index 1425edf..0000000 --- a/skins/blackhole/themes/default/skinparts/tachos_back.svg +++ /dev/null @@ -1,162 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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/tvguide_grid_active_hor.svg b/skins/blackhole/themes/default/skinparts/tvguide_grid_active_hor.svg deleted file mode 100644 index 5ca5628..0000000 --- a/skins/blackhole/themes/default/skinparts/tvguide_grid_active_hor.svg +++ /dev/null @@ -1,193 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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="90" - viewBox="0 0 300 90" - id="svg10995" - version="1.1" - inkscape:version="0.91pre3 r13670" - sodipodi:docname="tvguide_grid_active.svg"> - <defs - id="defs10997"> - <linearGradient - inkscape:collect="always" - id="linearGradient11584"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11586" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11588" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11570"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11572" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11574" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11570" - id="radialGradient11576" - cx="150" - cy="1051.8622" - fx="150" - fy="1051.8622" - r="150" - gradientTransform="matrix(1,0,0,0.00333333,0,1048.356)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11570" - id="radialGradient11580" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.00333333,0,959.35596)" - cx="150" - cy="1051.8622" - fx="150" - fy="1051.8622" - r="150" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11584" - id="radialGradient11590" - cx="0.5" - cy="1007.3622" - fx="0.5" - fy="1007.3622" - r="0.5" - gradientTransform="matrix(1,0,0,90,0,-89655.234)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11584" - id="radialGradient11594" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,90,299,-89655.234)" - cx="0.5" - cy="1007.3622" - fx="0.5" - fy="1007.3622" - r="0.5" /> - <linearGradient - gradientTransform="matrix(0.29739198,0,0,1.2857141,-7.7321871,756.64803)" - 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> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2.502027" - inkscape:cx="168.30828" - inkscape:cy="138.77937" - 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="metadata11000"> - <rdf: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,-962.36218)"> - <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="300" - height="89.999992" - x="4.9999999e-006" - y="962.36218" - ry="0.13425298" /> - <rect - style="opacity:1;fill:url(#radialGradient11576);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11568" - width="300" - height="1" - x="0" - y="1051.3622" /> - <rect - y="962.36218" - x="0" - height="1" - width="300" - id="rect11578" - style="opacity:1;fill:url(#radialGradient11580);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:1;fill:url(#radialGradient11590);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11582" - width="1" - height="90" - x="0" - y="962.36218" /> - <rect - y="962.36218" - x="299" - height="90" - width="1" - id="rect11592" - style="opacity:1;fill:url(#radialGradient11594);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:1;fill:#000000;fill-opacity:0;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4166" - width="364.90414" - height="161.46909" - x="-51.15852" - y="910.07751" /> - </g> -</svg> diff --git a/skins/blackhole/themes/default/skinparts/tvguide_grid_active_ver.svg b/skins/blackhole/themes/default/skinparts/tvguide_grid_active_ver.svg deleted file mode 100644 index dccad1b..0000000 --- a/skins/blackhole/themes/default/skinparts/tvguide_grid_active_ver.svg +++ /dev/null @@ -1,193 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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" - viewBox="0 0 300 300" - id="svg10995" - version="1.1" - inkscape:version="0.91pre3 r13670" - sodipodi:docname="tvguide_grid_active_ver.svg"> - <defs - id="defs10997"> - <linearGradient - inkscape:collect="always" - id="linearGradient11584"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11586" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11588" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11570"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11572" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11574" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11570" - id="radialGradient11576" - cx="150" - cy="1051.8622" - fx="150" - fy="1051.8622" - r="150" - gradientTransform="matrix(1,0,0,0.00333333,0,1048.356)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11570" - id="radialGradient11580" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.00333333,0,749.35595)" - cx="150" - cy="1051.8622" - fx="150" - fy="1051.8622" - r="150" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11584" - id="radialGradient11590" - cx="0.5" - cy="1007.3622" - fx="0.5" - fy="1007.3622" - r="0.5" - gradientTransform="matrix(1,0,0,300,0,-301306.29)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11584" - id="radialGradient11594" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,300,299,-301306.29)" - cx="0.5" - cy="1007.3622" - fx="0.5" - fy="1007.3622" - r="0.5" /> - <linearGradient - gradientTransform="matrix(0.29739197,0,0,4.2857138,-7.7321827,66.64835)" - inkscape:collect="always" - xlink:href="#linearGradient5073" - id="linearGradient5079" - x1="571.08295" - y1="223.60255" - x2="578.41846" - y2="158.79453" - 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> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2.502027" - inkscape:cx="104.75981" - inkscape:cy="167.10004" - 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="metadata11000"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+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,-752.36218)"> - <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="300" - height="299.99997" - x="9.1287093e-006" - y="752.36218" - ry="0.44750994" /> - <rect - style="opacity:1;fill:url(#radialGradient11576);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11568" - width="300" - height="1" - x="0" - y="1051.3622" /> - <rect - y="752.36218" - x="0" - height="1" - width="300" - id="rect11578" - style="opacity:1;fill:url(#radialGradient11580);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:1;fill:url(#radialGradient11590);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11582" - width="1" - height="300" - x="0" - y="752.36218" /> - <rect - y="752.36218" - x="299" - height="300" - width="1" - id="rect11592" - style="opacity:1;fill:url(#radialGradient11594);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:1;fill:#000000;fill-opacity:0;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4166" - width="364.90414" - height="161.46909" - x="-51.15852" - y="910.07751" /> - </g> -</svg> diff --git a/skins/blackhole/themes/default/skinparts/tvguide_grid_bright_hor.svg b/skins/blackhole/themes/default/skinparts/tvguide_grid_bright_hor.svg deleted file mode 100644 index 2451550..0000000 --- a/skins/blackhole/themes/default/skinparts/tvguide_grid_bright_hor.svg +++ /dev/null @@ -1,184 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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="90" - viewBox="0 0 300 90" - id="svg10995" - version="1.1" - inkscape:version="0.91pre3 r13670" - sodipodi:docname="tvguide_grid_bright.svg"> - <defs - id="defs10997"> - <linearGradient - inkscape:collect="always" - id="linearGradient11584"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11586" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11588" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11570"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11572" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11574" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11560"> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="0" - id="stop11562" /> - <stop - style="stop-color:#444444;stop-opacity:1" - offset="1" - id="stop11564" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11560" - id="linearGradient11566" - x1="4.3964353" - y1="1040.9349" - x2="295.20389" - y2="978.58551" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11570" - id="radialGradient11576" - cx="150" - cy="1051.8622" - fx="150" - fy="1051.8622" - r="150" - gradientTransform="matrix(1,0,0,0.00333333,0,1048.356)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11570" - id="radialGradient11580" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.00333333,0,959.35596)" - cx="150" - cy="1051.8622" - fx="150" - fy="1051.8622" - r="150" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11584" - id="radialGradient11590" - cx="0.5" - cy="1007.3622" - fx="0.5" - fy="1007.3622" - r="0.5" - gradientTransform="matrix(1,0,0,90,0,-89655.234)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11584" - id="radialGradient11594" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,90,299,-89655.234)" - cx="0.5" - cy="1007.3622" - fx="0.5" - fy="1007.3622" - r="0.5" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2.502027" - inkscape:cx="107.8801" - inkscape:cy="42.857143" - 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="metadata11000"> - <rdf: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,-962.36218)"> - <rect - style="opacity:1;fill:url(#linearGradient11566);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11543" - width="300" - height="90" - x="0" - y="962.36218" /> - <rect - style="opacity:1;fill:url(#radialGradient11576);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11568" - width="300" - height="1" - x="0" - y="1051.3622" /> - <rect - y="962.36218" - x="0" - height="1" - width="300" - id="rect11578" - style="opacity:1;fill:url(#radialGradient11580);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:1;fill:url(#radialGradient11590);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11582" - width="1" - height="90" - x="0" - y="962.36218" /> - <rect - y="962.36218" - x="299" - height="90" - width="1" - id="rect11592" - style="opacity:1;fill:url(#radialGradient11594);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> -</svg> diff --git a/skins/blackhole/themes/default/skinparts/tvguide_grid_bright_ver.svg b/skins/blackhole/themes/default/skinparts/tvguide_grid_bright_ver.svg deleted file mode 100644 index a4ee2c5..0000000 --- a/skins/blackhole/themes/default/skinparts/tvguide_grid_bright_ver.svg +++ /dev/null @@ -1,185 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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" - viewBox="0 0 300 300" - id="svg10995" - version="1.1" - inkscape:version="0.91pre3 r13670" - sodipodi:docname="tvguide_grid_bright_ver.svg"> - <defs - id="defs10997"> - <linearGradient - inkscape:collect="always" - id="linearGradient11584"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11586" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11588" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11570"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11572" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11574" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11560"> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="0" - id="stop11562" /> - <stop - style="stop-color:#444444;stop-opacity:1" - offset="1" - id="stop11564" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11560" - id="linearGradient11566" - x1="4.3964353" - y1="1040.9349" - x2="295.20389" - y2="978.58551" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,3.3333333,0,-2455.5118)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11570" - id="radialGradient11576" - cx="150" - cy="1051.8622" - fx="150" - fy="1051.8622" - r="150" - gradientTransform="matrix(1,0,0,0.00333333,0,1048.356)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11570" - id="radialGradient11580" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.00333333,0,749.35596)" - cx="150" - cy="1051.8622" - fx="150" - fy="1051.8622" - r="150" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11584" - id="radialGradient11590" - cx="0.5" - cy="1007.3622" - fx="0.5" - fy="1007.3622" - r="0.5" - gradientTransform="matrix(1,0,0,300,0,-301306.29)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11584" - id="radialGradient11594" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,300,299,-301306.29)" - cx="0.5" - cy="1007.3622" - fx="0.5" - fy="1007.3622" - r="0.5" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2.502027" - inkscape:cx="131.96205" - inkscape:cy="138.77937" - 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="metadata11000"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+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,-752.36218)"> - <rect - style="opacity:1;fill:url(#linearGradient11566);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11543" - width="300" - height="300" - x="0" - y="752.36218" /> - <rect - style="opacity:1;fill:url(#radialGradient11576);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11568" - width="300" - height="1" - x="0" - y="1051.3622" /> - <rect - y="752.36218" - x="0" - height="1" - width="300" - id="rect11578" - style="opacity:1;fill:url(#radialGradient11580);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:1;fill:url(#radialGradient11590);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11582" - width="1" - height="300" - x="0" - y="752.36218" /> - <rect - y="752.36218" - x="299" - height="300" - width="1" - id="rect11592" - style="opacity:1;fill:url(#radialGradient11594);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> -</svg> diff --git a/skins/blackhole/themes/default/skinparts/tvguide_grid_dark_hor.svg b/skins/blackhole/themes/default/skinparts/tvguide_grid_dark_hor.svg deleted file mode 100644 index 7208924..0000000 --- a/skins/blackhole/themes/default/skinparts/tvguide_grid_dark_hor.svg +++ /dev/null @@ -1,184 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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="90" - viewBox="0 0 300 90" - id="svg10995" - version="1.1" - inkscape:version="0.91pre3 r13670" - sodipodi:docname="tvguide_grid_dark.svg"> - <defs - id="defs10997"> - <linearGradient - inkscape:collect="always" - id="linearGradient11584"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11586" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11588" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11570"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11572" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11574" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11560"> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="0" - id="stop11562" /> - <stop - style="stop-color:#222222;stop-opacity:1" - offset="1" - id="stop11564" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11560" - id="linearGradient11566" - x1="1.9983797" - y1="1039.736" - x2="297.60196" - y2="977.38647" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11570" - id="radialGradient11576" - cx="150" - cy="1051.8622" - fx="150" - fy="1051.8622" - r="150" - gradientTransform="matrix(1,0,0,0.00333333,0,1048.356)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11570" - id="radialGradient11580" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.00333333,0,959.35596)" - cx="150" - cy="1051.8622" - fx="150" - fy="1051.8622" - r="150" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11584" - id="radialGradient11590" - cx="0.5" - cy="1007.3622" - fx="0.5" - fy="1007.3622" - r="0.5" - gradientTransform="matrix(1,0,0,90,0,-89655.234)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11584" - id="radialGradient11594" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,90,299,-89655.234)" - cx="0.5" - cy="1007.3622" - fx="0.5" - fy="1007.3622" - r="0.5" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2.502027" - inkscape:cx="107.8801" - inkscape:cy="42.857143" - 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="metadata11000"> - <rdf: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,-962.36218)"> - <rect - style="opacity:1;fill:url(#linearGradient11566);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11543" - width="300" - height="90" - x="0" - y="962.36218" /> - <rect - style="opacity:1;fill:url(#radialGradient11576);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11568" - width="300" - height="1" - x="0" - y="1051.3622" /> - <rect - y="962.36218" - x="0" - height="1" - width="300" - id="rect11578" - style="opacity:1;fill:url(#radialGradient11580);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:1;fill:url(#radialGradient11590);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11582" - width="1" - height="90" - x="0" - y="962.36218" /> - <rect - y="962.36218" - x="299" - height="90" - width="1" - id="rect11592" - style="opacity:1;fill:url(#radialGradient11594);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> -</svg> diff --git a/skins/blackhole/themes/default/skinparts/tvguide_grid_dark_ver.svg b/skins/blackhole/themes/default/skinparts/tvguide_grid_dark_ver.svg deleted file mode 100644 index bef7868..0000000 --- a/skins/blackhole/themes/default/skinparts/tvguide_grid_dark_ver.svg +++ /dev/null @@ -1,185 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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" - viewBox="0 0 300 300" - id="svg10995" - version="1.1" - inkscape:version="0.91pre3 r13670" - sodipodi:docname="tvguide_grid_dark_ver.svg"> - <defs - id="defs10997"> - <linearGradient - inkscape:collect="always" - id="linearGradient11584"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11586" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11588" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11570"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop11572" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop11574" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient11560"> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="0" - id="stop11562" /> - <stop - style="stop-color:#222222;stop-opacity:1" - offset="1" - id="stop11564" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient11560" - id="linearGradient11566" - x1="1.9983797" - y1="1039.736" - x2="297.60196" - y2="977.38647" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,3.3333333,0,-2455.5118)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11570" - id="radialGradient11576" - cx="150" - cy="1051.8622" - fx="150" - fy="1051.8622" - r="150" - gradientTransform="matrix(1,0,0,0.00333333,0,1048.356)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11570" - id="radialGradient11580" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.00333333,0,749.35596)" - cx="150" - cy="1051.8622" - fx="150" - fy="1051.8622" - r="150" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11584" - id="radialGradient11590" - cx="0.5" - cy="1007.3622" - fx="0.5" - fy="1007.3622" - r="0.5" - gradientTransform="matrix(1.1,0,0,300,0,-301306.29)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient11584" - id="radialGradient11594" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,300,299,-301306.29)" - cx="0.5" - cy="1007.3622" - fx="0.5" - fy="1007.3622" - r="0.5" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2.502027" - inkscape:cx="140.90371" - inkscape:cy="42.857143" - 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="metadata11000"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+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,-752.36218)"> - <rect - style="opacity:1;fill:url(#linearGradient11566);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11543" - width="300" - height="300" - x="0" - y="752.36218" /> - <rect - style="opacity:1;fill:url(#radialGradient11576);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11568" - width="300" - height="1" - x="0" - y="1051.3622" /> - <rect - y="752.36218" - x="0" - height="1" - width="300" - id="rect11578" - style="opacity:1;fill:url(#radialGradient11580);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:1;fill:url(#radialGradient11590);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect11582" - width="1.1" - height="300" - x="0" - y="752.36218" /> - <rect - y="752.36218" - x="299" - height="300" - width="1" - id="rect11592" - style="opacity:1;fill:url(#radialGradient11594);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> -</svg> diff --git a/skins/blackhole/themes/default/skinparts/tvguide_timelinegrid_bright_hor.svg b/skins/blackhole/themes/default/skinparts/tvguide_timelinegrid_bright_hor.svg deleted file mode 100644 index b3bd1c6..0000000 --- a/skins/blackhole/themes/default/skinparts/tvguide_timelinegrid_bright_hor.svg +++ /dev/null @@ -1,185 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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="220" - height="54" - viewBox="0 0 220 54.000001" - id="svg10367" - version="1.1" - inkscape:version="0.91pre3 r13670" - sodipodi:docname="tvguide_timelinegrid_bright.svg"> - <defs - id="defs10369"> - <linearGradient - inkscape:collect="always" - id="linearGradient10951"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop10953" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop10955" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient10937"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop10939" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop10941" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient10925"> - <stop - style="stop-color:#aaaaaa;stop-opacity:1" - offset="0" - id="stop10927" /> - <stop - style="stop-color:#dddddd;stop-opacity:1" - offset="1" - id="stop10929" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient10925" - id="linearGradient10931" - x1="0.45233849" - y1="1025.76" - x2="220.45234" - y2="1025.76" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.45233849,-0.39786977)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10937" - id="radialGradient10943" - cx="110" - cy="1051.8622" - fx="110" - fy="1051.8622" - r="110" - gradientTransform="matrix(1,0,0,0.00454545,0,1047.081)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10937" - id="radialGradient10947" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.00454545,0,994.08096)" - cx="110" - cy="1051.8622" - fx="110" - fy="1051.8622" - r="110" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10951" - id="radialGradient10957" - cx="0.5" - cy="1025.3621" - fx="0.5" - fy="1025.3621" - r="0.5" - gradientTransform="matrix(1,0,0,54,0,-54344.192)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10951" - id="radialGradient10961" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,54,219,-54344.192)" - cx="0.5" - cy="1025.3621" - fx="0.5" - fy="1025.3621" - r="0.5" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="4.4214676" - inkscape:cx="113.12449" - inkscape:cy="43.594485" - 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="metadata10372"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+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,-998.36214)"> - <rect - style="opacity:1;fill:url(#linearGradient10931);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect10915" - width="220" - height="54" - x="0" - y="998.36212" /> - <rect - style="opacity:1;fill:url(#radialGradient10943);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect10935" - width="220" - height="1" - x="0" - y="1051.3622" /> - <rect - y="998.36212" - x="0" - height="1" - width="220" - id="rect10945" - style="opacity:1;fill:url(#radialGradient10947);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:1;fill:url(#radialGradient10957);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect10949" - width="1" - height="54" - x="0" - y="998.36212" /> - <rect - y="998.36212" - x="219" - height="54" - width="1" - id="rect10959" - style="opacity:1;fill:url(#radialGradient10961);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> -</svg> diff --git a/skins/blackhole/themes/default/skinparts/tvguide_timelinegrid_bright_ver.svg b/skins/blackhole/themes/default/skinparts/tvguide_timelinegrid_bright_ver.svg deleted file mode 100644 index e170a67..0000000 --- a/skins/blackhole/themes/default/skinparts/tvguide_timelinegrid_bright_ver.svg +++ /dev/null @@ -1,186 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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="75" - viewBox="0 0 150 75.000001" - id="svg10367" - version="1.1" - inkscape:version="0.91pre3 r13670" - sodipodi:docname="tvguide_timelinegrid_bright_ver.svg"> - <defs - id="defs10369"> - <linearGradient - inkscape:collect="always" - id="linearGradient10951"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop10953" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop10955" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient10937"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop10939" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop10941" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient10925"> - <stop - style="stop-color:#aaaaaa;stop-opacity:1" - offset="0" - id="stop10927" /> - <stop - style="stop-color:#dddddd;stop-opacity:1" - offset="1" - id="stop10929" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient10925" - id="linearGradient10931" - x1="0.45233849" - y1="1025.76" - x2="220.45235" - y2="1025.76" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.68181818,0,0,1.3888889,-0.30841261,-409.80453)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10937" - id="radialGradient10943" - cx="110" - cy="1051.8622" - fx="110" - fy="1051.8622" - r="110" - gradientTransform="matrix(0.68181818,0,0,0.00454545,0,1047.081)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10937" - id="radialGradient10947" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.68181818,0,0,0.00454545,0,973.08098)" - cx="110" - cy="1051.8622" - fx="110" - fy="1051.8622" - r="110" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10951" - id="radialGradient10957" - cx="0.5" - cy="1025.3621" - fx="0.5" - fy="1025.3621" - r="0.5" - gradientTransform="matrix(1,0,0,75,0,-75887.296)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10951" - id="radialGradient10961" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,75,149,-75887.296)" - cx="0.5" - cy="1025.3621" - fx="0.5" - fy="1025.3621" - r="0.5" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="4.4214676" - inkscape:cx="109.67027" - inkscape:cy="34.547715" - 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" - borderlayer="true" /> - <metadata - id="metadata10372"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+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,-977.36214)"> - <rect - style="opacity:1;fill:url(#linearGradient10931);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect10915" - width="150" - height="75" - x="0" - y="977.36212" /> - <rect - style="opacity:1;fill:url(#radialGradient10943);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect10935" - width="150" - height="1" - x="0" - y="1051.3622" /> - <rect - y="977.36212" - x="0" - height="1" - width="150" - id="rect10945" - style="opacity:1;fill:url(#radialGradient10947);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:1;fill:url(#radialGradient10957);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect10949" - width="1" - height="75" - x="0" - y="977.36212" /> - <rect - y="977.36212" - x="149" - height="75" - width="1" - id="rect10959" - style="opacity:1;fill:url(#radialGradient10961);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> -</svg> diff --git a/skins/blackhole/themes/default/skinparts/tvguide_timelinegrid_dark_hor.svg b/skins/blackhole/themes/default/skinparts/tvguide_timelinegrid_dark_hor.svg deleted file mode 100644 index cf20435..0000000 --- a/skins/blackhole/themes/default/skinparts/tvguide_timelinegrid_dark_hor.svg +++ /dev/null @@ -1,209 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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="220" - height="54" - viewBox="0 0 220 54.000001" - id="svg10367" - version="1.1" - inkscape:version="0.91pre3 r13670" - sodipodi:docname="tvguide_timelinegrid_dark.svg"> - <defs - id="defs10369"> - <linearGradient - inkscape:collect="always" - id="linearGradient10987"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop10989" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop10991" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient10979"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop10981" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop10983" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient10971"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop10973" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop10975" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient10963"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop10965" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop10967" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient10925"> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="0" - id="stop10927" /> - <stop - style="stop-color:#444444;stop-opacity:1" - offset="1" - id="stop10929" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient10925" - id="linearGradient10931" - x1="0.45233849" - y1="1025.76" - x2="220.45234" - y2="1025.76" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.45233849,-0.39786977)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10963" - id="radialGradient10969" - cx="110" - cy="998.86212" - fx="110" - fy="998.86212" - r="110" - gradientTransform="matrix(1,0,0,0.00454545,0,994.32184)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10971" - id="radialGradient10977" - cx="219.5" - cy="1025.3621" - fx="219.5" - fy="1025.3621" - r="0.5" - gradientTransform="matrix(1,0,0,54,0,-54344.192)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10979" - id="radialGradient10985" - cx="110" - cy="1051.8622" - fx="110" - fy="1051.8622" - r="110" - gradientTransform="matrix(1,0,0,0.00454545,0,1047.081)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10987" - id="radialGradient10993" - cx="0.5" - cy="1025.3621" - fx="0.5" - fy="1025.3621" - r="0.5" - gradientTransform="matrix(1,0,0,54,0,-54344.192)" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="4.4214676" - inkscape:cx="113.12449" - inkscape:cy="43.594485" - 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="metadata10372"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+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,-998.36214)"> - <rect - style="opacity:1;fill:url(#linearGradient10931);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect10915" - width="220" - height="54" - x="0" - y="998.36212" /> - <rect - style="opacity:1;fill:url(#radialGradient10985);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect10935" - width="220" - height="1" - x="0" - y="1051.3622" /> - <rect - y="998.36212" - x="0" - height="1" - width="220" - id="rect10945" - style="opacity:1;fill:url(#radialGradient10969);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:1;fill:url(#radialGradient10993);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect10949" - width="1" - height="54" - x="0" - y="998.36212" /> - <rect - y="998.36212" - x="219" - height="54" - width="1" - id="rect10959" - style="opacity:1;fill:url(#radialGradient10977);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> -</svg> diff --git a/skins/blackhole/themes/default/skinparts/tvguide_timelinegrid_dark_ver.svg b/skins/blackhole/themes/default/skinparts/tvguide_timelinegrid_dark_ver.svg deleted file mode 100644 index 7ea3449..0000000 --- a/skins/blackhole/themes/default/skinparts/tvguide_timelinegrid_dark_ver.svg +++ /dev/null @@ -1,209 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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="75" - viewBox="0 0 150 75.000001" - id="svg10367" - version="1.1" - inkscape:version="0.91pre3 r13670" - sodipodi:docname="tvguide_timelinegrid_dark_ver.svg"> - <defs - id="defs10369"> - <linearGradient - inkscape:collect="always" - id="linearGradient10987"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop10989" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop10991" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient10979"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop10981" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop10983" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient10971"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop10973" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop10975" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient10963"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop10965" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop10967" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient10925"> - <stop - style="stop-color:#000000;stop-opacity:1" - offset="0" - id="stop10927" /> - <stop - style="stop-color:#444444;stop-opacity:1" - offset="1" - id="stop10929" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient10925" - id="linearGradient10931" - x1="0.45233849" - y1="1025.76" - x2="220.45235" - y2="1025.76" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.68181818,0,0,1.3888889,-0.30841261,-409.80453)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10963" - id="radialGradient10969" - cx="110" - cy="998.86212" - fx="110" - fy="998.86212" - r="110" - gradientTransform="matrix(0.68181818,0,0,0.00454545,0,973.32186)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10971" - id="radialGradient10977" - cx="219.5" - cy="1025.3621" - fx="219.5" - fy="1025.3621" - r="0.5" - gradientTransform="matrix(1,0,0,75,-70,-75887.296)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10979" - id="radialGradient10985" - cx="110" - cy="1051.8622" - fx="110" - fy="1051.8622" - r="110" - gradientTransform="matrix(0.68181818,0,0,0.00454545,0,1047.081)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10987" - id="radialGradient10993" - cx="0.5" - cy="1025.3621" - fx="0.5" - fy="1025.3621" - r="0.5" - gradientTransform="matrix(1,0,0,75,0,-75887.296)" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="4.4214676" - inkscape:cx="95.855427" - inkscape:cy="43.594485" - 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="metadata10372"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+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,-977.36214)"> - <rect - style="opacity:1;fill:url(#linearGradient10931);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect10915" - width="150" - height="75" - x="0" - y="977.36212" /> - <rect - style="opacity:1;fill:url(#radialGradient10985);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect10935" - width="150" - height="1" - x="0" - y="1051.3622" /> - <rect - y="977.36212" - x="0" - height="1" - width="150" - id="rect10945" - style="opacity:1;fill:url(#radialGradient10969);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:1;fill:url(#radialGradient10993);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect10949" - width="1" - height="75" - x="0" - y="977.36212" /> - <rect - y="977.36212" - x="149" - height="75" - width="1" - id="rect10959" - style="opacity:1;fill:url(#radialGradient10977);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> -</svg> diff --git a/skins/blackhole/themes/default/skinparts/tvguideheader.svg b/skins/blackhole/themes/default/skinparts/tvguideheader.svg deleted file mode 100644 index 15d8a00..0000000 --- a/skins/blackhole/themes/default/skinparts/tvguideheader.svg +++ /dev/null @@ -1,171 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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="216" - viewBox="0 0 1920 216" - id="svg8417" - version="1.1" - inkscape:version="0.91pre3 r13670" - sodipodi:docname="tvguideheader.svg"> - <defs - id="defs8419"> - <linearGradient - inkscape:collect="always" - id="linearGradient8989"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop8991" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop8993" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8975"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop8977" /> - <stop - style="stop-color:#999999;stop-opacity:1" - offset="1" - id="stop8979" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8975" - id="linearGradient8981" - x1="0.7203052" - y1="946.20978" - x2="2208.1833" - y2="857.31635" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.0203052,-838.20978)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8989" - id="radialGradient8995" - cx="1199" - cy="944.79773" - fx="1199" - fy="944.79773" - r="1" - gradientTransform="matrix(1,0,0,100,0,-93534.975)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8989" - id="radialGradient8995-8" - cx="1199" - cy="944.79773" - fx="1199" - fy="944.79773" - r="1" - gradientTransform="matrix(1,0,0,100,348,-93534.974)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8989" - id="radialGradient9031" - cx="1371.6094" - cy="842.61261" - fx="1371.6094" - fy="842.61261" - r="174" - gradientTransform="matrix(1,0,0,0.00574713,2,842.51954)" - gradientUnits="userSpaceOnUse" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8989" - id="radialGradient9035" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.00574713,0,1038.5195)" - cx="1371.6094" - cy="842.61261" - fx="1371.6094" - fy="842.61261" - r="174" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.3330036" - inkscape:cx="907.03522" - inkscape:cy="-144.31449" - 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="metadata8422"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+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,-836.36214)"> - <path - style="opacity:1;fill:url(#linearGradient8981);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="M 0 0 L 0 216 L 1920 216 L 1920 0 L 0 0 z M 1200 12 L 1546 12 L 1546 206 L 1200 206 L 1200 12 z " - transform="translate(0,836.36214)" - id="rect8965" /> - <rect - style="opacity:1;fill:url(#radialGradient8995);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect8987" - width="2" - height="200" - x="1198" - y="844.79773" /> - <rect - style="opacity:1;fill:url(#radialGradient8995-8);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect8987-9" - width="2" - height="200" - x="1546" - y="844.79816" /> - <rect - style="opacity:1;fill:url(#radialGradient9031);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect9023" - width="348" - height="2" - x="1199.6094" - y="846.36212" /> - <rect - y="1042.3621" - x="1197.6094" - height="2" - width="348" - id="rect9033" - style="opacity:1;fill:url(#radialGradient9035);fill-opacity:1;stroke:none;stroke-width:2.5999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> -</svg> diff --git a/skins/blackhole/themes/default/skinparts/watchback.svg b/skins/blackhole/themes/default/skinparts/watchback.svg deleted file mode 100644 index 297be69..0000000 --- a/skins/blackhole/themes/default/skinparts/watchback.svg +++ /dev/null @@ -1,950 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.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 deleted file mode 100644 index fc79b4c..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_0.svg +++ /dev/null @@ -1,68 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 3a9be10..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_1.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 2d36afd..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_10.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index b3fd835..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_11.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 8f6790e..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_12.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index cfc7738..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_13.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 3b9123d..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_14.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 1ad0f29..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_15.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index d25b200..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_16.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index c8651ca..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_17.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 594f0b2..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_18.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 4c2813f..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_19.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index f0c400d..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_2.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 7e0ce77..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_20.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 54230e0..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_21.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index fd4b0c7..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_22.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index b025cd7..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_23.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 90db457..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_24.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 82a04bf..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_25.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index f189103..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_26.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 851c98f..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_27.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 9bea225..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_28.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index eb325b7..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_29.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 0a3f9f4..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_3.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index d452484..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_30.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 20a0eb1..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_31.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 719a270..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_32.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 94ccc8c..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_33.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index f0d1411..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_34.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 56cfc19..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_35.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 7527d65..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_36.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index a856d86..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_37.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 0f6298a..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_38.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index f9f8135..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_39.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 36984ff..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_4.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index f7112b9..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_40.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 9c884d6..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_41.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 74f8bf4..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_42.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 99ece4a..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_43.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 8e32086..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_44.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 45c24f9..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_45.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index aa998f0..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_46.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 40badec..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_47.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 0ae50ab..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_48.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 34d499a..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_49.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 67a8a19..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_5.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 33489c2..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_50.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index a144d3e..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_51.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index a10ac1e..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_52.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index cf7d1f3..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_53.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 9819b1c..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_54.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 39e2072..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_55.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index ed48711..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_56.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index b3bb4cb..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_57.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 02d9434..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_58.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 5a9e002..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_59.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 63dff34..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_6.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index b7e04b6..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_7.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 6a1af52..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_8.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index af499e5..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/h_9.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index fe740c8..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_0.svg +++ /dev/null @@ -1,68 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index cc7d420..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_1.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 27598d5..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_10.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 66ecef0..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_11.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 1657d4d..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_12.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 0442293..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_13.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index bf78351..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_14.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 3e8c402..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_15.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index d2cd2af..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_16.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 0c719e8..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_17.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 32c72f6..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_18.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index b37c85c..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_19.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 52a594a..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_2.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index e86a080..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_20.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 92777ba..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_21.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index ce8990f..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_22.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 775d19c..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_23.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 549c48f..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_24.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index bd016d3..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_25.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index d481659..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_26.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index b6d8af5..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_27.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 21122d4..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_28.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index ab99cc3..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_29.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 033130d..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_3.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 0de0ca7..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_30.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 1e9544e..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_31.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 644ee12..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_32.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 10f1fe3..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_33.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index b6b76dc..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_34.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 15db93b..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_35.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 406e0c2..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_36.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 6d4808b..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_37.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 9b1c617..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_38.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 0ad3381..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_39.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 56429dc..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_4.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 0f50408..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_40.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 13d2cfe..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_41.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 604c4cb..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_42.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 3ce6918..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_43.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index f585fc8..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_44.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 0db4bd6..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_45.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 4da739a..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_46.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 3a64bd9..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_47.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 1e327fb..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_48.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index a8ee213..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_49.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 0089db4..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_5.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 8054684..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_50.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 93aaf1c..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_51.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index bb69fb3..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_52.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index cc62002..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_53.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 564ac1d..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_54.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index ad00b96..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_55.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index d4289ef..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_56.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 1bc4ad4..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_57.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index e93b706..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_58.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 8680cce..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_59.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 9dc0882..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_6.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index ae6dbd6..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_7.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 284be20..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_8.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 831d712..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/m_9.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 21cb0f7..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_0.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 1ee8c87..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_1.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 4ea8b4a..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_10.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 560667c..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_11.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 90c20b9..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_12.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index ce12797..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_13.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 2374b55..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_14.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 7370a78..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_15.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 1c887f1..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_16.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 24e8653..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_17.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index e69531b..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_18.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 0b2a3a9..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_19.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index a9e0bcd..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_2.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index ff2f8df..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_20.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index e697370..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_21.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 15f97e2..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_22.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 10f9955..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_23.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 3421f9b..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_24.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 7a658a7..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_25.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 495212f..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_26.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 96d565f..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_27.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index ee39f1f..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_28.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index e58adf0..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_29.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index c1b3b0c..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_3.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 6aded60..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_30.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index a8b1998..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_31.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 720797f..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_32.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index becfb21..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_33.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 6026629..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_34.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 1d7d4f4..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_35.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index ab3120f..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_36.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index c5e13b9..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_37.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index bf8ea2a..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_38.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 7126aa6..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_39.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 4f22687..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_4.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 4fab092..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_40.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 34235c0..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_41.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 415778b..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_42.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index b011837..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_43.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index dfe5902..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_44.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 815d091..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_45.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 904f469..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_46.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 67136e0..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_47.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 63f5847..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_48.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 4c8d944..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_49.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 42466bb..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_5.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 622b614..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_50.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 4accac5..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_51.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index ed2155b..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_52.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index e47e57a..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_53.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 1867c67..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_54.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index d20310d..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_55.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index c77f1e5..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_56.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index ce5d81a..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_57.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 7011250..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_58.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 50d3798..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_59.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index f0b6c4e..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_6.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 39d480b..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_7.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index c6059c2..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_8.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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 deleted file mode 100644 index 9de138f..0000000 --- a/skins/blackhole/themes/default/skinparts/watchhands/s_9.svg +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://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/themes/default/theme.xml b/skins/blackhole/themes/default/theme.xml deleted file mode 100644 index 6598af8..0000000 --- a/skins/blackhole/themes/default/theme.xml +++ /dev/null @@ -1,49 +0,0 @@ -<?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="clrBlack">FF000000</color> - <color name="clrGray">FF999999</color> - <color name="clrGray2">FF777777</color> - <color name="clrRedTrans">55FF0000</color> - <color name="clrBlackTrans">99000000</color> - <color name="clrBlueMenu">FF00284A</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> - </variables> - <!-- - 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/xmlfiles/displayaudiotracks.xml b/skins/blackhole/xmlfiles/displayaudiotracks.xml deleted file mode 100644 index 86ab2e1..0000000 --- a/skins/blackhole/xmlfiles/displayaudiotracks.xml +++ /dev/null @@ -1,43 +0,0 @@ -<?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 deleted file mode 100644 index 83b5429..0000000 --- a/skins/blackhole/xmlfiles/displaychannel.xml +++ /dev/null @@ -1,328 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE displaychannel SYSTEM "../../../dtd/displaychannel.dtd"> - -<displaychannel x="0" y="0" width="100%" height="100%" fadetime="{fadetime}" shifttime="{shifttimechannel}" shifttype="bottom" shiftmode="slowed"> - - <background> - <!-- global background --> - <area x="0" y="70%" width="100%" height="30%" layer="1"> - <drawimage imagetype="skinpart" path="displaychannelback" x="0" y="0" width="100%" height="100%"/> - </area> - <!-- epg background --> - <area x="17%" y="80%" width="67%" height="14%" layer="2"> - <drawimage imagetype="skinpart" path="displaychannelbackepg" x="0" y="0" width="100%" height="100%"/> - </area> - <!-- channel logo background --> - <area x="1%" y="77%" width="14%" height="20%" layer="2"> - <drawimage imagetype="skinpart" path="displaychannellogoback" x="0" y="0" width="100%" height="100%"/> - </area> - <!-- watch background --> - <area x="86%" y="77%" width="{areaheight}*0.18" height="{areaheight}*0.18" 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="74%" width="67%" height="6%" layer="2"> - <drawtext x="0" y="0" font="{semibold}" fontsize="100%" color="{clrWhite}" text="{channelnumber} {channelname}" /> - </area> - <area x="2%" y="78%" width="12%" height="18%" layer="3"> - <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 condition="isset{currentsubtitle}" x="17%" y="80%" width="66%" height="7%" layer="3"> - <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 condition="empty{currentsubtitle}" x="17%" y="80%" width="66%" height="7%" layer="3"> - <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" valign="center" width="{areawidth} - {width(starttime)} - {width(elapsed)} - 45" font="{regular}" fontsize="75%" color="{clrWhite}" text="{currenttitle}" /> - </area> - <area condition="isset{nextsubtitle}" x="17%" y="87%" width="66%" height="7%" layer="3"> - <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> - <area condition="empty{nextsubtitle}" x="17%" y="87%" width="66%" height="7%" layer="3"> - <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" valign="center" width="{areawidth} - {width(starttime)} - {width(duration)} - 45" font="{regular}" fontsize="75%" color="{clrGray}" text="{nexttitle}" /> - </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="72%" width="30%" height="2%" 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="72%" width="30%" height="2%" 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="72%" width="30%" height="2%" 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="95%" width="67%" height="4%" 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}"/> - <drawimage condition="{isRecording}" animtype="blink" animfreq="500" imagetype="icon" path="ico_rec_on" x="{areaheight}*12 + 50" y="0" width="{areaheight}" 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 ecminfo: - {caid} id of currently used CA - {cardsystem} name of currently used CA - {pid} pID - {prid} provider ID - {ecmtime} ecm time in ms - {hops} number of hops - {reader} name of used reader - {from} name of originating host - {protocol} used protocol of reader - --> - - <ecminfo> - <area x="60%" y="95%" width="24%" height="5%" layer="4"> - <drawtext x="0" y="5%" font="{semibold}" fontsize="40%" color="{clrWhite}" text="{cardsystem} Reader: {reader}" /> - <drawtext x="0" y="50%" font="{semibold}" fontsize="40%" color="{clrWhite}" text="ECM Time: {ecmtime} ms" /> - </area> - </ecminfo> - - <!-- 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="95%" width="67%" height="4%" 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="82%" width="66%" height="10%" 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 condition="{showdevices}"> - <area x="56%" y="94%" width="28%" height="6%" layer="2"> - <loop name="devices" x="0" y="0" orientation="horizontal" columnwidth="{areawidth}/{numdevices}" rowheight="{areaheight}"> - <drawtext x="0" y="0" font="{regular}" fontsize="40%" color="{clrWhite}" text="{devices[num]}: {devices[type]}" /> - <drawtext condition="{devices[hascam]}" align="right" y="0" font="{regular}" fontsize="40%" color="{clrWhite}" text="(CAM {devices[cam]})" /> - <drawtext condition="{devices[recording]} ++ {devices[livetv]}" x="0" y="35%" font="{regular}" fontsize="30%" width="{columnwidth}" color="{clrRed}" text="LiveTV, Recording ({devices[channelname]}) " /> - <drawtext condition="{devices[recording]} ++ not{devices[livetv]}" x="0" y="35%" font="{regular}" fontsize="30%" width="{columnwidth}" color="{clrRed}" text="Recording ({devices[channelname]}) " /> - <drawtext condition="not{devices[recording]} ++ {devices[livetv]}" x="0" y="35%" font="{regular}" fontsize="30%" width="{columnwidth}" color="{clrWhite}" text="LiveTV ({devices[channelname]}) " /> - <drawrectangle x="0" y="70%" width="{columnwidth} * {devices[signalstrength]} / 100 - 10 * {devices[signalstrength]} / 100" height="{rowheight}/15" color="{clrWhite}" /> - <drawrectangle x="0" y="85%" width="{columnwidth} * {devices[signalquality]} / 100 - 10 * {devices[signalquality]} / 100" height="{rowheight}/15" color="{clrWhite}" /> - </loop> - </area> - </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 detached="true" delay="0" fadetime="0" shifttime="{shifttimechannel}" shifttype="left" shiftmode="slowed"> - <area condition="{showposter}++{isbanner}" x="1%" y="3%" width="{areaheight}*0.13*{mediawidth}/{mediaheight}" height="13%" layer="7"> - <drawimage imagetype="image" path="{mediapath}" align="center" valign="center" width="{areawidth}" height="{areaheight}"/> - </area> - <area condition="{showposter}++not{isbanner}" x="0" y="3%" width="{areaheight}*0.5*{mediawidth}/{mediaheight}" height="40%" layer="7"> - <drawimage imagetype="image" path="{mediapath}" align="center" valign="center" width="{areawidth}" height="{areaheight}"/> - </area> - </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="74%" width="67%" height="6%" layer="3"> - <drawtext align="right" valign="center" font="{semibold}" fontsize="90%" color="{clrWhite}" text="{dayname} {day}.{month}" /> - </area> - <area x="86%" y="95%" width="{areaheight}*0.18" height="5%" 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="77%" width="{areaheight}*0.18" height="{areaheight}*0.18" layer="5"> - <drawimage imagetype="skinpart" path="watchhands/s_{sec}" x="0" y="0" width="100%" height="100%"/> - </area> - <area x="86%" y="77%" width="{areaheight}*0.18" height="{areaheight}*0.18" layer="4"> - <drawimage imagetype="skinpart" path="watchhands/m_{min}" x="0" y="0" width="100%" height="100%"/> - </area> - <area x="86%" y="77%" width="{areaheight}*0.18" height="{areaheight}*0.18" layer="3"> - <drawimage imagetype="skinpart" path="watchhands/h_{hmins}" x="0" y="0" width="100%" height="100%"/> - </area> - </time> - - <currentweather> - <area x="0" y="70%" width="11%" height="5%" layer="3"> - <drawimage name="weathericon" imagetype="icon" path="{icon}" x="{areawidth}/2 + {width(temperature)}/2 - {width(weathericon)}/2 + 5" valign="center" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - <drawtext name="temperature" x="{areawidth}/2 - {width(temperature)}/2 - {width(weathericon)}/2" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{temperature}°C" /> - </area> - </currentweather> - - <!-- 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="6"> - <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 deleted file mode 100644 index 26199da..0000000 --- a/skins/blackhole/xmlfiles/displaymenu.xml +++ /dev/null @@ -1,257 +0,0 @@ -<?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> - </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="50%" y="0" width="27%" 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 detached="true" delay="50" shifttime="{shifttimemenu}" shifttype="right" shiftmode="slowed"> - <area background="true" 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 background="true" 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="80%" y="0" width="10%" height="5%" layer="5"> - <drawtext x="0" valign="center" font="{digital}" fontsize="75%" color="{clrWhite}" text="{printf('%02d:%02d.%02d', hour, min, sec)}" /> - </area> - <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 detached="true" delay="0" shifttime="{shifttimemessage}" shifttype="bottom" shiftmode="slowed"> - <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 sortmode: - {sortnumber} true if menu is sorted by number - {sortname} true if menu is sorted alphabetical - {sorttime} true if menu is sorted by time - {sortprovider} true if menu is sorted by provider - --> - <sortmode> - <area x="44%" y="1%" width="6%" height="6%" layer="3"> - <drawimage condition="{sortnumber}" imagetype="icon" path="ico_sort_number" x="0" y="0" width="100%" height="100%"/> - <drawimage condition="{sortname}" imagetype="icon" path="ico_sort_name" x="0" y="0" width="100%" height="100%"/> - <drawimage condition="{sorttime}" imagetype="icon" path="ico_sort_time" x="0" y="0" width="100%" height="100%"/> - <drawimage condition="{sortprovider}" imagetype="icon" path="ico_sort_provider" x="0" y="0" width="100%" height="100%"/> - </area> - </sortmode> - - <!-- 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="60%"/> - </area> - <area condition="{red1}" x="0" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green1}" x="0" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow1}" x="0" y="90%" width="25%" height="10%" layer="4"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue1}" x="0" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{red2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{red3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{red4}" x="75%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green4}" x="60%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow4}" x="75%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue4}" x="75%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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 deleted file mode 100644 index e4fa353..0000000 --- a/skins/blackhole/xmlfiles/displaymenuchannels.xml +++ /dev/null @@ -1,123 +0,0 @@ -<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="{nummenuitems}"> - <!-- 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)}:" /> - <drawtext x="10" y="16%" font="{regular}" width="{areawidth}-20" fontsize="12%" color="{clrWhite}" text="{tr(since)} {presenteventstart} - {presenteventtitle}" /> - <drawtext x="10" y="26%" font="{regular}" width="{areawidth}-20" fontsize="12%" color="{clrWhite}" text="{nexteventstart} - {nexteventtitle}" /> - <loop name="schedule" x="0" y="36%" 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 deleted file mode 100644 index 6259feb..0000000 --- a/skins/blackhole/xmlfiles/displaymenudefault.xml +++ /dev/null @@ -1,76 +0,0 @@ -<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="{nummenuitemsdefault}"> - <!-- 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 deleted file mode 100644 index c5e92a4..0000000 --- a/skins/blackhole/xmlfiles/displaymenudetailepg.xml +++ /dev/null @@ -1,300 +0,0 @@ -<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="70%" height="{areawidth} * 0.7 * {bannerheight} / {bannerwidth}"/> - <drawtext name="datetime" x="3%" y="{posy(banner)} + {height(banner)} + 5" 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="9%" color="{clrWhite}" text="{title}" /> - <drawtext x="0" y="14%" width="100%" font="{regular}" fontsize="7%" color="{clrWhite}" text="{shorttext}" /> - - <drawtextbox condition="not{isseries}++not{ismovie}" x="0" y="24%" width="96%" font="{regular}" fontsize="5%" 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="24%" width="96%" float="topright" floatwidth="{width(seriesposter)} + 10" floatheight="{height(seriesposter)} + 20" font="{regular}" fontsize="5%" color="{clrWhite}" text="{description}" /> - <drawtextbox condition="{ismovie}" x="0" y="24%" width="96%" float="topright" floatwidth="{width(movieposter)} + 10" floatheight="{height(movieposter)} + 20" font="{regular}" fontsize="5%" 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 deleted file mode 100644 index ee663d5..0000000 --- a/skins/blackhole/xmlfiles/displaymenudetailrecording.xml +++ /dev/null @@ -1,263 +0,0 @@ -<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} full name of recording (including folders) - {epgname} Name of recording (Name from EPG) - {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="{epgname}" /> - <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="70%" height="{areawidth} * 0.7 * {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="{epgname} - {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="{epgname}" /> - <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} full name of recording (including folders) - {epgname} Name of recording (Name from EPG) - {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 - {cutted} true if recording is cutted - - {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%" width="100%" font="{semibold}" fontsize="9%" color="{clrWhite}" text="{epgname}" /> - <drawtext x="0" y="14%" width="100%" font="{regular}" fontsize="7%" color="{clrWhite}" text="{shorttext}" /> - <drawtextbox condition="not{isseries}++not{ismovie}" x="0" y="24%" width="96%" font="{regular}" fontsize="5%" 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="24%" width="96%" float="topright" floatwidth="{width(seriesposter)} + 10" floatheight="{height(seriesposter)} + 20" font="{regular}" fontsize="5%" color="{clrWhite}" text="{description}" /> - <drawtextbox condition="{ismovie}" x="0" y="24%" width="96%" float="topright" floatwidth="{width(movieposter)} + 10" floatheight="{height(movieposter)} + 20" font="{regular}" fontsize="5%" 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 deleted file mode 100644 index 84bf634..0000000 --- a/skins/blackhole/xmlfiles/displaymenudetailtext.xml +++ /dev/null @@ -1,37 +0,0 @@ -<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 deleted file mode 100644 index 734605a..0000000 --- a/skins/blackhole/xmlfiles/displaymenumain.xml +++ /dev/null @@ -1,222 +0,0 @@ -<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="55%" y="51%" width="44%" height="19%" layer="2"> - <drawimage imagetype="skinpart" path="tachos_back" x="0" y="0" width="100%" height="100%"/> - </area> - <!-- tacho disc usage --> - <area x="55%" y="51%" width="44%" height="19%" layer="3"> - <drawimage imagetype="skinpart" path="tacho_percent_back" x="{areawidth}*0.025" y="5%" width="20%" height="{areawidth}*0.2"/> - </area> - <!-- tacho load --> - <area x="55%" y="51%" width="44%" height="19%" layer="3"> - <drawimage imagetype="skinpart" path="tacho_load_back" x="{areawidth}*0.28" y="5%" width="20%" height="{areawidth}*0.20"/> - </area> - <!-- tacho cpu temp --> - <area x="55%" y="51%" width="44%" height="19%" layer="3"> - <drawimage imagetype="skinpart" path="tacho_temp_back" x="{areawidth}*0.530" y="5%" width="20%" height="{areawidth}*0.20"/> - </area> - <!-- tacho gpu temp --> - <area x="55%" y="51%" width="44%" height="19%" layer="3"> - <drawimage imagetype="skinpart" path="tacho_temp_back" x="{areawidth}*0.78" y="5%" width="20%" height="{areawidth}*0.20"/> - </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> - - <currentweather detached="true" delay="100" fadetime="0"> - <area x="40%" y="0" width="15%" height="8%" layer="3"> - <drawimage name="weathericon" imagetype="icon" path="{icon}" align="right" valign="center" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - <drawtext name="temperature" x="{areawidth} - {width(weathericon)} - {width(temperature)} - 10" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{temperature}°C" /> - </area> - </currentweather> - - <!-- 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" /> - <drawimage condition="{timers[recording]}" animtype="blink" animfreq="500" imagetype="icon" path="ico_rec_on" x="{columnwidth}*0.75" y="{columnwidth}*0.05" width="{columnwidth}*0.2" height="{columnwidth}*0.2"/> - <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 detached="true" delay="100" fadetime="0"> - <area x="55%" y="51%" width="44%" height="19%" layer="5"> - <drawimage imagetype="skinpart" path="tachohands/perc_{usedpercent}" x="{areawidth}*0.025" y="5%" width="20%" height="{areawidth}*0.20"/> - </area> - <area x="55%" y="51%" width="11%" height="19%" layer="4"> - <drawtext align="center" y="85%" font="{regular}" fontsize="15%" 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 detached="true" delay="100" fadetime="0"> - <area x="55%" y="51%" width="44%" height="19%" layer="5"> - <drawimage imagetype="skinpart" path="tachohands/load_{loadhand}" x="{areawidth}*0.28" y="5%" width="20%" height="{areawidth}*0.20"/> - </area> - <area x="66%" y="51%" width="11%" height="19%" layer="4"> - <drawtext align="center" y="85%" font="{regular}" fontsize="15%" color="{clrWhite}" text="Load: {load}" /> - </area> - </systemload> - - <!-- Available Variables tempreatures: - {cputemp} current cpu temperature in °C - {gputemp} current gpu temperature in °C - --> - <temperatures detached="true" delay="100" fadetime="0"> - <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.53" y="5%" width="20%" height="{areawidth}*0.2"/> - <drawimage condition="lt({cputemp}, 81)" imagetype="skinpart" path="tachohands/temp_{cputemp}" x="{areawidth}*0.53" y="5%" width="20%" height="{areawidth}*0.2"/> - <drawimage condition="gt({gputemp}, 80)" imagetype="skinpart" path="tachohands/temp_81" x="{areawidth}*0.78" y="5%" width="20%" height="{areawidth}*0.2"/> - <drawimage condition="lt({gputemp}, 81)" imagetype="skinpart" path="tachohands/temp_{gputemp}" x="{areawidth}*0.78" y="5%" width="20%" height="{areawidth}*0.2"/> - </area> - <area x="77%" y="51%" width="11%" height="19%" layer="4"> - <drawtext align="center" y="85%" font="{regular}" fontsize="15%" color="{clrWhite}" text="CPU Temp: {cputemp}°C" /> - </area> - <area x="88%" y="51%" width="11%" height="19%" layer="4"> - <drawtext align="center" y="85%" font="{regular}" fontsize="15%" 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="{nummenuitemsmain}"> - <!-- 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 condition="{showmainmenuicons}" x="1%" width="20%" layer="3"> - <drawimage imagetype="menuicon" path="{icon}" x="1%" valign="center" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - </area> - <area condition="not{showmainmenuicons}" 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> - <area condition="{showmainmenuicons}" x="0" width="100%" layer="3"> - <drawtext condition="not{current}" x="{areaheight} + {areawidth}*0.02" width="{areawidth} - {areaheight}" valign="center" font="{regular}" fontsize="80%" color="{clrGray}" text="{number} {label} " /> - <drawtext condition="{current}" x="{areaheight} + {areawidth}*0.02" width="{areawidth} - {areaheight}" 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 deleted file mode 100644 index f7e85b1..0000000 --- a/skins/blackhole/xmlfiles/displaymenurecordings.xml +++ /dev/null @@ -1,120 +0,0 @@ -<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="{nummenuitems}"> - <!-- 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} Real Name of recording (Name of Recording Folder) - {epgname} Name of recording (Name from EPG) - {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="{epgname}" /> - <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="{epgname}" /> - <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 deleted file mode 100644 index ae11f22..0000000 --- a/skins/blackhole/xmlfiles/displaymenuschedules.xml +++ /dev/null @@ -1,266 +0,0 @@ -<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 - {whatsonfavorites} true if EPGSearch Favorites menu is displayed - --> - <header> - <area x="0" y="0" width="83%" height="8%" layer="3"> - <drawtext condition="{whatsonnow}||{whatsonnext}||{whatsonfavorites}" 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="{nummenuitems}"> - <!-- 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 - {startsin} minutes till event starts, if 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 - {whatsonfavorites} true if EPGSearch Favorites menu 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 condition="{showsubtitle}++not{separator}++{whatson}++not{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="1%" width="50%" layer="3"> - <drawtext name="menutext" x="0" y="32%" font="{regular}" fontsize="45%" color="{clrGray}" text="{title}" /> - </areascroll> - <area condition="{showsubtitle}++not{separator}++{whatson}++not{current}" x="1%" width="50%" layer="3"> - <drawtext x="0" y="73%" width="98%" font="{regular}" fontsize="27%" color="{clrGray}" text="{shorttext}" /> - </area> - <areascroll condition="not{showsubtitle}++not{separator}++{whatson}++not{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" 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 condition="{showsubtitle}++not{separator}++{whatson}++{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="1%" width="50%" layer="3"> - <drawtext name="menutext" x="0" y="32%" font="{regular}" fontsize="45%" color="{clrWhite}" text="{title}" /> - </areascroll> - <area condition="{showsubtitle}++not{separator}++{whatson}++{current}" x="1%" width="50%" layer="3"> - <drawtext x="0" y="73%" width="98%" font="{regular}" fontsize="27%" color="{clrWhite}" text="{shorttext}" /> - </area> - <areascroll condition="not{showsubtitle}++not{separator}++{whatson}++{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" 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 condition="{showsubtitle}++not{separator}++{whatsonnow}++not{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="11%" width="39%" layer="3"> - <drawtext name="menutext" x="0" y="32%" font="{regular}" fontsize="45%" color="{clrGray}" text="{title}" /> - </areascroll> - <area condition="{showsubtitle}++not{separator}++{whatsonnow}++not{current}" x="11%" width="39%" layer="3"> - <drawtext x="0" y="73%" width="98%" font="{regular}" fontsize="27%" color="{clrGray}" text="{shorttext}" /> - </area> - <areascroll condition="not{showsubtitle}++not{separator}++{whatsonnow}++not{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" 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 condition="{showsubtitle}++not{separator}++{whatsonnow}++{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="11%" width="39%" layer="3"> - <drawtext name="menutext" x="0" y="32%" font="{regular}" fontsize="45%" color="{clrGray}" text="{title}" /> - </areascroll> - <area condition="{showsubtitle}++not{separator}++{whatsonnow}++{current}" x="11%" width="39%" layer="3"> - <drawtext x="0" y="73%" width="98%" font="{regular}" fontsize="27%" color="{clrGray}" text="{shorttext}" /> - </area> - <areascroll condition="not{showsubtitle}++not{separator}++{whatsonnow}++{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="11%" width="39%" layer="3"> - <drawtext name="menutext" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrGray}" 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 condition="{showsubtitle}++not{separator}++{whatsonnext}++not{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="11%" width="39%" layer="3"> - <drawtext name="menutext" x="0" y="32%" font="{regular}" fontsize="45%" color="{clrGray}" text="{title}" /> - </areascroll> - <area condition="{showsubtitle}++not{separator}++{whatsonnext}++not{current}" x="11%" width="39%" layer="3"> - <drawtext x="0" y="73%" width="98%" font="{regular}" fontsize="27%" color="{clrGray}" text="{shorttext}" /> - </area> - <areascroll condition="not{showsubtitle}++not{separator}++{whatsonnext}++not{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" 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 condition="{showsubtitle}++not{separator}++{whatsonnext}++{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="11%" width="39%" layer="3"> - <drawtext name="menutext" x="0" y="32%" font="{regular}" fontsize="45%" color="{clrGray}" text="{title}" /> - </areascroll> - <area condition="{showsubtitle}++not{separator}++{whatsonnext}++{current}" x="11%" width="39%" layer="3"> - <drawtext x="0" y="73%" width="98%" font="{regular}" fontsize="27%" color="{clrGray}" text="{shorttext}" /> - </area> - <areascroll condition="not{showsubtitle}++not{separator}++{whatsonnext}++{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="11%" width="39%" layer="3"> - <drawtext name="menutext" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrGray}" text="{title}" /> - </areascroll> - <!-- element whatsonfavorites --> - <area condition="not{separator}++{whatsonfavorites}" 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}++{whatsonfavorites}++not{current}" x="11%" width="39%" layer="3"> - <drawtext x="0" y="5%" font="{regular}" fontsize="35%" color="{clrGray}" text="{start} - {stop}" /> - </area> - <areascroll condition="{showsubtitle}++not{separator}++{whatsonfavorites}++not{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="11%" width="39%" layer="3"> - <drawtext name="menutext" x="0" y="32%" font="{regular}" fontsize="45%" color="{clrGray}" text="{title}" /> - </areascroll> - <area condition="{showsubtitle}++not{separator}++{whatsonfavorites}++not{current}" x="11%" width="39%" layer="3"> - <drawtext x="0" y="73%" width="98%" font="{regular}" fontsize="27%" color="{clrGray}" text="{shorttext}" /> - </area> - <areascroll condition="not{showsubtitle}++not{separator}++{whatsonfavorites}++not{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="11%" width="39%" layer="3"> - <drawtext name="menutext" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrGray}" text="{title}" /> - </areascroll> - <!-- current element whatsonfavorites --> - <area condition="not{separator}++{whatsonfavorites}++{current}" x="11%" width="39%" layer="3"> - <drawtext x="0" y="5%" font="{regular}" fontsize="35%" color="{clrWhite}" text="{start} - {stop}" /> - </area> - <areascroll condition="{showsubtitle}++not{separator}++{whatsonfavorites}++{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="11%" width="39%" layer="3"> - <drawtext name="menutext" x="0" y="32%" font="{regular}" fontsize="45%" color="{clrGray}" text="{title}" /> - </areascroll> - <area condition="{showsubtitle}++not{separator}++{whatsonfavorites}++{current}" x="11%" width="39%" layer="3"> - <drawtext x="0" y="73%" width="98%" font="{regular}" fontsize="27%" color="{clrGray}" text="{shorttext}" /> - </area> - <areascroll condition="not{showsubtitle}++not{separator}++{whatsonfavorites}++{current}" scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="11%" width="39%" layer="3"> - <drawtext name="menutext" x="0" y="35%" font="{regular}" fontsize="60%" color="{clrGray}" 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 - {whatsonfavorites} true if EPGSearch Favorites menu 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 deleted file mode 100644 index a86dfd4..0000000 --- a/skins/blackhole/xmlfiles/displaymenusetup.xml +++ /dev/null @@ -1,51 +0,0 @@ -<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="{nummenuitemsmain}"> - <!-- 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 deleted file mode 100644 index 8805203..0000000 --- a/skins/blackhole/xmlfiles/displaymenutimers.xml +++ /dev/null @@ -1,117 +0,0 @@ -<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="{nummenuitems}"> - <!-- 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 deleted file mode 100644 index eb272ca..0000000 --- a/skins/blackhole/xmlfiles/displaymessage.xml +++ /dev/null @@ -1,28 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE displaymessage SYSTEM "../../../dtd/displaymessage.dtd">
-
-<displaymessage x="0" y="0" width="100%" height="100%" fadetime="{fadetime}" shifttime="{shifttimemessage}" shifttype="bottom" shiftmode="slowed">
-
- <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 deleted file mode 100644 index 512dd5d..0000000 --- a/skins/blackhole/xmlfiles/displayreplay.xml +++ /dev/null @@ -1,379 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE displayreplay SYSTEM "../../../dtd/displayreplay.dtd"> - -<displayreplay x="0" y="0" width="100%" height="100%" fadetime="{fadetime}" shifttime="{shifttimereplay}" shifttype="bottom" shiftmode="slowed"> - - <background> - <!-- global background --> - <area x="0" y="70%" width="100%" height="30%" layer="2"> - <drawimage imagetype="skinpart" path="displaychannelback" x="0" y="0" width="100%" height="100%"/> - </area> - <!-- progressbar background --> - <area x="17%" y="81%" width="67%" height="12%" layer="3"> - <drawimage imagetype="skinpart" path="displaychannelbackepg" x="0" y="0" width="100%" height="100%"/> - </area> - <area x="18%" y="84%" width="65%" height="{areaheight}*0.024" layer="4"> - <drawimage imagetype="skinpart" path="progressbarback_replay" x="0" y="0" width="100%" height="100%"/> - </area> - <!-- watch background --> - <area x="86%" y="76%" width="{areaheight}*0.18" height="{areaheight}*0.18" layer="3"> - <drawimage imagetype="skinpart" path="watchback" x="0" y="0" width="100%" height="100%"/> - </area> - </background> - - <backgroundmodeonly> - <area x="{areawidth}/2 - 2.5*{areaheight}*0.1" y="82%" width="5*{areaheight}*0.1" height="10%" layer="2"> - <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="70%" width="{areaheight}*0.18" height="5%" layer="4"> - <drawtext align="center" y="0" font="{semibold}" fontsize="100%" color="{clrWhite}" text="{daynameshort} {day}.{month}" /> - </area> - <area x="86%" y="94%" width="{areaheight}*0.18" height="5%" layer="4"> - <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="76%" width="{areaheight}*0.18" height="{areaheight}*0.18" layer="6"> - <drawimage imagetype="skinpart" path="watchhands/s_{sec}" x="0" y="0" width="100%" height="100%"/> - </area> - <area x="86%" y="76%" width="{areaheight}*0.18" height="{areaheight}*0.18" layer="5"> - <drawimage imagetype="skinpart" path="watchhands/m_{min}" x="0" y="0" width="100%" height="100%"/> - </area> - <area x="86%" y="76%" width="{areaheight}*0.18" height="{areaheight}*0.18" layer="4"> - <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 detached="true" shifttime="{shifttimereplay}" shifttype="left" shiftmode="slowed"> - <area condition="{hasposter}" x="1%" y="75%" width="{areaheight}*0.21*{posterwidth}/{posterheight}" height="21%" layer="3"> - <drawimage imagetype="image" path="{posterpath}" x="0" y="0" width="100%" height="100%"/> - </area> - <area condition="not{hasposter}" x="1%" y="75%" width="14%" height="21%" layer="3"> - <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="75%" width="67%" height="6%" layer="3"> - <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="94%" width="67%" height="5%" layer="5"> - <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="88%" width="30%" height="5%" layer="4"> - <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="88%" width="29%" height="5%" layer="4"> - <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="84%" width="65%" height="{areaheight}*0.024" layer="5"> - <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="83%" width="65%" height="{areaheight}*0.044" layer="6" 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="70%" width="25%" height="6%" layer="4"> - <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.1" y="82%" width="4*{areaheight}*0.1" height="10%" 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="94%" width="30%" height="6%" layer="4"> - <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="78%" 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="78%" 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="30" fadetime="{fadetime}"> - <area x="0" y="0" width="100%" height="100%" layer="1"> - <fill color="{clrBlackTrans}" /> - </area> - <area x="0" y="35%" width="100%" height="30%" layer="2"> - <drawtext align="center" valign="center" font="{regular}" fontsize="100%" color="{clrWhite}" text="{tr(pause)}" /> - </area> - </onpause> - - <onpausemodeonly delay="30" fadetime="{fadetime}"> - <area x="0" y="0" width="100%" height="100%" layer="1"> - <fill color="{clrBlackTrans}" /> - </area> - <area x="0" y="35%" width="100%" height="30%" layer="2"> - <drawtext align="center" valign="center" font="{regular}" fontsize="100%" color="{clrWhite}" text="{tr(pause)}" /> - </area> - </onpausemodeonly> - -</displayreplay> diff --git a/skins/blackhole/xmlfiles/displayvolume.xml b/skins/blackhole/xmlfiles/displayvolume.xml deleted file mode 100644 index f004b86..0000000 --- a/skins/blackhole/xmlfiles/displayvolume.xml +++ /dev/null @@ -1,36 +0,0 @@ -<?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}" shifttime="{shifttimevolume}" shifttype="right" shiftmode="slowed"> - - <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/skins/blackhole/xmlfiles/plug-tvguideng-detail.xml b/skins/blackhole/xmlfiles/plug-tvguideng-detail.xml deleted file mode 100644 index dbe61ef..0000000 --- a/skins/blackhole/xmlfiles/plug-tvguideng-detail.xml +++ /dev/null @@ -1,454 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE displayplugin SYSTEM "../../../dtd/displayplugin.dtd"> - -<displayplugin x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="55%" scaletvy="10%" scaletvwidth="40%" scaletvheight="40%"> - - <viewelement name="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> - </viewelement> - - <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 Footer: - {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 - --> - <viewelement name="footer"> - <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="60%"/> - </area> - <area condition="{red1}" x="0" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green1}" x="0" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow1}" x="0" y="90%" width="25%" height="10%" layer="4"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue1}" x="0" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{red2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{red3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{red4}" x="75%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green4}" x="60%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow4}" x="75%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue4}" x="75%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" color="{clrWhite}" text="{blue}" /> - </area> - </viewelement> - - <!-- Available Variables time: - {time} timestring in hh:mm - {sec} current seconds - {min} current minutes - {hour} current hours - {hmins} current "hourminutes" to display an hour hand - --> - <viewelement name="time"> - <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="{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> - </viewelement> - - - <!-- 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 - --> - <viewelement name="header"> - <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="70%" height="{areawidth} * 0.7 * {bannerheight} / {bannerwidth}"/> - <drawtext name="datetime" x="3%" y="{posy(banner)} + {height(banner)} + 5" 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> - </viewelement> - - <!-- 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="9%" color="{clrWhite}" text="{title}" /> - <drawtext x="0" y="14%" width="100%" font="{regular}" fontsize="7%" color="{clrWhite}" text="{shorttext}" /> - - <drawtextbox condition="not{isseries}++not{ismovie}" x="0" y="24%" width="96%" font="{regular}" fontsize="5%" 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="24%" width="96%" float="topright" floatwidth="{width(seriesposter)} + 10" floatheight="{height(seriesposter)} + 20" font="{regular}" fontsize="5%" color="{clrWhite}" text="{description}" /> - <drawtextbox condition="{ismovie}" x="0" y="24%" width="96%" float="topright" floatwidth="{width(movieposter)} + 10" floatheight="{height(movieposter)} + 20" font="{regular}" fontsize="5%" 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> - - <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> - -</displayplugin> diff --git a/skins/blackhole/xmlfiles/plug-tvguideng-recmenu.xml b/skins/blackhole/xmlfiles/plug-tvguideng-recmenu.xml deleted file mode 100644 index 4d1bfb9..0000000 --- a/skins/blackhole/xmlfiles/plug-tvguideng-recmenu.xml +++ /dev/null @@ -1,454 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE displayplugin SYSTEM "../../../dtd/displayplugin.dtd"> - -<displayplugin x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="0.625*{areawidth}" scaletvy="1%" scaletvwidth="18%" scaletvheight="18%"> - - <!-- Available Variables Background: - {menuwidth} menuwidth in percent of screenwidth - {menuheight} menuheight in percent of screenheight - {hasscrollbar} true if menu needs a scrollbar - --> - <viewelement name="background"> - <area x="0" y="0" width="100%" height="100%" layer="4"> - <fill color="{clrBlackTrans}" /> - </area> - <area condition="not{hasscrollbar}" x="0" y="0" width="100%" height="100%" layer="4"> - <drawrectangle x="{areawidth}/2 - {menuwidth}*{areawidth}/100/2" y="{areaheight}/2 - {menuheight}*{areaheight}/100/2" width="{menuwidth}*{areawidth}/100" height="{menuheight}*{areaheight}/100" color="{clrBlack}" /> - </area> - <area condition="{hasscrollbar}" x="0" y="0" width="100%" height="100%" layer="4"> - <drawrectangle x="{areawidth}/2 - {menuwidth}*{areawidth}/100/2" y="{areaheight}/2 - {menuheight}*{areaheight}/100/2" width="{menuwidth}*{areawidth}/100 + {areawidth}*0.03" height="{menuheight}*{areaheight}/100" color="{clrBlack}"/> - </area> - </viewelement> - - <!-- Available Variables Scrollbar: - {menuwidth} menuwidth in percent of screenwidth - {posy} y position of scrollbar start in percent of screenheight - {totalheight} height of complete scrollbar in percent of screenheight - {height} height in tenth of a percent of total height - {offset} offset in tenth of a percent - --> - <viewelement name="scrollbar"> - <area x="0" y="0" width="100%" height="100%" layer="5"> - <drawimage imagetype="skinpart" path="scrollbarback" x="{areawidth}/2 + {menuwidth}*{areawidth}/100/2" y="{posy}*{areaheight}/100" width="2%" height="{totalheight}*{areaheight}/100"/> - </area> - <area x="0" y="0" width="100%" height="100%" layer="6"> - <drawimage imagetype="skinpart" path="scrollbar" x="{areawidth}/2 + {menuwidth}*{areawidth}/100/2" y="{posy}*{areaheight}/100 + {totalheight}*{areaheight}/100 * {offset} / 1000" width="2%" height="{totalheight}*{areaheight}/100 * {height} / 1000"/> - </area> - </viewelement> - - <grid name="recmenu" x="0" y="0" width="100%" height="100%"> - <!-- Background - {current} true if item is currently selected - --> - <area condition="not{info}++not{buttonyesno}++not{timerconflictheader}++not{timerconflict}++not{timelineheader}++not{timelinetimer}" layer="5"> - <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> - <!-- info item - {info} true - {lines} number of lines to display (max. 4) - {line1} text of line 1 - {line2} text of line 1 - {line3} text of line 1 - {line4} text of line 1 - --> - <area condition="{info}" layer="5"> - <drawtext condition="eq({lines}, 1)" align="center" valign="center" font="{regular}" fontsize="60%" color="{clrWhite}" text="{line1}" /> - - <drawtext condition="eq({lines}, 2)" align="center" y="5%" font="{regular}" fontsize="40%" color="{clrWhite}" text="{line1}" /> - <drawtext condition="eq({lines}, 2)" align="center" y="52%" font="{regular}" fontsize="40%" color="{clrWhite}" text="{line2}" /> - - <drawtext condition="eq({lines}, 3)" align="center" y="0%" font="{regular}" fontsize="28%" color="{clrWhite}" text="{line1}" /> - <drawtext condition="eq({lines}, 3)" align="center" y="33%" font="{regular}" fontsize="28%" color="{clrWhite}" text="{line2}" /> - <drawtext condition="eq({lines}, 3)" align="center" y="66%" font="{regular}" fontsize="28%" color="{clrWhite}" text="{line3}" /> - - <drawtext condition="eq({lines}, 4)" align="center" y="0%" font="{regular}" fontsize="22%" color="{clrWhite}" text="{line1}" /> - <drawtext condition="eq({lines}, 4)" align="center" y="25%" font="{regular}" fontsize="22%" color="{clrWhite}" text="{line2}" /> - <drawtext condition="eq({lines}, 4)" align="center" y="50%" font="{regular}" fontsize="22%" color="{clrWhite}" text="{line3}" /> - <drawtext condition="eq({lines}, 4)" align="center" y="75%" font="{regular}" fontsize="22%" color="{clrWhite}" text="{line4}" /> - </area> - <!-- button - {button} true - {buttontext} text to display on button - --> - <area condition="{button}" layer="6"> - <drawtext align="center" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{buttontext}" /> - </area> - - <!-- yes / no button - {buttonyesno} true - {yes} true if button is set to yes - {textyes} text to display on yes button - {textno} text to display on no button - --> - <area condition="{buttonyesno}" layer="5"> - <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="2%" y="5%" width="46%" height="90%"/> - <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="52%" y="5%" width="46%" height="90%"/> - <drawimage condition="{current}++{yes}" imagetype="skinpart" path="menubuttonactive" x="2%" y="5%" width="46%" height="90%"/> - <drawimage condition="{current}++{yes}" imagetype="skinpart" path="menubutton" x="52%" y="5%" width="46%" height="90%"/> - <drawimage condition="{current}++not{yes}" imagetype="skinpart" path="menubutton" x="2%" y="5%" width="46%" height="90%"/> - <drawimage condition="{current}++not{yes}" imagetype="skinpart" path="menubuttonactive" x="52%" y="5%" width="46%" height="90%"/> - </area> - <area condition="{buttonyesno}" layer="6"> - <drawtext name="yestext" x="{areawidth}/4 - {width(yestext)}/2" valign="center" font="{light}" fontsize="70%" color="{clrWhite}" text="{textyes}" /> - <drawtext name="notext" x="3*{areawidth}/4 - {width(notext)}/2" valign="center" font="{light}" fontsize="70%" color="{clrWhite}" text="{textno}" /> - </area> <!-- Int Selector - {intselector} true - {text} title of selector - {value} current value of selector, integer - --> - <area condition="{intselector}" layer="6"> - <drawtext x="1%" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{text}" /> - <drawtext align="right" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{value} " /> - </area> - <!-- Bool Selector - {boolselector} true - {text} title of selector - {value} current value of selector, true or false - --> - <area condition="{boolselector}" layer="6"> - <drawtext x="1%" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{text}" /> - <drawimage condition="{value}" imagetype="icon" path="ico_yes" x="{areawidth} - {areaheight}*0.8" y="10%" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - <drawimage condition="not{value}" imagetype="icon" path="ico_no" x="{areawidth} - {areaheight}*0.8" y="10%" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - </area> - <!-- String Selector - {stringselector} true - {text} title of selector - {value} current value of selector, string - --> - <area condition="{stringselector}" layer="6"> - <drawtext x="1%" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{text}" /> - <drawimage imagetype="icon" path="ico_arrow_right" x="{areawidth} - {areaheight}*0.8" y="10%" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - <drawtext name="value" x="{areawidth} - {width(value)} - {areaheight}" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{value}" /> - <drawimage imagetype="icon" path="ico_arrow_left" x="{areawidth} - {width(value)} - 2*{areaheight}" y="10%" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - </area> - <!-- Text Input - {textinput} true - {editmode} true if currently in edit mode - {text} title of selector - {value} current value of selector, string - --> - <area condition="{textinput}" layer="6"> - <drawtext x="1%" y="10%" font="{light}" fontsize="40%" color="{clrWhite}" text="{text}" /> - <drawrectangle condition="not{editmode}" x="1%" y="55%" width="98%" height="40%" color="{clrWhite}"/> - <drawrectangle condition="{editmode}" x="1%" y="55%" width="98%" height="40%" color="{clrRed}"/> - </area> - <area condition="{textinput}" layer="7"> - <drawtext align="right" y="55%" font="{light}" fontsize="40%" color="{clrBlack}" text="{value} " /> - </area> - <!-- Time Selector - {timeselector} true - {text} title of selector - {value} current value of selector, hh:mm - --> - <area condition="{timeselector}" layer="6"> - <drawtext x="1%" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{text}" /> - <drawtext align="right" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{value} " /> - </area> - <!-- Day Selector - {dayselector} true - {text} title of selector - {value} current value of selector, dd.mm - --> - <area condition="{dayselector}" layer="6"> - <drawtext x="1%" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{text}" /> - <drawtext align="right" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{value} " /> - </area> - <!-- Channel Selector - {channelselector} true - {text} title of selector - {channelnumber} number of currently selected channel, 0 for "all channels" - {channelname} name of channel or "all channels" - {channelid} id of channel - {channellogoexisis} true if channel logo exists - --> - <area condition="{channelselector}" layer="6"> - <drawtext x="1%" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{text}" /> - <drawimage condition="{channellogoexisis}" imagetype="channellogo" path="{channelid}" x="{areawidth}-{areaheight}" valign="center" width="{areaheight}*0.9" height="{areaheight}*0.9" /> - <drawtext name="channelnumberlogo" condition="{channellogoexisis}" x="{areawidth}-{areaheight}-{width(channelnumberlogo)}-10" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{channelnumber}" /> - <drawtext condition="not{channellogoexisis}++{channelnumber}" align="right" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{channelnumber} {channelname} " /> - <drawtext condition="not{channelnumber}" align="right" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{channelname} " /> - </area> - <!-- Weekday Selector - {weekdayselector} true - {text} title of selector - {dayselected} number of currently selected day (0 - 6) - {day0abbr} ... {day6abbr} localized one character abbrevation for weekdays from Monday to Sunday - {day0set} ... {day6set} true if according weekday from Monday to Sunday is set - --> - <area condition="{weekdayselector}" layer="6"> - <drawtext x="1%" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{text}" /> - - <drawrectangle x="{areawidth} - {areaheight}*4" y="25%" width="{areaheight}*3.5" height="50%" color="{clrWhite}" /> - - <drawrectangle condition="not{day0set}" x="{areawidth} - {areaheight}*4.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrGray2}" /> - <drawrectangle condition="{day0set}" x="{areawidth} - {areaheight}*4.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlueMenu}" /> - - <drawrectangle condition="not{day1set}" x="{areawidth} - {areaheight}*3.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrGray2}" /> - <drawrectangle condition="{day1set}" x="{areawidth} - {areaheight}*3.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlueMenu}" /> - - <drawrectangle condition="not{day2set}" x="{areawidth} - {areaheight}*3.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrGray2}" /> - <drawrectangle condition="{day2set}" x="{areawidth} - {areaheight}*3.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlueMenu}" /> - - <drawrectangle condition="not{day3set}" x="{areawidth} - {areaheight}*2.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrGray2}" /> - <drawrectangle condition="{day3set}" x="{areawidth} - {areaheight}*2.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlueMenu}" /> - - <drawrectangle condition="not{day4set}" x="{areawidth} - {areaheight}*2.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrGray2}" /> - <drawrectangle condition="{day4set}" x="{areawidth} - {areaheight}*2.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlueMenu}" /> - - <drawrectangle condition="not{day5set}" x="{areawidth} - {areaheight}*1.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrGray2}" /> - <drawrectangle condition="{day5set}" x="{areawidth} - {areaheight}*1.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlueMenu}" /> - - <drawrectangle condition="not{day6set}" x="{areawidth} - {areaheight}*1.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrGray2}" /> - <drawrectangle condition="{day6set}" x="{areawidth} - {areaheight}*1.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlueMenu}" /> - </area> - <area condition="{weekdayselector}" layer="7"> - <drawrectangle condition="{current}++eq({dayselected}, 0)" x="{areawidth} - {areaheight}*4.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlackTrans}" /> - <drawrectangle condition="{current}++eq({dayselected}, 1)" x="{areawidth} - {areaheight}*3.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlackTrans}" /> - <drawrectangle condition="{current}++eq({dayselected}, 2)" x="{areawidth} - {areaheight}*3.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlackTrans}" /> - <drawrectangle condition="{current}++eq({dayselected}, 3)" x="{areawidth} - {areaheight}*2.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlackTrans}" /> - <drawrectangle condition="{current}++eq({dayselected}, 4)" x="{areawidth} - {areaheight}*2.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlackTrans}" /> - <drawrectangle condition="{current}++eq({dayselected}, 5)" x="{areawidth} - {areaheight}*1.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlackTrans}" /> - <drawrectangle condition="{current}++eq({dayselected}, 6)" x="{areawidth} - {areaheight}*1.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlackTrans}" /> - - <drawtext name="day0" x="{areawidth} - {areaheight}*4.0 + {areaheight}/4 - {width(day0)}/2" valign="center" font="{light}" fontsize="50%" color="{clrWhite}" text="{day0abbr}" /> - <drawtext name="day1" x="{areawidth} - {areaheight}*3.5 + {areaheight}/4 - {width(day1)}/2" valign="center" font="{light}" fontsize="50%" color="{clrWhite}" text="{day1abbr}" /> - <drawtext name="day2" x="{areawidth} - {areaheight}*3.0 + {areaheight}/4 - {width(day2)}/2" valign="center" font="{light}" fontsize="50%" color="{clrWhite}" text="{day2abbr}" /> - <drawtext name="day3" x="{areawidth} - {areaheight}*2.5 + {areaheight}/4 - {width(day3)}/2" valign="center" font="{light}" fontsize="50%" color="{clrWhite}" text="{day3abbr}" /> - <drawtext name="day4" x="{areawidth} - {areaheight}*2.0 + {areaheight}/4 - {width(day4)}/2" valign="center" font="{light}" fontsize="50%" color="{clrWhite}" text="{day4abbr}" /> - <drawtext name="day5" x="{areawidth} - {areaheight}*1.5 + {areaheight}/4 - {width(day5)}/2" valign="center" font="{light}" fontsize="50%" color="{clrWhite}" text="{day5abbr}" /> - <drawtext name="day6" x="{areawidth} - {areaheight}*1.0 + {areaheight}/4 - {width(day6)}/2" valign="center" font="{light}" fontsize="50%" color="{clrWhite}" text="{day6abbr}" /> - </area> - <!-- Directory Selector - {directoryselector} true - {text} title of selector - {folder} current folder of selector, string - --> - <area condition="{directoryselector}" layer="6"> - <drawtext x="1%" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{text}" /> - <drawimage imagetype="icon" path="ico_arrow_right" x="{areawidth} - {areaheight}*0.8" y="10%" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - <drawtext name="folder" x="{areawidth} - {width(folder)} - {areaheight}" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{folder}" /> - <drawimage imagetype="icon" path="ico_arrow_left" x="{areawidth} - {width(folder)} - 2*{areaheight}" y="10%" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - </area> - <!-- Timerconflict Header - {timerconflictheader} true - {text} title of Timerconflict Header - {conflictstart} start of conflict in hh:mm - {conflictstop} end of conflict in hh:mm - {overlapstart} start of overlap in hh:mm - {overlapstop} end of overlap in hh:mm - {overlapstartpercent} start of overlap in percent of total conflict time width - {overlapwidthpercent} width of overlap in percent of total conflict time width - --> - <area condition="{timerconflictheader}" layer="5"> - <drawtext name="title" x="{areawidth}*0.7*0.5 - {width(title)}/2" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{text}" /> - <drawrectangle x="70%" y="0" width="30%" height="100%" color="{clrWhite}"/> - </area> - <area condition="{timerconflictheader}" layer="6"> - <drawtext x="{areawidth}*0.7" y="0" font="{light}" fontsize="50%" color="{clrBlack}" text="{conflictstart}" /> - <drawtext align="right" y="0" font="{light}" fontsize="50%" color="{clrBlack}" text="{conflictstop}" /> - <drawtext name="olstart" x="{areawidth}*0.7 + {overlapstartpercent}*{areawidth}*0.3/100 - 70" y="50%" font="{light}" fontsize="50%" color="{clrRed}" text="{overlapstart}" /> - <drawtext x="{areawidth}*0.7 + {overlapstartpercent}*{areawidth}*0.3/100 + {overlapwidthpercent}*{areawidth}*0.3/100 + 5" y="50%" font="{light}" fontsize="50%" color="{clrRed}" text="{overlapstop}" /> - <drawrectangle x="{areawidth}*0.7 + {overlapstartpercent}*{areawidth}*0.3/100" y="50%" width="{overlapwidthpercent}*{areawidth}*0.3/100" height="50%" color="{clrRedTrans}"/> - </area> - <!-- Timerconflict - {timerconflict} true - {timertitle} title of timer - {channelname} name of channel - {channelid} channel ID - {transponder} transponder of channel - {starttime} start of timer in hh:mm - {stoptime} end of timer in hh:mm - {date} date of timer in dd.mm.yy - {weekday} weekday of timer, 3 letter abrivation - {infoactive} true if info icon is active - {deleteactive} true if delete icon is active - {editactive} true if edit icon is active - {searchactive} true if search icon is active - {timerstartpercent} start of timer in percent of total conflict time width - {timerwidthpercent} end of timer in percent of total conflict time width - {overlapstartpercent} start of overlap in percent of total conflict time width - {overlapwidthpercent} width of overlap in percent of total conflict time width - --> - <area condition="{timerconflict}" layer="5"> - <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="0" width="70%" height="100%"/> - <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="0" width="70%" height="100%"/> - </area> - <area condition="{timerconflict}" layer="6"> - <drawimage condition="{current}++{infoactive}" imagetype="icon" path="ico_info_active" x="{areaheight}*0.05" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}||not{infoactive}" imagetype="icon" path="ico_info_inactive" x="{areaheight}*0.05" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="{current}++{deleteactive}" imagetype="icon" path="ico_delete_active" x="{areaheight}*0.6" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}||not{deleteactive}" imagetype="icon" path="ico_delete_inactive" x="{areaheight}*0.6" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="{current}++{editactive}" imagetype="icon" path="ico_edit_active" x="{areaheight}*1.15" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}||not{editactive}" imagetype="icon" path="ico_edit_inactive" x="{areaheight}*1.15" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="{current}++{searchactive}" imagetype="icon" path="ico_search_active" x="{areaheight}*1.7" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}||not{searchactive}" imagetype="icon" path="ico_search_inactive" x="{areaheight}*1.7" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawtext x="{areaheight}*2.3" width="{areawidth}*0.7 - {areaheight}*2.4" y="0" font="{regular}" fontsize="40%" color="{clrWhite}" text="{timertitle}" /> - <drawtext x="{areaheight}*2.3" y="40%" font="{light}" fontsize="30%" color="{clrWhite}" text="{weekday} {date} {starttime} - {stoptime}" /> - <drawtext x="{areaheight}*2.3" y="70%" font="{light}" fontsize="30%" color="{clrWhite}" text="{channelname}, Transp. {transponder}" /> - <drawrectangle x="70%" y="0" width="30%" height="100%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.7 + {timerstartpercent}*{areawidth}*0.3/100" y="30%" width="{timerwidthpercent}*{areawidth}*0.3/100" height="40%" color="{clrBlack}"/> - </area> - <area condition="{timerconflict}" layer="7"> - <drawrectangle x="{areawidth}*0.7 + {overlapstartpercent}*{areawidth}*0.3/100" y="0" width="{overlapwidthpercent}*{areawidth}*0.3/100" height="100%" color="{clrRedTrans}"/> - </area> - <!-- Event - {event} true - {title} title of event - {shorttext} shorttext of event - {starttime} start of event in hh:mm - {stoptime} end of event in hh:mm - {date} date of event in dd.mm.yy - {weekday} weekday of event, 3 letter abrivation - {channelnumber} number of channel - {channelname} name of channel - {channelid} id of channel - {channellogoexisis} true if channel logo exists - {hastimer} true if event has a timer - --> - <area condition="{event}" layer="6"> - <drawimage condition="{current}" imagetype="icon" path="ico_info_active" x="{areaheight}*0.05" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}" imagetype="icon" path="ico_info_inactive" x="{areaheight}*0.05" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="{channellogoexisis}" imagetype="channellogo" path="{channelid}" x="{areaheight}*0.8" valign="center" width="{areaheight}" height="{areaheight}" /> - <drawtext x="{areaheight}*2.2" y="2" font="{light}" fontsize="30%" color="{clrWhite}" text="{weekday} {date} {starttime} - {stoptime} {channelname}" /> - <drawtext x="{areaheight}*2.2" y="30%" width="{areawidth} - 3*{areaheight}" font="{regular}" fontsize="45%" color="{clrWhite}" text="{title}" /> - <drawtext x="{areaheight}*2.2" y="69%" width="{areawidth} - 3*{areaheight}" font="{light}" fontsize="30%" color="{clrWhite}" text="{shorttext}" /> - <drawimage condition="{current}++not{hastimer}" imagetype="icon" path="ico_record_active" x="{areawidth} - {areaheight}*0.6" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}++not{hastimer}" imagetype="icon" path="ico_record_inactive" x="{areawidth} - {areaheight}*0.6" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="{hastimer}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*0.6" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - </area> - <!-- Recording - {recording} true - {recname} title of recording - {recstarttime} start of recording in hh:mm - {recdate} date of recording in dd.mm.yy - {recduration} duration of recording in min - {channelnumber} number of channel - {channelname} name of channel - {channelid} id of channel - {channellogoexisis} true if channel logo exists - --> - <area condition="{recording}" layer="6"> - <drawtext x="1%" y="0" font="{light}" width="98%" fontsize="50%" color="{clrWhite}" text="{recname}" /> - <drawtext x="55%" y="0" font="{light}" width="98%" fontsize="35%" color="{clrWhite}" text="{recdate} {recstarttime} - {recduration} min, {channelname}" /> - </area> - <!-- Searchtimer - {searchtimer} true - {timeractive} true if searchtimer is active - {searchstring} searchtimer search string - {activetimers} number of active timers caused by this searchtimer - {recordingsdone} number of recordings done by this searchtimer - {searchactive} true if search icon is active - {editactive} true if edit icon is active - {deleteactive} true if delete icon is active - --> - <area condition="{searchtimer}" layer="6"> - <drawimage condition="{current}++{searchactive}" imagetype="icon" path="ico_search_active" x="{areaheight}*0.05" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}||not{searchactive}" imagetype="icon" path="ico_search_inactive" x="{areaheight}*0.05" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="{current}++{editactive}" imagetype="icon" path="ico_edit_active" x="{areaheight}*0.6" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}||not{editactive}" imagetype="icon" path="ico_edit_inactive" x="{areaheight}*0.6" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="{current}++{deleteactive}" imagetype="icon" path="ico_delete_active" x="{areaheight}*1.15" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}||not{deleteactive}" imagetype="icon" path="ico_delete_inactive" x="{areaheight}*1.15" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawtext x="{areaheight}*1.8" width="{areawidth} - {areaheight}*2" y="5%" font="{regular}" fontsize="45%" color="{clrWhite}" text="{searchstring}" /> - <drawtext condition="{timeractive}" align="right" y="5%" font="{regular}" fontsize="35%" color="{clrWhite}" text="active " /> - <drawtext x="{areaheight}*1.8" y="55%" font="{light}" fontsize="35%" color="{clrWhite}" text="Active Timers: {activetimers}, Recordings: {recordingsdone}" /> - </area> - <!-- Timeline Header - {timelineheader} true - {date} date of current day in weekdayname dd.mm.yyyy - {timerset} true if timer info is set - {channelname} name of channel of timer - {channelid} channel ID of channel of timer - {channellogoexisis} true if channel logo exists - {channelnumber} number of channel of timer - {channeltransponder} transponder of channel of timer - {timerstart} start of timer in hh:mm - {timerstop} end of timer in hh:mm - {eventtitle} title of according event - {eventshorttext} short text of according event - {eventstart} start time of according event - {eventstop} end time of according event - --> - <area condition="{timelineheader}" layer="5"> - <drawtext align="center" y="1%" font="{regular}" fontsize="35%" color="{clrWhite}" text="Timer for {date}" /> - <drawrectangle x="{areawidth}*0.05" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.0875" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.125" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.1625" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.2" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.2375" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.275" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.3125" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.35" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.3875" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.425" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.4625" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.5" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.5375" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.575" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.6125" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.65" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.6875" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.725" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.7625" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.8" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.8375" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.875" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.9125" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - </area> - <area condition="{timelineheader}" layer="6"> - <drawtext name="text0" x="{areawidth}*0.05 + {areawidth}*0.0375/2 - {width(text0)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrWhite}" text="0"/> - <drawtext name="text1" x="{areawidth}*0.0875 + {areawidth}*0.0375/2 - {width(text1)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrBlack}" text="1"/> - <drawtext name="text2" x="{areawidth}*0.125 + {areawidth}*0.0375/2 - {width(text2)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrWhite}" text="2"/> - <drawtext name="text3" x="{areawidth}*0.1625 + {areawidth}*0.0375/2 - {width(text3)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrBlack}" text="3"/> - <drawtext name="text4" x="{areawidth}*0.2 + {areawidth}*0.0375/2 - {width(text4)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrWhite}" text="4"/> - <drawtext name="text5" x="{areawidth}*0.2375 + {areawidth}*0.0375/2 - {width(text5)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrBlack}" text="5"/> - <drawtext name="text6" x="{areawidth}*0.275 + {areawidth}*0.0375/2 - {width(text6)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrWhite}" text="6"/> - <drawtext name="text7" x="{areawidth}*0.3125 + {areawidth}*0.0375/2 - {width(text7)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrBlack}" text="7"/> - <drawtext name="text8" x="{areawidth}*0.35 + {areawidth}*0.0375/2 - {width(text8)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrWhite}" text="8"/> - <drawtext name="text9" x="{areawidth}*0.3875 + {areawidth}*0.0375/2 - {width(text9)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrBlack}" text="9"/> - <drawtext name="text10" x="{areawidth}*0.425 + {areawidth}*0.0375/2 - {width(text10)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrWhite}" text="10"/> - <drawtext name="text11" x="{areawidth}*0.4625 + {areawidth}*0.0375/2 - {width(text11)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrBlack}" text="11"/> - <drawtext name="text12" x="{areawidth}*0.5 + {areawidth}*0.0375/2 - {width(text12)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrWhite}" text="12"/> - <drawtext name="text13" x="{areawidth}*0.5375 + {areawidth}*0.0375/2 - {width(text13)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrBlack}" text="13"/> - <drawtext name="text14" x="{areawidth}*0.575 + {areawidth}*0.0375/2 - {width(text14)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrWhite}" text="14"/> - <drawtext name="text15" x="{areawidth}*0.6125 + {areawidth}*0.0375/2 - {width(text15)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrBlack}" text="15"/> - <drawtext name="text16" x="{areawidth}*0.65 + {areawidth}*0.0375/2 - {width(text16)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrWhite}" text="16"/> - <drawtext name="text17" x="{areawidth}*0.6875 + {areawidth}*0.0375/2 - {width(text17)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrBlack}" text="17"/> - <drawtext name="text18" x="{areawidth}*0.725 + {areawidth}*0.0375/2 - {width(text18)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrWhite}" text="18"/> - <drawtext name="text19" x="{areawidth}*0.7625 + {areawidth}*0.0375/2 - {width(text19)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrBlack}" text="19"/> - <drawtext name="text20" x="{areawidth}*0.8 + {areawidth}*0.0375/2 - {width(text20)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrWhite}" text="20"/> - <drawtext name="text21" x="{areawidth}*0.8375 + {areawidth}*0.0375/2 - {width(text21)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrBlack}" text="21"/> - <drawtext name="text22" x="{areawidth}*0.875 + {areawidth}*0.0375/2 - {width(text22)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrWhite}" text="22"/> - <drawtext name="text23" x="{areawidth}*0.9125 + {areawidth}*0.0375/2 - {width(text23)}/2" y="80%" font="{regular}" fontsize="20%" color="{clrBlack}" text="23"/> - </area> - <area condition="{timelineheader}++{timerset}" layer="6"> - <drawimage condition="{channellogoexisis}" imagetype="channellogo" path="{channelid}" x="1%" y="30%" width="{areaheight}*0.5" height="{areaheight}*0.5" /> - <drawtext condition="not{channellogoexisis}" x="1%" width="{areaheight}*0.7" y="40%" font="{light}" fontsize="20%" color="{clrWhite}" text="{channelname}"/> - <drawtext x="{areaheight}*0.8" y="36%" font="{light}" fontsize="25%" color="{clrWhite}" text="{eventstart} - {eventstop} (Rec. {timerstart} - {timerstop}), Transp. {channeltransponder}"/> - <drawtext x="{areaheight}*0.8" y="57%" width="{areawidth}-{areaheight}" font="{light}" fontsize="25%" color="{clrWhite}" text="{eventtitle} - {eventshorttext}"/> - </area> - <!-- Timeline Timer - {timelinetimer} true - {timerstart} start of timer in tenth percent of complete 24h width - {timerwidth} width of timer in tenth percent of complete 24h width - --> - <area condition="{timelinetimer}" layer="5"> - <drawrectangle condition="{current}" x="5%" y="0" width="90%" height="100%" color="{clrBlueMenu}"/> - <drawrectangle condition="not{current}" x="5%" y="0" width="90%" height="100%" color="{clrGray}"/> - <drawrectangle x="5%" y="{areaheight}-1" width="90%" height="1" color="{clrBlack}"/> - </area> - <area condition="{timelinetimer}" layer="6"> - <drawrectangle x="{areawidth}*0.05 + {timerstart}*{areawidth}*0.9/1000" y="25%" width="{timerwidth}*{areawidth}*0.9/1000" height="50%" color="{clrBlack}"/> - </area> - <!-- Favorites - {favorite} true - {favdesc} description of favorite - --> - <area condition="{favorite}" layer="6"> - <drawimage condition="{current}" imagetype="icon" path="ico_search_active" x="{areaheight}*0.1" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}" imagetype="icon" path="ico_search_inactive" x="{areaheight}*0.1" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawtext x="{areaheight}" valign="center" font="{light}" width="{areawidth} - {areaheight}" fontsize="80%" color="{clrWhite}" text="{favdesc}" /> - </area> - </grid> -</displayplugin> diff --git a/skins/blackhole/xmlfiles/plug-tvguideng-root.xml b/skins/blackhole/xmlfiles/plug-tvguideng-root.xml deleted file mode 100644 index fe69af9..0000000 --- a/skins/blackhole/xmlfiles/plug-tvguideng-root.xml +++ /dev/null @@ -1,529 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE displayplugin SYSTEM "../../../dtd/displayplugin.dtd"> - -<displayplugin x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="0.625*{areawidth}" scaletvy="1%" scaletvwidth="18%" scaletvheight="18%"> - - <viewelement name="background_hor"> - <area x="0" y="0" width="100%" height="20%" layer="1"> - <drawimage imagetype="skinpart" path="tvguideheader" x="0" y="0" width="100%" height="100%"/> - </area> - <area x="5%" y="20%" width="8%" height="5%" layer="1"> - <drawimage imagetype="skinpart" path="tvguide_timelinegrid_dark_hor" x="0" y="0" width="100%" height="100%"/> - </area> - <area x="74%" y="0" width="26%" height="46%" layer="2"> - <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="3"> - <drawimage imagetype="skinpart" path="watchback" x="0" y="0" width="100%" height="100%"/> - </area> - </viewelement> - - <viewelement name="background_ver"> - <area x="0" y="0" width="100%" height="20%" layer="1"> - <drawimage imagetype="skinpart" path="tvguideheader" x="0" y="0" width="100%" height="100%"/> - </area> - <area x="0" y="20%" width="8%" height="15%" layer="2"> - <drawimage imagetype="skinpart" path="tvguide_timelinegrid_dark_ver" x="0" y="0" width="100%" height="100%"/> - </area> - <area x="74%" y="0" width="26%" height="46%" layer="2"> - <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="3"> - <drawimage imagetype="skinpart" path="watchback" x="0" y="0" width="100%" height="100%"/> - </area> - </viewelement> - - <!-- Tokens available in Header - {isdummy} true if active element is a dummy element - {title} title of event of active grid - {shorttext} shorttext of event of active grid - {description} detailed description of event of active grid - {start} event start time in hh::mm - {stop} event stop time - {day} day of event of active grid - {date} date of event of active grid 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 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 - --> - <viewelement name="header_hor"> - <areascroll condition="not{isdummy}++not{hasposter}" orientation="vertical" mode="forthandback" delay="1000" scrollspeed="medium" x="1%" y="1%" width="58%" height="18%" layer="2"> - <drawtext x="0" y="0" font="{semibold}" width="100%" fontsize="20%" color="{clrWhite}" text="{day} {daynumeric}.{month} {start} - {stop}" /> - <drawtext x="0" y="20%" font="{semibold}" width="100%" fontsize="25%" color="{clrWhite}" text="{title}" /> - <drawtextbox name="shorttext" x="0" y="45%" width="100%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{shorttext}" /> - <drawtextbox x="0" y="{posy(shorttext)} + {height(shorttext)}" width="100%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{description}" /> - </areascroll> - <area condition="not{isdummy}++{hasposter}" x="1%" y="1%" width="{areaheight}*0.18*{posterwidth}/{posterheight}" height="18%" layer="2"> - <drawimage imagetype="image" path="{posterpath}" x="0" y="0" width="100%" height="100%"/> - </area> - <areascroll condition="not{isdummy}++{hasposter}" orientation="vertical" mode="forthandback" delay="1000" scrollspeed="medium" x="12%" y="1%" width="46%" height="18%" layer="2"> - <drawtext x="0" y="0" font="{semibold}" width="100%" fontsize="20%" color="{clrWhite}" text="{day} {daynumeric}.{month} {start} - {stop}" /> - <drawtext x="0" y="20%" font="{semibold}" width="100%" fontsize="25%" color="{clrWhite}" text="{title}" /> - <drawtextbox name="shorttext" x="0" y="45%" width="100%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{shorttext}" /> - <drawtextbox x="0" y="{posy(shorttext)} + {height(shorttext)}" width="100%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{description}" /> - </areascroll> - <area condition="{isdummy}" x="1%" y="1%" width="58%" height="18%" layer="2"> - <drawtext x="0" y="20%" font="{semibold}" width="100%" fontsize="35%" color="{clrWhite}" text="{title}" /> - </area> - </viewelement> - - <viewelement name="header_ver"> - <areascroll condition="not{isdummy}++not{hasposter}" orientation="vertical" mode="forthandback" delay="1000" scrollspeed="medium" x="1%" y="1%" width="58%" height="18%" layer="2"> - <drawtext x="0" y="0" font="{semibold}" width="100%" fontsize="20%" color="{clrWhite}" text="{day} {daynumeric}.{month} {start} - {stop}" /> - <drawtext x="0" y="20%" font="{semibold}" width="100%" fontsize="25%" color="{clrWhite}" text="{title}" /> - <drawtextbox name="shorttext" x="0" y="45%" width="100%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{shorttext}" /> - <drawtextbox x="0" y="{posy(shorttext)} + {height(shorttext)}" width="100%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{description}" /> - </areascroll> - <area condition="not{isdummy}++{hasposter}" x="1%" y="1%" width="{areaheight}*0.18*{posterwidth}/{posterheight}" height="18%" layer="2"> - <drawimage imagetype="image" path="{posterpath}" x="0" y="0" width="100%" height="100%"/> - </area> - <areascroll condition="not{isdummy}++{hasposter}" orientation="vertical" mode="forthandback" delay="1000" scrollspeed="medium" x="12%" y="1%" width="46%" height="18%" layer="2"> - <drawtext x="0" y="0" font="{semibold}" width="100%" fontsize="20%" color="{clrWhite}" text="{day} {daynumeric}.{month} {start} - {stop}" /> - <drawtext x="0" y="20%" font="{semibold}" width="100%" fontsize="25%" color="{clrWhite}" text="{title}" /> - <drawtextbox name="shorttext" x="0" y="45%" width="100%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{shorttext}" /> - <drawtextbox x="0" y="{posy(shorttext)} + {height(shorttext)}" width="100%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{description}" /> - </areascroll> - <area condition="{isdummy}" x="1%" y="1%" width="58%" height="18%" layer="2"> - <drawtext x="0" y="20%" font="{semibold}" width="100%" fontsize="35%" color="{clrWhite}" text="{title}" /> - </area> - </viewelement> - - <!-- Available Variables Footer: - {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 - --> - <viewelement name="footer_hor"> - <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="60%"/> - </area> - <area condition="{red1}" x="0" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green1}" x="0" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow1}" x="0" y="90%" width="25%" height="10%" layer="4"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue1}" x="0" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{red2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{red3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{red4}" x="75%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green4}" x="60%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow4}" x="75%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue4}" x="75%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" color="{clrWhite}" text="{blue}" /> - </area> - </viewelement> - - <viewelement name="footer_ver"> - <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="60%"/> - </area> - <area condition="{red1}" x="0" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green1}" x="0" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow1}" x="0" y="90%" width="25%" height="10%" layer="4"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue1}" x="0" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{red2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue2}" x="25%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{red3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue3}" x="50%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{red4}" x="75%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{green4}" x="60%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{yellow4}" x="75%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" 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="60%"/> - </area> - <area condition="{blue4}" x="75%" y="90%" width="25%" height="10%" layer="3"> - <drawtext align="center" valign="center" font="{regular}" fontsize="50%" color="{clrWhite}" text="{blue}" /> - </area> - </viewelement> - <!-- Available Variables time: - {time} timestring in hh:mm - {sec} current seconds - {min} current minutes - {hour} current hours - {hmins} current "hourminutes" to display an hour hand - --> - <viewelement name="time_hor"> - <area x="81%" y="0" width="7%" height="5%" layer="3"> - <drawtext x="0" valign="center" font="{digital}" fontsize="90%" color="{clrWhite}" text="{time}" /> - </area> - <area x="{areawidth}*0.865" y="{areawidth}*0.005" width="13%" height="{areawidth}*0.13" layer="4"> - <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="4"> - <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="5"> - <drawimage imagetype="skinpart" path="watchhands/h_{hmins}" x="0" y="0" width="100%" height="100%"/> - </area> - </viewelement> - - <viewelement name="time_ver"> - <area x="81%" y="0" width="7%" height="5%" layer="3"> - <drawtext x="0" valign="center" font="{digital}" fontsize="90%" color="{clrWhite}" text="{time}" /> - </area> - <area x="{areawidth}*0.865" y="{areawidth}*0.005" width="13%" height="{areawidth}*0.13" layer="4"> - <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="4"> - <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="5"> - <drawimage imagetype="skinpart" path="watchhands/h_{hmins}" x="0" y="0" width="100%" height="100%"/> - </area> - </viewelement> - <!-- Tokens available in datetimeline - {weekday} weekday of current display - {date} date of current display - --> - <viewelement name="datetimeline_hor"> - <area x="0" y="20%" width="13%" height="5%" layer="2"> - <drawtext align="center" valign="center" font="{light}" fontsize="70%" color="{clrWhite}" text="{weekday} {date}" /> - </area> - </viewelement> - - <viewelement name="datetimeline_ver"> - <area x="0" y="20%" width="8%" height="15%" layer="2"> - <drawtext align="center" y="10%" font="{light}" fontsize="40%" color="{clrWhite}" text="{weekday}" /> - <drawtext align="center" y="50%" font="{light}" fontsize="40%" color="{clrWhite}" text="{date}" /> - </area> - </viewelement> - - <!-- Tokens available in timeindicator - {percenttotal} position of current time indicator in tenth of a percent of complete time shown - --> - <viewelement name="timeindicator_hor"> - <area x="13%" y="20%" width="87%" height="70%" layer="3"> - <drawrectangle x="{percenttotal}*{areawidth}/1000" y="0" width="1" height="100%" color="{clrRed}" /> - </area> - </viewelement> - - <viewelement name="timeindicator_ver"> - <area x="0" y="35%" width="100%" height="55%" layer="3"> - <drawrectangle x="0" y="{percenttotal}*{areaheight}/1000" width="100%" height="1" color="{clrRed}" /> - </area> - </viewelement> - - <!-- Tokens available in timeline - {timestring} time of grid in hh:mm - --> - <grid name="timeline_hor" x="13%" y="20%" width="87%" height="5%"> - <area layer="1"> - <drawimage condition="{fullhour}" imagetype="skinpart" path="tvguide_timelinegrid_bright_hor" x="0" y="0" width="100%" height="100%"/> - <drawimage condition="not{fullhour}" imagetype="skinpart" path="tvguide_timelinegrid_dark_hor" x="0" y="0" width="100%" height="100%"/> - </area> - <area layer="2"> - <drawtext condition="{fullhour}" x="5%" valign="center" font="{light}" fontsize="80%" color="{clrBlack}" text="{timestring}" /> - <drawtext condition="not{fullhour}" x="5%" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{timestring}" /> - </area> - </grid> - - <grid name="timeline_ver" x="0" y="35%" width="8%" height="55%"> - <area layer="1"> - <drawimage condition="{fullhour}" imagetype="skinpart" path="tvguide_timelinegrid_bright_ver" x="0" y="0" width="100%" height="100%"/> - <drawimage condition="not{fullhour}" imagetype="skinpart" path="tvguide_timelinegrid_dark_ver" x="0" y="0" width="100%" height="100%"/> - </area> - <area layer="2"> - <drawtext condition="{fullhour}" align="center" y="5%" font="{light}" fontsize="60%" color="{clrBlack}" text="{timestring}" /> - <drawtext condition="not{fullhour}" align="center" y="5%" font="{light}" fontsize="60%" color="{clrWhite}" text="{timestring}" /> - </area> - </grid> - - <!-- Tokens available in channels - {name} name of channel - {number} number of channel - {channelid} id of channel to display channel logo - {channellogoexists} true if channel logo exists - --> - <grid name="channels_hor" x="5%" y="25%" width="8%" height="65%"> - <area layer="1"> - <drawimage imagetype="skinpart" path="tvguide_grid_active_hor" x="0" y="0" width="100%" height="100%"/> - </area> - <area layer="2"> - <drawtext x="1%" valign="center" font="{light}" fontsize="45%" color="{clrWhite}" text="{number}" /> - <drawimage condition="{channellogoexists}" imagetype="channellogo" path="{channelid}" x="19%" valign="center" width="80%" height="80%" /> - <drawtext condition="not{channellogoexists}" x="19%" valign="center" width="94%" font="{light}" fontsize="45%" color="{clrWhite}" text="{name}" /> - </area> - </grid> - - <grid name="channels_ver" x="8%" y="25%" width="92%" height="10%"> - <area layer="1"> - <drawimage imagetype="skinpart" path="tvguide_grid_active_ver" x="0" y="0" width="100%" height="100%"/> - </area> - <area layer="2"> - <drawimage condition="{channellogoexists}" imagetype="channellogo" path="{channelid}" align="center" valign="center" width="80%" height="80%" /> - <drawtext condition="not{channellogoexists}" align="center" valign="center" width="98%" font="{light}" fontsize="30%" color="{clrWhite}" text="{name}" /> - </area> - </grid> - - <!-- Tokens available in channelgroups - {color} alternates grid by grid from true to false - {group} name of channel group - --> - <grid name="channelgroups_hor" x="0" y="25%" width="5%" height="65%"> - <area layer="1"> - <drawimage condition="{color}" imagetype="skinpart" path="tvguide_grid_bright_ver" x="0" y="0" width="100%" height="100%"/> - <drawimage condition="not{color}" imagetype="skinpart" path="tvguide_grid_dark_ver" x="0" y="0" width="100%" height="100%"/> - </area> - <area layer="2"> - <drawtextvertical align="center" valign="center" font="{regular}" fontsize="50%" color="{clrWhite}" text="{group}" /> - </area> - </grid> - - <grid name="channelgroups_ver" x="8%" y="20%" width="92%" height="5%"> - <area layer="1"> - <drawimage condition="{color}" imagetype="skinpart" path="tvguide_grid_bright_hor" x="0" y="0" width="100%" height="100%"/> - <drawimage condition="not{color}" imagetype="skinpart" path="tvguide_grid_dark_hor" x="0" y="0" width="100%" height="100%"/> - </area> - <area layer="2"> - <drawtext align="center" valign="center" font="{regular}" fontsize="80%" color="{clrWhite}" text="{group}" /> - </area> - </grid> - - <!-- Tokens available in schedules - {color} alternates grid by grid from true to false - {dummy} true if grid is a dummy grid - {timer} true if a timer is set for the according event - {switchtimer} true if a switchtimer is set for the according event - {title} title of grid - {shorttext} shorttext of grid - {start} start time in hh:mm - {stop} stop time in hh:dd - --> - <grid name="schedules_hor" x="13%" y="25%" width="87%" height="65%"> - <area layer="1"> - <drawimage condition="{color}++not{current}" imagetype="skinpart" path="tvguide_grid_bright_hor" x="0" y="0" width="100%" height="100%"/> - <drawimage condition="not{color}++not{current}" imagetype="skinpart" path="tvguide_grid_dark_hor" x="0" y="0" width="100%" height="100%"/> - <drawimage condition="{current}" imagetype="skinpart" path="tvguide_grid_active_hor" x="0" y="0" width="100%" height="100%"/> - </area> - <area layer="2"> - <drawtext condition="not{dummy}" x="1%" y="2%" width="98%" font="{light}" fontsize="45%" color="{clrWhite}" text="{start} - {stop}" /> - <drawtext condition="not{dummy}" x="1%" y="50%" width="98%" font="{regular}" fontsize="50%" color="{clrWhite}" text="{title}" /> - <drawtext condition="{dummy}" x="1%" valign="center" width="98%" font="{regular}" fontsize="50%" color="{clrWhite}" text="{title}" /> - <drawimage condition="{timer}" imagetype="icon" path="ico_rec_on" x="{areawidth} - {areaheight}*0.42" y="58%" width="{areaheight}*0.4" height="{areaheight}*0.4"/> - <drawimage condition="{switchtimer}++not{timer}" imagetype="icon" path="ico_switchtimer" x="{areawidth} - {areaheight}*0.42" y="58%" width="{areaheight}*0.4" height="{areaheight}*0.4"/> - <drawimage condition="{switchtimer}++{timer}" imagetype="icon" path="ico_switchtimer" x="{areawidth} - {areaheight}*0.84" y="58%" width="{areaheight}*0.4" height="{areaheight}*0.4"/> - </area> - </grid> - - <grid name="schedules_ver" x="8%" y="35%" width="92%" height="55%"> - <area layer="1"> - <drawimage condition="{color}++not{current}" imagetype="skinpart" path="tvguide_grid_bright_ver" x="0" y="0" width="100%" height="100%"/> - <drawimage condition="not{color}++not{current}" imagetype="skinpart" path="tvguide_grid_dark_ver" x="0" y="0" width="100%" height="100%"/> - <drawimage condition="{current}" imagetype="skinpart" path="tvguide_grid_active_ver" x="0" y="0" width="100%" height="100%"/> - </area> - <area layer="2"> - <drawtext condition="not{dummy}" x="2%" y="0" width="96%" font="{light}" fontsize="{areawidth}*0.16" color="{clrWhite}" text="{start} - {stop}" /> - <drawtextbox name="title" condition="not{dummy}" x="2%" y="{areawidth}*0.16" width="96%" font="{regular}" fontsize="{areawidth}*0.15" color="{clrWhite}" text="{title}" /> - <drawtextbox condition="not{dummy}" x="2%" y="{posy(title)} + {height(title)} - {areawidth}*0.1" width="96%" height="{areaheight}*1.1 - {posy(title)} - {height(title)}" font="{light}" fontsize="{areawidth}*0.12" color="{clrWhite}" text="{shorttext}" /> - <drawtextbox condition="{dummy}" x="2%" y="5%" width="96%" font="{regular}" fontsize="{areawidth}*0.2" color="{clrWhite}" text="{title}" /> - <drawimage condition="{timer}" imagetype="icon" path="ico_rec_on" x="82%" y="{areaheight}-{areawidth}*0.18" width="15%" height="{areawidth}*0.15"/> - <drawimage condition="{switchtimer}++not{timer}" imagetype="icon" path="ico_switchtimer" x="82%" y="{areaheight}-{areawidth}*0.18" width="15%" height="{areawidth}*0.15"/> - <drawimage condition="{switchtimer}++{timer}" imagetype="icon" path="ico_switchtimer" x="65%" y="{areaheight}-{areawidth}*0.18" width="15%" height="{areawidth}*0.15"/> - </area> - </grid> - - <!-- Tokens available in channeljump - {channel} current user input for channel jump - --> - <viewelement name="channeljump"> - <area x="40%" y="40%" width="20%" height="20%" layer="3"> - <fill color="{clrBlack}" /> - </area> - <area x="40%" y="40%" width="20%" height="20%" layer="4"> - <drawtext align="center" y="10%" font="{bold}" fontsize="30%" color="{clrWhite}" text="Channel" /> - <drawtext align="center" y="45%" font="{light}" fontsize="50%" color="{clrWhite}" text="{channel}" /> - </area> - </viewelement> - -</displayplugin> diff --git a/skins/blackhole/xmlfiles/plug-weatherforecast-weatherforecast.xml b/skins/blackhole/xmlfiles/plug-weatherforecast-weatherforecast.xml deleted file mode 100644 index 4cccbaf..0000000 --- a/skins/blackhole/xmlfiles/plug-weatherforecast-weatherforecast.xml +++ /dev/null @@ -1,129 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE menuplugin SYSTEM "../../../dtd/displaymenuplugin.dtd"> - -<menuplugin x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="55%" scaletvy="10%" scaletvwidth="40%" scaletvheight="40%" > - - <menuitems x="1%" y="10%" orientation="vertical" width="98%" height="80%" align="center" numlistelements="8"> - <!-- Available Variables: - {current} - {menuitemtext} "Current Weather", "Next 48 hours" or "Next 7 days" - {iscurrent} true if item is "Current Weather" - {ishourly} true if item is "Next 48 hours" - {isdaily} true if item is "Next 7 days" - {city} configured city to display weather for - {latitude} latitude - {longitude} longitude - - If {iscurrent} is true, the following tokens are set: - {timestamp} timestamp in hh:mm dd.mm of current forecast - {temperature} current temperature in °C - {apparenttemperature} apparent (felt) temperature in °C - {summary} short summary of current weather - {icon} path to use in <drawimage> to display appropriate weather icon - {precipitationintensity} precipitation intensity in l/qm - {precipitationprobability} precipitation probability in % - {precipitationtype} precipitation type (snow, ...) - {humidity} humidity in % - {windspeed} wind speed in km/h - {windbearing} wind bearing in degrees - {windbearingstring} wind bearing as human readable string (e.g NE, NNE, ...) - {visibility} visibility in km - {cloudcover} cloud cover in % - {pressure} pressure in HPa - {ozone} Ozone in DU (Dobson Unit) - - If {ishourly} is true, the following tokens are set: - {summary} short summary of weather - {icon} path to use in <drawimage> to display appropriate weather icon - - {hourly[]} array with up to 48 hourly forecasts - {hourly[num]} number of forecast, starting at 1 - {hourly[timestamp]} timestamp in hh:mm - {hourly[temperature]} temperature in °C - {hourly[apparenttemperature]} apparent (felt) temperature in °C - {hourly[summary]} short summary - {hourly[icon]} path to use in <drawimage> to display appropriate weather icon - {hourly[precipitationintensity]} precipitation intensity in l/qm - {hourly[precipitationprobability]} precipitation probability in % - {hourly[precipitationtype]} precipitation type (snow, ...) - {hourly[humidity]} humidity in % - {hourly[windspeed]} wind speed in km/h - {hourly[windbearing]} wind bearing in degrees - {hourly[windbearingstring]} wind bearing as human readable string (e.g NE, NNE, ...) - {hourly[visibility]} visibility in km - {hourly[cloudcover]} cloud cover in % - {hourly[pressure]} pressure in HPa - {hourly[ozone]} Ozone in DU (Dobson Unit) - - If {isdaily} is true, the following tokens are set: - {summary} short summary of weather - {icon} path to use in <drawimage> to display appropriate weather icon - - {daily[day]} day of forecast in dd.mm - {daily[dayname]} three letter abbrivated day name - {daily[temperaturemin]} minimum temperature at this day in °C - {daily[temperaturemintime]} time of minimum temperature - {daily[temperaturemax]} maximum temperature at this day in °C - {daily[temperaturemaxtime]} time of maximum temperature - {daily[summary]} short summary - {daily[icon]} path to use in <drawimage> to display appropriate weather icon - {daily[precipitationintensity]} precipitation intensity in l/qm - {daily[precipitationprobability]} precipitation probability in % - {daily[precipitationtype]} precipitation type (snow, ...) - {daily[humidity]} humidity in % - {daily[windspeed]} wind speed in km/h - {daily[windbearing]} wind bearing in degrees - {daily[windbearingstring]} wind bearing as human readable string (e.g NE, NNE, ...) - {daily[visibility]} visibility in km - {daily[cloudcover]} cloud cover in % - {daily[pressure]} pressure in HPa - {daily[ozone]} Ozone in DU (Dobson Unit) - --> - <listelement> - <!-- Background --> - <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 x="10" valign="center" font="{regular}" fontsize="80%" color="{clrWhite}" text="{menuitemtext}" /> - </area> - </listelement> - <!-- additional element which is drawn for current element --> - <!-- All Tokens from listelement are available --> - <currentelement delay="100" fadetime="0"> - <area x="0" y="52%" width="100%" height="48%" layer="2"> - <drawimage imagetype="skinpart" path="displaymenucurrentback" x="0" y="0" width="100%" height="100%"/> - </area> - <area condition="{iscurrent}" x="1%" y="53%" width="98%" height="46%" layer="3"> - <drawtext x="0" y="0" font="{semibold}" fontsize="20%" color="{clrWhite}" text="{city} {timestamp}" /> - <drawtext x="0" y="20%" font="{semibold}" fontsize="15%" color="{clrWhite}" text="{summary}" /> - <drawimage name="weathericon" imagetype="icon" path="{icon}" align="right" y="0" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawtext name="temperature" x="{areawidth} - {width(weathericon)} - {width(temperature)} - 15" y="0" font="{regular}" fontsize="40%" color="{clrWhite}" text="{temperature}°C" /> - <drawtext x="0" y="40%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{tr(apparenttemp)}: {apparenttemperature} °C" /> - <drawtext x="0" y="55%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{tr(precipitationprobability)}: {precipitationprobability} %, {tr(precipitationintensity)}: {precipitationintensity} l/qm" /> - <drawtext x="0" y="70%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{tr(humidity)}: {humidity} %, {tr(cloudcover)}: {cloudcover} %" /> - <drawtext x="0" y="85%" font="{regular}" fontsize="15%" color="{clrWhite}" text="{tr(windspeed)}: {windspeed} km/h, {tr(windbearing)}: {windbearingstring} ({windbearing} °)" /> - </area> - <area condition="{ishourly}" x="1%" y="53%" width="98%" height="46%" layer="3"> - <loop name="hourly" x="0" y="0" orientation="horizontal" columnwidth="{areawidth}/8" rowheight="{areaheight}" overflow="cut"> - <drawtext align="center" y="0" font="{semibold}" fontsize="15%" color="{clrWhite}" text="{hourly[timestamp]}" /> - <drawimage imagetype="icon" path="{hourly[icon]}" align="center" y="15%" width="{columnwidth}*0.8" height="{columnwidth}*0.8"/> - <drawtext align="center" y="{columnwidth}*0.8 + {rowheight}*0.15" font="{regular}" fontsize="15%" color="{clrWhite}" text="{hourly[temperature]}°C" /> - <drawtextbox x="0" y="{columnwidth}*0.8 + {rowheight}*0.3" width="{columnwidth}" maxlines="2" align="center" font="{regular}" fontsize="10%" color="{clrWhite}" text="{hourly[summary]}" /> - <drawimage imagetype="skinpart" path="line_vertical" x="{columnwidth}" y="0" width="2" height="{rowheight}"/> - </loop> - </area> - <area condition="{isdaily}" x="1%" y="53%" width="98%" height="46%" layer="3"> - <loop name="daily" x="0" y="0" orientation="horizontal" columnwidth="{areawidth}/7" rowheight="{areaheight}" overflow="cut"> - <drawtext align="center" y="0" font="{semibold}" fontsize="14%" color="{clrWhite}" text="{daily[dayname]}" /> - <drawtext align="center" y="10%" font="{semibold}" fontsize="14%" color="{clrWhite}" text="{daily[day]}" /> - <drawimage imagetype="icon" path="{daily[icon]}" align="center" y="25%" width="{columnwidth}*0.6" height="{columnwidth}*0.6"/> - <drawtext align="center" y="{rowheight}*0.65" font="{regular}" fontsize="13%" color="{clrWhite}" text="{daily[temperaturemin]}°C - {daily[temperaturemax]}°C" /> - <drawtextbox x="{columnwidth}*0.02" y="{rowheight}*0.80" width="{columnwidth}*0.96" maxlines="2" align="center" font="{regular}" fontsize="8%" color="{clrWhite}" text="{daily[summary]}" /> - <drawimage imagetype="skinpart" path="line_vertical" x="{columnwidth}" y="0" width="2" height="{rowheight}"/> - </loop> - </area> - </currentelement> - </menuitems> -</menuplugin>
\ No newline at end of file diff --git a/skins/blackhole/xmlfiles/plug-weatherforecast-weatherforecastdetailcurrent.xml b/skins/blackhole/xmlfiles/plug-weatherforecast-weatherforecastdetailcurrent.xml deleted file mode 100644 index 8b73e9c..0000000 --- a/skins/blackhole/xmlfiles/plug-weatherforecast-weatherforecastdetailcurrent.xml +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE menuplugin SYSTEM "../../../dtd/displaymenuplugin.dtd"> - -<menuplugin 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 and tab: - {menuheader} "Current Weather" - {city} configured city to display weather for - {latitude} latitude - {longitude} longitude - {timestamp} timestamp in hh:mm dd.mm of current forecast - {temperature} current temperature in °C - {apparenttemperature} apparent (felt) temperature in °C - {temperaturemin} minimum temperature the day in °C - {temperaturemax} maximum temperature the day in °C - {summary} short summary of current weather - {icon} path to use in <drawimage> to display appropriate weather icon - {precipitationintensity} precipitation intensity in l/qm - {precipitationprobability} precipitation probability in % - {precipitationtype} precipitation type (snow, ...) - {humidity} humidity in % - {windspeed} wind speed in km/h - {windbearing} wind bearing in degrees - {windbearingstring} wind bearing as human readable string (e.g NE, NNE, ...) - {visibility} visibility in km - {cloudcover} cloud cover in % - {pressure} pressure in HPa - {ozone} Ozone in DU (Dobson Unit) - --> - <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 x="55%" y="52%" width="43%" height="38%" layer="3"> - <drawimage imagetype="icon" path="{icon}" x="5%" y="5%" width="{areaheight}/2" height="{areaheight}/2"/> - </area> - <area x="55%" y="52%" width="42%" height="37%" layer="4"> - <drawtext align="right" valign="bottom" font="{regular}" fontsize="50%" color="{clrWhite}" text="{temperature}°C" /> - </area> - </detailheader> - - <tab name="current" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> - <drawtext x="0" y="0" font="{semibold}" fontsize="8%" color="{clrWhite}" text="{tr(conditions)} {tr(for)} {city}" /> - <drawtext x="0" y="8%" font="{semibold}" fontsize="8%" color="{clrWhite}" text="({latitude}, {longitude})" /> - <drawtext x="0" y="16%" font="{regular}" fontsize="8%" color="{clrWhite}" text="{summary}" /> - - <drawtext x="0" y="28%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(temp)}: {temperature}°C" /> - <drawtext x="0" y="34%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(apparenttemp)}: {apparenttemperature}°C" /> - <drawtext x="0" y="40%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(todaymin)}: {mintemperature}°C" /> - <drawtext x="0" y="46%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(todaymax)}: {maxtemperature}°C" /> - <drawtext x="0" y="52%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(precipitationprobability)}: {precipitationprobability} %" /> - <drawtext x="0" y="58%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(precipitationintensity)}: {precipitationintensity} l/qm" /> - <drawtext x="0" y="64%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(humidity)}: {humidity} %" /> - <drawtext x="0" y="70%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(windspeed)}: {windspeed} km/h aus {windbearingstring}" /> - <drawtext x="0" y="76%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(visibility)}: {visibility} km" /> - <drawtext x="0" y="82%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(cloudcover)}: {cloudcover} %" /> - <drawtext x="0" y="88%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(pressure)}: {pressure} HPa" /> - <drawtext x="0" y="94%" font="{regular}" fontsize="6%" color="{clrWhite}" text="{tr(ozone)}: {ozone} DU" /> - </tab> -</menuplugin> diff --git a/skins/blackhole/xmlfiles/plug-weatherforecast-weatherforecastdetaildaily.xml b/skins/blackhole/xmlfiles/plug-weatherforecast-weatherforecastdetaildaily.xml deleted file mode 100644 index e6b3d8c..0000000 --- a/skins/blackhole/xmlfiles/plug-weatherforecast-weatherforecastdetaildaily.xml +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE menuplugin SYSTEM "../../../dtd/displaymenuplugin.dtd"> - -<menuplugin 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 and tab: - {summary} short summary of weather - {icon} path to use in <drawimage> to display appropriate weather icon - {city} configured city to display weather for - {latitude} latitude - {longitude} longitude - - {daily[day]} day of forecast in dd.mm - {daily[dayname]} three letter abbrivated day name - {daily[temperaturemin]} minimum temperature at this day in °C - {daily[temperaturemintime]} time of minimum temperature - {daily[temperaturemax]} maximum temperature at this day in °C - {daily[temperaturemaxtime]} time of maximum temperature - {daily[summary]} short summary - {daily[icon]} path to use in <drawimage> to display appropriate weather icon - {daily[precipitationintensity]} precipitation intensity in l/qm - {daily[precipitationprobability]} precipitation probability in % - {daily[precipitationtype]} precipitation type (snow, ...) - {daily[humidity]} humidity in % - {daily[windspeed]} wind speed in km/h - {daily[windbearing]} wind bearing in degrees - {daily[windbearingstring]} wind bearing as human readable string (e.g NE, NNE, ...) - {daily[visibility]} visibility in km - {daily[cloudcover]} cloud cover in % - {daily[pressure]} pressure in HPa - {daily[ozone]} Ozone in DU (Dobson Unit) - --> - - <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 x="55%" y="52%" width="43%" height="38%" layer="3"> - <drawimage imagetype="icon" path="{icon}" align="center" y="10" width="{areaheight}/2" height="{areaheight}/2"/> - </area> - <area x="55%" y="52%" width="43%" height="38%" layer="4"> - <drawtextbox name="summary" x="5" y="55%" width="{areawidth}-10" align="center" height="50%" font="{regular}" fontsize="12%" color="{clrWhite}" text="{summary}" /> - </area> - </detailheader> - - <tab name="current" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> - <loop name="daily" x="0" y="0" orientation="vertical" columnwidth="{areawidth}" rowheight="{areaheight}/4"> - <drawtext x="0" y="{rowheight}*0.15" font="{semibold}" fontsize="{rowheight}/3" color="{clrWhite}" text="{daily[dayname]} {daily[day]}" /> - <drawimage imagetype="icon" path="{daily[icon]}" align="center" y="5" width="{rowheight}*0.5" height="{rowheight}*0.5"/> - <drawtext name="tempmin" x="0.7*{columnwidth} + 0.15*{columnwidth} - {width(tempmin)}/2" font="{light}" y="0" fontsize="{rowheight}*0.25" color="{clrWhite}" text="{tr(min)}. {daily[temperaturemin]}°C" /> - <drawtext name="felt" x="0.7*{columnwidth} + 0.15*{columnwidth} - {width(felt)}/2" font="{light}" y="{rowheight}*0.25" fontsize="{rowheight}*0.25" color="{clrWhite}" text="{tr(max)}. {daily[temperaturemax]}°C" /> - <drawtext x="0" y="{rowheight}*0.54" width="{columnwidth}" font="{regular}" fontsize="{rowheight}*0.14" color="{clrWhite}" text="{daily[summary]}" /> - <drawtext x="0" y="{rowheight}*0.68" width="{columnwidth}" font="{regular}" fontsize="{rowheight}*0.14" color="{clrWhite}" text="{tr(precipitationprobability)} {daily[precipitationprobability]}%, {daily[precipitationintensity]} l/qm, {tr(windspeed)} {daily[windspeed]} km/h {tr(from)} {daily[windbearingstring]}" /> - <drawtext x="0" y="{rowheight}*0.82" width="{columnwidth}" font="{regular}" fontsize="{rowheight}*0.14" color="{clrWhite}" text="{tr(cloudcover)} {daily[cloudcover]}%, {tr(visibility)} {daily[visibility]} km, {tr(pressure)} {daily[pressure]} HPa, {tr(ozone)} {daily[ozone]} DU" /> - <drawimage imagetype="skinpart" path="line_horizontal" x="0" y="{rowheight} - 1" width="{columnwidth}" height="2"/> - </loop> - </tab> -</menuplugin> diff --git a/skins/blackhole/xmlfiles/plug-weatherforecast-weatherforecastdetailhourly.xml b/skins/blackhole/xmlfiles/plug-weatherforecast-weatherforecastdetailhourly.xml deleted file mode 100644 index ac68b82..0000000 --- a/skins/blackhole/xmlfiles/plug-weatherforecast-weatherforecastdetailhourly.xml +++ /dev/null @@ -1,66 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE menuplugin SYSTEM "../../../dtd/displaymenuplugin.dtd"> - -<menuplugin 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 and tab: - {summary} short summary of weather - {icon} path to use in <drawimage> to display appropriate weather icon - {city} configured city to display weather for - {latitude} latitude - {longitude} longitude - - {hourly[]} array with up to 48 hourly forecasts - {hourly[num]} number of forecast, starting at 1 - {hourly[timestamp]} timestamp in hh:mm - {hourly[temperature]} temperature in °C - {hourly[apparenttemperature]} apparent (felt) temperature in °C - {hourly[summary]} short summary - {hourly[icon]} path to use in <drawimage> to display appropriate weather icon - {hourly[precipitationintensity]} precipitation intensity in l/qm - {hourly[precipitationprobability]} precipitation probability in % - {hourly[precipitationtype]} precipitation type (snow, ...) - {hourly[humidity]} humidity in % - {hourly[windspeed]} wind speed in km/h - {hourly[windbearing]} wind bearing in degrees - {hourly[windbearingstring]} wind bearing as human readable string (e.g NE, NNE, ...) - {hourly[visibility]} visibility in km - {hourly[cloudcover]} cloud cover in % - {hourly[pressure]} pressure in HPa - {hourly[ozone]} Ozone in DU (Dobson Unit) - --> - <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 x="55%" y="52%" width="43%" height="38%" layer="3"> - <drawimage imagetype="icon" path="{icon}" align="center" y="10" width="{areaheight}/2" height="{areaheight}/2"/> - </area> - <area x="55%" y="52%" width="43%" height="38%" layer="4"> - <drawtextbox name="summary" x="5" y="55%" width="{areawidth}-10" align="center" height="50%" font="{regular}" fontsize="12%" color="{clrWhite}" text="{summary}" /> - </area> - </detailheader> - - <tab name="current" x="2%" y="11%" width="48%" height="78%" layer="3" scrollheight="{areaheight}/4"> - <loop name="hourly" x="0" y="0" orientation="vertical" columnwidth="{areawidth}" rowheight="{areaheight}/4"> - <drawtext x="0" y="0" font="{semibold}" fontsize="{rowheight}/2.5" color="{clrWhite}" text="{hourly[timestamp]}" /> - <drawimage imagetype="icon" path="{hourly[icon]}" align="center" y="5" width="{rowheight}*0.5" height="{rowheight}*0.5"/> - <drawtext name="temp" x="0.7*{columnwidth} + 0.15*{columnwidth} - {width(temp)}/2" font="{light}" y="0" fontsize="{rowheight}*0.4" color="{clrWhite}" text="{hourly[temperature]}°C" /> - <drawtext name="felt" x="0.7*{columnwidth} + 0.15*{columnwidth} - {width(felt)}/2" font="{light}" y="{rowheight}*0.35" fontsize="{rowheight}*0.15" color="{clrWhite}" text="{tr(felt)} {hourly[apparenttemperature]}°C" /> - <drawtext x="0" y="{rowheight}*0.5" width="{columnwidth}" font="{regular}" fontsize="{rowheight}*0.14" color="{clrWhite}" text="{hourly[summary]}" /> - <drawtext x="0" y="{rowheight}*0.64" width="{columnwidth}" font="{regular}" fontsize="{rowheight}*0.14" color="{clrWhite}" text="{tr(precipitationprobability)} {hourly[precipitationprobability]}%, {hourly[precipitationintensity]} l/qm" /> - <drawtext x="0" y="{rowheight}*0.78" width="{columnwidth}" font="{regular}" fontsize="{rowheight}*0.14" color="{clrWhite}" text="{tr(windspeed)} {hourly[windspeed]} km/h {tr(from)} {hourly[windbearingstring]}" /> - <drawimage imagetype="skinpart" path="line_horizontal" x="0" y="{rowheight} - 1" width="{columnwidth}" height="2"/> - </loop> - </tab> -</menuplugin> diff --git a/skins/metrixhd/xmlfiles/plug-setup-skinpreview.xml b/skins/metrixhd/xmlfiles/plug-setup-skinpreview.xml new file mode 100644 index 0000000..32115e3 --- /dev/null +++ b/skins/metrixhd/xmlfiles/plug-setup-skinpreview.xml @@ -0,0 +1,118 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE menuplugin SYSTEM "../../../dtd/displaymenuplugin.dtd"> + +<menuplugin x="0" y="0" width="100%" height="100%" fadetime="0"> + <background> + <area x="0" y="0" width="100%" height="100%" layer="1"> + <fill color="{clrTransBlack}" /> + </area> + </background> + + <header> + <area x="0" y="0" width="1" height="1" layer="1"> + <fill color="{clrTransparent}" /> + </area> + </header> + + <datetime> + <area x="0" y="0" width="1" height="1" layer="1"> + <fill color="{clrTransparent}" /> + </area> + </datetime> + + <colorbuttons> + <area x="0" y="92%" width="25%" height="8%" layer="2"> + <drawtext condition="{red1}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{red}" /> + <drawrectangle condition="{red1}" x="0" y="0" width="10" height="100%" color="{clrRed}" /> + <drawtext condition="{green1}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{green}" /> + <drawrectangle condition="{green1}" x="0" y="0" width="10" height="100%" color="{clrGreen}" /> + <drawtext condition="{yellow1}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{yellow}" /> + <drawrectangle condition="{yellow1}" x="0" y="0" width="10" height="100%" color="{clrYellow}" /> + <drawtext condition="{blue1}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{blue}" /> + <drawrectangle condition="{blue1}" x="0" y="0" width="10" height="100%" color="{clrBlue}" /> + </area> + <area x="25%" y="92%" width="25%" height="8%" layer="2"> + <drawtext condition="{red2}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{red}" /> + <drawrectangle condition="{red2}" x="0" y="0" width="10" height="100%" color="{clrRed}" /> + <drawtext condition="{green2}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{green}" /> + <drawrectangle condition="{green2}" x="0" y="0" width="10" height="100%" color="{clrGreen}" /> + <drawtext condition="{yellow2}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{yellow}" /> + <drawrectangle condition="{yellow2}" x="0" y="0" width="10" height="100%" color="{clrYellow}" /> + <drawtext condition="{blue2}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{blue}" /> + <drawrectangle condition="{blue2}" x="0" y="0" width="10" height="100%" color="{clrBlue}" /> + </area> + <area x="50%" y="92%" width="25%" height="8%" layer="2"> + <drawtext condition="{red3}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{red}" /> + <drawrectangle condition="{red3}" x="0" y="0" width="10" height="100%" color="{clrRed}" /> + <drawtext condition="{green3}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{green}" /> + <drawrectangle condition="{green3}" x="0" y="0" width="10" height="100%" color="{clrGreen}" /> + <drawtext condition="{yellow3}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{yellow}" /> + <drawrectangle condition="{yellow3}" x="0" y="0" width="10" height="100%" color="{clrYellow}" /> + <drawtext condition="{blue3}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{blue}" /> + <drawrectangle condition="{blue3}" x="0" y="0" width="10" height="100%" color="{clrBlue}" /> + </area> + <area x="75%" y="92%" width="25%" height="8%" layer="2"> + <drawtext condition="{red4}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{red}" /> + <drawrectangle condition="{red4}" x="0" y="0" width="10" height="100%" color="{clrRed}" /> + <drawtext condition="{green4}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{green}" /> + <drawrectangle condition="{green4}" x="0" y="0" width="10" height="100%" color="{clrGreen}" /> + <drawtext condition="{yellow4}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{yellow}" /> + <drawrectangle condition="{yellow4}" x="0" y="0" width="10" height="100%" color="{clrYellow}" /> + <drawtext condition="{blue4}" x="20" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="{blue}" /> + <drawrectangle condition="{blue4}" x="0" y="0" width="10" height="100%" color="{clrBlue}" /> + </area> + </colorbuttons> + + <scrollbar> + <area x="98%" y="20%" width="2%" height="71%" layer="3"> + <fill color="{clrWhite}" /> + <drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" /> + <drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrWhite}" /> + </area> + </scrollbar> + <!-- Available Variables in detailheader and tab: + {menuheader} "Preview: Skin <skinname>" + {skinname} name of skin + {author} skin author + + {fonts[]} array with fonts used by skin + {fonts[name]} name of font + {fonts[installed]} true if font is installed on system + + {plugins[]} array with plugins supported by skin + {plugins[name]} name of plugin + + {screenshots[]} array with screenshots + {screenshots[desc]} description of screenshot + {screenshots[path]} screenshot path + --> + <detailheader> + <area x="0" y="0" width="100%" height="20%" layer="2"> + <fill color="{clrTransBlueLight}" /> + </area> + <area x="0" y="0" width="100%" height="20%" layer="3"> + <drawtext x="20" valign="center" font="{light}" fontsize="40%" color="{clrWhite}" text="{menuheader}" /> + </area> + <area x="50%" y="0" width="50%" height="8%" layer="3"> + <drawtext align="right" valign="center" font="{light}" fontsize="80%" color="{clrWhite}" text="Author: {author} " /> + </area> + </detailheader> + + <tab name="preview" x="2%" y="20%" width="94%" height="71%" layer="2" scrollheight="{areaheight}/4"> + <drawtext name="headerplugs" x="0" y="0" font="{semibold}" fontsize="10%" color="{clrWhite}" text="Supported Plugins:" /> + <loop name="plugins" x="0" y="10%" orientation="vertical" columnwidth="{areawidth}/2" rowheight="{areaheight}*0.08"> + <drawtext x="0" valign="center" font="{light}" fontsize="8%" color="{clrWhite}" text="{plugins[name]}" /> + </loop> + + <drawtext name="headerfonts" x="0" y="{posy(plugins)} + {height(plugins)} + 10" font="{semibold}" fontsize="10%" color="{clrWhite}" text="Used Fonts:" /> + <loop name="fonts" x="0" y="{posy(headerfonts)} + {height(headerfonts)}" orientation="vertical" columnwidth="{areawidth}/2" rowheight="{areaheight}*0.08"> + <drawtext condition="{fonts[installed]}" x="0" valign="center" font="{light}" fontsize="8%" color="{clrWhite}" text="{fonts[name]} (installed)" /> + <drawtext condition="not{fonts[installed]}" x="0" valign="center" font="{light}" fontsize="8%" color="{clrWhite}" text="{fonts[name]} (NOT installed)" /> + </loop> + + <loop name="screenshots" x="0" y="{posy(fonts)} + {height(fonts)}" orientation="vertical" columnwidth="{areawidth}" rowheight="{areawidth}*10/16"> + <drawtext name="desc" align="center" y="0" font="{light}" fontsize="10%" color="{clrWhite}" text="{screenshots[desc]}" /> + <drawimage imagetype="image" path="{screenshots[path]}" align="center" y="{height(desc)}+10" width="{areawidth}*0.95" height="{areawidth} * 0.95 * 9 / 16"/> + </loop> + </tab> +</menuplugin> diff --git a/skins/nopacity/globals.xml b/skins/nopacity/globals.xml deleted file mode 100644 index 0a6e473..0000000 --- a/skins/nopacity/globals.xml +++ /dev/null @@ -1,269 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE globals SYSTEM "../../dtd/globals.dtd"> - -<globals> - <!-- - define all your needed colors here - --> - <colors> - </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> - </variables> - <!-- - translations used in the skin - --> - <translations> - <token name="tr(free)"> - <trans lang="en_EN">free</trans> - <trans lang="de_DE">frei</trans> - </token> - <token name="tr(transponder)"> - <trans lang="en_EN">Transponder</trans> - <trans lang="de_DE">Transponder</trans> - </token> - <token name="tr(now)"> - <trans lang="en_EN">Now</trans> - <trans lang="de_DE">Jetzt</trans> - </token> - <token name="tr(next)"> - <trans lang="en_EN">Next</trans> - <trans lang="de_DE">Nachfolgend</trans> - </token> - <token name="tr(nextschedules)"> - <trans lang="en_EN">Next Schedules</trans> - <trans lang="de_DE">Nachfolgende Sendungen</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> - <token name="tr(apparenttemp)"> - <trans lang="en_EN">Felt Temperature</trans> - <trans lang="de_DE">Gefühlte Temperatur</trans> - </token> - <token name="tr(todaymin)"> - <trans lang="en_EN">minimum today</trans> - <trans lang="de_DE">heutiges Minimum</trans> - </token> - <token name="tr(todaymax)"> - <trans lang="en_EN">maximum today</trans> - <trans lang="de_DE">heutiges Maximum</trans> - </token> - <token name="tr(precipitationprobability)"> - <trans lang="en_EN">Precipitation Prob.</trans> - <trans lang="de_DE">Regenwahrsch.</trans> - </token> - <token name="tr(precipitationintensity)"> - <trans lang="en_EN">Precipitation Intensity</trans> - <trans lang="de_DE">Regenmenge</trans> - </token> - <token name="tr(humidity)"> - <trans lang="en_EN">Humidity</trans> - <trans lang="de_DE">Luftfeuchtigkeit</trans> - </token> - <token name="tr(apparenttemp)"> - <trans lang="en_EN">Felt Temperature</trans> - <trans lang="de_DE">Gefühlte Temperatur</trans> - </token> - <token name="tr(windbearing)"> - <trans lang="en_EN">Wind Bearing</trans> - <trans lang="de_DE">Windrichtung</trans> - </token> - <token name="tr(windspeed)"> - <trans lang="en_EN">Wind Speed</trans> - <trans lang="de_DE">Windgeschwindigkeit</trans> - </token> - <token name="tr(cloudcover)"> - <trans lang="en_EN">Cloud Cover</trans> - <trans lang="de_DE">Bewölkung</trans> - </token> - <token name="tr(pressure)"> - <trans lang="en_EN">Pressure</trans> - <trans lang="de_DE">Luftdruck</trans> - </token> - <token name="tr(ozone)"> - <trans lang="en_EN">Ozone</trans> - <trans lang="de_DE">Ozon</trans> - </token> - <token name="tr(visibility)"> - <trans lang="en_EN">visibility</trans> - <trans lang="de_DE">Sicht</trans> - </token> - <token name="tr(conditions)"> - <trans lang="en_EN">Weather Conditions</trans> - <trans lang="de_DE">Wetterlage</trans> - </token> - <token name="tr(from)"> - <trans lang="en_EN">from</trans> - <trans lang="de_DE">aus</trans> - </token> - <token name="tr(felt)"> - <trans lang="en_EN">felt</trans> - <trans lang="de_DE">gefühlt</trans> - </token> - <token name="tr(min)"> - <trans lang="en_EN">min</trans> - <trans lang="de_DE">min</trans> - </token> - <token name="tr(max)"> - <trans lang="en_EN">max</trans> - <trans lang="de_DE">max</trans> - </token> - <token name="tr(for)"> - <trans lang="en_EN">for</trans> - <trans lang="de_DE">für</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> - </fonts> -</globals> diff --git a/skins/nopacity/setup.xml b/skins/nopacity/setup.xml deleted file mode 100644 index 6482021..0000000 --- a/skins/nopacity/setup.xml +++ /dev/null @@ -1,30 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE setup SYSTEM "../../dtd/setup.dtd"> - -<setup> - <menu> - <parameter type="bool" name="showposter" displaytext="{tr(showpostertext)}">1</parameter> - <parameter type="bool" name="showweather" displaytext="{tr(showweather)}">1</parameter> - <parameter type="int" name="fadeTime" min="0" max="1000" displaytext="{tr(fadeText)}">300</parameter> - <parameter type="int" name="transparency" min="0" max="30" displaytext="{tr(transparency)}">20</parameter> - </menu> - - <translations> - <token name="tr(showpostertext)"> - <trans lang="en_EN">Show Poster when switching channel</trans> - <trans lang="de_DE">Poster beim Umschalten anzeigen</trans> - </token> - <token name="tr(showweather)"> - <trans lang="en_EN">Show Weather in infobar</trans> - <trans lang="de_DE">Wetter in Infobar anzeigen</trans> - </token> - <token name="tr(fadeText)"> - <trans lang="en_EN">Fade time in ms</trans> - <trans lang="de_DE">Einblendzeit in ms</trans> - </token> - <token name="tr(transparency)"> - <trans lang="en_EN">Transpareny channel, replay and volume</trans> - <trans lang="de_DE">Transparenz bei Kanal,Wiedergabe und Lautstärke</trans> - </token> - </translations> -</setup> diff --git a/skins/nopacity/themes/darkred/icons/clear-day.png b/skins/nopacity/themes/darkred/icons/clear-day.png Binary files differdeleted file mode 100644 index 2b06a14..0000000 --- a/skins/nopacity/themes/darkred/icons/clear-day.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/clear-night.png b/skins/nopacity/themes/darkred/icons/clear-night.png Binary files differdeleted file mode 100644 index 9bbe49f..0000000 --- a/skins/nopacity/themes/darkred/icons/clear-night.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/cloudy.png b/skins/nopacity/themes/darkred/icons/cloudy.png Binary files differdeleted file mode 100644 index 9870c7f..0000000 --- a/skins/nopacity/themes/darkred/icons/cloudy.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/fog.png b/skins/nopacity/themes/darkred/icons/fog.png Binary files differdeleted file mode 100644 index 9bc88d2..0000000 --- a/skins/nopacity/themes/darkred/icons/fog.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_ac3.png b/skins/nopacity/themes/darkred/icons/ico_ac3.png Binary files differdeleted file mode 100644 index 5b8614a..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_ac3.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_activetimer.png b/skins/nopacity/themes/darkred/icons/ico_activetimer.png Binary files differdeleted file mode 100644 index af4c33c..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_activetimer.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_arrow_left.png b/skins/nopacity/themes/darkred/icons/ico_arrow_left.png Binary files differdeleted file mode 100644 index 57800c7..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_arrow_left.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_arrow_left_channelsep.png b/skins/nopacity/themes/darkred/icons/ico_arrow_left_channelsep.png Binary files differdeleted file mode 100644 index 2c83c46..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_arrow_left_channelsep.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_arrow_right.png b/skins/nopacity/themes/darkred/icons/ico_arrow_right.png Binary files differdeleted file mode 100644 index ea45f3a..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_arrow_right.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_arrow_right_channelsep.png b/skins/nopacity/themes/darkred/icons/ico_arrow_right_channelsep.png Binary files differdeleted file mode 100644 index 6ae7e00..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_arrow_right_channelsep.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_channelsep.png b/skins/nopacity/themes/darkred/icons/ico_channelsep.png Binary files differdeleted file mode 100644 index bf51238..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_channelsep.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_cutted.png b/skins/nopacity/themes/darkred/icons/ico_cutted.png Binary files differdeleted file mode 100644 index b90c9c1..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_cutted.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_daydelimiter.png b/skins/nopacity/themes/darkred/icons/ico_daydelimiter.png Binary files differdeleted file mode 100644 index 7ae6053..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_daydelimiter.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_delete_active.png b/skins/nopacity/themes/darkred/icons/ico_delete_active.png Binary files differdeleted file mode 100644 index f473717..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_delete_active.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_delete_inactive.png b/skins/nopacity/themes/darkred/icons/ico_delete_inactive.png Binary files differdeleted file mode 100644 index 21b0a88..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_delete_inactive.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_discusage.png b/skins/nopacity/themes/darkred/icons/ico_discusage.png Binary files differdeleted file mode 100644 index de1dfbb..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_discusage.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_dolbyoff.png b/skins/nopacity/themes/darkred/icons/ico_dolbyoff.png Binary files differdeleted file mode 100644 index 895bd94..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_dolbyoff.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_dolbyon.png b/skins/nopacity/themes/darkred/icons/ico_dolbyon.png Binary files differdeleted file mode 100644 index 555b409..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_dolbyon.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_edit_active.png b/skins/nopacity/themes/darkred/icons/ico_edit_active.png Binary files differdeleted file mode 100644 index ec39699..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_edit_active.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_edit_inactive.png b/skins/nopacity/themes/darkred/icons/ico_edit_inactive.png Binary files differdeleted file mode 100644 index 71f016c..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_edit_inactive.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_encrypted.png b/skins/nopacity/themes/darkred/icons/ico_encrypted.png Binary files differdeleted file mode 100644 index 8c7c351..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_encrypted.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_ff.png b/skins/nopacity/themes/darkred/icons/ico_ff.png Binary files differdeleted file mode 100644 index b12409d..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_ff.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_ff_1x.png b/skins/nopacity/themes/darkred/icons/ico_ff_1x.png Binary files differdeleted file mode 100644 index f4ef710..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_ff_1x.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_ff_2x.png b/skins/nopacity/themes/darkred/icons/ico_ff_2x.png Binary files differdeleted file mode 100644 index 344a243..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_ff_2x.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_ff_3x.png b/skins/nopacity/themes/darkred/icons/ico_ff_3x.png Binary files differdeleted file mode 100644 index 05d29e8..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_ff_3x.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_ff_off.png b/skins/nopacity/themes/darkred/icons/ico_ff_off.png Binary files differdeleted file mode 100644 index cb551c2..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_ff_off.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_fta.png b/skins/nopacity/themes/darkred/icons/ico_fta.png Binary files differdeleted file mode 100644 index 5e5a1c4..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_fta.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_hd1080i.png b/skins/nopacity/themes/darkred/icons/ico_hd1080i.png Binary files differdeleted file mode 100644 index 8a44156..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_hd1080i.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_hd720p.png b/skins/nopacity/themes/darkred/icons/ico_hd720p.png Binary files differdeleted file mode 100644 index 2fa9baf..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_hd720p.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_info_active.png b/skins/nopacity/themes/darkred/icons/ico_info_active.png Binary files differdeleted file mode 100644 index c88f76d..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_info_active.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_info_inactive.png b/skins/nopacity/themes/darkred/icons/ico_info_inactive.png Binary files differdeleted file mode 100644 index 37eeed2..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_info_inactive.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_mute.png b/skins/nopacity/themes/darkred/icons/ico_mute.png Binary files differdeleted file mode 100644 index 4eefc75..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_mute.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_pause.png b/skins/nopacity/themes/darkred/icons/ico_pause.png Binary files differdeleted file mode 100644 index fc9ce48..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_pause.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_pause_off.png b/skins/nopacity/themes/darkred/icons/ico_pause_off.png Binary files differdeleted file mode 100644 index f9a9d94..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_pause_off.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_play.png b/skins/nopacity/themes/darkred/icons/ico_play.png Binary files differdeleted file mode 100644 index 0fa1c5a..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_play.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_play_off.png b/skins/nopacity/themes/darkred/icons/ico_play_off.png Binary files differdeleted file mode 100644 index 7fb820a..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_play_off.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_rec_on.svg b/skins/nopacity/themes/darkred/icons/ico_rec_on.svg deleted file mode 100644 index 91b3e31..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_rec_on.svg +++ /dev/null @@ -1,81 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="45" - height="23" - id="svg2" - version="1.1" - inkscape:version="0.91pre2 r13516" - viewBox="0 0 45 23" - sodipodi:docname="ico_rec.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.6" - inkscape:cx="-13.27009" - inkscape:cy="16.082332" - 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="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+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,-1029.3622)"> - <rect - style="fill:#d40000;fill-opacity:1;stroke:#ececec;stroke-width:0;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-opacity:1" - id="rect4148" - width="45" - height="23" - x="4.9999999e-006" - y="1029.3622" - ry="8.9285717" /> - <g - style="font-style:normal;font-weight:normal;font-size:13.75px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="text4151"> - <path - d="m 18.185688,1046.1122 -1.725464,0 -3.343506,-3.9746 -1.873169,0 0,3.9746 -1.3293454,0 0,-9.997 2.7996824,0 q 0.906372,0 1.51062,0.1209 0.604248,0.1141 1.087647,0.4162 0.543823,0.3425 0.845947,0.8661 0.308838,0.517 0.308838,1.316 0,1.0809 -0.543823,1.8127 -0.543823,0.7251 -1.497193,1.0944 l 3.759766,4.3707 z m -3.10852,-7.1839 q 0,-0.4296 -0.154419,-0.7586 -0.147706,-0.3357 -0.496827,-0.564 -0.288696,-0.1947 -0.684814,-0.2685 -0.396118,-0.081 -0.933228,-0.081 l -1.564331,0 0,3.7732 1.342774,0 q 0.631103,0 1.101074,-0.1074 0.469971,-0.1142 0.79895,-0.4163 0.302124,-0.282 0.443115,-0.6445 0.147706,-0.3693 0.147706,-0.9333 z" - style="font-size:13.75px;fill:#ffffff" - id="path4156" /> - <path - d="m 26.061054,1046.1122 -6.586303,0 0,-9.997 6.586303,0 0,1.1817 -5.256958,0 0,2.7392 5.256958,0 0,1.1817 -5.256958,0 0,3.7127 5.256958,0 0,1.1817 z" - style="font-size:13.75px;fill:#ffffff" - id="path4158" /> - <path - d="m 35.89687,1045.3871 q -0.369263,0.1611 -0.671387,0.3021 -0.29541,0.141 -0.778809,0.2954 -0.409546,0.1276 -0.892944,0.2149 -0.476685,0.094 -1.054077,0.094 -1.087647,0 -1.980591,-0.3022 -0.88623,-0.3088 -1.544189,-0.96 -0.644532,-0.6379 -1.00708,-1.6181 -0.362549,-0.9869 -0.362549,-2.2894 0,-1.2354 0.349121,-2.2089 0.349121,-0.9735 1.00708,-1.6449 0.637817,-0.6512 1.537475,-0.9936 0.906373,-0.3424 2.007447,-0.3424 0.805664,0 1.604614,0.1947 0.805664,0.1947 1.785889,0.6848 l 0,1.5777 -0.100708,0 q -0.825806,-0.6915 -1.638184,-1.007 -0.812378,-0.3156 -1.738892,-0.3156 -0.758667,0 -1.369628,0.2484 -0.604248,0.2417 -1.080933,0.7587 -0.463257,0.5035 -0.725098,1.2756 -0.255127,0.7654 -0.255127,1.7725 0,1.0541 0.281983,1.8127 0.288696,0.7587 0.738525,1.2354 0.469971,0.4968 1.09436,0.7385 0.631104,0.235 1.329346,0.235 0.960083,0 1.799317,-0.329 0.839233,-0.329 1.571045,-0.9869 l 0.09399,0 0,1.5576 z" - style="font-size:13.75px;fill:#ffffff" - id="path4160" /> - </g> - </g> -</svg> diff --git a/skins/nopacity/themes/darkred/icons/ico_recfolder.png b/skins/nopacity/themes/darkred/icons/ico_recfolder.png Binary files differdeleted file mode 100644 index e3df65b..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_recfolder.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_recnew.png b/skins/nopacity/themes/darkred/icons/ico_recnew.png Binary files differdeleted file mode 100644 index b9166ba..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_recnew.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_recoff.png b/skins/nopacity/themes/darkred/icons/ico_recoff.png Binary files differdeleted file mode 100644 index f7355aa..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_recoff.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_recon.png b/skins/nopacity/themes/darkred/icons/ico_recon.png Binary files differdeleted file mode 100644 index 9dd4d10..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_recon.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_record_active.png b/skins/nopacity/themes/darkred/icons/ico_record_active.png Binary files differdeleted file mode 100644 index 476da99..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_record_active.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_record_inactive.png b/skins/nopacity/themes/darkred/icons/ico_record_inactive.png Binary files differdeleted file mode 100644 index 2a91da3..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_record_inactive.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_rew.png b/skins/nopacity/themes/darkred/icons/ico_rew.png Binary files differdeleted file mode 100644 index 134da85..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_rew.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_rew_1x.png b/skins/nopacity/themes/darkred/icons/ico_rew_1x.png Binary files differdeleted file mode 100644 index ffb79b1..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_rew_1x.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_rew_2x.png b/skins/nopacity/themes/darkred/icons/ico_rew_2x.png Binary files differdeleted file mode 100644 index 00bbedd..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_rew_2x.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_rew_3x.png b/skins/nopacity/themes/darkred/icons/ico_rew_3x.png Binary files differdeleted file mode 100644 index b683ed3..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_rew_3x.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_rew_off.png b/skins/nopacity/themes/darkred/icons/ico_rew_off.png Binary files differdeleted file mode 100644 index ce18386..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_rew_off.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_sd576i.png b/skins/nopacity/themes/darkred/icons/ico_sd576i.png Binary files differdeleted file mode 100644 index 2e313aa..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_sd576i.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_search_active.png b/skins/nopacity/themes/darkred/icons/ico_search_active.png Binary files differdeleted file mode 100644 index 7bf7bc7..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_search_active.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_search_inactive.png b/skins/nopacity/themes/darkred/icons/ico_search_inactive.png Binary files differdeleted file mode 100644 index 4a210bb..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_search_inactive.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_stereo.png b/skins/nopacity/themes/darkred/icons/ico_stereo.png Binary files differdeleted file mode 100644 index 7f3610d..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_stereo.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_stereooff.png b/skins/nopacity/themes/darkred/icons/ico_stereooff.png Binary files differdeleted file mode 100644 index abb2c80..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_stereooff.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_stereoon.png b/skins/nopacity/themes/darkred/icons/ico_stereoon.png Binary files differdeleted file mode 100644 index 21c1b60..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_stereoon.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_switchtimer.svg b/skins/nopacity/themes/darkred/icons/ico_switchtimer.svg deleted file mode 100644 index f3ef884..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_switchtimer.svg +++ /dev/null @@ -1,93 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="45" - height="23" - id="svg2" - version="1.1" - inkscape:version="0.91pre2 r13516" - viewBox="0 0 45 23" - sodipodi:docname="ico_switchtimer.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.6" - inkscape:cx="-13.27009" - inkscape:cy="16.082332" - 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="metadata7"> - <rdf: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,-1029.3622)"> - <rect - style="fill:#ff7f2a;fill-opacity:1;stroke:#ececec;stroke-width:0;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-opacity:1" - id="rect4148" - width="45" - height="23" - x="4.9999999e-006" - y="1029.3622" - ry="8.9285717" /> - <g - style="font-style:normal;font-weight:normal;font-size:12.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="text4150"> - <path - d="m 9.2532783,1042.4468 q 0,0.531 -0.2502442,1.0498 -0.2441406,0.5188 -0.6896973,0.8789 -0.4882812,0.3906 -1.1413574,0.6103 -0.6469726,0.2198 -1.5625,0.2198 -0.982666,0 -1.7700195,-0.1831 -0.78125,-0.1831 -1.5930176,-0.5433 l 0,-1.5136 0.085449,0 q 0.6896973,0.5737 1.5930176,0.885 0.9033203,0.3113 1.6967774,0.3113 1.1230468,0 1.7456054,-0.4212 0.6286621,-0.4211 0.6286621,-1.123 0,-0.6043 -0.2990722,-0.8911 -0.2929688,-0.2869 -0.8972168,-0.4456 -0.4577637,-0.1221 -0.9948731,-0.2014 -0.5310058,-0.079 -1.1291504,-0.2014 -1.2084961,-0.2564 -1.7944336,-0.8728 -0.5798339,-0.6226 -0.5798339,-1.6175 0,-1.1413 0.9643554,-1.8676 0.9643555,-0.7325 2.4475098,-0.7325 0.9582519,0 1.7578125,0.1831 0.7995605,0.1832 1.4160156,0.4517 l 0,1.4282 -0.085449,0 q -0.5187988,-0.4394 -1.3671875,-0.7263 -0.8422852,-0.293 -1.7272949,-0.293 -0.970459,0 -1.5625,0.4029 -0.5859375,0.4028 -0.5859375,1.0376 0,0.5676 0.2929687,0.8911 0.2929688,0.3235 1.0314942,0.4944 0.390625,0.085 1.1108398,0.2075 0.7202149,0.1221 1.2207031,0.2502 1.0131836,0.2686 1.5258789,0.8118 0.5126954,0.5432 0.5126954,1.5198 z" - style="" - id="path4138" /> - <path - d="m 19.678083,1038.2231 -1.776123,6.8177 -1.062012,0 -1.751709,-5.2552 -1.739502,5.2552 -1.055908,0 -1.794434,-6.8177 1.19629,0 1.25122,5.2796 1.702881,-5.2796 0.946045,0 1.745605,5.2796 1.184082,-5.2796 1.153565,0 z" - style="" - id="path4140" /> - <path - d="m 22.565046,1037.0818 -1.293945,0 0,-1.1902 1.293945,0 0,1.1902 z m -0.07324,7.959 -1.147461,0 0,-6.8177 1.147461,0 0,6.8177 z" - style="" - id="path4142" /> - <path - d="m 28.265729,1044.9797 q -0.323486,0.085 -0.708007,0.1404 -0.378418,0.055 -0.677491,0.055 -1.043701,0 -1.586914,-0.5615 -0.543213,-0.5615 -0.543213,-1.8005 l 0,-3.6255 -0.775146,0 0,-0.9644 0.775146,0 0,-1.9592 1.147461,0 0,1.9592 2.368164,0 0,0.9644 -2.368164,0 0,3.1067 q 0,0.5371 0.02441,0.8423 0.02441,0.299 0.170899,0.5615 0.134277,0.2441 0.366211,0.3601 0.238037,0.1099 0.720215,0.1099 0.280761,0 0.585937,-0.079 0.305176,-0.085 0.439453,-0.1404 l 0.06104,0 0,1.0315 z" - style="" - id="path4144" /> - <path - d="m 34.698835,1044.6135 q -0.573731,0.2747 -1.092529,0.4273 -0.512696,0.1526 -1.09253,0.1526 -0.738525,0 -1.35498,-0.2137 -0.616455,-0.2197 -1.055908,-0.6591 -0.445557,-0.4395 -0.689698,-1.1109 -0.24414,-0.6714 -0.24414,-1.5686 0,-1.6723 0.915527,-2.6245 0.921631,-0.9521 2.429199,-0.9521 0.585938,0 1.147461,0.1647 0.567627,0.1648 1.037598,0.4029 l 0,1.2756 -0.06104,0 q -0.524903,-0.4089 -1.086426,-0.6286 -0.55542,-0.2198 -1.086426,-0.2198 -0.976562,0 -1.544189,0.6592 -0.561524,0.6531 -0.561524,1.9226 0,1.2329 0.549317,1.8982 0.55542,0.6592 1.556396,0.6592 0.347901,0 0.708008,-0.092 0.360107,-0.091 0.646973,-0.238 0.250244,-0.1282 0.46997,-0.2686 0.219727,-0.1464 0.347901,-0.2502 l 0.06104,0 0,1.2634 z" - style="" - id="path4146" /> - <path - d="m 41.876569,1045.0408 -1.147461,0 0,-3.8819 q 0,-0.4699 -0.05493,-0.8789 -0.05493,-0.415 -0.201416,-0.6469 -0.152588,-0.2564 -0.439453,-0.3785 -0.286866,-0.1281 -0.744629,-0.1281 -0.469971,0 -0.982666,0.2319 -0.512696,0.2319 -0.982666,0.592 l 0,5.0904 -1.147461,0 0,-9.4971 1.147461,0 0,3.4363 q 0.537109,-0.4456 1.110839,-0.6958 0.573731,-0.2503 1.177979,-0.2503 1.104736,0 1.68457,0.6653 0.579834,0.6653 0.579834,1.9165 l 0,4.4251 z" - style="" - id="path4148" /> - </g> - </g> -</svg> diff --git a/skins/nopacity/themes/darkred/icons/ico_timer_active.png b/skins/nopacity/themes/darkred/icons/ico_timer_active.png Binary files differdeleted file mode 100644 index 28c2f81..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_timer_active.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_timer_inactive.png b/skins/nopacity/themes/darkred/icons/ico_timer_inactive.png Binary files differdeleted file mode 100644 index c4b1860..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_timer_inactive.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_timer_recording.png b/skins/nopacity/themes/darkred/icons/ico_timer_recording.png Binary files differdeleted file mode 100644 index 86dc66b..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_timer_recording.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_txtoff.png b/skins/nopacity/themes/darkred/icons/ico_txtoff.png Binary files differdeleted file mode 100644 index e928a56..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_txtoff.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_txton.png b/skins/nopacity/themes/darkred/icons/ico_txton.png Binary files differdeleted file mode 100644 index 0361835..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_txton.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_vdrlogo.png b/skins/nopacity/themes/darkred/icons/ico_vdrlogo.png Binary files differdeleted file mode 100644 index 200cea7..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_vdrlogo.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/ico_volume.png b/skins/nopacity/themes/darkred/icons/ico_volume.png Binary files differdeleted file mode 100644 index 3a72514..0000000 --- a/skins/nopacity/themes/darkred/icons/ico_volume.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/partly-cloudy-day.png b/skins/nopacity/themes/darkred/icons/partly-cloudy-day.png Binary files differdeleted file mode 100644 index b6df179..0000000 --- a/skins/nopacity/themes/darkred/icons/partly-cloudy-day.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/partly-cloudy-night.png b/skins/nopacity/themes/darkred/icons/partly-cloudy-night.png Binary files differdeleted file mode 100644 index aa358fb..0000000 --- a/skins/nopacity/themes/darkred/icons/partly-cloudy-night.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/rain.png b/skins/nopacity/themes/darkred/icons/rain.png Binary files differdeleted file mode 100644 index 8275003..0000000 --- a/skins/nopacity/themes/darkred/icons/rain.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/sleet.png b/skins/nopacity/themes/darkred/icons/sleet.png Binary files differdeleted file mode 100644 index 1d99ae0..0000000 --- a/skins/nopacity/themes/darkred/icons/sleet.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/snow.png b/skins/nopacity/themes/darkred/icons/snow.png Binary files differdeleted file mode 100644 index 939e22f..0000000 --- a/skins/nopacity/themes/darkred/icons/snow.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/icons/wind.png b/skins/nopacity/themes/darkred/icons/wind.png Binary files differdeleted file mode 100644 index d92ec15..0000000 --- a/skins/nopacity/themes/darkred/icons/wind.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/Applikationen.png b/skins/nopacity/themes/darkred/menuicons/customicons/Applikationen.png Binary files differdeleted file mode 100644 index 3c3b616..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/Applikationen.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/Audio.png b/skins/nopacity/themes/darkred/menuicons/customicons/Audio.png Binary files differdeleted file mode 100644 index ff387fe..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/Audio.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/Aufnahmen-Liste aktualisieren.png b/skins/nopacity/themes/darkred/menuicons/customicons/Aufnahmen-Liste aktualisieren.png Binary files differdeleted file mode 100644 index 3cdddc9..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/Aufnahmen-Liste aktualisieren.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/Dienstprogramme.png b/skins/nopacity/themes/darkred/menuicons/customicons/Dienstprogramme.png Binary files differdeleted file mode 100644 index 793aba6..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/Dienstprogramme.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/FireFox.png b/skins/nopacity/themes/darkred/menuicons/customicons/FireFox.png Binary files differdeleted file mode 100644 index 192fadc..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/FireFox.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/Info.png b/skins/nopacity/themes/darkred/menuicons/customicons/Info.png Binary files differdeleted file mode 100644 index 6737431..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/Info.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/Internet.png b/skins/nopacity/themes/darkred/menuicons/customicons/Internet.png Binary files differdeleted file mode 100644 index f3db150..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/Internet.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/Medien.png b/skins/nopacity/themes/darkred/menuicons/customicons/Medien.png Binary files differdeleted file mode 100644 index 0ce2360..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/Medien.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/Rechner neu starten.png b/skins/nopacity/themes/darkred/menuicons/customicons/Rechner neu starten.png Binary files differdeleted file mode 100644 index 5783ccf..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/Rechner neu starten.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/Remote wakeup.png b/skins/nopacity/themes/darkred/menuicons/customicons/Remote wakeup.png Binary files differdeleted file mode 100644 index 1cd2f6e..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/Remote wakeup.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/Spiele.png b/skins/nopacity/themes/darkred/menuicons/customicons/Spiele.png Binary files differdeleted file mode 100644 index 8e07161..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/Spiele.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/System herunterfahren.png b/skins/nopacity/themes/darkred/menuicons/customicons/System herunterfahren.png Binary files differdeleted file mode 100644 index e0234df..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/System herunterfahren.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/System.png b/skins/nopacity/themes/darkred/menuicons/customicons/System.png Binary files differdeleted file mode 100644 index 81d100e..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/System.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/Tools.png b/skins/nopacity/themes/darkred/menuicons/customicons/Tools.png Binary files differdeleted file mode 100644 index cf328ef..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/Tools.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/Tunderbird.png b/skins/nopacity/themes/darkred/menuicons/customicons/Tunderbird.png Binary files differdeleted file mode 100644 index 5ae27e0..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/Tunderbird.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/USB Massenspeicher sicher entfernen.png b/skins/nopacity/themes/darkred/menuicons/customicons/USB Massenspeicher sicher entfernen.png Binary files differdeleted file mode 100644 index cd7b81c..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/USB Massenspeicher sicher entfernen.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/VDR neu starten.png b/skins/nopacity/themes/darkred/menuicons/customicons/VDR neu starten.png Binary files differdeleted file mode 100644 index 14904ca..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/VDR neu starten.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/Video.png b/skins/nopacity/themes/darkred/menuicons/customicons/Video.png Binary files differdeleted file mode 100644 index 490ca4b..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/Video.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/Web.png b/skins/nopacity/themes/darkred/menuicons/customicons/Web.png Binary files differdeleted file mode 100644 index 20260e3..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/Web.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/XBMC.png b/skins/nopacity/themes/darkred/menuicons/customicons/XBMC.png Binary files differdeleted file mode 100644 index c7c4c04..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/XBMC.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/Xterm.png b/skins/nopacity/themes/darkred/menuicons/customicons/Xterm.png Binary files differdeleted file mode 100644 index fa75282..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/Xterm.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/audiovideo.png b/skins/nopacity/themes/darkred/menuicons/customicons/audiovideo.png Binary files differdeleted file mode 100644 index 726538d..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/audiovideo.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/markad_status.png b/skins/nopacity/themes/darkred/menuicons/customicons/markad_status.png Binary files differdeleted file mode 100644 index 4fdc7a4..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/markad_status.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/schneiden_abbrechen.png b/skins/nopacity/themes/darkred/menuicons/customicons/schneiden_abbrechen.png Binary files differdeleted file mode 100644 index b2e0bd3..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/schneiden_abbrechen.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/tux.png b/skins/nopacity/themes/darkred/menuicons/customicons/tux.png Binary files differdeleted file mode 100644 index c5b4742..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/tux.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/usb.png b/skins/nopacity/themes/darkred/menuicons/customicons/usb.png Binary files differdeleted file mode 100644 index c4db1d4..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/usb.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/vdrlogo.png b/skins/nopacity/themes/darkred/menuicons/customicons/vdrlogo.png Binary files differdeleted file mode 100644 index 037a191..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/vdrlogo.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/customicons/yaicon_blue.png b/skins/nopacity/themes/darkred/menuicons/customicons/yaicon_blue.png Binary files differdeleted file mode 100644 index 2c49273..0000000 --- a/skins/nopacity/themes/darkred/menuicons/customicons/yaicon_blue.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/admin.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/admin.png Binary files differdeleted file mode 100644 index cf328ef..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/admin.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/arghdirector.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/arghdirector.png Binary files differdeleted file mode 100644 index bbd221a..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/arghdirector.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/autostart.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/autostart.png Binary files differdeleted file mode 100644 index 6fdb1bb..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/autostart.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/avahi4vdr.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/avahi4vdr.png Binary files differdeleted file mode 100644 index 044e71d..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/avahi4vdr.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/avards.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/avards.png Binary files differdeleted file mode 100644 index cf8d037..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/avards.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/block.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/block.png Binary files differdeleted file mode 100644 index 86127c2..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/block.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/burn.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/burn.png Binary files differdeleted file mode 100644 index 305d7ff..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/burn.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/cdplayer.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/cdplayer.png Binary files differdeleted file mode 100644 index 89a6c19..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/cdplayer.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/chanman.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/chanman.png Binary files differdeleted file mode 100644 index a73e83c..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/chanman.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/check.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/check.png Binary files differdeleted file mode 100644 index d487a24..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/check.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/conflictcheckonly.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/conflictcheckonly.png Binary files differdeleted file mode 100644 index 7f832bd..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/conflictcheckonly.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/ddci.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/ddci.png Binary files differdeleted file mode 100644 index 4ad459c..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/ddci.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/devstatus.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/devstatus.png Binary files differdeleted file mode 100644 index 96c0ec1..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/devstatus.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/dummydevice.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/dummydevice.png Binary files differdeleted file mode 100644 index 11fd707..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/dummydevice.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/duplicates.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/duplicates.png Binary files differdeleted file mode 100644 index dc1be57..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/duplicates.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/dvbapi.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/dvbapi.png Binary files differdeleted file mode 100644 index b966461..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/dvbapi.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/dvbhddevice.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/dvbhddevice.png Binary files differdeleted file mode 100644 index b874297..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/dvbhddevice.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/dvbsddevice.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/dvbsddevice.png Binary files differdeleted file mode 100644 index 106184e..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/dvbsddevice.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/dynamite.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/dynamite.png Binary files differdeleted file mode 100644 index 28ea35a..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/dynamite.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/eepg.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/eepg.png Binary files differdeleted file mode 100644 index 3938b96..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/eepg.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/epg2vdr.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/epg2vdr.png Binary files differdeleted file mode 100644 index ac8757e..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/epg2vdr.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/epgsearch.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/epgsearch.png Binary files differdeleted file mode 100644 index 5eab415..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/epgsearch.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/epgsearchonly.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/epgsearchonly.png Binary files differdeleted file mode 100644 index b5186e7..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/epgsearchonly.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/epgsync.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/epgsync.png Binary files differdeleted file mode 100644 index 5c14009..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/epgsync.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/externalplayer.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/externalplayer.png Binary files differdeleted file mode 100644 index 2bd67db..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/externalplayer.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/extrecmenu.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/extrecmenu.png Binary files differdeleted file mode 100644 index 6f613f1..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/extrecmenu.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/favorites.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/favorites.png Binary files differdeleted file mode 100644 index 409c852..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/favorites.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/femon.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/femon.png Binary files differdeleted file mode 100644 index e87b711..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/femon.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/fepg.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/fepg.png Binary files differdeleted file mode 100644 index 65023ed..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/fepg.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/filebrowser.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/filebrowser.png Binary files differdeleted file mode 100644 index d3f90e0..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/filebrowser.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/fritzbox.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/fritzbox.png Binary files differdeleted file mode 100644 index 7bfc229..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/fritzbox.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/graphlcd.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/graphlcd.png Binary files differdeleted file mode 100644 index 39ffd35..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/graphlcd.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/graphtft.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/graphtft.png Binary files differdeleted file mode 100644 index 39ffd35..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/graphtft.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/image.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/image.png Binary files differdeleted file mode 100644 index 33644e0..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/image.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/imonlcd.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/imonlcd.png Binary files differdeleted file mode 100644 index 3d34fc4..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/imonlcd.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/iptv.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/iptv.png Binary files differdeleted file mode 100644 index 4494ddc..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/iptv.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/lcdproc.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/lcdproc.png Binary files differdeleted file mode 100644 index 3d34fc4..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/lcdproc.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/mailbox.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/mailbox.png Binary files differdeleted file mode 100644 index 1bc76e8..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/mailbox.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/makemkv.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/makemkv.png Binary files differdeleted file mode 100644 index 41cddf1..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/makemkv.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/markad.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/markad.png Binary files differdeleted file mode 100644 index b3defaf..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/markad.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/mlist.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/mlist.png Binary files differdeleted file mode 100644 index 19c367f..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/mlist.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/music.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/music.png Binary files differdeleted file mode 100644 index abb012e..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/music.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/noepg.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/noepg.png Binary files differdeleted file mode 100644 index eb9410d..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/noepg.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/nordlichtsepg.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/nordlichtsepg.png Binary files differdeleted file mode 100644 index 3ee3fa2..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/nordlichtsepg.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/osdteletext.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/osdteletext.png Binary files differdeleted file mode 100644 index 664e770..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/osdteletext.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/peer.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/peer.png Binary files differdeleted file mode 100644 index 998d568..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/peer.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/play.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/play.png Binary files differdeleted file mode 100644 index 2848fc6..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/play.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/pvrinput.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/pvrinput.png Binary files differdeleted file mode 100644 index 724f698..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/pvrinput.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/quickepgsearch.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/quickepgsearch.png Binary files differdeleted file mode 100644 index 76a31f4..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/quickepgsearch.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/radio.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/radio.png Binary files differdeleted file mode 100644 index 193b7d4..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/radio.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/remote.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/remote.png Binary files differdeleted file mode 100644 index 7f46b1b..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/remote.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/remotetimers.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/remotetimers.png Binary files differdeleted file mode 100644 index fae3b79..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/remotetimers.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/rssreader.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/rssreader.png Binary files differdeleted file mode 100644 index db538f0..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/rssreader.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/sc.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/sc.png Binary files differdeleted file mode 100644 index 2472d6c..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/sc.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/screenshot.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/screenshot.png Binary files differdeleted file mode 100644 index be9b4d5..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/screenshot.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/seduatmo.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/seduatmo.png Binary files differdeleted file mode 100644 index 4b5292f..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/seduatmo.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/skyselectfeeds.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/skyselectfeeds.png Binary files differdeleted file mode 100644 index d81a024..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/skyselectfeeds.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/sleeptimer.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/sleeptimer.png Binary files differdeleted file mode 100644 index cd4956f..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/sleeptimer.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/softhddevice.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/softhddevice.png Binary files differdeleted file mode 100644 index df13f2c..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/softhddevice.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/streamdev-server.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/streamdev-server.png Binary files differdeleted file mode 100644 index e89ed8b..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/streamdev-server.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/systeminfo.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/systeminfo.png Binary files differdeleted file mode 100644 index b14763f..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/systeminfo.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/targavfd.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/targavfd.png Binary files differdeleted file mode 100644 index e91b111..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/targavfd.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/trayopenng.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/trayopenng.png Binary files differdeleted file mode 100644 index 6ebd17d..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/trayopenng.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/tvguide.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/tvguide.png Binary files differdeleted file mode 100644 index 968a37c..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/tvguide.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/tvm2vdr.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/tvm2vdr.png Binary files differdeleted file mode 100644 index 47f9a91..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/tvm2vdr.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/tvscraper.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/tvscraper.png Binary files differdeleted file mode 100644 index a106cb5..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/tvscraper.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/undelete.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/undelete.png Binary files differdeleted file mode 100644 index a53d50a..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/undelete.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/weatherforecast.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/weatherforecast.png Binary files differdeleted file mode 100644 index a88f11d..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/weatherforecast.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/weatherng.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/weatherng.png Binary files differdeleted file mode 100644 index a88f11d..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/weatherng.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/xmltv2vdr.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/xmltv2vdr.png Binary files differdeleted file mode 100644 index ea73c74..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/xmltv2vdr.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/pluginicons/yaepghg.png b/skins/nopacity/themes/darkred/menuicons/pluginicons/yaepghg.png Binary files differdeleted file mode 100644 index 53ce443..0000000 --- a/skins/nopacity/themes/darkred/menuicons/pluginicons/yaepghg.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/CAM.png b/skins/nopacity/themes/darkred/menuicons/standardicons/CAM.png Binary files differdeleted file mode 100644 index a394877..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/CAM.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/Channels.png b/skins/nopacity/themes/darkred/menuicons/standardicons/Channels.png Binary files differdeleted file mode 100644 index ba2ba78..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/Channels.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/Commands.png b/skins/nopacity/themes/darkred/menuicons/standardicons/Commands.png Binary files differdeleted file mode 100644 index c6a83ef..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/Commands.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/DVB.png b/skins/nopacity/themes/darkred/menuicons/standardicons/DVB.png Binary files differdeleted file mode 100644 index 3789145..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/DVB.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/EPG.png b/skins/nopacity/themes/darkred/menuicons/standardicons/EPG.png Binary files differdeleted file mode 100644 index e868b90..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/EPG.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/LNB.png b/skins/nopacity/themes/darkred/menuicons/standardicons/LNB.png Binary files differdeleted file mode 100644 index 896dd99..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/LNB.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/Miscellaneous.png b/skins/nopacity/themes/darkred/menuicons/standardicons/Miscellaneous.png Binary files differdeleted file mode 100644 index 2a41c4d..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/Miscellaneous.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/OSD.png b/skins/nopacity/themes/darkred/menuicons/standardicons/OSD.png Binary files differdeleted file mode 100644 index 8f571c6..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/OSD.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/Plugins.png b/skins/nopacity/themes/darkred/menuicons/standardicons/Plugins.png Binary files differdeleted file mode 100644 index 3fcba70..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/Plugins.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/Recording.png b/skins/nopacity/themes/darkred/menuicons/standardicons/Recording.png Binary files differdeleted file mode 100644 index 741b1af..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/Recording.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/Recordings.png b/skins/nopacity/themes/darkred/menuicons/standardicons/Recordings.png Binary files differdeleted file mode 100644 index 79aeeb7..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/Recordings.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/Replay.png b/skins/nopacity/themes/darkred/menuicons/standardicons/Replay.png Binary files differdeleted file mode 100644 index 621596c..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/Replay.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/Restart.png b/skins/nopacity/themes/darkred/menuicons/standardicons/Restart.png Binary files differdeleted file mode 100644 index aa23cd4..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/Restart.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/Schedule.png b/skins/nopacity/themes/darkred/menuicons/standardicons/Schedule.png Binary files differdeleted file mode 100644 index 3a98cac..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/Schedule.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/Setup.png b/skins/nopacity/themes/darkred/menuicons/standardicons/Setup.png Binary files differdeleted file mode 100644 index d121148..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/Setup.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/StopRecording.png b/skins/nopacity/themes/darkred/menuicons/standardicons/StopRecording.png Binary files differdeleted file mode 100644 index ed83fbb..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/StopRecording.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/StopReplay.png b/skins/nopacity/themes/darkred/menuicons/standardicons/StopReplay.png Binary files differdeleted file mode 100644 index 9192760..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/StopReplay.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/menuicons/standardicons/Timers.png b/skins/nopacity/themes/darkred/menuicons/standardicons/Timers.png Binary files differdeleted file mode 100644 index b866c36..0000000 --- a/skins/nopacity/themes/darkred/menuicons/standardicons/Timers.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/buttonblue.png b/skins/nopacity/themes/darkred/skinparts/buttonblue.png Binary files differdeleted file mode 100644 index 82dc634..0000000 --- a/skins/nopacity/themes/darkred/skinparts/buttonblue.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/buttongreen.png b/skins/nopacity/themes/darkred/skinparts/buttongreen.png Binary files differdeleted file mode 100644 index ce8fe22..0000000 --- a/skins/nopacity/themes/darkred/skinparts/buttongreen.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/buttonred.png b/skins/nopacity/themes/darkred/skinparts/buttonred.png Binary files differdeleted file mode 100644 index 9660a3e..0000000 --- a/skins/nopacity/themes/darkred/skinparts/buttonred.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/buttonyellow.png b/skins/nopacity/themes/darkred/skinparts/buttonyellow.png Binary files differdeleted file mode 100644 index a51ea7a..0000000 --- a/skins/nopacity/themes/darkred/skinparts/buttonyellow.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/channellogoback.png b/skins/nopacity/themes/darkred/skinparts/channellogoback.png Binary files differdeleted file mode 100644 index 79357af..0000000 --- a/skins/nopacity/themes/darkred/skinparts/channellogoback.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/discpercent.png b/skins/nopacity/themes/darkred/skinparts/discpercent.png Binary files differdeleted file mode 100644 index cf32be2..0000000 --- a/skins/nopacity/themes/darkred/skinparts/discpercent.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/displaychannelback.png b/skins/nopacity/themes/darkred/skinparts/displaychannelback.png Binary files differdeleted file mode 100644 index 672144f..0000000 --- a/skins/nopacity/themes/darkred/skinparts/displaychannelback.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/displaychanneltop.png b/skins/nopacity/themes/darkred/skinparts/displaychanneltop.png Binary files differdeleted file mode 100644 index 38a99f8..0000000 --- a/skins/nopacity/themes/darkred/skinparts/displaychanneltop.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/displayreplayback.png b/skins/nopacity/themes/darkred/skinparts/displayreplayback.png Binary files differdeleted file mode 100644 index 923dedb..0000000 --- a/skins/nopacity/themes/darkred/skinparts/displayreplayback.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/displayvolume.png b/skins/nopacity/themes/darkred/skinparts/displayvolume.png Binary files differdeleted file mode 100644 index 8e81f14..0000000 --- a/skins/nopacity/themes/darkred/skinparts/displayvolume.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/header_mirroredback.png b/skins/nopacity/themes/darkred/skinparts/header_mirroredback.png Binary files differdeleted file mode 100644 index 42919d9..0000000 --- a/skins/nopacity/themes/darkred/skinparts/header_mirroredback.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/header_mirroredtop.png b/skins/nopacity/themes/darkred/skinparts/header_mirroredtop.png Binary files differdeleted file mode 100644 index 16053e9..0000000 --- a/skins/nopacity/themes/darkred/skinparts/header_mirroredtop.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/headerback.png b/skins/nopacity/themes/darkred/skinparts/headerback.png Binary files differdeleted file mode 100644 index dafff9e..0000000 --- a/skins/nopacity/themes/darkred/skinparts/headerback.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/headertop.png b/skins/nopacity/themes/darkred/skinparts/headertop.png Binary files differdeleted file mode 100644 index d6eb813..0000000 --- a/skins/nopacity/themes/darkred/skinparts/headertop.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/menubutton.png b/skins/nopacity/themes/darkred/skinparts/menubutton.png Binary files differdeleted file mode 100644 index 4afbbbb..0000000 --- a/skins/nopacity/themes/darkred/skinparts/menubutton.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/menubuttonactive.png b/skins/nopacity/themes/darkred/skinparts/menubuttonactive.png Binary files differdeleted file mode 100644 index b461791..0000000 --- a/skins/nopacity/themes/darkred/skinparts/menubuttonactive.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/menubuttondefault.png b/skins/nopacity/themes/darkred/skinparts/menubuttondefault.png Binary files differdeleted file mode 100644 index 9ef37ec..0000000 --- a/skins/nopacity/themes/darkred/skinparts/menubuttondefault.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/menubuttondefaultactive.png b/skins/nopacity/themes/darkred/skinparts/menubuttondefaultactive.png Binary files differdeleted file mode 100644 index 09ab466..0000000 --- a/skins/nopacity/themes/darkred/skinparts/menubuttondefaultactive.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/messageError.png b/skins/nopacity/themes/darkred/skinparts/messageError.png Binary files differdeleted file mode 100644 index e6047f0..0000000 --- a/skins/nopacity/themes/darkred/skinparts/messageError.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/messageInfo.png b/skins/nopacity/themes/darkred/skinparts/messageInfo.png Binary files differdeleted file mode 100644 index d335003..0000000 --- a/skins/nopacity/themes/darkred/skinparts/messageInfo.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/messageStatus.png b/skins/nopacity/themes/darkred/skinparts/messageStatus.png Binary files differdeleted file mode 100644 index f455b5d..0000000 --- a/skins/nopacity/themes/darkred/skinparts/messageStatus.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/messageWarning.png b/skins/nopacity/themes/darkred/skinparts/messageWarning.png Binary files differdeleted file mode 100644 index 32e1598..0000000 --- a/skins/nopacity/themes/darkred/skinparts/messageWarning.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/scrollbar.png b/skins/nopacity/themes/darkred/skinparts/scrollbar.png Binary files differdeleted file mode 100644 index 2243776..0000000 --- a/skins/nopacity/themes/darkred/skinparts/scrollbar.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/signal.png b/skins/nopacity/themes/darkred/skinparts/signal.png Binary files differdeleted file mode 100644 index 4f03c7a..0000000 --- a/skins/nopacity/themes/darkred/skinparts/signal.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_button.png b/skins/nopacity/themes/darkred/skinparts/tvguide_button.png Binary files differdeleted file mode 100644 index 7234f08..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_button.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_button_active.png b/skins/nopacity/themes/darkred/skinparts/tvguide_button_active.png Binary files differdeleted file mode 100644 index ba09ea0..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_button_active.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_bottom.png b/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_bottom.png Binary files differdeleted file mode 100644 index 7127ea7..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_bottom.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_head.png b/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_head.png Binary files differdeleted file mode 100644 index bce9d22..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_head.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_horizontal.png b/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_horizontal.png Binary files differdeleted file mode 100644 index 13d733c..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_horizontal.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_left.png b/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_left.png Binary files differdeleted file mode 100644 index df495b1..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_left.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_right.png b/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_right.png Binary files differdeleted file mode 100644 index 42dcf6d..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_right.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_vertical.png b/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_vertical.png Binary files differdeleted file mode 100644 index 43778d0..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_channelgroup_vertical.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_channellogoback_horizontal.png b/skins/nopacity/themes/darkred/skinparts/tvguide_channellogoback_horizontal.png Binary files differdeleted file mode 100644 index d9bb54a..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_channellogoback_horizontal.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_channellogoback_vertical.png b/skins/nopacity/themes/darkred/skinparts/tvguide_channellogoback_vertical.png Binary files differdeleted file mode 100644 index 06684cc..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_channellogoback_vertical.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_clock.png b/skins/nopacity/themes/darkred/skinparts/tvguide_clock.png Binary files differdeleted file mode 100644 index 2e8686e..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_clock.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_date_vertical.png b/skins/nopacity/themes/darkred/skinparts/tvguide_date_vertical.png Binary files differdeleted file mode 100644 index 58a72e4..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_date_vertical.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_bottom.png b/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_bottom.png Binary files differdeleted file mode 100644 index 08de467..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_bottom.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_head.png b/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_head.png Binary files differdeleted file mode 100644 index 060a908..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_head.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_horizontal.png b/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_horizontal.png Binary files differdeleted file mode 100644 index 9319d6b..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_horizontal.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_left.png b/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_left.png Binary files differdeleted file mode 100644 index 7852d94..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_left.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_right.png b/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_right.png Binary files differdeleted file mode 100644 index 73dfbd0..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_right.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_vertical.png b/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_vertical.png Binary files differdeleted file mode 100644 index 6d96d34..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_active_vertical.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_bottom.png b/skins/nopacity/themes/darkred/skinparts/tvguide_grid_bottom.png Binary files differdeleted file mode 100644 index 82c20c4..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_bottom.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_head.png b/skins/nopacity/themes/darkred/skinparts/tvguide_grid_head.png Binary files differdeleted file mode 100644 index f434c11..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_head.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_horizontal.png b/skins/nopacity/themes/darkred/skinparts/tvguide_grid_horizontal.png Binary files differdeleted file mode 100644 index 6f28550..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_horizontal.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_left.png b/skins/nopacity/themes/darkred/skinparts/tvguide_grid_left.png Binary files differdeleted file mode 100644 index df80f91..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_left.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_right.png b/skins/nopacity/themes/darkred/skinparts/tvguide_grid_right.png Binary files differdeleted file mode 100644 index d39470f..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_right.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_vertical.png b/skins/nopacity/themes/darkred/skinparts/tvguide_grid_vertical.png Binary files differdeleted file mode 100644 index 6ad219d..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_grid_vertical.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_header.png b/skins/nopacity/themes/darkred/skinparts/tvguide_header.png Binary files differdeleted file mode 100644 index 56a60a7..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_header.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_timelinebright_horizontal.png b/skins/nopacity/themes/darkred/skinparts/tvguide_timelinebright_horizontal.png Binary files differdeleted file mode 100644 index 9240b37..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_timelinebright_horizontal.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_timelinebright_vertical.png b/skins/nopacity/themes/darkred/skinparts/tvguide_timelinebright_vertical.png Binary files differdeleted file mode 100644 index 5466546..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_timelinebright_vertical.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_timelinedark_horizontal.png b/skins/nopacity/themes/darkred/skinparts/tvguide_timelinedark_horizontal.png Binary files differdeleted file mode 100644 index 4364677..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_timelinedark_horizontal.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_timelinedark_vertical.png b/skins/nopacity/themes/darkred/skinparts/tvguide_timelinedark_vertical.png Binary files differdeleted file mode 100644 index dfa06c9..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_timelinedark_vertical.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/skinparts/tvguide_tvframe.png b/skins/nopacity/themes/darkred/skinparts/tvguide_tvframe.png Binary files differdeleted file mode 100644 index 261fea3..0000000 --- a/skins/nopacity/themes/darkred/skinparts/tvguide_tvframe.png +++ /dev/null diff --git a/skins/nopacity/themes/darkred/theme.xml b/skins/nopacity/themes/darkred/theme.xml deleted file mode 100644 index a1d3eea..0000000 --- a/skins/nopacity/themes/darkred/theme.xml +++ /dev/null @@ -1,29 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE globals SYSTEM "../../../../dtd/globals.dtd"> - -<globals> - <colors> - <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="clrTransWhite">99FFFFFF</color> - <color name="clrBlack">FF000000</color> - <color name="clrProgressbar">FF3D0000</color> - <color name="clrScrollbar">FF3D0000</color> - <color name="clrBorder">FF2B0000</color> - <color name="clrGray">FF858585</color> - <color name="clrBackground">B0000000</color> - <color name="clrBackgroundOpaque">FF000000</color> - <color name="clrTransBlack">99000000</color> - <color name="clrTransBlackDark">DF000000</color> - <color name="clrTransRed">99FF0000</color> - <color name="clrFontMenuItem">FFFFFFFF</color> - <color name="clrFontMenuItemSelected">FFFFFFFF</color> - <color name="clrFontInactive">FF858585</color> - <color name="clrTransparent">00000000</color> - </colors> - <variables> - </variables> -</globals> diff --git a/skins/nopacity/themes/default/icons/clear-day.png b/skins/nopacity/themes/default/icons/clear-day.png Binary files differdeleted file mode 100644 index 2b06a14..0000000 --- a/skins/nopacity/themes/default/icons/clear-day.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/clear-night.png b/skins/nopacity/themes/default/icons/clear-night.png Binary files differdeleted file mode 100644 index 9bbe49f..0000000 --- a/skins/nopacity/themes/default/icons/clear-night.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/cloudy.png b/skins/nopacity/themes/default/icons/cloudy.png Binary files differdeleted file mode 100644 index 9870c7f..0000000 --- a/skins/nopacity/themes/default/icons/cloudy.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/fog.png b/skins/nopacity/themes/default/icons/fog.png Binary files differdeleted file mode 100644 index 9bc88d2..0000000 --- a/skins/nopacity/themes/default/icons/fog.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_ac3.png b/skins/nopacity/themes/default/icons/ico_ac3.png Binary files differdeleted file mode 100644 index 5b8614a..0000000 --- a/skins/nopacity/themes/default/icons/ico_ac3.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_activetimer.png b/skins/nopacity/themes/default/icons/ico_activetimer.png Binary files differdeleted file mode 100644 index af4c33c..0000000 --- a/skins/nopacity/themes/default/icons/ico_activetimer.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_arrow_left.png b/skins/nopacity/themes/default/icons/ico_arrow_left.png Binary files differdeleted file mode 100644 index 57800c7..0000000 --- a/skins/nopacity/themes/default/icons/ico_arrow_left.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_arrow_left_channelsep.png b/skins/nopacity/themes/default/icons/ico_arrow_left_channelsep.png Binary files differdeleted file mode 100644 index 642cd78..0000000 --- a/skins/nopacity/themes/default/icons/ico_arrow_left_channelsep.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_arrow_right.png b/skins/nopacity/themes/default/icons/ico_arrow_right.png Binary files differdeleted file mode 100644 index ea45f3a..0000000 --- a/skins/nopacity/themes/default/icons/ico_arrow_right.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_arrow_right_channelsep.png b/skins/nopacity/themes/default/icons/ico_arrow_right_channelsep.png Binary files differdeleted file mode 100644 index 1418671..0000000 --- a/skins/nopacity/themes/default/icons/ico_arrow_right_channelsep.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_channelsep.png b/skins/nopacity/themes/default/icons/ico_channelsep.png Binary files differdeleted file mode 100644 index bf51238..0000000 --- a/skins/nopacity/themes/default/icons/ico_channelsep.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_cutted.png b/skins/nopacity/themes/default/icons/ico_cutted.png Binary files differdeleted file mode 100644 index b90c9c1..0000000 --- a/skins/nopacity/themes/default/icons/ico_cutted.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_daydelimiter.png b/skins/nopacity/themes/default/icons/ico_daydelimiter.png Binary files differdeleted file mode 100644 index 7ae6053..0000000 --- a/skins/nopacity/themes/default/icons/ico_daydelimiter.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_delete_active.png b/skins/nopacity/themes/default/icons/ico_delete_active.png Binary files differdeleted file mode 100644 index f473717..0000000 --- a/skins/nopacity/themes/default/icons/ico_delete_active.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_delete_inactive.png b/skins/nopacity/themes/default/icons/ico_delete_inactive.png Binary files differdeleted file mode 100644 index 21b0a88..0000000 --- a/skins/nopacity/themes/default/icons/ico_delete_inactive.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_discusage.png b/skins/nopacity/themes/default/icons/ico_discusage.png Binary files differdeleted file mode 100644 index f40fcd9..0000000 --- a/skins/nopacity/themes/default/icons/ico_discusage.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_dolbyoff.png b/skins/nopacity/themes/default/icons/ico_dolbyoff.png Binary files differdeleted file mode 100644 index ef4f17c..0000000 --- a/skins/nopacity/themes/default/icons/ico_dolbyoff.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_dolbyon.png b/skins/nopacity/themes/default/icons/ico_dolbyon.png Binary files differdeleted file mode 100644 index 1278abe..0000000 --- a/skins/nopacity/themes/default/icons/ico_dolbyon.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_edit_active.png b/skins/nopacity/themes/default/icons/ico_edit_active.png Binary files differdeleted file mode 100644 index ec39699..0000000 --- a/skins/nopacity/themes/default/icons/ico_edit_active.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_edit_inactive.png b/skins/nopacity/themes/default/icons/ico_edit_inactive.png Binary files differdeleted file mode 100644 index 71f016c..0000000 --- a/skins/nopacity/themes/default/icons/ico_edit_inactive.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_encrypted.png b/skins/nopacity/themes/default/icons/ico_encrypted.png Binary files differdeleted file mode 100644 index 2b6345a..0000000 --- a/skins/nopacity/themes/default/icons/ico_encrypted.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_ff.png b/skins/nopacity/themes/default/icons/ico_ff.png Binary files differdeleted file mode 100644 index 3dea9d3..0000000 --- a/skins/nopacity/themes/default/icons/ico_ff.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_ff_1x.png b/skins/nopacity/themes/default/icons/ico_ff_1x.png Binary files differdeleted file mode 100644 index 599256e..0000000 --- a/skins/nopacity/themes/default/icons/ico_ff_1x.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_ff_2x.png b/skins/nopacity/themes/default/icons/ico_ff_2x.png Binary files differdeleted file mode 100644 index 3eec356..0000000 --- a/skins/nopacity/themes/default/icons/ico_ff_2x.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_ff_3x.png b/skins/nopacity/themes/default/icons/ico_ff_3x.png Binary files differdeleted file mode 100644 index f686658..0000000 --- a/skins/nopacity/themes/default/icons/ico_ff_3x.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_ff_off.png b/skins/nopacity/themes/default/icons/ico_ff_off.png Binary files differdeleted file mode 100644 index cb551c2..0000000 --- a/skins/nopacity/themes/default/icons/ico_ff_off.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_fta.png b/skins/nopacity/themes/default/icons/ico_fta.png Binary files differdeleted file mode 100644 index 55e3789..0000000 --- a/skins/nopacity/themes/default/icons/ico_fta.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_hd1080i.png b/skins/nopacity/themes/default/icons/ico_hd1080i.png Binary files differdeleted file mode 100644 index 27b85ab..0000000 --- a/skins/nopacity/themes/default/icons/ico_hd1080i.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_hd720p.png b/skins/nopacity/themes/default/icons/ico_hd720p.png Binary files differdeleted file mode 100644 index 47317d8..0000000 --- a/skins/nopacity/themes/default/icons/ico_hd720p.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_info_active.png b/skins/nopacity/themes/default/icons/ico_info_active.png Binary files differdeleted file mode 100644 index c88f76d..0000000 --- a/skins/nopacity/themes/default/icons/ico_info_active.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_info_inactive.png b/skins/nopacity/themes/default/icons/ico_info_inactive.png Binary files differdeleted file mode 100644 index 37eeed2..0000000 --- a/skins/nopacity/themes/default/icons/ico_info_inactive.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_mute.png b/skins/nopacity/themes/default/icons/ico_mute.png Binary files differdeleted file mode 100644 index 4eefc75..0000000 --- a/skins/nopacity/themes/default/icons/ico_mute.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_no.png b/skins/nopacity/themes/default/icons/ico_no.png Binary files differdeleted file mode 100644 index 47cdba0..0000000 --- a/skins/nopacity/themes/default/icons/ico_no.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_pause.png b/skins/nopacity/themes/default/icons/ico_pause.png Binary files differdeleted file mode 100644 index cd8cad8..0000000 --- a/skins/nopacity/themes/default/icons/ico_pause.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_pause_off.png b/skins/nopacity/themes/default/icons/ico_pause_off.png Binary files differdeleted file mode 100644 index f9a9d94..0000000 --- a/skins/nopacity/themes/default/icons/ico_pause_off.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_play.png b/skins/nopacity/themes/default/icons/ico_play.png Binary files differdeleted file mode 100644 index 4cc0541..0000000 --- a/skins/nopacity/themes/default/icons/ico_play.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_play_off.png b/skins/nopacity/themes/default/icons/ico_play_off.png Binary files differdeleted file mode 100644 index 7fb820a..0000000 --- a/skins/nopacity/themes/default/icons/ico_play_off.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_rec_on.svg b/skins/nopacity/themes/default/icons/ico_rec_on.svg deleted file mode 100644 index 91b3e31..0000000 --- a/skins/nopacity/themes/default/icons/ico_rec_on.svg +++ /dev/null @@ -1,81 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="45" - height="23" - id="svg2" - version="1.1" - inkscape:version="0.91pre2 r13516" - viewBox="0 0 45 23" - sodipodi:docname="ico_rec.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.6" - inkscape:cx="-13.27009" - inkscape:cy="16.082332" - 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="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+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,-1029.3622)"> - <rect - style="fill:#d40000;fill-opacity:1;stroke:#ececec;stroke-width:0;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-opacity:1" - id="rect4148" - width="45" - height="23" - x="4.9999999e-006" - y="1029.3622" - ry="8.9285717" /> - <g - style="font-style:normal;font-weight:normal;font-size:13.75px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="text4151"> - <path - d="m 18.185688,1046.1122 -1.725464,0 -3.343506,-3.9746 -1.873169,0 0,3.9746 -1.3293454,0 0,-9.997 2.7996824,0 q 0.906372,0 1.51062,0.1209 0.604248,0.1141 1.087647,0.4162 0.543823,0.3425 0.845947,0.8661 0.308838,0.517 0.308838,1.316 0,1.0809 -0.543823,1.8127 -0.543823,0.7251 -1.497193,1.0944 l 3.759766,4.3707 z m -3.10852,-7.1839 q 0,-0.4296 -0.154419,-0.7586 -0.147706,-0.3357 -0.496827,-0.564 -0.288696,-0.1947 -0.684814,-0.2685 -0.396118,-0.081 -0.933228,-0.081 l -1.564331,0 0,3.7732 1.342774,0 q 0.631103,0 1.101074,-0.1074 0.469971,-0.1142 0.79895,-0.4163 0.302124,-0.282 0.443115,-0.6445 0.147706,-0.3693 0.147706,-0.9333 z" - style="font-size:13.75px;fill:#ffffff" - id="path4156" /> - <path - d="m 26.061054,1046.1122 -6.586303,0 0,-9.997 6.586303,0 0,1.1817 -5.256958,0 0,2.7392 5.256958,0 0,1.1817 -5.256958,0 0,3.7127 5.256958,0 0,1.1817 z" - style="font-size:13.75px;fill:#ffffff" - id="path4158" /> - <path - d="m 35.89687,1045.3871 q -0.369263,0.1611 -0.671387,0.3021 -0.29541,0.141 -0.778809,0.2954 -0.409546,0.1276 -0.892944,0.2149 -0.476685,0.094 -1.054077,0.094 -1.087647,0 -1.980591,-0.3022 -0.88623,-0.3088 -1.544189,-0.96 -0.644532,-0.6379 -1.00708,-1.6181 -0.362549,-0.9869 -0.362549,-2.2894 0,-1.2354 0.349121,-2.2089 0.349121,-0.9735 1.00708,-1.6449 0.637817,-0.6512 1.537475,-0.9936 0.906373,-0.3424 2.007447,-0.3424 0.805664,0 1.604614,0.1947 0.805664,0.1947 1.785889,0.6848 l 0,1.5777 -0.100708,0 q -0.825806,-0.6915 -1.638184,-1.007 -0.812378,-0.3156 -1.738892,-0.3156 -0.758667,0 -1.369628,0.2484 -0.604248,0.2417 -1.080933,0.7587 -0.463257,0.5035 -0.725098,1.2756 -0.255127,0.7654 -0.255127,1.7725 0,1.0541 0.281983,1.8127 0.288696,0.7587 0.738525,1.2354 0.469971,0.4968 1.09436,0.7385 0.631104,0.235 1.329346,0.235 0.960083,0 1.799317,-0.329 0.839233,-0.329 1.571045,-0.9869 l 0.09399,0 0,1.5576 z" - style="font-size:13.75px;fill:#ffffff" - id="path4160" /> - </g> - </g> -</svg> diff --git a/skins/nopacity/themes/default/icons/ico_recfolder.png b/skins/nopacity/themes/default/icons/ico_recfolder.png Binary files differdeleted file mode 100644 index e3df65b..0000000 --- a/skins/nopacity/themes/default/icons/ico_recfolder.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_recnew.png b/skins/nopacity/themes/default/icons/ico_recnew.png Binary files differdeleted file mode 100644 index b9166ba..0000000 --- a/skins/nopacity/themes/default/icons/ico_recnew.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_recoff.png b/skins/nopacity/themes/default/icons/ico_recoff.png Binary files differdeleted file mode 100644 index 4f59218..0000000 --- a/skins/nopacity/themes/default/icons/ico_recoff.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_recon.png b/skins/nopacity/themes/default/icons/ico_recon.png Binary files differdeleted file mode 100644 index 14fe7be..0000000 --- a/skins/nopacity/themes/default/icons/ico_recon.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_record_active.png b/skins/nopacity/themes/default/icons/ico_record_active.png Binary files differdeleted file mode 100644 index 476da99..0000000 --- a/skins/nopacity/themes/default/icons/ico_record_active.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_record_inactive.png b/skins/nopacity/themes/default/icons/ico_record_inactive.png Binary files differdeleted file mode 100644 index 2a91da3..0000000 --- a/skins/nopacity/themes/default/icons/ico_record_inactive.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_rew.png b/skins/nopacity/themes/default/icons/ico_rew.png Binary files differdeleted file mode 100644 index 72408d0..0000000 --- a/skins/nopacity/themes/default/icons/ico_rew.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_rew_1x.png b/skins/nopacity/themes/default/icons/ico_rew_1x.png Binary files differdeleted file mode 100644 index 333c30d..0000000 --- a/skins/nopacity/themes/default/icons/ico_rew_1x.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_rew_2x.png b/skins/nopacity/themes/default/icons/ico_rew_2x.png Binary files differdeleted file mode 100644 index c5d1084..0000000 --- a/skins/nopacity/themes/default/icons/ico_rew_2x.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_rew_3x.png b/skins/nopacity/themes/default/icons/ico_rew_3x.png Binary files differdeleted file mode 100644 index 6ab7a8d..0000000 --- a/skins/nopacity/themes/default/icons/ico_rew_3x.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_rew_off.png b/skins/nopacity/themes/default/icons/ico_rew_off.png Binary files differdeleted file mode 100644 index ce18386..0000000 --- a/skins/nopacity/themes/default/icons/ico_rew_off.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_sd576i.png b/skins/nopacity/themes/default/icons/ico_sd576i.png Binary files differdeleted file mode 100644 index 994a7a2..0000000 --- a/skins/nopacity/themes/default/icons/ico_sd576i.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_search_active.png b/skins/nopacity/themes/default/icons/ico_search_active.png Binary files differdeleted file mode 100644 index 7bf7bc7..0000000 --- a/skins/nopacity/themes/default/icons/ico_search_active.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_search_inactive.png b/skins/nopacity/themes/default/icons/ico_search_inactive.png Binary files differdeleted file mode 100644 index 4a210bb..0000000 --- a/skins/nopacity/themes/default/icons/ico_search_inactive.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_stereo.png b/skins/nopacity/themes/default/icons/ico_stereo.png Binary files differdeleted file mode 100644 index 7f3610d..0000000 --- a/skins/nopacity/themes/default/icons/ico_stereo.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_stereooff.png b/skins/nopacity/themes/default/icons/ico_stereooff.png Binary files differdeleted file mode 100644 index 569a342..0000000 --- a/skins/nopacity/themes/default/icons/ico_stereooff.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_stereoon.png b/skins/nopacity/themes/default/icons/ico_stereoon.png Binary files differdeleted file mode 100644 index eb838b9..0000000 --- a/skins/nopacity/themes/default/icons/ico_stereoon.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_switchtimer.svg b/skins/nopacity/themes/default/icons/ico_switchtimer.svg deleted file mode 100644 index f3ef884..0000000 --- a/skins/nopacity/themes/default/icons/ico_switchtimer.svg +++ /dev/null @@ -1,93 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="45" - height="23" - id="svg2" - version="1.1" - inkscape:version="0.91pre2 r13516" - viewBox="0 0 45 23" - sodipodi:docname="ico_switchtimer.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.6" - inkscape:cx="-13.27009" - inkscape:cy="16.082332" - 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="metadata7"> - <rdf: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,-1029.3622)"> - <rect - style="fill:#ff7f2a;fill-opacity:1;stroke:#ececec;stroke-width:0;stroke-miterlimit:5.69999981;stroke-dasharray:none;stroke-opacity:1" - id="rect4148" - width="45" - height="23" - x="4.9999999e-006" - y="1029.3622" - ry="8.9285717" /> - <g - style="font-style:normal;font-weight:normal;font-size:12.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="text4150"> - <path - d="m 9.2532783,1042.4468 q 0,0.531 -0.2502442,1.0498 -0.2441406,0.5188 -0.6896973,0.8789 -0.4882812,0.3906 -1.1413574,0.6103 -0.6469726,0.2198 -1.5625,0.2198 -0.982666,0 -1.7700195,-0.1831 -0.78125,-0.1831 -1.5930176,-0.5433 l 0,-1.5136 0.085449,0 q 0.6896973,0.5737 1.5930176,0.885 0.9033203,0.3113 1.6967774,0.3113 1.1230468,0 1.7456054,-0.4212 0.6286621,-0.4211 0.6286621,-1.123 0,-0.6043 -0.2990722,-0.8911 -0.2929688,-0.2869 -0.8972168,-0.4456 -0.4577637,-0.1221 -0.9948731,-0.2014 -0.5310058,-0.079 -1.1291504,-0.2014 -1.2084961,-0.2564 -1.7944336,-0.8728 -0.5798339,-0.6226 -0.5798339,-1.6175 0,-1.1413 0.9643554,-1.8676 0.9643555,-0.7325 2.4475098,-0.7325 0.9582519,0 1.7578125,0.1831 0.7995605,0.1832 1.4160156,0.4517 l 0,1.4282 -0.085449,0 q -0.5187988,-0.4394 -1.3671875,-0.7263 -0.8422852,-0.293 -1.7272949,-0.293 -0.970459,0 -1.5625,0.4029 -0.5859375,0.4028 -0.5859375,1.0376 0,0.5676 0.2929687,0.8911 0.2929688,0.3235 1.0314942,0.4944 0.390625,0.085 1.1108398,0.2075 0.7202149,0.1221 1.2207031,0.2502 1.0131836,0.2686 1.5258789,0.8118 0.5126954,0.5432 0.5126954,1.5198 z" - style="" - id="path4138" /> - <path - d="m 19.678083,1038.2231 -1.776123,6.8177 -1.062012,0 -1.751709,-5.2552 -1.739502,5.2552 -1.055908,0 -1.794434,-6.8177 1.19629,0 1.25122,5.2796 1.702881,-5.2796 0.946045,0 1.745605,5.2796 1.184082,-5.2796 1.153565,0 z" - style="" - id="path4140" /> - <path - d="m 22.565046,1037.0818 -1.293945,0 0,-1.1902 1.293945,0 0,1.1902 z m -0.07324,7.959 -1.147461,0 0,-6.8177 1.147461,0 0,6.8177 z" - style="" - id="path4142" /> - <path - d="m 28.265729,1044.9797 q -0.323486,0.085 -0.708007,0.1404 -0.378418,0.055 -0.677491,0.055 -1.043701,0 -1.586914,-0.5615 -0.543213,-0.5615 -0.543213,-1.8005 l 0,-3.6255 -0.775146,0 0,-0.9644 0.775146,0 0,-1.9592 1.147461,0 0,1.9592 2.368164,0 0,0.9644 -2.368164,0 0,3.1067 q 0,0.5371 0.02441,0.8423 0.02441,0.299 0.170899,0.5615 0.134277,0.2441 0.366211,0.3601 0.238037,0.1099 0.720215,0.1099 0.280761,0 0.585937,-0.079 0.305176,-0.085 0.439453,-0.1404 l 0.06104,0 0,1.0315 z" - style="" - id="path4144" /> - <path - d="m 34.698835,1044.6135 q -0.573731,0.2747 -1.092529,0.4273 -0.512696,0.1526 -1.09253,0.1526 -0.738525,0 -1.35498,-0.2137 -0.616455,-0.2197 -1.055908,-0.6591 -0.445557,-0.4395 -0.689698,-1.1109 -0.24414,-0.6714 -0.24414,-1.5686 0,-1.6723 0.915527,-2.6245 0.921631,-0.9521 2.429199,-0.9521 0.585938,0 1.147461,0.1647 0.567627,0.1648 1.037598,0.4029 l 0,1.2756 -0.06104,0 q -0.524903,-0.4089 -1.086426,-0.6286 -0.55542,-0.2198 -1.086426,-0.2198 -0.976562,0 -1.544189,0.6592 -0.561524,0.6531 -0.561524,1.9226 0,1.2329 0.549317,1.8982 0.55542,0.6592 1.556396,0.6592 0.347901,0 0.708008,-0.092 0.360107,-0.091 0.646973,-0.238 0.250244,-0.1282 0.46997,-0.2686 0.219727,-0.1464 0.347901,-0.2502 l 0.06104,0 0,1.2634 z" - style="" - id="path4146" /> - <path - d="m 41.876569,1045.0408 -1.147461,0 0,-3.8819 q 0,-0.4699 -0.05493,-0.8789 -0.05493,-0.415 -0.201416,-0.6469 -0.152588,-0.2564 -0.439453,-0.3785 -0.286866,-0.1281 -0.744629,-0.1281 -0.469971,0 -0.982666,0.2319 -0.512696,0.2319 -0.982666,0.592 l 0,5.0904 -1.147461,0 0,-9.4971 1.147461,0 0,3.4363 q 0.537109,-0.4456 1.110839,-0.6958 0.573731,-0.2503 1.177979,-0.2503 1.104736,0 1.68457,0.6653 0.579834,0.6653 0.579834,1.9165 l 0,4.4251 z" - style="" - id="path4148" /> - </g> - </g> -</svg> diff --git a/skins/nopacity/themes/default/icons/ico_timer_active.png b/skins/nopacity/themes/default/icons/ico_timer_active.png Binary files differdeleted file mode 100644 index 28c2f81..0000000 --- a/skins/nopacity/themes/default/icons/ico_timer_active.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_timer_inactive.png b/skins/nopacity/themes/default/icons/ico_timer_inactive.png Binary files differdeleted file mode 100644 index c4b1860..0000000 --- a/skins/nopacity/themes/default/icons/ico_timer_inactive.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_timer_recording.png b/skins/nopacity/themes/default/icons/ico_timer_recording.png Binary files differdeleted file mode 100644 index 86dc66b..0000000 --- a/skins/nopacity/themes/default/icons/ico_timer_recording.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_txtoff.png b/skins/nopacity/themes/default/icons/ico_txtoff.png Binary files differdeleted file mode 100644 index 3b2eac3..0000000 --- a/skins/nopacity/themes/default/icons/ico_txtoff.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_txton.png b/skins/nopacity/themes/default/icons/ico_txton.png Binary files differdeleted file mode 100644 index 148f9ef..0000000 --- a/skins/nopacity/themes/default/icons/ico_txton.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_vdrlogo.png b/skins/nopacity/themes/default/icons/ico_vdrlogo.png Binary files differdeleted file mode 100644 index 200cea7..0000000 --- a/skins/nopacity/themes/default/icons/ico_vdrlogo.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_volume.png b/skins/nopacity/themes/default/icons/ico_volume.png Binary files differdeleted file mode 100644 index 3a72514..0000000 --- a/skins/nopacity/themes/default/icons/ico_volume.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/ico_yes.png b/skins/nopacity/themes/default/icons/ico_yes.png Binary files differdeleted file mode 100644 index 2f1af98..0000000 --- a/skins/nopacity/themes/default/icons/ico_yes.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/partly-cloudy-day.png b/skins/nopacity/themes/default/icons/partly-cloudy-day.png Binary files differdeleted file mode 100644 index b6df179..0000000 --- a/skins/nopacity/themes/default/icons/partly-cloudy-day.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/partly-cloudy-night.png b/skins/nopacity/themes/default/icons/partly-cloudy-night.png Binary files differdeleted file mode 100644 index aa358fb..0000000 --- a/skins/nopacity/themes/default/icons/partly-cloudy-night.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/rain.png b/skins/nopacity/themes/default/icons/rain.png Binary files differdeleted file mode 100644 index 8275003..0000000 --- a/skins/nopacity/themes/default/icons/rain.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/sleet.png b/skins/nopacity/themes/default/icons/sleet.png Binary files differdeleted file mode 100644 index 1d99ae0..0000000 --- a/skins/nopacity/themes/default/icons/sleet.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/snow.png b/skins/nopacity/themes/default/icons/snow.png Binary files differdeleted file mode 100644 index 939e22f..0000000 --- a/skins/nopacity/themes/default/icons/snow.png +++ /dev/null diff --git a/skins/nopacity/themes/default/icons/wind.png b/skins/nopacity/themes/default/icons/wind.png Binary files differdeleted file mode 100644 index d92ec15..0000000 --- a/skins/nopacity/themes/default/icons/wind.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/Applikationen.png b/skins/nopacity/themes/default/menuicons/customicons/Applikationen.png Binary files differdeleted file mode 100644 index 3c3b616..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/Applikationen.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/Audio.png b/skins/nopacity/themes/default/menuicons/customicons/Audio.png Binary files differdeleted file mode 100644 index ff387fe..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/Audio.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/Aufnahmen-Liste aktualisieren.png b/skins/nopacity/themes/default/menuicons/customicons/Aufnahmen-Liste aktualisieren.png Binary files differdeleted file mode 100644 index 3cdddc9..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/Aufnahmen-Liste aktualisieren.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/Dienstprogramme.png b/skins/nopacity/themes/default/menuicons/customicons/Dienstprogramme.png Binary files differdeleted file mode 100644 index 793aba6..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/Dienstprogramme.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/FireFox.png b/skins/nopacity/themes/default/menuicons/customicons/FireFox.png Binary files differdeleted file mode 100644 index 192fadc..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/FireFox.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/Info.png b/skins/nopacity/themes/default/menuicons/customicons/Info.png Binary files differdeleted file mode 100644 index 6737431..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/Info.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/Internet.png b/skins/nopacity/themes/default/menuicons/customicons/Internet.png Binary files differdeleted file mode 100644 index f3db150..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/Internet.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/Medien.png b/skins/nopacity/themes/default/menuicons/customicons/Medien.png Binary files differdeleted file mode 100644 index 0ce2360..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/Medien.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/Rechner neu starten.png b/skins/nopacity/themes/default/menuicons/customicons/Rechner neu starten.png Binary files differdeleted file mode 100644 index 5783ccf..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/Rechner neu starten.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/Remote wakeup.png b/skins/nopacity/themes/default/menuicons/customicons/Remote wakeup.png Binary files differdeleted file mode 100644 index 1cd2f6e..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/Remote wakeup.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/Spiele.png b/skins/nopacity/themes/default/menuicons/customicons/Spiele.png Binary files differdeleted file mode 100644 index 8e07161..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/Spiele.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/System herunterfahren.png b/skins/nopacity/themes/default/menuicons/customicons/System herunterfahren.png Binary files differdeleted file mode 100644 index e0234df..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/System herunterfahren.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/System.png b/skins/nopacity/themes/default/menuicons/customicons/System.png Binary files differdeleted file mode 100644 index 81d100e..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/System.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/Tools.png b/skins/nopacity/themes/default/menuicons/customicons/Tools.png Binary files differdeleted file mode 100644 index cf328ef..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/Tools.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/Tunderbird.png b/skins/nopacity/themes/default/menuicons/customicons/Tunderbird.png Binary files differdeleted file mode 100644 index 5ae27e0..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/Tunderbird.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/USB Massenspeicher sicher entfernen.png b/skins/nopacity/themes/default/menuicons/customicons/USB Massenspeicher sicher entfernen.png Binary files differdeleted file mode 100644 index cd7b81c..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/USB Massenspeicher sicher entfernen.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/VDR neu starten.png b/skins/nopacity/themes/default/menuicons/customicons/VDR neu starten.png Binary files differdeleted file mode 100644 index 14904ca..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/VDR neu starten.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/Video.png b/skins/nopacity/themes/default/menuicons/customicons/Video.png Binary files differdeleted file mode 100644 index 490ca4b..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/Video.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/Web.png b/skins/nopacity/themes/default/menuicons/customicons/Web.png Binary files differdeleted file mode 100644 index 20260e3..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/Web.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/XBMC.png b/skins/nopacity/themes/default/menuicons/customicons/XBMC.png Binary files differdeleted file mode 100644 index c7c4c04..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/XBMC.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/Xterm.png b/skins/nopacity/themes/default/menuicons/customicons/Xterm.png Binary files differdeleted file mode 100644 index fa75282..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/Xterm.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/audiovideo.png b/skins/nopacity/themes/default/menuicons/customicons/audiovideo.png Binary files differdeleted file mode 100644 index 726538d..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/audiovideo.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/markad_status.png b/skins/nopacity/themes/default/menuicons/customicons/markad_status.png Binary files differdeleted file mode 100644 index 4fdc7a4..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/markad_status.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/schneiden_abbrechen.png b/skins/nopacity/themes/default/menuicons/customicons/schneiden_abbrechen.png Binary files differdeleted file mode 100644 index b2e0bd3..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/schneiden_abbrechen.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/tux.png b/skins/nopacity/themes/default/menuicons/customicons/tux.png Binary files differdeleted file mode 100644 index c5b4742..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/tux.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/usb.png b/skins/nopacity/themes/default/menuicons/customicons/usb.png Binary files differdeleted file mode 100644 index c4db1d4..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/usb.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/vdrlogo.png b/skins/nopacity/themes/default/menuicons/customicons/vdrlogo.png Binary files differdeleted file mode 100644 index 037a191..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/vdrlogo.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/customicons/yaicon_blue.png b/skins/nopacity/themes/default/menuicons/customicons/yaicon_blue.png Binary files differdeleted file mode 100644 index 2c49273..0000000 --- a/skins/nopacity/themes/default/menuicons/customicons/yaicon_blue.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/admin.png b/skins/nopacity/themes/default/menuicons/pluginicons/admin.png Binary files differdeleted file mode 100644 index cf328ef..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/admin.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/arghdirector.png b/skins/nopacity/themes/default/menuicons/pluginicons/arghdirector.png Binary files differdeleted file mode 100644 index bbd221a..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/arghdirector.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/autostart.png b/skins/nopacity/themes/default/menuicons/pluginicons/autostart.png Binary files differdeleted file mode 100644 index 6fdb1bb..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/autostart.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/avahi4vdr.png b/skins/nopacity/themes/default/menuicons/pluginicons/avahi4vdr.png Binary files differdeleted file mode 100644 index 044e71d..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/avahi4vdr.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/avards.png b/skins/nopacity/themes/default/menuicons/pluginicons/avards.png Binary files differdeleted file mode 100644 index cf8d037..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/avards.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/block.png b/skins/nopacity/themes/default/menuicons/pluginicons/block.png Binary files differdeleted file mode 100644 index 86127c2..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/block.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/burn.png b/skins/nopacity/themes/default/menuicons/pluginicons/burn.png Binary files differdeleted file mode 100644 index 305d7ff..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/burn.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/cdplayer.png b/skins/nopacity/themes/default/menuicons/pluginicons/cdplayer.png Binary files differdeleted file mode 100644 index 89a6c19..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/cdplayer.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/chanman.png b/skins/nopacity/themes/default/menuicons/pluginicons/chanman.png Binary files differdeleted file mode 100644 index a73e83c..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/chanman.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/check.png b/skins/nopacity/themes/default/menuicons/pluginicons/check.png Binary files differdeleted file mode 100644 index d487a24..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/check.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/conflictcheckonly.png b/skins/nopacity/themes/default/menuicons/pluginicons/conflictcheckonly.png Binary files differdeleted file mode 100644 index 7f832bd..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/conflictcheckonly.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/ddci.png b/skins/nopacity/themes/default/menuicons/pluginicons/ddci.png Binary files differdeleted file mode 100644 index 4ad459c..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/ddci.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/devstatus.png b/skins/nopacity/themes/default/menuicons/pluginicons/devstatus.png Binary files differdeleted file mode 100644 index 96c0ec1..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/devstatus.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/dummydevice.png b/skins/nopacity/themes/default/menuicons/pluginicons/dummydevice.png Binary files differdeleted file mode 100644 index 11fd707..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/dummydevice.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/duplicates.png b/skins/nopacity/themes/default/menuicons/pluginicons/duplicates.png Binary files differdeleted file mode 100644 index dc1be57..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/duplicates.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/dvbapi.png b/skins/nopacity/themes/default/menuicons/pluginicons/dvbapi.png Binary files differdeleted file mode 100644 index b966461..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/dvbapi.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/dvbhddevice.png b/skins/nopacity/themes/default/menuicons/pluginicons/dvbhddevice.png Binary files differdeleted file mode 100644 index b874297..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/dvbhddevice.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/dvbsddevice.png b/skins/nopacity/themes/default/menuicons/pluginicons/dvbsddevice.png Binary files differdeleted file mode 100644 index 106184e..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/dvbsddevice.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/dynamite.png b/skins/nopacity/themes/default/menuicons/pluginicons/dynamite.png Binary files differdeleted file mode 100644 index 28ea35a..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/dynamite.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/eepg.png b/skins/nopacity/themes/default/menuicons/pluginicons/eepg.png Binary files differdeleted file mode 100644 index 3938b96..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/eepg.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/epg2vdr.png b/skins/nopacity/themes/default/menuicons/pluginicons/epg2vdr.png Binary files differdeleted file mode 100644 index ac8757e..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/epg2vdr.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/epgsearch.png b/skins/nopacity/themes/default/menuicons/pluginicons/epgsearch.png Binary files differdeleted file mode 100644 index 5eab415..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/epgsearch.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/epgsearchonly.png b/skins/nopacity/themes/default/menuicons/pluginicons/epgsearchonly.png Binary files differdeleted file mode 100644 index b5186e7..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/epgsearchonly.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/epgsync.png b/skins/nopacity/themes/default/menuicons/pluginicons/epgsync.png Binary files differdeleted file mode 100644 index 5c14009..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/epgsync.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/externalplayer.png b/skins/nopacity/themes/default/menuicons/pluginicons/externalplayer.png Binary files differdeleted file mode 100644 index 2bd67db..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/externalplayer.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/extrecmenu.png b/skins/nopacity/themes/default/menuicons/pluginicons/extrecmenu.png Binary files differdeleted file mode 100644 index 6f613f1..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/extrecmenu.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/favorites.png b/skins/nopacity/themes/default/menuicons/pluginicons/favorites.png Binary files differdeleted file mode 100644 index 409c852..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/favorites.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/femon.png b/skins/nopacity/themes/default/menuicons/pluginicons/femon.png Binary files differdeleted file mode 100644 index e87b711..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/femon.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/fepg.png b/skins/nopacity/themes/default/menuicons/pluginicons/fepg.png Binary files differdeleted file mode 100644 index 65023ed..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/fepg.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/filebrowser.png b/skins/nopacity/themes/default/menuicons/pluginicons/filebrowser.png Binary files differdeleted file mode 100644 index d3f90e0..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/filebrowser.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/fritzbox.png b/skins/nopacity/themes/default/menuicons/pluginicons/fritzbox.png Binary files differdeleted file mode 100644 index 7bfc229..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/fritzbox.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/graphlcd.png b/skins/nopacity/themes/default/menuicons/pluginicons/graphlcd.png Binary files differdeleted file mode 100644 index 39ffd35..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/graphlcd.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/graphtft.png b/skins/nopacity/themes/default/menuicons/pluginicons/graphtft.png Binary files differdeleted file mode 100644 index 39ffd35..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/graphtft.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/image.png b/skins/nopacity/themes/default/menuicons/pluginicons/image.png Binary files differdeleted file mode 100644 index 33644e0..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/image.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/imonlcd.png b/skins/nopacity/themes/default/menuicons/pluginicons/imonlcd.png Binary files differdeleted file mode 100644 index 3d34fc4..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/imonlcd.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/iptv.png b/skins/nopacity/themes/default/menuicons/pluginicons/iptv.png Binary files differdeleted file mode 100644 index 4494ddc..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/iptv.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/lcdproc.png b/skins/nopacity/themes/default/menuicons/pluginicons/lcdproc.png Binary files differdeleted file mode 100644 index 3d34fc4..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/lcdproc.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/mailbox.png b/skins/nopacity/themes/default/menuicons/pluginicons/mailbox.png Binary files differdeleted file mode 100644 index 1bc76e8..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/mailbox.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/makemkv.png b/skins/nopacity/themes/default/menuicons/pluginicons/makemkv.png Binary files differdeleted file mode 100644 index 41cddf1..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/makemkv.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/markad.png b/skins/nopacity/themes/default/menuicons/pluginicons/markad.png Binary files differdeleted file mode 100644 index b3defaf..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/markad.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/mlist.png b/skins/nopacity/themes/default/menuicons/pluginicons/mlist.png Binary files differdeleted file mode 100644 index 19c367f..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/mlist.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/music.png b/skins/nopacity/themes/default/menuicons/pluginicons/music.png Binary files differdeleted file mode 100644 index abb012e..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/music.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/noepg.png b/skins/nopacity/themes/default/menuicons/pluginicons/noepg.png Binary files differdeleted file mode 100644 index eb9410d..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/noepg.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/nordlichtsepg.png b/skins/nopacity/themes/default/menuicons/pluginicons/nordlichtsepg.png Binary files differdeleted file mode 100644 index 3ee3fa2..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/nordlichtsepg.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/osdteletext.png b/skins/nopacity/themes/default/menuicons/pluginicons/osdteletext.png Binary files differdeleted file mode 100644 index 664e770..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/osdteletext.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/peer.png b/skins/nopacity/themes/default/menuicons/pluginicons/peer.png Binary files differdeleted file mode 100644 index 998d568..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/peer.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/play.png b/skins/nopacity/themes/default/menuicons/pluginicons/play.png Binary files differdeleted file mode 100644 index 2848fc6..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/play.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/pvrinput.png b/skins/nopacity/themes/default/menuicons/pluginicons/pvrinput.png Binary files differdeleted file mode 100644 index 724f698..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/pvrinput.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/quickepgsearch.png b/skins/nopacity/themes/default/menuicons/pluginicons/quickepgsearch.png Binary files differdeleted file mode 100644 index 76a31f4..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/quickepgsearch.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/radio.png b/skins/nopacity/themes/default/menuicons/pluginicons/radio.png Binary files differdeleted file mode 100644 index 193b7d4..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/radio.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/remote.png b/skins/nopacity/themes/default/menuicons/pluginicons/remote.png Binary files differdeleted file mode 100644 index 7f46b1b..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/remote.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/remotetimers.png b/skins/nopacity/themes/default/menuicons/pluginicons/remotetimers.png Binary files differdeleted file mode 100644 index fae3b79..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/remotetimers.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/rssreader.png b/skins/nopacity/themes/default/menuicons/pluginicons/rssreader.png Binary files differdeleted file mode 100644 index db538f0..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/rssreader.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/sc.png b/skins/nopacity/themes/default/menuicons/pluginicons/sc.png Binary files differdeleted file mode 100644 index 2472d6c..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/sc.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/screenshot.png b/skins/nopacity/themes/default/menuicons/pluginicons/screenshot.png Binary files differdeleted file mode 100644 index be9b4d5..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/screenshot.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/seduatmo.png b/skins/nopacity/themes/default/menuicons/pluginicons/seduatmo.png Binary files differdeleted file mode 100644 index 4b5292f..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/seduatmo.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/skyselectfeeds.png b/skins/nopacity/themes/default/menuicons/pluginicons/skyselectfeeds.png Binary files differdeleted file mode 100644 index d81a024..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/skyselectfeeds.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/sleeptimer.png b/skins/nopacity/themes/default/menuicons/pluginicons/sleeptimer.png Binary files differdeleted file mode 100644 index cd4956f..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/sleeptimer.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/softhddevice.png b/skins/nopacity/themes/default/menuicons/pluginicons/softhddevice.png Binary files differdeleted file mode 100644 index df13f2c..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/softhddevice.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/streamdev-server.png b/skins/nopacity/themes/default/menuicons/pluginicons/streamdev-server.png Binary files differdeleted file mode 100644 index e89ed8b..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/streamdev-server.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/systeminfo.png b/skins/nopacity/themes/default/menuicons/pluginicons/systeminfo.png Binary files differdeleted file mode 100644 index b14763f..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/systeminfo.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/targavfd.png b/skins/nopacity/themes/default/menuicons/pluginicons/targavfd.png Binary files differdeleted file mode 100644 index e91b111..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/targavfd.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/trayopenng.png b/skins/nopacity/themes/default/menuicons/pluginicons/trayopenng.png Binary files differdeleted file mode 100644 index 6ebd17d..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/trayopenng.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/tvguide.png b/skins/nopacity/themes/default/menuicons/pluginicons/tvguide.png Binary files differdeleted file mode 100644 index 968a37c..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/tvguide.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/tvm2vdr.png b/skins/nopacity/themes/default/menuicons/pluginicons/tvm2vdr.png Binary files differdeleted file mode 100644 index 47f9a91..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/tvm2vdr.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/tvscraper.png b/skins/nopacity/themes/default/menuicons/pluginicons/tvscraper.png Binary files differdeleted file mode 100644 index a106cb5..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/tvscraper.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/undelete.png b/skins/nopacity/themes/default/menuicons/pluginicons/undelete.png Binary files differdeleted file mode 100644 index a53d50a..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/undelete.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/weatherforecast.png b/skins/nopacity/themes/default/menuicons/pluginicons/weatherforecast.png Binary files differdeleted file mode 100644 index a88f11d..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/weatherforecast.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/weatherng.png b/skins/nopacity/themes/default/menuicons/pluginicons/weatherng.png Binary files differdeleted file mode 100644 index a88f11d..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/weatherng.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/xmltv2vdr.png b/skins/nopacity/themes/default/menuicons/pluginicons/xmltv2vdr.png Binary files differdeleted file mode 100644 index ea73c74..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/xmltv2vdr.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/pluginicons/yaepghg.png b/skins/nopacity/themes/default/menuicons/pluginicons/yaepghg.png Binary files differdeleted file mode 100644 index 53ce443..0000000 --- a/skins/nopacity/themes/default/menuicons/pluginicons/yaepghg.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/CAM.png b/skins/nopacity/themes/default/menuicons/standardicons/CAM.png Binary files differdeleted file mode 100644 index a394877..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/CAM.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/Channels.png b/skins/nopacity/themes/default/menuicons/standardicons/Channels.png Binary files differdeleted file mode 100644 index ba2ba78..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/Channels.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/Commands.png b/skins/nopacity/themes/default/menuicons/standardicons/Commands.png Binary files differdeleted file mode 100644 index c6a83ef..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/Commands.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/DVB.png b/skins/nopacity/themes/default/menuicons/standardicons/DVB.png Binary files differdeleted file mode 100644 index 3789145..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/DVB.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/EPG.png b/skins/nopacity/themes/default/menuicons/standardicons/EPG.png Binary files differdeleted file mode 100644 index e868b90..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/EPG.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/LNB.png b/skins/nopacity/themes/default/menuicons/standardicons/LNB.png Binary files differdeleted file mode 100644 index 896dd99..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/LNB.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/Miscellaneous.png b/skins/nopacity/themes/default/menuicons/standardicons/Miscellaneous.png Binary files differdeleted file mode 100644 index 2a41c4d..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/Miscellaneous.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/OSD.png b/skins/nopacity/themes/default/menuicons/standardicons/OSD.png Binary files differdeleted file mode 100644 index 8f571c6..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/OSD.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/Plugins.png b/skins/nopacity/themes/default/menuicons/standardicons/Plugins.png Binary files differdeleted file mode 100644 index 3fcba70..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/Plugins.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/Recording.png b/skins/nopacity/themes/default/menuicons/standardicons/Recording.png Binary files differdeleted file mode 100644 index 741b1af..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/Recording.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/Recordings.png b/skins/nopacity/themes/default/menuicons/standardicons/Recordings.png Binary files differdeleted file mode 100644 index 79aeeb7..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/Recordings.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/Replay.png b/skins/nopacity/themes/default/menuicons/standardicons/Replay.png Binary files differdeleted file mode 100644 index 621596c..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/Replay.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/Restart.png b/skins/nopacity/themes/default/menuicons/standardicons/Restart.png Binary files differdeleted file mode 100644 index aa23cd4..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/Restart.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/Schedule.png b/skins/nopacity/themes/default/menuicons/standardicons/Schedule.png Binary files differdeleted file mode 100644 index 3a98cac..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/Schedule.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/Setup.png b/skins/nopacity/themes/default/menuicons/standardicons/Setup.png Binary files differdeleted file mode 100644 index d121148..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/Setup.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/StopRecording.png b/skins/nopacity/themes/default/menuicons/standardicons/StopRecording.png Binary files differdeleted file mode 100644 index ed83fbb..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/StopRecording.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/StopReplay.png b/skins/nopacity/themes/default/menuicons/standardicons/StopReplay.png Binary files differdeleted file mode 100644 index 9192760..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/StopReplay.png +++ /dev/null diff --git a/skins/nopacity/themes/default/menuicons/standardicons/Timers.png b/skins/nopacity/themes/default/menuicons/standardicons/Timers.png Binary files differdeleted file mode 100644 index b866c36..0000000 --- a/skins/nopacity/themes/default/menuicons/standardicons/Timers.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/buttonblue.png b/skins/nopacity/themes/default/skinparts/buttonblue.png Binary files differdeleted file mode 100644 index d00e4d2..0000000 --- a/skins/nopacity/themes/default/skinparts/buttonblue.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/buttongreen.png b/skins/nopacity/themes/default/skinparts/buttongreen.png Binary files differdeleted file mode 100644 index 8c05c08..0000000 --- a/skins/nopacity/themes/default/skinparts/buttongreen.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/buttonred.png b/skins/nopacity/themes/default/skinparts/buttonred.png Binary files differdeleted file mode 100644 index 9367c9b..0000000 --- a/skins/nopacity/themes/default/skinparts/buttonred.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/buttonyellow.png b/skins/nopacity/themes/default/skinparts/buttonyellow.png Binary files differdeleted file mode 100644 index aff8758..0000000 --- a/skins/nopacity/themes/default/skinparts/buttonyellow.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/channellogoback.png b/skins/nopacity/themes/default/skinparts/channellogoback.png Binary files differdeleted file mode 100644 index b0e83b1..0000000 --- a/skins/nopacity/themes/default/skinparts/channellogoback.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/discpercent.png b/skins/nopacity/themes/default/skinparts/discpercent.png Binary files differdeleted file mode 100644 index cf32be2..0000000 --- a/skins/nopacity/themes/default/skinparts/discpercent.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/displaychannelback.png b/skins/nopacity/themes/default/skinparts/displaychannelback.png Binary files differdeleted file mode 100644 index 1437384..0000000 --- a/skins/nopacity/themes/default/skinparts/displaychannelback.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/displaychanneltop.png b/skins/nopacity/themes/default/skinparts/displaychanneltop.png Binary files differdeleted file mode 100644 index 5108435..0000000 --- a/skins/nopacity/themes/default/skinparts/displaychanneltop.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/displayreplayback.png b/skins/nopacity/themes/default/skinparts/displayreplayback.png Binary files differdeleted file mode 100644 index d72931f..0000000 --- a/skins/nopacity/themes/default/skinparts/displayreplayback.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/displayreplaytop.png b/skins/nopacity/themes/default/skinparts/displayreplaytop.png Binary files differdeleted file mode 100644 index 064347e..0000000 --- a/skins/nopacity/themes/default/skinparts/displayreplaytop.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/displayvolume.png b/skins/nopacity/themes/default/skinparts/displayvolume.png Binary files differdeleted file mode 100644 index a5c4c66..0000000 --- a/skins/nopacity/themes/default/skinparts/displayvolume.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/headertop.png b/skins/nopacity/themes/default/skinparts/headertop.png Binary files differdeleted file mode 100644 index 2bc19a6..0000000 --- a/skins/nopacity/themes/default/skinparts/headertop.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/menubutton.png b/skins/nopacity/themes/default/skinparts/menubutton.png Binary files differdeleted file mode 100644 index 0800a5e..0000000 --- a/skins/nopacity/themes/default/skinparts/menubutton.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/menubuttonactive.png b/skins/nopacity/themes/default/skinparts/menubuttonactive.png Binary files differdeleted file mode 100644 index caae104..0000000 --- a/skins/nopacity/themes/default/skinparts/menubuttonactive.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/menubuttondefault.png b/skins/nopacity/themes/default/skinparts/menubuttondefault.png Binary files differdeleted file mode 100644 index 76735de..0000000 --- a/skins/nopacity/themes/default/skinparts/menubuttondefault.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/menubuttondefaultactive.png b/skins/nopacity/themes/default/skinparts/menubuttondefaultactive.png Binary files differdeleted file mode 100644 index 70c0b8a..0000000 --- a/skins/nopacity/themes/default/skinparts/menubuttondefaultactive.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/menubuttontop.png b/skins/nopacity/themes/default/skinparts/menubuttontop.png Binary files differdeleted file mode 100644 index 1b49cfd..0000000 --- a/skins/nopacity/themes/default/skinparts/menubuttontop.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/messageError.png b/skins/nopacity/themes/default/skinparts/messageError.png Binary files differdeleted file mode 100644 index a894992..0000000 --- a/skins/nopacity/themes/default/skinparts/messageError.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/messageInfo.png b/skins/nopacity/themes/default/skinparts/messageInfo.png Binary files differdeleted file mode 100644 index 5f8e62a..0000000 --- a/skins/nopacity/themes/default/skinparts/messageInfo.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/messageStatus.png b/skins/nopacity/themes/default/skinparts/messageStatus.png Binary files differdeleted file mode 100644 index f4b83f4..0000000 --- a/skins/nopacity/themes/default/skinparts/messageStatus.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/messageWarning.png b/skins/nopacity/themes/default/skinparts/messageWarning.png Binary files differdeleted file mode 100644 index f073ed5..0000000 --- a/skins/nopacity/themes/default/skinparts/messageWarning.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/scrollbar.png b/skins/nopacity/themes/default/skinparts/scrollbar.png Binary files differdeleted file mode 100644 index f822555..0000000 --- a/skins/nopacity/themes/default/skinparts/scrollbar.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/signal.png b/skins/nopacity/themes/default/skinparts/signal.png Binary files differdeleted file mode 100644 index 4f03c7a..0000000 --- a/skins/nopacity/themes/default/skinparts/signal.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_button.png b/skins/nopacity/themes/default/skinparts/tvguide_button.png Binary files differdeleted file mode 100644 index 7a43e01..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_button.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_button_active.png b/skins/nopacity/themes/default/skinparts/tvguide_button_active.png Binary files differdeleted file mode 100644 index 22d167e..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_button_active.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_bottom.png b/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_bottom.png Binary files differdeleted file mode 100644 index c37ba42..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_bottom.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_head.png b/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_head.png Binary files differdeleted file mode 100644 index 75ee8a8..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_head.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_horizontal.png b/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_horizontal.png Binary files differdeleted file mode 100644 index ead7606..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_horizontal.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_left.png b/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_left.png Binary files differdeleted file mode 100644 index 30e1b45..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_left.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_right.png b/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_right.png Binary files differdeleted file mode 100644 index d89657c..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_right.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_vertical.png b/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_vertical.png Binary files differdeleted file mode 100644 index 64134c7..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_channelgroup_vertical.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_channellogoback_horizontal.png b/skins/nopacity/themes/default/skinparts/tvguide_channellogoback_horizontal.png Binary files differdeleted file mode 100644 index 2df7f52..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_channellogoback_horizontal.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_channellogoback_vertical.png b/skins/nopacity/themes/default/skinparts/tvguide_channellogoback_vertical.png Binary files differdeleted file mode 100644 index 669beeb..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_channellogoback_vertical.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_clock.png b/skins/nopacity/themes/default/skinparts/tvguide_clock.png Binary files differdeleted file mode 100644 index 3df1dae..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_clock.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_date_vertical.png b/skins/nopacity/themes/default/skinparts/tvguide_date_vertical.png Binary files differdeleted file mode 100644 index 58a72e4..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_date_vertical.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_grid_active_bottom.png b/skins/nopacity/themes/default/skinparts/tvguide_grid_active_bottom.png Binary files differdeleted file mode 100644 index 28fb443..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_grid_active_bottom.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_grid_active_head.png b/skins/nopacity/themes/default/skinparts/tvguide_grid_active_head.png Binary files differdeleted file mode 100644 index a494d95..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_grid_active_head.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_grid_active_horizontal.png b/skins/nopacity/themes/default/skinparts/tvguide_grid_active_horizontal.png Binary files differdeleted file mode 100644 index 368309f..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_grid_active_horizontal.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_grid_active_left.png b/skins/nopacity/themes/default/skinparts/tvguide_grid_active_left.png Binary files differdeleted file mode 100644 index 0548e21..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_grid_active_left.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_grid_active_right.png b/skins/nopacity/themes/default/skinparts/tvguide_grid_active_right.png Binary files differdeleted file mode 100644 index 2aee1d6..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_grid_active_right.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_grid_active_vertical.png b/skins/nopacity/themes/default/skinparts/tvguide_grid_active_vertical.png Binary files differdeleted file mode 100644 index 6aba9d1..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_grid_active_vertical.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_grid_bottom.png b/skins/nopacity/themes/default/skinparts/tvguide_grid_bottom.png Binary files differdeleted file mode 100644 index e90e05e..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_grid_bottom.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_grid_head.png b/skins/nopacity/themes/default/skinparts/tvguide_grid_head.png Binary files differdeleted file mode 100644 index 4196cd8..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_grid_head.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_grid_horizontal.png b/skins/nopacity/themes/default/skinparts/tvguide_grid_horizontal.png Binary files differdeleted file mode 100644 index 6bccb3f..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_grid_horizontal.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_grid_left.png b/skins/nopacity/themes/default/skinparts/tvguide_grid_left.png Binary files differdeleted file mode 100644 index 7b17046..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_grid_left.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_grid_right.png b/skins/nopacity/themes/default/skinparts/tvguide_grid_right.png Binary files differdeleted file mode 100644 index 17fe003..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_grid_right.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_grid_vertical.png b/skins/nopacity/themes/default/skinparts/tvguide_grid_vertical.png Binary files differdeleted file mode 100644 index e7192ac..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_grid_vertical.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_header.png b/skins/nopacity/themes/default/skinparts/tvguide_header.png Binary files differdeleted file mode 100644 index 24fd20c..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_header.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_timelinebright_horizontal.png b/skins/nopacity/themes/default/skinparts/tvguide_timelinebright_horizontal.png Binary files differdeleted file mode 100644 index 9240b37..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_timelinebright_horizontal.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_timelinebright_vertical.png b/skins/nopacity/themes/default/skinparts/tvguide_timelinebright_vertical.png Binary files differdeleted file mode 100644 index 5466546..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_timelinebright_vertical.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_timelinedark_horizontal.png b/skins/nopacity/themes/default/skinparts/tvguide_timelinedark_horizontal.png Binary files differdeleted file mode 100644 index 4364677..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_timelinedark_horizontal.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_timelinedark_vertical.png b/skins/nopacity/themes/default/skinparts/tvguide_timelinedark_vertical.png Binary files differdeleted file mode 100644 index dfa06c9..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_timelinedark_vertical.png +++ /dev/null diff --git a/skins/nopacity/themes/default/skinparts/tvguide_tvframe.png b/skins/nopacity/themes/default/skinparts/tvguide_tvframe.png Binary files differdeleted file mode 100644 index cdb800c..0000000 --- a/skins/nopacity/themes/default/skinparts/tvguide_tvframe.png +++ /dev/null diff --git a/skins/nopacity/themes/default/theme.xml b/skins/nopacity/themes/default/theme.xml deleted file mode 100644 index 36af8e4..0000000 --- a/skins/nopacity/themes/default/theme.xml +++ /dev/null @@ -1,29 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE globals SYSTEM "../../../../dtd/globals.dtd"> - -<globals> - <colors> - <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="clrTransWhite">99FFFFFF</color> - <color name="clrBlack">FF000000</color> - <color name="clrProgressbar">FF8EAB21</color> - <color name="clrScrollbar">FF8EAB21</color> - <color name="clrBorder">FF4C5C11</color> - <color name="clrGray">FF858585</color> - <color name="clrBackground">B012273F</color> - <color name="clrBackgroundOpaque">FF12273F</color> - <color name="clrTransBlack">99000000</color> - <color name="clrTransBlackDark">CC000000</color> - <color name="clrTransRed">99FF0000</color> - <color name="clrFontMenuItem">FFFFFFFF</color> - <color name="clrFontMenuItemSelected">FF363636</color> - <color name="clrFontInactive">FF858585</color> - <color name="clrTransparent">00000000</color> - </colors> - <variables> - </variables> -</globals> diff --git a/skins/nopacity/xmlfiles/displayaudiotracks.xml b/skins/nopacity/xmlfiles/displayaudiotracks.xml deleted file mode 100644 index b141439..0000000 --- a/skins/nopacity/xmlfiles/displayaudiotracks.xml +++ /dev/null @@ -1,46 +0,0 @@ -<?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="{clrTransBlack}" /> - </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 x="10" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrWhite}" text="{title}" /> - <drawimage condition="{isstereo}" imagetype="icon" path="ico_stereo" x="{areawidth} - {areaheight}*0.9" valign="center" width="{areaheight}*0.9" height="{areaheight}*0.9"/> - <drawimage condition="{isac3}" imagetype="icon" path="ico_ac3" x="{areawidth} - {areaheight}*0.9" valign="center" width="{areaheight}*0.9" height="{areaheight}*0.9"/> - </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> - <!-- Background --> - <area x="1%" width="98%" layer="2"> - <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - </area> - <area x="1%" width="98%" layer="3"> - <drawtext x="10" valign="center" font="{vdrOsd}" fontsize="60%" color="{clrWhite}" text="{title}" /> - </area> - </listelement> - </menuitems> - -</displayaudiotracks> diff --git a/skins/nopacity/xmlfiles/displaychannel.xml b/skins/nopacity/xmlfiles/displaychannel.xml deleted file mode 100644 index 354e1a7..0000000 --- a/skins/nopacity/xmlfiles/displaychannel.xml +++ /dev/null @@ -1,225 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE displaychannel SYSTEM "../../../dtd/displaychannel.dtd"> - -<displaychannel x="0" y="0" width="100%" height="100%" fadetime="{fadeTime}"> - - <background> - <area x="1%" y="74%" width="98%" height="25%" layer="1" transparency="{transparency}"> - <drawimage imagetype="skinpart" path="displaychannelback" x="0" y="0" width="100%" height="100%"/> - </area> - <area x="1%" y="74%" width="98%" height="25%" layer="7"> - <drawimage imagetype="skinpart" path="displaychanneltop" x="0" y="0" width="100%" height="100%"/> - </area> - <area x="2%" y="80%" width="14%" height="18%" layer="2"> - <drawimage imagetype="skinpart" path="channellogoback" 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="2%" y="80%" width="14%" height="18%" layer="3"> - <drawimage cache="true" imagetype="channellogo" path="{channelid}" width="94%" height="94%" align="center" valign="center"/> - </area> - <area x="18%" y="74%" width="42%" height="6%" layer="2"> - <drawtext x="0" valign="center" font="{vdrOsd}" fontsize="95%" width="100%" color="{clrWhite}" text="{channelnumber} {channelname}" /> - </area> - </channelinfo> - - <!-- 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 - {year} year in yyyy - --> - <datetime> - <area x="78%" y="74%" width="20%" height="6%" layer="2"> - <drawtext align="right" valign="center" font="{vdrOsd}" fontsize="70%" color="{clrWhite}" text="{daynameshort} {day}.{month} {time}" /> - </area> - </datetime> - - <currentweather> - <area condition="{showweather}" x="60%" y="74%" width="18%" height="6%" layer="2"> - <drawimage name="weathericon" imagetype="icon" path="{icon}" x="{areawidth}/2 + {width(temperature)}/2 - {width(weathericon)}/2 + 5" valign="center" width="{areaheight}*0.7" height="{areaheight}*0.7"/> - <drawtext name="temperature" x="{areawidth}/2 - {width(temperature)}/2 - {width(weathericon)}/2" valign="center" font="{vdrOsd}" fontsize="70%" color="{clrWhite}" text="{temperature}°C" /> - </area> - </currentweather> - - <!-- 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 - {currentelapsed} Elapsed time of current Schedule in min - {currentremaining} Remaining time of current Schedule in min - {currentrecording} true if current Schedule is recorded - {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 - {nextrecording} true if next Schedule will be recorded - --> - <epginfo> - <area x="18%" y="82%" width="68%" height="6%" layer="2"> - <drawtext name="starttime" x="0" y="0" font="{vdrOsd}" fontsize="60%" color="{clrWhite}" text="{currentstart}" /> - <drawtext x="{width(starttime)} + 15" y="0" width="{areawidth} - {width(starttime)} - 15" font="{vdrOsd}" fontsize="60%" color="{clrWhite}" text="{currenttitle}" /> - <drawtext x="{width(starttime)} + 16" y="55%" width="{areawidth} - {width(starttime)} - 16" font="{vdrOsd}" fontsize="45%" color="{clrWhite}" text="{currentsubtitle}" /> - </area> - <area x="86%" y="82%" width="11%" height="6%" layer="2"> - <drawtext align="right" y="0" font="{vdrOsd}" fontsize="60%" color="{clrWhite}" text="{currentelapsed}/{currentduration}min" /> - </area> - <area x="18%" y="88%" width="72%" height="6%" layer="2"> - <drawtext name="starttime" x="0" y="0" font="{vdrOsd}" fontsize="60%" color="{clrGray}" text="{nextstart}" /> - <drawtext x="{width(starttime)} + 15" y="0" width="{areawidth} - {width(starttime)} - 15" font="{vdrOsd}" fontsize="60%" color="{clrGray}" text="{nexttitle}" /> - <drawtext x="{width(starttime)} + 16" y="55%" width="{areawidth} - {width(starttime)} - 16" font="{vdrOsd}" fontsize="45%" color="{clrGray}" text="{nextsubtitle}" /> - </area> - <area x="90%" y="88%" width="7%" height="6%" layer="2"> - <drawtext align="right" y="0" font="{vdrOsd}" fontsize="60%" color="{clrGray}" text="{nextduration}min" /> - </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="17%" y="80%" width="81%" height="2%" layer="2"> - <drawellipse x="1" y="1" width="{areaheight}-2" height="{areaheight}-2" color="{clrProgressbar}" quadrant="0" /> - <drawellipse x="1 + {elapsed}/{duration}*{areawidth} - {elapsed}/{duration}*{areaheight}" y="1" width="{areaheight}-2" height="{areaheight}-2" color="{clrProgressbar}" quadrant="0" /> - <drawrectangle x="{areaheight}/2" y="1" width="{elapsed}/{duration}*{areawidth} - {elapsed}/{duration}*{areaheight}" height="{areaheight}-2" color="{clrProgressbar}" /> - </area> - </progressbar> - - <progressbarback> - <area x="17%" y="80%" width="81%" height="2%" layer="2"> - <drawellipse x="0" y="0" width="{areaheight}" height="{areaheight}" color="{clrBlack}" quadrant="0" /> - <drawellipse x="{areawidth}-{areaheight}" y="0" width="{areaheight}" height="{areaheight}" color="{clrBlack}" quadrant="0" /> - <drawrectangle x="{areaheight}/2" y="0" width="{areawidth} - {areaheight}" height="{areaheight}" color="{clrBlack}" /> - </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 - --> - <statusinfo> - <area x="{areawidth}*0.98 - {areaheight}*0.40 - 25" y="93%" width="{areaheight}*0.25 + 20" height="5%" layer="2"> - <drawimage condition="{hasVT}" imagetype="icon" path="ico_txton" x="0" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="not{hasVT}" imagetype="icon" path="ico_txtoff" x="0" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{isStereo}" imagetype="icon" path="ico_stereoon" x="{areaheight}+5" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="not{isStereo}" imagetype="icon" path="ico_stereooff" x="{areaheight}+5" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{isDolby}" imagetype="icon" path="ico_dolbyon" x="2*{areaheight}+10" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="not{isDolby}" imagetype="icon" path="ico_dolbyoff" x="2*{areaheight}+10" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{isEncrypted}" imagetype="icon" path="ico_encrypted" x="3*{areaheight}+15" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="not{isEncrypted}" imagetype="icon" path="ico_fta" x="3*{areaheight}+15" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{isRecording}" imagetype="icon" path="ico_recon" x="4*{areaheight}+20" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="not{isRecording}" imagetype="icon" path="ico_recoff" x="4*{areaheight}+20" y="0" width="{areaheight}" height="{areaheight}"/> - </area> - </statusinfo> - - <!-- 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="{areawidth}*0.98 - {areaheight}*0.15" y="93%" width="{areaheight}*0.15" height="5%" layer="2"> - <drawimage imagetype="icon" path="ico_{resolution}" x="0" 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="2%" y="80%" width="14%" height="18%" layer="2"> - <drawimage condition="{sepexists}" imagetype="seplogo" path="{seppath}" width="96%" height="96%" align="center" valign="center" /> - <drawimage condition="not{sepexists}" imagetype="icon" path="ico_channelsep" align="center" valign="center" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - </area> - <area x="18%" y="82%" width="80%" height="10%" layer="2"> - <drawtext x="0" width="25%" valign="center" font="{vdrOsd}" fontsize="60%" color="{clrWhite}" text="{prevgroup}" /> - <drawtext x="30%" width="40%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrWhite}" text="{group}" /> - <drawtext align="right" width="25%" valign="center" font="{vdrOsd}" fontsize="60%" color="{clrWhite}" text="{nextgroup}" /> - <drawimage imagetype="icon" path="ico_arrow_left_channelsep" x="25%" valign="center" width="{areawidth}*4/100" height="{areawidth}*4/100"/> - <drawimage imagetype="icon" path="ico_arrow_right_channelsep" x="71%" valign="center" width="{areawidth}*4/100" height="{areawidth}*4/100"/> - </area> - </channelgroup> - <!-- Available Variables signalquality: - {signalstrength} STR value of currently displayed channel - {signalquality} SNR value of currently displayed channel - --> - <signalquality> - <area x="17%" y="95%" width="15%" height="4%" layer="3"> - <drawrectangle x="{areawidth}*{signalstrength}/100" y="0" width="{areawidth} - {areawidth}*{signalstrength}/100" height="45%" color="{clrTransBlack}" /> - <drawrectangle x="{areawidth}*{signalquality}/100" y="50%" width="{areawidth} - {areawidth}*{signalquality}/100" height="45%" color="{clrTransBlack}" /> - </area> - </signalquality> - - <!-- background of signalmeter, will only be drawn if signalquality was deleted --> - <signalqualityback> - <area x="17%" y="95%" width="15%" height="4%" layer="2"> - <drawimage imagetype="skinpart" path="signal" x="0" y="0" width="100%" height="45%"/> - <drawimage imagetype="skinpart" path="signal" x="0" y="50%" width="100%" height="45%"/> - </area> - </signalqualityback> - - <!-- Available Variables scrapercontent: - {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> - <area condition="{showposter}++{isbanner}" x="1%" y="1%" width="{areaheight}*0.13*{mediawidth}/{mediaheight}" height="13%" layer="2"> - <drawimage imagetype="image" path="{mediapath}" align="center" valign="center" width="{areawidth}" height="{areaheight}"/> - </area> - <area condition="{showposter}++not{isbanner}" x="1%" y="1%" width="{areaheight}*0.5*{mediawidth}/{mediaheight}" height="50%" layer="2"> - <drawimage imagetype="image" path="{mediapath}" x="5" y="5" width="{areawidth}-10" height="{areaheight}-10"/> - </area> - </scrapercontent> - - <!-- 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="88%" width="90%" height="10%" layer="6"> - <drawimage condition="{status}" imagetype="skinpart" path="messageStatus" x="0" y="0" width="100%" height="100%" /> - <drawimage condition="{info}" imagetype="skinpart" path="messageInfo" x="0" y="0" width="100%" height="100%" /> - <drawimage condition="{warning}" imagetype="skinpart" path="messageWarning" x="0" y="0" width="100%" height="100%" /> - <drawimage condition="{error}" imagetype="skinpart" path="messageError" x="0" y="0" width="100%" height="100%" /> - </area> - <area x="5%" y="88%" width="90%" height="10%" layer="7"> - <drawtext align="center" valign="center" font="{light}" fontsize="50%" color="{clrWhite}" text="{text}" /> - </area> - </message> - -</displaychannel> diff --git a/skins/nopacity/xmlfiles/displaymenu.xml b/skins/nopacity/xmlfiles/displaymenu.xml deleted file mode 100644 index f6040f6..0000000 --- a/skins/nopacity/xmlfiles/displaymenu.xml +++ /dev/null @@ -1,188 +0,0 @@ -<?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"> - <!-- top bar --> - <drawrectangle x="0" y="0" width="{areawidth}" height="10%" color="{clrBackground}" /> - <drawrectangle x="30%" y="{areaheight}*0.1 - 1" width="71%" height="1" color="{clrBorder}" /> - <!-- menu bar --> - <drawrectangle x="0" y="10%" width="{areawidth}*29/100" height="81%" color="{clrBackground}" /> - <drawrectangle x="{areawidth}*29/100 - 1" y="12%" width="1" height="76%" color="{clrBorder}" /> - <!-- bottom bar --> - <drawrectangle x="0" y="90%" width="{areawidth}" height="10%" color="{clrBackground}" /> - <drawrectangle x="30%" y="{areaheight}*0.9 - 1" width="71%" height="1" color="{clrBorder}" /> - <!-- upper corner --> - <drawellipse x="{areawidth}*29/100" y="{areaheight}/10" width="{areawidth}*2/100" height="{areawidth}*2/100" quadrant="-2" color="{clrBorder}" /> - <drawellipse x="{areawidth}*29/100 - 1" y="{areaheight}/10 - 1" width="{areawidth}*2/100" height="{areawidth}*2/100" quadrant="-2" color="{clrBackground}" /> - <!-- lower corner --> - <drawellipse x="{areawidth}*29/100" y="{areaheight}*90/100 - {areawidth}*2/100" width="{areawidth}*2/100" height="{areawidth}*2/100" quadrant="-3" color="{clrBorder}" /> - <drawellipse x="{areawidth}*29/100 - 1" y="{areaheight}*90/100 - {areawidth}*2/100 + 1" width="{areawidth}*2/100" height="{areawidth}*2/100" quadrant="-3" color="{clrBackground}" /> - </area> - <area x="0" y="0" width="100%" height="10%" layer="2"> - <drawimage imagetype="skinpart" path="headertop" 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 - --> - <header> - <area x="1%" y="0" width="64%" height="10%" layer="3"> - <drawtext x="0" valign="center" font="{vdrOsd}" fontsize="50%" 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 - {year} year in yyyy - --> - <datetime> - <area x="65%" y="0" width="34%" height="10%" layer="3"> - <drawtext align="right" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrWhite}" text="{daynameshort} {day}.{month} {time}" /> - </area> - </datetime> - <!-- 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="messageStatus" x="0" y="0" width="100%" height="100%" /> - <drawimage condition="{info}" imagetype="skinpart" path="messageInfo" x="0" y="0" width="100%" height="100%" /> - <drawimage condition="{warning}" imagetype="skinpart" path="messageWarning" x="0" y="0" width="100%" height="100%" /> - <drawimage condition="{error}" imagetype="skinpart" path="messageError" 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="{light}" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" color="{clrWhite}" text="{blue}" /> - </area> - </colorbuttons> - &displaymenudefault; - &displaymenumain; - &displaymenusetup; - &displaymenuschedules; - &displaymenutimers; - &displaymenuchannels; - &displaymenurecordings; - &displaymenudetailepg; - &displaymenudetailrecording; - &displaymenudetailtext; -</displaymenu> diff --git a/skins/nopacity/xmlfiles/displaymenuchannels.xml b/skins/nopacity/xmlfiles/displaymenuchannels.xml deleted file mode 100644 index 8a0ff34..0000000 --- a/skins/nopacity/xmlfiles/displaymenuchannels.xml +++ /dev/null @@ -1,127 +0,0 @@ -<menuchannels x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="33%" scaletvy="10%" scaletvwidth="65%" scaletvheight="80%"> - <scrollbar> - <area x="30%" y="11%" width="2%" height="78%" layer="2"> - <fill color="{clrBorder}" /> - <drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" /> - <drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrScrollbar}" /> - </area> - </scrollbar> - - <menuitems x="{areawidth}*0.005" y="10%" orientation="vertical" width="99%" height="80%" align="center" numlistelements="10"> - <!-- Available Variables channels menu listelement: - {number} number of the displayed channel - {name} name of the displayed channel - {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> - <!-- background and foreground--> - <area x="0" width="28%" layer="2"> - <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - </area> - <!-- channel logo --> - <area condition="not{separator}" x="5" width="6%" layer="3"> - <drawimage name="logo" imagetype="channellogo" path="{channelid}" x="0" width="100%" height="100%" valign="center" /> - </area> - <!-- scrollable channel name --> - <areascroll condition="not{separator}++not{current}" scrollelement="channelname" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="7%" width="20%" layer="3"> - <drawtext name="channelname" x="0" y="5" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItem}" text="{number} {name}" /> - </areascroll> - <areascroll condition="not{separator}++{current}" scrollelement="channelname" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="7%" width="20%" layer="3"> - <drawtext name="channelname" x="0" y="5" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItemSelected}" text="{number} {name}" /> - </areascroll> - <!-- channel information --> - <area condition="not{separator}++not{current}" x="7%" width="20%" layer="3"> - <drawtext x="0" y="60%" font="{vdrOsd}" fontsize="30%" color="{clrFontMenuItem}" text="{sourcedescription}, {tr(transponder)} {transponder}" /> - </area> - <area condition="not{separator}++{current}" x="7%" width="20%" layer="3"> - <drawtext x="0" y="60%" font="{vdrOsd}" fontsize="30%" color="{clrFontMenuItemSelected}" text="{sourcedescription}, {tr(transponder)} {transponder}" /> - </area> - <!-- separator --> - <area condition="{separator}" x="0" width="28%" layer="3"> - <drawimage name="sep" imagetype="icon" path="ico_channelsep" x="10" valign="center" width="{areaheight}-10" height="{areaheight}-10"/> - <drawtext x="{width(sep)} + 20" valign="center" font="{vdrOsd}" fontsize="60%" color="{clrFontInactive}" text="{name}" /> - </area> - </listelement> - <!-- additional element which is drawn for current element --> - <!-- Available Variables channels menu currentelement: - {number} number of the displayed channel - {name} name of the displayed channel - {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 - {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 - {nexteventdate} next event duration - {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="300"> - <area x="32%" y="2%" width="67%" height="96%" layer="2"> - <fill color="{clrTransBlack}" /> - </area> - <area x="32%" y="2%" width="67%" height="76%" layer="2"> - <!-- Logo and Header --> - <drawimage name="logo" imagetype="channellogo" path="{channelid}" x="1%" y="1%" width="20%" height="15%" /> - <drawtext name="channelname" x="23%" y="{height(logo)} * 3 / 10" font="{vdrOsd}" fontsize="10%" color="{clrWhite}" text="{number} - {name}" /> - <drawtext x="23%" y="{posy(channelname)} + {height(channelname)}" font="{vdrOsd}" fontsize="7%" color="{clrWhite}" text="{sourcedescription}, {tr(transponder)} {transponder}" /> - <!-- NOW --> - <drawtext name="headernow" x="1%" y="{posy(logo)} + {height(logo)} + 10" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(now)}: {presenteventstart} - {presenteventstop}" /> - <drawtext name="titlenow" x="1%" y="{posy(headernow)} + {height(headernow)}" width="48%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{presenteventtitle}" /> - <drawtextbox x="1%" y="{posy(titlenow)} + {height(titlenow)} + 10" width="48%" height="{areaheight} - {posy(titlenow)} - {height(titlenow)} - 10" font="{vdrOsd}" fontsize="5%" color="{clrWhite}" text="{presenteventshorttext} {presenteventdescription}" /> - <!-- NEXT --> - <drawtext name="headernext" x="51%" y="{posy(logo)} + {height(logo)} + 10" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(next)}: {nexteventstart} - {nexteventstop}" /> - <drawtext name="titlenext" x="51%" y="{posy(headernext)} + {height(headernext)}" width="48%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{nexteventtitle}" /> - <drawtextbox x="51%" y="{posy(titlenext)} + {height(titlenext)} + 10" width="48%" height="{areaheight} - {posy(titlenext)} - {height(titlenext)} - 10" font="{vdrOsd}" fontsize="5%" color="{clrWhite}" text="{nexteventshorttext} {nexteventdescription}" /> - </area> - <areascroll mode="forthandback" orientation="vertical" delay="1000" scrollspeed="medium" x="32%" y="78%" width="67%" height="20%" layer="2"> - <drawtext x="10" y="0" font="{semibold}" fontsize="20%" color="{clrWhite}" text="{tr(nextschedules)}:" /> - <loop name="schedule" x="0" y="{areaheight}/4 + 5" orientation="vertical"> - <drawtext x="10" font="{vdrOsd}" width="{areawidth}-20" fontsize="19%" color="{clrWhite}" text="{schedule[start]} {schedule[title]}" /> - </loop> - </areascroll> - </currentelement> - </menuitems> -</menuchannels>
\ No newline at end of file diff --git a/skins/nopacity/xmlfiles/displaymenudefault.xml b/skins/nopacity/xmlfiles/displaymenudefault.xml deleted file mode 100644 index a2d0de3..0000000 --- a/skins/nopacity/xmlfiles/displaymenudefault.xml +++ /dev/null @@ -1,65 +0,0 @@ - <menudefault x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="0" scaletvy="0" scaletvwidth="0" scaletvheight="0"> - <background> - <area x="0" y="0" width="100%" height="100%" layer="1"> - <fill color="{clrBackground}" /> - </area> - <area x="0" y="0" width="100%" height="10%" layer="2"> - <drawimage imagetype="skinpart" path="headertop" x="0" y="0" width="100%" height="100%"/> - </area> - </background> - - <!-- 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="96%" height="80%" align="center" menuitemwidth="96%" determinatefont="column1" numlistelements="16"> - <!-- Available Variables default menu listelement: - {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="menubuttondefault" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - <drawimage condition="{current}" imagetype="skinpart" path="menubuttondefaultactive" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - </area> - <areascroll scrollelement="column1" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="1%" width="{column1width}" layer="3"> - <drawtext condition="not{current}" name="column1" x="{column1x}" width="{column1width}" valign="center" font="{vdrOsd}" fontsize="90%" color="{clrFontMenuItem}" text="{column1}" /> - <drawtext condition="{current}" name="column1" x="{column1x}" width="{column1width}" valign="center" font="{vdrOsd}" fontsize="90%" color="{clrFontMenuItemSelected}" text="{column1}" /> - </areascroll> - <area x="1%" width="100%" layer="3"> - <drawtext condition="{column2set}++not{current}" x="{column2x}" valign="center" width="{column2width}" font="{vdrOsd}" fontsize="90%" color="{clrFontMenuItem}" text="{column2}" /> - <drawtext condition="{column2set}++{current}" x="{column2x}" valign="center" width="{column2width}" font="{vdrOsd}" fontsize="90%" color="{clrFontMenuItemSelected}" text="{column2}" /> - <drawtext condition="{column3set}++not{current}" x="{column3x}" valign="center" width="{column3width}" font="{vdrOsd}" fontsize="90%" color="{clrFontMenuItem}" text="{column3}" /> - <drawtext condition="{column3set}++{current}" x="{column3x}" valign="center" width="{column3width}" font="{vdrOsd}" fontsize="90%" color="{clrFontMenuItemSelected}" text="{column3}" /> - <drawtext condition="{column4set}++not{current}" x="{column4x}" valign="center" width="{column4width}" font="{vdrOsd}" fontsize="90%" color="{clrFontMenuItem}" text="{column4}" /> - <drawtext condition="{column4set}++{current}" x="{column4x}" valign="center" width="{column4width}" font="{vdrOsd}" fontsize="90%" color="{clrFontMenuItemSelected}" text="{column4}" /> - <drawtext condition="{column5set}++not{current}" x="{column5x}" valign="center" width="{column5width}" font="{vdrOsd}" fontsize="90%" color="{clrFontMenuItem}" text="{column5}" /> - <drawtext condition="{column5set}++{current}" x="{column5x}" valign="center" width="{column5width}" font="{vdrOsd}" fontsize="90%" color="{clrFontMenuItemSelected}" text="{column5}" /> - <drawtext condition="{column6set}++not{current}" x="{column6x}" valign="center" width="{column6width}" font="{vdrOsd}" fontsize="90%" color="{clrFontMenuItem}" text="{column6}" /> - <drawtext condition="{column6set}++{current}" x="{column6x}" valign="center" width="{column6width}" font="{vdrOsd}" fontsize="90%" color="{clrFontMenuItemSelected}" text="{column6}" /> - </area> - </listelement> - - </menuitems> -</menudefault> diff --git a/skins/nopacity/xmlfiles/displaymenudetailepg.xml b/skins/nopacity/xmlfiles/displaymenudetailepg.xml deleted file mode 100644 index a49ad36..0000000 --- a/skins/nopacity/xmlfiles/displaymenudetailepg.xml +++ /dev/null @@ -1,257 +0,0 @@ -<menudetailedepg x="0" y="0" width="100%" height="100%" fadetime="0"> - <background> - <area x="0" y="0" width="100%" height="100%" layer="1"> - <fill color="{clrTransBlack}" /> - <drawrectangle x="0" y="0" width="100%" height="10%" color="{clrBackground}" /> - </area> - <area x="0" y="0" width="100%" height="10%" layer="2"> - <drawimage imagetype="skinpart" path="headertop" x="0" y="0" width="100%" height="100%"/> - </area> - </background> - <scrollbar> - <area x="97%" y="25%" width="2%" height="60%" layer="2"> - <fill color="{clrBorder}" /> - <drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" /> - <drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrScrollbar}" /> - </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 current event - {date} date of current event in dd.mm.yy - {running} true if event is currently running - {elapsed} elapsed time of event, if not running 0 - {duration} duration of event - {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="1%" y="10%" width="98%" height="15%" layer="2"> - <fill color="{clrTransBlack}" /> - </area> - <area x="1%" y="10%" width="98%" height="15%" layer="3"> - <drawimage name="logo" imagetype="channellogo" path="{channelid}" x="0" width="15%" height="80%" valign="center" /> - - <drawimage condition="{isseries}++{banneravailable}++not{epgpicavailable}" imagetype="image" path="{bannerpath}" x="{areawidth} - {areawidth}/3 - 10" valign="center" width="{areawidth}/3" height="{areawidth}/3 * {bannerheight} / {bannerwidth}"/> - <drawimage condition="{ismovie}++{posteravailable}++not{epgpicavailable}" imagetype="image" path="{posterpath}" x="{areawidth} - {areaheight}*8/10" valign="center" width="{areaheight}*8 / 10 * {posterheight} / {posterwidth}" height="{areaheight}*8 / 10"/> - <drawimage condition="{epgpicavailable}" imagetype="image" path="{epgpicpath}" x="{areawidth} - {areaheight}*8/10 * 174 / 130" valign="center" width="{areaheight}*8/10 * 174 / 130" height="{areaheight}*8 / 10"/> - - <drawtext name="title" x="{width(logo)} + 20" valign="center" font="{vdrOsd}" fontsize="35%" color="{clrWhite}" text="{title}" /> - <drawtext name="datetime" x="{width(logo)} + 20" y="{posy(title)} - {height(datetime)}" font="{vdrOsd}" fontsize="25%" color="{clrWhite}" text="{day} {date} {start} - {stop} ({duration} mins)" /> - <drawtext name="shorttext" x="{width(logo)} + 20" y="{posy(title)} + {height(title)}" font="{vdrOsd}" fontsize="25%" color="{clrWhite}" text="{shorttext}" /> - </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 current event - {date} date of current event in dd.mm.yy - {running} true if event is currently running - {elapsed} elapsed time of event, if not running 0 - {duration} duration of event - {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 - --> - - <!-- TAB EPGINFO --> - <tab name="EPG Info" x="2%" y="25%" width="94%" height="60%" layer="2" scrollheight="{areaheight}/4"> - <drawtextbox condition="not{isseries}++not{ismovie}" x="0" y="10" width="96%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{description}" /> - <drawimage condition="{isseries}" name="seriesposter" imagetype="image" path="{seriesposter1path}" x="{areawidth}*0.75" y="10" width="{areawidth}*0.25" height="{areawidth} * 0.25 * {seriesposter1height} / {seriesposter1width}"/> - <drawimage condition="{ismovie}" name="movieposter" imagetype="image" path="{posterpath}" x="{areawidth}*0.75" y="10" width="{areawidth}*0.25" height="{areawidth} * 0.25 * {posterheight} / {posterwidth}" /> - <drawtextbox condition="{isseries}" x="0" y="10" width="96%" float="topright" floatwidth="{width(seriesposter)} + 10" floatheight="{height(seriesposter)} + 20" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{description}" /> - <drawtextbox condition="{ismovie}" x="0" y="10" width="96%" float="topright" floatwidth="{width(movieposter)} + 10" floatheight="{height(movieposter)} + 20" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{description}" /> - </tab> - <!-- TAB RERUNS --> - <tab condition="{hasreruns}" name="{tr(reruns)}" x="2%" y="25%" width="94%" height="60%" layer="2" scrollheight="{areaheight}/4"> - <drawtext align="center" y="0" name="title" font="{vdrOsd}" fontsize="10%" 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="-5" font="{vdrOsd}" fontsize="10%" color="{clrWhite}" text="{reruns[channelname]}" /> - <drawtext condition="{reruns[channellogoexists]}" x="{width(logo)}+20" y="-5" width="{areawidth} - {width(logo)} - 20" font="{vdrOsd}" fontsize="8%" color="{clrWhite}" text="{reruns[day]} {reruns[date]} {reruns[start]} - {reruns[stop]}: {reruns[title]} {reruns[shorttext]}" /> - <drawtext condition="not{reruns[channellogoexists]}" x="{width(channelname)}+20" y="-5" width="{areawidth} - {width(logo)} - 20" font="{vdrOsd}" fontsize="8%" color="{clrWhite}" text="{reruns[day]} {reruns[date]} {reruns[start]} - {reruns[stop]}: {reruns[title]} {reruns[shorttext]}" /> - </loop> - </tab> - <!-- TAB ACTORS --> - <tab condition="{isseries}||{ismovie}" name="{tr(actors)}" x="2%" y="25%" width="94%" height="60%" layer="2" scrollheight="{areaheight}/4"> - <drawtext align="center" name="title" y="0" font="{vdrOsd}" fontsize="15%" color="{clrWhite}" text="{tr(actors)}" /> - <loop name="actors" x="0" y="{height(title)} + 10" width="{areawidth}" orientation="horizontal" columnwidth="{areawidth}/5" rowheight="{areawidth}/5*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="{vdrOsd}" fontsize="7%" color="{clrWhite}" text="{actors[name]}" /> - <drawtext align="center" y="{height(thumb)} + 10 + {height(actorname)}" width="{columnwidth}" font="{vdrOsd}" fontsize="7%" color="{clrWhite}" text="{actors[role]}" /> - </loop> - </tab> - <!-- TAB TVDBINFO --> - <tab condition="{isseries}" name="TvDBInfo" x="2%" y="25%" width="94%" height="60%" layer="2" 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="{vdrOsd}" 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="25%" width="94%" height="60%" layer="2" 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="25%" width="94%" height="60%" layer="2" 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="{vdrOsd}" fontsize="8%" 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="25%" width="94%" height="60%" layer="2" 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: - {tabs[]} array with available tab labels - {tabs[title]} title of tab - {tabs[current]} true if tab is displayed currently - --> - <tablabels> - <area x="1%" y="85%" width="98%" height="5%" layer="3"> - <drawrectangle x="0" y="1" width="100%" height="1" color="{clrBorder}" /> - <loop name="tabs" x="0" y="0" orientation="horizontal"> - <drawrectangle condition="{tabs[current]}" x="0" y="1" width="{width(label)}" height="100%" color="{clrBorder}" /> - <drawrectangle condition="not{tabs[current]}" x="0" y="1" width="{width(label)}" height="100%" color="{clrBorder}" /> - <drawrectangle condition="not{tabs[current]}" x="2" y="2" width="{width(label)} - 4" height="{areaheight}-4" color="{clrTransparent}" /> - <drawtext name="label" x="0" valign="center" font="{vdrOsd}" fontsize="95%" color="{clrWhite}" text=" {tabs[title]} " /> - </loop> - </area> - </tablabels> -</menudetailedepg>
\ No newline at end of file diff --git a/skins/nopacity/xmlfiles/displaymenudetailrecording.xml b/skins/nopacity/xmlfiles/displaymenudetailrecording.xml deleted file mode 100644 index 28469db..0000000 --- a/skins/nopacity/xmlfiles/displaymenudetailrecording.xml +++ /dev/null @@ -1,235 +0,0 @@ -<menudetailedrecording x="0" y="0" width="100%" height="100%" fadetime="0"> - <background> - <area x="0" y="0" width="100%" height="100%" layer="1"> - <fill color="{clrTransBlack}" /> - <drawrectangle x="0" y="0" width="100%" height="10%" color="{clrBackground}" /> - </area> - <area x="0" y="0" width="100%" height="10%" layer="2"> - <drawimage imagetype="skinpart" path="headertop" x="0" y="0" width="100%" height="100%"/> - </area> - </background> - <scrollbar> - <area x="97%" y="25%" width="2%" height="60%" layer="2"> - <fill color="{clrBorder}" /> - <drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" /> - <drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrScrollbar}" /> - </area> - </scrollbar> - <!-- Available Variables in detailheader elements: - {name} full name of recording (including folders) - {epgname} Name of recording (Name from EPG) - {shorttext} shorttext of recording - {date} date of recording in dd.mm.yy - {time} time of current event in hh:mm - {duration} real duration of recording in minutes - {durationevent} duration of according event in 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="98%" height="15%" layer="2"> - <fill color="{clrTransBlack}" /> - </area> - <area x="1%" y="10%" width="98%" height="15%" layer="3"> - <drawimage condition="{isseries}++{banneravailable}++not{recimgavailable}" imagetype="image" path="{bannerpath}" x="{areawidth} - {areawidth}/3 - 10" valign="center" width="{areawidth}/3" height="{areawidth}/3 * {bannerheight} / {bannerwidth}"/> - <drawimage condition="{ismovie}++{posteravailable}++not{recimgavailable}" imagetype="image" path="{posterpath}" x="{areawidth} - {areaheight}*8/10" valign="center" width="{areaheight}*8 / 10 * {posterheight} / {posterwidth}" height="{areaheight}*8 / 10"/> - <drawimage condition="{recimgavailable}" imagetype="image" path="{recimgpath}" x="{areawidth} - {areaheight}*8/10 * 174 / 130" valign="center" width="{areaheight}*8/10 * 174 / 130" height="{areaheight}*8 / 10"/> - <drawtext name="title" x="20" valign="center" font="{vdrOsd}" fontsize="35%" color="{clrWhite}" text="{epgname}" /> - <drawtext name="datetime" x="20" y="{posy(title)} - {height(datetime)}" font="{vdrOsd}" fontsize="25%" color="{clrWhite}" text="{date} {time} ({duration} mins)" /> - <drawtext name="shorttext" x="20" y="{posy(title)} + {height(title)}" font="{vdrOsd}" fontsize="25%" color="{clrWhite}" text="{shorttext}" /> - </area> - </detailheader> - <!-- Available Variables in tab elements: - {name} full name of recording (including folders) - {epgname} Name of recording (Name from EPG) - {shorttext} shorttext of recording - {description} description of recording - {date} date of recording in dd.mm.yy - {time} time of recording in hh:mm - {duration} real duration of recording in minutes - {durationevent} duration of according event in 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="25%" width="94%" height="60%" layer="2" scrollheight="{areaheight}/4"> - <drawtextbox condition="not{isseries}++not{ismovie}" x="0" y="0" width="96%" font="{vdrOsd}" fontsize="8%" color="{clrWhite}" text="{description}" /> - <drawimage condition="{isseries}" name="seriesposter" imagetype="image" path="{seriesposter1path}" x="{areawidth}*0.7" y="0" width="{areawidth}*0.3" height="{areawidth} * 0.3 * {seriesposter1height} / {seriesposter1width}"/> - <drawimage condition="{ismovie}" name="movieposter" imagetype="image" path="{posterpath}" x="{areawidth}*0.7" y="0" width="{areawidth}*0.3" height="{areawidth} * 0.3 * {posterheight} / {posterwidth}" /> - <drawtextbox condition="{isseries}" x="0" y="0" width="96%" float="topright" floatwidth="{width(seriesposter)} + 10" floatheight="{height(seriesposter)} + 20" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{description}" /> - <drawtextbox condition="{ismovie}" x="0" y="0" width="96%" float="topright" floatwidth="{width(movieposter)} + 10" floatheight="{height(movieposter)} + 20" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{description}" /> - </tab> - <tab name="{tr(recinfo)}" x="2%" y="25%" width="94%" height="60%" layer="2" scrollheight="{areaheight}/4"> - <drawtext align="center" y="0" name="title" font="{vdrOsd}" fontsize="10%" color="{clrWhite}" text="{tr(recinfo)}" /> - <drawtextbox x="0" y="{height(title)} + 20" width="96%" font="{vdrOsd}" fontsize="8%" 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="25%" width="94%" height="60%" layer="2" scrollheight="{areaheight}/4"> - <drawtext align="center" name="title" y="0" font="{vdrOsd}" fontsize="10%" color="{clrWhite}" text="{tr(actors)}" /> - <loop name="actors" x="0" y="{height(title)} + 10" width="{areawidth}" orientation="horizontal" columnwidth="{areawidth}/5" rowheight="{areawidth}/5*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="{vdrOsd}" fontsize="7%" color="{clrWhite}" text="{actors[name]}" /> - <drawtext align="center" y="{height(thumb)} + 10 + {height(actorname)}" width="{columnwidth}" font="{vdrOsd}" fontsize="7%" color="{clrWhite}" text="{actors[role]}" /> - </loop> - </tab> - <tab condition="{isseries}" name="TvDBInfo" x="2%" y="25%" width="94%" height="60%" layer="2" 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="{vdrOsd}" 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="25%" width="94%" height="60%" layer="2" 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="25%" width="94%" height="60%" layer="2" 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="{vdrOsd}" 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="25%" width="94%" height="60%" layer="2" 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: - {tabs[]} array with available tab labels - {tabs[title]} title of tab - {tabs[current]} true if tab is displayed currently - --> - <tablabels> - <area x="1%" y="85%" width="98%" height="5%" layer="3"> - <loop name="tabs" x="0" y="0" orientation="horizontal"> - <drawrectangle condition="{tabs[current]}" x="0" y="0" width="{width(label)}" height="100%" color="{clrBorder}" /> - <drawrectangle condition="not{tabs[current]}" x="0" y="0" width="{width(label)}" height="100%" color="{clrBorder}" /> - <drawrectangle condition="not{tabs[current]}" x="2" y="2" width="{width(label)} - 4" height="{areaheight}-4" color="{clrTransparent}" /> - <drawtext name="label" x="0" valign="center" font="{vdrOsd}" fontsize="95%" color="{clrWhite}" text=" {tabs[title]} " /> - </loop> - </area> - </tablabels> - -</menudetailedrecording> diff --git a/skins/nopacity/xmlfiles/displaymenudetailtext.xml b/skins/nopacity/xmlfiles/displaymenudetailtext.xml deleted file mode 100644 index dae4e61..0000000 --- a/skins/nopacity/xmlfiles/displaymenudetailtext.xml +++ /dev/null @@ -1,25 +0,0 @@ -<menudetailedtext x="0" y="0" width="100%" height="100%" fadetime="0"> - <background> - <area x="0" y="0" width="100%" height="100%" layer="1"> - <fill color="{clrTransBlack}" /> - <drawrectangle x="0" y="0" width="100%" height="10%" color="{clrBackground}" /> - </area> - <area x="0" y="0" width="100%" height="10%" layer="2"> - <drawimage imagetype="skinpart" path="headertop" x="0" y="0" width="100%" height="100%"/> - </area> - </background> - <scrollbar> - <area x="97%" y="11%" width="2%" height="79%" layer="2"> - <fill color="{clrBorder}" /> - <drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" /> - <drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrScrollbar}" /> - </area> - </scrollbar> - <!-- Available Variables in tab elements: - {text} detailed text - --> - <tab name="text" x="2%" y="11%" width="94%" height="79%" layer="2" scrollheight="{areaheight}/4"> - <drawtextbox x="0" y="0" width="100%" font="{light}" fontsize="5%" color="{clrWhite}" text="{text}" /> - </tab> - -</menudetailedtext>
\ No newline at end of file diff --git a/skins/nopacity/xmlfiles/displaymenumain.xml b/skins/nopacity/xmlfiles/displaymenumain.xml deleted file mode 100644 index cfcc631..0000000 --- a/skins/nopacity/xmlfiles/displaymenumain.xml +++ /dev/null @@ -1,152 +0,0 @@ -<menumain x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="33%" scaletvy="10%" scaletvwidth="65%" scaletvheight="80%" > - <!-- 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 - --> - <header> - <area x="1%" y="0" width="64%" height="10%" layer="3"> - <drawimage imagetype="icon" path="ico_vdrlogo" x="0" valign="center" width="{areaheight} * 0.9 * 160 / 70" height="{areaheight}*0.9"/> - <drawtext x="{areaheight} * 0.9 * 160 / 70 + 10" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrWhite}" text="{vdrversion}" /> - </area> - </header> - - <!-- 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 detached="true" delay="100" fadetime="0"> - <area x="85%" y="28%" width="14%" height="60%" layer="1"> - <drawrectangle condition="gt({numtimers}, 0)" x="0" y="0" width="{areawidth}" height="{areaheight} / 4 * 99 / 100" color="{clrTransBlack}" /> - <drawrectangle condition="gt({numtimers}, 1)" x="0" y="{areaheight} / 4" width="{areawidth}" height="{areaheight} / 4 * 99 / 100" color="{clrTransBlack}" /> - <drawrectangle condition="gt({numtimers}, 2)" x="0" y="{areaheight} / 2" width="{areawidth}" height="{areaheight} / 4 * 99 / 100" color="{clrTransBlack}" /> - <drawrectangle condition="gt({numtimers}, 3)" x="0" y="{areaheight} * 3 / 4" width="{areawidth}" height="{areaheight} / 4 * 99 / 100" color="{clrTransBlack}" /> - </area> - <area x="85%" y="28%" width="14%" height="60%" layer="2"> - <loop name="timers" x="0" y="0" orientation="vertical" columnwidth="100%" rowheight="{areaheight} / 4" overflow="cut"> - <drawrectangle condition="{timers[recording]}" x="0" y="0" width="{columnwidth}" height="{rowheight} * 99 / 100" color="{clrTransRed}" /> - <drawimage cache="true" name="logo" imagetype="channellogo" path="{timers[channelid]}" width="80%" height="{rowheight} / 2" align="center" y="5" /> - <drawtextbox x="5" y="{height(logo)}+2" width="{columnwidth}-10" align="center" maxlines="2" font="{vdrOsd}" fontsize="4%" color="{clrWhite}" text="{timers[title]}" /> - <drawtext name="datetime" align="center" y="{rowheight}*84/100" font="{vdrOsd}" fontsize="4%" color="{clrWhite}" text="{timers[datetime]}" /> - </loop> - </area> - </timers> - - <scrollbar> - <area x="30%" y="11%" width="2%" height="78%" layer="2"> - <fill color="{clrBorder}" /> - <drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" /> - <drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrScrollbar}" /> - </area> - </scrollbar> - - <!-- 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 detached="true" delay="100" fadetime="0"> - <area background="true" x="89%" y="11%" width="10%" height="16%" layer="1"> - <fill condition="lt({freepercent}, 6)" color="{clrTransRed}" /> - <fill condition="gt({freepercent}, 5)" color="{clrBackground}" /> - <drawimage imagetype="skinpart" path="discpercent" x="0" y="82%" width="{areawidth}" height="18%"/> - </area> - <area x="89%" y="11%" width="10%" height="16%" layer="2"> - <drawimage imagetype="icon" path="ico_discusage" align="center" y="2" width="{areawidth}*65/100" height="{areawidth}*65/100"/> - <drawtext align="center" y="42%" font="{vdrOsd}" fontsize="18%" color="{clrWhite}" text="{freetime}h {tr(free)}" /> - <drawrectangle x="{areawidth}*{usedpercent}/100" y="82%" width="{areawidth} - {areawidth}*{usedpercent}/100" height="18%" color="{clrTransBlack}" /> - <drawtext align="center" y="82%" font="{vdrOsd}" fontsize="19%" color="{clrWhite}" text="{usedpercent}%" /> - </area> - </discusage> - - <currentweather detached="true" delay="100" fadetime="0"> - <area background="true" x="63%" y="11%" width="25%" height="16%" layer="1"> - <fill color="{clrBackground}"/> - </area> - <area x="63%" y="11%" width="25%" height="16%" layer="2"> - <drawimage name="weathericon" imagetype="icon" path="{icon}" x="5" valign="center" width="{areaheight}*0.7" height="{areaheight}*0.7"/> - </area> - <area x="75%" y="11%" width="12%" height="16%" layer="2"> - <drawtext align="right" valign="center" font="{vdrOsd}" fontsize="40%" color="{clrWhite}" text="{temperature}°C" /> - <drawtext x="0" y="5" font="{vdrOsd}" fontsize="18%" color="{clrWhite}" text="{mintemperature}°C - {maxtemperature}°C" /> - <drawtext x="0" y="82%" font="{vdrOsd}" width="100%" fontsize="15%" color="{clrWhite}" text="{summary}" /> - </area> - </currentweather> - - <!-- 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[channelid]} ID of the currently tuned channel - {devices[source]} source of the currently tuned channel - --> - <devices> - </devices> - - <!-- Available Variables systemload: - {load} current system load - --> - <systemload> - </systemload> - - <menuitems x="{areawidth}*0.005" y="10%" orientation="vertical" width="28%" height="80%" align="center" numlistelements="10"> - <!-- Available Variables main menu listelement: - {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="1%" width="{areawidth}" height="{areaheight}*0.98"/> - <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - </area> - <area x="0" width="100%" layer="7"> - <drawimage imagetype="skinpart" path="menubuttontop" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - </area> - <area x="0" width="100%" layer="3"> - <drawimage imagetype="menuicon" path="{icon}" x="10" valign="center" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - </area> - <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="23%" width="77%" layer="3"> - <drawtext condition="not{current}" name="menutext" x="0" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItem}" text="{number} {label}" /> - <drawtext condition="{current}" name="menutext" x="0" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItemSelected}" text="{number} {label}" /> - </areascroll> - </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/nopacity/xmlfiles/displaymenurecordings.xml b/skins/nopacity/xmlfiles/displaymenurecordings.xml deleted file mode 100644 index 53ca60d..0000000 --- a/skins/nopacity/xmlfiles/displaymenurecordings.xml +++ /dev/null @@ -1,94 +0,0 @@ -<menurecordings x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="33%" scaletvy="10%" scaletvwidth="65%" scaletvheight="80%"> - <scrollbar> - <area x="30%" y="11%" width="2%" height="78%" layer="2"> - <fill color="{clrBorder}" /> - <drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" /> - <drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrScrollbar}" /> - </area> - </scrollbar> - - <menuitems x="{areawidth}*0.005" y="10%" orientation="vertical" width="99%" height="80%" align="center" numlistelements="10"> - <!-- Available Variables recordings menu listelement: - {name} Name of recording - {date} Date of recording - {time} Time of recording - {duration} real duration of recording in minutes - {durationevent} duration of corresponding event in 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> - <!-- background and foreground--> - <area x="0" width="28%" layer="2"> - <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - </area> - <!-- Folders --> - <area condition="{folder}" x="1%" width="27%" layer="3"> - <drawimage name="foldericon" imagetype="icon" path="ico_recfolder" x="0" width="0.9*{areaheight} * 92 / 136" height="0.9*{areaheight}" valign="center" /> - </area> - <areascroll condition="{folder}" scrollelement="foldername" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="5%" width="23%" layer="3"> - <drawtext condition="not{current}" name="foldername" x="0" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItem}" text="{name} ({numrecordingsfolder}, {newrecordingsfolder} new)" /> - <drawtext condition="{current}" name="foldername" x="0" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItemSelected}" text="{name} ({numrecordingsfolder}, {newrecordingsfolder} new)" /> - </areascroll> - <!-- Recording --> - <area condition="{hasposterthumbnail}++not{folder}" x="1%" width="4%" layer="3"> - <drawimage imagetype="image" path="{thumbnailpath}" x="0" width="0.9*{areaheight} * {thumbnailbwidth} / {thumbnailheight}" height="0.9*{areaheight}" valign="center" /> - </area> - <areascroll condition="not{folder}" scrollelement="recname" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="5%" width="23%" layer="3"> - <drawtext condition="not{current}" name="recname" x="0" y="5" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItem}" text="{name}" /> - <drawtext condition="{current}" name="recname" x="0" y="5" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItemSelected}" text="{name}" /> - </areascroll> - <area condition="not{folder}" x="5%" width="23%" layer="3"> - <drawtext condition="not{current}" x="0" y="55%" font="{vdrOsd}" fontsize="40%" color="{clrFontMenuItem}" text="{date} {time}" /> - <drawtext condition="{current}" x="0" y="55%" font="{vdrOsd}" fontsize="40%" color="{clrFontMenuItemSelected}" text="{date} {time}" /> - <drawimage condition="{new}" name="new" imagetype="icon" path="ico_recnew" x="{areawidth} - {areaheight}/2 - 5" y="50%" width="{areaheight}*4/10" height="{areaheight}*4/10" /> - <drawimage condition="{new}++{cutted}" imagetype="icon" path="ico_cutted" x="{areawidth} - {areaheight} - 10" y="50%" width="{areaheight}*4/10" height="{areaheight}*4/10" /> - <drawimage condition="not{new}++{cutted}" imagetype="icon" path="ico_cutted" x="{areawidth} - {areaheight}/2 - 5" y="50%" width="{areaheight}*4/10" height="{areaheight}*4/10" /> - </area> - </listelement> - <!-- additional element which is drawn for current element --> - <!-- Available Variables channels menu currentelement: - {name} Real Name of recording (Name of Recording Folder) - {epgname} Name of recording (Name from EPG) - {shorttext} Short Text of recording - {description} Descrption of recording - {date} Date of recording - {time} Time of recording - {duration} real duration of recording in minutes - {durationevent} duration of corresponding event in 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="300"> - <area x="32%" y="2%" width="67%" height="96%" layer="2"> - <fill color="{clrTransBlack}" /> - <!-- header --> - <drawtext name="title" x="1%" y="0" width="98%" font="{vdrOsd}" fontsize="8%" color="{clrWhite}" text="{epgname}" /> - <drawtext name="shorttext" x="1%" y="{height(title)}" width="98%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{shorttext}" /> - <drawtext name="datetime" x="1%" y="{posy(shorttext)} + {height(shorttext)}" font="{vdrOsd}" fontsize="5%" color="{clrWhite}" text="{date} {time}, {duration} min" /> - <!-- scraper poster --> - <drawimage condition="{hasposter}" name="poster" imagetype="image" path="{posterpath}" x="3*{areawidth}/4" y="{posy(datetime)} + {height(datetime)} + 20" width="{areawidth}/4" height="{areawidth}/4 * {posterheight} / {posterwidth}"/> - <!-- description --> - <drawtextbox condition="{hasposter}" x="1%" y="{posy(poster)}" width="98%" height="{areaheight} - {posy(poster)}" float="topright" floatwidth="{width(poster)} + 10" floatheight="{height(poster)} + 10" font="{vdrOsd}" fontsize="5%" color="{clrWhite}" text="{description}" /> - <drawtextbox condition="not{hasposter}" x="1%" y="{posy(poster)}" width="98%" height="{areaheight} - {posy(poster)}" font="{vdrOsd}" fontsize="5%" color="{clrWhite}" text="{description}" /> - </area> - </currentelement> - </menuitems> - -</menurecordings>
\ No newline at end of file diff --git a/skins/nopacity/xmlfiles/displaymenuschedules.xml b/skins/nopacity/xmlfiles/displaymenuschedules.xml deleted file mode 100644 index 27b84e9..0000000 --- a/skins/nopacity/xmlfiles/displaymenuschedules.xml +++ /dev/null @@ -1,235 +0,0 @@ -<menuschedules x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="33%" scaletvy="10%" scaletvwidth="65%" scaletvheight="80%" > - <!-- Available Variables header: - {title} title of current menu - {vdrversion} running VDR Version - {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 - {whatsonfavorites} true if EPGSearch Favorites menu is displayed - --> - <header> - <area x="1%" y="0" width="64%" height="10%" layer="2"> - <drawtext condition="{whatsonnow}||{whatsonnext}||{whatsonfavorites}" x="5" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrWhite}" text="{title}" /> - <drawimage name="logo" condition="{whatson}" imagetype="channellogo" path="{channelid}" x="0" width="15%" height="100%" align="left" valign="center" /> - <drawtext condition="{whatson}" x="{width(logo)}+20" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrWhite}" text="{channelnumber} - {channelname}" /> - </area> - </header> - - - <scrollbar> - <area x="30%" y="11%" width="2%" height="78%" layer="2"> - <fill color="{clrBorder}" /> - <drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" /> - <drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrScrollbar}" /> - </area> - </scrollbar> - - <menuitems x="{areawidth}*0.005" y="10%" orientation="vertical" width="99%" height="80%" align="center" numlistelements="10"> - <!-- Available Variables schedules menu listelement: - {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 - {running} true if event is currently running - {elapsed} elapsed time of event, if not running 0 - {duration} duration of event - {current} true if item is currently selected - {separator} true if item is a list separator - {channelname} Channel Name (for what's on now and next) - {channelid} ChannelID as path to display channel logo (for what's on now and next) - {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 - {whatsonfavorites} true if EPGSearch Favorites menu 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> - <!-- background and foreground--> - <area x="0" width="28%" layer="2"> - <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - </area> - <area x="0" width="28%" layer="7"> - <drawimage imagetype="skinpart" path="menubuttontop" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - </area> - <!-- element whatson --> - <area condition="not{separator}++{whatson}++not{current}" x="1%" width="27%" layer="3"> - <drawtext x="0" y="5%" font="{vdrOsd}" fontsize="40%" color="{clrFontMenuItem}" text="{start} - {stop}" /> - <drawimage condition="{timerfull}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*5/10 - 10" y="10" width="{areaheight}*5/10" height="{areaheight}*5/10" /> - <drawimage condition="{timerpartitial}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*3/10 - 10" y="10" width="{areaheight}*3/10" height="{areaheight}*3/10" /> - </area> - <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" condition="not{separator}++{whatson}++not{current}" x="1%" width="27%" layer="3"> - <drawtext name="menutext" x="0" y="40%" font="{vdrOsd}" fontsize="55%" color="{clrFontMenuItem}" text="{title}" /> - </areascroll> - <!-- current element whatson --> - <area condition="not{separator}++{whatson}++{current}" x="1%" width="27%" layer="3"> - <drawtext x="0" y="5%" font="{vdrOsd}" fontsize="40%" color="{clrFontMenuItemSelected}" text="{start} - {stop}" /> - <drawimage condition="{timerfull}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*5/10 - 10" y="10" width="{areaheight}*5/10" height="{areaheight}*5/10" /> - <drawimage condition="{timerpartitial}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*3/10 - 10" y="10" width="{areaheight}*3/10" height="{areaheight}*3/10" /> - </area> - <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" condition="not{separator}++{whatson}++{current}" x="1%" width="27%" layer="3"> - <drawtext name="menutext" x="0" y="40%" font="{vdrOsd}" fontsize="55%" color="{clrFontMenuItemSelected}" text="{title}" /> - </areascroll> - <!-- element whatsonnow --> - <area condition="not{separator}++{whatsonnow}" x="5" width="8%" layer="3"> - <drawimage name="logo" imagetype="channellogo" path="{channelid}" x="0" width="100%" height="94%" valign="center" /> - </area> - <area condition="not{separator}++{whatsonnow}++not{current}" x="9%" width="18%" layer="3"> - <drawtext x="0" y="5%" font="{vdrOsd}" fontsize="40%" color="{clrFontMenuItem}" text="{start} - {stop}" /> - <drawimage condition="{timerfull}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*5/10 - 10" y="10" width="{areaheight}*5/10" height="{areaheight}*5/10" /> - <drawimage condition="{timerpartitial}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*3/10 - 10" y="10" width="{areaheight}*3/10" height="{areaheight}*3/10" /> - </area> - <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" condition="not{separator}++{whatsonnow}++not{current}" x="9%" width="18%" layer="3"> - <drawtext name="menutext" x="0" y="40%" font="{vdrOsd}" fontsize="55%" color="{clrFontMenuItem}" text="{title}" /> - </areascroll> - <!-- current element whatsonnow --> - <area condition="not{separator}++{whatsonnow}++{current}" x="9%" width="18%" layer="3"> - <drawtext x="0" y="5%" font="{vdrOsd}" fontsize="40%" color="{clrFontMenuItemSelected}" text="{start} - {stop}" /> - <drawimage condition="{timerfull}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*5/10 - 10" y="10" width="{areaheight}*5/10" height="{areaheight}*5/10" /> - <drawimage condition="{timerpartitial}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*3/10 - 10" y="10" width="{areaheight}*3/10" height="{areaheight}*3/10" /> - </area> - <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" condition="not{separator}++{whatsonnow}++{current}" x="9%" width="18%" layer="3"> - <drawtext name="menutext" x="0" y="40%" font="{vdrOsd}" fontsize="55%" color="{clrFontMenuItemSelected}" text="{title}" /> - </areascroll> - <!-- day or channel separator --> - <area condition="{separator}" x="0" width="28%" layer="3"> - <drawimage name="sep" imagetype="icon" path="ico_daydelimiter" x="10" valign="center" width="{areaheight}-10" height="{areaheight}-10"/> - <drawtext x="{width(sep)} + 20" valign="center" font="{vdrOsd}" fontsize="60%" color="{clrFontInactive}" text="{title}" /> - </area> - <!-- element whatsonnext --> - <area condition="not{separator}++{whatsonnext}" x="5" width="8%" layer="3"> - <drawimage name="logo" imagetype="channellogo" path="{channelid}" x="0" width="100%" height="94%" valign="center" /> - </area> - <area condition="not{separator}++{whatsonnext}++not{current}" x="9%" width="18%" layer="3"> - <drawtext x="0" y="5%" font="{vdrOsd}" fontsize="40%" color="{clrFontMenuItem}" text="{start} - {stop}" /> - <drawimage condition="{timerfull}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*5/10 - 10" y="10" width="{areaheight}*5/10" height="{areaheight}*5/10" /> - <drawimage condition="{timerpartitial}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*3/10 - 10" y="10" width="{areaheight}*3/10" height="{areaheight}*3/10" /> - </area> - <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" condition="not{separator}++{whatsonnext}++not{current}" x="9%" width="18%" layer="3"> - <drawtext name="menutext" x="0" y="40%" font="{vdrOsd}" fontsize="55%" color="{clrFontMenuItem}" text="{title}" /> - </areascroll> - <!-- current element whatsonnext --> - <area condition="not{separator}++{whatsonnext}++{current}" x="9%" width="18%" layer="3"> - <drawtext x="0" y="5%" font="{vdrOsd}" fontsize="40%" color="{clrFontMenuItemSelected}" text="{start} - {stop}" /> - <drawimage condition="{timerfull}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*5/10 - 10" y="10" width="{areaheight}*5/10" height="{areaheight}*5/10" /> - <drawimage condition="{timerpartitial}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*3/10 - 10" y="10" width="{areaheight}*3/10" height="{areaheight}*3/10" /> - </area> - <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" condition="not{separator}++{whatsonnext}++{current}" x="9%" width="18%" layer="3"> - <drawtext name="menutext" x="0" y="40%" font="{vdrOsd}" fontsize="55%" color="{clrFontMenuItemSelected}" text="{title}" /> - </areascroll> - <!-- element whatsonfavorites --> - <area condition="not{separator}++{whatsonfavorites}" x="5" width="8%" layer="3"> - <drawimage name="logo" imagetype="channellogo" path="{channelid}" x="0" width="100%" height="94%" valign="center" /> - </area> - <area condition="not{separator}++{whatsonfavorites}++not{current}" x="9%" width="18%" layer="3"> - <drawtext x="0" y="5%" font="{vdrOsd}" fontsize="40%" color="{clrFontMenuItem}" text="{start} - {stop}" /> - <drawimage condition="{timerfull}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*5/10 - 10" y="10" width="{areaheight}*5/10" height="{areaheight}*5/10" /> - <drawimage condition="{timerpartitial}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*3/10 - 10" y="10" width="{areaheight}*3/10" height="{areaheight}*3/10" /> - </area> - <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" condition="not{separator}++{whatsonfavorites}++not{current}" x="9%" width="18%" layer="3"> - <drawtext name="menutext" x="0" y="40%" font="{vdrOsd}" fontsize="55%" color="{clrFontMenuItem}" text="{title}" /> - </areascroll> - <!-- current element whatsonfavorites --> - <area condition="not{separator}++{whatsonfavorites}++{current}" x="9%" width="18%" layer="3"> - <drawtext x="0" y="5%" font="{vdrOsd}" fontsize="40%" color="{clrFontMenuItemSelected}" text="{start} - {stop}" /> - <drawimage condition="{timerfull}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*5/10 - 10" y="10" width="{areaheight}*5/10" height="{areaheight}*5/10" /> - <drawimage condition="{timerpartitial}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*3/10 - 10" y="10" width="{areaheight}*3/10" height="{areaheight}*3/10" /> - </area> - <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" condition="not{separator}++{whatsonfavorites}++{current}" x="9%" width="18%" layer="3"> - <drawtext name="menutext" x="0" y="40%" font="{vdrOsd}" fontsize="55%" color="{clrFontMenuItemSelected}" text="{title}" /> - </areascroll> <!-- day or channel separator --> - <area condition="{separator}" x="0" width="28%" layer="3"> - <drawimage name="sep" imagetype="icon" path="ico_daydelimiter" x="10" valign="center" width="{areaheight}-10" height="{areaheight}-10"/> - <drawtext x="{width(sep)} + 20" valign="center" font="{vdrOsd}" fontsize="60%" color="{clrFontInactive}" text="{title}" /> - </area> - </listelement> - <!-- Available Variables schedules menu currentelement: - {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 - {running} true if event is currently running - {elapsed} elapsed time of event, if not running 0 - {duration} duration of event - {channelid} ChannelID as path to display channel logo - {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="500" fadetime="300"> - <area x="32%" y="2%" width="67%" height="96%" layer="2"> - <fill color="{clrTransBlack}" /> - </area> - <area condition="{whatson}" x="32%" y="2%" width="67%" height="96%" layer="2"> - <!-- title --> - <drawtext name="title" align="center" y="0" font="{vdrOsd}" width="{areawidth}-20" fontsize="8%" color="{clrWhite}" text="{title}" /> - <!-- progress bar if event is running --> - <drawtext condition="{running}" name="start" x="{areawidth}/4 - {width(start)}" y="9%" font="vdrOsd}" fontsize="6%" color="{clrWhite}" text="{start}" /> - <drawtext condition="{running}" name="stop" x="{areawidth}*3/4" y="9%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{stop}" /> - <drawellipse condition="{running}" x="{areawidth} / 4 + 5" y="{posy(start)} + {height(start)} / 2 - 6" width="11" height="11" quadrant="0" color="{clrBackground}" /> - <drawrectangle condition="{running}" x="{areawidth} / 4 + 10" y="{posy(start)} + {height(start)} / 2 - 6" width="{areawidth}/2 - 20" height="11" color="{clrBackground}" /> - <drawellipse condition="{running}" x="3 * {areawidth} / 4 - 16" y="{posy(start)} + {height(start)} / 2 - 6" width="11" height="11" quadrant="0" color="{clrBackground}" /> - <drawellipse condition="{running}" x="{areawidth} / 4 + 6" y="{posy(start)} + {height(start)} / 2 - 5" width="9" height="9" quadrant="0" color="{clrProgressbar}" /> - <drawrectangle condition="{running}" x="{areawidth} / 4 + 10" y="{posy(start)} + {height(start)} / 2 - 5" width="{areawidth}/2 * {elapsed} / {duration} - 20 * {elapsed} / {duration}" height="9" color="{clrProgressbar}" /> - <drawellipse condition="{running}" x="{areawidth} / 4 + 10 + {areawidth}/2 * {elapsed} / {duration} - 20 * {elapsed} / {duration} - 4" y="{posy(start)} + {height(start)} / 2 - 5" width="9" height="9" quadrant="0" color="{clrProgressbar}" /> - <!-- start and stop if event is not running --> - <drawtext condition="not{running}" x="10" y="9%" font="{vdrOsd}" fontsize="{areaheight}/20" color="{clrWhite}" text="{start} - {stop} ({duration} min)" /> - <!-- scraper poster --> - <drawimage condition="{hasposter}" name="poster" imagetype="image" path="{posterpath}" x="{areawidth} - {areawidth}/3" y="{posy(start)} + {height(start)} + 10" width="{areawidth}/3" height="{areawidth}/3 * {posterheight} / {posterwidth}"/> - <!-- description --> - <drawtextbox condition="{hasposter}" x="10" y="{posy(poster)}" width="99%" height="{areaheight} - {posy(poster)}" float="topright" floatwidth="{width(poster)} + 10" floatheight="{height(poster)} + 20" font="{vdrOsd}" fontsize="{areaheight}/20" color="{clrWhite}" text="{description}" /> - <drawtextbox condition="not{hasposter}" x="10" y="{posy(poster)}" width="99%" height="{areaheight} - {posy(poster)}" font="{vdrOsd}" fontsize="{areaheight}/20" color="{clrWhite}" text="{description}" /> - </area> - <!-- whatsonnow and whotsonnext --> - <area condition="{whatsonnow}||{whatsonnext}" x="32%" y="2%" width="67%" height="76%" layer="2"> - <!-- title --> - <drawtext align="center" y="0" font="{vdrOsd}" width="{areawidth}-20" fontsize="10%" color="{clrWhite}" text="{title}" /> - <!-- progress bar if event is running --> - <drawtext condition="{running}" name="start" x="{areawidth}/4 - {width(start)}" y="11%" font="vdrOsd}" fontsize="8%" color="{clrWhite}" text="{start}" /> - <drawtext condition="{running}" name="stop" x="{areawidth}*3/4" y="11%" font="{vdrOsd}" fontsize="8%" color="{clrWhite}" text="{stop}" /> - <drawellipse condition="{running}" x="{areawidth} / 4 + 5" y="{posy(start)} + {height(start)} / 2 - 6" width="11" height="11" quadrant="0" color="{clrBackground}" /> - <drawrectangle condition="{running}" x="{areawidth} / 4 + 10" y="{posy(start)} + {height(start)} / 2 - 6" width="{areawidth}/2 - 20" height="11" color="{clrBackground}" /> - <drawellipse condition="{running}" x="3 * {areawidth} / 4 - 16" y="{posy(start)} + {height(start)} / 2 - 6" width="11" height="11" quadrant="0" color="{clrBackground}" /> - <drawellipse condition="{running}" x="{areawidth} / 4 + 6" y="{posy(start)} + {height(start)} / 2 - 5" width="9" height="9" quadrant="0" color="{clrProgressbar}" /> - <drawrectangle condition="{running}" x="{areawidth} / 4 + 10" y="{posy(start)} + {height(start)} / 2 - 5" width="{areawidth}/2 * {elapsed} / {duration} - 20 * {elapsed} / {duration}" height="9" color="{clrProgressbar}" /> - <drawellipse condition="{running}" x="{areawidth} / 4 + 10 + {areawidth}/2 * {elapsed} / {duration} - 20 * {elapsed} / {duration} - 4" y="{posy(start)} + {height(start)} / 2 - 5" width="9" height="9" quadrant="0" color="{clrProgressbar}" /> - <!-- start and stop if event is not running --> - <drawtext condition="not{running}" x="10" y="9%" font="{vdrOsd}" fontsize="{areaheight}/20" color="{clrWhite}" text="{start} - {stop} ({duration} min)" /> - <!-- scraper poster --> - <drawimage condition="{hasposter}" name="poster" imagetype="image" path="{posterpath}" x="{areawidth}* 2 / 3" y="{posy(start)} + {height(start)} + 10" width="{areawidth}/3" height="{areawidth}/3 * {posterheight} / {posterwidth}"/> - <!-- description --> - <drawtextbox condition="{hasposter}" x="10" y="{posy(poster)}" width="99%" height="{areaheight} - {posy(poster)}" float="topright" floatwidth="{width(poster)} + 10" floatheight="{height(poster)} + 10" font="{vdrOsd}" fontsize="{areaheight}/18" color="{clrWhite}" text="{description}" /> - <drawtextbox condition="not{hasposter}" x="10" y="{posy(poster)}" width="99%" height="{areaheight} - {posy(poster)}" font="{vdrOsd}" fontsize="{areaheight}/18" color="{clrWhite}" text="{description}" /> - </area> - <areascroll condition="{whatsonnow}||{whatsonnext}" mode="forthandback" orientation="vertical" delay="1000" scrollspeed="medium" x="32%" y="78%" width="67%" height="20%" layer="2"> - <drawtext x="10" y="0" font="{semibold}" fontsize="20%" color="{clrWhite}" text="{tr(nextschedules)}:" /> - <loop name="schedule" x="0" y="{areaheight}/4 + 5" orientation="vertical"> - <drawtext x="10" font="{vdrOsd}" width="{areawidth}-20" fontsize="20%" color="{clrWhite}" text="{schedule[start]} {schedule[title]}" /> - </loop> - </areascroll> - </currentelement> - </menuitems> -</menuschedules> - diff --git a/skins/nopacity/xmlfiles/displaymenusetup.xml b/skins/nopacity/xmlfiles/displaymenusetup.xml deleted file mode 100644 index 519d818..0000000 --- a/skins/nopacity/xmlfiles/displaymenusetup.xml +++ /dev/null @@ -1,45 +0,0 @@ -<menusetup x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="33%" scaletvy="10%" scaletvwidth="65%" scaletvheight="80%" > - - <scrollbar> - <area x="30%" y="11%" width="2%" height="78%" layer="2"> - <fill color="{clrBorder}" /> - <drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" /> - <drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrScrollbar}" /> - </area> - </scrollbar> - - <menuitems x="{areawidth}*0.005" y="10%" orientation="vertical" width="28%" height="80%" align="center" numlistelements="10"> - <!-- Available Variables setup menu listelement: - {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="1%" width="{areawidth}" height="{areaheight}*0.98"/> - <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - </area> - <area x="0" width="100%" layer="7"> - <drawimage imagetype="skinpart" path="menubuttontop" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - </area> - <area x="0" width="100%" layer="3"> - <drawimage imagetype="menuicon" path="{icon}" x="10" valign="center" width="{areaheight}*0.9" height="{areaheight}*0.9"/> - </area> - <areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="25%" width="75%" layer="3"> - <drawtext condition="not{current}" name="menutext" x="0" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItem}" text="{number} {label}" /> - <drawtext condition="{current}" name="menutext" x="0" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItemSelected}" text="{number} {label}" /> - </areascroll> - </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> - -</menusetup> diff --git a/skins/nopacity/xmlfiles/displaymenutimers.xml b/skins/nopacity/xmlfiles/displaymenutimers.xml deleted file mode 100644 index 5b1999b..0000000 --- a/skins/nopacity/xmlfiles/displaymenutimers.xml +++ /dev/null @@ -1,102 +0,0 @@ -<menutimers x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="33%" scaletvy="10%" scaletvwidth="65%" scaletvheight="80%"> - <scrollbar> - <area x="30%" y="11%" width="2%" height="78%" layer="2"> - <fill color="{clrBorder}" /> - <drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" /> - <drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrScrollbar}" /> - </area> - </scrollbar> - - <menuitems x="{areawidth}*0.005" y="10%" orientation="vertical" width="99%" height="80%" align="center" numlistelements="10"> - <!-- Available Variables channels menu listelement: - {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 - {channelname} Name of channel which is set for the timer - {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> - <!-- background and foreground--> - <area x="0" width="28%" layer="2"> - <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - </area> - <!-- channel logo --> - <area x="5" width="6%" layer="3"> - <drawimage imagetype="channellogo" path="{channelid}" x="0" width="100%" height="100%" valign="center" /> - </area> - <!-- datetime and icons --> - <area x="1%" width="28%" layer="3"> - <drawtext condition="not{current}" x="22%" y="5" font="{vdrOsd}" fontsize="40%" color="{clrFontMenuItem}" text="{dayname} {day}. {timerstart} - {timerstop}" /> - <drawtext condition="{current}" x="22%" y="5" font="{vdrOsd}" fontsize="40%" color="{clrFontMenuItemSelected}" text="{dayname} {day}. {timerstart} - {timerstop}" /> - <drawimage condition="{flagactive}" imagetype="icon" path="ico_timer_active" x="{areawidth} - 0.5*{areaheight} - 20" y="0" width="0.5*{areaheight}" height="0.5*{areaheight}" /> - <drawimage condition="not{flagactive}" imagetype="icon" path="ico_timer_inactive" x="{areawidth} - 0.5*{areaheight} - 20" y="0" width="0.5*{areaheight}" height="0.5*{areaheight}" /> - <drawimage condition="{flagrecording}" name="active" imagetype="icon" path="ico_timer_recording" x="{areawidth} - {areaheight} - 20" y="0" width="0.5*{areaheight}" height="0.5*{areaheight}" /> - </area> - <!-- Timer Name --> - <areascroll scrollelement="timername" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="7%" width="20%" layer="3"> - <drawtext condition="not{current}" name="timername" x="0" y="50%" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItem}" text="{title}" /> - <drawtext condition="{current}" name="timername" x="0" y="50%" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItemSelected}" text="{title}" /> - </areascroll> - </listelement> - <!-- additional element which is drawn for current element --> - <!-- Available Variables channels menu currentelement: - {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 - {channelname} Name of channel which is set for the timer - {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="300"> - <area x="32%" y="2%" width="67%" height="96%" layer="2"> - <fill color="{clrTransBlack}" /> - </area> - <area condition="{flagactive}" x="32%" y="2%" width="67%" height="96%" layer="2"> - <!-- title --> - <drawtext name="title" align="center" y="0" font="{vdrOsd}" width="{areawidth}-20" fontsize="8%" color="{clrWhite}" text="{eventtitle} - {eventshorttext}" /> - <!-- start and stop if event is not running --> - <drawtext x="10" y="9%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{dayname} {eventstart} - {eventstop}, {channelname}" /> - <!-- scraper poster --> - <drawimage condition="{hasposter}" name="poster" imagetype="image" path="{posterpath}" x="{areawidth} - {areawidth}/4" y="17%" width="{areawidth}/4" height="{areawidth}/4 * {posterheight} / {posterwidth}"/> - <!-- description --> - <drawtextbox condition="{hasposter}" x="10" y="{posy(poster)}" width="99%" height="{areaheight} - {posy(poster)}" float="topright" floatwidth="{width(poster)} + 10" floatheight="{height(poster)} + 20" font="{vdrOsd}" fontsize="5%" color="{clrWhite}" text="{eventdescription}" /> - <drawtextbox condition="not{hasposter}" x="10" y="{posy(poster)}" width="99%" height="{areaheight} - {posy(poster)}" font="{vdrOsd}" fontsize="5%" color="{clrWhite}" text="{eventdescription}" /> - </area> - <area condition="not{flagactive}" x="32%" y="2%" width="67%" height="96%" layer="2"> - <drawtext x="10" y="0" font="{vdrOsd}" fontsize="8%" color="{clrWhite}" text="{channelname}" /> - <drawtext x="10" y="10%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{timerstart} - {timerstop}" /> - </area> - </currentelement> - - </menuitems> - -</menutimers>
\ No newline at end of file diff --git a/skins/nopacity/xmlfiles/displaymessage.xml b/skins/nopacity/xmlfiles/displaymessage.xml deleted file mode 100644 index 84d9470..0000000 --- a/skins/nopacity/xmlfiles/displaymessage.xml +++ /dev/null @@ -1,28 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE displaymessage SYSTEM "../../../dtd/displaymessage.dtd">
-
-<displaymessage x="0" y="0" width="100%" height="100%" fadetime="300">
-
- <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="88%" width="90%" height="10%" layer="6">
- <drawimage condition="{status}" imagetype="skinpart" path="messageStatus" x="0" y="0" width="100%" height="100%" />
- <drawimage condition="{info}" imagetype="skinpart" path="messageInfo" x="0" y="0" width="100%" height="100%" />
- <drawimage condition="{warning}" imagetype="skinpart" path="messageWarning" x="0" y="0" width="100%" height="100%" />
- <drawimage condition="{error}" imagetype="skinpart" path="messageError" x="0" y="0" width="100%" height="100%" />
- </area>
- <area x="5%" y="88%" width="90%" height="10%" layer="7">
- <drawtext align="center" valign="center" font="{light}" fontsize="50%" color="{clrWhite}" text="{text}" />
- </area>
- </message>
-
-</displaymessage>
diff --git a/skins/nopacity/xmlfiles/displayreplay.xml b/skins/nopacity/xmlfiles/displayreplay.xml deleted file mode 100644 index c14dbff..0000000 --- a/skins/nopacity/xmlfiles/displayreplay.xml +++ /dev/null @@ -1,342 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE displayreplay SYSTEM "../../../dtd/displayreplay.dtd"> - -<displayreplay x="0" y="0" width="100%" height="100%" fadetime="{fadeTime}"> - - <background> - <area x="1%" y="74%" width="98%" height="25%" layer="1" transparency="{transparency}"> - <drawimage imagetype="skinpart" path="displayreplayback" x="0" y="0" width="100%" height="100%"/> - </area> - <area x="1%" y="74%" width="98%" height="25%" layer="7"> - <drawimage imagetype="skinpart" path="displayreplaytop" x="0" y="0" width="100%" height="100%"/> - </area> - <!-- background progress bar --> - <area x="3%" y="83%" width="94%" height="2%" layer="2"> - <drawellipse x="0" y="0" width="{areaheight}" height="{areaheight}" color="{clrBlack}" quadrant="0" /> - <drawellipse x="{areawidth}-{areaheight}" y="0" width="{areaheight}" height="{areaheight}" color="{clrBlack}" quadrant="0" /> - <drawrectangle x="{areaheight}/2" y="0" width="{areawidth} - {areaheight}" height="{areaheight}" color="{clrBlack}" /> - </area> - </background> - - <backgroundmodeonly> - <area x="40%" y="86%" width="20%" height="11%" layer="3"> - <fill color="{clrBorder}" /> - <drawrectangle x="1" y="1" width="{areawidth} -2" height="{areaheight} -2" color="{clrTransBlack}" /> - </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 - {year} year in yyyy - --> - <datetime> - <area x="63%" y="74%" width="35%" height="6%" layer="2"> - <drawtext align="right" valign="center" font="{vdrOsd}" fontsize="95%" color="{clrWhite}" width="100%" text="{daynameshort} {day}.{month} {time}" /> - </area> - </datetime> - - <!-- Available Variables scrapercontent: - {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> - <area condition="{isbanner}" x="0" y="0" width="{areaheight}*0.13*{mediawidth}/{mediaheight}" height="13%" layer="2"> - <drawimage imagetype="image" path="{mediapath}" align="center" valign="center" width="{areawidth}" height="{areaheight}"/> - </area> - <area condition="not{isbanner}" x="0" y="0" width="{areaheight}*0.5*{mediawidth}/{mediaheight}" height="50%" layer="2"> - <drawimage imagetype="image" path="{mediapath}" x="5" y="5" width="{areawidth}-10" height="{areaheight}-10"/> - </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="3%" y="74%" width="60%" height="6%" layer="2"> - <drawtext name="title" x="0" valign="center" font="{vdrOsd}" fontsize="95%" color="{clrWhite}" width="100%" text="{rectitle}" /> - <drawtext condition="isset{recsubtitle}" x="{width(title)}" valign="center" font="{vdrOsd}" fontsize="95%" color="{clrWhite}" width="100%" text=" - {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="{areawidth}*0.98 - {areaheight}*0.15" y="93%" width="{areaheight}*0.15" height="5%" layer="2"> - <drawimage imagetype="icon" path="ico_{resolution}" x="0" y="0" width="{areaheight}*3" height="{areaheight}"/> - </area> - </recinfo> - - <!-- Available Variables currenttime: - {reccurrent} Current Time in hh:mm:ss - --> - <currenttime> - <area x="3%" y="86%" width="30%" height="4%" layer="2"> - <drawtext x="0" valign="center" font="{vdrOsd}" fontsize="100%" color="{clrWhite}" text="{reccurrent}" /> - </area> - </currenttime> - - <!-- Available Variables totaltime: - {rectotal} Total Time in hh:mm:ss - --> - <totaltime> - <area x="67%" y="86%" width="30%" height="4%" layer="2"> - <drawtext align="right" valign="center" font="{vdrOsd}" fontsize="100%" color="{clrWhite}" text="{rectotal}" /> - </area> - </totaltime> - - <!-- Available Variables progressbar: - {current} current frame of recording - {total} total frames of recording - --> - <progressbar> - <area x="3%" y="83%" width="94%" height="2%" layer="3"> - <drawellipse x="1" y="1" width="{areaheight}-2" height="{areaheight}-2" color="{clrProgressbar}" quadrant="0" /> - <drawrectangle x="{areaheight}/2" y="1" width="{current}/{total}*{areawidth} - {current}/{total}*{areaheight}" height="{areaheight}-2" color="{clrProgressbar}" /> - </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[startmark]} true if mark is start mark - --> - <cutmarks> - <area x="3%" y="82%" width="94%" height="4%" layer="4"> - <loop name="marks" x="0" y="0" orientation="absolute"> - <drawrectangle x="{marks[position]}/{marks[total]}*{areawidth}" y="0" width="1" height="100%" color="{clrTransWhite}" /> - <drawrectangle condition="{marks[startmark]}" x="{marks[position]}/{marks[total]}*{areawidth}" y="0" width="5" height="1" color="{clrTransWhite}" /> - <drawrectangle condition="{marks[startmark]}" x="{marks[position]}/{marks[total]}*{areawidth}" y="{areaheight}-1" width="5" height="1" color="{clrTransWhite}" /> - <drawrectangle condition="not{marks[startmark]}" x="{marks[position]}/{marks[total]}*{areawidth} - 5" y="0" width="5" height="1" color="{clrTransWhite}" /> - <drawrectangle condition="not{marks[startmark]}" x="{marks[position]}/{marks[total]}*{areawidth} - 5" y="{areaheight}-1" width="5" height="1" color="{clrTransWhite}" /> - <drawrectangle condition="{marks[startmark]}" x="{marks[position]}/{marks[total]}*{areawidth}" y="30%" width="{marks[endposition]}/{marks[total]}*{areawidth} - {marks[position]}/{marks[total]}*{areawidth}" height="40%" color="{clrTransWhite}" /> - </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="30%" y="88%" width="40%" height="7%" layer="3"> - <drawimage condition="not{rewind} ++ not{rewind1x} ++ not{rewind2x} ++ not{rewind3x}" imagetype="icon" path="ico_rew_off" x="{areawidth}/2 - 2*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{rewind}" imagetype="icon" path="ico_rew" x="{areawidth}/2 - 2*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{rewind1x}" imagetype="icon" path="ico_rew_1x" x="{areawidth}/2 - 2*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{rewind2x}" imagetype="icon" path="ico_rew_2x" x="{areawidth}/2 - 2*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{rewind3x}" imagetype="icon" path="ico_rew_3x" x="{areawidth}/2 - 2*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - - <drawimage condition="not{pause}" imagetype="icon" path="ico_pause_off" x="{areawidth}/2 - {areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{pause}" imagetype="icon" path="ico_pause" x="{areawidth}/2 - {areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - - <drawimage condition="not{play}" imagetype="icon" path="ico_play_off" x="{areawidth}/2" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{play}" imagetype="icon" path="ico_play" x="{areawidth}/2" y="0" width="{areaheight}" height="{areaheight}"/> - - <drawimage condition="not{forward} ++ not{forward1x} ++ not{forward2x} ++ not{forward3x}" imagetype="icon" path="ico_ff_off" x="{areawidth}/2 + {areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{forward}" imagetype="icon" path="ico_ff" x="{areawidth}/2 + {areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{forward1x}" imagetype="icon" path="ico_ff_1x" x="{areawidth}/2 + {areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{forward2x}" imagetype="icon" path="ico_ff_2x" x="{areawidth}/2 + {areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{forward3x}" imagetype="icon" path="ico_ff_3x" x="{areawidth}/2 + {areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - </area> - </controlicons> - - <controliconsmodeonly> - <area x="30%" y="88%" width="40%" height="7%" layer="3"> - <drawimage condition="not{rewind} ++ not{rewind1x} ++ not{rewind2x} ++ not{rewind3x}" imagetype="icon" path="ico_rew_off" x="{areawidth}/2 - 2*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{rewind}" imagetype="icon" path="ico_rew" x="{areawidth}/2 - 2*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{rewind1x}" imagetype="icon" path="ico_rew_1x" x="{areawidth}/2 - 2*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{rewind2x}" imagetype="icon" path="ico_rew_2x" x="{areawidth}/2 - 2*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{rewind3x}" imagetype="icon" path="ico_rew_3x" x="{areawidth}/2 - 2*{areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - - <drawimage condition="not{pause}" imagetype="icon" path="ico_pause_off" x="{areawidth}/2 - {areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{pause}" imagetype="icon" path="ico_pause" x="{areawidth}/2 - {areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - - <drawimage condition="not{play}" imagetype="icon" path="ico_play_off" x="{areawidth}/2" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{play}" imagetype="icon" path="ico_play" x="{areawidth}/2" y="0" width="{areaheight}" height="{areaheight}"/> - - <drawimage condition="not{forward} ++ not{forward1x} ++ not{forward2x} ++ not{forward3x}" imagetype="icon" path="ico_ff_off" x="{areawidth}/2 + {areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{forward}" imagetype="icon" path="ico_ff" x="{areawidth}/2 + {areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{forward1x}" imagetype="icon" path="ico_ff_1x" x="{areawidth}/2 + {areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{forward2x}" imagetype="icon" path="ico_ff_2x" x="{areawidth}/2 + {areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{forward3x}" imagetype="icon" path="ico_ff_3x" x="{areawidth}/2 + {areaheight}" y="0" width="{areaheight}" height="{areaheight}"/> - </area> - </controliconsmodeonly> - - <!-- Available Variables jump: - {jump} time to jump to in hh:mm - --> - <jump> - <area x="5%" y="90%" width="30%" height="7%" layer="2"> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="80%" 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="88%" width="90%" height="10%" layer="6"> - <drawimage condition="{status}" imagetype="skinpart" path="messageStatus" x="0" y="0" width="100%" height="100%" /> - <drawimage condition="{info}" imagetype="skinpart" path="messageInfo" x="0" y="0" width="100%" height="100%" /> - <drawimage condition="{warning}" imagetype="skinpart" path="messageWarning" x="0" y="0" width="100%" height="100%" /> - <drawimage condition="{error}" imagetype="skinpart" path="messageError" x="0" y="0" width="100%" height="100%" /> - </area> - <area x="5%" y="88%" width="90%" height="10%" layer="7"> - <drawtext align="center" valign="center" font="{light}" fontsize="50%" 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 - --> - <onpause delay="60" fadetime="{fadeTime}"> - <area x="0" y="0" width="100%" height="100%" layer="7"> - <fill color="{clrTransBlackDark}" /> - </area> - </onpause> - - <onpausemodeonly delay="20" fadetime="{fadeTime}"> - <area x="0" y="0" width="100%" height="100%" layer="7"> - <fill color="{clrTransBlackDark}" /> - </area> - <area x="0" y="0" width="100%" height="100%" layer="6"> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="25%" color="{clrWhite}" text="{tr(pause)}" /> - <drawimage condition="{isseries}" imagetype="image" path="{seriesbanner1path}" align="center" y="10" width="{areawidth}*0.5" height="{areawidth} * 0.5 * {seriesbanner1height} / {seriesbanner1width}"/> - <drawimage condition="{ismovie}" imagetype="image" path="{posterpath}" x="10" y="10" width="{areaheight} * 0.4 * {posterwidth} / {posterheight}" height="{areaheight} * 0.4"/> - </area> - </onpausemodeonly> -</displayreplay> diff --git a/skins/nopacity/xmlfiles/displayvolume.xml b/skins/nopacity/xmlfiles/displayvolume.xml deleted file mode 100644 index 6c54ee9..0000000 --- a/skins/nopacity/xmlfiles/displayvolume.xml +++ /dev/null @@ -1,40 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE displayvolume SYSTEM "../../../dtd/displayvolume.dtd"> - -<displayvolume x="20%" y="75%" width="60%" height="10%" fadetime="{fadeTime}"> - - <background> - </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> - <!-- Background --> - <area x="0" y="0" width="100%" height="100%" layer="1" transparency="{transparency}"> - <drawimage imagetype="skinpart" path="displayvolume" x="0" y="0" width="100%" height="100%"/> - </area> - <!-- Header --> - <area x="0" y="3%" width="100%" height="40%" layer="2"> - <drawtext x="10" valign="center" font="{vdrOsd}" fontsize="100%" color="{clrWhite}" text="{tr(volume)}: {volpercent}%" /> - <drawimage condition="not{mute}" imagetype="icon" path="ico_volume" x="{areawidth} - 2*{areaheight}" y="5" width="{areaheight}" height="{areaheight}"/> - <drawimage condition="{mute}" imagetype="icon" path="ico_mute" x="{areawidth} - 2*{areaheight}" y="5" width="{areaheight}" height="{areaheight}"/> - </area> - <!-- Volumebar Background --> - <area x="4%" y="60%" width="92%" height="30%" layer="2"> - <drawellipse x="0" y="0" width="{areaheight}" height="{areaheight}" color="{clrBlack}" quadrant="0" /> - <drawellipse x="1" y="1" width="{areaheight}-2" height="{areaheight}-2" color="{clrProgressbar}" quadrant="0" /> - <drawellipse x="{areawidth}-{areaheight}" y="0" width="{areaheight}" height="{areaheight}" color="{clrBlack}" quadrant="0" /> - <drawrectangle x="{areaheight}/2" y="0" width="{areawidth} - {areaheight}" height="{areaheight}" color="{clrBlack}" /> - </area> - <!-- Volumebar --> - <area x="5%" y="60%" width="91%" height="30%" layer="3"> - <drawrectangle x="1" y="1" width="{volume}/{maxvolume}*{areawidth} - {volume}/{maxvolume}*{areaheight}/2" height="{areaheight}-2" color="{clrProgressbar}" /> - <drawellipse x="{volume}/{maxvolume}*{areawidth} - {volume}/{maxvolume}*{areaheight}/2" y="1" width="{areaheight}/2 - 2" height="{areaheight}-2" color="{clrProgressbar}" quadrant="5" /> - </area> - </volume> - -</displayvolume> diff --git a/skins/nopacity/xmlfiles/plug-tvguideng-detail.xml b/skins/nopacity/xmlfiles/plug-tvguideng-detail.xml deleted file mode 100644 index 2ad6b76..0000000 --- a/skins/nopacity/xmlfiles/plug-tvguideng-detail.xml +++ /dev/null @@ -1,386 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE displayplugin SYSTEM "../../../dtd/displayplugin.dtd"> - -<displayplugin x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="80%" scaletvy="0" scaletvwidth="20%" scaletvheight="20%"> - - <viewelement name="background"> - <area x="0" y="0" width="100%" height="20%" layer="1"> - <drawimage imagetype="skinpart" path="tvguide_header" x="0" y="0" width="80%" height="100%"/> - <drawimage imagetype="skinpart" path="tvguide_tvframe" x="80%" y="0" width="20%" height="100%"/> - </area> - <area x="0" y="20%" width="100%" height="80%" layer="1"> - <fill color="{clrBackground}" /> - </area> - </viewelement> - - <!-- Available Variables scrollbar: - {height} height of scrollbar in tenth of a percent of total height - {offset} offset in tenth of a percent of total height - --> - <scrollbar> - <area x="97%" y="20%" width="2%" height="65%" layer="2"> - <fill color="{clrBorder}" /> - <drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" /> - <drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrScrollbar}" /> - </area> - </scrollbar> - - <!-- Available Variables Footer: - {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 - --> - <viewelement name="footer"> - <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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" color="{clrWhite}" text="{blue}" /> - </area> - </viewelement> - - <!-- Available Variables time: - {time} timestring in hh:mm - {sec} current seconds - {min} current minutes - {hour} current hours - {hmins} current "hourminutes" to display an hour hand - --> - <viewelement name="time"> - </viewelement> - - - <!-- 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 - --> - <viewelement name="header"> - <area x="1%" y="1%" width="75%" height="18%" layer="2"> - <drawimage name="logo" imagetype="channellogo" path="{channelid}" x="0" width="15%" height="80%" valign="center" /> - <drawtext name="title" x="{width(logo)} + 20" valign="center" font="{vdrOsd}" fontsize="35%" color="{clrWhite}" text="{title}" /> - <drawtext name="datetime" x="{width(logo)} + 20" y="{posy(title)} - {height(datetime)}" font="{vdrOsd}" fontsize="25%" color="{clrWhite}" text="{day} {date} {start} - {stop} ({duration} mins)" /> - <drawtext name="shorttext" x="{width(logo)} + 20" y="{posy(title)} + {height(title)}" font="{vdrOsd}" fontsize="25%" color="{clrWhite}" text="{shorttext}" /> - </area> - </viewelement> - - <!-- 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="1%" y="21%" width="95%" height="65%" layer="2" scrollheight="{areaheight}/4"> - <drawtextbox condition="not{isseries}++not{ismovie}" x="0" y="10" width="96%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{description}" /> - <drawimage condition="{isseries}" name="seriesposter" imagetype="image" path="{seriesposter1path}" x="{areawidth}*0.75" y="10" width="{areawidth}*0.25" height="{areawidth} * 0.25 * {seriesposter1height} / {seriesposter1width}"/> - <drawimage condition="{ismovie}" name="movieposter" imagetype="image" path="{posterpath}" x="{areawidth}*0.75" y="10" width="{areawidth}*0.25" height="{areawidth} * 0.25 * {posterheight} / {posterwidth}" /> - <drawtextbox condition="{isseries}" x="0" y="10" width="96%" float="topright" floatwidth="{width(seriesposter)} + 10" floatheight="{height(seriesposter)} + 20" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{description}" /> - <drawtextbox condition="{ismovie}" x="0" y="10" width="96%" float="topright" floatwidth="{width(movieposter)} + 10" floatheight="{height(movieposter)} + 20" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{description}" /> - </tab> - <!-- TAB RERUNS --> - <tab condition="{hasreruns}" name="{tr(reruns)}" x="1%" y="21%" width="95%" height="60%" layer="2" scrollheight="{areaheight}/4"> - <drawtext align="center" y="0" name="title" font="{vdrOsd}" fontsize="10%" 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="-5" font="{vdrOsd}" fontsize="10%" color="{clrWhite}" text="{reruns[channelname]}" /> - <drawtext condition="{reruns[channellogoexists]}" x="{width(logo)}+20" y="-5" width="{areawidth} - {width(logo)} - 20" font="{vdrOsd}" fontsize="8%" color="{clrWhite}" text="{reruns[day]} {reruns[date]} {reruns[start]} - {reruns[stop]}: {reruns[title]} {reruns[shorttext]}" /> - <drawtext condition="not{reruns[channellogoexists]}" x="{width(channelname)}+20" y="-5" width="{areawidth} - {width(logo)} - 20" font="{vdrOsd}" fontsize="8%" color="{clrWhite}" text="{reruns[day]} {reruns[date]} {reruns[start]} - {reruns[stop]}: {reruns[title]} {reruns[shorttext]}" /> - </loop> - </tab> - <!-- TAB ACTORS --> - <tab condition="{isseries}||{ismovie}" name="{tr(actors)}" x="1%" y="21%" width="95%" height="60%" layer="2" scrollheight="{areaheight}/4"> - <drawtext align="center" name="title" y="0" font="{vdrOsd}" fontsize="15%" color="{clrWhite}" text="{tr(actors)}" /> - <loop name="actors" x="0" y="{height(title)} + 10" width="{areawidth}" orientation="horizontal" columnwidth="{areawidth}/5" rowheight="{areawidth}/5*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="{vdrOsd}" fontsize="7%" color="{clrWhite}" text="{actors[name]}" /> - <drawtext align="center" y="{height(thumb)} + 10 + {height(actorname)}" width="{columnwidth}" font="{vdrOsd}" fontsize="7%" color="{clrWhite}" text="{actors[role]}" /> - </loop> - </tab> - <!-- TAB TVDBINFO --> - <tab condition="{isseries}" name="TvDBInfo" x="1%" y="21%" width="95%" height="60%" layer="2" 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="{vdrOsd}" 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="1%" y="21%" width="95%" height="60%" layer="2" 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="1%" y="21%" width="95%" height="60%" layer="2" 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="{vdrOsd}" fontsize="8%" 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="1%" y="21%" width="95%" height="60%" layer="2" 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="1%" y="87%" width="98%" height="5%" layer="3"> - <drawrectangle x="0" y="1" width="100%" height="1" color="{clrBorder}" /> - <loop name="tabs" x="0" y="0" orientation="horizontal"> - <drawrectangle condition="{tabs[current]}" x="0" y="1" width="{width(label)}" height="100%" color="{clrBorder}" /> - <drawrectangle condition="not{tabs[current]}" x="0" y="1" width="{width(label)}" height="100%" color="{clrBorder}" /> - <drawrectangle condition="not{tabs[current]}" x="2" y="2" width="{width(label)} - 4" height="{areaheight}-4" color="{clrTransparent}" /> - <drawtext name="label" x="0" valign="center" font="{vdrOsd}" fontsize="95%" color="{clrWhite}" text=" {tabs[title]} " /> - </loop> - </area> - </tablabels> - -</displayplugin> diff --git a/skins/nopacity/xmlfiles/plug-tvguideng-recmenu.xml b/skins/nopacity/xmlfiles/plug-tvguideng-recmenu.xml deleted file mode 100644 index 01bedda..0000000 --- a/skins/nopacity/xmlfiles/plug-tvguideng-recmenu.xml +++ /dev/null @@ -1,468 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE displayplugin SYSTEM "../../../dtd/displayplugin.dtd"> - -<displayplugin x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="80%" scaletvy="0" scaletvwidth="20%" scaletvheight="20%"> - <!-- Available Variables Background: - {menuwidth} menuwidth in percent of screenwidth - {menuheight} menuheight in percent of screenheight - {hasscrollbar} true if menu needs a scrollbar - --> - <viewelement name="background"> - <area condition="not{hasscrollbar}" x="0" y="0" width="100%" height="100%" layer="4"> - <drawrectangle x="{areawidth}/2 - {menuwidth}*{areawidth}/100/2" y="{areaheight}/2 - {menuheight}*{areaheight}/100/2" width="{menuwidth}*{areawidth}/100" height="{menuheight}*{areaheight}/100" color="{clrBackgroundOpaque}" /> - </area> - <area condition="{hasscrollbar}" x="0" y="0" width="100%" height="100%" layer="4"> - <drawrectangle x="{areawidth}/2 - {menuwidth}*{areawidth}/100/2" y="{areaheight}/2 - {menuheight}*{areaheight}/100/2" width="{menuwidth}*{areawidth}/100 + {areawidth}*0.03" height="{menuheight}*{areaheight}/100" color="{clrBackgroundOpaque}"/> - </area> - </viewelement> - - <!-- Available Variables Scrollbar: - {menuwidth} menuwidth in percent of screenwidth - {posy} y position of scrollbar start in percent of screenheight - {totalheight} height of complete scrollbar in percent of screenheight - {height} height in tenth of a percent of total height - {offset} offset in tenth of a percent - --> - <viewelement name="scrollbar"> - <area x="0" y="0" width="100%" height="100%" layer="5"> - <drawrectangle x="{areawidth}/2 + {menuwidth}*{areawidth}/100/2" y="{posy}*{areaheight}/100" width="2%" height="{totalheight}*{areaheight}/100" color="{clrScrollbar}" /> - <drawrectangle x="{areawidth}/2 + {menuwidth}*{areawidth}/100/2 + 2" y="{posy}*{areaheight}/100 + 2" width="{areawidth}*0.02 - 4" height="{totalheight}*{areaheight}/100 - 4" color="{clrTransparent}" /> - </area> - <area x="0" y="0" width="100%" height="100%" layer="6"> - <drawrectangle x="{areawidth}/2 + {menuwidth}*{areawidth}/100/2 + 4" y="{posy}*{areaheight}/100 + {totalheight}*{areaheight}/100 * {offset} / 1000 + 4" width="{areawidth}*0.02 - 8" height="{totalheight}*{areaheight}/100 * {height} / 1000 - 8" color="{clrScrollbar}" /> - </area> - </viewelement> - - <grid name="recmenu" x="0" y="0" width="100%" height="100%"> - <!-- Background - {current} true if item is currently selected - --> - <area condition="not{info}++not{buttonyesno}++not{timerconflictheader}++not{timerconflict}++not{timelineheader}++not{timelinetimer}" layer="5"> - <drawimage condition="not{current}" imagetype="skinpart" path="tvguide_button" x="0" y="0" width="100%" height="100%"/> - <drawimage condition="{current}" imagetype="skinpart" path="tvguide_button_active" x="0" y="0" width="100%" height="100%"/> - </area> - <area condition="{info}" layer="5"> - <drawtext condition="eq({lines}, 1)" align="center" valign="center" font="{vdrOsd}" fontsize="60%" color="{clrWhite}" text="{line1}" /> - - <drawtext condition="eq({lines}, 2)" align="center" y="5%" font="{vdrOsd}" fontsize="40%" color="{clrWhite}" text="{line1}" /> - <drawtext condition="eq({lines}, 2)" align="center" y="52%" font="{vdrOsd}" fontsize="40%" color="{clrWhite}" text="{line2}" /> - - <drawtext condition="eq({lines}, 3)" align="center" y="0%" font="{vdrOsd}" fontsize="28%" color="{clrWhite}" text="{line1}" /> - <drawtext condition="eq({lines}, 3)" align="center" y="33%" font="{vdrOsd}" fontsize="28%" color="{clrWhite}" text="{line2}" /> - <drawtext condition="eq({lines}, 3)" align="center" y="66%" font="{vdrOsd}" fontsize="28%" color="{clrWhite}" text="{line3}" /> - - <drawtext condition="eq({lines}, 4)" align="center" y="0%" font="{vdrOsd}" fontsize="22%" color="{clrWhite}" text="{line1}" /> - <drawtext condition="eq({lines}, 4)" align="center" y="25%" font="{vdrOsd}" fontsize="22%" color="{clrWhite}" text="{line2}" /> - <drawtext condition="eq({lines}, 4)" align="center" y="50%" font="{vdrOsd}" fontsize="22%" color="{clrWhite}" text="{line3}" /> - <drawtext condition="eq({lines}, 4)" align="center" y="75%" font="{vdrOsd}" fontsize="22%" color="{clrWhite}" text="{line4}" /> - </area> - <!-- button - {button} true - {buttontext} text to display on button - --> - <area condition="{button}" layer="6"> - <drawtext condition="not{current}" align="center" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItem}" text="{buttontext}" /> - <drawtext condition="{current}" align="center" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItemSelected}" text="{buttontext}" /> - </area> - - <!-- yes / no button - {buttonyesno} true - {yes} true if button is set to yes - {textyes} text to display on yes button - {textno} text to display on no button - --> - <area condition="{buttonyesno}" layer="5"> - <drawimage condition="not{current}" imagetype="skinpart" path="tvguide_button" x="2%" y="5%" width="46%" height="90%"/> - <drawimage condition="not{current}" imagetype="skinpart" path="tvguide_button" x="52%" y="5%" width="46%" height="90%"/> - <drawimage condition="{current}++{yes}" imagetype="skinpart" path="tvguide_button_active" x="2%" y="5%" width="46%" height="90%"/> - <drawimage condition="{current}++{yes}" imagetype="skinpart" path="tvguide_button" x="52%" y="5%" width="46%" height="90%"/> - <drawimage condition="{current}++not{yes}" imagetype="skinpart" path="tvguide_button" x="2%" y="5%" width="46%" height="90%"/> - <drawimage condition="{current}++not{yes}" imagetype="skinpart" path="tvguide_button_active" x="52%" y="5%" width="46%" height="90%"/> - </area> - <area condition="{buttonyesno}" layer="6"> - <drawtext condition="not{current}" name="yestext" x="{areawidth}/4 - {width(yestext)}/2" valign="center" font="{vdrOsd}" fontsize="70%" color="{clrFontMenuItem}" text="{textyes}" /> - <drawtext condition="not{current}" name="notext" x="3*{areawidth}/4 - {width(notext)}/2" valign="center" font="{vdrOsd}" fontsize="70%" color="{clrFontMenuItem}" text="{textno}" /> - <drawtext condition="{current}++{yes}" name="yestext" x="{areawidth}/4 - {width(yestext)}/2" valign="center" font="{vdrOsd}" fontsize="70%" color="{clrFontMenuItemSelected}" text="{textyes}" /> - <drawtext condition="{current}++not{yes}" name="yestext" x="{areawidth}/4 - {width(yestext)}/2" valign="center" font="{vdrOsd}" fontsize="70%" color="{clrFontMenuItem}" text="{textyes}" /> - <drawtext condition="{current}++not{yes}" name="notext" x="3*{areawidth}/4 - {width(notext)}/2" valign="center" font="{vdrOsd}" fontsize="70%" color="{clrFontMenuItemSelected}" text="{textno}" /> - <drawtext condition="{current}++{yes}" name="notext" x="3*{areawidth}/4 - {width(notext)}/2" valign="center" font="{vdrOsd}" fontsize="70%" color="{clrFontMenuItem}" text="{textno}" /> - </area> <!-- Int Selector - {intselector} true - {text} title of selector - {value} current value of selector, integer - --> - <area condition="{intselector}" layer="6"> - <drawtext condition="not{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItem}" text="{text}" /> - <drawtext condition="{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItemSelected}" text="{text}" /> - <drawtext condition="not{current}" align="right" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItem}" text="{value} " /> - <drawtext condition="{current}" align="right" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItemSelected}" text="{value} " /> - </area> - <!-- Bool Selector - {boolselector} true - {text} title of selector - {value} current value of selector, true or false - --> - <area condition="{boolselector}" layer="6"> - <drawtext condition="not{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItem}" text="{text}" /> - <drawtext condition="{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItemSelected}" text="{text}" /> - <drawimage condition="{value}" imagetype="icon" path="ico_yes" x="{areawidth} - {areaheight}*0.8" y="10%" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - <drawimage condition="not{value}" imagetype="icon" path="ico_no" x="{areawidth} - {areaheight}*0.8" y="10%" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - </area> - <!-- String Selector - {stringselector} true - {text} title of selector - {value} current value of selector, string - --> - <area condition="{stringselector}" layer="6"> - <drawtext condition="not{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItem}" text="{text}" /> - <drawtext condition="{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItemSelected}" text="{text}" /> - <drawimage imagetype="icon" path="ico_arrow_right" x="{areawidth} - {areaheight}*0.8" y="10%" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - <drawtext condition="not{current}" name="value" x="{areawidth} - {width(value)} - {areaheight}" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItem}" text="{value}" /> - <drawtext condition="{current}" name="value" x="{areawidth} - {width(value)} - {areaheight}" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItemSelected}" text="{value}" /> - <drawimage imagetype="icon" path="ico_arrow_left" x="{areawidth} - {width(value)} - 2*{areaheight}" y="10%" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - </area> - <!-- Text Input - {textinput} true - {editmode} true if currently in edit mode - {text} title of selector - {value} current value of selector, string - --> - <area condition="{textinput}" layer="6"> - <drawtext condition="not{current}" x="1%" y="10%" font="{vdrOsd}" fontsize="40%" color="{clrFontMenuItem}" text="{text}" /> - <drawtext condition="{current}" x="1%" y="10%" font="{vdrOsd}" fontsize="40%" color="{clrFontMenuItemSelected}" text="{text}" /> - <drawrectangle condition="not{editmode}" x="1%" y="55%" width="98%" height="40%" color="{clrWhite}"/> - <drawrectangle condition="{editmode}" x="1%" y="55%" width="98%" height="40%" color="{clrRed}"/> - </area> - <area condition="{textinput}" layer="7"> - <drawtext align="right" y="55%" font="{vdrOsd}" fontsize="40%" color="{clrBlack}" text="{value} " /> - </area> - <!-- Time Selector - {timeselector} true - {text} title of selector - {value} current value of selector, hh:mm - --> - <area condition="{timeselector}" layer="6"> - <drawtext condition="not{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItem}" text="{text}" /> - <drawtext condition="{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItemSelected}" text="{text}" /> - <drawtext condition="not{current}" align="right" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItem}" text="{value} " /> - <drawtext condition="{current}" align="right" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItemSelected}" text="{value} " /> - </area> - <!-- Day Selector - {dayselector} true - {text} title of selector - {value} current value of selector, dd.mm - --> - <area condition="{dayselector}" layer="6"> - <drawtext condition="not{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItem}" text="{text}" /> - <drawtext condition="{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItemSelected}" text="{text}" /> - <drawtext condition="not{current}" align="right" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItem}" text="{value} " /> - <drawtext condition="{current}" align="right" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItemSelected}" text="{value} " /> - </area> - <!-- Channel Selector - {channelselector} true - {text} title of selector - {channelnumber} number of currently selected channel, 0 for "all channels" - {channelname} name of channel or "all channels" - {channelid} id of channel - {channellogoexisis} true if channel logo exists - --> - <area condition="{channelselector}" layer="6"> - <drawtext condition="not{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItem}" text="{text}" /> - <drawtext condition="{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItemSelected}" text="{text}" /> - <drawimage condition="{channellogoexisis}" imagetype="channellogo" path="{channelid}" x="{areawidth}-{areaheight}" valign="center" width="{areaheight}*0.9" height="{areaheight}*0.9" /> - <drawtext name="channelnumberlogo" condition="{channellogoexisis}" x="{areawidth}-{areaheight}-{width(channelnumberlogo)}-10" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrWhite}" text="{channelnumber}" /> - <drawtext condition="not{channellogoexisis}++{channelnumber}" align="right" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrWhite}" text="{channelnumber} {channelname} " /> - <drawtext condition="not{channelnumber}" align="right" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrWhite}" text="{channelname} " /> - </area> - <!-- Weekday Selector - {weekdayselector} true - {text} title of selector - {dayselected} number of currently selected day (0 - 6) - {day0abbr} ... {day6abbr} localized one character abbrevation for weekdays from Monday to Sunday - {day0set} ... {day6set} true if according weekday from Monday to Sunday is set - --> - <area condition="{weekdayselector}" layer="6"> - <drawtext condition="not{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItem}" text="{text}" /> - <drawtext condition="{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItemSelected}" text="{text}" /> - - <drawrectangle x="{areawidth} - {areaheight}*4" y="25%" width="{areaheight}*3.5" height="50%" color="{clrWhite}" /> - - <drawrectangle condition="not{day0set}" x="{areawidth} - {areaheight}*4.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrGray}" /> - <drawrectangle condition="{day0set}" x="{areawidth} - {areaheight}*4.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlack}" /> - - <drawrectangle condition="not{day1set}" x="{areawidth} - {areaheight}*3.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrGray}" /> - <drawrectangle condition="{day1set}" x="{areawidth} - {areaheight}*3.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlack}" /> - - <drawrectangle condition="not{day2set}" x="{areawidth} - {areaheight}*3.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrGray}" /> - <drawrectangle condition="{day2set}" x="{areawidth} - {areaheight}*3.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlack}" /> - - <drawrectangle condition="not{day3set}" x="{areawidth} - {areaheight}*2.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrGray}" /> - <drawrectangle condition="{day3set}" x="{areawidth} - {areaheight}*2.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlack}" /> - - <drawrectangle condition="not{day4set}" x="{areawidth} - {areaheight}*2.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrGray}" /> - <drawrectangle condition="{day4set}" x="{areawidth} - {areaheight}*2.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlack}" /> - - <drawrectangle condition="not{day5set}" x="{areawidth} - {areaheight}*1.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrGray}" /> - <drawrectangle condition="{day5set}" x="{areawidth} - {areaheight}*1.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlack}" /> - - <drawrectangle condition="not{day6set}" x="{areawidth} - {areaheight}*1.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrGray}" /> - <drawrectangle condition="{day6set}" x="{areawidth} - {areaheight}*1.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrBlack}" /> - </area> - <area condition="{weekdayselector}" layer="7"> - <drawrectangle condition="{current}++eq({dayselected}, 0)" x="{areawidth} - {areaheight}*4.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrTransRed}" /> - <drawrectangle condition="{current}++eq({dayselected}, 1)" x="{areawidth} - {areaheight}*3.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrTransRed}" /> - <drawrectangle condition="{current}++eq({dayselected}, 2)" x="{areawidth} - {areaheight}*3.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrTransRed}" /> - <drawrectangle condition="{current}++eq({dayselected}, 3)" x="{areawidth} - {areaheight}*2.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrTransRed}" /> - <drawrectangle condition="{current}++eq({dayselected}, 4)" x="{areawidth} - {areaheight}*2.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrTransRed}" /> - <drawrectangle condition="{current}++eq({dayselected}, 5)" x="{areawidth} - {areaheight}*1.5 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrTransRed}" /> - <drawrectangle condition="{current}++eq({dayselected}, 6)" x="{areawidth} - {areaheight}*1.0 + 2" y="{areaheight}*0.25+2" width="{areaheight}*0.5-4" height="{areaheight}*0.5-4" color="{clrTransRed}" /> - - <drawtext name="day0" x="{areawidth} - {areaheight}*4.0 + {areaheight}/4 - {width(day0)}/2" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrWhite}" text="{day0abbr}" /> - <drawtext name="day1" x="{areawidth} - {areaheight}*3.5 + {areaheight}/4 - {width(day1)}/2" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrWhite}" text="{day1abbr}" /> - <drawtext name="day2" x="{areawidth} - {areaheight}*3.0 + {areaheight}/4 - {width(day2)}/2" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrWhite}" text="{day2abbr}" /> - <drawtext name="day3" x="{areawidth} - {areaheight}*2.5 + {areaheight}/4 - {width(day3)}/2" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrWhite}" text="{day3abbr}" /> - <drawtext name="day4" x="{areawidth} - {areaheight}*2.0 + {areaheight}/4 - {width(day4)}/2" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrWhite}" text="{day4abbr}" /> - <drawtext name="day5" x="{areawidth} - {areaheight}*1.5 + {areaheight}/4 - {width(day5)}/2" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrWhite}" text="{day5abbr}" /> - <drawtext name="day6" x="{areawidth} - {areaheight}*1.0 + {areaheight}/4 - {width(day6)}/2" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrWhite}" text="{day6abbr}" /> - </area> - <!-- Directory Selector - {directoryselector} true - {text} title of selector - {folder} current folder of selector, string - --> - <area condition="{directoryselector}" layer="6"> - <drawtext condition="not{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItem}" text="{text}" /> - <drawtext condition="{current}" x="1%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrFontMenuItemSelected}" text="{text}" /> - <drawimage imagetype="icon" path="ico_arrow_right" x="{areawidth} - {areaheight}*0.8" y="10%" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - <drawtext name="folder" x="{areawidth} - {width(folder)} - {areaheight}" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrWhite}" text="{folder}" /> - <drawimage imagetype="icon" path="ico_arrow_left" x="{areawidth} - {width(folder)} - 2*{areaheight}" y="10%" width="{areaheight}*0.8" height="{areaheight}*0.8"/> - </area> - <!-- Timerconflict Header - {timerconflictheader} true - {text} title of Timerconflict Header - {conflictstart} start of conflict in hh:mm - {conflictstop} end of conflict in hh:mm - {overlapstart} start of overlap in hh:mm - {overlapstop} end of overlap in hh:mm - {overlapstartpercent} start of overlap in percent of total conflict time width - {overlapwidthpercent} width of overlap in percent of total conflict time width - --> - <area condition="{timerconflictheader}" layer="5"> - <drawtext name="title" x="{areawidth}*0.7*0.5 - {width(title)}/2" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrWhite}" text="{text}" /> - <drawrectangle x="70%" y="0" width="30%" height="100%" color="{clrWhite}"/> - </area> - <area condition="{timerconflictheader}" layer="6"> - <drawtext x="{areawidth}*0.7" y="0" font="{vdrOsd}" fontsize="50%" color="{clrBlack}" text="{conflictstart}" /> - <drawtext align="right" y="0" font="{vdrOsd}" fontsize="50%" color="{clrBlack}" text="{conflictstop}" /> - <drawtext name="olstart" x="{areawidth}*0.7 + {overlapstartpercent}*{areawidth}*0.3/100 - 70" y="50%" font="{vdrOsd}" fontsize="50%" color="{clrRed}" text="{overlapstart}" /> - <drawtext x="{areawidth}*0.7 + {overlapstartpercent}*{areawidth}*0.3/100 + {overlapwidthpercent}*{areawidth}*0.3/100 + 5" y="50%" font="{vdrOsd}" fontsize="50%" color="{clrRed}" text="{overlapstop}" /> - <drawrectangle x="{areawidth}*0.7 + {overlapstartpercent}*{areawidth}*0.3/100" y="50%" width="{overlapwidthpercent}*{areawidth}*0.3/100" height="50%" color="{clrTransRed}"/> - </area> - <!-- Timerconflict - {timerconflict} true - {timertitle} title of timer - {channelname} name of channel - {channelid} channel ID - {transponder} transponder of channel - {starttime} start of timer in hh:mm - {stoptime} end of timer in hh:mm - {date} date of timer in dd.mm.yy - {weekday} weekday of timer, 3 letter abrivation - {infoactive} true if info icon is active - {deleteactive} true if delete icon is active - {editactive} true if edit icon is active - {searchactive} true if search icon is active - {timerstartpercent} start of timer in percent of total conflict time width - {timerwidthpercent} end of timer in percent of total conflict time width - {overlapstartpercent} start of overlap in percent of total conflict time width - {overlapwidthpercent} width of overlap in percent of total conflict time width - --> - <area condition="{timerconflict}" layer="5"> - <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="0" width="70%" height="100%"/> - <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="0" width="70%" height="100%"/> - </area> - <area condition="{timerconflict}" layer="6"> - <drawimage condition="{current}++{infoactive}" imagetype="icon" path="ico_info_active" x="{areaheight}*0.05" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}||not{infoactive}" imagetype="icon" path="ico_info_inactive" x="{areaheight}*0.05" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="{current}++{deleteactive}" imagetype="icon" path="ico_delete_active" x="{areaheight}*0.6" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}||not{deleteactive}" imagetype="icon" path="ico_delete_inactive" x="{areaheight}*0.6" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="{current}++{editactive}" imagetype="icon" path="ico_edit_active" x="{areaheight}*1.15" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}||not{editactive}" imagetype="icon" path="ico_edit_inactive" x="{areaheight}*1.15" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="{current}++{searchactive}" imagetype="icon" path="ico_search_active" x="{areaheight}*1.7" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}||not{searchactive}" imagetype="icon" path="ico_search_inactive" x="{areaheight}*1.7" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawtext x="{areaheight}*2.3" width="{areawidth}*0.7 - {areaheight}*2.4" y="0" font="{vdrOsd}" fontsize="40%" color="{clrWhite}" text="{timertitle}" /> - <drawtext x="{areaheight}*2.3" y="40%" font="{vdrOsd}" fontsize="30%" color="{clrWhite}" text="{weekday} {date} {starttime} - {stoptime}" /> - <drawtext x="{areaheight}*2.3" y="70%" font="{vdrOsd}" fontsize="30%" color="{clrWhite}" text="{channelname}, Transp. {transponder}" /> - <drawrectangle x="70%" y="0" width="30%" height="100%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.7 + {timerstartpercent}*{areawidth}*0.3/100" y="30%" width="{timerwidthpercent}*{areawidth}*0.3/100" height="40%" color="{clrBlack}"/> - </area> - <area condition="{timerconflict}" layer="7"> - <drawrectangle x="{areawidth}*0.7 + {overlapstartpercent}*{areawidth}*0.3/100" y="0" width="{overlapwidthpercent}*{areawidth}*0.3/100" height="100%" color="{clrTransRed}"/> - </area> - <!-- Event - {event} true - {title} title of event - {shorttext} shorttext of event - {starttime} start of event in hh:mm - {stoptime} end of event in hh:mm - {date} date of event in dd.mm.yy - {weekday} weekday of event, 3 letter abrivation - {channelnumber} number of channel - {channelname} name of channel - {channelid} id of channel - {channellogoexisis} true if channel logo exists - {hastimer} true if event has a timer - --> - <area condition="{event}" layer="6"> - <drawimage condition="{current}" imagetype="icon" path="ico_info_active" x="{areaheight}*0.05" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}" imagetype="icon" path="ico_info_inactive" x="{areaheight}*0.05" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="{channellogoexisis}" imagetype="channellogo" path="{channelid}" x="{areaheight}*0.8" valign="center" width="{areaheight}" height="{areaheight}" /> - <drawtext condition="not{current}" x="{areaheight}*2.2" y="2" font="{vdrOsd}" fontsize="30%" color="{clrFontMenuItem}" text="{weekday} {date} {starttime} - {stoptime} {channelname}" /> - <drawtext condition="not{current}" x="{areaheight}*2.2" y="30%" width="{areawidth} - 3*{areaheight}" font="{vdrOsd}" fontsize="45%" color="{clrFontMenuItem}" text="{title}" /> - <drawtext condition="not{current}" x="{areaheight}*2.2" y="69%" width="{areawidth} - 3*{areaheight}" font="{vdrOsd}" fontsize="30%" color="{clrFontMenuItem}" text="{shorttext}" /> - <drawtext condition="{current}" x="{areaheight}*2.2" y="2" font="{vdrOsd}" fontsize="30%" color="{clrFontMenuItemSelected}" text="{weekday} {date} {starttime} - {stoptime} {channelname}" /> - <drawtext condition="{current}" x="{areaheight}*2.2" y="30%" width="{areawidth} - 3*{areaheight}" font="{vdrOsd}" fontsize="45%" color="{clrFontMenuItemSelected}" text="{title}" /> - <drawtext condition="{current}" x="{areaheight}*2.2" y="69%" width="{areawidth} - 3*{areaheight}" font="{vdrOsd}" fontsize="30%" color="{clrFontMenuItemSelected}" text="{shorttext}" /> - <drawimage condition="{current}++not{hastimer}" imagetype="icon" path="ico_record_active" x="{areawidth} - {areaheight}*0.6" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}++not{hastimer}" imagetype="icon" path="ico_record_inactive" x="{areawidth} - {areaheight}*0.6" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="{hastimer}" imagetype="icon" path="ico_activetimer" x="{areawidth} - {areaheight}*0.6" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - </area> - <!-- Recording - {recording} true - {recname} title of recording - {recstarttime} start of recording in hh:mm - {recdate} date of recording in dd.mm.yy - {recduration} duration of recording in min - {channelnumber} number of channel - {channelname} name of channel - {channelid} id of channel - {channellogoexisis} true if channel logo exists - --> - <area condition="{recording}" layer="6"> - <drawtext condition="not{current}" x="1%" y="0" font="{vdrOsd}" width="98%" fontsize="50%" color="{clrFontMenuItem}" text="{recname}" /> - <drawtext condition="not{current}" x="55%" y="0" font="{vdrOsd}" width="98%" fontsize="35%" color="{clrFontMenuItem}" text="{recdate} {recstarttime} - {recduration} min, {channelname}" /> - <drawtext condition="{current}" x="1%" y="0" font="{vdrOsd}" width="98%" fontsize="50%" color="{clrFontMenuItemSelected}" text="{recname}" /> - <drawtext condition="{current}" x="55%" y="0" font="{vdrOsd}" width="98%" fontsize="35%" color="{clrFontMenuItemSelected}" text="{recdate} {recstarttime} - {recduration} min, {channelname}" /> - </area> - <!-- Searchtimer - {searchtimer} true - {timeractive} true if searchtimer is active - {searchstring} searchtimer search string - {activetimers} number of active timers caused by this searchtimer - {recordingsdone} number of recordings done by this searchtimer - {searchactive} true if search icon is active - {editactive} true if edit icon is active - {deleteactive} true if delete icon is active - --> - <area condition="{searchtimer}" layer="6"> - <drawimage condition="{current}++{searchactive}" imagetype="icon" path="ico_search_active" x="{areaheight}*0.05" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}||not{searchactive}" imagetype="icon" path="ico_search_inactive" x="{areaheight}*0.05" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="{current}++{editactive}" imagetype="icon" path="ico_edit_active" x="{areaheight}*0.6" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}||not{editactive}" imagetype="icon" path="ico_edit_inactive" x="{areaheight}*0.6" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="{current}++{deleteactive}" imagetype="icon" path="ico_delete_active" x="{areaheight}*1.15" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}||not{deleteactive}" imagetype="icon" path="ico_delete_inactive" x="{areaheight}*1.15" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawtext condition="not{current}" x="{areaheight}*1.8" width="{areawidth} - {areaheight}*2" y="5%" font="{vdrOsd}" fontsize="45%" color="{clrFontMenuItem}" text="{searchstring}" /> - <drawtext condition="{current}" x="{areaheight}*1.8" width="{areawidth} - {areaheight}*2" y="5%" font="{vdrOsd}" fontsize="45%" color="{clrFontMenuItemSelected}" text="{searchstring}" /> - <drawtext condition="{timeractive}" align="right" y="5%" font="{vdrOsd}" fontsize="35%" color="{clrWhite}" text="active " /> - <drawtext x="{areaheight}*1.8" y="55%" font="{vdrOsd}" fontsize="35%" color="{clrWhite}" text="Active Timers: {activetimers}, Recordings: {recordingsdone}" /> - </area> - <!-- Timeline Header - {timelineheader} true - {date} date of current day in weekdayname dd.mm.yyyy - {timerset} true if timer info is set - {channelname} name of channel of timer - {channelid} channel ID of channel of timer - {channellogoexisis} true if channel logo exists - {channelnumber} number of channel of timer - {channeltransponder} transponder of channel of timer - {timerstart} start of timer in hh:mm - {timerstop} end of timer in hh:mm - {eventtitle} title of according event - {eventshorttext} short text of according event - {eventstart} start time of according event - {eventstop} end time of according event - --> - <area condition="{timelineheader}" layer="5"> - <drawtext align="center" y="1%" font="{vdrOsd}" fontsize="35%" color="{clrWhite}" text="Timer for {date}" /> - <drawrectangle x="{areawidth}*0.05" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.0875" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.125" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.1625" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.2" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.2375" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.275" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.3125" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.35" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.3875" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.425" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.4625" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.5" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.5375" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.575" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.6125" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.65" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.6875" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.725" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.7625" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.8" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.8375" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - <drawrectangle x="{areawidth}*0.875" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrBlack}"/> - <drawrectangle x="{areawidth}*0.9125" y="80%" width="{areawidth}*0.0375" height="20%" color="{clrWhite}"/> - </area> - <area condition="{timelineheader}" layer="6"> - <drawtext name="text0" x="{areawidth}*0.05 + {areawidth}*0.0375/2 - {width(text0)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrWhite}" text="0"/> - <drawtext name="text1" x="{areawidth}*0.0875 + {areawidth}*0.0375/2 - {width(text1)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrBlack}" text="1"/> - <drawtext name="text2" x="{areawidth}*0.125 + {areawidth}*0.0375/2 - {width(text2)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrWhite}" text="2"/> - <drawtext name="text3" x="{areawidth}*0.1625 + {areawidth}*0.0375/2 - {width(text3)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrBlack}" text="3"/> - <drawtext name="text4" x="{areawidth}*0.2 + {areawidth}*0.0375/2 - {width(text4)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrWhite}" text="4"/> - <drawtext name="text5" x="{areawidth}*0.2375 + {areawidth}*0.0375/2 - {width(text5)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrBlack}" text="5"/> - <drawtext name="text6" x="{areawidth}*0.275 + {areawidth}*0.0375/2 - {width(text6)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrWhite}" text="6"/> - <drawtext name="text7" x="{areawidth}*0.3125 + {areawidth}*0.0375/2 - {width(text7)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrBlack}" text="7"/> - <drawtext name="text8" x="{areawidth}*0.35 + {areawidth}*0.0375/2 - {width(text8)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrWhite}" text="8"/> - <drawtext name="text9" x="{areawidth}*0.3875 + {areawidth}*0.0375/2 - {width(text9)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrBlack}" text="9"/> - <drawtext name="text10" x="{areawidth}*0.425 + {areawidth}*0.0375/2 - {width(text10)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrWhite}" text="10"/> - <drawtext name="text11" x="{areawidth}*0.4625 + {areawidth}*0.0375/2 - {width(text11)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrBlack}" text="11"/> - <drawtext name="text12" x="{areawidth}*0.5 + {areawidth}*0.0375/2 - {width(text12)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrWhite}" text="12"/> - <drawtext name="text13" x="{areawidth}*0.5375 + {areawidth}*0.0375/2 - {width(text13)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrBlack}" text="13"/> - <drawtext name="text14" x="{areawidth}*0.575 + {areawidth}*0.0375/2 - {width(text14)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrWhite}" text="14"/> - <drawtext name="text15" x="{areawidth}*0.6125 + {areawidth}*0.0375/2 - {width(text15)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrBlack}" text="15"/> - <drawtext name="text16" x="{areawidth}*0.65 + {areawidth}*0.0375/2 - {width(text16)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrWhite}" text="16"/> - <drawtext name="text17" x="{areawidth}*0.6875 + {areawidth}*0.0375/2 - {width(text17)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrBlack}" text="17"/> - <drawtext name="text18" x="{areawidth}*0.725 + {areawidth}*0.0375/2 - {width(text18)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrWhite}" text="18"/> - <drawtext name="text19" x="{areawidth}*0.7625 + {areawidth}*0.0375/2 - {width(text19)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrBlack}" text="19"/> - <drawtext name="text20" x="{areawidth}*0.8 + {areawidth}*0.0375/2 - {width(text20)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrWhite}" text="20"/> - <drawtext name="text21" x="{areawidth}*0.8375 + {areawidth}*0.0375/2 - {width(text21)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrBlack}" text="21"/> - <drawtext name="text22" x="{areawidth}*0.875 + {areawidth}*0.0375/2 - {width(text22)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrWhite}" text="22"/> - <drawtext name="text23" x="{areawidth}*0.9125 + {areawidth}*0.0375/2 - {width(text23)}/2" y="80%" font="{vdrOsd}" fontsize="20%" color="{clrBlack}" text="23"/> - </area> - <area condition="{timelineheader}++{timerset}" layer="6"> - <drawimage condition="{channellogoexisis}" imagetype="channellogo" path="{channelid}" x="1%" y="30%" width="{areaheight}*0.5" height="{areaheight}*0.5" /> - <drawtext condition="not{channellogoexisis}" x="1%" width="{areaheight}*0.7" y="40%" font="{vdrOsd}" fontsize="20%" color="{clrWhite}" text="{channelname}"/> - <drawtext x="{areaheight}*0.8" y="36%" font="{vdrOsd}" fontsize="25%" color="{clrWhite}" text="{eventstart} - {eventstop} (Rec. {timerstart} - {timerstop}), Transp. {channeltransponder}"/> - <drawtext x="{areaheight}*0.8" y="57%" width="{areawidth}-{areaheight}" font="{vdrOsd}" fontsize="25%" color="{clrWhite}" text="{eventtitle} - {eventshorttext}"/> - </area> - <!-- Timeline Timer - {timelinetimer} true - {timerstart} start of timer in tenth percent of complete 24h width - {timerwidth} width of timer in tenth percent of complete 24h width - --> - <area condition="{timelinetimer}" layer="5"> - <drawrectangle condition="{current}" x="5%" y="0" width="90%" height="100%" color="{clrBorder}"/> - <drawrectangle condition="not{current}" x="5%" y="0" width="90%" height="100%" color="{clrGray}"/> - <drawrectangle x="5%" y="{areaheight}-1" width="90%" height="1" color="{clrBlack}"/> - </area> - <area condition="{timelinetimer}" layer="6"> - <drawrectangle x="{areawidth}*0.05 + {timerstart}*{areawidth}*0.9/1000" y="25%" width="{timerwidth}*{areawidth}*0.9/1000" height="50%" color="{clrBlack}"/> - </area> - <!-- Favorites - {favorite} true - {favdesc} description of favorite - --> - <area condition="{favorite}" layer="6"> - <drawimage condition="{current}" imagetype="icon" path="ico_search_active" x="{areaheight}*0.1" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawimage condition="not{current}" imagetype="icon" path="ico_search_inactive" x="{areaheight}*0.1" valign="center" width="{areaheight}*0.5" height="{areaheight}*0.5"/> - <drawtext condition="not{current}" x="{areaheight}" valign="center" font="{vdrOsd}" width="{areawidth} - {areaheight}" fontsize="80%" color="{clrFontMenuItem}" text="{favdesc}" /> - <drawtext condition="{current}" x="{areaheight}" valign="center" font="{vdrOsd}" width="{areawidth} - {areaheight}" fontsize="80%" color="{clrFontMenuItemSelected}" text="{favdesc}" /> - </area> - </grid> -</displayplugin> diff --git a/skins/nopacity/xmlfiles/plug-tvguideng-root.xml b/skins/nopacity/xmlfiles/plug-tvguideng-root.xml deleted file mode 100644 index 5ea027e..0000000 --- a/skins/nopacity/xmlfiles/plug-tvguideng-root.xml +++ /dev/null @@ -1,467 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE displayplugin SYSTEM "../../../dtd/displayplugin.dtd"> - -<displayplugin x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="80%" scaletvy="0" scaletvwidth="20%" scaletvheight="20%"> - - <viewelement name="background_hor"> - <area x="0" y="0" width="100%" height="20%" layer="1"> - <drawimage imagetype="skinpart" path="tvguide_header" x="0" y="0" width="80%" height="100%"/> - <drawimage imagetype="skinpart" path="tvguide_tvframe" x="80%" y="0" width="20%" height="100%"/> - </area> - <area x="72%" y="1%" width="7%" height="5%" layer="2"> - <drawimage imagetype="skinpart" path="tvguide_clock" x="0" y="0" width="100%" height="100%"/> - </area> - <area x="0" y="20%" width="15%" height="5%" layer="1"> - <drawimage imagetype="skinpart" path="tvguide_channelgroup_left" x="0" y="0" width="12" height="100%"/> - <drawimage imagetype="skinpart" path="tvguide_channelgroup_vertical" x="12" y="0" width="{areawidth}-24" height="100%"/> - <drawimage imagetype="skinpart" path="tvguide_channelgroup_right" x="{areawidth}-12" y="0" width="12" height="100%"/> - </area> - <area x="0" y="92%" width="100%" height="8%" layer="1"> - <fill color="{clrBackground}" /> - </area> - </viewelement> - - <viewelement name="background_ver"> - <area x="0" y="0" width="100%" height="20%" layer="1"> - <drawimage imagetype="skinpart" path="tvguide_header" x="0" y="0" width="80%" height="100%"/> - <drawimage imagetype="skinpart" path="tvguide_tvframe" x="80%" y="0" width="20%" height="100%"/> - </area> - <area x="72%" y="1%" width="7%" height="5%" layer="2"> - <drawimage imagetype="skinpart" path="tvguide_clock" x="0" y="0" width="100%" height="100%"/> - </area> - <area x="0" y="20%" width="8%" height="15%" layer="1"> - <drawimage imagetype="skinpart" path="tvguide_date_vertical" x="0" y="0" width="100%" height="100%"/> - </area> - <area x="0" y="90%" width="100%" height="10%" layer="1"> - <fill color="{clrBackground}" /> - </area> - </viewelement> - - <!-- Tokens available in Header - {isdummy} true if active element is a dummy element - {title} title of event of active grid - {shorttext} shorttext of event of active grid - {description} detailed description of event of active grid - {start} event start time in hh::mm - {stop} event stop time - {day} day of event of active grid - {date} date of event of active grid 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 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 - --> - <viewelement name="header_hor"> - <areascroll condition="not{isdummy}++not{hasposter}" orientation="vertical" mode="forthandback" delay="1000" scrollspeed="medium" x="1%" y="1%" width="71%" height="18%" layer="2"> - <drawtext x="0" y="0" font="{vdrOsd}" width="100%" fontsize="20%" color="{clrWhite}" text="{day} {daynumeric}.{month} {start} - {stop}" /> - <drawtext x="0" y="20%" font="{vdrOsd}" width="100%" fontsize="25%" color="{clrWhite}" text="{title}" /> - <drawtextbox name="shorttext" x="0" y="45%" width="100%" font="{vdrOsd}" fontsize="15%" color="{clrWhite}" text="{shorttext}" /> - <drawtextbox x="0" y="{posy(shorttext)} + {height(shorttext)}" width="100%" font="{vdrOsd}" fontsize="15%" color="{clrWhite}" text="{description}" /> - </areascroll> - <area condition="not{isdummy}++{hasposter}" x="1%" y="1%" width="{areaheight}*0.18*{posterwidth}/{posterheight}" height="18%" layer="2"> - <drawimage imagetype="image" path="{posterpath}" x="0" y="0" width="100%" height="100%"/> - </area> - <areascroll condition="not{isdummy}++{hasposter}" orientation="vertical" mode="forthandback" delay="1000" scrollspeed="medium" x="12%" y="1%" width="60%" height="18%" layer="2"> - <drawtext x="0" y="0" font="{vdrOsd}" width="100%" fontsize="20%" color="{clrWhite}" text="{day} {daynumeric}.{month} {start} - {stop}" /> - <drawtext x="0" y="20%" font="{vdrOsd}" width="100%" fontsize="25%" color="{clrWhite}" text="{title}" /> - <drawtextbox name="shorttext" x="0" y="45%" width="100%" font="{vdrOsd}" fontsize="15%" color="{clrWhite}" text="{shorttext}" /> - <drawtextbox x="0" y="{posy(shorttext)} + {height(shorttext)}" width="100%" font="{vdrOsd}" fontsize="15%" color="{clrWhite}" text="{description}" /> - </areascroll> - <area condition="{isdummy}" x="1%" y="1%" width="58%" height="18%" layer="2"> - <drawtext x="0" y="20%" font="{vdrOsd}" width="100%" fontsize="35%" color="{clrWhite}" text="{title}" /> - </area> - </viewelement> - - <viewelement name="header_ver"> - <areascroll condition="not{isdummy}++not{hasposter}" orientation="vertical" mode="forthandback" delay="1000" scrollspeed="medium" x="1%" y="1%" width="71%" height="18%" layer="2"> - <drawtext x="0" y="0" font="{vdrOsd}" width="100%" fontsize="20%" color="{clrWhite}" text="{day} {daynumeric}.{month} {start} - {stop}" /> - <drawtext x="0" y="20%" font="{vdrOsd}" width="100%" fontsize="25%" color="{clrWhite}" text="{title}" /> - <drawtextbox name="shorttext" x="0" y="45%" width="100%" font="{vdrOsd}" fontsize="15%" color="{clrWhite}" text="{shorttext}" /> - <drawtextbox x="0" y="{posy(shorttext)} + {height(shorttext)}" width="100%" font="{vdrOsd}" fontsize="15%" color="{clrWhite}" text="{description}" /> - </areascroll> - <area condition="not{isdummy}++{hasposter}" x="1%" y="1%" width="{areaheight}*0.18*{posterwidth}/{posterheight}" height="18%" layer="2"> - <drawimage imagetype="image" path="{posterpath}" x="0" y="0" width="100%" height="100%"/> - </area> - <areascroll condition="not{isdummy}++{hasposter}" orientation="vertical" mode="forthandback" delay="1000" scrollspeed="medium" x="12%" y="1%" width="60%" height="18%" layer="2"> - <drawtext x="0" y="0" font="{vdrOsd}" width="100%" fontsize="20%" color="{clrWhite}" text="{day} {daynumeric}.{month} {start} - {stop}" /> - <drawtext x="0" y="20%" font="{vdrOsd}" width="100%" fontsize="25%" color="{clrWhite}" text="{title}" /> - <drawtextbox name="shorttext" x="0" y="45%" width="100%" font="{vdrOsd}" fontsize="15%" color="{clrWhite}" text="{shorttext}" /> - <drawtextbox x="0" y="{posy(shorttext)} + {height(shorttext)}" width="100%" font="{vdrOsd}" fontsize="15%" color="{clrWhite}" text="{description}" /> - </areascroll> - <area condition="{isdummy}" x="1%" y="1%" width="58%" height="18%" layer="2"> - <drawtext x="0" y="20%" font="{vdrOsd}" width="100%" fontsize="35%" color="{clrWhite}" text="{title}" /> - </area> - </viewelement> - - <!-- Available Variables Footer: - {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 - --> - <viewelement name="footer_hor"> - <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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" color="{clrWhite}" text="{blue}" /> - </area> - </viewelement> - - <viewelement name="footer_ver"> - <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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" 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="40%"/> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="35%" color="{clrWhite}" text="{blue}" /> - </area> - </viewelement> - <!-- Available Variables time: - {time} timestring in hh:mm - {sec} current seconds - {min} current minutes - {hour} current hours - {hmins} current "hourminutes" to display an hour hand - {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 - --> - <viewelement name="time_hor"> - <area x="72%" y="1%" width="7%" height="5%" layer="3"> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="75%" color="{clrWhite}" text="{time}" /> - </area> - </viewelement> - - <viewelement name="time_ver"> - <area x="72%" y="1%" width="7%" height="5%" layer="3"> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="75%" color="{clrWhite}" text="{time}" /> - </area> - </viewelement> - - <!-- Tokens available in datetimeline - {weekday} weekday of current display - {date} date of current display - --> - <viewelement name="datetimeline_hor"> - <area x="0" y="20%" width="15%" height="5%" layer="2"> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrWhite}" text="{weekday} {date}" /> - </area> - </viewelement> - - <viewelement name="datetimeline_ver"> - <area x="0" y="20%" width="8%" height="15%" layer="1"> - <drawtext align="center" y="10%" font="{vdrOsd}" fontsize="35%" color="{clrWhite}" text="{weekday}" /> - <drawtext align="center" y="50%" font="{vdrOsd}" fontsize="35%" color="{clrWhite}" text="{date}" /> - </area> - </viewelement> - - <!-- Tokens available in timeindicator - {percenttotal} position of current time indicator in tenth of a percent of complete time shown - --> - <viewelement name="timeindicator_hor"> - <area x="15%" y="25%" width="85%" height="68%" layer="3"> - <drawrectangle x="{percenttotal}*{areawidth}/1000" y="0" width="1" height="100%" color="{clrRed}" /> - </area> - </viewelement> - - <viewelement name="timeindicator_ver"> - <area x="0" y="35%" width="100%" height="57%" layer="3"> - <drawrectangle x="0" y="{percenttotal}*{areaheight}/1000" width="100%" height="1" color="{clrRed}" /> - </area> - </viewelement> - - <!-- Tokens available in timeline - {timestring} time of grid in hh:mm - --> - <grid name="timeline_hor" x="15%" y="20%" width="85%" height="5%"> - <area layer="1"> - <drawimage condition="{fullhour}" imagetype="skinpart" path="tvguide_timelinebright_horizontal" x="0" y="0" width="100%" height="100%"/> - <drawimage condition="not{fullhour}" imagetype="skinpart" path="tvguide_timelinedark_horizontal" x="0" y="0" width="100%" height="100%"/> - </area> - <area layer="2"> - <drawtext condition="{fullhour}" x="5%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrBlack}" text="{timestring}" /> - <drawtext condition="not{fullhour}" x="5%" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrWhite}" text="{timestring}" /> - </area> - </grid> - - <grid name="timeline_ver" x="0" y="35%" width="8%" height="57%"> - <area layer="1"> - <drawimage condition="{fullhour}" imagetype="skinpart" path="tvguide_timelinebright_vertical" x="0" y="0" width="100%" height="100%"/> - <drawimage condition="not{fullhour}" imagetype="skinpart" path="tvguide_timelinedark_vertical" x="0" y="0" width="100%" height="100%"/> - </area> - <area layer="2"> - <drawtext condition="{fullhour}" align="center" y="5%" font="{vdrOsd}" fontsize="40%" color="{clrBlack}" text="{timestring}" /> - <drawtext condition="not{fullhour}" align="center" y="5%" font="{vdrOsd}" fontsize="40%" color="{clrWhite}" text="{timestring}" /> - </area> - </grid> - - <!-- Tokens available in channels - {name} name of channel - {number} number of channel - {channelid} id of channel to display channel logo - {channellogoexists} true if channel logo exists - --> - <grid name="channels_hor" x="5%" y="25%" width="10%" height="68%"> - <area layer="1"> - <drawimage imagetype="skinpart" path="tvguide_channellogoback_horizontal" x="0" y="0" width="100%" height="100%"/> - </area> - <area layer="2"> - <drawimage condition="{channellogoexists}" imagetype="channellogo" path="{channelid}" align="center" valign="center" width="90%" height="90%" /> - <drawtext condition="not{channellogoexists}" align="center" valign="center" width="98%" font="{vdrOsd}" fontsize="40%" color="{clrWhite}" text="{name}" /> - </area> - </grid> - - <grid name="channels_ver" x="8%" y="25%" width="92%" height="10%"> - <area layer="1"> - <drawimage imagetype="skinpart" path="tvguide_channellogoback_vertical" x="0" y="0" width="100%" height="100%"/> - </area> - <area layer="2"> - <drawimage condition="{channellogoexists}" imagetype="channellogo" path="{channelid}" align="center" valign="center" width="80%" height="80%" /> - <drawtext condition="not{channellogoexists}" align="center" valign="center" width="98%" font="{light}" fontsize="40%" color="{clrWhite}" text="{name}" /> - </area> - </grid> - - <!-- Tokens available in channelgroups - {color} alternates grid by grid from true to false - {group} name of channel group - --> - <grid name="channelgroups_hor" x="0" y="25%" width="5%" height="68%"> - <area layer="1"> - <drawimage imagetype="skinpart" path="tvguide_channelgroup_head" x="0" y="0" width="100%" height="12"/> - <drawimage imagetype="skinpart" path="tvguide_channelgroup_horizontal" x="0" y="12" width="100%" height="{areaheight}-24"/> - <drawimage imagetype="skinpart" path="tvguide_channelgroup_bottom" x="0" y="{areaheight}-12" width="100%" height="12"/> - </area> - <area layer="2"> - <drawtextvertical align="center" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrWhite}" text="{group}" /> - </area> - </grid> - - <grid name="channelgroups_ver" x="8%" y="20%" width="92%" height="5%"> - <area layer="1"> - <drawimage imagetype="skinpart" path="tvguide_channelgroup_left" x="0" y="0" width="12" height="100%"/> - <drawimage imagetype="skinpart" path="tvguide_channelgroup_vertical" x="12" y="0" width="{areawidth}-24" height="100%"/> - <drawimage imagetype="skinpart" path="tvguide_channelgroup_right" x="{areawidth}-12" y="0" width="12" height="100%"/> - </area> - <area layer="2"> - <drawtext align="center" valign="center" font="{vdrOsd}" fontsize="80%" color="{clrWhite}" text="{group}" /> - </area> - </grid> - - <!-- Tokens available in schedules - {color} alternates grid by grid from true to false - {dummy} true if grid is a dummy grid - {timer} true if a timer is set for the according event - {switchtimer} true if a switchtimer is set for the according event - {title} title of grid - {shorttext} shorttext of grid - {start} start time in hh:mm - {stop} stop time in hh:dd - --> - <grid name="schedules_hor" x="15%" y="25%" width="85%" height="68%"> - <area layer="1"> - <drawimage condition="not{current}" imagetype="skinpart" path="tvguide_grid_left" x="0" y="0" width="13" height="100%"/> - <drawimage condition="not{current}" imagetype="skinpart" path="tvguide_grid_horizontal" x="13" y="0" width="{areawidth}-26" height="100%"/> - <drawimage condition="not{current}" imagetype="skinpart" path="tvguide_grid_right" x="{areawidth}-13" y="0" width="13" height="100%"/> - <drawimage condition="{current}" imagetype="skinpart" path="tvguide_grid_active_left" x="0" y="0" width="13" height="100%"/> - <drawimage condition="{current}" imagetype="skinpart" path="tvguide_grid_active_horizontal" x="13" y="0" width="{areawidth}-26" height="100%"/> - <drawimage condition="{current}" imagetype="skinpart" path="tvguide_grid_active_right" x="{areawidth}-13" y="0" width="13" height="100%"/> - </area> - <area layer="2"> - <drawtext condition="not{dummy}++{current}" x="1%" y="2%" font="{vdrOsd}" fontsize="45%" color="{clrFontMenuItemSelected}" text="{start} - {stop}" /> - <drawtext condition="not{dummy}++{current}" x="1%" y="50%" width="98%" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItemSelected}" text="{title}" /> - <drawtext condition="not{dummy}++not{current}" x="1%" y="2%" font="{vdrOsd}" fontsize="45%" color="{clrFontMenuItem}" text="{start} - {stop}" /> - <drawtext condition="not{dummy}++not{current}" x="1%" y="50%" width="98%" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItem}" text="{title}" /> - <drawtext condition="{dummy}++{current}" x="1%" valign="center" width="98%" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItemSelected}" text="{title}" /> - <drawtext condition="{dummy}++not{current}" x="1%" valign="center" width="98%" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItem}" text="{title}" /> - <drawimage condition="{timer}" imagetype="icon" path="ico_rec_on" x="{areawidth} - {areaheight}*0.42" y="58%" width="{areaheight}*0.4" height="{areaheight}*0.4"/> - <drawimage condition="{switchtimer}++not{timer}" imagetype="icon" path="ico_switchtimer" x="{areawidth} - {areaheight}*0.42" y="58%" width="{areaheight}*0.4" height="{areaheight}*0.4"/> - <drawimage condition="{switchtimer}++{timer}" imagetype="icon" path="ico_switchtimer" x="{areawidth} - {areaheight}*0.84" y="58%" width="{areaheight}*0.4" height="{areaheight}*0.4"/> - </area> - </grid> - - <grid name="schedules_ver" x="8%" y="35%" width="92%" height="57%"> - <area layer="1"> - <drawimage condition="not{current}" imagetype="skinpart" path="tvguide_grid_head" x="0" y="0" width="100%" height="12"/> - <drawimage condition="not{current}" imagetype="skinpart" path="tvguide_grid_vertical" x="0" y="12" width="100%" height="{areaheight}-24"/> - <drawimage condition="not{current}" imagetype="skinpart" path="tvguide_grid_bottom" x="0" y="{areaheight}-12" width="100%" height="12"/> - <drawimage condition="{current}" imagetype="skinpart" path="tvguide_grid_active_head" x="0" y="0" width="100%" height="12"/> - <drawimage condition="{current}" imagetype="skinpart" path="tvguide_grid_active_vertical" x="0" y="12" width="100%" height="{areaheight}-24"/> - <drawimage condition="{current}" imagetype="skinpart" path="tvguide_grid_active_bottom" x="0" y="{areaheight}-12" width="100%" height="12"/> - </area> - <area layer="2"> - <drawtext condition="not{dummy}++{current}" x="2%" y="0" width="96%" font="{vdrOsd}" fontsize="{areawidth}*0.16" color="{clrFontMenuItemSelected}" text="{start} - {stop}" /> - <drawtext condition="not{dummy}++not{current}" x="2%" y="0" width="96%" font="{vdrOsd}" fontsize="{areawidth}*0.16" color="{clrFontMenuItem}" text="{start} - {stop}" /> - <drawtextbox name="title" condition="not{dummy}++{current}" x="2%" y="{areawidth}*0.16" width="96%" font="{vdrOsd}" fontsize="{areawidth}*0.15" color="{clrFontMenuItemSelected}" text="{title}" /> - <drawtextbox name="title" condition="not{dummy}++not{current}" x="2%" y="{areawidth}*0.16" width="96%" font="{vdrOsd}" fontsize="{areawidth}*0.15" color="{clrFontMenuItem}" text="{title}" /> - <drawtextbox condition="not{dummy}++{current}" x="2%" y="{posy(title)} + {height(title)} - {areawidth}*0.1" width="96%" height="{areaheight}*1.1 - {posy(title)} - {height(title)}" font="{vdrOsd}" fontsize="{areawidth}*0.12" color="{clrFontMenuItemSelected}" text="{shorttext}" /> - <drawtextbox condition="not{dummy}++not{current}" x="2%" y="{posy(title)} + {height(title)} - {areawidth}*0.1" width="96%" height="{areaheight}*1.1 - {posy(title)} - {height(title)}" font="{vdrOsd}" fontsize="{areawidth}*0.12" color="{clrFontMenuItem}" text="{shorttext}" /> - <drawtextbox condition="{dummy}++{current}" x="2%" y="5%" width="96%" font="{vdrOsd}" fontsize="{areawidth}*0.2" color="{clrFontMenuItemSelected}" text="{title}" /> - <drawtextbox condition="{dummy}++not{current}" x="2%" y="5%" width="96%" font="{vdrOsd}" fontsize="{areawidth}*0.2" color="{clrFontMenuItem}" text="{title}" /> - <drawimage condition="{timer}" imagetype="icon" path="ico_rec_on" x="82%" y="{areaheight}-{areawidth}*0.18" width="15%" height="{areawidth}*0.15"/> - <drawimage condition="{switchtimer}++not{timer}" imagetype="icon" path="ico_switchtimer" x="82%" y="{areaheight}-{areawidth}*0.18" width="15%" height="{areawidth}*0.15"/> - <drawimage condition="{switchtimer}++{timer}" imagetype="icon" path="ico_switchtimer" x="65%" y="{areaheight}-{areawidth}*0.18" width="15%" height="{areawidth}*0.15"/> - </area> - </grid> - - <!-- Tokens available in channeljump - {channel} current user input for channel jump - --> - <viewelement name="channeljump"> - </viewelement> - -</displayplugin> diff --git a/skins/nopacity/xmlfiles/plug-weatherforecast-weatherforecast.xml b/skins/nopacity/xmlfiles/plug-weatherforecast-weatherforecast.xml deleted file mode 100644 index 521db36..0000000 --- a/skins/nopacity/xmlfiles/plug-weatherforecast-weatherforecast.xml +++ /dev/null @@ -1,142 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE menuplugin SYSTEM "../../../dtd/displaymenuplugin.dtd"> - -<menuplugin x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="33%" scaletvy="10%" scaletvwidth="65%" scaletvheight="80%"> - <scrollbar> - <area x="30%" y="11%" width="2%" height="78%" layer="2"> - <fill color="{clrBorder}" /> - <drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" /> - <drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrScrollbar}" /> - </area> - </scrollbar> - - <menuitems x="0" y="10%" orientation="vertical" width="100%" height="82%" align="center" numlistelements="10"> - <!-- Available Variables: - {current} - {menuitemtext} "Current Weather", "Next 48 hours" or "Next 7 days" - {iscurrent} true if item is "Current Weather" - {ishourly} true if item is "Next 48 hours" - {isdaily} true if item is "Next 7 days" - {city} configured city to display weather for - {latitude} latitude - {longitude} longitude - - If {iscurrent} is true, the following tokens are set: - {timestamp} timestamp in hh:mm dd.mm of current forecast - {temperature} current temperature in °C - {apparenttemperature} apparent (felt) temperature in °C - {summary} short summary of current weather - {icon} path to use in <drawimage> to display appropriate weather icon - {precipitationintensity} precipitation intensity in l/qm - {precipitationprobability} precipitation probability in % - {precipitationtype} precipitation type (snow, ...) - {humidity} humidity in % - {windspeed} wind speed in km/h - {windbearing} wind bearing in degrees - {windbearingstring} wind bearing as human readable string (e.g NE, NNE, ...) - {visibility} visibility in km - {cloudcover} cloud cover in % - {pressure} pressure in HPa - {ozone} Ozone in DU (Dobson Unit) - - If {ishourly} is true, the following tokens are set: - {summary} short summary of weather - {icon} path to use in <drawimage> to display appropriate weather icon - - {hourly[]} array with up to 48 hourly forecasts - {hourly[num]} number of forecast, starting at 1 - {hourly[timestamp]} timestamp in hh:mm - {hourly[temperature]} temperature in °C - {hourly[apparenttemperature]} apparent (felt) temperature in °C - {hourly[summary]} short summary - {hourly[icon]} path to use in <drawimage> to display appropriate weather icon - {hourly[precipitationintensity]} precipitation intensity in l/qm - {hourly[precipitationprobability]} precipitation probability in % - {hourly[precipitationtype]} precipitation type (snow, ...) - {hourly[humidity]} humidity in % - {hourly[windspeed]} wind speed in km/h - {hourly[windbearing]} wind bearing in degrees - {hourly[windbearingstring]} wind bearing as human readable string (e.g NE, NNE, ...) - {hourly[visibility]} visibility in km - {hourly[cloudcover]} cloud cover in % - {hourly[pressure]} pressure in HPa - {hourly[ozone]} Ozone in DU (Dobson Unit) - - If {isdaily} is true, the following tokens are set: - {summary} short summary of weather - {icon} path to use in <drawimage> to display appropriate weather icon - - {daily[day]} day of forecast in dd.mm - {daily[dayname]} three letter abbrivated day name - {daily[temperaturemin]} minimum temperature at this day in °C - {daily[temperaturemintime]} time of minimum temperature - {daily[temperaturemax]} maximum temperature at this day in °C - {daily[temperaturemaxtime]} time of maximum temperature - {daily[summary]} short summary - {daily[icon]} path to use in <drawimage> to display appropriate weather icon - {daily[precipitationintensity]} precipitation intensity in l/qm - {daily[precipitationprobability]} precipitation probability in % - {daily[precipitationtype]} precipitation type (snow, ...) - {daily[humidity]} humidity in % - {daily[windspeed]} wind speed in km/h - {daily[windbearing]} wind bearing in degrees - {daily[windbearingstring]} wind bearing as human readable string (e.g NE, NNE, ...) - {daily[visibility]} visibility in km - {daily[cloudcover]} cloud cover in % - {daily[pressure]} pressure in HPa - {daily[ozone]} Ozone in DU (Dobson Unit) - --> - <listelement> - <!-- Background --> - <area x="0" width="28%" layer="2"> - <drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - <drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/> - </area> - <areascroll condition="not{current}" scrollelement="menuelement" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="0" width="28%" layer="3"> - <drawtext name="menuelement" x="10" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItem}" text="{menuitemtext}" /> - </areascroll> - <areascroll condition="{current}" scrollelement="menuelement" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="0" width="28%" layer="3"> - <drawtext name="menuelement" x="10" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItemSelected}" text="{menuitemtext}" /> - </areascroll> - </listelement> - <!-- additional element which is drawn for current element --> - <!-- All Tokens from listelement are available --> - <currentelement delay="100" fadetime="0"> - <area x="32%" y="2%" width="67%" height="96%" layer="2"> - <fill color="{clrTransBlack}" /> - </area> - <area condition="{iscurrent}" x="32%" y="2%" width="67%" height="96%" layer="3"> - <drawimage name="weathericon" imagetype="icon" path="{icon}" x="2%" y="0" width="{areawidth}*0.2" height="{areawidth}*0.2"/> - <drawtext align="right" y="2%" font="{semibold}" fontsize="6%" color="{clrWhite}" text="{city}" /> - <drawtext align="right" y="8%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{timestamp}" /> - <drawtext align="right" y="14%" font="{vdrOsd}" fontsize="12%" color="{clrWhite}" text="{temperature}°C" /> - <drawtext align="right" y="26%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{summary}" /> - <drawtext x="2%" y="45%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(apparenttemp)}: {apparenttemperature} °C" /> - <drawtext x="2%" y="51%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(precipitationprobability)}: {precipitationprobability} %" /> - <drawtext x="2%" y="57%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(precipitationintensity)}: {precipitationintensity} l/qm" /> - <drawtext x="2%" y="63%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(humidity)}: {humidity} %" /> - <drawtext x="2%" y="69%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(windspeed)}: {windspeed} km/h" /> - <drawtext x="2%" y="75%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(windbearing)}: {windbearingstring} ({windbearing} °)" /> - <drawtext x="2%" y="81%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(cloudcover)}: {cloudcover} %" /> - </area> - <area condition="{ishourly}" x="32%" y="2%" width="67%" height="96%" layer="3"> - <loop name="hourly" x="0" y="0" orientation="vertical" columnwidth="{areawidth}" rowheight="{areaheight}/12" overflow="cut"> - <drawtext x="2%" font="{semibold}" fontsize="7%" valign="center" color="{clrWhite}" text="{hourly[timestamp]}" /> - <drawimage imagetype="icon" path="{hourly[icon]}" x="22%" valign="center" width="{rowheight}*0.8" height="{rowheight}*0.8"/> - <drawtext x="35%" font="{vdrOsd}" fontsize="7%" valign="center" color="{clrWhite}" text="{hourly[temperature]}°C" /> - <drawtext x="60%" font="{vdrOsd}" fontsize="5%" valign="center" width="38%" color="{clrWhite}" text="{hourly[summary]}" /> - <drawrectangle x="2%" y="{rowheight} - 1" width="{columnwidth}*0.96" height="1" color="{clrWhite}" /> - </loop> - </area> - <area condition="{isdaily}" x="32%" y="2%" width="67%" height="96%" layer="3"> - <loop name="daily" x="2%" y="0" orientation="vertical" columnwidth="{areawidth}*0.96" rowheight="{areaheight}/7" overflow="cut"> - <drawtext x="0" font="{semibold}" fontsize="{rowheight}/2" y="5" color="{clrWhite}" text="{daily[dayname]} {daily[day]}" /> - <drawtext x="35%" font="{vdrOsd}" fontsize="{rowheight}/2" y="5" color="{clrWhite}" text="{daily[temperaturemin]}°C - {daily[temperaturemax]}°C" /> - <drawtext x="0" font="{vdrOsd}" fontsize="{rowheight}*0.3" width="{columnwidth} - {rowheight}*0.7" y="{rowheight}*0.6" color="{clrWhite}" text="{daily[summary]}" /> - <drawimage imagetype="icon" path="{daily[icon]}" x="{columnwidth} - {rowheight}*0.7" valign="center" width="{rowheight}*0.7" height="{rowheight}*0.7"/> - <drawrectangle x="0" y="{rowheight} - 1" width="{columnwidth}" height="1" color="{clrWhite}" /> - </loop> - </area> - </currentelement> - </menuitems> -</menuplugin> diff --git a/skins/nopacity/xmlfiles/plug-weatherforecast-weatherforecastdetailcurrent.xml b/skins/nopacity/xmlfiles/plug-weatherforecast-weatherforecastdetailcurrent.xml deleted file mode 100644 index ae9c2a6..0000000 --- a/skins/nopacity/xmlfiles/plug-weatherforecast-weatherforecastdetailcurrent.xml +++ /dev/null @@ -1,69 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE menuplugin SYSTEM "../../../dtd/displaymenuplugin.dtd"> - -<menuplugin x="0" y="0" width="100%" height="100%" fadetime="0"> - <background> - <area x="0" y="0" width="100%" height="100%" layer="1"> - <fill color="{clrTransBlack}" /> - <drawrectangle x="0" y="0" width="100%" height="10%" color="{clrBackground}" /> - </area> - <area x="0" y="0" width="100%" height="10%" layer="2"> - <drawimage imagetype="skinpart" path="headertop" x="0" y="0" width="100%" height="100%"/> - </area> - </background> - <scrollbar> - <area x="97%" y="25%" width="2%" height="60%" layer="2"> - <fill color="{clrBorder}" /> - <drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" /> - <drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrScrollbar}" /> - </area> - </scrollbar> - <!-- Available Variables in detailheader and tab: - {menuheader} "Current Weather" - {city} configured city to display weather for - {latitude} latitude - {longitude} longitude - {timestamp} timestamp in hh:mm dd.mm of current forecast - {temperature} current temperature in °C - {apparenttemperature} apparent (felt) temperature in °C - {temperaturemin} minimum temperature the day in °C - {temperaturemax} maximum temperature the day in °C - {summary} short summary of current weather - {icon} path to use in <drawimage> to display appropriate weather icon - {precipitationintensity} precipitation intensity in l/qm - {precipitationprobability} precipitation probability in % - {precipitationtype} precipitation type (snow, ...) - {humidity} humidity in % - {windspeed} wind speed in km/h - {windbearing} wind bearing in degrees - {windbearingstring} wind bearing as human readable string (e.g NE, NNE, ...) - {visibility} visibility in km - {cloudcover} cloud cover in % - {pressure} pressure in HPa - {ozone} Ozone in DU (Dobson Unit) - --> - <detailheader> - <area x="1%" y="10%" width="98%" height="15%" layer="2"> - <fill color="{clrTransBlack}" /> - </area> - <area x="1%" y="10%" width="97%" height="15%" layer="3"> - <drawimage name="weathericon" imagetype="icon" path="{icon}" align="right" valign="center" width="{areaheight}*0.7" height="70%"/> - <drawtext name="temp" x="{areawidth} - {width(weathericon)} - {width(temp)} - 10" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrWhite}" text="{temperature}°C" /> - <drawtext x="2%" y="20%" font="{semibold}" fontsize="35%" color="{clrWhite}" text="{tr(conditions)} {tr(for)} {city}, {timestamp}:" /> - <drawtext x="2%" y="55%" font="{semibold}" fontsize="35%" color="{clrWhite}" text="{summary}" /> - </area> - </detailheader> - - <tab name="current" x="2%" y="25%" width="94%" height="60%" layer="2" scrollheight="{areaheight}/4"> - <drawtext x="0" y="6%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(apparenttemp)}: {apparenttemperature}°C" /> - <drawtext x="0" y="12%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(todaymin)}: {mintemperature}°C, {tr(todaymax)}: {maxtemperature}°C" /> - <drawtext x="0" y="18%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(precipitationprobability)}: {precipitationprobability} %" /> - <drawtext x="0" y="24%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(precipitationintensity)}: {precipitationintensity} l/qm" /> - <drawtext x="0" y="30%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(humidity)}: {humidity} %" /> - <drawtext x="0" y="36%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(windspeed)}: {windspeed} km/h aus {windbearingstring}" /> - <drawtext x="0" y="42%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(visibility)}: {visibility} km" /> - <drawtext x="0" y="48%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(cloudcover)}: {cloudcover} %" /> - <drawtext x="0" y="54%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(pressure)}: {pressure} HPa" /> - <drawtext x="0" y="60%" font="{vdrOsd}" fontsize="6%" color="{clrWhite}" text="{tr(ozone)}: {ozone} DU" /> - </tab> -</menuplugin> diff --git a/skins/nopacity/xmlfiles/plug-weatherforecast-weatherforecastdetaildaily.xml b/skins/nopacity/xmlfiles/plug-weatherforecast-weatherforecastdetaildaily.xml deleted file mode 100644 index 433bf99..0000000 --- a/skins/nopacity/xmlfiles/plug-weatherforecast-weatherforecastdetaildaily.xml +++ /dev/null @@ -1,71 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE menuplugin SYSTEM "../../../dtd/displaymenuplugin.dtd"> - -<menuplugin x="0" y="0" width="100%" height="100%" fadetime="0"> - <background> - <area x="0" y="0" width="100%" height="100%" layer="1"> - <fill color="{clrTransBlack}" /> - <drawrectangle x="0" y="0" width="100%" height="10%" color="{clrBackground}" /> - </area> - <area x="0" y="0" width="100%" height="10%" layer="2"> - <drawimage imagetype="skinpart" path="headertop" x="0" y="0" width="100%" height="100%"/> - </area> - </background> - <scrollbar> - <area x="97%" y="25%" width="2%" height="60%" layer="2"> - <fill color="{clrBorder}" /> - <drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" /> - <drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrScrollbar}" /> - </area> - </scrollbar> - - <!-- Available Variables in detailheader and tab: - {summary} short summary of weather - {icon} path to use in <drawimage> to display appropriate weather icon - {city} configured city to display weather for - {latitude} latitude - {longitude} longitude - - {daily[day]} day of forecast in dd.mm - {daily[dayname]} three letter abbrivated day name - {daily[temperaturemin]} minimum temperature at this day in °C - {daily[temperaturemintime]} time of minimum temperature - {daily[temperaturemax]} maximum temperature at this day in °C - {daily[temperaturemaxtime]} time of maximum temperature - {daily[summary]} short summary - {daily[icon]} path to use in <drawimage> to display appropriate weather icon - {daily[precipitationintensity]} precipitation intensity in l/qm - {daily[precipitationprobability]} precipitation probability in % - {daily[precipitationtype]} precipitation type (snow, ...) - {daily[humidity]} humidity in % - {daily[windspeed]} wind speed in km/h - {daily[windbearing]} wind bearing in degrees - {daily[windbearingstring]} wind bearing as human readable string (e.g NE, NNE, ...) - {daily[visibility]} visibility in km - {daily[cloudcover]} cloud cover in % - {daily[pressure]} pressure in HPa - {daily[ozone]} Ozone in DU (Dobson Unit) - --> - - <detailheader> - <area x="1%" y="10%" width="98%" height="15%" layer="2"> - <fill color="{clrTransBlack}" /> - </area> - <area x="1%" y="10%" width="97%" height="15%" layer="3"> - <drawimage name="weathericon" imagetype="icon" path="{icon}" align="right" valign="center" width="{areaheight}*0.7" height="70%"/> - <drawtextbox x="2%" y="15%" width="80%" maxlines="2" font="{semibold}" fontsize="35%" color="{clrWhite}" text="{summary}" /> - </area> - </detailheader> - - <tab name="current" x="2%" y="25%" width="94%" height="60%" layer="2" scrollheight="{areaheight}/4"> - <loop name="daily" x="0" y="1%" orientation="vertical" columnwidth="{areawidth}" rowheight="{areaheight}/5"> - <drawtext x="0" font="{semibold}" fontsize="8%" valign="center" color="{clrWhite}" text="{daily[dayname]} {daily[day]}" /> - <drawimage imagetype="icon" path="{daily[icon]}" x="2.2*{rowheight}" valign="center" width="{rowheight}*0.8" height="{rowheight}*0.8"/> - <drawtext x="3.5*{rowheight}" font="{vdrOsd}" fontsize="{rowheight}*0.3" y="0" color="{clrWhite}" text="{daily[temperaturemin]}°C - {daily[temperaturemax]}°C ({tr(max)} {daily[temperaturemaxtime]}, {tr(min)} {daily[temperaturemintime]})" /> - <drawtext x="3.5*{rowheight}" font="{vdrOsd}" fontsize="{rowheight}/4" y="{rowheight}*0.25" width="{columnwidth} - 3.5*{rowheight}" color="{clrWhite}" text="{daily[summary]}" /> - <drawtext x="3.5*{rowheight}" font="{vdrOsd}" fontsize="{rowheight}/4" y="{rowheight}*0.5" width="{columnwidth} - 3.5*{rowheight}" color="{clrWhite}" text="{tr(precipitationprobability)} {daily[precipitationprobability]}%, {daily[precipitationintensity]} l/qm, {tr(windspeed)} {daily[windspeed]} km/h {tr(from)} {daily[windbearingstring]}" /> - <drawtext x="3.5*{rowheight}" font="{vdrOsd}" fontsize="{rowheight}/4" y="{rowheight}*0.75" width="{columnwidth} - 3.5*{rowheight}" color="{clrWhite}" text="{tr(cloudcover)} {daily[cloudcover]}%, {tr(visibility)} {daily[visibility]} km, {tr(pressure)} {daily[pressure]} HPa, {tr(ozone)} {daily[ozone]} DU" /> - <drawrectangle x="0" y="{rowheight} - 1" width="{columnwidth}" height="1" color="{clrWhite}" /> - </loop> - </tab> -</menuplugin> diff --git a/skins/nopacity/xmlfiles/plug-weatherforecast-weatherforecastdetailhourly.xml b/skins/nopacity/xmlfiles/plug-weatherforecast-weatherforecastdetailhourly.xml deleted file mode 100644 index ccde6f7..0000000 --- a/skins/nopacity/xmlfiles/plug-weatherforecast-weatherforecastdetailhourly.xml +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE menuplugin SYSTEM "../../../dtd/displaymenuplugin.dtd"> - -<menuplugin x="0" y="0" width="100%" height="100%" fadetime="0"> - <background> - <area x="0" y="0" width="100%" height="100%" layer="1"> - <fill color="{clrTransBlack}" /> - <drawrectangle x="0" y="0" width="100%" height="10%" color="{clrBackground}" /> - </area> - <area x="0" y="0" width="100%" height="10%" layer="2"> - <drawimage imagetype="skinpart" path="headertop" x="0" y="0" width="100%" height="100%"/> - </area> - </background> - <scrollbar> - <area x="97%" y="25%" width="2%" height="60%" layer="2"> - <fill color="{clrBorder}" /> - <drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" /> - <drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrScrollbar}" /> - </area> - </scrollbar> - - <!-- Available Variables in detailheader and tab: - {summary} short summary of weather - {icon} path to use in <drawimage> to display appropriate weather icon - {city} configured city to display weather for - {latitude} latitude - {longitude} longitude - - {hourly[]} array with up to 48 hourly forecasts - {hourly[num]} number of forecast, starting at 1 - {hourly[timestamp]} timestamp in hh:mm - {hourly[temperature]} temperature in °C - {hourly[apparenttemperature]} apparent (felt) temperature in °C - {hourly[summary]} short summary - {hourly[icon]} path to use in <drawimage> to display appropriate weather icon - {hourly[precipitationintensity]} precipitation intensity in l/qm - {hourly[precipitationprobability]} precipitation probability in % - {hourly[precipitationtype]} precipitation type (snow, ...) - {hourly[humidity]} humidity in % - {hourly[windspeed]} wind speed in km/h - {hourly[windbearing]} wind bearing in degrees - {hourly[windbearingstring]} wind bearing as human readable string (e.g NE, NNE, ...) - {hourly[visibility]} visibility in km - {hourly[cloudcover]} cloud cover in % - {hourly[pressure]} pressure in HPa - {hourly[ozone]} Ozone in DU (Dobson Unit) - --> - <detailheader> - <area x="1%" y="10%" width="98%" height="15%" layer="2"> - <fill color="{clrTransBlack}" /> - </area> - <area x="1%" y="10%" width="97%" height="15%" layer="3"> - <drawimage name="weathericon" imagetype="icon" path="{icon}" align="right" valign="center" width="{areaheight}*0.7" height="70%"/> - <drawtextbox x="2%" y="15%" width="80%" maxlines="2" font="{semibold}" fontsize="35%" color="{clrWhite}" text="{summary}" /> - </area> - </detailheader> - - <tab name="current" x="2%" y="25%" width="94%" height="60%" layer="2" scrollheight="{areaheight}/4"> - <loop name="hourly" x="0" y="1%" orientation="vertical" columnwidth="{areawidth}" rowheight="{areaheight}/5"> - <drawtext x="0" font="{semibold}" fontsize="9%" valign="center" color="{clrWhite}" text="{hourly[timestamp]}" /> - <drawimage imagetype="icon" path="{hourly[icon]}" x="{rowheight}*1.2" valign="center" width="{rowheight}*0.8" height="{rowheight}*0.8"/> - <drawtext name="temp" x="2.2*{rowheight} + 0.75*{rowheight} - {width(temp)}/2" font="{vdrOsd}" fontsize="11%" y="0" color="{clrWhite}" text="{hourly[temperature]}°C" /> - <drawtext name="felt" x="2.2*{rowheight} + 0.75*{rowheight} - {width(felt)}/2" font="{vdrOsd}" fontsize="5%" y="{rowheight}*0.6" color="{clrWhite}" text="{tr(felt)} {hourly[apparenttemperature]}°C" /> - <drawtext x="4.2*{rowheight}" font="{vdrOsd}" fontsize="{rowheight}/3-2" y="0" width="{columnwidth} - 4*{rowheight}" color="{clrWhite}" text="{hourly[summary]}" /> - <drawtext x="4.2*{rowheight}" font="{vdrOsd}" fontsize="{rowheight}/3-2" y="{rowheight}/3" width="{columnwidth} - 4*{rowheight}" color="{clrWhite}" text="{tr(precipitationprobability)} {hourly[precipitationprobability]}%, {hourly[precipitationintensity]} l/qm" /> - <drawtext x="4.2*{rowheight}" font="{vdrOsd}" fontsize="{rowheight}/3-2" y="{rowheight}*2/3" width="{columnwidth} - 4*{rowheight}" color="{clrWhite}" text="{tr(windspeed)} {hourly[windspeed]} km/h {tr(from)} {hourly[windbearingstring]}" /> - <drawrectangle x="0" y="{rowheight} - 1" width="{columnwidth}" height="1" color="{clrWhite}" /> - </loop> - </tab> -</menuplugin> diff --git a/skins/skinrepositories.xml b/skins/skinrepositories.xml index 051471d..4fff87c 100644 --- a/skins/skinrepositories.xml +++ b/skins/skinrepositories.xml @@ -2,28 +2,259 @@ <skinrepositories> <skinrepo> + <name>blackhole</name> + <type>git</type> + <url>https://github.com/louisbraun/blackhole.git</url> + <author>Louis</author> + <screenshots> + <screenshot> + <description>Main Menu</description> + <url>http://projects.vdr-developer.org/attachments/1848/blackhole_displaymenumain.jpg</url> + </screenshot> + <screenshot> + <description>Display Channel</description> + <url>http://projects.vdr-developer.org/attachments/1847/blackhole_displaychannel.jpg</url> + </screenshot> + <screenshot> + <description>Schedules What's on now</description> + <url>http://projects.vdr-developer.org/attachments/1849/blackhole_displaymenuwhatsonnow.jpg</url> + </screenshot> + <screenshot> + <description>Detailed EPG</description> + <url>http://projects.vdr-developer.org/attachments/1850/blackhole_displaymenudetailepg.jpg</url> + </screenshot> + </screenshots> + <specialfonts> + <font>Source Sans Pro</font> + <font>DS-Digital</font> + </specialfonts> + <supportedplugins> + <plugin>TVGuideNG</plugin> + <plugin>Weatherforecast</plugin> + </supportedplugins> + </skinrepo> + <skinrepo> + <name>blackholefrodo</name> + <type>git</type> + <url>https://github.com/FrodoVDR/blackholefrodo.git</url> + <author>Frodo</author> + <screenshots> + <screenshot> + <description>Main Menu</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=37513&h=5b10aaaa10a6cbfa38406a9b0adc8d583d2a1216</url> + </screenshot> + <screenshot> + <description>Display Channel</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=37512&h=71d73685a2ed65f15bf4e6832ec8fedddedc10c1</url> + </screenshot> + <screenshot> + <description>Schedules What's on now</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=37499&h=29ce2d7dada437bfd3094ad2284d9f7f134a340a</url> + </screenshot> + </screenshots> + <specialfonts> + <font>Source Sans Pro</font> + <font>DS-Digital</font> + </specialfonts> + <supportedplugins> + <plugin>TVGuideNG</plugin> + <plugin>Weatherforecast</plugin> + </supportedplugins> + </skinrepo> + <skinrepo> + <name>blackholePerlbo</name> + <type>zip</type> + <url>https://dl.dropboxusercontent.com/u/75246204/blackholePerlbo13-03.zip</url> + <author>Perlbo</author> + <screenshots> + <screenshot> + <description>Main Menu</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=37408&h=2d8d5a38498dd2e6acd0b4a3de516c6f2538bdb1</url> + </screenshot> + <screenshot> + <description>Display Channel</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=37405&h=588321ab0575f04633224bb46f14c409d20b738d</url> + </screenshot> + <screenshot> + <description>Schedules What's on now</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=37452&h=f13ea3c79e79c1976d9e1c702f291a3e4267b791</url> + </screenshot> + </screenshots> + <specialfonts> + <font>Source Sans Pro</font> + <font>DS-Digital</font> + </specialfonts> + <supportedplugins> + <plugin>TVGuideNG</plugin> + <plugin>Weatherforecast</plugin> + </supportedplugins> + </skinrepo> + <skinrepo> + <name>elchi</name> + <type>git</type> + <url>https://github.com/CReimer/skinElchi.git</url> + <author>Copperhead</author> + <screenshots> + <screenshot> + <description>Main Menu</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=36776&h=b381995ab32a3c7bc5894aa8724ba326a9f57569</url> + </screenshot> + <screenshot> + <description>Display Channel</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=36775&h=a6e51ee4a923d78ae1b7e2945c013f083c86043b</url> + </screenshot> + <screenshot> + <description>Display Replay</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=36777&h=cd278e4a65ef6baca8118a5395dbbb01273b69938</url> + </screenshot> + </screenshots> + <supportedplugins> + <plugin>---</plugin> + </supportedplugins> + </skinrepo> + <skinrepo> + <name>glasslike</name> + <type>git</type> + <url>https://github.com/Vectra130/skindesigner_glasslike.git</url> + <author>Vectra130</author> + <screenshots> + <screenshot> + <description>Main Menu</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=38254&h=56c0cb6791762169bd3bc373092a5c6ccbaa850d</url> + </screenshot> + <screenshot> + <description>Display Channel</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=38255&h=9f05b071ded697f3857edfca500a5e37c390baf9</url> + </screenshot> + <screenshot> + <description>Schedules What's on</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=38260&h=fac7685e2b434a65734f07625ac5f3456ba7c514</url> + </screenshot> + </screenshots> + <specialfonts> + <font>Roboto</font> + <font>DS-Digital</font> + </specialfonts> + <supportedplugins> + <plugin>TVGuideNG</plugin> + <plugin>Weatherforecast</plugin> + </supportedplugins> + </skinrepo> + <skinrepo> <name>Holo</name> <type>git</type> <url>https://github.com/CReimer/Holo</url> + <author>Copperhead</author> + <screenshots> + <screenshot> + <description>Main Menu</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=36917&h=e2a3805a9d469cc7ca25ba4a084a4a92cd2ccacf</url> + </screenshot> + <screenshot> + <description>Display Channel</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=36916&h=0b7a5c02f6daabaf3f834c3e7e236c83e024a371</url> + </screenshot> + <screenshot> + <description>Schedules What's on now</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=36918&h=dadd572da35571042362b36d8abe6745f2500e08</url> + </screenshot> + </screenshots> <specialfonts> <font>Roboto</font> - <font>Gedöns</font> </specialfonts> + <supportedplugins> + <plugin>---</plugin> + </supportedplugins> + </skinrepo> + <skinrepo> + <name>nopacity</name> + <type>git</type> + <url>https://github.com/louisbraun/nopacity.git</url> + <author>Louis</author> + <supportedplugins> + <plugin>Weatherforecast</plugin> + <plugin>TVGuideNG</plugin> + </supportedplugins> </skinrepo> <skinrepo> - <name>Tryouts</name> + <name>shady</name> + <type>git</type> + <url>https://github.com/tomsax56/shady.git</url> + <author>tomas</author> + <screenshots> + <screenshot> + <description>Main Menu</description> + <url>http://www.anthra.de/images-shady/screenshots/main4.jpg</url> + </screenshot> + <screenshot> + <description>Schedules</description> + <url>http://www.anthra.de/images-shady/screenshots/schedules.png</url> + </screenshot> + <screenshot> + <description>TV Guide NG</description> + <url>http://www.anthra.de/images-shady/screenshots/tvgng1.png</url> + </screenshot> + </screenshots> + <specialfonts> + <font>VDROpen Sans Light</font> + <font>VDROpen Sans Semibold</font> + </specialfonts> + <supportedplugins> + <plugin>Weatherforecast</plugin> + <plugin>TVGuideNG</plugin> + <plugin>PlexPlugin</plugin> + </supportedplugins> + </skinrepo> + <skinrepo> + <name>tryouts</name> <type>git</type> <url>https://github.com/BooStars/tryouts</url> + <author>Boostar</author> + <screenshots> + <screenshot> + <description>Main Menu</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=37055&h=c4f6715489e506408cca04f67a2263cd4db9ab7d</url> + </screenshot> + <screenshot> + <description>Display Channel</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=37056&h=e7cd1c6d2bd8042b6c08629c8f5d4711e8196e5f</url> + </screenshot> + <screenshot> + <description>Schedules What's on now</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=37068&h=5d649990035ac65c80e39c3bbdf29482425eba60</url> + </screenshot> + </screenshots> + <specialfonts> + <font>VDRSymbols Sans</font> + </specialfonts> + <supportedplugins> + <plugin>Weatherforecast</plugin> + <plugin>TVGuideNG</plugin> + </supportedplugins> + </skinrepo> + <skinrepo> + <name>vectra</name> + <type>git</type> + <url>https://github.com/Vectra130/skindesigner_vectraskin.git</url> + <author>Vectra130</author> <screenshots> <screenshot> <description>Main Menu</description> - <url>http://www.vdr-portal.de/index.php?page=AttachmentattachmentID=37054h=1e3680e599888c373fa21ad2fcbb9e4c2c73a620</url> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=37726&h=dd861361cf88222974f90d87ba29d43e4b8df088</url> </screenshot> <screenshot> - <description>display Channel</description> - <url>http://www.vdr-portal.de/index.php?page=AttachmentattachmentID=37056h=e7cd1c6d2bd8042b6c08629c8f5d4711e8196e5f</url> + <description>Display Channel</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=37388&h=91fbd820c01249b10c8bb717b86e8a36b8f98213</url> + </screenshot> + <screenshot> + <description>Schedules What's on</description> + <url>http://www.vdr-portal.de/index.php?page=Attachment&attachmentID=37390&h=6e185acf961c5cfeb07f4ac95aba38e65ef60e53</url> </screenshot> </screenshots> + <specialfonts> + <font>Roboto</font> + <font>DS-Digital</font> + </specialfonts> <supportedplugins> <plugin>Weatherforecast</plugin> <plugin>TVGuideNG</plugin> diff --git a/views/displaymenudetailview.c b/views/displaymenudetailview.c index 1258861..a6e4c84 100644 --- a/views/displaymenudetailview.c +++ b/views/displaymenudetailview.c @@ -226,7 +226,7 @@ void cDisplayMenuDetailView::InitTabs(void) { while(tmplTab = tmplView->GetNextViewTab()) { tmplTab->ParseDynamicParameters(&stringTokens, &intTokens, true); tmplTab->ClearDynamicFunctionParameters(); - tmplTab->ParseDynamicFunctionParameters(&stringTokens, &intTokens); + tmplTab->ParseDynamicFunctionParameters(&stringTokens, &intTokens, &loopTokens); if (tmplTab->DoExecute()) { activeTabs.push_back(tmplTab); } diff --git a/views/displaymenurootview.c b/views/displaymenurootview.c index 6a19433..31007f0 100644 --- a/views/displaymenurootview.c +++ b/views/displaymenurootview.c @@ -322,8 +322,9 @@ bool cDisplayMenuRootView::SetDetailedViewPlugin(map<string,string> *stringToken if (!detailView) { SetMenu(mcPlugin, true); } - if (!subViewAvailable) + if (!subViewAvailable) { return false; + } detailView->SetPluginTokens(stringTokens, intTokens, loopTokens); return true; } diff --git a/views/displaypluginview.c b/views/displaypluginview.c index 67104af..95d9dc0 100644 --- a/views/displaypluginview.c +++ b/views/displaypluginview.c @@ -143,7 +143,7 @@ void cDisplayPluginView::SetTabs(void) { while(tmplTab = tmplView->GetNextViewTab()) { tmplTab->ParseDynamicParameters(&tabStringTokens, &tabIntTokens, true); tmplTab->ClearDynamicFunctionParameters(); - tmplTab->ParseDynamicFunctionParameters(&tabStringTokens, &tabIntTokens); + tmplTab->ParseDynamicFunctionParameters(&tabStringTokens, &tabIntTokens, &tabLoopTokens); if (tmplTab->DoExecute()) { activeTabs.push_back(tmplTab); } diff --git a/views/view.c b/views/view.c index ef13a67..31254bf 100644 --- a/views/view.c +++ b/views/view.c @@ -167,7 +167,7 @@ void cView::DrawViewElement(eViewElement ve, map <string,string> *stringTokens, }
//parse dynamic tokens of pixmap functions
pix->ClearDynamicFunctionParameters();
- pix->ParseDynamicFunctionParameters(stringTokens, intTokens);
+ pix->ParseDynamicFunctionParameters(stringTokens, intTokens, loopTokens);
if (!PixmapExists(pixCurrent) && pix->Scrolling()) {
cSize drawportSize;
@@ -1215,7 +1215,7 @@ cRect cViewListItem::DrawListItem(map <string,string> *stringTokens, map <string }
pix->ClearDynamicFunctionParameters();
- pix->ParseDynamicFunctionParameters(stringTokens, intTokens);
+ pix->ParseDynamicFunctionParameters(stringTokens, intTokens, NULL);
if (!PixmapExists(pixCurrent) && pix->Scrolling()) {
cSize drawportSize;
@@ -1386,7 +1386,7 @@ void cGrid::Draw(void) { }
pix->ClearDynamicFunctionParameters();
- pix->ParseDynamicFunctionParameters(&stringTokens, &intTokens);
+ pix->ParseDynamicFunctionParameters(&stringTokens, &intTokens, NULL);
//pix->Debug();
DrawPixmap(pixCurrent, pix);
pixCurrent++;
|