implemented Skin Repositories
3
HISTORY
@ -342,3 +342,6 @@ Version 0.4.7
|
||||
- fixed timeshifttotal in displayreplay timeshift mode
|
||||
|
||||
Version 0.4.8
|
||||
|
||||
- implemented Skin Repositories
|
||||
|
||||
|
5
Makefile
@ -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 \
|
||||
|
83
config.c
@ -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;
|
||||
|
16
config.h
@ -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"
|
||||
|
236
libcore/curlfuncs.c
Normal file
@ -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));
|
||||
}
|
45
libcore/curlfuncs.h
Normal file
@ -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
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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
|
@ -2,6 +2,8 @@
|
||||
#include <sstream>
|
||||
#include <vector>
|
||||
#include <stdlib.h>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include "helpers.h"
|
||||
#include <vdr/skins.h>
|
||||
|
||||
|
@ -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());
|
||||
|
@ -1,3 +1,5 @@
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include "skinrepo.h"
|
||||
#include "../libcore/helpers.h"
|
||||
|
||||
@ -8,25 +10,59 @@ 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;
|
||||
|
@ -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);
|
||||
};
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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);
|
||||
|
@ -3,7 +3,7 @@
|
||||
NAME = skindesignerapi
|
||||
LIBNAME = lib$(NAME)
|
||||
MAJOR = 0
|
||||
MINOR = 0.1
|
||||
MINOR = 0.2
|
||||
VERSION = $(MAJOR).$(MINOR)
|
||||
|
||||
SONAME = $(LIBNAME).so.$(MAJOR)
|
||||
|
@ -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());
|
||||
|
@ -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);
|
||||
|
@ -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());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
|
@ -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);
|
||||
|
@ -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();
|
||||
|
@ -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);
|
||||
};
|
||||
|
@ -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();
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
63
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"
|
||||
|
63
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"
|
||||
|
307
setup.c
@ -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;
|
||||
}
|
||||
@ -194,7 +273,29 @@ eOSState cSkindesignerSkinSetup::ProcessKey(eKeys Key) {
|
||||
} else {
|
||||
return osBack;
|
||||
}
|
||||
} default:
|
||||
}
|
||||
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:
|
||||
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";
|
||||
}
|
||||
|
39
setup.h
@ -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
|
@ -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 {
|
||||
|
@ -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>
|
@ -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>
|
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 936 B |
@ -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>
|
Before Width: | Height: | Size: 2.7 KiB |
@ -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>
|
Before Width: | Height: | Size: 3.4 KiB |
@ -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>
|
Before Width: | Height: | Size: 4.1 KiB |
@ -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>
|
Before Width: | Height: | Size: 4.8 KiB |
@ -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>
|
Before Width: | Height: | Size: 2.7 KiB |
@ -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>
|
Before Width: | Height: | Size: 6.6 KiB |
@ -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>
|
Before Width: | Height: | Size: 3.9 KiB |
@ -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>
|
Before Width: | Height: | Size: 5.4 KiB |
@ -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>
|
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 768 B |
Before Width: | Height: | Size: 886 B |
@ -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>
|
Before Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 2.0 KiB |
@ -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>
|
Before Width: | Height: | Size: 1.9 KiB |
@ -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>
|
Before Width: | Height: | Size: 2.7 KiB |
@ -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>
|
Before Width: | Height: | Size: 3.7 KiB |
@ -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>
|
Before Width: | Height: | Size: 4.3 KiB |
@ -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>
|
Before Width: | Height: | Size: 5.0 KiB |
@ -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>
|
Before Width: | Height: | Size: 2.7 KiB |
@ -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>
|
Before Width: | Height: | Size: 8.0 KiB |
@ -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>
|
Before Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 1.8 KiB |
@ -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>
|
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 1.6 KiB |
@ -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>
|
Before Width: | Height: | Size: 3.6 KiB |
@ -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>
|
Before Width: | Height: | Size: 3.6 KiB |
@ -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>
|
Before Width: | Height: | Size: 3.3 KiB |
@ -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>
|
Before Width: | Height: | Size: 3.3 KiB |
@ -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>
|
Before Width: | Height: | Size: 5.0 KiB |
Before Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 3.8 KiB |
@ -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>
|
Before Width: | Height: | Size: 2.4 KiB |
@ -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>
|
Before Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 2.9 KiB |
@ -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>
|
Before Width: | Height: | Size: 5.5 KiB |
@ -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>
|
Before Width: | Height: | Size: 2.5 KiB |
@ -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>
|
Before Width: | Height: | Size: 2.4 KiB |
@ -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>
|
Before Width: | Height: | Size: 2.7 KiB |
@ -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>
|
Before Width: | Height: | Size: 8.2 KiB |
@ -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>
|
Before Width: | Height: | Size: 3.1 KiB |
@ -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>
|
Before Width: | Height: | Size: 2.1 KiB |
@ -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>
|
Before Width: | Height: | Size: 2.5 KiB |
@ -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>
|
Before Width: | Height: | Size: 1.8 KiB |
@ -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>
|
Before Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 2.6 KiB |