--- a/bin/synchb.py Fri May 14 16:09:54 2010 +0300
+++ b/bin/synchb.py Thu May 27 13:10:59 2010 +0300
@@ -36,7 +36,8 @@
# Globals
# ============================================================================
VERBOSE = False
-EXCLUDE = ["hbplugins", "hbservers", "3rdparty", "internal", "tsrc", "debug", "release"]
+EXCLUDE = ["hbapps", "hbplugins", "hbservers", "hbtools", "3rdparty",
+ "internal", "tsrc", "debug", "release", "bwins", "eabi"]
COLLECTIONS = {"hbcore": "HbCore",
"hbfeedback": "HbFeedback",
"hbinput": "HbInput",
@@ -87,8 +88,24 @@
except IOError, e:
print(e)
-def write_header(filepath, include):
- write_file(filepath, "#include \"%s\"\n" % include)
+def include_directive(header):
+ return "#include \"%s\"\n" % header
+
+def write_header(header, include, path):
+ filename = os.path.basename(header)
+ filepath = os.path.join(path, filename)
+ relpath = os.path.relpath(header, path).replace("\\", "/")
+ skip = False
+ if os.path.exists(filepath):
+ directive = include_directive(include)
+ oldsize = os.path.getsize(filepath)
+ newsize = len(directive)
+ if oldsize == newsize and directive == read_file(filepath):
+ skip = True
+ if not skip:
+ if VERBOSE:
+ print("INFO:\t ==> %s" % os.path.basename(filepath))
+ write_file(filepath, include_directive(include))
# ============================================================================
# Component
@@ -96,8 +113,8 @@
class Component:
def __init__(self, name):
self.name = name
- self.headers = list()
- self.privates = list()
+ self.headers = []
+ self.privates = []
def read(self, path):
entries = os.listdir(path)
@@ -114,28 +131,24 @@
self.headers.append(entrypath)
def write(self, path):
+ written = []
if len(self.headers) > 0:
self._makedirs(path)
- self._write(path, self.headers, True)
+ written += self._write(path, self.headers, True)
if len(self.privates) > 0:
privpath = os.path.join(path, "private")
self._makedirs(privpath)
- self._write(privpath, self.privates, False)
+ written += self._write(privpath, self.privates, False)
+ return written
def _write(self, path, headers, convenience):
- global VERBOSE
- if VERBOSE:
- print("INFO: Writing headers to '%s'" % path)
+ written = []
for header in headers:
- filename = os.path.basename(header)
- filepath = os.path.join(path, filename)
- relpath = os.path.relpath(header, path)
- if VERBOSE:
- print("INFO:\t ==> %s" % os.path.basename(filepath))
- write_header(filepath, relpath.replace("\\", "/"))
+ write_header(header, header, path)
+ written.append(os.path.join(path, os.path.basename(header)))
if convenience:
- classes = list()
+ classes = []
content = read_file(header)
for match in re.finditer("(?:class|namespace)\s+(?:HB_[^_]+_EXPORT\s+)?(Hb\w*)(\s*;)?", content):
if not match.group(2):
@@ -143,14 +156,12 @@
for match in re.finditer("#pragma hb_header\((\w+)\)", content):
classes.append(match.group(1))
for cls in classes:
- filepath = os.path.join(path, cls)
- write_header(filepath, filename)
+ write_header(cls, os.path.basename(header), path)
+ written.append(os.path.join(path, cls))
+ return written
def _makedirs(self, path):
- global VERBOSE
if not os.path.exists(path):
- if VERBOSE:
- print("INFO: Creating include dir '%s'" % path)
os.makedirs(path)
# ============================================================================
@@ -171,25 +182,55 @@
self.components.append(component)
def write(self, path):
- global COLLECTIONS
+ global COLLECTIONS, VERBOSE
+ path = os.path.join(os.path.abspath(path), self.name)
+ if VERBOSE:
+ print("INFO: Writing headers to '%s'..." % path)
+ # there's no set in python 2.3 so use a list
+ leftovers = []
+ for root, dirs, files in os.walk(path):
+ for file in files:
+ leftovers.append(os.path.abspath(os.path.join(root, file)))
+
# include/hbcore
- includes = list()
- path = os.path.join(path, self.name)
+ includes = []
+ written = []
for component in self.components:
- component.write(path)
+ written += component.write(path)
for header in component.headers:
includes.append("#include \"%s\"\n" % os.path.basename(header))
+
if self.name in COLLECTIONS:
- write_file(os.path.join(path, self.name + ".h"), "".join(includes))
- write_header(os.path.join(path, COLLECTIONS[self.name]), self.name + ".h")
+ collectionheader = os.path.join(path, self.name + ".h")
+ write_file(collectionheader, "".join(includes))
+ written.append(collectionheader)
+ if collectionheader in leftovers:
+ leftovers.remove(collectionheader)
+ convenienceheader = os.path.join(path, COLLECTIONS[self.name])
+ write_file(convenienceheader, include_directive(self.name + ".h"))
+ written.append(convenienceheader)
+ if convenienceheader in leftovers:
+ leftovers.remove(convenienceheader)
+
+ for filepath in written:
+ filepath = os.path.abspath(filepath)
+ if filepath in leftovers:
+ leftovers.remove(filepath)
+
+ if VERBOSE and len(leftovers) > 0:
+ print("INFO: Removing obsolete headers from '%s'..." % path)
+ for leftover in leftovers:
+ if VERBOSE:
+ print("INFO:\t ==> %s" % leftover) # os.path.basename(leftover))
+ os.remove(leftover)
# ============================================================================
# Package
# ============================================================================
class Package:
def __init__(self, name):
- self.path = name
- self.collections = list()
+ self.name = name
+ self.collections = []
def read(self, path):
global EXCLUDE
@@ -228,11 +269,6 @@
if not os.path.basename(os.path.normpath(options.outputdir)) == "include":
options.outputdir = os.path.join(options.outputdir, "include")
- if os.path.exists(options.outputdir):
- if VERBOSE:
- print("INFO: Removing include dir '%s'" % options.outputdir)
- shutil.rmtree(options.outputdir, ignore_errors=True)
-
package = Package("hb")
package.read(options.inputdir)
package.write(options.outputdir)
--- a/config.tests/symbian/sgimagelite/main.cpp Fri May 14 16:09:54 2010 +0300
+++ b/config.tests/symbian/sgimagelite/main.cpp Thu May 27 13:10:59 2010 +0300
@@ -24,11 +24,9 @@
****************************************************************************/
#include <ncp_feature_consts.hrh>
-#include <ncp_feature_settings.hrh>
#ifndef VSW_GSW_SGIMAGELITE
#error VSW_GSW_SGIMAGELITE not defined
#endif
-int main() { return 0;}
-
+int main() { }
--- a/config.tests/unix/sharedmemory/sharedmemory.pro Fri May 14 16:09:54 2010 +0300
+++ b/config.tests/unix/sharedmemory/sharedmemory.pro Thu May 27 13:10:59 2010 +0300
@@ -27,6 +27,7 @@
TEMPLATE = app
TARGET = hbconftest_sharedmemory
+isEmpty(HB_SOURCE_DIR):error(HB_SOURCE_DIR not defined!!!)
DEPENDPATH += . $${HB_SOURCE_DIR}/src/hbcore/core
INCLUDEPATH += . $${HB_SOURCE_DIR}/src/hbcore/core
DEFINES += HB_BOOTSTRAPPED
--- a/configure.py Fri May 14 16:09:54 2010 +0300
+++ b/configure.py Thu May 27 13:10:59 2010 +0300
@@ -65,7 +65,14 @@
code = 0
output = ""
if os.name == "nt":
+ env = os.environ.copy()
+ epocroot = env.get("EPOCROOT")
+ if epocroot:
+ if not epocroot.endswith("\\") or epocroot.endswith("/"):
+ env["EPOCROOT"] = "%s/" % epocroot
+
args = ["cmd.exe", "/C"] + args
+
try:
if cwd != None:
oldcwd = os.getcwd()
@@ -75,10 +82,17 @@
code = process.wait()
output = process.fromchild.read()
else:
- process = subprocess.Popen(args, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
- (stdout, stderr) = process.communicate()
- code = process.returncode
- output = stdout + stderr
+ if os.name == "nt":
+ process = subprocess.Popen(args, env=env, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
+ (stdout, stderr) = process.communicate()
+ code = process.returncode
+ output = stdout + stderr
+ else:
+ process = subprocess.Popen(args, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
+ (stdout, stderr) = process.communicate()
+ code = process.returncode
+ output = stdout + stderr
+
if cwd != None:
os.chdir(oldcwd)
except:
@@ -604,31 +618,8 @@
basedir = options.prefix
if platform.name() != "symbian":
basedir = os.path.abspath(basedir)
-
local = os.path.isdir(basedir) and (basedir == currentdir)
- # generate local build wrapper headers
- synchb = "bin/synchb.py"
- if options.verbose:
- synchb = "%s -v" % synchb
- print("INFO: Running %s" % synchb)
- os.system("python %s/%s -i %s -o %s" % (sourcedir, synchb, sourcedir, currentdir))
-
- # generate a qrc for resources
- args = [os.path.join(sourcedir, "bin/resourcifier.py")]
- args += ["-i", "%s" % os.path.join(sys.path[0], "src/hbcore/resources")]
- # TODO: make it currentdir
- args += ["-o", "%s" % os.path.join(sourcedir, "src/hbcore/resources/resources.qrc")]
- args += ["--exclude", "\"*distribution.policy.s60\""]
- args += ["--exclude", "\"*readme.txt\""]
- args += ["--exclude", "\"*.pr?\""]
- args += ["--exclude", "\"*.qrc\""]
- args += ["--exclude", "\"*~\""]
- args += ["--exclude", "variant/*"]
- if options.verbose:
- print("INFO: Running %s" % " ".join(args))
- os.system("python %s" % " ".join(args))
-
# compilation tests to detect available features
config = ConfigFile()
test = ConfigTest(platform)
@@ -694,25 +685,6 @@
config.set_value("HB_RESOURCES_DIR", ConfigFile.format_dir(options.resourcedir))
config.set_value("HB_FEATURES_DIR", ConfigFile.format_dir(options.featuredir))
-
- if os.name == "posix" or os.name == "mac":
- sharedmem = test.compile("config.tests/unix/sharedmemory")
- if sharedmem:
- (code, output) = run_process(["./hbconftest_sharedmemory"], "config.tests/unix/sharedmemory")
- sharedmem = (code == 0)
- if not sharedmem:
- print("DEBUG:%s" % output)
- print("INFO: Shared Memory:\t\t\t%s" % sharedmem)
- if not sharedmem:
- print("WARNING:The amount of available shared memory is too low!")
- print "\tTry adjusting the shared memory configuration",
- if os.path.exists("/proc/sys/kernel/shmmax"):
- print "(/proc/sys/kernel/shmmax)"
- elif os.path.exists("/etc/sysctl.conf"):
- print "(/etc/sysctl.conf)"
-
-
-
# TODO: get rid of this!
if platform.name() == "symbian":
config.set_value("HB_PLUGINS_EXPORT_DIR", ConfigFile.format_dir("$${EPOCROOT}epoc32/winscw/c/resource/qt/plugins/hb"))
@@ -798,7 +770,7 @@
# - can be disabled by passing --no_debug_output option
config._lines.append("CONFIG(release, debug|release) {\n")
config._lines.append(" debug_output|developer {\n")
- config._lines.append(" # debug/warning output enabled {\n")
+ config._lines.append(" # debug/warning output enabled\n")
config._lines.append(" } else {\n")
config._lines.append(" DEFINES += QT_NO_DEBUG_OUTPUT\n")
config._lines.append(" DEFINES += QT_NO_WARNING_OUTPUT\n")
@@ -810,6 +782,9 @@
config._lines.append(" }\n")
config._lines.append("}\n")
+ # ensure that no QString(0) -like constructs slip in
+ config.add_value("DEFINES", "QT_QCHAR_CONSTRUCTOR")
+
# TODO: is there any better way to expose functions to the whole source tree?
config._lines.append("include(%s)\n" % (os.path.splitdrive(sourcedir)[1] + "/mkspecs/hb_functions.prf"))
@@ -819,6 +794,47 @@
print("ERROR: Unable to write .qmake.cache.")
return
+ if os.name == "posix" or os.name == "mac":
+ sharedmem = test.compile("config.tests/unix/sharedmemory")
+ if sharedmem:
+ (code, output) = run_process(["./hbconftest_sharedmemory"], "config.tests/unix/sharedmemory")
+ sharedmem = (code == 0)
+ if not sharedmem:
+ print("DEBUG:%s" % output)
+ print("INFO: Shared Memory:\t\t\t%s" % sharedmem)
+ if not sharedmem:
+ print("WARNING:The amount of available shared memory is too low!")
+ print "\tTry adjusting the shared memory configuration",
+ if os.path.exists("/proc/sys/kernel/shmmax"):
+ print "(/proc/sys/kernel/shmmax)"
+ elif os.path.exists("/etc/sysctl.conf"):
+ print "(/etc/sysctl.conf)"
+
+ # generate local build wrapper headers
+ print("\nGenerating files...")
+ print("INFO: Wrapper headers")
+ synchb = "bin/synchb.py"
+ if options.verbose:
+ print("INFO: Running %s" % synchb)
+ synchb = "%s -v" % synchb
+ os.system("python %s/%s -i %s -o %s" % (sourcedir, synchb, sourcedir, currentdir))
+
+ # generate a qrc for resources
+ print("INFO: Qt resource collection")
+ args = [os.path.join(sourcedir, "bin/resourcifier.py")]
+ args += ["-i", "%s" % os.path.join(sys.path[0], "src/hbcore/resources")]
+ # TODO: make it currentdir
+ args += ["-o", "%s" % os.path.join(sourcedir, "src/hbcore/resources/resources.qrc")]
+ args += ["--exclude", "\"*distribution.policy.s60\""]
+ args += ["--exclude", "\"*readme.txt\""]
+ args += ["--exclude", "\"*.pr?\""]
+ args += ["--exclude", "\"*.qrc\""]
+ args += ["--exclude", "\"*~\""]
+ args += ["--exclude", "variant/*"]
+ if options.verbose:
+ print("INFO: Running %s" % " ".join(args))
+ os.system("python %s" % " ".join(args))
+
# build host tools
if platform.name() == "symbian" or options.hostqmakebin != None or options.hostmakebin != None:
print("\nBuilding host tools...")
@@ -840,6 +856,16 @@
# run qmake
if options.qmakebin:
qmake = options.qmakebin
+
+ # modify epocroot for symbian to have compatibility between qmake and raptor
+ epocroot = os.environ.get("EPOCROOT")
+ replace_epocroot = epocroot
+ if epocroot:
+ if epocroot.endswith("\\") or epocroot.endswith("/"):
+ replace_epocroot = epocroot
+ else:
+ replace_epocroot = "%s/" % epocroot
+
profile = os.path.join(sourcedir, "hb.pro")
cachefile = os.path.join(currentdir, ".qmake.cache")
if options.msvc:
@@ -855,7 +881,12 @@
else:
print("\nRunning qmake...")
try:
+ # replace the epocroot for the qmake runtime
+ if replace_epocroot:
+ os.putenv("EPOCROOT", replace_epocroot)
ret = os.system("%s -cache %s %s" % (qmake, cachefile, profile))
+ if replace_epocroot:
+ os.putenv("EPOCROOT", epocroot)
except KeyboardInterrupt:
ret = -1
if ret != 0:
--- a/hb.prf Fri May 14 16:09:54 2010 +0300
+++ b/hb.prf Thu May 27 13:10:59 2010 +0300
@@ -30,7 +30,7 @@
symbian:CONFIG += symbian_i18n skin_icon
include(hb_install.prf)
-#include(docml2bin.prf)
+include(docml2bin.prf)
CONFIG(debug, debug|release) {
win32:SUFFIX = d
--- a/hb.pro Fri May 14 16:09:54 2010 +0300
+++ b/hb.pro Thu May 27 13:10:59 2010 +0300
@@ -37,7 +37,7 @@
feature.files += $$HB_SOURCE_DIR/hb.prf
feature.files += $$HB_BUILD_DIR/hb_install.prf
feature.files += $$HB_MKSPECS_DIR/hb_functions.prf
-#feature.files += $$HB_MKSPECS_DIR/docml2bin.prf
+feature.files += $$HB_MKSPECS_DIR/docml2bin.prf
feature.path = $$HB_FEATURES_DIR
INSTALLS += feature
@@ -52,10 +52,11 @@
symbian {
exists(rom):include(rom/rom.pri)
install.depends += index hbvar
-# install.depends += cssbinary
+ #install.depends += cssbinary
install.commands += $$QMAKE_COPY $$hbNativePath($$HB_SOURCE_DIR/hb.prf) $$hbNativePath($$[QMAKE_MKSPECS]/features)
install.commands += && $$QMAKE_COPY $$hbNativePath($$HB_BUILD_DIR/hb_install.prf) $$hbNativePath($$[QMAKE_MKSPECS]/features)
QMAKE_EXTRA_TARGETS += install
+ BLD_INF_RULES.prj_exports += "sis/hb_stub.sis /epoc32/data/z/system/install/hb_stub.sis"
}
# theme indexing
@@ -82,6 +83,22 @@
# css binary generation
+cssbinary.path = . #needed for install target
+cssbinary.sourcedir = $$PWD/src/hbcore/resources/themes/style/hbdefault
+symbian {
+ cssbinary.targetfile = $${EPOCROOT}epoc32/data/z/resource/hb/themes/css.bin
+} else {
+ cssbinary.targetfile = $$HB_RESOURCES_DIR/themes/css.bin
+}
+cssbinary.commands = $$hbToolCommand(hbbincssmaker) -i $$cssbinary.sourcedir -o $$cssbinary.targetfile
+
+# copy generated css binary to symbian emulator directory
+symbian {
+ cssbinary.commands += && $$QMAKE_COPY $$hbNativePath($$cssbinary.targetfile) $$hbNativePath($${EPOCROOT}epoc32/release/winscw/udeb/z/resource/hb/themes/css.bin)
+}
+
+QMAKE_EXTRA_TARGETS += cssbinary
+# INSTALLS += cssbinary
!contains(HB_NOMAKE_PARTS, tests):exists(tsrc) {
test.depends = sub-src
--- a/mkspecs/docml2bin.prf Fri May 14 16:09:54 2010 +0300
+++ b/mkspecs/docml2bin.prf Thu May 27 13:10:59 2010 +0300
@@ -1,7 +1,8 @@
-include(hb_install.prf)
+exists(hb_install.prf):include(hb_install.prf)
+else:include($${HB_BUILD_DIR}/hb_install.prf)
include(hb_functions.prf)
-QMAKE_DOCML2BIN = $$hbNativePath($${HB_BIN_DIR}/docml2bin)
+QMAKE_DOCML2BIN = $$hbToolCommand(docml2bin)
docml2bin.input = DOCML
docml2bin.output = ${QMAKE_FILE_IN}.bin
--- a/src/hbcore/core/hbcorepskeys_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbcorepskeys_p.h Thu May 27 13:10:59 2010 +0300
@@ -37,12 +37,35 @@
const TUid KHbPsOrientationCategoryUid = {0x20022E82}; // Theme server UID
/**
+ * HbCore internal foreground application orientation PS category UID.
+ */
+const TUid KHbPsForegroundAppOrientationCategoryUid = {0x20022FC5}; //device dialog UID
+
+/**
* KHbPsOrientationKey
* Current orientation value recieved from sensor.
* Qt::Orientation
*/
const TUint KHbPsOrientationKey = 'Orie';
+/**
+ * KHbPsForegroundAppOrientationKey
+ * Current orientation value checked from foreground app.
+ */
+const TUint KHbPsForegroundAppOrientationKey = 'Fgor';
+
+/**
+ * KHbFixedOrientationMask
+ * Indicates HbMainWindow has fixed orientation enabled
+ */
+const TUint KHbFixedOrientationMask = 0x100;
+
+/**
+ * KHbOrientationMask
+ * Used for masking orientation in PS-key
+ */
+const TUint KHbOrientationMask = 0xFF;
+
#endif //Q_OS_SYMBIAN
#endif //HB_COREPSKEYS_P_H
--- a/src/hbcore/core/hbmemorymanager_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbmemorymanager_p.h Thu May 27 13:10:59 2010 +0300
@@ -37,7 +37,6 @@
//in 4.6.
#define HB_CHECK_PTR(ptr) if(!ptr) throw std::bad_alloc();
-
class HB_CORE_PRIVATE_EXPORT HbMemoryManager
{
public:
--- a/src/hbcore/core/hbmemoryutils_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbmemoryutils_p.h Thu May 27 13:10:59 2010 +0300
@@ -56,7 +56,7 @@
static T * create(HbMemoryManager::MemoryType memType)
{
GET_MEMORY_MANAGER(memType);
- T* temp = 0;
+ T *temp = 0;
if (manager->isWritable()) {
HbSmartOffset offset(manager->alloc(sizeof(T)), memType);
temp = new((char*)manager->base() + offset.get()) T(memType);
@@ -75,7 +75,7 @@
static T * create(const T &other, HbMemoryManager::MemoryType memType)
{
GET_MEMORY_MANAGER(memType);
- T* temp = 0;
+ T *temp = 0;
if (manager->isWritable()) {
HbSmartOffset offset(manager->alloc(sizeof(T)),memType);
temp = new((char*)manager->base() + offset.get()) T(other, memType);
@@ -126,7 +126,7 @@
template <typename T>
static T * getAddress(HbMemoryManager::MemoryType type, int offset)
{
- if (offset == -1 || offset == -2 ) {
+ if (offset < 0 ) {
return 0;
}
GET_MEMORY_MANAGER(type)
@@ -136,7 +136,7 @@
/*
* returns application file name without extension.
*/
- static const QString& getCleanAppName()
+ static const QString &getCleanAppName()
{
// making static to avoid string multiple string operation on each call..
static QString cleanAppName;
--- a/src/hbcore/core/hbmultisegmentallocator_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbmultisegmentallocator_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -85,7 +85,7 @@
} while (index <= limit);
}
- header = (MultiAllocatorHeader*)((unsigned char*)(chunk->data()) + offset);
+ header = address<MultiAllocatorHeader>(offset);
if (header->identifier == INITIALIZED_MULTISEGMENTALLOCATOR_IDENTIFIER) {
return; // already initialized
}
@@ -93,12 +93,14 @@
// every chunk list have space for 512 chunks
ChunkListHeader *listHeader;
for (int i = 0; i < AMOUNT_OF_DIFFERENT_CHUNK_SIZES; i++) {
- header->offsetsToChunkLists[i] = mainAllocator->alloc(sizeof(ChunkListHeader) + (sizeof(int)+ChunkSizes[i])*CHUNKS_IN_ONE_LIST);
+ header->offsetsToChunkLists[i] = mainAllocator->alloc(sizeof(ChunkListHeader)
+ + (sizeof(int) + ChunkSizes[i])
+ * CHUNKS_IN_ONE_LIST);
header->offsetsToFreeChunkLists[i] = header->offsetsToChunkLists[i];
- listHeader = (ChunkListHeader*)((unsigned char*)(chunk->data()) + header->offsetsToChunkLists[i]);
+ listHeader = address<ChunkListHeader>(header->offsetsToChunkLists[i]);
listHeader->chunkListIndex = i;
listHeader->freedChunkCursor = -1;
- listHeader->allocCursor = header->offsetsToChunkLists[i]+sizeof(ChunkListHeader);
+ listHeader->allocCursor = header->offsetsToChunkLists[i] + sizeof(ChunkListHeader);
listHeader->previousListOffset = -1;
listHeader->nextListOffset = -1;
listHeader->allocatedChunks = 0;
@@ -135,23 +137,20 @@
// first find out correct list of chunks
int i = indexTable[size];
-
- // qDebug() << "HbMultiSegmentAllocator::alloc, with size " << size << " chunkList " << i << " used\n";
-
int dataOffset = -1;
int *metaData = 0;
// this should always point to list with free chunks
- ChunkListHeader *listHeader = (ChunkListHeader*)((unsigned char*)(chunk->data()) + header->offsetsToFreeChunkLists[i]);
+ ChunkListHeader *listHeader = address<ChunkListHeader>(header->offsetsToFreeChunkLists[i]);
if (listHeader->freedChunkCursor >= 0) { // freedChunkCursor points to freed chunk
dataOffset = listHeader->freedChunkCursor + sizeof(int);
- metaData = (int*)((unsigned char*)(chunk->data())+listHeader->freedChunkCursor);
+ metaData = address<int>(listHeader->freedChunkCursor);
listHeader->freedChunkCursor = *metaData; // point to next freed chunk
} else { // no chunks freed -> allocate in order
dataOffset = listHeader->allocCursor + sizeof(int);
- metaData = (int*)((unsigned char*)(chunk->data())+listHeader->allocCursor);
+ metaData = address<int>(listHeader->allocCursor);
// we will never allocate from full list, so allocCursor is always valid
- listHeader->allocCursor += ChunkSizes[listHeader->chunkListIndex]+sizeof(int);
+ listHeader->allocCursor += ChunkSizes[listHeader->chunkListIndex] + sizeof(int);
}
// for allocated chunks metadata is:
@@ -163,7 +162,9 @@
if (!setFreeList(listHeader->chunkListIndex)) {
// there is no list(s) with free chunks, so add new list
addList(listHeader->chunkListIndex,
- mainAllocator->alloc((sizeof(ChunkListHeader)+sizeof(int)+ChunkSizes[listHeader->chunkListIndex])*CHUNKS_IN_ONE_LIST));
+ mainAllocator->alloc((sizeof(ChunkListHeader) + sizeof(int)
+ + ChunkSizes[listHeader->chunkListIndex])
+ * CHUNKS_IN_ONE_LIST));
}
}
@@ -176,19 +177,19 @@
void HbMultiSegmentAllocator::free(int offset)
{
// metadata has offset to list's header
- int *metaData = (int*)((unsigned char*)(chunk->data())+offset-sizeof(int));
+ int *metaData = address<int>(offset - sizeof(int));
int listHeaderOffset = *metaData;
- ChunkListHeader *listHeader = (ChunkListHeader*)((unsigned char*)(chunk->data()) + listHeaderOffset);
+ ChunkListHeader *listHeader = address<ChunkListHeader>(listHeaderOffset);
listHeader->allocatedChunks--;
if (listHeader->allocatedChunks == 0) {
// if there are multiple lists, this list could be released
ChunkListHeader *previous = 0;
if (listHeader->previousListOffset > -1) {
- previous = (ChunkListHeader*)((unsigned char*)(chunk->data()) + listHeader->previousListOffset);
+ previous = address<ChunkListHeader>(listHeader->previousListOffset);
}
ChunkListHeader *next = 0;
if (listHeader->nextListOffset > -1) {
- next = (ChunkListHeader*)((unsigned char*)(chunk->data()) + listHeader->nextListOffset);
+ next = address<ChunkListHeader>(listHeader->nextListOffset);
}
if (previous || next) {
@@ -212,12 +213,12 @@
} else {
// only list can't be freed
*metaData = listHeader->freedChunkCursor;
- listHeader->freedChunkCursor = offset-sizeof(int);
+ listHeader->freedChunkCursor = offset - sizeof(int);
}
} else {
// this list is not yet empty
*metaData = listHeader->freedChunkCursor;
- listHeader->freedChunkCursor = offset-sizeof(int);
+ listHeader->freedChunkCursor = offset - sizeof(int);
}
}
@@ -229,8 +230,8 @@
*/
int HbMultiSegmentAllocator::allocatedSize(int offset)
{
- int *metaData = (int*)((unsigned char*)(chunk->data())+offset-sizeof(int));
- ChunkListHeader *listHeader = (ChunkListHeader*)((unsigned char*)(chunk->data()) + *metaData);
+ int *metaData = address<int>(offset - sizeof(int));
+ ChunkListHeader *listHeader = address<ChunkListHeader>(*metaData);
// not actual size in alloc(), but the size of chunk, where this data is stored
return ChunkSizes[listHeader->chunkListIndex];
}
@@ -241,12 +242,12 @@
*/
void HbMultiSegmentAllocator::addList(int index, int offset)
{
- ChunkListHeader *newListHeader = (ChunkListHeader*)((unsigned char*)(chunk->data()) + offset);
- ChunkListHeader *oldListHeader = (ChunkListHeader*)((unsigned char*)(chunk->data()) + header->offsetsToChunkLists[index]);
+ ChunkListHeader *newListHeader = address<ChunkListHeader>(offset);
+ ChunkListHeader *oldListHeader = address<ChunkListHeader>(header->offsetsToChunkLists[index]);
// when this method is called, there will be at least one list,
// so oldListHeader is valid and also all the lists are full
newListHeader->allocatedChunks = 0;
- newListHeader->allocCursor = offset+sizeof(ChunkListHeader);
+ newListHeader->allocCursor = offset + sizeof(ChunkListHeader);
newListHeader->chunkListIndex = index;
newListHeader->freedChunkCursor = -1;
newListHeader->previousListOffset = -1;
@@ -263,11 +264,12 @@
bool HbMultiSegmentAllocator::setFreeList(int index)
{
ChunkListHeader *listHeader;
- listHeader = (ChunkListHeader*)((unsigned char*)(chunk->data()) + header->offsetsToChunkLists[index]);
+ listHeader = address<ChunkListHeader>(header->offsetsToChunkLists[index]);
bool retVal = false;
for (;;) {
if (listHeader->allocatedChunks < CHUNKS_IN_ONE_LIST) {
- int offset = (int)((char*)(listHeader)-(char*)(chunk->data()));
+ int offset = static_cast<int>(reinterpret_cast<char*>(listHeader)
+ - reinterpret_cast<char*>(chunk->data()));
header->offsetsToFreeChunkLists[index] = offset;
retVal = true;
break;
@@ -275,9 +277,8 @@
if (listHeader->nextListOffset == -1) {
break;
}
- listHeader = (ChunkListHeader*)((unsigned char*)(chunk->data()) + listHeader->nextListOffset);
+ listHeader = address<ChunkListHeader>(listHeader->nextListOffset);
}
-
return retVal;
}
@@ -285,7 +286,8 @@
void HbMultiSegmentAllocator::writeReport(QTextStream &reportWriter)
{
reportWriter << "***** (Sub)HbMultiSegmentAllocator report *****\n\n";
- reportWriter << SPACE_NEEDED_FOR_MULTISEGMENT_ALLOCATOR << " bytes allocated for internal bookkeeping\n";
+ reportWriter << SPACE_NEEDED_FOR_MULTISEGMENT_ALLOCATOR
+ << " bytes allocated for internal bookkeeping\n";
reportWriter << AMOUNT_OF_DIFFERENT_CHUNK_SIZES << " different chunk sizes (";
for (int i = 0; i < AMOUNT_OF_DIFFERENT_CHUNK_SIZES-1; i++) {
reportWriter << ChunkSizes[i] << ", ";
@@ -301,36 +303,47 @@
int allocations = 0;
int listCount = 0;
ChunkListHeader *listHeader;
- listHeader = (ChunkListHeader*)((unsigned char*)(chunk->data()) + header->offsetsToChunkLists[i]);
+ listHeader = address<ChunkListHeader>(header->offsetsToChunkLists[i]);
for (;;) {
allocations += listHeader->allocatedChunks;
listCount++;
if (listHeader->nextListOffset != -1) {
- listHeader = (ChunkListHeader*)((unsigned char*)(chunk->data()) + listHeader->nextListOffset);
+ listHeader = address<ChunkListHeader>(listHeader->nextListOffset);
} else {
break;
}
}
- reportWriter << "for chunk size " << ChunkSizes[i] << ", " << listCount << " list(s) used\n";
+ reportWriter << "for chunk size " << ChunkSizes[i] << ", "
+ << listCount << " list(s) used\n";
reportWriter << "and in these lists " << allocations << " chunks are allocated\n";
- int totalSize = listCount * (sizeof(ChunkListHeader) + (sizeof(int)+ChunkSizes[i])*CHUNKS_IN_ONE_LIST);
+ int totalSize = listCount * (sizeof(ChunkListHeader) + (sizeof(int) + ChunkSizes[i])
+ * CHUNKS_IN_ONE_LIST);
totalMemoryReserved += totalSize;
- reportWriter << "Total size reserved from shared chunk for these list(s): " << totalSize << " bytes\n";
- int bookKeeping = listCount * (sizeof(ChunkListHeader) + sizeof(int)*CHUNKS_IN_ONE_LIST);
+ reportWriter << "Total size reserved from shared chunk for these list(s): "
+ << totalSize << " bytes\n";
+ int bookKeeping = listCount * (sizeof(ChunkListHeader) + sizeof(int) * CHUNKS_IN_ONE_LIST);
totalBookkeepingMemory += bookKeeping;
reportWriter << " - bytes used for bookkeeping: " << bookKeeping << "\n";
- reportWriter << " - actual allocated bytes (in chunks, not in actual data, which might be less than chunk size): " << allocations*ChunkSizes[i] << "\n\n";
+ reportWriter << " - actual allocated bytes (in chunks, not in actual data, which might be less than chunk size): "
+ << allocations * ChunkSizes[i] << "\n\n";
totalAllocatedMemory += allocations*ChunkSizes[i];
}
reportWriter << "*** HbMultiSegmentAllocator summary ***\n";
- reportWriter << "Total memory reserved from shared chunk: " << totalMemoryReserved << " bytes\n";
+ reportWriter << "Total memory reserved from shared chunk: "
+ << totalMemoryReserved << " bytes\n";
reportWriter << " - internal bookkeeping uses " << totalBookkeepingMemory << " bytes\n";
- reportWriter << " - actual memory allocated by clients: " << totalAllocatedMemory << " bytes\n";
- int totalFragmentationPercent = (int)((float)(totalAllocatedMemory)/(float)(totalMemoryReserved)*100);
- int usableFragmentationPercent = (int)((float)(totalAllocatedMemory)/(float)(totalMemoryReserved-totalBookkeepingMemory)*100);
- reportWriter << "allocated memory / all memory reserved from shared chunk = " << totalFragmentationPercent << "%\n";
- reportWriter << "allocated memory / all usable memory for client data = " << usableFragmentationPercent << "%\n";
+ reportWriter << " - actual memory allocated by clients: "
+ << totalAllocatedMemory << " bytes\n";
+ int totalFragmentationPercent = int(float(totalAllocatedMemory)
+ / float(totalMemoryReserved) * 100);
+ int usableFragmentationPercent = int(float(totalAllocatedMemory)
+ / float(totalMemoryReserved - totalBookkeepingMemory)
+ * 100);
+ reportWriter << "allocated memory / all memory reserved from shared chunk = "
+ << totalFragmentationPercent << "%\n";
+ reportWriter << "allocated memory / all usable memory for client data = "
+ << usableFragmentationPercent << "%\n";
}
#endif
--- a/src/hbcore/core/hbnamespace.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbnamespace.cpp Thu May 27 13:10:59 2010 +0300
@@ -26,7 +26,7 @@
#include <hbnamespace.h>
/*!
- @beta
+ @stable
@hbcore
\namespace Hb
\brief The Hb namespace contains miscellaneous identifiers used throughout the Hb library.
@@ -574,4 +574,57 @@
Application was started by other means.
*/
+/*!
+ \enum Hb::BackgroundImageMode
+ Controls how the background image is drawn.
+*/
+
+/*!
+ \var Hb::BackgroundImageMode Hb::ScaleBackgroundToFit
+
+ The background image is scaled to cover the entire available area. The
+ aspect ratio is kept (by expanding the size if needed). The image is
+ centered in the available area.
+ */
+
+/*!
+ \var Hb::BackgroundImageMode Hb::ScaleBackgroundToFitWithoutExpanding
+
+ The background image is scaled to cover most of the available area. The
+ aspect ratio is kept (without expanding) so the image may not occupy the
+ entire available area. The image is centered in the available area.
+ */
+
+/*!
+ \var Hb::BackgroundImageMode Hb::StretchBackgroundToFit
+
+ The background image is stretched to cover the entire available area.
+ */
+
+/*!
+ \var Hb::BackgroundImageMode Hb::KeepOriginalBackgroundSize
+
+ Keeps the original size of the image, no up or downscaling occurs. The image
+ is centered in the available area.
+ */
+
+/*!
+ \var Hb::BackgroundImageMode Hb::KeepOriginalBackgroundSizeIfSmaller
+
+ Keeps the original size of the image only when the size is smaller than the
+ available area (i.e. dynamically switches between Hb::ScaleBackgroundToFit
+ and Hb::KeepOriginalBackgroundSize depending on the size of the source
+ image).
+ */
+
+/*!
+ \var Hb::BackgroundImageMode Hb::DoNotDrawBackground
+
+ Does not draw the background, i.e. the paint() function of the background
+ item will not do anything when this mode is set. Use this only to
+ temporarily prevent the background from showing. If you need to hide the
+ background item permanently then pass Hb::WindowFlagNoBackground to the
+ HbMainWindow constructor because that is more efficient.
+*/
+
--- a/src/hbcore/core/hbnamespace.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbnamespace.h Thu May 27 13:10:59 2010 +0300
@@ -345,8 +345,18 @@
ActivationReasonService,
ActivationReasonNormal
};
-
+
+ enum BackgroundImageMode {
+ ScaleBackgroundToFit = 0,
+ ScaleBackgroundToFitWithoutExpanding,
+ StretchBackgroundToFit,
+ KeepOriginalBackgroundSize,
+ KeepOriginalBackgroundSizeIfSmaller,
+ DoNotDrawBackground,
+ NBackgroundImageModes
+ };
};
+
Q_DECLARE_METATYPE(Hb::GraphicsItemType)
Q_DECLARE_OPERATORS_FOR_FLAGS(Hb::UiAttributes)
@@ -360,4 +370,3 @@
Q_DECLARE_OPERATORS_FOR_FLAGS(Hb::InteractionModifiers)
#endif // HBNAMESPACE_H
-
--- a/src/hbcore/core/hbsharedcache.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbsharedcache.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,7 +25,7 @@
#include <QSystemSemaphore>
-static QSystemSemaphore *Semaphore;
+static QSystemSemaphore *Semaphore = 0;
static QLatin1String SemaphoreName("hbsharedcache_semaphore");
@@ -57,7 +57,7 @@
// binary search
while (begin <= end) {
- int mid = begin + (end-begin)/2;
+ int mid = begin + (end - begin) / 2;
// Fast string comparison, no unnecessary mem copy
QLatin1String offsetName(reinterpret_cast<const char*>(itemArray)
+ itemArray[mid].nameOffset);
@@ -65,10 +65,7 @@
// If the item was found, we're done.
if (!comparison) {
return &itemArray[mid];
- }
-
- // Is the target in lower or upper half?
- else if (comparison < 0) {
+ } else if (comparison < 0) {
end = mid - 1;
} else {
begin = mid + 1;
@@ -82,7 +79,11 @@
HbSharedCache *HbSharedCache::instance()
{
GET_MEMORY_MANAGER(HbMemoryManager::SharedMemory);
- return static_cast<HbSharedMemoryManager*>(manager)->cache();
+ HbSharedCache *ptr = 0;
+ if (manager) {
+ ptr = static_cast<HbSharedMemoryManager*>(manager)->cache();
+ }
+ return ptr;
}
//doesn't check, if the item is already in the cache.
@@ -175,6 +176,12 @@
{
}
+void HbSharedCache::freeResources()
+{
+ delete Semaphore;
+ Semaphore = 0;
+}
+
void HbSharedCache::initServer()
{
mLayoutDefCache.reserve(20);
--- a/src/hbcore/core/hbsharedcache_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbsharedcache_p.h Thu May 27 13:10:59 2010 +0300
@@ -69,10 +69,12 @@
HbSharedCache();
void initServer();
void initClient();
+ void freeResources();
HbVector<CacheItem> &itemCache(ItemType type);
const HbVector<CacheItem> &itemCache(ItemType type) const;
void addOffsetMap(const char *offsetMapData, int size, int offsetItemCount);
friend class HbSharedMemoryManager;
+ friend class HbSharedMemoryManagerUt;
private:
friend bool writeCssBinary(const QStringList &, const QString &);
--- a/src/hbcore/core/hbsharedmemoryallocators_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbsharedmemoryallocators_p.h Thu May 27 13:10:59 2010 +0300
@@ -27,8 +27,9 @@
#define HBSHAREDMEMORYALLOCATORS_P_H
#include "hbthemecommon_p.h"
+#include <QSharedMemory>
-#define ALIGN_SIZE 4
+static const int ALIGN_SIZE = 4;
#define ALIGN(x) ((x + ALIGN_SIZE - 1) & ~(ALIGN_SIZE - 1))
// space for multisegment allocator bookkeeping - to be allocated from shared memory
@@ -46,8 +47,6 @@
// max. amount of different chunk sizes in multisegment allocator
static const int AMOUNT_OF_DIFFERENT_CHUNK_SIZES = 8;
-class QSharedMemory;
-
class HB_CORE_PRIVATE_EXPORT HbSharedMemoryAllocator
{
public:
@@ -122,6 +121,11 @@
void deleteLengthNode(unsigned int *root, TreeNode *node, bool splayed);
void *toPointer(unsigned int offset) const;
+ template<typename T>
+ inline T *address(int offset)
+ {
+ return reinterpret_cast<T *>(static_cast<char *>(chunk->data()) + offset);
+ }
private:
QSharedMemory *chunk;
@@ -171,6 +175,11 @@
// helper methods
void addList(int index, int offset);
bool setFreeList(int index);
+ template<typename T>
+ inline T *address(int offset)
+ {
+ return reinterpret_cast<T *>(static_cast<char *>(chunk->data()) + offset);
+ }
private:
QSharedMemory *chunk;
--- a/src/hbcore/core/hbsharedmemorymanager_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbsharedmemorymanager_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -71,9 +71,10 @@
// ToDo: improve server identification logic.. UID on symbian?
const QString &appName = HbMemoryUtils::getCleanAppName();
bool binCSSConverterApp = (appName == BIN_CSS_APP || appName == BIN_CSS_APP_SYMBIAN);
- if (appName == THEME_SERVER_NAME || binCSSConverterApp) {
+ // Testability support: allowing unit test to write to shared chunk also
+ if (appName == THEME_SERVER_NAME || appName == SHARED_MEMORY_MANAGER_UNIT_TEST || binCSSConverterApp) {
// This is server, create shared memory chunk
- success = chunk->create( CACHE_SIZE, QSharedMemory::ReadWrite );
+ success = chunk->create(CACHE_SIZE, QSharedMemory::ReadWrite);
// If sharedMemory already exists.
// (This can happpen if ThemeServer crashed without releasing QSharedMemory)
if (!success && QSharedMemory::AlreadyExists == chunk->error()) {
@@ -82,7 +83,7 @@
writable = true;
} else {
// this is not server so just attach to shared memory chunk in ReadOnly mode
- success = chunk->attach( QSharedMemory::ReadOnly );
+ success = chunk->attach(QSharedMemory::ReadOnly);
writable = false;
}
if ( !success ) {
@@ -92,51 +93,51 @@
delete chunk;
chunk = 0;
}
-
if (success && isWritable()) {
// if we are recovering from theme server crash, shared chunk may
// already be ready
- bool enableRecovery = true;
+ bool enableRecovery = false;
if (binCSSConverterApp) {
enableRecovery = false;
}
HbSharedChunkHeader *chunkHeader = static_cast<HbSharedChunkHeader*>(chunk->data());
+ HbSharedCache *cachePtr = 0;
if (enableRecovery && chunkHeader->identifier == INITIALIZED_CHUNK_IDENTIFIER) {
// just reconnect allocators to the shared chunk
mainAllocator->initialize(chunk, chunkHeader->mainAllocatorOffset);
subAllocator->initialize(chunk, chunkHeader->subAllocatorOffset, mainAllocator);
} else {
// Load memory file in the beginning of the chunk first.
- HbSharedCache *cachePtr = 0;
int memoryFileSize = 0;
chunkHeader->sharedCacheOffset = 0;
+#ifdef Q_OS_SYMBIAN
if (!binCSSConverterApp) {
-#ifdef Q_OS_SYMBIAN
QString memoryFile("z:/resource/hb/themes/css.bin");
memoryFileSize = loadMemoryFile(memoryFile);
-#endif
}
-
+#endif
// Put main allocator after the memory file or if memory file was not loaded, after chunk header.
- chunkHeader->mainAllocatorOffset = memoryFileSize ? ALIGN(memoryFileSize) : sizeof(HbSharedChunkHeader);
+ chunkHeader->mainAllocatorOffset = memoryFileSize ? ALIGN(memoryFileSize)
+ : sizeof(HbSharedChunkHeader);
mainAllocator->initialize(chunk, chunkHeader->mainAllocatorOffset);
chunkHeader->subAllocatorOffset = alloc(SPACE_NEEDED_FOR_MULTISEGMENT_ALLOCATOR);
subAllocator->initialize(chunk, chunkHeader->subAllocatorOffset, mainAllocator);
chunkHeader->identifier = INITIALIZED_CHUNK_IDENTIFIER;
if (!binCSSConverterApp) {
- if (memoryFileSize > 0) {
- cachePtr = cache();
- } else {
+ if (memoryFileSize == 0) {
cachePtr = createSharedCache(0, 0, 0);
}
-
- if (cachePtr) {
- cachePtr->initServer();
- }
}
}
+ if (!cachePtr) {
+ cachePtr = cache();
+ }
+ if (cachePtr && !binCSSConverterApp) {
+ cachePtr->initServer();
+ }
+
success = true;
} else {
HbSharedCache *cachePtr = cache();
@@ -199,7 +200,7 @@
if (allocations.contains(size)) {
allocations[size].first++;
} else {
- allocations.insert(size, QPair<quint32,quint32>(1,0));
+ allocations.insert(size, QPair<quint32, quint32>(1,0));
}
#else // normal alloc without reporting
@@ -221,11 +222,11 @@
#endif // HB_THEME_SERVER_MEMORY_REPORT
#ifdef HB_THEME_SERVER_FULL_MEMORY_REPORT
- fullAllocationHistory.append(QPair<quint32,quint32>(size | allocIdentifier, offset));
+ fullAllocationHistory.append(QPair<quint32,quint32>(size | allocIdentifier, offset));
#endif
#ifdef HB_BIN_CSS
- HbCssConverterUtils::cellAllocated(offset, size);
+ HbCssConverterUtils::cellAllocated(offset, size);
#endif
return offset;
} else {
@@ -241,7 +242,7 @@
{
// don't do anything when freeing NULL (pointer)offset
if (isWritable() && (offset > 0)) {
- int metaData = *(int*)((unsigned char*)(base())+offset-sizeof(int));
+ int metaData = *address<int>(offset - sizeof(int));
#ifdef HB_THEME_SERVER_MEMORY_REPORT
int size = 0;
if (metaData & MAIN_ALLOCATOR_IDENTIFIER) {
@@ -257,13 +258,12 @@
fullAllocationHistory.append(QPair<quint32,quint32>(size | freeIdentifier, offset));
#endif
-#endif
+#endif //HB_THEME_SERVER_MEMORY_REPORT
if (metaData & MAIN_ALLOCATOR_IDENTIFIER) {
mainAllocator->free(offset);
} else {
subAllocator->free(offset);
}
-
#ifdef HB_BIN_CSS
HbCssConverterUtils::cellFreed(offset);
#endif
@@ -281,7 +281,7 @@
if (isWritable()) {
#ifdef HB_THEME_SERVER_FULL_MEMORY_REPORT
if (offset > 0) { // if offset == -1, just do normal alloc and not report realloc
- fullAllocationHistory.append(QPair<quint32,quint32>(newSize | reallocIdentifier, offset));
+ fullAllocationHistory.append(QPair<quint32, quint32>(newSize | reallocIdentifier, offset));
}
#endif
newOffset = alloc(newSize);
@@ -290,11 +290,11 @@
#ifdef HB_BIN_CSS
HbCssConverterUtils::cellMoved(offset, newOffset);
#endif
- unsigned char *scrPtr = (unsigned char*)(base())+offset;
- int metaData = *(int*)((unsigned char*)(base())+offset-sizeof(int));
+ unsigned char *scrPtr = address<unsigned char>(offset);
+ int metaData = *address<int>(offset - sizeof(int));
if (metaData & MAIN_ALLOCATOR_IDENTIFIER) {
int oldSize = mainAllocator->allocatedSize(offset);
- memcpy((unsigned char*)(base())+newOffset, scrPtr, qMin(oldSize, allocatedSize));
+ memcpy(address<unsigned char>(newOffset), scrPtr, qMin(oldSize, allocatedSize));
#ifdef HB_THEME_SERVER_MEMORY_REPORT
free(offset);
#else
@@ -302,14 +302,13 @@
#endif
} else {
int oldSize = subAllocator->allocatedSize(offset);
- memcpy((unsigned char*)(base())+newOffset, scrPtr, qMin(oldSize, allocatedSize));
+ memcpy(address<unsigned char>(newOffset), scrPtr, qMin(oldSize, allocatedSize));
#ifdef HB_THEME_SERVER_MEMORY_REPORT
free(offset);
#else
subAllocator->free(offset);
#endif
}
-
#if HB_BIN_CSS
// Does not matter if already called when calling free() above.
HbCssConverterUtils::cellFreed(offset);
@@ -328,7 +327,7 @@
*/
void *HbSharedMemoryManager::base()
{
- return chunk->data();
+ return chunk->data();
}
/**
@@ -368,7 +367,7 @@
}
if (sharedCacheOffset >= 0) {
- cache = new (static_cast<char*>(base()) + sharedCacheOffset) HbSharedCache();
+ cache = new (address<char>(sharedCacheOffset)) HbSharedCache();
cache->addOffsetMap(offsetMapData, size, offsetItemCount);
chunkHeader->sharedCacheOffset = sharedCacheOffset;
}
@@ -378,15 +377,20 @@
int HbSharedMemoryManager::size()
{
if(mainAllocator) {
- return (dynamic_cast<HbSplayTreeAllocator*>(mainAllocator))->size();
+ return (static_cast<HbSplayTreeAllocator*>(mainAllocator))->size();
}
return -1;
}
HbSharedCache *HbSharedMemoryManager::cache()
{
- const HbSharedChunkHeader *chunkHeader = static_cast<const HbSharedChunkHeader*>(chunk->data());
- return reinterpret_cast<HbSharedCache*>((char*)base() + chunkHeader->sharedCacheOffset);
+ HbSharedCache *cachePtr = 0;
+ if (chunk) {
+ const HbSharedChunkHeader *chunkHeader =
+ static_cast<const HbSharedChunkHeader*>(chunk->data());
+ cachePtr = address<HbSharedCache>(chunkHeader->sharedCacheOffset);
+ }
+ return cachePtr;
}
/**
@@ -397,6 +401,14 @@
#ifdef HB_THEME_SERVER_MEMORY_REPORT
allocations.clear();
#endif
+ if (chunk) {
+ const HbSharedChunkHeader *chunkHeader =
+ static_cast<const HbSharedChunkHeader*>(chunk->data());
+ if (chunkHeader->sharedCacheOffset > 0) {
+ HbSharedCache *cachePtr = address<HbSharedCache>(chunkHeader->sharedCacheOffset);
+ cachePtr->freeResources();
+ }
+ }
delete subAllocator;
delete mainAllocator;
delete chunk;
@@ -410,7 +422,9 @@
if (!memManager) {
memManager = new HbSharedMemoryManager();
if (!memManager->initialize()) {
+#ifdef THEME_SERVER_TRACES
qWarning( "HbSharedMemoryManager:Could not initialize shared memory" );
+#endif
delete memManager;
memManager = 0;
}
@@ -427,7 +441,6 @@
memManager = 0;
}
-
/**
* gets the free memory reported by main allocator
*/
@@ -461,13 +474,14 @@
loadedSize = (int)fileSize;
}
#ifdef CSSBIN_TRACES
- qDebug() << "Loading memory file status: " << (ok ? "no error" : file.errorString());
+ qDebug() << "Loading memory file status: " << (loadedSize > 0 ? "no error" : file.errorString());
#endif
return loadedSize;
}
#ifdef HB_THEME_SERVER_MEMORY_REPORT
-bool pairGreaterThan(const QPair<quint32, QPair<quint32,quint32> > &p1, const QPair<quint32, QPair<quint32,quint32> > &p2)
+bool pairGreaterThan(const QPair<quint32, QPair<quint32, quint32> > &p1,
+ const QPair<quint32, QPair<quint32, quint32> > &p2)
{
return p1.first > p2.first;
}
@@ -511,10 +525,11 @@
reportWriter << "********************************************************************************\n\n";
// list for sorting allocations and frees
- QList<QPair<quint32, QPair<quint32,quint32> > > valueList;
- QMap<quint32, QPair<quint32,quint32> >::const_iterator i; // size, <allocated, freed>
+ QList<QPair<quint32, QPair<quint32, quint32> > > valueList;
+ QMap<quint32, QPair<quint32, quint32> >::const_iterator i; // size, <allocated, freed>
for (i = allocations.constBegin(); i != allocations.constEnd(); ++i) {
- valueList.append(QPair<quint32,QPair<quint32,quint32> >(i.value().first, QPair<quint32,quint32>(i.key(), i.value().second)));
+ valueList.append(QPair<quint32, QPair<quint32, quint32> >
+ (i.value().first, QPair<quint32, quint32>(i.key(), i.value().second)));
}
qSort(valueList.begin(), valueList.end(), pairGreaterThan);
@@ -523,29 +538,35 @@
reportWriter << "times allocated - times released - size\n";
int count = 0;
for (int i = 0; i < valueList.size(); i++) {
- if (count > 30) break; // only report top 30 sizes
- reportWriter << valueList.at(i).first << " - " << valueList.at(i).second.second << " - " << valueList.at(i).second.first << "\n";
+ if (count > 30) {
+ break; // only report top 30 sizes
+ }
+ reportWriter << valueList.at(i).first << " - "
+ << valueList.at(i).second.second << " - "
+ << valueList.at(i).second.first << "\n";
count++;
}
reportWriter << "\n";
valueList.clear();
for (i = allocations.constBegin(); i != allocations.constEnd(); ++i) {
- valueList.append(QPair<quint32,QPair<quint32,quint32> >(i.key(), QPair<quint32,quint32>(i.value().first, i.value().second)));
+ valueList.append(QPair<quint32, QPair<quint32, quint32> >
+ (i.key(), QPair<quint32, quint32>(i.value().first, i.value().second)));
}
qSort(valueList.begin(), valueList.end(), pairGreaterThan);
reportWriter << "Top 30 allocated sizes:\n";
reportWriter << "size - times allocated - times released\n";
count = 0;
for (int i = 0; i < valueList.size(); i++) {
- if (count > 30) break; // only report top 30 sizes
- reportWriter << valueList.at(i).first << " - " << valueList.at(i).second.first << " - " << valueList.at(i).second.second << "\n";
+ if (count > 30) {
+ break; // only report top 30 sizes
+ }
+ reportWriter << valueList.at(i).first << " - " << valueList.at(i).second.first << " - "
+ << valueList.at(i).second.second << "\n";
count++;
}
reportWriter << "\n";
-
-
mainAllocator->writeReport(reportWriter);
#ifdef USE_SUBALLOCATOR
subAllocator->writeReport(reportWriter);
@@ -565,14 +586,16 @@
reportWriter << "freed " << size << " bytes from offset " << offset << "\n";
break;
case reallocIdentifier:
- reportWriter << "reallocation from offset " << offset << " with " << size << " bytes" << "\n";
+ reportWriter << "reallocation from offset " << offset << " with "
+ << size << " bytes" << "\n";
i++;
if (i <= fullAllocationHistory.size()) {
size = fullAllocationHistory.at(i).first & 0x3FFFFFFF;
identifier = fullAllocationHistory.at(i).first & 0xC0000000;
offset = fullAllocationHistory.at(i).second;
if (identifier == allocIdentifier) { // should come right after realloc
- reportWriter << " from realloc: allocated " << size << " bytes from offset " << offset << "\n";
+ reportWriter << " from realloc: allocated " << size
+ << " bytes from offset " << offset << "\n";
} else {
reportWriter << "ERROR: no alloc after realloc! How is this possible?\n";
}
@@ -583,7 +606,8 @@
identifier = fullAllocationHistory.at(i).first & 0xC0000000;
offset = fullAllocationHistory.at(i).second;
if (identifier == freeIdentifier) { // should come right after realloc and alloc
- reportWriter << " from realloc: freed " << size << " bytes from offset " << offset << "\n";
+ reportWriter << " from realloc: freed " << size
+ << " bytes from offset " << offset << "\n";
} else {
reportWriter << "ERROR: no free after realloc and alloc! How is this possible?\n";
}
@@ -592,7 +616,6 @@
default:
break;
}
-
}
#endif
file.close();
--- a/src/hbcore/core/hbsharedmemorymanager_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbsharedmemorymanager_p.h Thu May 27 13:10:59 2010 +0300
@@ -77,6 +77,11 @@
private:
bool initialize();
int loadMemoryFile(const QString &filePath);
+ template<typename T>
+ inline T *address(int offset)
+ {
+ return reinterpret_cast<T *>(static_cast<char *>(base()) + offset);
+ }
protected:
bool writable;
--- a/src/hbcore/core/hbsharedmemorymanagerut_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbsharedmemorymanagerut_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -28,8 +28,8 @@
#include <QString>
#include <QDebug>
-
#include "hbthemecommon_p.h"
+#include "hbsharedcache_p.h"
#define HB_THEME_SHARED_AUTOTEST_CHUNK "hbthemesharedautotest"
@@ -74,6 +74,17 @@
chunkHeader->subAllocatorOffset = alloc(SPACE_NEEDED_FOR_MULTISEGMENT_ALLOCATOR);
subAllocator->initialize(chunk, chunkHeader->subAllocatorOffset, mainAllocator);
chunkHeader->identifier = INITIALIZED_CHUNK_IDENTIFIER;
+
+ // Create empty shared cache for unit test purposes
+ HbSharedCache *cachePtr = createSharedCache(0, 0, 0);
+ if (cachePtr) {
+ const QString &appName = HbMemoryUtils::getCleanAppName();
+ if (appName == THEME_SERVER_NAME) {
+ cachePtr->initServer();
+ } else {
+ cachePtr->initClient();
+ }
+ }
}
success = true;
}
--- a/src/hbcore/core/hbsmartoffset_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbsmartoffset_p.h Thu May 27 13:10:59 2010 +0300
@@ -33,7 +33,7 @@
class HB_CORE_PRIVATE_EXPORT HbSmartOffset
{
public:
- HbSmartOffset(int offset = -1, HbMemoryManager::MemoryType type = HbMemoryManager::HeapMemory)
+ explicit HbSmartOffset(int offset = -1, HbMemoryManager::MemoryType type = HbMemoryManager::HeapMemory)
:mOffset(offset),
mType(type)
{
--- a/src/hbcore/core/hbsplaytreeallocator_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbsplaytreeallocator_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -28,11 +28,11 @@
#include <QSharedMemory>
#include <QDebug>
-#define TO_PTR(x) ((char*)(toPointer(x)))
-#define TO_NODE_POINTER(x) ((TreeNode*)(toPointer(x)))
-#define TO_BLOCK_POINTER(x) ((MemoryBlock*)(toPointer(x)))
-#define TO_NODE_OFFSET(x) ((int)((char*)(x)-(char*)(chunk->data())))
-#define TO_OFFSET(x) ((int)((char*)(x)-(char*)(chunk->data())))
+#define TO_PTR(x) ((char *)(toPointer(x)))
+#define TO_NODE_POINTER(x) ((TreeNode *)(toPointer(x)))
+#define TO_BLOCK_POINTER(x) ((MemoryBlock *)(toPointer(x)))
+#define TO_NODE_OFFSET(x) ((int)((char *)(x)-(char *)(chunk->data())))
+#define TO_OFFSET(x) ((int)((char *)(x)-(char *)(chunk->data())))
// this identifier is used to check, if the splay tree is already
// initialized in given shared chunk
@@ -52,19 +52,19 @@
chunk = sharedChunk;
this->offset = offset;
- header = (HeapHeader*)(static_cast<char *>(chunk->data()) + offset);
+ header = address<HeapHeader>(offset);
if (header->identifier == INITIALIZED_ALLOCATOR_IDENTIFIER) {
return; // already initialized
}
memset(header, 0, sizeof(HeapHeader));
- header->freeBytes = chunk->size()-offset-sizeof(HeapHeader)-sizeof(MemoryBlock);
+ header->freeBytes = chunk->size() - offset - sizeof(HeapHeader) - sizeof(MemoryBlock);
// insert first memory block in chunk
- MemoryBlock *block = (MemoryBlock*)&header[1];
+ MemoryBlock *block = reinterpret_cast<MemoryBlock*>(&header[1]);
block->pointerNode.key = TO_OFFSET(block);
- block->lengthNode.key = (unsigned int)header->freeBytes;
+ block->lengthNode.key = static_cast<unsigned int>(header->freeBytes);
insertLengthNode(&header->lengthNode, &block->lengthNode);
insertNode(&header->pointerNode, &block->pointerNode);
@@ -94,7 +94,7 @@
void *HbSplayTreeAllocator::toPointer(unsigned int offset) const
{
if (offset >= sizeof(HeapHeader)) {
- unsigned char *base = (unsigned char*)(chunk->data());
+ unsigned char *base = static_cast<unsigned char*>(chunk->data());
return (&base[offset]);
}
return 0;
@@ -115,15 +115,15 @@
size = ALIGN(size);
- if (size > (int)(header->freeBytes-sizeof(MemoryBlock))) {
+ if (size > int(header->freeBytes - sizeof(MemoryBlock))) {
throw std::bad_alloc();
}
// splay the 'length' tree to obtain the best match
- TreeNode *node = TO_NODE_POINTER(splay(&header->lengthNode, (unsigned int)size));
+ TreeNode *node = TO_NODE_POINTER(splay(&header->lengthNode, static_cast<unsigned int>(size)));
bool splayed = true;
- if (node && (node->key < (unsigned int)size)) {
+ if (node && (node->key < static_cast<unsigned int>(size))) {
splayed = false;
node = TO_NODE_POINTER(node->rightNode);
if (node) {
@@ -140,10 +140,10 @@
// 'length' node is the first attribute of the MemoryBlock, therefore every
// 'length' node is also a MemoryBlock.
- MemoryBlock *block = (MemoryBlock*)node;
+ MemoryBlock *block = reinterpret_cast<MemoryBlock*>(node);
int totalSize = size + sizeof(MemoryBlock);
- int remainingSize = (int)node->key - totalSize;
- unsigned char *ptr = (unsigned char*)&block[1];
+ int remainingSize = int(node->key) - totalSize;
+ unsigned char *ptr = reinterpret_cast<unsigned char*>(&block[1]);
// Remove current block from the trees
deleteLengthNode(&header->lengthNode, node, splayed);
@@ -151,18 +151,20 @@
// If the block is larger than the requested size, split the block and
// insert the second block into the trees
- MemoryBlock *secondBlock = (MemoryBlock*)&ptr[size];
- if ((remainingSize >= (int)(ALIGN_SIZE)) && ((unsigned char*)secondBlock < ((unsigned char*)(chunk->data())+chunk->size()-sizeof(MemoryBlock)))) {
+ MemoryBlock *secondBlock = reinterpret_cast<MemoryBlock*>(&ptr[size]);
+ if (remainingSize >= ALIGN_SIZE
+ && reinterpret_cast<unsigned char*>(secondBlock)
+ < address<unsigned char>(chunk->size() - sizeof(MemoryBlock))) {
- block->lengthNode.key = (unsigned int)size;
- secondBlock->lengthNode.key = (unsigned int)remainingSize;
+ block->lengthNode.key = static_cast<unsigned int>(size);
+ secondBlock->lengthNode.key = static_cast<unsigned int>(remainingSize);
secondBlock->pointerNode.key = TO_NODE_OFFSET(secondBlock);
// Insert the second block into the trees
insertLengthNode(&header->lengthNode, &secondBlock->lengthNode);
insertNode(&header->pointerNode, &secondBlock->pointerNode);
} else {
- totalSize = (int)node->key;
+ totalSize = int(node->key);
}
// Adjust the allocation size
@@ -178,7 +180,7 @@
block->prev = 0;
block->allocatorIdentifier = MAIN_ALLOCATOR_IDENTIFIER;
- return TO_OFFSET(ptr);
+ return TO_OFFSET(ptr);
}
/**
@@ -191,9 +193,9 @@
{
int size = 0;
if (offset > 0) {
- char *srcPtr = TO_PTR(offset);
- MemoryBlock *block = (MemoryBlock*)(srcPtr - sizeof(MemoryBlock));
- size = block->lengthNode.key;
+ char *srcPtr = TO_PTR(offset);
+ MemoryBlock *block = reinterpret_cast<MemoryBlock*>(srcPtr - sizeof(MemoryBlock));
+ size = block->lengthNode.key;
}
return size;
}
@@ -211,7 +213,7 @@
}
MemoryBlock *block = TO_BLOCK_POINTER(offset - sizeof(MemoryBlock));
- MemoryBlock *nextBlock = (MemoryBlock*)((unsigned char*)&block[1] + block->lengthNode.key);
+ MemoryBlock *nextBlock = reinterpret_cast<MemoryBlock*>(reinterpret_cast<char*>(&block[1]) + block->lengthNode.key);
// Adjust the free bytes
header->freeBytes += block->lengthNode.key;
@@ -219,12 +221,13 @@
TreeNode *node = 0;
unsigned int predecessor = 0;
- if ((char*)nextBlock > (char*)chunk->data() && (char*)nextBlock < ((char*)chunk->data()+chunk->size())) {
+ if (reinterpret_cast<char*>(nextBlock) > reinterpret_cast<char*>(chunk->data())
+ && reinterpret_cast<char*>(nextBlock) < address<char>(chunk->size())) {
node = TO_NODE_POINTER(splay(&header->pointerNode, nextBlock->pointerNode.key));
}
if (node) {
- // Find previous block
+ // Find previous block
if (node->key < nextBlock->pointerNode.key) {
predecessor = TO_NODE_OFFSET(node);
} else if ((predecessor = node->leftNode) > 0) {
@@ -248,7 +251,8 @@
// See if the block can be merged with the predecessor
if (predecessor) {
MemoryBlock *b = TO_BLOCK_POINTER(TO_NODE_POINTER(predecessor)->key);
- MemoryBlock *t = (MemoryBlock*)((unsigned char*)&b[1] + b->lengthNode.key);
+ MemoryBlock *t = reinterpret_cast<MemoryBlock*>(
+ reinterpret_cast<unsigned char*>(&b[1]) + b->lengthNode.key);
// Merge with the predecessor
if (t->pointerNode.key == block->pointerNode.key) {
@@ -256,13 +260,12 @@
deleteLengthNode(&header->lengthNode, &b->lengthNode, false);
// Adjust the size
- b->lengthNode.key += (block->lengthNode.key + sizeof(MemoryBlock));
- header->freeBytes += (int)sizeof(MemoryBlock);
- header->allocatedBytes -= (int)sizeof(MemoryBlock);
+ b->lengthNode.key += block->lengthNode.key + sizeof(MemoryBlock);
+ header->freeBytes += sizeof(MemoryBlock);
+ header->allocatedBytes -= sizeof(MemoryBlock);
// Re-insert the node in 'length' tree
insertLengthNode(&header->lengthNode, &b->lengthNode);
-
block = 0; // We don't have to insert the node
}
}
@@ -419,7 +422,7 @@
*/
void HbSplayTreeAllocator::deleteLengthNode(unsigned int *root, TreeNode *node, bool splayed)
{
- MemoryBlock *block = (MemoryBlock*)node;
+ MemoryBlock *block = reinterpret_cast<MemoryBlock*>(node);
// If the node is not the first node in the linked list,
// simply de-link node from the linked list.
@@ -446,7 +449,7 @@
t->lengthNode.leftNode = TO_NODE_POINTER(x)->leftNode;
t->lengthNode.rightNode = TO_NODE_POINTER(x)->rightNode;
t->prev = 0;
- *root = (unsigned int)block->next;
+ *root = static_cast<unsigned int>(block->next);
}
} else {
deleteNode(root, node, false);
@@ -465,13 +468,13 @@
// Length TreeNode is the first entry in the MemoryBlock. Therefore,
// we can safely typecast TreeNode to a MemoryBlock.
MemoryBlock *t = TO_BLOCK_POINTER(splay(root, node->key));
- MemoryBlock *p = (MemoryBlock*)node;
+ MemoryBlock *p = reinterpret_cast<MemoryBlock*>(node);
if (!t || (t->lengthNode.key != node->key)) {
// Insert into the tree
p->prev = 0;
p->next = 0;
- insertNode(root, node, (TreeNode*)t);
+ insertNode(root, node, reinterpret_cast<TreeNode*>(t));
} else {
// Link to the existing tree node
p->next = t->next;
@@ -492,18 +495,19 @@
int HbSplayTreeAllocator::size()
{
// splay the 'pointer' tree to obtain last pointer
- TreeNode *node = TO_NODE_POINTER(splay(&header->pointerNode, (unsigned int)((char*)chunk->data()+chunk->size())));
+ TreeNode *node = TO_NODE_POINTER(splay(&header->pointerNode,
+ reinterpret_cast<unsigned int>(address<char>(chunk->size()))));
if (node) {
TreeNode *right = TO_NODE_POINTER(node->rightNode);
if (right) {
node = right;
}
- MemoryBlock *block = reinterpret_cast<MemoryBlock*>(reinterpret_cast<char*>(node) - sizeof(TreeNode));
- int lastUsedOffset = TO_OFFSET(block)+sizeof(MemoryBlock)-1; // this is not aligned to 4!!! but actual last byte allocated
- return lastUsedOffset;
+ MemoryBlock *block = reinterpret_cast<MemoryBlock*>(reinterpret_cast<char*>(node)
+ - sizeof(TreeNode));
+ return TO_OFFSET(block) + sizeof(MemoryBlock) - 1; // not aligned, but actual last byte allocated.;
}
- return -1; // couldn't found last used offset
+ return -1;
}
int HbSplayTreeAllocator::freeBytes()
@@ -520,9 +524,9 @@
void HbSplayTreeAllocator::writeReport(QTextStream &reportWriter)
{
reportWriter << "***** (Main)HbSplayTreeAllocator report *****\n\n";
- reportWriter << "Allocated memory (including memory allocated by multisegment allocator): " << header->allocatedBytes << " bytes\n";
+ reportWriter << "Allocated memory (including memory allocated by multisegment allocator): "
+ << header->allocatedBytes << " bytes\n";
reportWriter << "Free memory: " << header->freeBytes << " bytes\n";
reportWriter << "Splaytree allocator is best fit allocator, so there is really no point to calculate fragmentation\n\n";
-
}
#endif
--- a/src/hbcore/core/hbstandarddirs.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbstandarddirs.cpp Thu May 27 13:10:59 2010 +0300
@@ -36,7 +36,7 @@
#include <sys/stat.h>
// Standard theme root dirs
-const char *coreResourcesRootDir = ":";
+const char *CoreResourcesRootDir = ":";
// Private API
// WARNING: This API is at prototype level and shouldn't be used before
@@ -221,37 +221,23 @@
#endif
// Add core resource dir as well
- rootPathList << coreResourcesRootDir;
-}
-
-int HbStandardDirsInstance::fileSize( QByteArray fileName )
-{
- struct stat fileStat;
- const char *fname = fileName.data();
- int err = stat( fname, &fileStat );
- if (0 != err) return 0;
- return fileStat.st_size;
+ rootPathList << CoreResourcesRootDir;
}
QStringList HbStandardDirsInstance::additionalRootPath()
{
+ static QStringList rootpaths;
+ if (!rootpaths.isEmpty()) return rootpaths;
QFile rootPathFile(rootPathsFile);
- static QStringList rootpaths;
-
- QByteArray filePath = rootPathsFile.toLatin1().constData();
- int size = fileSize(filePath);
-
- if(size > 0) {
- if (rootPathFile.open(QIODevice::ReadOnly | QIODevice::Text)) {
- QTextStream in(&rootPathFile);
- rootpaths.clear();
- while (!in.atEnd()) {
- QString line = in.readLine();
- QDir rootdir(line);
- if (rootdir.exists()) {
- rootpaths.append(line);
- }
- }
+ if (rootPathFile.open(QIODevice::ReadOnly | QIODevice::Text)) {
+ QTextStream in(&rootPathFile);
+ rootpaths.clear();
+ while (!in.atEnd()) {
+ QString line = in.readLine();
+ QDir rootdir(line);
+ if (rootdir.exists()) {
+ rootpaths.append(line);
+ }
}
}
return rootpaths;
--- a/src/hbcore/core/hbstandarddirs_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbstandarddirs_p.h Thu May 27 13:10:59 2010 +0300
@@ -36,13 +36,14 @@
#elif defined(Q_OS_SYMBIAN)
const QString rootPathsFile = "c:/data/theme/themerootsdir.txt";
#elif defined(Q_OS_MAC)
-const QString rootPathsFile = QDir::homePath() + QString( "Library/UI Extensions for Mobile/themes/themerootsdir.txt" );
+const QString rootPathsFile =
+ QDir::homePath() + QString("Library/UI Extensions for Mobile/themes/themerootsdir.txt");
#elif defined(Q_OS_UNIX)
const QString rootPathsFile = "/usr/local/hb/theme/themerootsdir.txt";
#endif
// Standard theme root dirs
-extern const char *coreResourcesRootDir;
+extern const char *CoreResourcesRootDir;
// WARNING: This API is at prototype level and shouldn't be used before
// the resource fetching with theming is fully implemented
class HbStandardDirs
--- a/src/hbcore/core/hbstring_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbstring_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -364,7 +364,7 @@
if(ptr)
return QString(ptr, data->mLength);
else {
- // TODO: this should return QString() but currently it causes wierd behaviour.
+ // TODO: this should return QString() but currently it causes weird behaviour.
// Seems some clients assume it returns "".
return QString("");
}
@@ -469,7 +469,7 @@
}
HbStringData* data = getStringData(mMemoryType, mDataOffset, mShared);
- HbStringData* otherData = getStringData(other.mMemoryType, other.mDataOffset, other.mShared);;
+ HbStringData* otherData = getStringData(other.mMemoryType, other.mDataOffset, other.mShared);
if (data->mLength != otherData->mLength) {
return false;
--- a/src/hbcore/core/hbstringdata_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbstringdata_p.h Thu May 27 13:10:59 2010 +0300
@@ -32,11 +32,12 @@
template<typename T>
T * getAddress(HbMemoryManager::MemoryType type, int offset, bool shared)
{
- T * data = 0;
- if( shared == true )
- data = HbMemoryUtils::getAddress<T>( HbMemoryManager::SharedMemory, offset );
- else
- data = HbMemoryUtils::getAddress<T>( type, offset );
+ T *data = 0;
+ if( shared == true ) {
+ data = HbMemoryUtils::getAddress<T>(HbMemoryManager::SharedMemory, offset);
+ } else {
+ data = HbMemoryUtils::getAddress<T>(type, offset);
+ }
return data;
}
--- a/src/hbcore/core/hbstringvector_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbstringvector_p.h Thu May 27 13:10:59 2010 +0300
@@ -34,7 +34,7 @@
class HB_CORE_PRIVATE_EXPORT HbStringVector : public HbVector<HbString>
{
public:
- HbStringVector( HbMemoryManager::MemoryType memoryType ): HbVector<HbString>( memoryType )
+ HbStringVector( HbMemoryManager::MemoryType memoryType ): HbVector<HbString>(memoryType)
{
}
@@ -46,6 +46,7 @@
if ( QString(*iter).compare(str, cs) == 0 ) {
return true;
}
+ iter++;
}
return false;
}
@@ -64,8 +65,7 @@
}
++index;
}
- }
- else{
+ } else {
return true;
}
return ( index != this->size() );
--- a/src/hbcore/core/hbthemeindex.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbthemeindex.cpp Thu May 27 13:10:59 2010 +0300
@@ -23,8 +23,8 @@
**
****************************************************************************/
+#include "hbthemeindex_p.h"
#include <QDebug>
-#include "hbthemeindex_p.h"
#ifndef HB_BOOTSTRAPPED
#include "hbthemeclient_p.h"
#include "hbinstance.h"
@@ -44,7 +44,7 @@
{
#ifndef HB_BOOTSTRAPPED
#ifdef THEME_INDEX_TRACES
- qDebug() << "HbThemeIndexResource::getResourceData(: get item for" << resourceName.toUtf8();
+ qDebug() << "HbThemeIndexResource::getResourceData(), resourceName: " << resourceName;
#endif
// Theme index tables are always valid in shared memory
@@ -87,8 +87,9 @@
// Base wasn't locked, next check operator theme in C-drive
info = HbThemeUtils::getThemeIndexInfo(OperatorC);
if (info.themeIndexOffset > 0) {
- const char *operatorCAddress = HbMemoryUtils::getAddress<char>(HbMemoryManager::SharedMemory,
- info.themeIndexOffset);
+ const char *operatorCAddress =
+ HbMemoryUtils::getAddress<char>(HbMemoryManager::SharedMemory,
+ info.themeIndexOffset);
HbThemeIndex operatorCIndex(operatorCAddress);
const HbThemeIndexItemData *operatorCItemData = operatorCIndex.getItemData(resourceName);
@@ -104,8 +105,9 @@
// Not found from operator theme in C-drive, next check operator theme in ROM
info = HbThemeUtils::getThemeIndexInfo(OperatorROM);
if (info.themeIndexOffset > 0) {
- const char *operatorZAddress = HbMemoryUtils::getAddress<char>(HbMemoryManager::SharedMemory,
- info.themeIndexOffset);
+ const char *operatorZAddress =
+ HbMemoryUtils::getAddress<char>(HbMemoryManager::SharedMemory,
+ info.themeIndexOffset);
HbThemeIndex operatorZIndex(operatorZAddress);
const HbThemeIndexItemData *operatorZItemData = operatorZIndex.getItemData(resourceName);
@@ -121,10 +123,12 @@
// Not found from operator themes, try active theme
info = HbThemeUtils::getThemeIndexInfo(ActiveTheme);
if (info.themeIndexOffset > 0) {
- const char *activeThemeAddress = HbMemoryUtils::getAddress<char>(HbMemoryManager::SharedMemory,
- info.themeIndexOffset);
+ const char *activeThemeAddress =
+ HbMemoryUtils::getAddress<char>(HbMemoryManager::SharedMemory,
+ info.themeIndexOffset);
HbThemeIndex activeThemeIndex(activeThemeAddress);
- const HbThemeIndexItemData *activeThemeItemData = activeThemeIndex.getItemData(resourceName);
+ const HbThemeIndexItemData *activeThemeItemData =
+ activeThemeIndex.getItemData(resourceName);
if (activeThemeItemData) { // Found, use it
type = ActiveTheme;
@@ -244,12 +248,12 @@
}
case HbThemeIndexItemData::AxmlItem:
{
- fullName = fullName + "/animations/" + themeName + "/" + resourceName;
+ fullName = fullName + "/animations/" + themeName + '/' + resourceName;
break;
}
case HbThemeIndexItemData::FxmlItem:
{
- fullName = fullName + "/effects/" + themeName + "/" + resourceName;
+ fullName = fullName + "/effects/" + themeName + '/' + resourceName;
break;
}
default:
@@ -271,47 +275,56 @@
switch (data->mirroredItemType) {
case HbThemeIndexItemData::SvgItem:
{
- fullName = fullName + "/icons/" + themeName + "/scalable/mirrored/" + resourceName + ".svg";
+ fullName = fullName + "/icons/" + themeName + "/scalable/mirrored/"
+ + resourceName + ".svg";
break;
}
case HbThemeIndexItemData::PngItem:
{
- fullName = fullName + "/icons/" + themeName + "/pixmap/mirrored/" + resourceName + ".png";
+ fullName = fullName + "/icons/" + themeName + "/pixmap/mirrored/"
+ + resourceName + ".png";
break;
}
case HbThemeIndexItemData::MngItem:
{
- fullName = fullName + "/icons/" + themeName + "/pixmap/mirrored/" + resourceName + ".mng";
+ fullName = fullName + "/icons/" + themeName + "/pixmap/mirrored/"
+ + resourceName + ".mng";
break;
}
case HbThemeIndexItemData::GifItem:
{
- fullName = fullName + "/icons/" + themeName + "/pixmap/mirrored/" + resourceName + ".gif";
+ fullName = fullName + "/icons/" + themeName + "/pixmap/mirrored/"
+ + resourceName + ".gif";
break;
}
case HbThemeIndexItemData::XpmItem:
{
- fullName = fullName + "/icons/" + themeName + "/pixmap/mirrored/" + resourceName + ".xpm";
+ fullName = fullName + "/icons/" + themeName + "/pixmap/mirrored/"
+ + resourceName + ".xpm";
break;
}
case HbThemeIndexItemData::JpgItem:
{
- fullName = fullName + "/icons/" + themeName + "/pixmap/mirrored/" + resourceName + ".jpg";
+ fullName = fullName + "/icons/" + themeName + "/pixmap/mirrored/"
+ + resourceName + ".jpg";
break;
}
case HbThemeIndexItemData::NvgItem:
{
- fullName = fullName + "/icons/" + themeName + "/scalable/mirrored/" + resourceName + ".nvg";
+ fullName = fullName + "/icons/" + themeName + "/scalable/mirrored/"
+ + resourceName + ".nvg";
break;
}
case HbThemeIndexItemData::SvgzItem:
{
- fullName = fullName + "/icons/" + themeName + "/scalable/mirrored/" + resourceName + ".svgz";
+ fullName = fullName + "/icons/" + themeName + "/scalable/mirrored/"
+ + resourceName + ".svgz";
break;
}
case HbThemeIndexItemData::QpicItem:
{
- fullName = fullName + "/icons/" + themeName + "/pixmap/mirrored/" + resourceName + ".qpic";
+ fullName = fullName + "/icons/" + themeName + "/pixmap/mirrored/"
+ + resourceName + ".qpic";
break;
}
default:
@@ -344,9 +357,11 @@
{
//int version = *(reinterpret_cast<const int *>(mBaseAddress));
// Assumes version 1 for now
- const HbThemeIndexHeaderV1 *header = reinterpret_cast<const HbThemeIndexHeaderV1 *>(mBaseAddress);
+ const HbThemeIndexHeaderV1 *header =
+ reinterpret_cast<const HbThemeIndexHeaderV1 *>(mBaseAddress);
mItemCount = header->itemCount;
- mThemeItemDataArray = reinterpret_cast<const HbThemeIndexItemData *>(mBaseAddress + sizeof(HbThemeIndexHeaderV1));
+ mThemeItemDataArray = reinterpret_cast<const HbThemeIndexItemData *>
+ (mBaseAddress + sizeof(HbThemeIndexHeaderV1));
initialized = true;
}
@@ -381,7 +396,7 @@
// binary search
while (begin <= end) {
- int mid = begin + (end-begin)/2;
+ int mid = begin + (end - begin) / 2;
if (mThemeItemDataArray[mid].itemNameHash == hashValue) {
retItem = &mThemeItemDataArray[mid];
--- a/src/hbcore/core/hbthemeindex_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbthemeindex_p.h Thu May 27 13:10:59 2010 +0300
@@ -63,56 +63,54 @@
bool initialized;
};
-
struct HbThemeIndexItemData
- {
- enum Flag {
- Default = 0x00,
- Mirrorable = 0x01,
- Locked = 0x02
- };
+{
+ enum Flag {
+ Default = 0x00,
+ Mirrorable = 0x01,
+ Locked = 0x02
+ };
- enum Type {
- NotDefined = 0,
- SvgItem = 1, // .svg
- PngItem = 2, // .png
- MngItem = 3, // .mng
- GifItem = 4, // .gif
- XpmItem = 5, // .xpm
- JpgItem = 6, // .jpg
- NvgItem = 7, // .nvg
- SvgzItem = 8, // .svgz
- QpicItem = 9, // .qpic
- FxmlItem = 10, // .fxml
- AxmlItem = 11 // .axml
- };
-
- HbThemeIndexItemData() :
- itemType(NotDefined),
- itemNameHash(0),
- flags(Default),
- mirroredItemType(NotDefined),
- defaultWidth(-1),
- defaultHeight(-1),
- mirroredWidth(-1),
- mirroredHeight(-1) {}
-
- quint32 itemType; // from enum Type
- quint32 itemNameHash;
- quint32 flags; // from enum Flag
-
- // These will go to every themable item, but overhead is still small
- // because most of the items are icons
- quint32 mirroredItemType; // from enum Type
- qint32 defaultWidth;
- qint32 defaultHeight;
- qint32 mirroredWidth;
- qint32 mirroredHeight;
+ enum Type {
+ NotDefined = 0,
+ SvgItem = 1, // .svg
+ PngItem = 2, // .png
+ MngItem = 3, // .mng
+ GifItem = 4, // .gif
+ XpmItem = 5, // .xpm
+ JpgItem = 6, // .jpg
+ NvgItem = 7, // .nvg
+ SvgzItem = 8, // .svgz
+ QpicItem = 9, // .qpic
+ FxmlItem = 10, // .fxml
+ AxmlItem = 11 // .axml
};
+ HbThemeIndexItemData() :
+ itemType(NotDefined),
+ itemNameHash(0),
+ flags(Default),
+ mirroredItemType(NotDefined),
+ defaultWidth(-1),
+ defaultHeight(-1),
+ mirroredWidth(-1),
+ mirroredHeight(-1) {}
+
+ quint32 itemType; // from enum Type
+ quint32 itemNameHash;
+ quint32 flags; // from enum Flag
+
+ // These will go to every themable item, but overhead is still small
+ // because most of the items are icons
+ quint32 mirroredItemType; // from enum Type
+ qint32 defaultWidth;
+ qint32 defaultHeight;
+ qint32 mirroredWidth;
+ qint32 mirroredHeight;
+};
// Helper class for getting data out of HbThemeIndexItemData
-class HbThemeIndexResource
+class HB_AUTOTEST_EXPORT HbThemeIndexResource
{
public:
HbThemeIndexResource(const QString &resourceName);
--- a/src/hbcore/core/hbthemeperf_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbthemeperf_p.h Thu May 27 13:10:59 2010 +0300
@@ -36,10 +36,10 @@
#else
#include <QDebug>
#define HB_START_SHAREDMEMORY_PRINT(str) unsigned int startMemory = manager->memoryConsumed(); \
- qDebug() << str << "SharedMemory Consumed" << "In" << Q_FUNC_INFO << startMemory;
+ qDebug() << str << "SharedMemory Consumed" << "In" << Q_FUNC_INFO << startMemory;
#define HB_END_SHAREDMEMORY_PRINT(str) unsigned int endMemory = manager->memoryConsumed(); \
- qDebug() << str << "SharedMemory Consumed" << "In" << Q_FUNC_INFO << endMemory; \
- qDebug() << " Difference : " << endMemory - startMemory;
+ qDebug() << str << "SharedMemory Consumed" << "In" << Q_FUNC_INFO << endMemory; \
+ qDebug() << " Difference : " << endMemory - startMemory;
#endif // HB_PERF_MEM
@@ -69,9 +69,9 @@
#else
#include <QDateTime>
#include <QDebug>
-#define HB_START_TIME() QTime time; \
- time.start();
-#define HB_END_TIME(str,val) qDebug() << str << val << " time in ms: " << time.elapsed() << "ms";
+#define HB_START_TIME() QTime time; \
+ time.start();
+#define HB_END_TIME(str,val) qDebug() << str << val << " time in ms: " << time.elapsed() << "ms";
#endif //HB_PERF_TIME
--- a/src/hbcore/core/hbvariant_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbvariant_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -85,7 +85,7 @@
newData->setDataType(data->dataType());
if ( data->dataType() == String ) {
- HbSmartOffset dataOffset(manager->alloc( data->stringSize*sizeof(QChar)));
+ HbSmartOffset dataOffset(manager->alloc(data->stringSize * sizeof(QChar)));
#ifdef HB_BIN_CSS
HbCssConverterUtils::registerOffsetHolder(&(newData->mData.offset));
#endif
@@ -108,7 +108,6 @@
}
}
-
/*
* C'tor
*/
@@ -185,7 +184,6 @@
#endif
}
-
/*
* C'tor taking QColor
*/
@@ -203,14 +201,14 @@
/*
* copy C'tor
*/
-
HbVariant::HbVariant( const HbVariant &other )
{
mMemoryType = other.mMemoryType;
GET_MEMORY_MANAGER(other.mMemoryType)
- HbVariantData* data = HbMemoryUtils::getAddress<HbVariantData>( mMemoryType, other.mDataOffset );
+ HbVariantData *data = HbMemoryUtils::getAddress<HbVariantData>(mMemoryType,
+ other.mDataOffset);
mDataOffset = other.mDataOffset;
if ( !manager->isWritable() || other.mShared == true ) {
@@ -235,13 +233,14 @@
{
GET_MEMORY_MANAGER(mMemoryType);
// if the memory where the variant is not writable it means it's client process, so do nothing
- if( !manager->isWritable() )
+ if(!manager->isWritable() ) {
return;
- HbVariantData *data= getAddress<HbVariantData>( mMemoryType, mDataOffset, mShared );
- if( mShared != true && !data->mRef.deref() ) {
+ }
+ HbVariantData *data = getAddress<HbVariantData>(mMemoryType, mDataOffset, mShared);
+ if(!mShared&& !data->mRef.deref()) {
clear();
data->~HbVariantData();
- HbMemoryUtils::freeMemory( mMemoryType, mDataOffset );
+ HbMemoryUtils::freeMemory(mMemoryType, mDataOffset);
}
#ifdef HB_BIN_CSS
@@ -299,11 +298,11 @@
*/
QString HbVariant::getString() const
{
- HbVariantData *data = getAddress<HbVariantData>( mMemoryType, mDataOffset, mShared );
+ HbVariantData *data = getAddress<HbVariantData>(mMemoryType, mDataOffset, mShared);
if (data->mData.offset != -1) {
- QChar* dataPtr = getAddress<QChar>( mMemoryType, data->mData.offset, mShared );
- return QString::fromRawData( dataPtr, data->stringSize );
+ QChar *dataPtr = getAddress<QChar>(mMemoryType, data->mData.offset, mShared);
+ return QString::fromRawData(dataPtr, data->stringSize);
} else { // data->mData.offset == -1 is empty String Variant.
return QString("");
}
@@ -436,7 +435,7 @@
/*
* = operator taking int
*/
-HbVariant& HbVariant::operator=(int val)
+HbVariant & HbVariant::operator=(int val)
{
detach(); // This will update the mDataOffset to new location if ref > 1.
@@ -450,7 +449,7 @@
/*
* = operator taking double
*/
-HbVariant& HbVariant::operator=(double val)
+HbVariant & HbVariant::operator=(double val)
{
detach(); // This will update the mDataOffset to new location if ref > 1.
@@ -464,7 +463,7 @@
/*
* = operator taking QString
*/
-HbVariant& HbVariant::operator=(const QString& val)
+HbVariant & HbVariant::operator=(const QString &val)
{
detach(); // This will update the mDataOffset to new location if ref > 1.
fillStringData(val.constData(), val.length());
@@ -474,7 +473,7 @@
/*
* = operator taking HbString
*/
-HbVariant& HbVariant::operator=(const HbString& val)
+HbVariant & HbVariant::operator=(const HbString &val)
{
detach(); // This will update the mDataOffset to new location if ref > 1.
fillStringData(val.constData(), val.length());
@@ -484,7 +483,7 @@
/*
* = operator taking QColor
*/
-HbVariant& HbVariant::operator=(const QColor& col)
+HbVariant &HbVariant::operator=(const QColor &col)
{
detach(); // This will update the mDataOffset to new location if ref > 1.
fillColorData(col);
@@ -492,7 +491,7 @@
}
/*
-* = operator taking QStringList
+* = operator taking QStringList
*/
HbVariant& HbVariant::operator=(const QStringList& /*strList*/)
{
@@ -503,31 +502,28 @@
/*
* = operator taking HbVariant
*/
-HbVariant& HbVariant::operator=(const HbVariant &other)
+HbVariant &HbVariant::operator=(const HbVariant &other)
{
GET_MEMORY_MANAGER(mMemoryType)
if(!manager->isWritable()) {
Q_ASSERT(false);
}
- HbVariantData *otherData = getAddress<HbVariantData>(other.mMemoryType, other.mDataOffset, other.mShared);
+ HbVariantData *otherData = getAddress<HbVariantData>(other.mMemoryType, other.mDataOffset,
+ other.mShared);
HbVariantData *data = getAddress<HbVariantData>(mMemoryType, mDataOffset, mShared);
if(other.mMemoryType != mMemoryType || other.mShared == true) {
- if(mShared != true) {
- if(data->mRef == 1) {
- clear();
- data->~HbVariantData();
- HbMemoryUtils::freeMemory(mMemoryType, mDataOffset);
- }else {
- data->mRef.deref();
- }
+ if(!mShared && !data->mRef.deref()) {
+ clear();
+ data->~HbVariantData();
+ HbMemoryUtils::freeMemory(mMemoryType, mDataOffset);
}
mShared = true;
mMemoryType = HbMemoryManager::HeapMemory;
} else {
otherData->mRef.ref();
- if(mShared != true && !data->mRef.deref() ) {
+ if(!mShared&& !data->mRef.deref()) {
clear();
data->~HbVariantData();
HbMemoryUtils::freeMemory(mMemoryType, mDataOffset);
@@ -536,7 +532,8 @@
mMemoryType = other.mMemoryType;
}
mDataOffset = other.mDataOffset;
- Q_ASSERT(mMemoryType == HbMemoryManager::SharedMemory || mMemoryType == HbMemoryManager::HeapMemory);
+ Q_ASSERT(mMemoryType == HbMemoryManager::SharedMemory
+ || mMemoryType == HbMemoryManager::HeapMemory);
return *this;
}
@@ -695,7 +692,6 @@
}
}
-
/*
* clears the variant, frees any alocated memory
*/
--- a/src/hbcore/core/hbvariant_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbvariant_p.h Thu May 27 13:10:59 2010 +0300
@@ -102,7 +102,7 @@
int toInt() const;
QString toString() const;
QColor toColor() const;
- QStringList toStringList () const;
+ QStringList toStringList() const;
double toDouble() const;
HbVariant & operator=( int val );
--- a/src/hbcore/core/hbvector_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/core/hbvector_p.h Thu May 27 13:10:59 2010 +0300
@@ -275,7 +275,7 @@
// if the memory where the vector is not writable it means it's client process, so do nothing
if(!mData || !manager->isWritable())
return;
- if(mShared != true && !mData->mRef.deref()) {
+ if(!mShared && !mData->mRef.deref()) {
destroyData();
}
@@ -553,12 +553,8 @@
// and decision making is required very clear for all the scenarios.
if (other.mMemoryType != mMemoryType || other.mShared == true || mShared == true )
{
- if(mShared != true) {
- if(mData->mRef == 1) {
- destroyData();
- }else {
- mData->mRef.deref();
- }
+ if(!mShared && !mData->mRef.deref()) {
+ destroyData();
}
mShared = true;
// Here assumption is that two memory type will be different in
@@ -627,8 +623,8 @@
HbVectorData(mMemoryType, oldSize, newSize);
mData = newData;
offset.release();
- if(!mShared) {
- tempData->mRef.deref();
+ if(!mShared && !tempData->mRef.deref()) {
+ destroyData();
}
if(QTypeInfo<value_type>::isComplex) {
--- a/src/hbcore/cssparser/hbcssparser_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/cssparser/hbcssparser_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -2311,6 +2311,8 @@
}
}
+const uint CLASS_HASH = qHash(QString("class"));
+
int StyleSelector::basicSelectorMatches(const BasicSelector &sel, NodePtr node, bool nameCheckNeeded) const
{
int matchLevel = 0;
@@ -2322,7 +2324,7 @@
for (int i = 0; i < sel.attributeSelectors.count(); ++i) {
const AttributeSelector &a = sel.attributeSelectors.at(i);
- if (a.name == QLatin1String("class")) {
+ if (a.nameHash == CLASS_HASH) {
elementName = a.value;
}
if (!attributeMatches(node, a)) {
@@ -3133,6 +3135,7 @@
onceMore = true;
AttributeSelector a(basicSel->memoryType);
a.name = QLatin1String("class");
+ a.nameHash = qHash(a.name);
a.valueMatchCriterium = AttributeSelector::MatchContains;
if (!parseClass(&a.value)) return false;
#ifdef CSS_PARSER_TRACES
@@ -3188,6 +3191,7 @@
if (!next(IDENT)) return false;
attr->name = lexem();
+ attr->nameHash = qHash(attr->name);
skipSpace();
if (test(EXCLAMATION_SYM)) {
--- a/src/hbcore/cssparser/hbcssparser_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/cssparser/hbcssparser_p.h Thu May 27 13:10:59 2010 +0300
@@ -648,12 +648,14 @@
inline AttributeSelector(HbMemoryManager::MemoryType type = HbMemoryManager::HeapMemory)
: memoryType(type),
name(type),
+ nameHash(0),
value(type),
valueMatchCriterium(NoMatch),
negated(false)
{}
HbMemoryManager::MemoryType memoryType;
HbString name;
+ uint nameHash;
HbString value;
ValueMatchType valueMatchCriterium;
bool negated;
--- a/src/hbcore/cssparser/hblayeredstyleloader_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/cssparser/hblayeredstyleloader_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -192,6 +192,8 @@
#ifdef LAYEREDSTYLELOADER_DEBUG
qDebug("Handle returned: %x", handle);
#endif
+
+ updateLayersListIfRequired(priority);
return handle;
}
@@ -224,6 +226,7 @@
}
}
+ updateLayersListIfRequired(priority);
return handle;
}
@@ -395,9 +398,9 @@
loader->loadCss(widget);
QVector<QVector<HbCss::WeightedRule> > weightedRulesList;
- HbLayeredStyleLoader *allStack = getStack(Concern_All);
+ HbLayeredStyleLoader *allStack = mConcern == Concern_All ? 0 : getStack(Concern_All);
- QListIterator<LayerPriority> iter(LayerList());
+ QListIterator<LayerPriority> iter(mUsedLayers);
while (iter.hasNext()) {
LayerPriority priority = iter.next();
QMap<LayerPriority, Layer>::const_iterator it = mStyleLayers.constFind(priority);
@@ -433,9 +436,9 @@
loader->loadCss(widget);
QVector<QVector<HbCss::WeightedDeclaration> > weightedDeclsList;
- HbLayeredStyleLoader *allStack = getStack(Concern_All);
+ HbLayeredStyleLoader *allStack = mConcern == Concern_All ? 0 : getStack(Concern_All);
- QListIterator<LayerPriority> iter(LayerList());
+ QListIterator<LayerPriority> iter(mUsedLayers);
while (iter.hasNext()) {
LayerPriority priority = iter.next();
QMap<LayerPriority, Layer>::const_iterator it = mStyleLayers.constFind(priority);
@@ -481,9 +484,9 @@
loader->loadCss(widget);
QVector<QVector<HbCss::WeightedRule> > weightedRulesList;
- HbLayeredStyleLoader *allStack = getStack(Concern_All);
+ HbLayeredStyleLoader *allStack = mConcern == Concern_All ? 0 : getStack(Concern_All);
- QListIterator<LayerPriority> iter(LayerList());
+ QListIterator<LayerPriority> iter(mUsedLayers);
while (iter.hasNext()) {
LayerPriority priority = iter.next();
QMap<LayerPriority, Layer>::const_iterator it = mStyleLayers.constFind(priority);
@@ -527,9 +530,9 @@
*/
void HbLayeredStyleLoader::variableRuleSets(QHash<QString, HbCss::Declaration> *variables) const
{
- HbLayeredStyleLoader *allStack = getStack(Concern_All);
+ HbLayeredStyleLoader *allStack = mConcern == Concern_All ? 0 : getStack(Concern_All);
- QListIterator<LayerPriority> iter(LayerList());
+ QListIterator<LayerPriority> iter(mUsedLayers);
while (iter.hasNext()) {
LayerPriority priority = iter.next();
QMap<LayerPriority, Layer>::const_iterator it = mStyleLayers.constFind(priority);
@@ -573,26 +576,33 @@
/*!
- Gets the list of all priority layers in use in this or the 'All' stack
+ Updates the cached list of used layers to include the specified layer.
+ If this is the All stack, all other stacks' used lists are also updated
+ to include this layer.
- \return List of all layer priorities in use
+ \param The LayerPriority to add if not already present
*/
-QList<HbLayeredStyleLoader::LayerPriority> HbLayeredStyleLoader::LayerList() const
+void HbLayeredStyleLoader::updateLayersListIfRequired(LayerPriority priority)
{
- QList<LayerPriority> mergedLayers = mStyleLayers.keys();
- HbLayeredStyleLoader *allStack = getStack(Concern_All);
- if (allStack) {
- QList<LayerPriority> allLayers = allStack->mStyleLayers.keys();
- for (int i=0; i<allLayers.count(); i++) {
- const LayerPriority &layer = allLayers.at(i);
- if (!mergedLayers.contains(layer)) {
- mergedLayers.append(layer);
+ if (mUsedLayers.contains(priority)) {
+ return;
+ }
+ if (mConcern != Concern_All) {
+ mUsedLayers.append(priority);
+ qSort(mUsedLayers);
+ } else {
+ ConcernStacks *stacks = globalConcernStacks();
+ if (stacks) {
+ QMap<Concern, HbLayeredStyleLoader>::iterator iter = stacks->begin();
+ while (iter != stacks->end()) {
+ if (!iter->mUsedLayers.contains(priority)) {
+ iter->mUsedLayers.append(priority);
+ qSort(iter->mUsedLayers);
+ }
+ ++iter;
}
}
}
- qSort(mergedLayers);
-
- return mergedLayers;
}
--- a/src/hbcore/cssparser/hblayeredstyleloader_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/cssparser/hblayeredstyleloader_p.h Thu May 27 13:10:59 2010 +0300
@@ -84,9 +84,12 @@
HbVector<HbCss::StyleRule> styleRulesForNode(HbStyleSelector::NodePtr node,
const Qt::Orientation orientation) const;
void variableRuleSets(QHash<QString, HbCss::Declaration> *variables) const;
+
+protected:
+ void updateLayersListIfRequired(LayerPriority priority);
+ QList<LayerPriority> mUsedLayers;
private:
- QList<LayerPriority> LayerList() const;
bool loadBinary(const QString& fileName,HbCss::StyleSheet *styleSheet);
bool saveBinary(const QString& fileName,HbCss::StyleSheet *styleSheet);
void saveDeclarations(QDataStream & stream,HbVector<HbCss::Declaration>* decls );
--- a/src/hbcore/cssparser/hbstyleloader.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/cssparser/hbstyleloader.cpp Thu May 27 13:10:59 2010 +0300
@@ -48,6 +48,10 @@
are at least equally specific and define the same properties will override those equivalent
platform property definitions.
+ For any stylesheet registered that correspond to properties that are not defined by the
+ platform, the set values will not be reset when the corresponding stylesheet is
+ unregister.
+
In order to remove stylesheets or layout definitions that were previously registered,
the same filename should be provided to the corresponding unregister method. Again,
a repolish is needed in order to detect the changes.
--- a/src/hbcore/cssparser/hbstyleselector_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/cssparser/hbstyleselector_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -67,6 +67,8 @@
return level;
}
+const uint CLASS_HASH = qHash(QString("class"));
+
bool HbStyleSelector::attributeMatches(NodePtr node, const HbCss::AttributeSelector &attr) const
{
if (isNullNode(node)) {
@@ -78,8 +80,8 @@
QGraphicsWidget *widget = WIDGET(node);
- QHash<QString, AttributeValue> &cache = mAttributeCache[widget];
- QHash<QString, AttributeValue>::const_iterator cacheIt = cache.constFind(attr.name);
+ QHash<uint, AttributeValue> &cache = mAttributeCache[widget];
+ QHash<uint, AttributeValue>::const_iterator cacheIt = cache.constFind(attr.nameHash);
if (cacheIt != cache.constEnd()) {
aVal = cacheIt.value();
} else {
@@ -87,11 +89,10 @@
QVariant value = widget->property(attr.name.toLatin1());
if (!value.isValid()) {
- if (attr.name == QLatin1String("class")) {
+ if (attr.nameHash == CLASS_HASH) {
QString className = QString::fromLatin1(metaObject
->className());
- if (className.contains(QLatin1Char(':')))
- className.replace(QLatin1Char(':'), QLatin1Char('-'));
+ className.replace(QLatin1Char(':'), QLatin1Char('-'));
aVal.mValue1 = className;
} else {
// Requested property not found.
@@ -117,7 +118,7 @@
aVal.mValue2 = metaProperty.enumerator().valueToKey(value.toInt());
}
}
- cache[attr.name] = aVal;
+ cache[attr.nameHash] = aVal;
}
bool match(false);
--- a/src/hbcore/cssparser/hbstyleselector_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/cssparser/hbstyleselector_p.h Thu May 27 13:10:59 2010 +0300
@@ -52,7 +52,7 @@
QString mValue2;
bool mEmptyValue;
};
- mutable QHash<const QGraphicsWidget *, QHash<QString, AttributeValue> > mAttributeCache;
+ mutable QHash<const QGraphicsWidget *, QHash<uint, AttributeValue> > mAttributeCache;
};
--- a/src/hbcore/decorators/hbindicatorbutton.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/decorators/hbindicatorbutton.cpp Thu May 27 13:10:59 2010 +0300
@@ -228,9 +228,13 @@
void HbIndicatorButton::handleRelease()
{
Q_D(HbIndicatorButton);
- d->showIndicatorMenu();
+ if( isUnderMouse() ) {
+ d->showIndicatorMenu();
+ }
#ifdef HB_EFFECTS
HbEffect::start(this, "decorator", "released");
#endif
updatePrimitives();
}
+
+
--- a/src/hbcore/decorators/hbindicatorgroup.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/decorators/hbindicatorgroup.cpp Thu May 27 13:10:59 2010 +0300
@@ -30,6 +30,7 @@
#include "hbstyleoptionindicatorgroup_p.h"
#include "hbiconitem.h"
+#include "hbiconanimator.h"
#if defined(Q_OS_SYMBIAN)
#include "hbindicatorsym_p.h"
@@ -280,6 +281,17 @@
d->delayedConstruction();
}
+void HbIndicatorGroup::currentViewChanged(HbView *view)
+{
+ Q_D(HbIndicatorGroup);
+ for (int i = 0; i < d->mIcons.size(); ++i) {
+ HbIconItem *iconItem = dynamic_cast<HbIconItem *>(d->mIcons.at(i));
+ if (iconItem) {
+ iconItem->animator().setOwnerView(view);
+ }
+ }
+}
+
void HbIndicatorGroup::createPrimitives()
{
Q_D(HbIndicatorGroup);
--- a/src/hbcore/decorators/hbindicatorgroup_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/decorators/hbindicatorgroup_p.h Thu May 27 13:10:59 2010 +0300
@@ -36,6 +36,7 @@
class HbIndicatorGroupPrivate;
class HbStyleOptionIndicatorGroup;
struct IndicatorClientInfo;
+class HbView;
class HB_CORE_PRIVATE_EXPORT HbIndicatorGroup : public HbWidget
{
@@ -56,6 +57,8 @@
void delayedConstruction();
+ void currentViewChanged(HbView *view);
+
public slots:
virtual void createPrimitives();
virtual void updatePrimitives();
--- a/src/hbcore/decorators/hbstatusbar.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/decorators/hbstatusbar.cpp Thu May 27 13:10:59 2010 +0300
@@ -53,7 +53,6 @@
*/
HbStatusBarPrivate::HbStatusBarPrivate() :
- mTimeText(),
mTimeTextItem(0),
mSignalIndicator(0),
mBatteryIndicator(0),
@@ -102,9 +101,17 @@
q, SIGNAL(activated(const QList<IndicatorClientInfo> &)));
q->connect(mIndicatorPrivate, SIGNAL(deactivated(const QList<IndicatorClientInfo> &)),
q, SIGNAL(deactivated(const QList<IndicatorClientInfo> &)));
+ q->connect(mIndicatorPrivate, SIGNAL(allActivated(const QList<IndicatorClientInfo> &)),
+ q, SIGNAL(activated(const QList<IndicatorClientInfo> &)));
mClockTimerId = q->startTimer(clockUpdateDelay);
mIndicatorPrivate->startListen();
+
+ q->grabGesture(Qt::TapGesture);
+ q->grabGesture(Qt::TapAndHoldGesture);
+ q->grabGesture(Qt::PanGesture);
+ q->grabGesture(Qt::SwipeGesture);
+ q->grabGesture(Qt::PinchGesture);
}
void HbStatusBarPrivate::init()
@@ -225,6 +232,9 @@
return;
}
+ d->mNotificationIndicatorGroup->currentViewChanged(view);
+ d->mSettingsIndicatorGroup->currentViewChanged(view);
+
// only do repolish if properties have changed
if (d->mPreviousProperties != view->viewFlags()) {
d->mPreviousProperties = view->viewFlags();
@@ -286,3 +296,13 @@
}
}
}
+
+/*!
+ \reimp
+*/
+void HbStatusBar::gestureEvent(QGestureEvent *event)
+{
+ Q_UNUSED(event);
+ // all gesture events accepted by default
+}
+
--- a/src/hbcore/decorators/hbstatusbar_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/decorators/hbstatusbar_p.h Thu May 27 13:10:59 2010 +0300
@@ -62,6 +62,7 @@
protected:
void initStyleOption(HbStyleOptionStatusBar *option) const;
void timerEvent(QTimerEvent *event);
+ void gestureEvent(QGestureEvent* e);
private:
Q_DECLARE_PRIVATE_D(d_ptr, HbStatusBar)
--- a/src/hbcore/decorators/hbtitlebar.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/decorators/hbtitlebar.cpp Thu May 27 13:10:59 2010 +0300
@@ -77,6 +77,8 @@
mIndicatorButton, SLOT(deactivate(const QList<IndicatorClientInfo> &)));
q->connect(mMainWindow, SIGNAL(currentViewChanged(HbView*)), q, SLOT(currentViewChanged(HbView*)));
q->connect(mDefaultNavigationAction, SIGNAL(triggered()), qApp, SLOT(quit()));
+
+ q->setFlag(QGraphicsItem::ItemIsPanel, true);
}
void HbTitleBarPrivate::init()
--- a/src/hbcore/devicedialogbase/devicedialogbase.pri Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogbase.pri Thu May 27 13:10:59 2010 +0300
@@ -50,6 +50,8 @@
PRIVATE_HEADERS += $$PWD/hbindicatorsym_p.h
PRIVATE_HEADERS += $$PWD/hbsymbianvariantconverter_p.h
PRIVATE_HEADERS += $$PWD/hbdeleteguardsymbian_p.h
+PRIVATE_HEADERS += $$PWD/hbdevicedialogconnecthelper_p.h
+PRIVATE_HEADERS += $$PWD/hbdevicedialogconnecthelper_p_p.h
SOURCES += $$PWD/hbsymbianvariant.cpp
SOURCES += $$PWD/hbdevicedialogsymbian.cpp
@@ -61,6 +63,7 @@
SOURCES += $$PWD/hbsymbianvariantconverter.cpp
SOURCES += $$PWD/hbtextresolversymbian.cpp
SOURCES += $$PWD/hbdeleteguardsymbian.cpp
+SOURCES += $$PWD/hbdevicedialogconnecthelper.cpp
}
!symbian {
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogmanager.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogmanager.cpp Thu May 27 13:10:59 2010 +0300
@@ -112,6 +112,16 @@
/*!
\internal
+ Publish current orientation to PS-key
+ Returns error code if updating fails. 0 if updating succeeds.
+*/
+int HbDeviceDialogManager::publishOrientation(int orientation)
+{
+ return d->publishOrientation(orientation);
+}
+
+/*!
+ \internal
Instructs HbDeviceDialogManager to close a concrete device dialog widget.
Widget is identified by identifier.
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogmanager_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogmanager_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -39,7 +39,7 @@
#include <hbinstance.h>
#include <hbpopup.h>
#include <hbgraphicsscene.h>
-
+#include <hbcorepskeys_p.h>
#if defined(Q_OS_SYMBIAN)
#include <coemain.h>
#include <coecntrl.h>
@@ -130,6 +130,15 @@
mServerStatus.setStatus(HbDeviceDialogServerStatus::NoFlags);
qApp->installEventFilter(this);
init();
+#if defined(Q_OS_SYMBIAN)
+ _LIT_SECURITY_POLICY_PASS(KRdPolicy); // all pass
+ _LIT_SECURITY_POLICY_S0(KWrPolicy, KHbPsForegroundAppOrientationCategoryUid.iUid); // pass device dialog server
+
+ int error = mProperty.Define(KHbPsForegroundAppOrientationCategoryUid, KHbPsForegroundAppOrientationKey,
+ RProperty::EInt, KRdPolicy, KWrPolicy);
+ if(error == KErrNone)
+ mProperty.Attach(KHbPsForegroundAppOrientationCategoryUid, KHbPsForegroundAppOrientationKey);
+#endif
TRACE_EXIT
}
@@ -144,6 +153,7 @@
#if defined(Q_OS_SYMBIAN)
mScene->removeItem(&mMousePressCatcher);
mWindowRegion.Close();
+ mProperty.Close();
#endif
delete mIndicatorPluginManager;
TRACE_EXIT
@@ -266,13 +276,24 @@
return ret;
}
+// Publish current orientation to PS-key
+int HbDeviceDialogManagerPrivate::publishOrientation(int orientation)
+{
+#if defined(Q_OS_SYMBIAN)
+ int ret = mProperty.Set(orientation);
+ return ret;
+#else
+ Q_UNUSED(orientation)
+ return 0;
+#endif
+}
+
// Client (session) is closing
void HbDeviceDialogManagerPrivate::deviceDialogClientClosing(quintptr clientTag)
{
// Mark device dialogs launched by the client as having client (session) closed.
// Housekeeper closes these after a timeout. Dialogs without a client are allowed but
// they need to close within a timeout.
-
markNoClient(clientTag);
}
@@ -320,6 +341,7 @@
void HbDeviceDialogManagerPrivate::moveToForeground(bool foreground)
{
TRACE_ENTRY_ARGS(foreground)
+
if (foreground) {
if(!mMainWindow->isVisible()) {
mMainWindow->showFullScreen();
@@ -398,7 +420,7 @@
const HbDeviceDialogsContainer::Dialog::Flags closeCalled(
HbDeviceDialogsContainer::Dialog::CloseCalled);
const HbDeviceDialogsContainer::Dialog::Flags noFlags(0);
-
+
// Check if any notification dialogs are showing
const HbDeviceDialogsContainer::Dialog start;
bool showingNotification = mDialogs.next(start, notificationGroup|showing,
@@ -409,6 +431,18 @@
securityGroup|showing).isValid();
HbDeviceDialogsContainer::Dialog::Flags newDialogs(0);
+#if defined(Q_OS_SYMBIAN)
+ int val = 0;
+ int error = mProperty.Get(KHbPsForegroundAppOrientationCategoryUid, KHbPsForegroundAppOrientationKey, val);
+
+ if (val & KHbFixedOrientationMask) {
+ Qt::Orientation currentOrientation = (Qt::Orientation) (val & KHbOrientationMask);
+ if (currentOrientation == Qt::Vertical || currentOrientation == Qt::Horizontal) {
+ mMainWindow->setOrientation(currentOrientation, false);
+ }
+ }
+#endif
+
// Loop over not showing dialogs
HbDeviceDialogsContainer::Dialog *current = &mDialogs.next(start, noFlags,
showing | closeCalled);
@@ -453,7 +487,7 @@
const HbDeviceDialogsContainer::Dialog &nonNotificationDialog =
mDialogs.next(start, showing, notificationGroup|showing);
bool dialogsShowing = showingNotification || nonNotificationDialog.isValid();
-
+
return dialogsShowing;
}
@@ -705,15 +739,19 @@
mDialogs.remove(current);
removeRegionRect(id);
}
-
showDialogs();
setupWindowRegion();
updateStatus();
+
+ //make sure there is no fixed orientation
+ if (mDialogs.isEmpty()) {
+ mMainWindow->unsetOrientation(false);
+ }
if (!securityDialog) {
return;
}
-
+
// security or critical level active
const HbDeviceDialogsContainer::Dialog begin;
const HbDeviceDialogsContainer::Dialog::Flags securityGroup(
@@ -743,13 +781,13 @@
moreDialogs = mDialogs.next(dialog, criticalGroup|showing,
criticalGroup|showing).isValid();
}
-
+
if (showingSecurity && !moreDialogs) {
#if defined(Q_OS_SYMBIAN)
doMoveToForeground(false, ECoeWinPriorityAlwaysAtFront-1);
- mMainWindow->hide();
-#endif
- }
+ mMainWindow->hide();
+#endif
+ }
TRACE_EXIT
}
@@ -923,7 +961,7 @@
break;
}
}
-
+
// Return true if housekeeping needs to continue
return mDialogs.next(start, closeCalled, closeCalled).isValid() ||
mDialogs.next(start, noClient, noClient).isValid();
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogmanager_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogmanager_p.h Thu May 27 13:10:59 2010 +0300
@@ -50,6 +50,7 @@
// Device dialog client related API
int showDeviceDialog(HbDeviceDialogServer::DialogParameters ¶meters);
int updateDeviceDialog(int identifier, const QVariantMap ¶meters);
+ int publishOrientation(int orientation);
int closeDeviceDialog(int identifier);
void deviceDialogClientClosing(quintptr clientTag);
int activateIndicator(HbDeviceDialogServer::IndicatorParameters ¶meters);
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogmanager_p_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogmanager_p_p.h Thu May 27 13:10:59 2010 +0300
@@ -33,6 +33,7 @@
#include <QTimerEvent>
#if defined(Q_OS_SYMBIAN)
#include <e32std.h>
+#include <e32property.h>
#endif
#include "hbdevicedialogserver_p.h"
@@ -112,6 +113,7 @@
// Device dialog client related API
int showDeviceDialog(HbDeviceDialogServer::DialogParameters ¶meters);
int updateDeviceDialog(int id, const QVariantMap ¶meters);
+ int publishOrientation(int orientation);
int closeDeviceDialog(int id, bool byClient = true);
void deviceDialogClientClosing(quintptr clientTag);
int activateIndicator(HbDeviceDialogServer::IndicatorParameters ¶meters);
@@ -185,6 +187,7 @@
};
QList<RegionMapping> mRegionList;
RRegion mWindowRegion;
+ RProperty mProperty;
#endif
};
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogscontainer.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogscontainer.cpp Thu May 27 13:10:59 2010 +0300
@@ -209,3 +209,9 @@
dialog.mIndex = i;
return dialog;
}
+
+// check is the dialog list empty
+bool HbDeviceDialogsContainer::isEmpty() const
+{
+ return mDialogs.isEmpty();
+}
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogscontainer_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogscontainer_p.h Thu May 27 13:10:59 2010 +0300
@@ -105,6 +105,7 @@
void remove(Dialog &dialog);
Dialog &next(const Dialog &from, Dialog::Flags flags, Dialog::Flags mask);
Dialog &next(const Dialog &from, Dialog::Variable variable, quintptr value);
+ bool isEmpty() const;
private:
HbDeviceDialogPluginManager &mPluginManager;
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogserver.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogserver.cpp Thu May 27 13:10:59 2010 +0300
@@ -121,6 +121,16 @@
/*!
\internal
+ Publish current orientation to PS-key
+*/
+int HbDeviceDialogServer::publishOrientation(int orientation)
+{
+ return iManager->publishOrientation( orientation );
+}
+
+/*!
+ \internal
+
Calls HbDeviceDialogManager to close device dialog. On return the status of the call is received.
identifier identifies the device dialog.
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogserver_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogserver_p.h Thu May 27 13:10:59 2010 +0300
@@ -81,6 +81,7 @@
void setMainWindow(HbMainWindow *mainWindow);
int showDeviceDialog(DialogParameters ¶meters);
int updateDeviceDialog(int identifier, const QVariantMap &data);
+ int publishOrientation(int orientation);
int closeDeviceDialog(int identifier);
void deviceDialogClientClosing(quintptr sessionTag);
int activateIndicator(IndicatorParameters ¶meters);
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogserverdefs_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogserverdefs_p.h Thu May 27 13:10:59 2010 +0300
@@ -83,6 +83,7 @@
EHbSrvClientClosing,
EHbSrvCancelUpdateChannel,
EHbSrvOpenUpdateChannel,
+ EHbSrvPublishOrientation,
//indicator commands
EHbSrvIndicatorCommandsStart,
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogserversym_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogserversym_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -200,6 +200,15 @@
/*!
\internal
+ Publish current orientation to PS-key
+*/
+int HbDeviceDialogServerPrivate::publishOrientation( int orientation )
+{
+ return q_func()->publishOrientation( orientation );
+}
+
+/*!
+ \internal
Forward client initiated close event.
*/
int HbDeviceDialogServerPrivate::closeDeviceDialog( int id )
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogserversym_p_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogserversym_p_p.h Thu May 27 13:10:59 2010 +0300
@@ -56,6 +56,7 @@
int showDeviceDialog(HbDeviceDialogServer::DialogParameters ¶meters);
int updateDeviceDialog(int id, QVariantMap &data);
int closeDeviceDialog(int id);
+ int publishOrientation(int orientation);
void deviceDialogClientClosing(quintptr sessionTag);
int activateIndicator(HbDeviceDialogServer::IndicatorParameters ¶meters);
int deactivateIndicator(HbDeviceDialogServer::IndicatorParameters ¶meters);
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogsession.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogsession.cpp Thu May 27 13:10:59 2010 +0300
@@ -154,6 +154,10 @@
UpdateDataRequestL( aMessage );
break;
}
+ case EHbSrvPublishOrientation: {
+ PublishOrientation( aMessage );
+ break;
+ }
default: {
break;
@@ -500,6 +504,21 @@
/*!
\internal
+ Publish current orientation to PS-key
+*/
+void HbDeviceDialogSession::PublishOrientation(const RMessage2 &aMessage)
+{
+ TRACE_ENTRY
+ TInt result = KErrNone;
+ TInt val0 = aMessage.Int0();
+ result = Server().publishOrientation( val0 );
+
+ aMessage.Complete( result );
+ TRACE_EXIT_ARGS("result " << result)
+}
+
+/*!
+ \internal
*/
HbDeviceDialogSession::HbDeviceDialogSession()
{
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogsession_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogsession_p.h Thu May 27 13:10:59 2010 +0300
@@ -67,6 +67,7 @@
void UpdateDataRequestL( const RMessage2 &aMessage );
void CancelUpdateChannel(const RMessage2 aMessage);
void WriteUpdateData(const QVariantMap ¶meters, int deviceDialogId);
+ void PublishOrientation(const RMessage2 &aMessage);
int WriteCloseData(int deviceDialogId, int closeReason);
QString indicatorTypeFromMessageL(const RMessage2 &aMessage) const;
HbDeviceDialogSession();
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/devicedialogbase/hbdevicedialogconnecthelper.cpp Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,92 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#include <hbdevicedialogconnecthelper_p.h>
+#include <hbdevicedialogconnecthelper_p_p.h>
+
+/*!
+ HbDeviceDialogConnectHelper
+ \internal
+*/
+
+
+HbDeviceDialogConnectHelperPrivate::HbDeviceDialogConnectHelperPrivate(HbDeviceDialogConnectHelper *wrapper)
+: CActive(CActive::EPriorityStandard), q_ptr(wrapper), mSessionConnected(0)
+{
+ CActiveScheduler::Add(this);
+}
+
+HbDeviceDialogConnectHelperPrivate::~HbDeviceDialogConnectHelperPrivate()
+{
+ Cancel();
+ if (mSessionConnected) {
+ mClientSession.Close();
+ mSessionConnected = false;
+ }
+}
+
+void HbDeviceDialogConnectHelperPrivate::connect()
+{
+ if (!IsActive()) {
+ iStatus = KRequestPending;
+ if (mClientSession.Connect(&iStatus) == KErrNone) {
+ SetActive();
+ }
+ }
+}
+
+void HbDeviceDialogConnectHelperPrivate::RunL()
+{
+ if (iStatus == KErrNone) {
+ emit q_ptr->sessionEstablished(&mClientSession);
+ mSessionConnected = true;
+ }
+}
+
+void HbDeviceDialogConnectHelperPrivate::DoCancel()
+{
+ TRequestStatus *rs = &iStatus;
+ User::RequestComplete(rs, KErrNone);
+}
+
+
+
+HbDeviceDialogConnectHelper::HbDeviceDialogConnectHelper(QObject *parent)
+: QObject(parent)
+{
+ d_ptr = new HbDeviceDialogConnectHelperPrivate(this);
+}
+
+HbDeviceDialogConnectHelper::~HbDeviceDialogConnectHelper()
+{
+ delete d_ptr;
+}
+
+void HbDeviceDialogConnectHelper::connect()
+{
+ d_ptr->connect();
+}
+
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/devicedialogbase/hbdevicedialogconnecthelper_p.h Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,51 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#ifndef HBDEVICEDIALOGCONNECTHELPER_P_H
+#define HBDEVICEDIALOGCONNECTHELPER_P_H
+
+#include <QObject>
+#include <hbdevicedialogclientsession_p.h>
+
+class HbDeviceDialogConnectHelperPrivate;
+
+class HbDeviceDialogConnectHelper : public QObject
+{
+ Q_OBJECT
+
+public:
+ HbDeviceDialogConnectHelper(QObject *parent = 0);
+ ~HbDeviceDialogConnectHelper();
+
+ void connect();
+
+signals:
+ void sessionEstablished(RHbDeviceDialogClientSession *clientSession);
+
+private:
+ friend class HbDeviceDialogConnectHelperPrivate;
+ HbDeviceDialogConnectHelperPrivate *d_ptr;
+};
+#endif
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/devicedialogbase/hbdevicedialogconnecthelper_p_p.h Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,52 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#ifndef HBDEVICEDIALOGCONNECTHELPER_P_P_H
+#define HBDEVICEDIALOGCONNECTHELPER_P_P_H
+
+#include <e32base.h>
+#include <hbdevicedialogconnecthelper_p_p.h>
+
+class HbDeviceDialogConnectHelper;
+
+class HbDeviceDialogConnectHelperPrivate : public CActive
+{
+public:
+ HbDeviceDialogConnectHelperPrivate(HbDeviceDialogConnectHelper *wrapper);
+ ~HbDeviceDialogConnectHelperPrivate();
+
+ void connect();
+
+protected: // From CActive
+ void RunL();
+ void DoCancel();
+
+private:
+ HbDeviceDialogConnectHelper *q_ptr;
+ RHbDeviceDialogClientSession mClientSession;
+ bool mSessionConnected;
+};
+
+#endif
--- a/src/hbcore/devicedialogbase/hbindicator.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/devicedialogbase/hbindicator.cpp Thu May 27 13:10:59 2010 +0300
@@ -68,7 +68,7 @@
*/
/*!
- \fn void userActivated(const QString &type, const QVariantMap &data)
+ \fn void HbIndicator::userActivated(const QString &type, const QVariantMap &data)
The class should emit this signal, when client needs to be notified of the
user interaction.
--- a/src/hbcore/effects/hbeffectfactory.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/effects/hbeffectfactory.cpp Thu May 27 13:10:59 2010 +0300
@@ -141,19 +141,15 @@
// Create a scale effect
effect = new HbEffectScale(params, targetItem, group);
effectsCreated |= scaleBit;
- }
- if (!(effectsCreated & rotateBit) && isRotateParameter(paramName)) {
+ } else if (!(effectsCreated & rotateBit) && isRotateParameter(paramName)) {
// Create a rotate effect
effect = new HbEffectRotate(params, targetItem, group);
effectsCreated |= rotateBit;
- }
- if (!(effectsCreated & opacityBit) && isOpacityParameter(paramName)) {
+ } else if (!(effectsCreated & opacityBit) && isOpacityParameter(paramName)) {
// Create an opacity effect
effect = new HbEffectOpacity(params, targetItem, group);
effectsCreated |= opacityBit;
- }
-
- if (!(effectsCreated & translateBit) && isTranslateParameter(paramName)) {
+ } else if (!(effectsCreated & translateBit) && isTranslateParameter(paramName)) {
// Create a translate effect
effect = new HbEffectTranslate(params, targetItem, group);
effectsCreated |= translateBit;
--- a/src/hbcore/effects/hbeffectfilter.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/effects/hbeffectfilter.cpp Thu May 27 13:10:59 2010 +0300
@@ -199,7 +199,9 @@
HbEffectFilterAnimation *anim = 0;
// Replace default values with parameter's values
- mEffectDefined |= param.getValue(startValue);
+ if (param.getValue(startValue)) {
+ mEffectDefined = true;
+ }
endValue = startValue;
QList<HbKeyFrame> keyFrameList = param.keyFrames();
@@ -255,7 +257,9 @@
if (!colorString.isEmpty()) {
startValue.setNamedColor(colorString);
endValue = startValue;
- mEffectDefined |= startValue.isValid();
+ if (startValue.isValid()) {
+ mEffectDefined = true;
+ }
}
QList<HbKeyFrame> keyFrameList = param.keyFrames();
--- a/src/hbcore/gestures/hbgesturerecognizers_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gestures/hbgesturerecognizers_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -116,9 +116,8 @@
\return
*/
-HbTapGestureRecognizer::HbTapGestureRecognizer(int tapRadius)
-{
- HbTapGestureLogic::mTapRadius = tapRadius;
+HbTapGestureRecognizer::HbTapGestureRecognizer()
+{
DEBUG() << "Creating HbTapGestureRecognizer" << this;
}
@@ -140,7 +139,7 @@
*/
QGesture* HbTapGestureRecognizer::create(QObject *)
-{
+{
return new HbTapGesture;
}
@@ -182,12 +181,11 @@
\return
*/
-HbTapAndHoldGestureRecognizer::HbTapAndHoldGestureRecognizer(int tapRadius)
+HbTapAndHoldGestureRecognizer::HbTapAndHoldGestureRecognizer()
:
QGestureRecognizer(),
HbTapAndHoldGestureLogic()
-{
- HbTapAndHoldGestureLogic::mTapRadius = tapRadius;
+{
DEBUG() << "Creating HbTapAndHoldGestureRecognizer" << this;
}
@@ -209,7 +207,7 @@
*/
QGesture* HbTapAndHoldGestureRecognizer::create(QObject *)
-{
+{
return new HbTapAndHoldGesture;
}
--- a/src/hbcore/gestures/hbgesturerecognizers_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gestures/hbgesturerecognizers_p.h Thu May 27 13:10:59 2010 +0300
@@ -49,7 +49,7 @@
class HB_CORE_PRIVATE_EXPORT HbTapGestureRecognizer : public QGestureRecognizer, public HbTapGestureLogic
{
public:
- explicit HbTapGestureRecognizer(int tapRadius = HbDefaultTapRadius);
+ explicit HbTapGestureRecognizer();
virtual ~HbTapGestureRecognizer();
QGesture* create(QObject *);
@@ -60,7 +60,7 @@
class HB_CORE_PRIVATE_EXPORT HbTapAndHoldGestureRecognizer : public QGestureRecognizer, public HbTapAndHoldGestureLogic
{
public:
- explicit HbTapAndHoldGestureRecognizer(int tapRadius = HbDefaultTapRadius);
+ explicit HbTapAndHoldGestureRecognizer();
virtual ~HbTapAndHoldGestureRecognizer();
QGesture* create(QObject *);
--- a/src/hbcore/gestures/hbgestures_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gestures/hbgestures_p.h Thu May 27 13:10:59 2010 +0300
@@ -30,11 +30,14 @@
#include <QObject>
#include <QGraphicsView>
-const int HbDefaultPanThreshold = 30;
-const int HbDefaultTapRadius = HbDefaultPanThreshold-1;
+const qreal HbDefaultPanThreshold = 3.3; // mm
+const qreal HbDefaultTapRadius = HbDefaultPanThreshold; //mm
-const qreal HbSwipeMinOffset = 100;
-const qreal HbSwipeMinSpeed = 0.8;
+const qreal HbSwipeMinOffset = 7.5; // mm
+const qreal HbSwipeMinSpeed = 0.06; // mm / ms
+
+const int HbVelocitySampleTime = 80; // ms
+const int HbVelocityStopTime = 70; // ms
class HbGestureUtils
{
@@ -55,7 +58,7 @@
}
return QPointF();
- }
+ }
};
#endif // HBGESTURES_P_H
--- a/src/hbcore/gestures/hbpangesture_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gestures/hbpangesture_p.h Thu May 27 13:10:59 2010 +0300
@@ -59,6 +59,8 @@
HbPointRecorder mAxisY;
HbPointRecorder mSceneAxisX;
HbPointRecorder mSceneAxisY;
+
+ qreal mThresholdSquare;
};
#endif // HBPANGESTURE_P_H
--- a/src/hbcore/gestures/hbpangesturelogic_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gestures/hbpangesturelogic_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -28,12 +28,11 @@
#include <QGraphicsView>
#include <QMouseEvent>
+#include <hbdeviceprofile.h>
#include "hbpangesture.h"
#include "hbpangesture_p.h"
#include "hbpangesturelogic_p.h"
-const int KPanThreshold = 20;
-
/*!
@hbcore
\internal
@@ -123,11 +122,14 @@
gesture->d_ptr->mSceneOffset = HbGestureUtils::mapToScene(watched, QPointF(0,0));
gesture->d_ptr->mSceneLastOffset = HbGestureUtils::mapToScene(watched, QPointF(0,0));
gesture->d_ptr->mLastTimeStamp = mCurrentTime;
-
- gesture->d_ptr->mAxisX.resetRecorder(HbDefaultPanThreshold);
- gesture->d_ptr->mAxisY.resetRecorder(HbDefaultPanThreshold);
- gesture->d_ptr->mSceneAxisX.resetRecorder(HbDefaultPanThreshold);
- gesture->d_ptr->mSceneAxisY.resetRecorder(HbDefaultPanThreshold);
+
+ qreal defaultThreshold = HbDefaultPanThreshold * HbDeviceProfile::current().ppmValue();
+ gesture->d_ptr->mThresholdSquare = defaultThreshold * defaultThreshold;
+
+ gesture->d_ptr->mAxisX.resetRecorder(defaultThreshold);
+ gesture->d_ptr->mAxisY.resetRecorder(defaultThreshold);
+ gesture->d_ptr->mSceneAxisX.resetRecorder(defaultThreshold);
+ gesture->d_ptr->mSceneAxisY.resetRecorder(defaultThreshold);
gesture->d_ptr->mAxisX.record( me->globalPos().x(), mCurrentTime );
gesture->d_ptr->mAxisY.record( me->globalPos().y(), mCurrentTime );
gesture->d_ptr->mSceneAxisX.record( scenePos.x(), mCurrentTime );
@@ -155,7 +157,7 @@
QPointF offset = me->globalPos() - gesture->startPos().toPoint();
- if (gestureState == Qt::NoGesture && offset.manhattanLength() <= KPanThreshold )
+ if (gestureState == Qt::NoGesture && (offset.x() * offset.x() + offset.y() * offset.y()) <= gesture->d_ptr->mThresholdSquare)
{
return QGestureRecognizer::MayBeGesture;
}
--- a/src/hbcore/gestures/hbswipegesturelogic_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gestures/hbswipegesturelogic_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -29,6 +29,8 @@
#include "hbpointrecorder_p.h"
#include "hbvelocitycalculator_p.h"
+#include <hbdeviceprofile.h>
+
#include <QEvent>
#include <QGestureRecognizer>
#include <QGraphicsView>
@@ -147,6 +149,7 @@
\return
*/
+#include <QDebug>
QGestureRecognizer::Result HbSwipeGestureLogic::handleMouseRelease(
Qt::GestureState gestureState,
HbSwipeGesture *gesture,
@@ -161,16 +164,15 @@
return QGestureRecognizer::Ignore;
}
- QPointF totalOffset = me->globalPos() - gesture->d_func()->mStartPos.toPoint();
+ QPoint totalOffset = me->globalPos() - gesture->d_func()->mStartPos.toPoint();
int deltaTime = gesture->d_func()->mStartTime.msecsTo(mCurrentTime);
QPointF velocity = deltaTime != 0 ? totalOffset / deltaTime : QPointF(0,0);
gesture->setSwipeAngle(QLineF(gesture->d_func()->mStartPos, me->globalPos()).angle());
- gesture->setSceneSwipeAngle(QLineF(gesture->d_func()->mSceneStartPos, HbGestureUtils::mapToScene(watched, me->globalPos())).angle());
-
- bool movedEnough = totalOffset.manhattanLength() >= HbSwipeMinOffset;
- bool fastEnough = velocity.manhattanLength() >= HbSwipeMinSpeed;
+ gesture->setSceneSwipeAngle(QLineF(gesture->d_func()->mSceneStartPos, HbGestureUtils::mapToScene(watched, me->globalPos())).angle());
+ bool movedEnough = totalOffset.manhattanLength() >= (int)(HbSwipeMinOffset * HbDeviceProfile::current().ppmValue());
+ bool fastEnough = velocity.manhattanLength() >= HbSwipeMinSpeed * HbDeviceProfile::current().ppmValue();
bool notStoppedAtEnd = HbVelocityCalculator(gesture->d_ptr->mAxisX, gesture->d_ptr->mAxisY).velocity(mCurrentTime) != QPointF(0,0);
if (movedEnough && fastEnough && notStoppedAtEnd) {
--- a/src/hbcore/gestures/hbtapandholdgesturelogic_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gestures/hbtapandholdgesturelogic_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -28,6 +28,7 @@
#include "hbtapandholdgesture_p.h"
#include "hbtapandholdgesturelogic_p.h"
+#include <hbdeviceprofile.h>
#include <QEvent>
#include <QGestureRecognizer>
#include <QGraphicsView>
@@ -84,12 +85,14 @@
QPointF startPos = gesture->property("startPos").toPointF();
QPointF lastPos = gesture->property("position").toPointF();
- int movementThreshold = HbTapAndHoldGestureLogic::mTapRadius;
+ QPointF delta = lastPos - startPos;
+
+ int movementThresholdSquare = mTapRadius * mTapRadius;
if ( gesture->property("tapRadius").isValid() ) {
- movementThreshold = gesture->property("tapRadius").toInt();
+ movementThresholdSquare = gesture->property("tapRadius").toInt() * gesture->property("tapRadius").toInt();
}
- return QLineF(startPos, lastPos).length() > movementThreshold;
+ return (delta.x() * delta.x() + delta.y() * delta.y()) > movementThresholdSquare;
};
/*!
@@ -157,7 +160,8 @@
gesture->setProperty("position", me->globalPos());
gesture->setProperty("scenePosition", HbGestureUtils::mapToScene(watched, me->globalPos()));
gesture->priv->mTimerID = startTimer(gesture, HOLDTAP_ACTIVATION_USECS);
-
+ mTapRadius = (int)(HbDefaultTapRadius * HbDeviceProfile::current().ppmValue());
+
DEBUG() << gesture << QGestureRecognizer::MayBeGesture;
return QGestureRecognizer::MayBeGesture;
}
--- a/src/hbcore/gestures/hbtapgesturelogic_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gestures/hbtapgesturelogic_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -28,6 +28,7 @@
#include "hbtapgesture.h"
#include "hbtapgesture_p.h"
+#include <hbdeviceprofile.h>
#include <QEvent>
#include <QMouseEvent>
#include <QGesture>
@@ -98,6 +99,7 @@
gesture->setStartPos(me->globalPos());
gesture->setScenePosition(HbGestureUtils::mapToScene(watched, me->globalPos()));
gesture->setSceneStartPos(HbGestureUtils::mapToScene(watched, me->globalPos()));
+ mTapRadius = (int)(HbDefaultTapRadius * HbDeviceProfile::current().ppmValue());
HbTapGesturePrivate* d_ptr = gesture->d_func();
d_ptr->mTapStyleHint = HbTapGesture::Tap;
@@ -125,18 +127,19 @@
QObject *watched,
QMouseEvent *me )
{
- if(gestureState != Qt::NoGesture) {
- int tapRadius(mTapRadius);
+ if(gestureState != Qt::NoGesture && gestureState != Qt::GestureCanceled) {
+ int tapRadiusSquare(mTapRadius * mTapRadius);
if(gesture->property("tapRadius").isValid()) {
qWarning("WARNING using widget specific properties in HbTapGestureRecognizer");
- tapRadius = gesture->property("tapRadius").toInt();
+ int tapRadius = gesture->property("tapRadius").toInt();
+ tapRadiusSquare = tapRadius * tapRadius;
}
gesture->setPosition(me->globalPos());
gesture->setScenePosition(HbGestureUtils::mapToScene(watched, me->globalPos()));
gesture->setHotSpot(me->globalPos());
QPointF delta = me->globalPos() - gesture->startPos();
- if(delta.manhattanLength() > tapRadius) {
+ if((delta.x() * delta.x() + delta.y() * delta.y()) > tapRadiusSquare) {
return QGestureRecognizer::CancelGesture;
}
}
--- a/src/hbcore/gestures/hbvelocitycalculator_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gestures/hbvelocitycalculator_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -26,6 +26,8 @@
#include "hbvelocitycalculator_p.h"
#include "hbpointrecorder_p.h"
+#include "hbgestures_p.h"
+
#include <QPointF>
#include <QTime>
@@ -37,9 +39,6 @@
# define DEBUG qDebug
#endif
-const int KHbSampleTime = 80; // ms
-const int KHbStopTime = 70; // ms
-
/*!
@hbcore
\internals
@@ -99,7 +98,7 @@
}
DEBUG() << "Stationary time: " << list.lastTime().msecsTo(time);
- if (list.lastTime().msecsTo(time) > KHbStopTime) {
+ if (list.lastTime().msecsTo(time) >= HbVelocityStopTime) {
return 0.0;
}
@@ -107,7 +106,7 @@
qreal delta = 0.0;
int timeDelta = 0;
int i = list.count();
- while (timeDelta < KHbSampleTime && i > 0) {
+ while (timeDelta < HbVelocitySampleTime && i > 0) {
i--;
timeDelta = list.at(i).second.msecsTo(time);
}
--- a/src/hbcore/gui/gui.pri Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/gui.pri Thu May 27 13:10:59 2010 +0300
@@ -79,10 +79,12 @@
PRIVATE_HEADERS += $$PWD/hbwidgetsequentialshow_p.h
PRIVATE_HEADERS += $$PWD/hbnativewindow_sym_p.h
PRIVATE_HEADERS += $$PWD/hbsplash_p.h
+PRIVATE_HEADERS += $$PWD/hbsplash_direct_symbian_p.h
PRIVATE_HEADERS += $$PWD/hbfadeitem_p.h
PRIVATE_HEADERS += $$PWD/hbcontentwidget_p.h
PRIVATE_HEADERS += $$PWD/hbscreen_p.h
PRIVATE_HEADERS += $$PWD/hbsplashdefs_p.h
+PRIVATE_HEADERS += $$PWD/hbsplashscreen_generic_p.h
PRIVATE_HEADERS += $$PWD/hblongpressvisualizer_p.h
SOURCES += $$PWD/hbabstractbutton.cpp
--- a/src/hbcore/gui/hbbackgrounditem.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbbackgrounditem.cpp Thu May 27 13:10:59 2010 +0300
@@ -35,25 +35,19 @@
#include "hbevent.h"
#include "hbmainwindow_p.h"
-#ifndef HB_NVG_CS_ICON
-#define ENABLE_FAST_PAINT_
-#endif
-
/*
\class HbBackgroundItem
- \brief HbBackgroundItem draws background
+ \brief Draws the background.
\internal
*/
HbBackgroundItem::HbBackgroundItem(HbMainWindow *mainWindow, QGraphicsWidget *parent) :
HbWidget(parent),
- mMainWindow(mainWindow)
+ mMainWindow(mainWindow),
+ mImageMode(Hb::ScaleBackgroundToFit)
{
-#ifdef ENABLE_FAST_PAINT_
- setAttribute(Qt::WA_NoSystemBackground); // Disable clearing of background
-#endif
setSizePolicy( QSizePolicy::Ignored, QSizePolicy::Ignored );
mPrtImageName = defaultImageName(Qt::Vertical);
@@ -96,6 +90,19 @@
: QLatin1String("qtg_graf_screen_bg_lsc");
}
+void HbBackgroundItem::setImageMode(Hb::BackgroundImageMode mode)
+{
+ if (mode != mImageMode) {
+ mImageMode = mode;
+ updateBackgroundImage();
+ }
+}
+
+Hb::BackgroundImageMode HbBackgroundItem::imageMode() const
+{
+ return mImageMode;
+}
+
void HbBackgroundItem::updateBackgroundImage()
{
prepareGeometryChange();
@@ -103,12 +110,22 @@
QSizeF size(HbDeviceProfile::profile(mMainWindow).logicalSize());
mBoundingRect.setWidth(size.width());
mBoundingRect.setHeight(size.height());
- mBackground.setSize(size);
if (mMainWindow->orientation() == Qt::Vertical) {
mBackground.setIconName(mPrtImageName);
} else {
mBackground.setIconName(mLscImageName);
}
+ if (mImageMode == Hb::KeepOriginalBackgroundSize
+ || mImageMode == Hb::KeepOriginalBackgroundSizeIfSmaller)
+ {
+ QSizeF imageSize = mBackground.defaultSize();
+ if (mImageMode == Hb::KeepOriginalBackgroundSize
+ || (imageSize.width() <= size.width() && imageSize.height() <= size.height()))
+ {
+ size = imageSize;
+ }
+ }
+ mBackground.setSize(size);
}
}
@@ -147,17 +164,28 @@
void HbBackgroundItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
- Q_UNUSED(widget)
- Q_UNUSED(option)
+ Q_UNUSED(widget);
+ Q_UNUSED(option);
+
+ if (mImageMode == Hb::DoNotDrawBackground) {
+ return;
+ }
+
+ // Note: No optimizations to disable alpha blending etc. The background
+ // image may be anything, it can have transparent parts too.
-#ifdef ENABLE_FAST_PAINT_
- QPainter::CompositionMode compositionMode = painter->compositionMode();
- painter->setCompositionMode( QPainter::CompositionMode_Source ); // Do not use alpha blending..
-#endif
+ Qt::AspectRatioMode aspRatMode;
+ switch (mImageMode) {
+ case Hb::ScaleBackgroundToFitWithoutExpanding:
+ aspRatMode = Qt::KeepAspectRatio;
+ break;
+ case Hb::StretchBackgroundToFit:
+ aspRatMode = Qt::IgnoreAspectRatio;
+ break;
+ default:
+ aspRatMode = Qt::KeepAspectRatioByExpanding;
+ break;
+ }
- mBackground.paint(painter, mBoundingRect, Qt::KeepAspectRatioByExpanding);
-
-#ifdef ENABLE_FAST_PAINT_
- painter->setCompositionMode( compositionMode ); // restore old composition mode
-#endif
+ mBackground.paint(painter, mBoundingRect, aspRatMode, Qt::AlignCenter);
}
--- a/src/hbcore/gui/hbbackgrounditem_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbbackgrounditem_p.h Thu May 27 13:10:59 2010 +0300
@@ -47,6 +47,9 @@
QString imageName(Qt::Orientation orientation) const;
QString defaultImageName(Qt::Orientation orientation) const;
+ void setImageMode(Hb::BackgroundImageMode mode);
+ Hb::BackgroundImageMode imageMode() const;
+
void updateBackgroundImage();
private:
@@ -58,6 +61,7 @@
HbMainWindow *mMainWindow;
QString mPrtImageName;
QString mLscImageName;
+ Hb::BackgroundImageMode mImageMode;
};
#endif // HBBACKGROUNDITEM_H
--- a/src/hbcore/gui/hbcssinspector_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbcssinspector_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -45,14 +45,17 @@
#include <QGraphicsLayout>
#include <QGraphicsScene>
#include <QGraphicsSceneMouseEvent>
-#include <QGridLayout>
#include <QGroupBox>
+#include <QHBoxLayout>
#include <QLabel>
#include <QPen>
#include <QPainter>
#include <QPointer>
#include <QRadioButton>
+#include <QSizePolicy>
+#include <QSplitter>
#include <QTextEdit>
+#include <QVBoxLayout>
#include <QXmlStreamWriter>
@@ -82,7 +85,11 @@
const QString TEXT_COLOR = "qtc_default_main_pane_normal";
const QString LINE_COLOR = "qtc_view_visited_normal";
const int ABOVE_POPUP_ZVALUE = 5000;
-
+const qreal SIZE_PREF_DRAW_SIZE = 7.0;
+const qreal SIZE_PREF_MINIMUM_THRESHOLD = 4.0 * SIZE_PREF_DRAW_SIZE;
+const qreal SIZE_PREF_LINE_WIDTH = 1.0;
+const qreal SIZE_PREF_ALLOWED_OVERLAP = 2.0;
+const qreal SIZE_PREF_BOX_SIZE = 0.4 * SIZE_PREF_DRAW_SIZE;
static QString cssItemText(const QGraphicsItem *item)
{
@@ -105,6 +112,8 @@
txt.append("::");
txt.append(itemName);
}
+ } else {
+ txt = "QGraphicsItem";
}
return txt;
}
@@ -150,16 +159,43 @@
return sizeHint;
}
-static QRectF cssItemHintRect(const QGraphicsItem *item)
+static QString cssSizePolicyText(const QGraphicsItem *item, Qt::Orientation dir)
+{
+ if (!item->isWidget()) {
+ return "";
+ }
+ const HbWidget *widget = static_cast<const HbWidget*>(item);
+ QSizePolicy::Policy pol = dir == Qt::Vertical
+ ? widget->sizePolicy().verticalPolicy()
+ : widget->sizePolicy().horizontalPolicy();
+
+ if (pol == QSizePolicy::Fixed) {
+ return "Fixed";
+ } else if (pol == QSizePolicy::Minimum) {
+ return "Minimum";
+ } else if (pol == QSizePolicy::Maximum) {
+ return "Maximum";
+ } else if (pol == QSizePolicy::Preferred) {
+ return "Preferred";
+ } else if (pol == QSizePolicy::MinimumExpanding) {
+ return "Minimum expanding";
+ } else if (pol == QSizePolicy::Expanding) {
+ return "Expanding";
+ } else if (pol == QSizePolicy::Ignored) {
+ return "Ignored";
+ } else {
+ return "[Unrecognised]";
+ }
+}
+
+static QRectF cssItemHintRect(const QGraphicsItem *item, Qt::SizeHint which)
{
QRectF hintRect;
if (item->isWidget()) {
- if (item->isWidget()) {
- const QGraphicsWidget *widget = static_cast<const QGraphicsWidget*>(item);
- const QSizeF &size = widget->effectiveSizeHint(Qt::PreferredSize);
- hintRect.setWidth(size.width());
- hintRect.setHeight(size.height());
- }
+ const QGraphicsWidget *widget = static_cast<const QGraphicsWidget*>(item);
+ const QSizeF &size = widget->effectiveSizeHint(which);
+ hintRect.setWidth(size.width());
+ hintRect.setHeight(size.height());
}
return hintRect;
}
@@ -268,14 +304,12 @@
-HbCssInfoDrawer::HbCssInfoDrawer(QGraphicsItem *parent)
- : HbWidgetBase(parent),
- mShowItemText(true),
- mShowHintText(true),
- mShowBox(true),
- mShowHintBox(true),
- mDrawGuideLines(true),
- mItemRect(0,0,0,0)
+HbCssInfoDrawer::HbCssInfoDrawer(QGraphicsItem *parent) :
+ HbWidgetBase(parent),
+ mItemRect(0,0,0,0),
+ mMinHintRect(0,0,0,0),
+ mPrefHintRect(0,0,0,0),
+ mMaxHintRect(0,0,0,0)
{
updateColors();
setVisible(false);
@@ -310,11 +344,14 @@
mItemRect = item->sceneBoundingRect();
mItemText = cssItemText(item);
mHintText = cssItemHintText(item);
- mHintRect = cssItemHintRect(item);
+ mMinHintRect = cssItemHintRect(item, Qt::MinimumSize);
+ mPrefHintRect = cssItemHintRect(item, Qt::PreferredSize);
+ mMaxHintRect = cssItemHintRect(item, Qt::MaximumSize);
// Make sure this is in the same place in the scene as the window
if (item->isWidget()) {
const HbWidget *obj = static_cast<const HbWidget*>(item);
this->setGeometry(obj->mainWindow()->rect());
+ mItemPolicy = obj->sizePolicy();
}
} else {
this->setVisible(false);
@@ -324,10 +361,166 @@
void HbCssInfoDrawer::paintRect(QPainter *painter, QRectF rect)
{
- rect.adjust(
- HOVER_BOX_PEN_WIDTH/2, HOVER_BOX_PEN_WIDTH/2,
- -HOVER_BOX_PEN_WIDTH/2, -HOVER_BOX_PEN_WIDTH/2);
- painter->drawRect(rect);
+ rect.adjust(
+ HOVER_BOX_PEN_WIDTH/2, HOVER_BOX_PEN_WIDTH/2,
+ -HOVER_BOX_PEN_WIDTH/2, -HOVER_BOX_PEN_WIDTH/2);
+ painter->drawRect(rect);
+}
+
+static QPolygonF createTrianglePoints(const QPointF &pointPos, Qt::ArrowType dir)
+{
+ const qreal size = SIZE_PREF_DRAW_SIZE;
+ const qreal half = size / 2.0;
+ const qreal x = pointPos.x();
+ const qreal y = pointPos.y();
+
+ QPolygonF points;
+ points << pointPos;
+
+ switch (dir) {
+ case Qt::LeftArrow:
+ points << QPointF(x+size, y-half);
+ points << QPointF(x+size, y+half);
+ break;
+ case Qt::RightArrow:
+ points << QPointF(x-size, y-half);
+ points << QPointF(x-size, y+half);
+ break;
+ case Qt::UpArrow:
+ points << QPointF(x-half, y+size);
+ points << QPointF(x+half, y+size);
+ break;
+ case Qt::DownArrow:
+ points << QPointF(x-half, y-size);
+ points << QPointF(x+half, y-size);
+ break;
+ default: // Set points to same position to avoid drawing to origin
+ points << pointPos;
+ points << pointPos;
+ }
+ return points;
+}
+
+enum LayoutPosition {
+ RegularLayout,
+ MirroredLayout
+};
+
+enum ArrowDirection {
+ RegularArrow,
+ MirroredArrow
+};
+
+static void drawTriangle(QPainter *painter, Qt::Orientation dir, const QRectF &bRect,
+ int iconsFromEdge, qreal linePos, LayoutPosition layout, ArrowDirection arrowDir)
+{
+ QPointF point;
+
+ qreal posFromEdge = iconsFromEdge * SIZE_PREF_DRAW_SIZE;
+ if (arrowDir == MirroredArrow) {
+ posFromEdge += SIZE_PREF_DRAW_SIZE;
+ }
+
+ Qt::ArrowType arrow = Qt::NoArrow;
+ if (dir == Qt::Vertical) {
+ if (layout == MirroredLayout) {
+ posFromEdge += bRect.top();
+ arrow = (arrowDir == MirroredArrow) ? Qt::DownArrow : Qt::UpArrow;
+ } else {
+ posFromEdge = bRect.bottom() - posFromEdge;
+ arrow = (arrowDir == MirroredArrow) ? Qt::UpArrow : Qt::DownArrow;
+ }
+ point = QPointF(linePos, posFromEdge);
+ } else {
+ if (layout == MirroredLayout) {
+ posFromEdge = bRect.right() - posFromEdge;
+ arrow = (arrowDir == MirroredArrow) ? Qt::LeftArrow : Qt::RightArrow;
+ } else {
+ posFromEdge += bRect.left();
+ arrow = (arrowDir == MirroredArrow) ? Qt::RightArrow : Qt::LeftArrow;
+ }
+ point = QPointF(posFromEdge, linePos);
+ }
+
+ painter->drawPolygon(createTrianglePoints(point, arrow));
+}
+
+
+static void drawPolicyIcons(QPainter *painter, Qt::Orientation direction, QSizePolicy policy, const QRectF &itemRect)
+{
+ bool vert = direction == Qt::Vertical;
+ QSizePolicy::Policy pol = vert ? policy.verticalPolicy() : policy.horizontalPolicy();
+
+ const QBrush fillBrush(Qt::gray, Qt::SolidPattern);
+ const QBrush hollowBrush(Qt::white, Qt::SolidPattern);
+ const QRectF rect = itemRect.adjusted(HOVER_BOX_PEN_WIDTH/2, HOVER_BOX_PEN_WIDTH/2,
+ -HOVER_BOX_PEN_WIDTH/2, -HOVER_BOX_PEN_WIDTH/2);
+
+ const qreal vLinePos = rect.left() + (rect.width() * 0.8);
+ const qreal hLinePos = rect.top() + (rect.height() * 0.2);
+ const int linePos = (int)(vert ? vLinePos : hLinePos); // Cast to force consistent rounding
+
+ bool drawSecondIcons;
+ if (vert) {
+ drawSecondIcons = (3*SIZE_PREF_DRAW_SIZE) + rect.top() <= hLinePos + SIZE_PREF_ALLOWED_OVERLAP;
+ painter->drawLine(linePos, rect.top(), linePos, rect.bottom());
+ } else {
+ drawSecondIcons = rect.right() - (3*SIZE_PREF_DRAW_SIZE) >= vLinePos - SIZE_PREF_ALLOWED_OVERLAP;
+ painter->drawLine(rect.left(), linePos, rect.right(), linePos);
+ }
+
+ // Ignore icons have different rules
+ if (pol & QSizePolicy::IgnoreFlag) {
+ // Draw outer triangle
+ painter->setBrush(fillBrush);
+ drawTriangle(painter, direction, rect, 0, linePos, RegularLayout, RegularArrow);
+ if (drawSecondIcons) {
+ drawTriangle(painter, direction, rect, 0, linePos, MirroredLayout, RegularArrow);
+ }
+ // Draw inner triangle
+ painter->setBrush(hollowBrush);
+ drawTriangle(painter, direction, rect, 2, linePos, RegularLayout, RegularArrow);
+ if (drawSecondIcons) {
+ drawTriangle(painter, direction, rect, 2, linePos, MirroredLayout, RegularArrow);
+ }
+ } else {
+ // Draw outer triangle
+ if (pol & QSizePolicy::GrowFlag) {
+ painter->setBrush(pol & QSizePolicy::ExpandFlag ? fillBrush : hollowBrush);
+ drawTriangle(painter, direction, rect, 0, linePos, RegularLayout, RegularArrow);
+ if (drawSecondIcons) {
+ drawTriangle(painter, direction, rect, 0, linePos, MirroredLayout, RegularArrow);
+ }
+ }
+ // Draw box
+ painter->setBrush(pol & QSizePolicy::ExpandFlag ? hollowBrush : fillBrush);
+ QRectF boxRect(0, 0, SIZE_PREF_DRAW_SIZE, SIZE_PREF_DRAW_SIZE);
+ qreal midPoint = (1 + 0.5) * SIZE_PREF_DRAW_SIZE; // Middle of the second icon
+ if (vert) {
+ boxRect.setHeight(SIZE_PREF_BOX_SIZE);
+ boxRect.moveCenter(QPointF(linePos, rect.bottom() - midPoint));
+ } else {
+ boxRect.setWidth(SIZE_PREF_BOX_SIZE);
+ boxRect.moveCenter(QPointF(rect.left() + midPoint, linePos));
+ }
+ painter->drawRect(boxRect);
+ if (drawSecondIcons) {
+ if (vert) {
+ boxRect.moveCenter(QPointF(linePos, rect.top() + midPoint));
+ } else {
+ boxRect.moveCenter(QPointF(rect.right() - midPoint, linePos));
+ }
+ painter->drawRect(boxRect);
+ }
+ // Draw inner triangle
+ if (pol & QSizePolicy::ShrinkFlag) {
+ painter->setBrush(hollowBrush);
+ drawTriangle(painter, direction, rect, 2, linePos, RegularLayout, MirroredArrow);
+ if (drawSecondIcons) {
+ drawTriangle(painter, direction, rect, 2, linePos, MirroredLayout, MirroredArrow);
+ }
+ }
+ }
}
void HbCssInfoDrawer::paint(QPainter *painter,
@@ -343,12 +536,24 @@
if (mShowBox) {
painter->setPen(QPen(mBoxColor, HOVER_BOX_PEN_WIDTH));
paintRect(painter, mItemRect);
+ }
+ if (mShowMinHintBox) {
+ painter->setPen(QPen(Qt::blue, HOVER_BOX_PEN_WIDTH));
+ QRectF rect = mMinHintRect;
+ rect.moveCenter(mItemRect.center());
+ paintRect(painter, rect);
}
- if (mShowHintBox) {
+ if (mShowPrefHintBox) {
painter->setPen(QPen(Qt::green, HOVER_BOX_PEN_WIDTH));
- QRectF prefRect = mHintRect;
- prefRect.moveCenter(mItemRect.center());
- paintRect(painter, prefRect);
+ QRectF rect = mPrefHintRect;
+ rect.moveCenter(mItemRect.center());
+ paintRect(painter, rect);
+ }
+ if (mShowMaxHintBox) {
+ painter->setPen(QPen(Qt::red, HOVER_BOX_PEN_WIDTH));
+ QRectF rect = mMaxHintRect;
+ rect.moveCenter(mItemRect.center());
+ paintRect(painter, rect);
}
painter->setPen(mTextColor);
@@ -381,6 +586,17 @@
// Line across bottom
painter->drawLine(0, (int)mItemRect.bottom(), (int)br.width(), (int)mItemRect.bottom());
}
+
+ // Draw the size prefs icons
+ if (mShowSizePrefs) {
+ painter->setPen(QPen(Qt::gray, SIZE_PREF_LINE_WIDTH));
+ if (mItemRect.height() > SIZE_PREF_MINIMUM_THRESHOLD) {
+ drawPolicyIcons(painter, Qt::Horizontal, mItemPolicy, mItemRect);
+ }
+ if (mItemRect.width() > SIZE_PREF_MINIMUM_THRESHOLD) {
+ drawPolicyIcons(painter, Qt::Vertical, mItemPolicy, mItemRect);
+ }
+ }
painter->setLayoutDirection(prevDirection);
painter->setPen(prevPen);
@@ -390,7 +606,42 @@
/******************************************************************************************/
+CodeWidget::CodeWidget(const QString &title, QWidget *parent)
+ : QWidget(parent), mLabel(0), mTextBox(0)
+{
+ mLabel = new QLabel(title, this);
+ mTextBox = new QTextEdit(this);
+ mTextBox->setReadOnly(true);
+ QVBoxLayout *layout = new QVBoxLayout(this);
+ layout->setContentsMargins(0,0,0,0);
+ layout->addWidget(mLabel);
+ layout->addWidget(mTextBox);
+ setLayout(layout);
+}
+CodeWidget::~CodeWidget()
+{
+}
+
+void CodeWidget::setText(const QString &text)
+{
+ mTextBox->setText(text);
+}
+
+void CodeWidget::setHtml(const QString &html)
+{
+ mTextBox->setHtml(html);
+}
+
+void CodeWidget::setLayoutDirection(Qt::LayoutDirection dir)
+{
+ mLabel->setLayoutDirection(dir);
+ mTextBox->setLayoutDirection(dir);
+}
+
+
+
+/******************************************************************************************/
HbCssInspectorWindow *HbCssInspectorWindow::instance()
{
@@ -426,91 +677,137 @@
window->scene()->installEventFilter(filter);
mInstalledFilters.append(filter);
connect(filter, SIGNAL(newItemHovered(const QGraphicsItem*)), SLOT(updateFocusItem(const QGraphicsItem*)));
- connect(mNameCheck, SIGNAL(toggled(bool)), filter->mCssInfoDrawer, SLOT(setItemTextVisible(bool)));
- connect(mSizeHintCheck, SIGNAL(toggled(bool)), filter->mCssInfoDrawer, SLOT(setHintTextVisible(bool)));
- connect(mHintOutlinesCheck, SIGNAL(toggled(bool)), filter->mCssInfoDrawer, SLOT(setHintBoxVisible(bool)));
+
+ connect(mObjectNameCheck, SIGNAL(toggled(bool)), filter->mCssInfoDrawer, SLOT(setItemTextVisible(bool)));
+ connect(mAnchorArrowsCheck, SIGNAL(toggled(bool)), filter->mArrowDrawer, SLOT(setDrawArrows(bool)));
+ connect(mSubitemOutlinesCheck, SIGNAL(toggled(bool)), filter->mArrowDrawer, SLOT(setDrawOutlines(bool)));
+ connect(mSpacersCheck, SIGNAL(toggled(bool)), filter->mArrowDrawer, SLOT(setDrawSpacers(bool)));
connect(mGuideLinesCheck, SIGNAL(toggled(bool)), filter->mCssInfoDrawer, SLOT(setGuideLinesVisible(bool)));
- connect(mArrowsCheck, SIGNAL(toggled(bool)), filter->mArrowDrawer, SLOT(setDrawArrows(bool)));
- connect(mOutlinesCheck, SIGNAL(toggled(bool)), filter->mArrowDrawer, SLOT(setDrawOutlines(bool)));
- connect(mSpacersCheck, SIGNAL(toggled(bool)), filter->mArrowDrawer, SLOT(setDrawSpacers(bool)));
- connect(mLiveRadio, SIGNAL(toggled(bool)), filter, SLOT(setLiveMode(bool)));
+
+ connect(mSizeHintTextCheck, SIGNAL(toggled(bool)), filter->mCssInfoDrawer, SLOT(setHintTextVisible(bool)));
+ connect(mMinSizeHintCheck, SIGNAL(toggled(bool)), filter->mCssInfoDrawer, SLOT(setMinHintBoxVisible(bool)));
+ connect(mPrefSizeHintCheck, SIGNAL(toggled(bool)), filter->mCssInfoDrawer, SLOT(setPrefHintBoxVisible(bool)));
+ connect(mMaxSizeHintCheck, SIGNAL(toggled(bool)), filter->mCssInfoDrawer, SLOT(setMaxHintBoxVisible(bool)));
+ connect(mSizePrefCheck, SIGNAL(toggled(bool)), filter->mCssInfoDrawer, SLOT(setSizePrefsVisible(bool)));
+
+ connect(mHoverRadio, SIGNAL(toggled(bool)), filter, SLOT(setHoverMode(bool)));
connect(mBlockRadio, SIGNAL(toggled(bool)), filter, SLOT(setBlockingMode(bool)));
- }
+
+ filter->mCssInfoDrawer->setItemTextVisible(mObjectNameCheck->isChecked());
+ filter->mArrowDrawer->setDrawArrows(mAnchorArrowsCheck->isChecked());
+ filter->mArrowDrawer->setDrawOutlines(mSubitemOutlinesCheck->isChecked());
+ filter->mArrowDrawer->setDrawSpacers(mSpacersCheck->isChecked());
+ filter->mCssInfoDrawer->setGuideLinesVisible(mGuideLinesCheck->isChecked());
+ filter->mCssInfoDrawer->setHintTextVisible(mSizeHintTextCheck->isChecked());
+ filter->mCssInfoDrawer->setMinHintBoxVisible(mMinSizeHintCheck->isChecked());
+ filter->mCssInfoDrawer->setPrefHintBoxVisible(mPrefSizeHintCheck->isChecked());
+ filter->mCssInfoDrawer->setMaxHintBoxVisible(mMaxSizeHintCheck->isChecked());
+ filter->mCssInfoDrawer->setSizePrefsVisible(mSizePrefCheck->isChecked());
+ filter->setHoverMode(mHoverRadio->isChecked());
+ filter->setBlockingMode(mBlockRadio->isChecked());
+ }
}
HbCssInspectorWindow::HbCssInspectorWindow(QWidget *parent)
- : QWidget(parent), mLayoutWidgetMLBox(0), mLayoutCssBox(0), mColorsCssBox(0)
+ : QWidget(parent)
{
- QGroupBox *settings = new QGroupBox(tr("Settings"), this);
- QGridLayout *settingLayout = new QGridLayout(settings);
- mArrowsCheck = new QCheckBox(tr("Draw arrows"), this);
- mOutlinesCheck = new QCheckBox(tr("Draw subitem outlines"), this);
- mHintOutlinesCheck = new QCheckBox(tr("Draw sizehint outlines"), this);
+ QGroupBox *generalGroup = new QGroupBox(tr("General"), this);
+ QVBoxLayout *genLayout = new QVBoxLayout(this);
+ generalGroup->setLayout(genLayout);
+ mObjectNameCheck = new QCheckBox(tr("Show object name"), this);
+ mAnchorArrowsCheck = new QCheckBox(tr("Draw arrows"), this);
+ mSubitemOutlinesCheck = new QCheckBox(tr("Draw subitem outlines"), this);
mSpacersCheck = new QCheckBox(tr("Draw spacers"), this);
- mNameCheck = new QCheckBox(tr("Show object name"), this);
- mSizeHintCheck = new QCheckBox(tr("Show size hint"), this);
mGuideLinesCheck = new QCheckBox(tr("Draw guide lines"), this);
- mLiveRadio = new QRadioButton(tr("Live mode"), this);
+ genLayout->addWidget(mObjectNameCheck);
+ genLayout->addWidget(mAnchorArrowsCheck);
+ genLayout->addWidget(mSubitemOutlinesCheck);
+ genLayout->addWidget(mSpacersCheck);
+ genLayout->addWidget(mGuideLinesCheck);
+
+ QGroupBox *sizeHintOptsGroup = new QGroupBox(tr("Size Hints"), this);
+ QVBoxLayout *shLayout = new QVBoxLayout(this);
+ sizeHintOptsGroup->setLayout(shLayout);
+ mSizeHintTextCheck = new QCheckBox(tr("Show size hint"), this);
+ mMinSizeHintCheck = new QCheckBox(tr("Min size hint outline"), this);
+ mPrefSizeHintCheck = new QCheckBox(tr("Pref size hint outline"), this);
+ mMaxSizeHintCheck = new QCheckBox(tr("Max size hint outline"), this);
+ mSizePrefCheck = new QCheckBox(tr("Size preferences"), this);
+ shLayout->addWidget(mSizeHintTextCheck);
+ shLayout->addWidget(mMinSizeHintCheck);
+ shLayout->addWidget(mPrefSizeHintCheck);
+ shLayout->addWidget(mMaxSizeHintCheck);
+ shLayout->addWidget(mSizePrefCheck);
+
+ QGroupBox *eventModeGroup = new QGroupBox(tr("Event mode"), this);
+ QVBoxLayout *eventLayout = new QVBoxLayout(this);
+ eventModeGroup->setLayout(eventLayout);
+ mHoverRadio = new QRadioButton(tr("Hover mode"), this);
mClickRadio = new QRadioButton(tr("Click locking mode"), this);
- mBlockRadio = new QRadioButton(tr("Click locking mode (block events)"), this);
- settingLayout->addWidget(mArrowsCheck, 0, 0);
- settingLayout->addWidget(mOutlinesCheck, 1, 0);
- settingLayout->addWidget(mHintOutlinesCheck, 2, 0);
- settingLayout->addWidget(mSpacersCheck, 3, 0);
- settingLayout->addWidget(mNameCheck, 0, 1);
- settingLayout->addWidget(mSizeHintCheck, 1, 1);
- settingLayout->addWidget(mGuideLinesCheck, 2, 1);
- settingLayout->addWidget(mLiveRadio, 0, 2);
- settingLayout->addWidget(mClickRadio, 1, 2);
- settingLayout->addWidget(mBlockRadio, 2, 2);
- mArrowsCheck->setChecked(true);
- mOutlinesCheck->setChecked(true);
- mHintOutlinesCheck->setChecked(true);
- mSpacersCheck->setChecked(true);
- mNameCheck->setChecked(true);
- mSizeHintCheck->setChecked(true);
- mGuideLinesCheck->setChecked(true);
- mLiveRadio->setChecked(true);
+ mBlockRadio = new QRadioButton(tr("Blocked locking mode"), this);
+ eventLayout->addWidget(mHoverRadio);
+ eventLayout->addWidget(mClickRadio);
+ eventLayout->addWidget(mBlockRadio);
+
+ QHBoxLayout *settingLayout = new QHBoxLayout;
+ settingLayout->addWidget(generalGroup);
+ settingLayout->addWidget(sizeHintOptsGroup);
+ settingLayout->addWidget(eventModeGroup);
+
+ QGroupBox *sizeHintGroup = new QGroupBox(tr("Size hint"), this);
+ QHBoxLayout *sizeHLayout = new QHBoxLayout;
+ sizeHintGroup->setLayout(sizeHLayout);
+ mSizeHintLabel = new QLabel("", this);
+ sizeHLayout->addWidget(mSizeHintLabel);
- QLabel *lblWidgetML = new QLabel(tr("WidgetML"), this);
- mLayoutWidgetMLBox = new QTextEdit(this);
- mLayoutWidgetMLBox->setReadOnly(true);
+ QGroupBox *sizePolicyGroup = new QGroupBox(tr("Size Policies"), this);
+ QHBoxLayout *sizePolicyLayout = new QHBoxLayout;
+ sizePolicyGroup->setLayout(sizePolicyLayout);
+ mSizePolicyHoriz = new QLabel("", this);
+ mSizePolicyVert = new QLabel("", this);
+ sizePolicyLayout->addWidget(mSizePolicyHoriz);
+ sizePolicyLayout->addWidget(mSizePolicyVert);
- QLabel *lblLayout = new QLabel(tr("Layouts CSS stack (+all)"), this);
- mLayoutCssBox = new QTextEdit(this);
- mLayoutCssBox->setReadOnly(true);
+ QHBoxLayout *sizeLayout = new QHBoxLayout;
+ sizeLayout->setContentsMargins(0,0,0,0);
+ sizeLayout->addWidget(sizeHintGroup);
+ sizeLayout->addWidget(sizePolicyGroup);
+
+ mWidgetMLBox = new CodeWidget(tr("WidgetML"), this);
- QLabel *lblColors = new QLabel(tr("Colors CSS stack (+all)"), this);
- mColorsCssBox = new QTextEdit(this);
- mColorsCssBox->setReadOnly(true);
+ QSplitter *cssSplitter = new QSplitter(this);
+ mLayoutCssBox = new CodeWidget(tr("Layouts CSS stack (+all)"), this);
+ mColorsCssBox = new CodeWidget(tr("Colors CSS stack (+all)"), this);
+ cssSplitter->addWidget(mLayoutCssBox);
+ cssSplitter->addWidget(mColorsCssBox);
+
+ QSplitter *widgetmlCssSplit = new QSplitter(Qt::Vertical, this);
+ widgetmlCssSplit->addWidget(mWidgetMLBox);
+ widgetmlCssSplit->addWidget(cssSplitter);
mPathLabel = new QLabel("", this);
- mSizeHintLabel = new QLabel("", this);
- mSizeHintLabel->setAlignment(Qt::AlignRight);
- QGridLayout *layout = new QGridLayout(this);
- layout->addWidget(settings, 0, 0, 1, 4);
- layout->addWidget(lblWidgetML, 1, 0);
- layout->addWidget(mLayoutWidgetMLBox, 2, 0, 1, 4);
- layout->addWidget(lblLayout, 3, 0, 1, 2);
- layout->addWidget(lblColors, 3, 2, 1, 2);
- layout->addWidget(mLayoutCssBox, 4, 0, 1, 2);
- layout->addWidget(mColorsCssBox, 4, 2, 1, 2);
- layout->addWidget(mPathLabel, 5, 0, 1, 3);
- layout->addWidget(mSizeHintLabel, 5, 3, 1, 1);
- layout->setRowStretch(2, 2);
- layout->setRowStretch(4, 3);
+ QVBoxLayout *mainLayout = new QVBoxLayout(this);
+ mainLayout->addLayout(settingLayout);
+ mainLayout->addLayout(sizeLayout);
+ mainLayout->addWidget(widgetmlCssSplit);
+ mainLayout->addWidget(mPathLabel);
// Lock in left-to-right mode
mSizeHintLabel->setLayoutDirection(Qt::LeftToRight);
- lblColors->setLayoutDirection(Qt::LeftToRight);
- lblLayout->setLayoutDirection(Qt::LeftToRight);
mLayoutCssBox->setLayoutDirection(Qt::LeftToRight);
mColorsCssBox->setLayoutDirection(Qt::LeftToRight);
- mLayoutWidgetMLBox->setLayoutDirection(Qt::LeftToRight);
+ mWidgetMLBox->setLayoutDirection(Qt::LeftToRight);
- setLayout(layout);
+ // Set default options
+ mObjectNameCheck->setChecked(true);
+ mAnchorArrowsCheck->setChecked(true);
+ mSubitemOutlinesCheck->setChecked(true);
+ mSpacersCheck->setChecked(true);
+ mHoverRadio->setChecked(true);
+
+ setLayout(mainLayout);
}
@@ -559,7 +856,7 @@
HbMeshLayout *mesh = dynamic_cast<HbMeshLayout *>(widget->layout());
html = meshItemsToHtmlInfo(mesh, itemName, layoutName);
}
- mLayoutWidgetMLBox->setHtml(html);
+ mWidgetMLBox->setHtml(html);
}
// Update colours CSS box
@@ -571,6 +868,8 @@
// Update text labels
mSizeHintLabel->setText(cssItemHintText(item));
+ mSizePolicyHoriz->setText("Horizontal: " + cssSizePolicyText(item, Qt::Horizontal));
+ mSizePolicyVert->setText("Vertical: " + cssSizePolicyText(item, Qt::Vertical));
const QGraphicsItem *pathItem = item;
QString cssPath = cssItemText(pathItem);
while (pathItem->parentItem()) {
@@ -580,11 +879,13 @@
}
mPathLabel->setText(cssPath);
} else {
- mLayoutWidgetMLBox->setText("");
+ mWidgetMLBox->setText("");
mLayoutCssBox->setText("");
mColorsCssBox->setText("");
mPathLabel->setText("");
mSizeHintLabel->setText("");
+ mSizePolicyHoriz->setText("");
+ mSizePolicyVert->setText("");
}
}
@@ -596,8 +897,8 @@
bool HoveredWidgetFilter::eventFilter(QObject *obj, QEvent *event)
{
- if ((event->type() == QEvent::GraphicsSceneMouseMove && mLiveMode)
- || (event->type() == QEvent::GraphicsSceneMousePress && !mLiveMode)){
+ if ((event->type() == QEvent::GraphicsSceneMouseMove && mHoverMode)
+ || (event->type() == QEvent::GraphicsSceneMousePress && !mHoverMode)){
QGraphicsSceneMouseEvent *mouseEvent = static_cast<QGraphicsSceneMouseEvent *>(event);
QPointF eventPos = mouseEvent->scenePos();
@@ -645,7 +946,7 @@
if (mBlockingMode) {
return true;
}
- } else if(event->type() == QEvent::Leave && mLiveMode) {
+ } else if(event->type() == QEvent::Leave && mHoverMode) {
emit newItemHovered(0);
mCurrentItem = 0;
#ifdef HB_GESTURE_FW
@@ -662,7 +963,7 @@
}
HoveredWidgetFilter::HoveredWidgetFilter(QGraphicsScene *scene)
- : mScene(scene), mCurrentItem(0), mArrowDrawer(0), mCssInfoDrawer(0), mLiveMode(true), mBlockingMode(false)
+ : mScene(scene), mCurrentItem(0), mArrowDrawer(0), mCssInfoDrawer(0), mHoverMode(true), mBlockingMode(false)
{
mCssInfoDrawer = new HbCssInfoDrawer(0);
mScene->addItem(mCssInfoDrawer);
@@ -685,4 +986,4 @@
delete mArrowDrawer;
}
-#endif
+#endif // HB_CSS_INSPECTOR
--- a/src/hbcore/gui/hbcssinspector_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbcssinspector_p.h Thu May 27 13:10:59 2010 +0300
@@ -30,12 +30,12 @@
#include <QWidget>
#include <hbanchorlayout.h>
#include <hbwidgetbase.h>
-QT_FORWARD_DECLARE_CLASS(QTextEdit)
-QT_FORWARD_DECLARE_CLASS(QGraphicsScene)
+QT_FORWARD_DECLARE_CLASS(QCheckBox)
QT_FORWARD_DECLARE_CLASS(QGraphicsItem)
+QT_FORWARD_DECLARE_CLASS(QGraphicsScene)
QT_FORWARD_DECLARE_CLASS(QLabel)
-QT_FORWARD_DECLARE_CLASS(QCheckBox)
QT_FORWARD_DECLARE_CLASS(QRadioButton)
+QT_FORWARD_DECLARE_CLASS(QTextEdit)
QT_FORWARD_DECLARE_CLASS(HbAnchorArrowDrawer)
QT_FORWARD_DECLARE_CLASS(HbMeshLayout)
@@ -49,12 +49,17 @@
virtual ~HbCssInfoDrawer();
public slots:
- void setItemTextVisible(bool visible) { mShowItemText = visible; };
- void setHintTextVisible(bool visible) { mShowHintText = visible; };
+ void updateFocusItem(const QGraphicsItem* item);
+
void setBoxVisible(bool visible) { mShowBox = visible; };
- void setHintBoxVisible(bool visible) { mShowHintBox = visible; };
+ void setItemTextVisible(bool visible) { mShowItemText = visible; };
void setGuideLinesVisible(bool visible) { mDrawGuideLines = visible; };
- void updateFocusItem(const QGraphicsItem* item);
+
+ void setHintTextVisible(bool visible) { mShowHintText = visible; };
+ void setMinHintBoxVisible(bool visible) { mShowMinHintBox = visible; };
+ void setPrefHintBoxVisible(bool visible) { mShowPrefHintBox = visible; };
+ void setMaxHintBoxVisible(bool visible) { mShowMaxHintBox = visible; };
+ void setSizePrefsVisible(bool visible) { mShowSizePrefs = visible; };
protected:
void changeEvent(QEvent *event);
@@ -63,17 +68,25 @@
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
private:
- bool mShowItemText;
- bool mShowHintText;
- bool mShowBox;
- bool mShowHintBox;
- bool mDrawGuideLines;
QColor mTextColor;
QColor mBoxColor;
QString mItemText;
QString mHintText;
QRectF mItemRect;
- QRectF mHintRect;
+ QSizePolicy mItemPolicy;
+ QRectF mMinHintRect;
+ QRectF mPrefHintRect;
+ QRectF mMaxHintRect;
+
+ bool mShowBox;
+ bool mShowItemText;
+ bool mDrawGuideLines;
+
+ bool mShowHintText;
+ bool mShowMinHintBox;
+ bool mShowPrefHintBox;
+ bool mShowMaxHintBox;
+ bool mShowSizePrefs;
};
@@ -89,7 +102,7 @@
void newItemHovered(const QGraphicsItem* item);
public slots:
- void setLiveMode(bool enabled) { mLiveMode = enabled; };
+ void setHoverMode(bool enabled) { mHoverMode = enabled; };
void setBlockingMode(bool enabled) { mBlockingMode = enabled; };
protected:
@@ -100,13 +113,30 @@
QGraphicsItem *mCurrentItem;
HbAnchorArrowDrawer *mArrowDrawer;
HbCssInfoDrawer *mCssInfoDrawer;
- bool mLiveMode;
+ bool mHoverMode;
bool mBlockingMode;
friend class HbCssInspectorWindow;
};
+class CodeWidget : public QWidget
+{
+ Q_OBJECT
+
+public:
+ CodeWidget(const QString &title, QWidget *parent=0);
+ virtual ~CodeWidget();
+public slots:
+ void setText(const QString &text);
+ void setHtml(const QString &html);
+ void setLayoutDirection(Qt::LayoutDirection dir);
+private:
+ QLabel *mLabel;
+ QTextEdit *mTextBox;
+};
+
+
class HbCssInspectorWindow : public QWidget
{
Q_OBJECT
@@ -127,22 +157,31 @@
private:
explicit HbCssInspectorWindow(QWidget *parent = 0);
- QTextEdit *mLayoutWidgetMLBox;
- QTextEdit *mLayoutCssBox;
- QTextEdit *mColorsCssBox;
+ QVector<HoveredWidgetFilter*> mInstalledFilters;
+
+ CodeWidget *mWidgetMLBox;
+ CodeWidget *mLayoutCssBox;
+ CodeWidget *mColorsCssBox;
QLabel *mPathLabel;
QLabel *mSizeHintLabel;
- QCheckBox *mArrowsCheck;
- QCheckBox *mOutlinesCheck;
- QCheckBox *mHintOutlinesCheck;
+ QLabel *mSizePolicyHoriz;
+ QLabel *mSizePolicyVert;
+
+ QCheckBox *mObjectNameCheck;
+ QCheckBox *mAnchorArrowsCheck;
+ QCheckBox *mSubitemOutlinesCheck;
QCheckBox *mSpacersCheck;
- QCheckBox *mNameCheck;
- QCheckBox *mSizeHintCheck;
QCheckBox *mGuideLinesCheck;
- QRadioButton *mLiveRadio;
+
+ QCheckBox *mSizeHintTextCheck;
+ QCheckBox *mMinSizeHintCheck;
+ QCheckBox *mPrefSizeHintCheck;
+ QCheckBox *mMaxSizeHintCheck;
+ QCheckBox *mSizePrefCheck;
+
+ QRadioButton *mHoverRadio;
QRadioButton *mClickRadio;
QRadioButton *mBlockRadio;
- QVector<HoveredWidgetFilter*> mInstalledFilters;
};
#endif
--- a/src/hbcore/gui/hbmainwindow.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbmainwindow.cpp Thu May 27 13:10:59 2010 +0300
@@ -63,6 +63,7 @@
#ifdef Q_OS_SYMBIAN
#include <coecntrl.h>
+#include <w32std.h>
#include "hbnativewindow_sym_p.h"
#endif
@@ -92,14 +93,13 @@
really visible.
HbMainWindow has a signalling mechanism for helping control the
- application's view construction. viewReady()-signal is emitted
- when view's internal construction is completed and basic parts of
- view are already drawn. Same signal is also emitted when current
- view is switched. This helps applications to split the view
- construction to reasonable tasks. For example the lower priority
- tasks like opening network connection or preparing other currently
- hidden application views can happen on background when first view
- is already drawn.
+ application's view construction. The viewReady() signal is emitted when a
+ view's internal construction is completed and basic parts of view are
+ already drawn. Same signal is also emitted when current view has
+ changed. This helps applications to split the view construction to
+ reasonable tasks. For example the lower priority tasks like opening network
+ connection or preparing other currently hidden application views can happen
+ on background when first view is already drawn.
Example of simple Hb application constructing HbMainWindow:
@@ -172,6 +172,21 @@
This signal is emitted first time when window content is drawn on screen.
It will only be emitted again when current view is changed and drawn on screen.
+ This means that this signal is emitted in the following cases:
+
+ - When the mainwindow is fully constructed, this happens shortly after
+ painting it for the first time.
+
+ - When a new view is added using addView() or insertView() after the
+ mainwindow is fully constructed and the newly added view becomes the
+ current view. It will not be emitted when calling addView() or
+ insertView() before showing the mainwindow or entering the event loop
+ because in that case the signal will anyway be emitted later, when the
+ mainwindow becomes ready. It is also not emitted when the newly added view
+ does not become the current view.
+
+ - When the current view is changed using setCurrentView().
+
If the view switch is animated, the signal is emitted only after the effect has
completed.
@@ -213,8 +228,6 @@
d->q_ptr = this;
// No need for any default (e.g. blank white) background for this window.
- // Setting this attribute is mandatory in order to have a flicker-less
- // startup (both with and without splash screen).
setAttribute(Qt::WA_NoSystemBackground);
// Continue with basic initialization. Note: Prefer doing everything that is
@@ -408,6 +421,12 @@
d->mViewStackWidget->insertWidget(-1, view);
+ // If the newly added view becomes the current one then emit the viewReady
+ // signal (unless the delayed construction is still pending).
+ if (d->mDelayedConstructionHandled && currentView() == view) {
+ QMetaObject::invokeMethod(this, "_q_viewReady", Qt::QueuedConnection);
+ }
+
return view;
}
@@ -436,8 +455,15 @@
view->setWidget(widget);
}
}
+
d->mViewStackWidget->insertWidget(index, view);
+ // If the newly inserted view becomes the current one then emit the
+ // viewReady signal (unless the delayed construction is still pending).
+ if (d->mDelayedConstructionHandled && currentView() == view) {
+ QMetaObject::invokeMethod(this, "_q_viewReady", Qt::QueuedConnection);
+ }
+
return view;
}
@@ -534,8 +560,9 @@
// If animation is disabled or there is no view set currently then change
// without animation.
d->mViewStackWidget->setCurrentWidget(view);
- if (d->mDelayedConstructionHandled)
+ if (d->mDelayedConstructionHandled) {
QMetaObject::invokeMethod(this, "_q_viewReady", Qt::QueuedConnection);
+ }
}
}
}
@@ -699,6 +726,35 @@
}
/*!
+ Sets the background image drawing mode. This setting controls how
+ the background image is displayed.
+
+ By default the mode is set to Hb::ScaleBackgroundToFit.
+
+ \sa backgroundImageMode()
+ \sa Hb::BackgroundImageMode
+ */
+void HbMainWindow::setBackgroundImageMode(Hb::BackgroundImageMode mode)
+{
+ Q_D(HbMainWindow);
+ if (d->mBgItem) {
+ d->mBgItem->setImageMode(mode);
+ }
+}
+
+/*!
+ Returns the currently set background image drawing mode.
+
+ \sa setBackgroundImageMode()
+ \sa Hb::BackgroundImageMode
+ */
+Hb::BackgroundImageMode HbMainWindow::backgroundImageMode() const
+{
+ Q_D(const HbMainWindow);
+ return d->mBgItem ? d->mBgItem->imageMode() : Hb::ScaleBackgroundToFit;
+}
+
+/*!
Sets the animations enabled when the orientation is changed automatically.
By default animations are enabled.
@@ -857,6 +913,13 @@
}
// get rid of the splash screen widget (it is not visible to the user anyway at this point)
HbSplashScreen::destroy();
+#ifdef Q_OS_SYMBIAN
+ // disable surface transparency unless we were really asked to be transparent
+ if (!testAttribute(Qt::WA_TranslucentBackground)) {
+ RWindow *const window = static_cast<RWindow *>(effectiveWinId()->DrawableWindow());
+ window->SetSurfaceTransparency(false);
+ }
+#endif
}
// Notify that mainwindow is (most probably) ready.
// The signal must be emitted always, even when there was no need to do anything.
@@ -915,6 +978,21 @@
QGraphicsView::paintEvent(event);
}
+void HbMainWindow::showEvent(QShowEvent *event)
+{
+#ifdef Q_OS_SYMBIAN
+ // Enable surface transparency if QWidget did not do it already. This is a
+ // workaround for having non-transparent surfaces filled automatically with
+ // black color. The showEvent is a suitable place because the native control
+ // is already created at this point, but it is not too late either.
+ if (!testAttribute(Qt::WA_TranslucentBackground)) {
+ RWindow *const window = static_cast<RWindow *>(effectiveWinId()->DrawableWindow());
+ window->SetSurfaceTransparency(true);
+ }
+#endif
+ QGraphicsView::showEvent(event);
+}
+
/*!
Reimplemented from QAbstractScrollArea::scrollContentsBy().
*/
--- a/src/hbcore/gui/hbmainwindow.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbmainwindow.h Thu May 27 13:10:59 2010 +0300
@@ -72,6 +72,9 @@
void setBackgroundImageName(Qt::Orientation orientation, const QString &name);
QString backgroundImageName(Qt::Orientation orientation) const;
+ void setBackgroundImageMode(Hb::BackgroundImageMode mode);
+ Hb::BackgroundImageMode backgroundImageMode() const;
+
void setAutomaticOrientationEffectEnabled(bool enabled = true);
bool automaticOrientationEffectEnabled() const;
@@ -95,6 +98,7 @@
void customEvent(QEvent *event);
void scrollContentsBy(int dx, int dy);
void paintEvent(QPaintEvent *event);
+ void showEvent(QShowEvent *event);
HbMainWindowPrivate *const d_ptr;
--- a/src/hbcore/gui/hbmainwindow_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbmainwindow_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -52,11 +52,15 @@
#include "hbscreen_p.h"
#include "hbbackgrounditem_p.h"
#include "hbforegroundwatcher_p.h"
-
+#include "hbcorepskeys_p.h"
+#include "hbmainwindoworientation_p.h"
#ifdef Q_OS_SYMBIAN
#include "hbnativewindow_sym_p.h"
-#endif
+#include "hbdevicedialogserverdefs_p.h"
+
+const TUid deviceDialogUid = {0x20022FC5};
+#endif //Q_OS_SYMBIAN
const int HbMainWindowPrivate::IdleEvent = QEvent::registerEventType();
const int HbMainWindowPrivate::IdleOrientationEvent = QEvent::registerEventType();
@@ -79,10 +83,13 @@
mTitleBar(0),
mStatusBar(0),
mFadeItem(0),
- mRootItem(0),
+ mRootItem(0),
+ mPendingOrientationValue(0),
mAutomaticOrientationSwitch(true),
mUserOrientationSwitch(false),
mOrientationChangeOngoing(false),
+ mGVOrientationChangeEffectEnabled(false),
+ mPendingPsPublish(false),
mOrientation(Qt::Vertical),
mRequestedOrientation(Qt::Vertical),
mCurrentToolbar(0),
@@ -99,7 +106,8 @@
mAutomaticOrientationChangeAnimation(true)
#ifdef Q_OS_SYMBIAN
,
- mNativeWindow(0)
+ mNativeWindow(0),
+ mDevDlgClientSession(0)
#endif
{
}
@@ -253,20 +261,25 @@
{
Q_Q(HbMainWindow);
mRequestedOrientation = orientation;
-
+
if (mOrientationChangeOngoing) {
+ if (!mForceSetOrientation && !mUserOrientationSwitch) {
+ return;
+ } else {
+ HbEffectInternal::cancelAll();
+ }
+ }
+
+ if (mOrientation == orientation && !mForceSetOrientation && mEffectItem) {
return;
}
- if ( (mOrientation == orientation) && !mForceSetOrientation && mEffectItem) {
- return;
- }
-
+
// skip transition if graphicsview is not visible
mAnimateOrientationSwitch = animate;
if (!q->isVisible())
mAnimateOrientationSwitch = false;
-
+
// calling due to resize, orientation remains the same -> no signalling
if ( !((mOrientation == orientation) && mForceSetOrientation) ) {
// cancel all effects
@@ -277,9 +290,9 @@
emit q->aboutToChangeOrientation();
emit q->aboutToChangeOrientation(orientation, mAnimateOrientationSwitch);
}
-
+
mOrientation = orientation;
-
+
if (!mAnimateOrientationSwitch) {
HbEffect::disable(mEffectItem);
HbEffect::disable(&mGVWrapperItem);
@@ -293,7 +306,11 @@
//For mirroring case
changeSceneSize();
-
+
+#ifdef Q_OS_SYMBIAN
+ updateForegroundOrientationPSKey();
+#endif
+
HbEffect::start(mEffectItem, "rootItemFirstPhase", q, "rootItemFirstPhaseDone");
if (mAnimateOrientationSwitch) {
@@ -696,10 +713,9 @@
*/
void HbMainWindowPrivate::fadeScreen(qreal zValue)
{
- if (mFadeItem) {
- mFadeItem->setZValue(zValue);
- mFadeItem->show();
- }
+ initFadeItem();
+ mFadeItem->setZValue(zValue);
+ mFadeItem->show();
}
/*
@@ -709,8 +725,20 @@
*/
void HbMainWindowPrivate::unfadeScreen()
{
- if (mFadeItem) {
+ initFadeItem();
+ mFadeItem->hide();
+}
+
+/*
+ Creates the fade item.
+*/
+void HbMainWindowPrivate::initFadeItem()
+{
+ if (!mFadeItem) {
+ mFadeItem = new HbFadeItem;
+ mFadeItem->setZValue(HbPrivate::FadingItemZValue);
mFadeItem->hide();
+ mScene->addItem(mFadeItem);
}
}
@@ -946,11 +974,15 @@
connect(mStatusBar, SIGNAL(deactivated(const QList<IndicatorClientInfo> &)),
mTitleBar, SIGNAL(deactivated(const QList<IndicatorClientInfo> &)));
- mFadeItem = new HbFadeItem;
- mFadeItem->setZValue(HbPrivate::FadingItemZValue);
- mFadeItem->hide();
- mScene->addItem(mFadeItem);
+ initFadeItem();
+#ifdef Q_OS_SYMBIAN
+ mDevDlgConnectHelper = new HbDeviceDialogConnectHelper(this);
+ connect(mDevDlgConnectHelper, SIGNAL(sessionEstablished(RHbDeviceDialogClientSession *)),
+ this, SLOT(deviceDialogConnectionReady(RHbDeviceDialogClientSession *)));
+ mDevDlgConnectHelper->connect();
+#endif //Q_OS_SYMBIAN
+
_q_viewReady();
postIdleEvent(HbMainWindowPrivate::IdleEvent);
@@ -992,5 +1024,53 @@
}
}
+void HbMainWindowPrivate::setViewportSize(const QSizeF& newSize)
+{
+ mClippingItem->resize(newSize);
+ mLayoutRect = QRectF(QPointF(0,0), newSize);
+ mViewStackWidget->resize(newSize);
+}
+QSizeF HbMainWindowPrivate::viewPortSize() const
+{
+ return mClippingItem->size();
+}
+
+#ifdef Q_OS_SYMBIAN
+void HbMainWindowPrivate::updateForegroundOrientationPSKey()
+{
+ // check current process is not devicedialog
+ RProcess process;
+ if (process.SecureId().iId != deviceDialogUid.iUid) {
+ if (mDevDlgClientSession && !mPendingPsPublish) {
+ int orie = mOrientation;
+ if (!mAutomaticOrientationSwitch)
+ orie |= KHbFixedOrientationMask;
+ mDevDlgClientSession->SendSyncRequest( EHbSrvPublishOrientation, orie );
+ }
+ else if (mDevDlgClientSession && mPendingPsPublish) {
+ mDevDlgClientSession->SendSyncRequest( EHbSrvPublishOrientation, mPendingOrientationValue );
+ mPendingPsPublish = false;
+ mPendingOrientationValue = 0;
+ }
+ else if (!mDevDlgClientSession && !mPendingPsPublish) {
+ mPendingOrientationValue = mOrientation;
+ if (!mAutomaticOrientationSwitch)
+ mPendingOrientationValue |= KHbFixedOrientationMask;
+ mPendingPsPublish = true;
+ }
+ }
+ process.Close();
+}
+#endif
+
+#ifdef Q_OS_SYMBIAN
+void HbMainWindowPrivate::deviceDialogConnectionReady(RHbDeviceDialogClientSession *clientSession)
+{
+ mDevDlgClientSession = clientSession;
+ if (mPendingPsPublish)
+ updateForegroundOrientationPSKey();
+}
+
+#endif //Q_OS_SYMBIAN
// end of file
--- a/src/hbcore/gui/hbmainwindow_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbmainwindow_p.h Thu May 27 13:10:59 2010 +0300
@@ -41,6 +41,10 @@
#include "hbdeviceprofile.h"
#include "hbeffect.h"
#include "hbeffectinternal_p.h"
+#ifdef Q_OS_SYMBIAN
+#include <hbdevicedialogclientsession_p.h>
+#include <hbdevicedialogconnecthelper_p.h>
+#endif
class HbBackgroundItem;
class HbGraphicsScene;
@@ -98,6 +102,7 @@
void updateRotationEffects();
void addBackgroundItem();
void removeBackgroundItem();
+ void initFadeItem();
void postIdleEvent(int eventId);
@@ -118,6 +123,7 @@
QGraphicsWidget *mRootItem;
QGraphicsWidget *mEffectItem;
Qt::Orientation mDefaultOrientation;
+ int mPendingOrientationValue;
qreal mOrientationAngle;
QList<QGraphicsItem*> mItemList;
QList<QGraphicsItem*> mOrientationChangeEffectItems;
@@ -126,6 +132,7 @@
bool mOrientationChangeOngoing;
bool mAnimateOrientationSwitch;
bool mGVOrientationChangeEffectEnabled;
+ bool mPendingPsPublish;
Qt::Orientation mOrientation;
Qt::Orientation mRequestedOrientation;
HbToolBar *mCurrentToolbar;
@@ -154,8 +161,9 @@
QTranslator mCommonTranslator;
#ifdef Q_OS_SYMBIAN
HbNativeWindow *mNativeWindow;
+ RHbDeviceDialogClientSession *mDevDlgClientSession;
+ HbDeviceDialogConnectHelper *mDevDlgConnectHelper;
#endif
-
void rootItemFirstPhaseDone(const HbEffect::EffectStatus& status);
void rootItemFinalPhaseDone(const HbEffect::EffectStatus& status);
void orientationEffectFinished(const HbEffect::EffectStatus& status);
@@ -182,33 +190,26 @@
static const int IdleOrientationEvent;
static const int IdleOrientationFinalEvent;
+ void setViewportSize(const QSizeF& newSize);
+ QSizeF viewPortSize() const;
+
+ static HbMainWindowPrivate *d_ptr(HbMainWindow *mainWindow) {
+ Q_ASSERT(mainWindow);
+ return mainWindow->d_func();
+ }
+
signals:
void idleEventDispatched();
public slots:
void menuClosed();
+#ifdef Q_OS_SYMBIAN
+ void updateForegroundOrientationPSKey();
+ void deviceDialogConnectionReady(RHbDeviceDialogClientSession *clientSession);
+#endif
-private:
- static HbMainWindowPrivate *d_ptr(HbMainWindow *mainWindow) {
- Q_ASSERT(mainWindow);
- return mainWindow->d_func();
- }
- friend class HbPopupManagerPrivate;
- friend class HbInstance;
- friend class HbInstancePrivate;
- friend class HbDeviceProfileManager;
- friend class HbDeviceProfile;
- friend class HbView;
- friend class HbVgEffectPrivate;
- friend class HbContentWidget;
- friend class HbSplashGenerator;
- friend class TestHbDeviceProfile;
- friend class TestHbGridView;
- friend class TestHbMainWindow;
- friend class HbMainWindowOrientation;
- friend class HbScreen;
- friend class HbSettingsWindow;
- friend class TestHbSensorOrientation;
+ friend class HbForegroundWatcher;
+ friend class HbDeviceDialogConnectHelperPrivate;
};
#endif // HBMAINWINDOW_P_H
--- a/src/hbcore/gui/hbmenu.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbmenu.cpp Thu May 27 13:10:59 2010 +0300
@@ -779,17 +779,14 @@
QPainterPath HbMenu::shape() const
{
- /*
- QRectF sceneRect = mapRectToScene(QRectF(-0.5, -0.5, boundingRect().width() + 0.5, boundingRect().height() + 0.5));
+ /*QRectF sceneRect = mapRectToScene(QRectF(-0.5, -0.5, boundingRect().width() + 0.5, boundingRect().height() + 0.5));
QRectF clipRect = sceneRect.intersected(QRectF(pos().x() - 0.5, pos().y() - 0.5, size().width() + 0.5, size().height() + 0.5));
QPainterPath path;
path.addRect(mapRectFromScene(clipRect));
- return path.intersected(HbPopup::shape());
- */
-
- return HbPopup::shape();
+ return path.intersected(HbPopup::shape());*/
+ return HbPopup::shape();
}
/*!
--- a/src/hbcore/gui/hbscrollarea.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbscrollarea.cpp Thu May 27 13:10:59 2010 +0300
@@ -815,6 +815,7 @@
if (gesture->state() == Qt::GestureStarted) {
if (d->mIsAnimating && !d->positionOutOfBounds() && !d->mMultiFlickEnabled) {
d->stopAnimating();
+ HbWidgetFeedback::triggered(this, Hb::InstantPressed, Hb::ModifierScrolling);
event->accept(gesture);
} else {
event->ignore(gesture);
--- a/src/hbcore/gui/hbsettingswindow_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbsettingswindow_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -86,6 +86,7 @@
{
mLights = true;
mAnimation = true;
+ mCustomViewPortSize = false;
windowComboBox = new QComboBox(this);
windowComboBox->hide();
@@ -99,8 +100,8 @@
mLights = true;
HbIcon icon("qtg_mono_light");
mLightsButton = new QPushButton(icon.pixmap(), "", this);
-
mAnimationButton = new QPushButton(tr("&Animation on"), this);
+ mViewPortSizeButton = new QPushButton(tr("&Set custom ViewPortSize"),this);
resolutionComboBox->addItems(HbDeviceProfile::profileNames());
directionComboBox->addItems(QStringList() << tr("Left to right") << tr("Right to left"));
@@ -118,6 +119,7 @@
connect(mUnsetOrientationButton, SIGNAL(pressed()), SLOT(unsetOrientation()));
connect(mLightsButton, SIGNAL(pressed()), SLOT(toggleLights()));
connect(mAnimationButton, SIGNAL(pressed()), SLOT(toggleAnimation()));
+ connect(mViewPortSizeButton, SIGNAL(pressed()), SLOT(resizeViewPort()));
QVBoxLayout *boxLayout = new QVBoxLayout(this);
@@ -127,6 +129,7 @@
layout->addRow(tr("&Resolution"), resolutionComboBox);
layout->addRow(tr("&Direction"), directionComboBox);
layout->addRow(tr("&Drag to resize"), dragToResizeComboBox);
+ layout->addRow(mViewPortSizeButton);
mainGroup->setLayout(layout);
boxLayout->addWidget(mainGroup);
@@ -388,3 +391,22 @@
}
}
+
+void HbSettingsWindow::resizeViewPort()
+{
+ HbMainWindow *window = hbInstance->allMainWindows().at(0);
+ if (!mCustomViewPortSize) {
+ mViewPortOriginalSize = window->size();
+ QSizeF newSize = mViewPortOriginalSize;
+ newSize.scale(mViewPortOriginalSize.width(),mViewPortOriginalSize.height()-150,Qt::IgnoreAspectRatio);
+ HbMainWindowPrivate::d_ptr(window)->setViewportSize(newSize);
+ mCustomViewPortSize = true;
+ mViewPortSizeButton->setText(tr("&Set original ViewPortSize"));
+ } else {
+ HbMainWindowPrivate::d_ptr(window)->setViewportSize(mViewPortOriginalSize);
+ mCustomViewPortSize = false;
+ mViewPortSizeButton->setText(tr("&Set custom ViewPortSize"));
+ }
+
+}
+
--- a/src/hbcore/gui/hbsettingswindow_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbsettingswindow_p.h Thu May 27 13:10:59 2010 +0300
@@ -57,6 +57,7 @@
void unsetOrientation();
void toggleLights();
void toggleAnimation();
+ void resizeViewPort();
private:
void initStartUpValues();
@@ -77,8 +78,11 @@
QPushButton *mUnsetOrientationButton;
QPushButton *mLightsButton;
QPushButton *mAnimationButton;
+ QPushButton *mViewPortSizeButton;
bool mLights;
bool mAnimation;
+ bool mCustomViewPortSize;
+ QSizeF mViewPortOriginalSize;
#ifdef HB_CSS_INSPECTOR
QPushButton *cssWindowButton;
--- a/src/hbcore/gui/hbsplash.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbsplash.cpp Thu May 27 13:10:59 2010 +0300
@@ -24,13 +24,16 @@
****************************************************************************/
#include "hbsplash_p.h"
+#include "hbsplash_direct_symbian_p.h"
#include <QDir>
#include <QFile>
#include <QTime>
+#include <QScopedPointer>
#ifdef Q_OS_SYMBIAN
#include <e32std.h>
#include <f32file.h>
+#include <fbs.h>
#include "hborientationstatus_p.h"
#include "hbsplashdefs_p.h"
#endif
@@ -72,6 +75,8 @@
QString screenId;
HbSplash::AllocFunc allocFunc;
void *allocFuncParam;
+ quint32 extra;
+ bool forceFile;
};
struct File {
@@ -94,18 +99,30 @@
#endif
}
-static uchar *readSpl(File &f, const Params ¶ms)
+static uchar *readSpl(File &f, Params ¶ms)
{
- int w = 0, h = 0, bpl = 0;
+ quint32 w = 0, h = 0, bpl = 0;
QImage::Format fmt = QImage::Format_Invalid;
- f.read((char *) &w, sizeof(int));
- f.read((char *) &h, sizeof(int));
- f.read((char *) &bpl, sizeof(int));
- f.read((char *) &fmt, sizeof(QImage::Format));
+ // Have to read the header in one piece in order to minimize the
+ // number of read() calls.
+ const int headerLength = sizeof(quint32) * 5;
+ char headerBuf[headerLength];
+ qMemSet(headerBuf, 0, headerLength);
+ f.read(headerBuf, headerLength);
+ quint32 *headerPtr = reinterpret_cast<quint32 *>(headerBuf);
+ w = *headerPtr++;
+ h = *headerPtr++;
+ bpl = *headerPtr++;
+ fmt = (QImage::Format) *headerPtr++;
+ params.extra = *headerPtr;
if (fmt != QImage::Format_ARGB32_Premultiplied) {
- qWarning("HbSplash: image format for %s is not ARGB32_PRE (is %d instead)",
+ qWarning("[hbsplash] Image format for %s is not ARGB32_PRE (is %d instead)",
qPrintable(f.mFullName), fmt);
}
+ if (fmt < 0 || fmt >= QImage::NImageFormats) {
+ qWarning("[hbsplash] Image format is invalid");
+ return 0;
+ }
qint64 sz = h * bpl;
uchar *data = 0;
if (w > 0 && h > 0 && bpl > 0 && sz > 0 && sz <= image_bytes_limit) {
@@ -116,20 +133,20 @@
data = new uchar[sz];
}
if (data) {
- qint64 bytesRead = f.read((char *) data, sz);
+ qint64 bytesRead = f.read(reinterpret_cast<char *>(data), sz);
if (bytesRead != sz) {
- qWarning("HbSplash: file %s is invalid", qPrintable(f.mFullName));
+ qWarning("[hbsplash] File %s is invalid", qPrintable(f.mFullName));
if (!params.allocFunc) {
- delete data;
+ delete[] data;
}
data = 0;
}
}
} catch (const std::bad_alloc &) {
- qWarning("HbSplash: failed to allocate image buffer");
+ qWarning("[hbsplash] Failed to allocate image buffer");
}
} else {
- qWarning("HbSplash: image in file %s is too big", qPrintable(f.mFullName));
+ qWarning("[hbsplash] Image in file %s is too big", qPrintable(f.mFullName));
}
*params.w = w;
*params.h = h;
@@ -140,13 +157,27 @@
#ifdef Q_OS_SYMBIAN
+// Symbian-specific implementation to get splash screens either by
+// reading from a file opened on the server side or by using bitmaps
+// shared via fbserv.
+
class HbSplashSrvClient : public RSessionBase
{
public:
HbSplashSrvClient();
~HbSplashSrvClient();
bool Connect();
- bool getSplash(RFile &f, const QString &ori, const QString &appId, const QString &screenId);
+
+ bool getSplashFileHandle(RFile &f,
+ const QString &ori,
+ const QString &appId,
+ const QString &screenId);
+
+ uchar *getSplashFromBitmap(const QString &ori,
+ const QString &appId,
+ const QString &screenId,
+ Params ¶ms);
+
private:
RMutex mMutex;
bool mMutexOk;
@@ -185,9 +216,8 @@
if (err == KErrNone) {
ok = true;
break;
-/*
} else if (err == KErrNotFound || err == KErrServerTerminated) {
- qDebug("[hbsplash] Server not running");
+ qDebug("[hbsplash] server not running");
TFindServer findServer(hbsplash_server_name);
TFullName name;
if (findServer.Next(name) != KErrNone) {
@@ -211,15 +241,14 @@
qWarning("[hbsplash] Rendezvous failed (%d)", status.Int());
break;
}
- qDebug("[hbsplash] Server started");
+ qDebug("[hbsplash] server started");
}
-*/
} else {
break;
}
}
if (!ok) {
- qWarning("[hbsplash] cannot connect to splashgen server");
+ qWarning("[hbsplash] Cannot connect to splashgen server");
}
if (mMutexOk) {
mMutex.Signal();
@@ -227,8 +256,10 @@
return ok;
}
-bool HbSplashSrvClient::getSplash(RFile &f, const QString &ori,
- const QString &appId, const QString &screenId)
+bool HbSplashSrvClient::getSplashFileHandle(RFile &f,
+ const QString &ori,
+ const QString &appId,
+ const QString &screenId)
{
TPtrC oriDes(static_cast<const TUint16 *>(ori.utf16()), ori.length());
TPtrC appIdDes(static_cast<const TUint16 *>(appId.utf16()), appId.length());
@@ -236,11 +267,62 @@
TInt fileHandle;
TPckg<TInt> fileHandlePckg(fileHandle);
TIpcArgs args(&oriDes, &appIdDes, &screenIdDes, &fileHandlePckg);
- TInt fsHandle = SendReceive(HbSplashSrvGetSplash, args);
+ TInt fsHandle = SendReceive(HbSplashSrvGetSplashFile, args);
return f.AdoptFromServer(fsHandle, fileHandle) == KErrNone;
}
-static uchar *load_symbian(const Params ¶ms)
+uchar *HbSplashSrvClient::getSplashFromBitmap(const QString &ori,
+ const QString &appId,
+ const QString &screenId,
+ Params ¶ms)
+{
+ TPtrC oriDes(static_cast<const TUint16 *>(ori.utf16()), ori.length());
+ TPtrC appIdDes(static_cast<const TUint16 *>(appId.utf16()), appId.length());
+ TPtrC screenIdDes(static_cast<const TUint16 *>(screenId.utf16()), screenId.length());
+ TInt bitmapHandle;
+ TPckg<TInt> bitmapHandlePckg(bitmapHandle);
+ TIpcArgs args(&oriDes, &appIdDes, &screenIdDes, &bitmapHandlePckg);
+ if (SendReceive(HbSplashSrvGetSplashData, args) == KErrNone) {
+ QScopedPointer<CFbsBitmap> bmp(new CFbsBitmap);
+ if (bmp->Duplicate(bitmapHandle) == KErrNone) {
+ TSize size = bmp->SizeInPixels();
+ TDisplayMode mode = bmp->DisplayMode();
+ if (size.iWidth > 0 && size.iHeight > 0 && mode == EColor16MAP) {
+ int bpl = CFbsBitmap::ScanLineLength(size.iWidth, mode);
+ const QImage::Format fmt = QImage::Format_ARGB32_Premultiplied;
+ int len = bpl * size.iHeight;
+ uchar *data = 0;
+ try {
+ if (params.allocFunc) {
+ data = params.allocFunc(size.iWidth, size.iHeight,
+ bpl, fmt, params.allocFuncParam);
+ } else {
+ data = new uchar[len];
+ }
+ if (data) {
+ memcpy(data, bmp->DataAddress(), len);
+ *params.w = size.iWidth;
+ *params.h = size.iHeight;
+ *params.bpl = bpl;
+ *params.fmt = fmt;
+ qDebug("[hbsplash] bitmap data received");
+ return data;
+ }
+ } catch (const std::bad_alloc &) {
+ qWarning("[hbsplash] Failed to allocate image buffer");
+ }
+ } else {
+ qWarning("[hbsplash] Invalid bitmap (%d %d %d)",
+ size.iWidth, size.iHeight, mode);
+ }
+ } else {
+ qWarning("[hbsplash] Cannot duplicate bitmap");
+ }
+ }
+ return 0;
+}
+
+static uchar *load_symbian(Params ¶ms)
{
HbSplashSrvClient client;
if (!client.Connect()) {
@@ -255,12 +337,16 @@
}
uchar *data = 0;
- File f;
- f.mFullName = "[unavailable]";
- if (client.getSplash(f.mFile, oriStr, appIdStr, params.screenId)) {
- qDebug("[hbsplash] got handle from server");
- data = readSpl(f, params);
- f.mFile.Close();
+ if (!params.forceFile) {
+ data = client.getSplashFromBitmap(oriStr, appIdStr, params.screenId, params);
+ } else {
+ File f;
+ f.mFullName = "[unavailable]";
+ if (client.getSplashFileHandle(f.mFile, oriStr, appIdStr, params.screenId)) {
+ qDebug("[hbsplash] got handle from server");
+ data = readSpl(f, params);
+ f.mFile.Close();
+ }
}
client.Close();
@@ -269,7 +355,11 @@
#else
-static uchar *read_file_generic(const QString &name, const Params ¶ms)
+// Generic cross-platform implementation, reads the pixel data
+// directly from files. Not suitable for Symbian due to platsec and
+// performance reasons.
+
+static uchar *read_file_generic(const QString &name, Params ¶ms)
{
uchar *data = 0;
File f;
@@ -282,7 +372,7 @@
return data;
}
-static uchar *load_generic(const Params ¶ms)
+static uchar *load_generic(Params ¶ms)
{
QString appSpecificName("splash_%1_%2.spl");
QString appAndScreenSpecificName("splash_%1_%2_%3.spl");
@@ -361,9 +451,65 @@
params.screenId = screenId;
params.allocFunc = allocFunc;
params.allocFuncParam = allocFuncParam;
+ params.forceFile = false; // use CFbsBitmap-based sharing on Symbian
#ifdef Q_OS_SYMBIAN
return load_symbian(params);
#else
return load_generic(params);
#endif
}
+
+#ifdef Q_OS_SYMBIAN
+static uchar *fbsBitmapAllocFunc(int w, int h, int bpl, QImage::Format fmt, void *param)
+{
+ if (fmt != QImage::Format_ARGB32_Premultiplied) {
+ qWarning("[hbsplash] fbsBitmapAllocFunc: unsupported format %d", fmt);
+ return 0;
+ }
+ TDisplayMode mode = EColor16MAP;
+ CFbsBitmap *bmp = static_cast<CFbsBitmap *>(param);
+ if (bmp->Create(TSize(w, h), mode) == KErrNone) {
+ int bmpBpl = CFbsBitmap::ScanLineLength(w, mode);
+ if (bpl == bmpBpl) {
+ return reinterpret_cast<uchar *>(bmp->DataAddress());
+ } else {
+ qWarning("[hbsplash] fbsBitmapAllocFunc: bpl mismatch (%d - %d)", bpl, bmpBpl);
+ }
+ } else {
+ qWarning("[hbsplash] fbsBitmapAllocFunc: bitmap Create() failed");
+ }
+ return 0;
+}
+#endif
+
+void *HbSplashDirectSymbian::load(void *file, int *extra)
+{
+#ifdef Q_OS_SYMBIAN
+ // Read the data directly into a CFbsBitmap. `file' is assumed to
+ // be a ptr to an already Open()'ed RFile.
+ QScopedPointer<CFbsBitmap> bmp(new CFbsBitmap);
+ int w, h, bpl;
+ QImage::Format fmt;
+ Params params;
+ // Everything is ignored except the alloc-func and its param.
+ params.w = &w;
+ params.h = &h;
+ params.bpl = &bpl;
+ params.fmt = &fmt;
+ params.flags = HbSplashScreen::Default;
+ params.allocFunc = fbsBitmapAllocFunc;
+ params.allocFuncParam = bmp.data();
+ File f;
+ f.mFile = *static_cast<RFile *>(file);
+ if (readSpl(f, params)) {
+ if (extra) {
+ *extra = params.extra;
+ }
+ return bmp.take();
+ }
+#else
+ Q_UNUSED(file);
+ Q_UNUSED(extra);
+#endif
+ return 0;
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/gui/hbsplash_direct_symbian_p.h Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,37 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#ifndef HBSPLASH_DIRECT_SYMBIAN_P_H
+#define HBSPLASH_DIRECT_SYMBIAN_P_H
+
+#include "hbsplash_p.h"
+
+class HB_CORE_PRIVATE_EXPORT HbSplashDirectSymbian : public HbSplash
+{
+public:
+ static void *load(void *file, int *extra);
+};
+
+#endif
--- a/src/hbcore/gui/hbsplash_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbsplash_p.h Thu May 27 13:10:59 2010 +0300
@@ -30,7 +30,7 @@
#include <hbsplashscreen.h>
#include <QImage>
-class HB_AUTOTEST_EXPORT HbSplash
+class HB_CORE_PRIVATE_EXPORT HbSplash
{
public:
typedef uchar *(*AllocFunc)(int w, int h, int bpl, QImage::Format fmt, void *param);
--- a/src/hbcore/gui/hbsplashdefs_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbsplashdefs_p.h Thu May 27 13:10:59 2010 +0300
@@ -39,7 +39,8 @@
const TUid hbsplash_server_uid3 = { 0x2002E68B };
enum HbSplashServerFuncs {
- HbSplashSrvGetSplash = 1
+ HbSplashSrvGetSplashFile = 1,
+ HbSplashSrvGetSplashData
};
enum HbSplashServerPanics {
--- a/src/hbcore/gui/hbsplashscreen.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbsplashscreen.cpp Thu May 27 13:10:59 2010 +0300
@@ -24,30 +24,10 @@
****************************************************************************/
#include "hbsplashscreen.h"
+#include "hbsplashscreen_generic_p.h"
#include "hbsplash_p.h"
#include <QPainter>
-#include <QImage>
#include <QApplication>
-#include <QWidget>
-#include <QPixmap>
-
-// To play nice with GPU resources it may be beneficial to avoid using QWidget
-// for showing the splash screen. (each top-level widget results in creating a
-// new window surface which consumes gpu memory) Instead, we can create & show a
-// CCoeControl which draws using the traditional Symbian GC methods. (And thus
-// uses the "legacy" surface which is still available currently. However if some
-// day it is removed then this solution will not work anymore.)
-#ifdef Q_OS_SYMBIAN
-// Do not enable for now, may cause some flickering.
-// The system transition effects may not like this solution anyway.
-//#define HB_SPLASH_USE_SYMBIAN_LEGACY_SURFACE
-#endif
-
-#ifdef HB_SPLASH_USE_SYMBIAN_LEGACY_SURFACE
-#include <coecntrl.h>
-#include <fbs.h>
-#include <w32std.h>
-#endif
/*!
@stable
@@ -90,50 +70,6 @@
result the splash screen will also be forced to horizontal orientation.
*/
-class HbSplashScreenInterface
-{
-public:
- virtual ~HbSplashScreenInterface() {}
- virtual void start(HbSplashScreen::Flags flags) = 0;
- virtual void release() = 0;
-};
-
-class HbSplashScreenGeneric : public QWidget, public HbSplashScreenInterface
-{
-public:
- HbSplashScreenGeneric();
- ~HbSplashScreenGeneric();
-
- void start(HbSplashScreen::Flags flags);
- void release();
-
-private:
- void paintEvent(QPaintEvent *event);
- void repaint();
-
- uchar *mImageData;
- QPixmap mContents;
-};
-
-#ifdef HB_SPLASH_USE_SYMBIAN_LEGACY_SURFACE
-
-class HbSplashScreenSymbian : public CCoeControl, public HbSplashScreenInterface
-{
-public:
- HbSplashScreenSymbian();
- ~HbSplashScreenSymbian();
-
- void start(HbSplashScreen::Flags flags);
- void release();
-
-private:
- void Draw(const TRect &rect) const;
-
- CFbsBitmap *mContents;
-};
-
-#endif // HB_SPLASH_USE_SYMBIAN_LEGACY_SURFACE
-
static HbSplashScreenInterface *splashScreen = 0;
struct RequestProps {
@@ -153,13 +89,7 @@
void HbSplashScreen::start(Flags flags)
{
if (!splashScreen) {
- splashScreen =
-#ifdef HB_SPLASH_USE_SYMBIAN_LEGACY_SURFACE
- new HbSplashScreenSymbian
-#else
- new HbSplashScreenGeneric
-#endif
- ;
+ splashScreen = new HbSplashScreenGeneric;
}
splashScreen->start(flags | requestProps()->mSplashFlags);
}
@@ -244,6 +174,8 @@
requestProps()->mScreenId = screenId;
}
+const int auto_stop_interval = 10000; // 10 sec
+
HbSplashScreenGeneric::HbSplashScreenGeneric()
: QWidget(0, Qt::SplashScreen), mImageData(0)
{
@@ -251,7 +183,10 @@
HbSplashScreenGeneric::~HbSplashScreenGeneric()
{
- delete mImageData;
+ if (mImageData) {
+ qDebug("[hbsplash] destroying splash screen");
+ delete mImageData;
+ }
}
void HbSplashScreenGeneric::release()
@@ -269,12 +204,12 @@
mImageData = HbSplash::load(w, h, bpl, fmt, flags,
props->mAppId, props->mScreenId);
if (mImageData) {
- QImage img(mImageData, w, h, bpl, fmt);
- mContents = QPixmap::fromImage(img);
+ mContents = QImage(mImageData, w, h, bpl, fmt);
resize(mContents.size());
}
}
if (!mContents.isNull()) {
+ qDebug("[hbsplash] splash screen initialized");
#ifdef Q_OS_SYMBIAN
showFullScreen();
#else
@@ -282,6 +217,14 @@
#endif
QApplication::processEvents();
QApplication::flush();
+ // The splash screen must be destroyed automatically when
+ // loosing foreground.
+ if (QApplication::instance()) {
+ QApplication::instance()->installEventFilter(this);
+ }
+ // The splash screen must be destroyed automatically after
+ // a certain amount of time.
+ mTimerId = startTimer(auto_stop_interval);
}
} catch (const std::bad_alloc &) {
}
@@ -291,7 +234,7 @@
{
Q_UNUSED(event);
QPainter painter(this);
- painter.drawPixmap(QPointF(0, 0), mContents);
+ painter.drawImage(QPointF(0, 0), mContents);
}
void HbSplashScreenGeneric::repaint()
@@ -300,84 +243,23 @@
QApplication::flush();
}
-#ifdef HB_SPLASH_USE_SYMBIAN_LEGACY_SURFACE
-
-HbSplashScreenSymbian::HbSplashScreenSymbian()
- : mContents(0)
-{
-}
-
-HbSplashScreenSymbian::~HbSplashScreenSymbian()
-{
- delete mContents;
-}
-
-void HbSplashScreenSymbian::release()
+void HbSplashScreenGeneric::timerEvent(QTimerEvent *event)
{
- delete this;
-}
-
-static uchar *fbsBitmapAllocFunc(int w, int h, int bpl, QImage::Format fmt, void *param)
-{
- if (fmt != QImage::Format_ARGB32_Premultiplied) {
- qWarning("HbSplash: fbsBitmapAllocFunc: unsupported format %d", fmt);
- return 0;
- }
- TDisplayMode mode = EColor16MAP;
- CFbsBitmap *bmp = static_cast<CFbsBitmap *>(param);
- if (bmp->Create(TSize(w, h), mode) == KErrNone) {
- int bmpBpl = CFbsBitmap::ScanLineLength(w, mode);
- if (bpl == bmpBpl) {
- return reinterpret_cast<uchar *>(bmp->DataAddress());
- } else {
- qWarning("HbSplash: fbsBitmapAllocFunc: bpl mismatch (%d - %d)", bpl, bmpBpl);
- }
+ if (event->timerId() == mTimerId) {
+ qDebug("[hbsplash] timeout while splash screen is active");
+ deleteLater();
+ splashScreen = 0;
} else {
- qWarning("HbSplash: fbsBitmapAllocFunc: bitmap Create() failed");
- }
- return 0;
-}
-
-void HbSplashScreenSymbian::start(HbSplashScreen::Flags flags)
-{
- try {
- if (!mContents) {
- mContents = new CFbsBitmap;
- int w, h, bpl;
- QImage::Format fmt;
- RequestProps *props = requestProps();
- if (HbSplash::load(w, h, bpl, fmt, flags,
- props->mAppId, props->mScreenId,
- fbsBitmapAllocFunc, mContents))
- {
- TRect rect(TPoint(0, 0), TSize(w, h));
- TRAPD(err, {
- CreateWindowL();
- RWindow *window = static_cast<RWindow *>(DrawableWindow());
- window->SetSurfaceTransparency(ETrue);
- SetRect(rect);
- ActivateL(); });
- if (err == KErrNone) {
- MakeVisible(ETrue);
- DrawNow();
- } else {
- qWarning("HbSplash: symbian control init failed (%d)", err);
- }
- } else {
- delete mContents;
- mContents = 0;
- }
- }
- } catch (const std::bad_alloc &) {
+ QWidget::timerEvent(event);
}
}
-void HbSplashScreenSymbian::Draw(const TRect &rect) const
+bool HbSplashScreenGeneric::eventFilter(QObject *obj, QEvent *event)
{
- Q_UNUSED(rect);
- if (mContents) {
- SystemGc().BitBlt(TPoint(0, 0), mContents);
+ if (event->type() == QEvent::ApplicationDeactivate) {
+ qDebug("[hbsplash] foreground lost while splash screen is active");
+ deleteLater();
+ splashScreen = 0;
}
+ return QWidget::eventFilter(obj, event);
}
-
-#endif // HB_SPLASH_USE_SYMBIAN_LEGACY_SURFACE
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/gui/hbsplashscreen_generic_p.h Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,61 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#ifndef HBSPLASHSCREENGENERIC_P_H
+#define HBSPLASHSCREENGENERIC_P_H
+
+#include "hbsplashscreen.h"
+#include <QWidget>
+#include <QImage>
+
+class HbSplashScreenInterface
+{
+public:
+ virtual ~HbSplashScreenInterface() {}
+ virtual void start(HbSplashScreen::Flags flags) = 0;
+ virtual void release() = 0;
+};
+
+class HbSplashScreenGeneric : public QWidget, public HbSplashScreenInterface
+{
+public:
+ HbSplashScreenGeneric();
+ ~HbSplashScreenGeneric();
+
+ void start(HbSplashScreen::Flags flags);
+ void release();
+
+private:
+ void paintEvent(QPaintEvent *event);
+ void repaint();
+ void timerEvent(QTimerEvent *event);
+ bool eventFilter(QObject *obj, QEvent *event);
+
+ uchar *mImageData;
+ QImage mContents;
+ int mTimerId;
+};
+
+#endif
--- a/src/hbcore/gui/hbview.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbview.cpp Thu May 27 13:10:59 2010 +0300
@@ -878,6 +878,27 @@
}
/*!
+ \reimp
+ */
+void HbView::changeEvent(QEvent *event){
+
+ // We're listening for layout direction changes, because the screen needs to be
+ // repolished, if the layout direction changes and the titlebar is minimizable.
+ // We have to listen to the event here(and not in the titlebar), cause the layout
+ // direction change event is delivered to the titlebar (cause it does not mirror)
+ if (event->type() == QEvent::LayoutDirectionChange
+ && isVisible()
+ && (viewFlags() & ViewTitleBarMinimizable)){
+ HbMainWindow *mw = mainWindow();
+ if (mw && mw->currentView() == this){
+ HbMainWindowPrivate::d_ptr(mw)->mClippingItem->decoratorVisibilityChanged();
+ }
+ }
+
+ HbWidget::changeEvent( event );
+}
+
+/*!
Removes the menu from the view and returns it to the caller.
Ownership of the menu is transferred to the caller.
--- a/src/hbcore/gui/hbview.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbview.h Thu May 27 13:10:59 2010 +0300
@@ -129,6 +129,7 @@
HbView( HbViewPrivate &dd, QGraphicsItem *parent );
bool event(QEvent *event);
+ void changeEvent(QEvent *event);
private slots:
#ifdef HB_EFFECTS
--- a/src/hbcore/gui/hbwidget.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/gui/hbwidget.cpp Thu May 27 13:10:59 2010 +0300
@@ -114,7 +114,7 @@
return newSpacer;
}
-/*
+/*!
\deprecated HbWidget::setBackgroundItem(HbStyle::Primitive, int)
is deprecated. Use HbWidget::setBackgroundItem(QGraphicsItem *item, int zValue) instead.
@@ -152,7 +152,7 @@
}
}
-/*
+/*!
Sets background item to the widget.
The item will be reparented to be child of the widget. Also Z-value
@@ -184,7 +184,7 @@
}
}
-/*
+/*!
Returns background item. 0 is returned if there isn't background
item in the widget.
*/
@@ -194,7 +194,7 @@
return d->backgroundItem;
}
-/*
+/*!
Returns focusItem primitive items.
Focus primitive is created if has not been created already.
*/
@@ -221,7 +221,7 @@
return 0;
}
-/*
+/*!
Hides or shows focus primitive depending on the focus state of the widget.
*/
void HbWidgetPrivate::focusChangeEvent(HbWidget::FocusHighlight focusHighlight)
@@ -265,7 +265,7 @@
}
-/*
+/*!
Find closest parent with focus group and update the focused child.
*/
void HbWidgetPrivate::updateCurrentFocusChild()
@@ -279,7 +279,7 @@
}
}
-/*
+/*!
Find and return the closest parent with focus group if any. If propagate
is true then the closest parent with focus group and children is accepted as
valid focus group e.g. used for a widget which has the key for changing the
@@ -316,7 +316,7 @@
return (group) ? group : 0;
}
-/*
+/*!
Set focus to child widget depending on the set focus delegation
policy.
*/
@@ -343,7 +343,7 @@
}
}
-/*
+/*!
Test if some item in our parent hierarchy has
the Hb::InputMethodNeutral flag set.
*/
--- a/src/hbcore/hbcore.pro Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/hbcore.pro Thu May 27 13:10:59 2010 +0300
@@ -163,7 +163,6 @@
LIBS += -lapparc
LIBS += -lavkon
LIBS += -lbafl
- LIBS += -lalfdecoderserverclient
LIBS += -lSensrvClient
LIBS += -lsensrvutil
LIBS += -lcentralrepository
--- a/src/hbcore/i18n/hbdirectorynamelocalizer.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/i18n/hbdirectorynamelocalizer.cpp Thu May 27 13:10:59 2010 +0300
@@ -48,6 +48,11 @@
*/
+/*!
+ Constructor of HbDirectoryNameLocalizer.
+
+ \attention Cross-Platform API
+ */
HbDirectoryNameLocalizer::HbDirectoryNameLocalizer()
{
HbDNTXmlReader* dirDataReader = new HbDNTXmlReader();
@@ -70,13 +75,18 @@
Translates the given source path to a localized string if possible.
If localized version is not found returns an empty string.
Should be only used for localizing directory names.
+
+ \attention Symbian specific API
- @param sourceText The path that is to be translated.
- @return The translated string. If translation is not found returns
+ \param sourceText The path that is to be translated.
+
+ \return Symbian - The translated string. If translation is not found returns
an empty string.
+ \return other platforms - empty QString
*/
QString HbDirectoryNameLocalizer::translate( QString& sourceText ) const
{
+#if defined(Q_OS_SYMBIAN)
if ( sourceText.length() == 0 ) {
return "";
}
@@ -94,4 +104,8 @@
}
return result;
+#else
+ Q_UNUSED(sourceText);
+ return QString();
+#endif
}
--- a/src/hbcore/i18n/hbextendedlocale.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/i18n/hbextendedlocale.cpp Thu May 27 13:10:59 2010 +0300
@@ -115,15 +115,18 @@
/*!
Returns the date separator, which can occur in four different positions:
- Beginning of the expression
- Between the first and second part
- Between the second and third part
- At the end of the expression
- Some of the positions may contain an empty string if a separator is not used in that position in the locale in question
+ Beginning of the expression;
+ Between the first and second part;
+ Between the second and third part;
+ At the end of the expression;
+ Some of the positions may contain an empty string if a separator is not used in that position in the locale in question.
+
+ \attention Symbian specific API
- \return one of the four characters used to separate the day,
+ \return Symbian - One of the four characters used to separate the day,
month and year components of the date according to the
- system locale.
+ system locale
+ \return other platforms - Empty QChar or '\' (depending on index)
\param index Index of the separator (0-3)
*/
@@ -147,6 +150,8 @@
month and year components of the date according to the
system locale.
+ \attention Symbian specific API
+
\param ch Character to set,
\param index Index of the separator (0-3)
@@ -171,11 +176,14 @@
}
/*!
- Retrieves the time separator (for example, colon or full stop)
+ Retrieves the time separator (for example, colon or full stop).
- \return one of the four characters used to separate the hour,
+ \attention Symbian specific API
+
+ \return Symbian - One of the four characters used to separate the hour,
minute and second components of the date according to the
- system locale.
+ system locale
+ \return other platforms - Empty QChar or ':' (depending on index)
\param index Index of the separator (0-3)
*/
@@ -198,6 +206,8 @@
Sets one of the four characters used to separate the hour,
minute and second components of the date.
+ \attention Symbian specific API
+
\param ch Character to set,
\param index Index of the separator (0-3)
@@ -229,15 +239,19 @@
or year-month-day (used, for example, in Japanese, Chinese and Swedish)
This enum defines the order of date components.
- \value American American order (mm/dd/yyyy)
- \value European European order (dd/mm/yyyy)
- \value Japanese Japanese order (yyyy/mm/dd)
+ \value American American order (mm/dd/yyyy)
+ \value European European order (dd/mm/yyyy)
+ \value Japanese Japanese order (yyyy/mm/dd)
\sa dateStyle(), setDateStyle()
*/
/*!
- \return date style from system locale. The date style is returned according to DateStyle.
+ Returns date style from system locale. The date style is returned according to DateStyle.
+
+ \attention Symbian specific API
+
+ \return date style for Symbian and HbExtendedLocale::American for other platforms
*/
HbExtendedLocale::DateStyle HbExtendedLocale::dateStyle() const
{
@@ -265,6 +279,8 @@
/*!
Sets date style to system locale.
The date style is chosen according to the \a style parameter.
+
+ \attention Symbian specific API
\return true for Symbian and false for other OS
*/
@@ -301,14 +317,18 @@
\enum HbExtendedLocale::TimeStyle
Finds out if the 12-hour or the 24-hour clock is used
- \value Time12 12 hour clock style
- \value Time24 24 hour clock style
+ \value Time12 12 hour clock style
+ \value Time24 24 hour clock style
\sa timeStyle(), setTimeStyle()
*/
/*!
- \return time style from system locale. The time style is returned according to TimeStyle.
+ Returns time style from system locale. The time style is returned according to TimeStyle.
+
+ \attention Symbian specific API
+
+ \return time style for Symbian and HbExtendedLocale::Time12 for other platforms
*/
HbExtendedLocale::TimeStyle HbExtendedLocale::timeStyle() const
{
@@ -331,6 +351,8 @@
/*!
Sets time style to system locale.
The time style is chosen according to the \a style parameter.
+
+ \attention Symbian specific API
\return true for Symbian and false for other OS
*/
@@ -360,9 +382,12 @@
/*!
- Finds out if the AM/PM symbol is separated by a space from the time expression
+ Finds out if the AM/PM symbol is separated by a space from the time expression.
+
+ \attention Symbian specific API
- \return true if space is inserted between the time and the preceding or trailing am/pm text; otherwise returns false.
+ \return Symbian - True if space is inserted between the time and the preceding or trailing am/pm text; otherwise returns false.
+ \return other platforms - true
*/
bool HbExtendedLocale::amPmSpace() const
{
@@ -376,6 +401,8 @@
/*!
Sets whether a \a space is inserted between the time and the preceding or trailing am/pm text.
+
+ \attention Symbian specific API
\return true for Symbian and false for other OS
*/
@@ -396,7 +423,7 @@
\enum HbExtendedLocale::SymbolPos
\value Before
- \value After
+ \value After
Retrieves the position of the AM/PM symbol (before or after the time expression)
\sa amPmSymbolPosition(), setAmPmSymbolPosition()
@@ -404,7 +431,11 @@
*/
/*!
- \return Before if am/pm text is positioned before time; otherwise returns After.
+ Returns HbExtendedLocale::Before if am/pm text is positioned before time; otherwise returns HbExtendedLocale::After.
+
+ \attention Symbian specific API
+
+ \return After/Before for Symbian and HbExtendedLocale::After for other platforms
*/
HbExtendedLocale::SymbolPos HbExtendedLocale::amPmSymbolPosition() const
{
@@ -419,12 +450,13 @@
#else
return HbExtendedLocale::After;
#endif
- return HbExtendedLocale::After;
}
/*!
Sets the am/pm text position.
The position is chosen according to the \a position parameter.
+
+ \attention Symbian specific API
\return true for Symbian if succesfull and false for other OS
*/
@@ -462,10 +494,13 @@
*/
/*!
- Retrives the measurement system (if metric or imperial units are in use)
+ Retrives the measurement system (if metric or imperial units are in use).
+
+ \attention Symbian specific API
- \return short unit distance format from system locale. Format is specified by UnitsFormat.
- */
+ \return Symbian - Short unit distance format from system locale. Format is specified by UnitsFormat.
+ \return other platforms - QLocale::MetricSystem
+*/
QLocale::MeasurementSystem HbExtendedLocale::unitsDistanceShort() const
{
#if defined(Q_OS_SYMBIAN)
@@ -486,6 +521,8 @@
/*!
Sets short unit distance \a format to system locale.
+ \attention Symbian specific API
+
\return true for Symbian and false for other OS
*/
bool HbExtendedLocale::setUnitsDistanceShort( const QLocale::MeasurementSystem format )
@@ -514,7 +551,11 @@
}
/*!
- \return long unit distance format from system locale. Format is specified by UnitsFormat.
+ Returns long unit distance format from system locale. Format is specified by UnitsFormat.
+
+ \attention Symbian specific API
+
+ \return long unit distance format for Symbian and QLocale::MetricSystem for other platforms
*/
QLocale::MeasurementSystem HbExtendedLocale::unitsDistanceLong() const
{
@@ -535,6 +576,8 @@
/*!
Sets long unit distance \a format to system locale.
+
+ \attention Symbian specific API
\return true for Symbian and false for other OS
*/
@@ -564,8 +607,10 @@
/*!
Sets general unit distance \a format to system locale.
+
+ \attention Symbian specific API
- \return true for Symbian and -1 for other OS
+ \return true for Symbian and false for other OS
*/
bool HbExtendedLocale::setUnitsGeneral( const QLocale::MeasurementSystem format )
{
@@ -607,8 +652,12 @@
*/
/*!
- \return the negative currency format from system locale.
- */
+ Returns the negative currency format from system locale.
+
+ \attention Symbian specific API
+
+ \return the negative currency format for Symbian and HbExtendedLocale::LeadingMinusSign for other platforms
+*/
HbExtendedLocale::NegativeCurrencyFormat HbExtendedLocale::negativeCurrencyFormat() const
{
#if defined(Q_OS_SYMBIAN)
@@ -632,6 +681,8 @@
/*!
Sets negative currency \a format to system locale.
+
+ \attention Symbian specific API
\return true for Symbian and false for other OS
*/
@@ -666,7 +717,11 @@
/*!
Finds out if the currency symbol is separated by a space from the amount.
- \return true if negative currency values have a space between the currency symbol and the value; otherwise returns false.
+
+ \attention Symbian specific API
+
+ \return Symbian - True if negative currency values have a space between the currency symbol and the value; otherwise returns false.
+ \return other platforms - false
*/
bool HbExtendedLocale::negativeCurrencySpace() const
{
@@ -681,6 +736,8 @@
/*!
Sets whether negative currency values have a space between the currency symbol and the value.
+ \attention Symbian specific API
+
\param space True to set a flag which indicates that negative currency values should have
the space between the value and the symbol. False to unset it.
@@ -703,9 +760,12 @@
Finds out if the currency symbol is placed on the opposite side with negative
currencies compared to where it is placed with non-negative currencies.
- \return true if in negative currency values, the position of the currency
+ \attention Symbian specific API
+
+ \return Symbian - True if in negative currency values, the position of the currency
symbol is set to be the opposite of the position used for non-negative
values; otherwise returns false.
+ \return other platforms - false
*/
bool HbExtendedLocale::negativeCurrencySymbolOpposite() const
{
@@ -722,6 +782,8 @@
values should be the \a opposite of the position used for
non-negative values.
+ \attention Symbian specific API
+
\return true for Symbian and false for other OS
*/
bool HbExtendedLocale::setNegativeCurrencySymbolOpposite( const bool opposite )
@@ -741,8 +803,10 @@
Finds out if currency triads are used (the grouping of digits in large numbers, for example, 123 456 789).
The Symbian OS only supports the grouping of currency amounts.
- \return true if currency triads are allowed in currency values; otherwise returns false.
-
+ \attention Symbian specific API
+
+ \return Symbian - True if currency triads are allowed in currency values; otherwise returns false.
+ \return other platforms - false
*/
bool HbExtendedLocale::currencyTriadsAllowed() const
{
@@ -757,7 +821,9 @@
/*!
Sets whether triads are \a allowed in currency values.
- \return true for Symbian and false for other CS
+ \attention Symbian specific API
+
+ \return true for Symbian and false for other OS
*/
bool HbExtendedLocale::setCurrencyTriadsAllowed( const bool allowed )
{
@@ -774,10 +840,15 @@
/*!
- \return true if a space is inserted between the currency symbol and
- a positive currency value; otherwise returns false.
+ Returns boolean which tells if currency format contains a space.
+
+ \attention Symbian specific API
- \note For negative currency values, the space can be inserted using
+ \return Symbian - True if a space is inserted between the currency symbol and
+ a positive currency value; otherwise returns false.
+ \return other platforms - false
+
+ \note For negative currency values, the space can be inserted using
setNegativeCurrencySpace().
*/
bool HbExtendedLocale::currencySpace() const
@@ -794,7 +865,9 @@
Sets whether a \a space is inserted between the currency symbol and the
currency amount.
- \return true for Symbian and false for other OS
+ \attention Symbian specific API
+
+ \return true for Symbian and false for other OS
*/
bool HbExtendedLocale::setCurrencySpace( const bool space )
{
@@ -813,7 +886,10 @@
/*!
The currency symbol may contain a different number of characters in different countries/regions.
Example: œ, $, Ft, kn, Euro symbol
- \return the currency symbol.
+
+ \attention Symbian specific API
+
+ \return the currency symbol for Symbian and empty QString for other platforms
*/
QString HbExtendedLocale::currencySymbol() const
{
@@ -829,6 +905,8 @@
/*!
Sets the currency \a symbol.
+ \attention Symbian specific API
+
\return true for Symbian if succesfull and false for other OS
*/
bool HbExtendedLocale::setCurrencySymbol( const QString &symbol )
@@ -850,9 +928,13 @@
/*!
Retrieves position of the currency symbol (before or after the amount).
- \return the currency symbol position.
+
+ \attention Symbian specific API
+
+ \return Symbian - the currency symbol position
+ \return other platforms - HbExtendedLocale::Before
- \note For negative currency values, this position may be reversed using
+ \note For negative currency values, this position may be reversed using
SetNegativeCurrencySymbolOpposite().
*/
HbExtendedLocale::SymbolPos HbExtendedLocale::currencySymbolPosition() const
@@ -873,9 +955,11 @@
}
/*!
- Sets the currency symbol \a position.
+ Sets the currency symbol \a position.
+
+ \attention Symbian specific API
- \return true for Symbian and false for other OS
+ \return true for Symbian and false for other OS
*/
bool HbExtendedLocale::setCurrencySymbolPosition( const SymbolPos position )
{
@@ -901,7 +985,12 @@
}
/*!
- \return the number of decimal places to which currency values are set.
+ Returns the number of decimal places to which currency values are set.
+
+ \attention Symbian specific API
+
+ \return Symbian - the number of decimal place
+ \return other platforms - '0'
*/
int HbExtendedLocale::currencyDecimalPlaces() const
{
@@ -914,9 +1003,11 @@
}
/*!
- Sets the number of decimal \a places to which currency values should be set.
+ Sets the number of decimal \a places to which currency values should be set.
+
+ \attention Symbian specific API
- \return true for Symbian and false for other OS
+ \return true for Symbian and false for other OS
*/
bool HbExtendedLocale::setCurrencyDecimalPlaces( const int places )
{
@@ -955,6 +1046,9 @@
These settings include the currency symbol, the symbol's
position and how negative values are formatted.
+ \attention Cross-Platform API
+ \attention Uses QString::number() function with other platforms than Symbian.
+
\sa setCurrencyDecimalPlaces(), setCurrencySpace(), setCurrencySymbol(),
setCurrencySymbolPosition(), setNegativeCurrencySpace(), setNegativeCurrencyFormat(),
setCurrencyTriadsAllowed(), setNegativeCurrencySymbolOpposite(),
@@ -1018,6 +1112,8 @@
/*!
Sets decimal point character \a ch to system locale.
+
+ \attention Symbian specific API
\return true for Symbian and false for other OS
*/
@@ -1037,6 +1133,8 @@
/*!
Sets group separator character \a ch to system locale.
+
+ \attention Symbian specific API
\return true for Symbian and false for other OS
*/
@@ -1057,6 +1155,8 @@
/*!
Sets zero digit \a type to system locale.
+ \attention Symbian specific API
+
\return true for Symbian and false for other OS
*/
bool HbExtendedLocale::setZeroDigit( const DigitType type )
@@ -1174,10 +1274,15 @@
#endif
/*!
- \return ISO name corresponding to the Symbian language \a code.
+ Returns ISO name corresponding to the Symbian language \a code.
If the code does not does not correspond to any Symbian language,
returns a empty string.
+ \attention Symbian specific API
+
+ \return Symbian - ISO style language code
+ \return other platforms - empty QString
+
\sa User::Language()
*/
QString HbExtendedLocale::symbianLangToISO( const int code )
@@ -1223,9 +1328,14 @@
}
/*!
- \return RFC3066 name corresponding to the Symbian language \a code.
+ Returns RFC3066 name corresponding to the Symbian language \a code.
If the code does not does not correspond to any Symbian language,
- returns a empty string.
+ returns a empty string.
+
+ \attention Symbian specific API
+
+ \return Symbian - RFC3066 style language code
+ \return other platforms - empty QString
\sa User::Language()
*/
@@ -1237,9 +1347,11 @@
/*!
Converts ISO tag to Symbian language code.
+ \attention Symbian specific API
+
\param langAndCountry ISO tag, example "fi_FI"
- \return Symbian language code or -1 (failed case)
+ \return Symbian language code if successful. With other platforms or if case fails then '-1'.
*/
int HbExtendedLocale::ISOToSymbianLang( const QString &langAndCountry )
{
@@ -1287,7 +1399,12 @@
/*!
Returns a Qt version of the given \a sys_fmt Symbian datetime format string.
Some convertable fields use data from current system locale,
- unwanted locale may cause unexpected results.
+ unwanted locale may cause unexpected results.
+
+ \attention Symbian specific API
+
+ \return Symbian - datetime format string
+ \return other platforms - "not supported"
*/
QString HbExtendedLocale::symbianDateTimeToQt( const QString &sys_fmt )
{
@@ -1658,15 +1775,17 @@
\enum HbExtendedLocale::WeekDay
This enum defines weekdays.
- \sa startOfWeek()
+ \sa startOfWeek()
*/
/*!
Gets first day of the week.
It is usually Saturday, Sunday or Monday, but the Symbian OS allows setting any weekday as the first.
- Returns enum WeekDay.
+
+ \attention Symbian specific API
- \return Monday for other OS
+ \return Symbian - enum of WeekDay
+ \return other platforms - HbExtendedLocale::Monday
*/
HbExtendedLocale::WeekDay HbExtendedLocale::startOfWeek() const
{
@@ -1697,8 +1816,13 @@
/*!
Sets the day which is considered to be the first day of the week.
- \param day The first day of the week.
+
+ \attention Symbian specific API
+
+ \param day The first day of the week.
+
\return true for Symbian and false for other OS
+
\sa startOfWeek()
*/
@@ -1744,13 +1868,15 @@
/*!
- Gets days which are working days of week.
- Returns QString which describes workdays as binary array.
- 1 meaning workday and 0 as non working day.
+ Gets days which are working days of week.
+ 1 meaning workday and 0 as non working day.
+
+ \attention Symbian specific API
- \return 0011111 for other OS
+ \return Symbian - QString which describes workdays as binary array
+ \return other platforms - "0011111"
- \sa setWorkDays()
+ \sa setWorkDays()
*/
QString HbExtendedLocale::workDays() const
{
@@ -1768,7 +1894,10 @@
}
/*!
- Sets working days of week.
+ Sets working days of week.
+
+ \attention Symbian specific API
+
\param days which describes workdays as QString binary array.
1 meaning workday and 0 non workday.
@@ -1798,8 +1927,12 @@
}
/*!
- Checks whether or not daylight saving is set for the home city
- \return True if home daylight saving is set, false if home daylight saving is not set
+ Checks whether or not daylight saving is set for the home city.
+
+ \attention Symbian specific API
+
+ \return Symbian - True if home daylight saving is set. False if home daylight saving is not set.
+ \return other platforms - false
*/
bool HbExtendedLocale::homeHasDaylightSavingOn() const
@@ -1815,12 +1948,17 @@
/*!
Returns the daylight saving zone in which the home city is located.
+ \attention Symbian specific API
+
\value Home Home daylight saving zone
\value European European daylight saving zone
\value Northern Northern hemisphere (non-European) daylight saving zone
\value Southern Southern hemisphere daylight saving zone
\value None No daylight saving zone
+ \return Symbian - the daylight saving zone
+ \return other platforms - HbExtendedLocale::None
+
\sa setHomeDaylightSavingZone()
*/
HbExtendedLocale::DaylightSavingZone HbExtendedLocale::homeDaylightSavingZone() const
@@ -1847,7 +1985,10 @@
}
/*!
- Gets the locale’s universal time offset
+ Gets the locale’s universal time offset.
+
+ \attention Symbian specific API
+
\return Offset in seconds from universal time. For other platforms it returns 0.
*/
int HbExtendedLocale::universalTimeOffset() const
@@ -1861,6 +2002,11 @@
#endif
}
+/*!
+ Constructor of HbExtendedLocale.
+
+ \attention Cross-Platform API
+ */
HbExtendedLocale::HbExtendedLocale()
{
#if defined(Q_OS_SYMBIAN)
@@ -1869,7 +2015,11 @@
#endif
}
-//! Returns new/dummy copy of HbExtendedLocale.
+/*!
+ Returns new/dummy copy of HbExtendedLocale.
+
+ \attention Cross-Platform API
+ */
HbExtendedLocale HbExtendedLocale::system()
{
// make sure QLocale's lp is updated if in future QApplication does not do it
@@ -1883,10 +2033,12 @@
For example, what date components are included, and if leading zeroes are used.
This is a function uses the date formats defined in the hbi18ndef.h header file.
+ \attention Cross-Platform API
+
\param date The date to be formatted.
\param dateFormat The wanted format to be used.
- \return The date as a string.
+ \return the date as a string
*/
QString HbExtendedLocale::format( const QDate &date, const QString &dateFormat )
{
@@ -1940,7 +2092,7 @@
#else
Q_UNUSED(dateFormat);
- return toString(date, ShortFormat );
+ return toString(date, ShortFormat );
#endif
}
@@ -1949,10 +2101,12 @@
For example, what components are included (hours/minutes/seconds), and if leading zeroes and AM/PM or am/pm symbols are used.
This is a function uses the time formats defined in the hbi18ndef.h header file.
- \param time The time to be formatted.
- \param timeFormat The wanted format to be used.
+ \attention Cross-Platform API
+
+ \param time The time to be formatted.
+ \param timeFormat The wanted format to be used.
- \return The time as a string.
+ \return the time as a string
*/
QString HbExtendedLocale::format( const QTime &time, const QString &timeFormat )
{
@@ -1997,6 +2151,6 @@
return TDesC2QString(s60TimeStr->Des());
#else
Q_UNUSED(timeFormat);
- return toString(time, ShortFormat);
+ return toString(time, ShortFormat);
#endif
}
--- a/src/hbcore/i18n/hbfindfile.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/i18n/hbfindfile.cpp Thu May 27 13:10:59 2010 +0300
@@ -31,8 +31,9 @@
#include <QString>
#include <QCoreApplication>
#include <QFileInfo>
-
#include <hbfindfile.h>
+#include <qbasicatomic.h>
+#include <QDir>
/*!
@beta
@@ -40,26 +41,42 @@
\class HbFindFile
\brief Checks from which drive a certain file is found.
Scans drives through and adds drive information to \a str if file is found.
+
+ \attention Cross-Platform API
\param str is file and path beginning with "/"
\param defaultDrive is drive letter which should be checked first. Default value is null.
- \return true if file is found. Otherwise return false.
+
+ \return True if file is found. Otherwise return false.
*/
bool HbFindFile::hbFindFile(QString &str, const QChar &defaultDrive)
{
+#ifdef Q_OS_SYMBIAN
+ RFs& fs = CCoeEnv::Static()->FsSession();
+ TFindFile ff(fs);
+ TPtrC fName((ushort*)(str.constData()),str.length());
+ QString dNameString;
+
+ if (!defaultDrive.isNull()) {
+ dNameString.append(defaultDrive);
+ dNameString += QString(":");
+ }
+ dNameString += QString("\\");
+ TPtrC dName((ushort*)(dNameString.constData()),dNameString.length());
+ TInt err=ff.FindByDir(fName, dName);
+ if (err==KErrNone) {
+ TParse p;
+ p.Set(ff.File(), 0,0);
+ TPtrC ptrC = p.Drive();
+ QString str2 = QString::fromRawData((QChar*)(ushort*)ptrC.Ptr(),ptrC.Length());
+ str.prepend(str2);
+ return true;
+ }
+ else {
+ return false;
+ }
+#else
QString file = str;
-#if defined(Q_OS_WIN32)
- file = "C:" + str;
-#endif
-#if !defined(Q_OS_SYMBIAN)
- QFileInfo info(file);
- if (info.exists()) {
- str = file;
- return true;
- }
- return false;
-#endif
-
if (!defaultDrive.isNull()) {
file = defaultDrive + QString(":") + str;
QFileInfo info(file);
@@ -82,24 +99,78 @@
}
}
return false;
+#endif
+
}
-/*!
- Returns available drives in device (Symbian). Empty for other platforms.
-*/
-QString HbFindFile::availableDrives()
+class AvailableDrives : public QString
{
- QString drives = "";
-#if defined(Q_OS_SYMBIAN)
+public:
+ AvailableDrives();
+};
+
+AvailableDrives::AvailableDrives() {
+#ifdef Q_OS_SYMBIAN
RFs& fs = CCoeEnv::Static()->FsSession();
TDriveList driveList;
fs.DriveList(driveList);
TChar driveLetter;
- for (TInt driveNumber = EDriveA; driveNumber <= EDriveZ; driveNumber++) {
+
+ // add first C and then Y..A and then Z.
+ TInt driveNumber;
+ if (driveList[EDriveC]) {
+ driveNumber = EDriveC;
+ fs.DriveToChar(driveNumber, driveLetter);
+ QChar cC = static_cast<QChar>(driveLetter);
+ this->append(cC);
+ }
+ for (driveNumber = EDriveY; driveNumber >= EDriveA; driveNumber--) {
+ if (driveNumber == EDriveC) {
+ continue;
+ }
+ else {
+ if (driveList[driveNumber]) {
+ fs.DriveToChar(driveNumber, driveLetter);
+ QChar c = static_cast<QChar>(driveLetter);
+ this->append(c);
+ }
+ }
+ }
+ if (driveList[EDriveZ]) {
+ driveNumber = EDriveZ;
fs.DriveToChar(driveNumber, driveLetter);
- QChar c = static_cast<QChar>(driveLetter);
- drives.append(c);
+ QChar cZ = static_cast<QChar>(driveLetter);
+ this->append(cZ);
}
-#endif
- return drives;
+
+
+#else
+ QFileInfoList fil = QDir::drives();
+ for (int j=0; j< fil.length(); j++) {
+ QString fp = fil.at(j).filePath();
+
+ if ((!fp.isEmpty()) && (fp[0] != '/') && (fp[0] != '\\')) {
+ this->append(fp[0]);
+ }
+ }
+#endif
}
+
+Q_GLOBAL_STATIC(AvailableDrives, gs_AvailableDrives)
+
+/*!
+ \attention Cross-Platform API
+
+ \returns Available drive(s) if platform supports (Eg. Symbian, Windows...).
+ If platform doesn't support drive(s) (Eg. Linux) then empty QString is returned.
+*/
+QString HbFindFile::availableDrives()
+{
+ QString *str = gs_AvailableDrives();
+ if (str) {
+ return *str;
+ }
+ else {
+ return QString();
+ }
+}
--- a/src/hbcore/i18n/hblanguageutil.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/i18n/hblanguageutil.cpp Thu May 27 13:10:59 2010 +0300
@@ -112,14 +112,35 @@
bool setLocale( int language )
{
TExtendedLocale dummy;
+ dummy.LoadSystemSettings();
+
+ // Try to load new locale model dll
QString no;
- no = QString( "%1" ).arg( language, 2, 10, QLatin1Char( '0' ) );
- QString name = QString( "elocl." ).append( no );
+ if ( language < 10 ) {
+ no = QString( "00%1" ).arg(language);
+ } else if ( language < 100 ) {
+ no = QString( "0%1" ).arg(language);
+ } else {
+ no = QString( "%1" ).arg(language);
+ }
+
+ QString name = QString("elocl_lan.").append(no);
TPtrC nameptr(name.utf16());
- TInt err = dummy.LoadLocale( nameptr );
- if( err != KErrNone )
- return false;
+ TInt err = dummy.LoadLocaleAspect(nameptr);
+ if( err != KErrNone ) {
+ // Loading new locale model dll fails
+ // Try to load old locale model dll
+ no = QString("%1").arg(language, 2, 10, QLatin1Char( '0' ));
+ QString name2 = QString("elocl.").append(no);
+ TPtrC nameptr2(name2.utf16());
+
+ TInt err2 = dummy.LoadLocale(nameptr2);
+ if ( err2 != KErrNone ) {
+ return false;
+ }
+ }
+
dummy.SaveSystemSettings();
// cause localeprivate update on next qlocale object( glp->m_language_id = 0 )
QSystemLocale dummy2;
@@ -134,8 +155,11 @@
Language names are localized according the language's native presentation.
Language ID's returned by this functions may be used as language parameter for changeLanguage(int language) function.
Language IDs and names are OS specific and may vary across the platforms and releases.
-
- \return localized names and integer identifiers of languages supported in a device
+
+ \attention Symbian specific API
+
+ \return Symbian - localized names and integer identifiers of languages supported in a device
+ \return other platforms - empty QHash
*/
QHash<int, QString> HbLanguageUtil::supportedLanguages()
{
@@ -143,9 +167,16 @@
QHash<int, QString> languages;
QTranslator translator;
- if (!translator.load(TRANSLATOR_PATH)) {
- return languages;
+ QString path = "c:";
+ path += QString(TRANSLATOR_PATH);
+ if (!translator.load(path)) {
+ path = "z:";
+ path += QString(TRANSLATOR_PATH);
+ if (!translator.load(path)) {
+ return languages;
+ }
}
+
QCoreApplication::installTranslator(&translator);
QHash<int, QString> hashLanguageNames = readLanguageList();
@@ -182,7 +213,10 @@
Language ID's returned by this functions may be used as language parameter for changeLanguage(int language) function.
Language IDs and names are OS specific and may vary across the platforms and releases.
- \return localized names and integer identifiers of known languages
+ \attention Symbian specific API
+
+ \return Symbian - localized names and integer identifiers of known languages
+ \return other platforms - empty QHash
*/
QHash<int, QString> HbLanguageUtil::allLanguages()
{
@@ -190,9 +224,16 @@
QHash<int, QString> langs;
QTranslator translator;
- if (!translator.load(TRANSLATOR_PATH)) {
- return langs;
+ QString path = "c:";
+ path += QString(TRANSLATOR_PATH);
+ if (!translator.load(path)) {
+ path = "z:";
+ path += QString(TRANSLATOR_PATH);
+ if (!translator.load(path)) {
+ return langs;
+ }
}
+
QCoreApplication::installTranslator(&translator);
QHash<int, QString> languageNameList = readLanguageList();
@@ -217,9 +258,11 @@
/*!
\brief Changes the device system language.
-
+
+ \attention Symbian specific API
+
\param identifier of language to set active
- \return true if language change was successful
+ \return true for Symbian if succesfull and false for other platforms
*/
bool HbLanguageUtil::changeLanguage( int language )
{
@@ -262,7 +305,9 @@
/*!
\brief Returns ID of current language.
- \return identifier of current system language
+ \attention Symbian specific API
+
+ \return identifier of current system language for Symbian and '0' for other platforms
*/
int HbLanguageUtil::currentLanguage()
{
--- a/src/hbcore/i18n/hbnumbergrouping.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/i18n/hbnumbergrouping.cpp Thu May 27 13:10:59 2010 +0300
@@ -38,7 +38,7 @@
- Also '+' and '-' characters are supported.
- Decimal separator needs to be a dot '.' always.
- Any other characters than above descripted are not allowed.
- - If grouping fails for some reason then return value is empty QString (NULL).
+ - If grouping fails for some reason then return value is empty QString.
- At the moment currency mark is not added to return value (formatCurrency).
- Grouping for phone numbers is not activated yet.
@@ -50,11 +50,14 @@
/*!
Static function for creating a (generic) number group.
+
+ \attention Cross-Platform API
\param number Source number for grouping.
\param country Format for number converting.
If the country is not given (country = QLocale::AnyCountry) then it will be requested from QLocale::country.
- \return Modified string.
+
+ \return modified string.
*/
QString HbNumberGrouping::formatGeneric( const QString &number,
QLocale::Country country )
@@ -73,11 +76,14 @@
/*!
Static function for creating a currency group.
+
+ \attention Cross-Platform API
\param number Source number for grouping.
\param country Format for number converting.
If the country is not given (country = QLocale::AnyCountry) then it will be requested from QLocale::country.
- \return Modified string.
+
+ \return modified string.
*/
QString HbNumberGrouping::formatCurrency( const QString &number,
QLocale::Country country )
@@ -97,10 +103,13 @@
/*!
Static function for creating a phone number group.
+ \attention Cross-Platform API
+
\param number Source number for grouping.
\param country Format for number converting.
If the country is not given (country = QLocale::AnyCountry) then it will be requested from QLocale::country.
- \return Modified string.
+
+ \return modified string.
*/
QString HbNumberGrouping::formatPhoneNumber( const QString &number,
QLocale::Country country )
--- a/src/hbcore/i18n/hbparameterlengthlimiter.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/i18n/hbparameterlengthlimiter.cpp Thu May 27 13:10:59 2010 +0300
@@ -30,7 +30,7 @@
#include "hbparameterlengthlimiter_p.h"
/*!
- @alpha
+ @stable
@hbcore
\class HbParameterLengthLimiter
\brief HbParameterLengthLimiter is a class that offers support to insert different types of arguments into a QString.
@@ -51,7 +51,10 @@
/*!
Constructs a HbParameterLengthLimiter with \a HbParameterLengthLimiter.
- \a HbLengthLimter& - HbParameterLengthLimiter that will have arguments inserted
+
+ \attention Cross-Platform API
+
+ \param a HbParameterLengthLimiter that will have arguments inserted
*/
HbParameterLengthLimiter::HbParameterLengthLimiter( const HbParameterLengthLimiter& a )
{
@@ -59,10 +62,12 @@
p->str = a.p->str;
}
-
/*!
Constructs a HbParameterLengthLimiter with \a QString.
- \a QString - QString that will have arguments inserted
+
+ \attention Cross-Platform API
+
+ \param a QString that will have arguments inserted
*/
HbParameterLengthLimiter::HbParameterLengthLimiter( QString a )
{
@@ -72,7 +77,10 @@
/*!
Constructs a HbParameterLengthLimiter with \a char*.
- \a const char* - char string that will have arguments inserted
+
+ \attention Cross-Platform API
+
+ \param a char string that will have arguments inserted
*/
HbParameterLengthLimiter::HbParameterLengthLimiter( const char* a )
{
@@ -81,9 +89,12 @@
}
/*!
- Constructs a HbParameterLengthLimiter with \a char*.
- \a const char* - char string that will have arguments inserted
- \n int - used to identify which plural form to use
+ Constructs a HbParameterLengthLimiter with \a char* and \a int.
+
+ \attention Cross-Platform API
+
+ \param a char string that will have arguments inserted
+ \param n used to identify which plural form to use
*/
HbParameterLengthLimiter::HbParameterLengthLimiter( const char* a, int n )
{
@@ -93,6 +104,8 @@
/*!
Conp->structs a HbParameterLengthLimiter without a predefined QString.
+
+ \attention Cross-Platform API
*/
HbParameterLengthLimiter::HbParameterLengthLimiter()
{
@@ -110,10 +123,13 @@
/*!
Inserts an \a argument to a HbParameterLengthLimiter QString.
- \a qlonglong - number that will be inserted to the QString
- \fieldwidth int - specifies the minimum amount of space that a is padded to and filled with the character fillChar
- \base int - defines the number base
- \fillChar QChar - defines the fill character
+
+ \attention Cross-Platform API
+
+ \param a number that will be inserted to the QString
+ \param fieldwidth specifies the minimum amount of space that a is padded to and filled with the character fillChar
+ \param base defines the number base
+ \param fillChar defines the fill character
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg(qlonglong a,
int fieldwidth,
@@ -127,10 +143,13 @@
/*!
Inserts an \a argument to a HbParameterLengthLimiter QString.
- \a qulonglong - number that will be inserted to the QString
- \fieldwidth int - specifies the minimum amount of space that a is padded to and filled with the character fillChar
- \base int - defines the number base
- \fillChar QChar - defines the fill character
+
+ \attention Cross-Platform API
+
+ \param a number that will be inserted to the QString
+ \param fieldwidth specifies the minimum amount of space that a is padded to and filled with the character fillChar
+ \param base defines the number base
+ \param fillChar defines the fill character
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( qulonglong a,
int fieldwidth,
@@ -145,10 +164,13 @@
/*!
Inserts an \a argument to a HbParameterLengthLimiter QString.
- \a long - number that will be inserted to the QString
- \fieldwidth int - specifies the minimum amount of space that a is padded to and filled with the character fillChar
- \base int - defines the number base
- \fillChar QChar - defines the fill character
+
+ \attention Cross-Platform API
+
+ \param a number that will be inserted to the QString
+ \param fieldwidth specifies the minimum amount of space that a is padded to and filled with the character fillChar
+ \param base defines the number base
+ \param fillChar defines the fill character
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( long a,
int fieldwidth,
@@ -163,10 +185,13 @@
/*!
Inserts an \a argument to a HbParameterLengthLimiter QString.
- \a ulong - number that will be inserted to the QString
- \fieldwidth int - specifies the minimum amount of space that a is padded to and filled with the character fillChar
- \base int - defines the number base
- \fillChar QChar - defines the fill character
+
+ \attention Cross-Platform API
+
+ \param a number that will be inserted to the QString
+ \param fieldwidth specifies the minimum amount of space that a is padded to and filled with the character fillChar
+ \param base defines the number base
+ \param fillChar defines the fill character
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( ulong a,
int fieldwidth,
@@ -180,10 +205,13 @@
/*!
Inserts an \a argument to a HbParameterLengthLimiter QString.
- \a int - number that will be inserted to the QString
- \fieldwidth int - specifies the minimum amount of space that a is padded to and filled with the character fillChar
- \base int - defines the number base
- \fillChar QChar - defines the fill character
+
+ \attention Cross-Platform API
+
+ \param a number that will be inserted to the QString
+ \param fieldwidth specifies the minimum amount of space that a is padded to and filled with the character fillChar
+ \param base defines the number base
+ \param fillChar defines the fill character
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( int a,
int fieldWidth,
@@ -198,10 +226,13 @@
/*!
Inserts an \a argument to a HbParameterLengthLimiter QString.
- \a uint - number that will be inserted to the QString
- \fieldwidth int - specifies the minimum amount of space that a is padded to and filled with the character fillChar
- \base int - defines the number base
- \fillChar QChar - defines the fill character
+
+ \attention Cross-Platform API
+
+ \param a number that will be inserted to the QString
+ \param fieldwidth specifies the minimum amount of space that a is padded to and filled with the character fillChar
+ \param base defines the number base
+ \param fillChar defines the fill character
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( uint a,
int fieldWidth,
@@ -215,10 +246,13 @@
/*!
Inserts an \a argument to a HbParameterLengthLimiter QString.
- \a short - number that will be inserted to the QString
- \fieldwidth int - specifies the minimum amount of space that a is padded to and filled with the character fillChar
- \base int - defines the number base
- \fillChar QChar - defines the fill character
+
+ \attention Cross-Platform API
+
+ \param a number that will be inserted to the QString
+ \param fieldwidth specifies the minimum amount of space that a is padded to and filled with the character fillChar
+ \param base defines the number base
+ \param fillChar defines the fill character
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( short a,
int fieldWidth,
@@ -232,10 +266,13 @@
/*!
Inserts an \a argument to a HbParameterLengthLimiter QString.
- \a ushort - number that will be inserted to the QString
- \fieldwidth int - specifies the minimum amount of space that a is padded to and filled with the character fillChar
- \base int - defines the number base
- \fillChar QChar - defines the fill character
+
+ \attention Cross-Platform API
+
+ \param a number that will be inserted to the QString
+ \param fieldwidth specifies the minimum amount of space that a is padded to and filled with the character fillChar
+ \param base defines the number base
+ \param fillChar defines the fill character
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( ushort a,
int fieldWidth,
@@ -249,11 +286,14 @@
/*!
Inserts an \a argument to a HbParameterLengthLimiter QString.
- \a double - Argument a is formatted according to the specified format and precision.
- \fieldwidth int - specifies the minimum amount of space that a is padded to and filled with the character fillChar
- \fmt char - defines the format to be used
- \prec int - defines the precision to be used
- \fillChar QChar - defines the fill character
+
+ \attention Cross-Platform API
+
+ \param a argument a is formatted according to the specified format and precision
+ \param fieldwidth specifies the minimum amount of space that a is padded to and filled with the character fillChar
+ \param fmt defines the format to be used
+ \param prec defines the precision to be used
+ \param fillChar defines the fill character
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( double a,
int fieldWidth,
@@ -268,9 +308,12 @@
/*!
Inserts an \a argument to a HbParameterLengthLimiter QString.
- \a char - character that will be inserted to the QString
- \fieldwidth int - specifies the minimum amount of space that a is padded to and filled with the character fillChar
- \fillChar QChar - defines the fill character
+
+ \attention Cross-Platform API
+
+ \param a character that will be inserted to the QString
+ \param fieldwidth specifies the minimum amount of space that a is padded to and filled with the character fillChar
+ \param fillChar defines the fill character
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( char a,
int fieldWidth,
@@ -283,9 +326,12 @@
/*!
Inserts an \a argument to a HbParameterLengthLimiter QString.
- \a QChar - character that will be inserted to the QString
- \fieldwidth int - specifies the minimum amount of space that a is padded to and filled with the character fillChar
- \fillChar QChar - defines the fill character
+
+ \attention Cross-Platform API
+
+ \param a character that will be inserted to the QString
+ \param fieldwidth specifies the minimum amount of space that a is padded to and filled with the character fillChar
+ \param fillChar defines the fill character
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( QChar a,
int fieldWidth,
@@ -298,9 +344,12 @@
/*!
Inserts an \a argument to a HbParameterLengthLimiter QString.
- \a QString - QString that will be inserted to the QString
- \fieldwidth int - specifies the minimum amount of space that a is padded to and filled with the character fillChar
- \fillChar QChar - defines the fill character
+
+ \attention Cross-Platform API
+
+ \param a string that will be inserted to the QString
+ \param fieldwidth specifies the minimum amount of space that a is padded to and filled with the character fillChar
+ \param fillChar defines the fill character
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( const QString &a,
int fieldWidth,
@@ -431,9 +480,12 @@
}
/*!
- Inserts an arguments \a1 and \a2 to a HbParameterLengthLimiter QString.
- \a1 QString - QString that will be inserted to the QString
- \a2 QString - QString that will be inserted to the QString
+ Inserts an arguments a1 and a2 to a HbParameterLengthLimiter QString.
+
+ \attention Cross-Platform API
+
+ \param a1 string that will be inserted to the QString
+ \param a2 string that will be inserted to the QString
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( const QString &a1,
const QString &a2 )
@@ -443,10 +495,13 @@
}
/*!
- Inserts an arguments \a1 and \a2 to a HbParameterLengthLimiter QString.
- \a1 QString - QString that will be inserted to the QString
- \a2 QString - QString that will be inserted to the QString
- \a3 QString - QString that will be inserted to the QString
+ Inserts an arguments a1, a2 and a3 to a HbParameterLengthLimiter QString.
+
+ \attention Cross-Platform API
+
+ \param a1 string that will be inserted to the QString
+ \param a2 string that will be inserted to the QString
+ \param a3 string that will be inserted to the QString
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( const QString &a1,
const QString &a2,
@@ -457,11 +512,14 @@
}
/*!
- Inserts an arguments \a1 and \a2 to a HbParameterLengthLimiter QString.
- \a1 QString - QString that will be inserted to the QString
- \a2 QString - QString that will be inserted to the QString
- \a3 QString - QString that will be inserted to the QString
- \a4 QString - QString that will be inserted to the QString
+ Inserts an arguments a1, a2, a3 and a4 to a HbParameterLengthLimiter QString.
+
+ \attention Cross-Platform API
+
+ \param a1 string that will be inserted to the QString
+ \param a2 string that will be inserted to the QString
+ \param a3 string that will be inserted to the QString
+ \param a4 string that will be inserted to the QString
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( const QString &a1,
const QString &a2,
@@ -473,12 +531,15 @@
}
/*!
- Inserts an arguments \a1 and \a2 to a HbParameterLengthLimiter QString.
- \a1 QString - QString that will be inserted to the QString
- \a2 QString - QString that will be inserted to the QString
- \a3 QString - QString that will be inserted to the QString
- \a4 QString - QString that will be inserted to the QString
- \a5 QString - QString that will be inserted to the QString
+ Inserts an arguments a1, a2, a3, a4 and a5 to a HbParameterLengthLimiter QString.
+
+ \attention Cross-Platform API
+
+ \param a1 string that will be inserted to the QString
+ \param a2 string that will be inserted to the QString
+ \param a3 string that will be inserted to the QString
+ \param a4 string that will be inserted to the QString
+ \param a5 string that will be inserted to the QString
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( const QString &a1,
const QString &a2,
@@ -491,13 +552,16 @@
}
/*!
- Inserts an arguments \a1 and \a2 to a HbParameterLengthLimiter QString.
- \a1 QString - QString that will be inserted to the QString
- \a2 QString - QString that will be inserted to the QString
- \a3 QString - QString that will be inserted to the QString
- \a4 QString - QString that will be inserted to the QString
- \a5 QString - QString that will be inserted to the QString
- \a6 QString - QString that will be inserted to the QString
+ Inserts an arguments a1, a2, a3, a4, a5 and a6 to a HbParameterLengthLimiter QString.
+
+ \attention Cross-Platform API
+
+ \param a1 string that will be inserted to the QString
+ \param a2 string that will be inserted to the QString
+ \param a3 string that will be inserted to the QString
+ \param a4 string that will be inserted to the QString
+ \param a5 string that will be inserted to the QString
+ \param a6 string that will be inserted to the QString
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( const QString &a1,
const QString &a2,
@@ -511,14 +575,17 @@
}
/*!
- Inserts an arguments \a1 and \a2 to a HbParameterLengthLimiter QString.
- \a1 QString - QString that will be inserted to the QString
- \a2 QString - QString that will be inserted to the QString
- \a3 QString - QString that will be inserted to the QString
- \a4 QString - QString that will be inserted to the QString
- \a5 QString - QString that will be inserted to the QString
- \a6 QString - QString that will be inserted to the QString
- \a7 QString - QString that will be inserted to the QString
+ Inserts an arguments a1, a2, a3, a4, a5, a6 and a7 to a HbParameterLengthLimiter QString.
+
+ \attention Cross-Platform API
+
+ \param a1 string that will be inserted to the QString
+ \param a2 string that will be inserted to the QString
+ \param a3 string that will be inserted to the QString
+ \param a4 string that will be inserted to the QString
+ \param a5 string that will be inserted to the QString
+ \param a6 string that will be inserted to the QString
+ \param a7 string that will be inserted to the QString
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( const QString &a1,
const QString &a2,
@@ -533,15 +600,18 @@
}
/*!
- Inserts an arguments \a1 and \a2 to a HbParameterLengthLimiter QString.
- \a1 QString - QString that will be inserted to the QString
- \a2 QString - QString that will be inserted to the QString
- \a3 QString - QString that will be inserted to the QString
- \a4 QString - QString that will be inserted to the QString
- \a5 QString - QString that will be inserted to the QString
- \a6 QString - QString that will be inserted to the QString
- \a7 QString - QString that will be inserted to the QString
- \a8 QString - QString that will be inserted to the QString
+ Inserts an arguments a1, a2, a3, a4, a5, a6, a7 and a8 to a HbParameterLengthLimiter QString.
+
+ \attention Cross-Platform API
+
+ \param a1 string that will be inserted to the QString
+ \param a2 string that will be inserted to the QString
+ \param a3 string that will be inserted to the QString
+ \param a4 string that will be inserted to the QString
+ \param a5 string that will be inserted to the QString
+ \param a6 string that will be inserted to the QString
+ \param a7 string that will be inserted to the QString
+ \param a8 string that will be inserted to the QString
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( const QString &a1,
const QString &a2,
@@ -557,16 +627,19 @@
}
/*!
- Inserts an arguments \a1 and \a2 to a HbParameterLengthLimiter QString.
- \a1 QString - QString that will be inserted to the QString
- \a2 QString - QString that will be inserted to the QString
- \a3 QString - QString that will be inserted to the QString
- \a4 QString - QString that will be inserted to the QString
- \a5 QString - QString that will be inserted to the QString
- \a6 QString - QString that will be inserted to the QString
- \a7 QString - QString that will be inserted to the QString
- \a8 QString - QString that will be inserted to the QString
- \a9 QString - QString that will be inserted to the QString
+ Inserts an arguments a1, a2, a3, a4, a5, a6, a7, a8 and a9 to a HbParameterLengthLimiter QString.
+
+ \attention Cross-Platform API
+
+ \param a1 string that will be inserted to the QString
+ \param a2 string that will be inserted to the QString
+ \param a3 string that will be inserted to the QString
+ \param a4 string that will be inserted to the QString
+ \param a5 string that will be inserted to the QString
+ \param a6 string that will be inserted to the QString
+ \param a7 string that will be inserted to the QString
+ \param a8 string that will be inserted to the QString
+ \param a9 string that will be inserted to the QString
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::arg( const QString &a1,
const QString &a2,
@@ -583,8 +656,11 @@
}
/*!
- Changes the QString that is to be used for inserting arguments to \a.
- \a QString - QString that will be used for inserting arguments
+ Changes the QString that is to be used for inserting arguments to QString.
+
+ \attention Cross-Platform API
+
+ \param a QString that will be used for inserting arguments
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::operator=( const QString &a )
{
@@ -593,8 +669,11 @@
}
/*!
- Changes the QString that is to be used for inserting arguments to \a.
- \a HbParameterLengthLimiter - HbParameterLengthLimiter holding the QString that will be used for inserting arguments
+ Changes the QString that is to be used for inserting arguments to HbParameterLengthLimiter.
+
+ \attention Cross-Platform API
+
+ \param a HbParameterLengthLimiter holding the QString that will be used for inserting arguments
*/
HbParameterLengthLimiter& HbParameterLengthLimiter::operator=( const HbParameterLengthLimiter &a )
{
@@ -603,7 +682,9 @@
}
/*!
- returns the current QString.
+ Returns the current QString.
+
+ \attention Cross-Platform API
*/
HbParameterLengthLimiter::operator QString() const
{
--- a/src/hbcore/i18n/hbstringutil.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/i18n/hbstringutil.cpp Thu May 27 13:10:59 2010 +0300
@@ -42,17 +42,12 @@
#endif
/*!
- @beta
+ @stable
@hbcore
\class HbStringUtil
\brief The HbStringUtil class can be used to execute operations on strings,
such as comparisons and finding data sequences.
- \ingroup i18n
-
- \warning This class is only useful in Symbian platforms since it uses Symbian
- methods in order to implement different functionalities.
-
\sa HbStringUtil
*/
@@ -85,6 +80,8 @@
/*!
Searches source string's collated data for a
match with collated data supplied in pattern string
+
+ \attention Cross-Platform API
\param strFrom Source string.
\param strToMatch Pattern string.
@@ -97,6 +94,7 @@
\param wildChar Wild card character.
\param wildSequenceChar Wild card sequence character.
\param escapeChar The escape character, for example, '?', '*'.
+
\return If a match is found the offset within source string's
data where the match first occurs. -1 if match is not found.
@@ -144,6 +142,8 @@
Compares source string's data with the other string's
data using the specified collation method.
+ \attention Cross-Platform API
+
\param string1 Source string.
\param string2 String whose data is to be compared with the source string.
\param maxLevel Maximum level to use for comparing.
@@ -152,6 +152,7 @@
Level 2 - Character identity, accents and case;
Level 3 - Character identity, accents, case and Unicode value;
\param flags The flags that will be used. Default value is Default.
+
\return Positive if source string is greater, negative if it is less and
zero if the content of both strings match.
@@ -188,6 +189,8 @@
data sequence in the aStrFrom to the specified maximum
collation level.
+ \attention Cross-Platform API
+
\param strFrom Source string.
\param strToFind String whose data is to be compared with the source string.
\param maxLevel The maximum collation level.
@@ -195,6 +198,7 @@
Level 1 - Character identity and accents;
Level 2 - Character identity, accents and case;
Level 3 - Character identity, accents, case and Unicode value;
+
\return Offset of the data sequence from the beginning of the
aStrFrom. -1 if the data sequence cannot be found.
@@ -225,8 +229,11 @@
Searches source string's folded data for a
match with folded data supplied in pattern string
+ \attention Cross-Platform API
+
\param strFrom Source string.
\param strToMatch Pattern string.
+
\return If a match is found the offset within source string's
data where the match first occurs. -1 if match is not found.
@@ -257,8 +264,11 @@
Searches for the first occurence of the specified folded
data sequence in the strFrom.
+ \attention Cross-Platform API
+
\param strFrom Source string.
\param strToFind String whose data is to be compared with the source string.
+
\return Offset of the data sequence from the beginning of the
strFrom. -1 if the data sequence cannot be found. Zero,
if the length of search data sequence is zero.
@@ -283,8 +293,11 @@
Compares source string's folded data with the other string's
folded data.
+ \attention Cross-Platform API
+
\param string1 Source string.
\param string2 String whose data is to be compared with the source string.
+
\return Positive if source string is greater, negative if it is less and
zero if the content of both strings match.
@@ -323,6 +336,9 @@
/*!
Converts digits to native digits based on current UI language.
+
+ \attention Cross-Platform API
+
\param str digits to be converted.
*/
QString HbStringUtil::convertDigits( const QString str )
@@ -344,6 +360,9 @@
/*!
Converts the digit from Latin to native or native to latin or native to native
+
+ \attention Cross-Platform API
+
\param str digits to be converted.
\param digitType type of the digit to be converted to
*/
@@ -377,6 +396,8 @@
/*!
Sorts QStrings into alphabetically order (overwrites the strList's original content)
+ \attention Cross-Platform API
+
\param strList List of QStrings which need to be sorted.
Example
--- a/src/hbcore/i18n/hbtranslator.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/i18n/hbtranslator.cpp Thu May 27 13:10:59 2010 +0300
@@ -33,8 +33,115 @@
#include <hbtranslator.h>
#include <hbtranslator_p.h>
+#ifdef Q_OS_SYMBIAN
+const char* defaultPath = "/resource/qt/translations/";
+const char* defaultDrive = "Z:";
+const char* defaultCommon = "common_";
+#else
+const QString defaultPath = "";
+const char* defaultDrive = "";
+const char* defaultCommon = "common_";
-const QString defaultpath = "/resource/qt/translations/";
+#endif
+
+#ifdef Q_OS_SYMBIAN
+#include <f32file.h>
+#include <eikenv.h>
+#endif
+
+#ifdef Q_OS_SYMBIAN
+static void toSymbianPath(QString &path) {
+ int len=path.length();
+ for (int i=0; i<len; i++) {
+ QCharRef ref=path[i];
+ if (ref == '/') {
+ ref= '\\';
+ }
+ }
+}
+#endif
+
+static uchar* loadTranslatorData(QTranslator &translator, QString &qmFile,bool doFallback=true) {
+#ifndef Q_OS_SYMBIAN
+ translator.load(qmFile);
+ Q_UNUSED(doFallback);
+ return 0;
+#else
+ RFile fl;
+ RFs& fs = CCoeEnv::Static()->FsSession();
+ // TPtrC ptrFName;
+ QString qmFile2;
+ QString delims="_.";
+ TInt err;
+ for (;;) {
+ qmFile2=qmFile;
+ qmFile2 += QString(".qm");
+
+ TPtrC ptrFName(reinterpret_cast<const TText*>(qmFile2.constData()));
+ err= fl.Open(fs, ptrFName, EFileShareReadersOrWriters | EFileRead | EFileStream );
+ if (err == KErrNotFound) {
+ if (!doFallback) { // no fallback, then return
+ return 0;
+ }
+ // else continue
+ }
+ else {
+ if (err != KErrNone ) { // if some other error return error, don't look anymore
+ return 0;
+ }
+ else {
+ break; // file was found
+ }
+ }
+ // do fallback
+ qmFile2 = qmFile;
+ ptrFName.Set((ushort*)(qmFile2.constData()), qmFile2.length());
+ err= fl.Open(fs, ptrFName, EFileShareReadersOrWriters | EFileRead | EFileStream );
+ if (err == KErrNone) {
+ break;
+ }
+ else {
+ if (err != KErrNotFound) {
+ return 0;
+ }
+ }
+ // check fallback names
+ int rightmost = 0;
+ for (int i=0; i<(int)delims.length(); i++) {
+ int k=qmFile.lastIndexOf(delims[i]);
+ if (k>rightmost) {
+ rightmost=k;
+ }
+ }
+
+ // no truncations? fail
+ if (rightmost==0) {
+ return 0;
+ }
+ qmFile.truncate(rightmost);
+ }
+
+ TInt sz;
+ err = fl.Size(sz);
+ if (err != KErrNone) {
+ fl.Close();
+ return 0;
+ }
+ uchar *buf = new uchar[sz];
+ TPtr8 bufPtr(buf,0,sz);
+ err = fl.Read(bufPtr, sz);
+ if (err != KErrNone) {
+ fl.Close();
+ return 0;
+ }
+ fl.Close();
+ if (!translator.load(bufPtr.Ptr(),sz)) {
+ delete buf;
+ return 0;
+ }
+ return buf;
+#endif
+}
/*!
@beta
@@ -46,27 +153,33 @@
/*!
Default case: searches translation file from default location (/resource/qt/translations/) with default name, which is <executablename>.qm
+
+ \attention Cross-Platform API
*/
HbTranslator::HbTranslator(): d(new HbTranslatorPrivate())
{
QFileInfo info(qApp->applicationFilePath());
- QString defaultname = info.baseName(); // defaultname = <executablename>
- d->installTranslator(defaultpath, defaultname);
+ QString defaultName = info.baseName(); // defaultname = <executablename>
+ d->installTranslator(defaultPath, defaultName);
}
/*!
Searches translation file \a file from default location.
+
+ \attention Cross-Platform API
*/
-
HbTranslator::HbTranslator(const QString &file): d(new HbTranslatorPrivate())
{
- d->installTranslator(defaultpath, file);
+ d->installTranslator(defaultPath, file);
}
/*!
Searches translation file \a file from path \a path.
+
+ \attention Cross-Platform API
+
\code
- HbTranslator trans = new HbTranslator("/resource/qt/custom/", "customfile");
+ HbTranslator trans("/resource/qt/custom/", "customfile");
\endcode
*/
HbTranslator::HbTranslator(const QString &path, const QString &file): d(new HbTranslatorPrivate())
@@ -81,90 +194,144 @@
/*!
Loads common.ts translations from default location.
+
+ \attention Cross-Platform API
*/
void HbTranslator::loadCommon()
-{
+{
QString lang = QLocale::system().name();
- QString commonts = QString("Z:") + defaultpath + QString("common_") + lang;
- d->common.load(commonts);
- qApp->installTranslator(&d->common);
+ QString commonts = QString(defaultDrive) + QString(defaultPath) + QString(defaultCommon) + lang;
+ bool loaded;
+ loaded = (d->commonData=loadTranslatorData(d->common, commonts));
+ if (loaded) {
+ qApp->installTranslator(&d->common);
+ }
}
// internal function for common operations of HbTranslator
-void HbTranslatorPrivate::installTranslator(const QString &path, const QString &name)
+void HbTranslatorPrivate::installTranslator(const QString &pth, const QString &name)
{
+ QString path(pth);
+#ifdef Q_OS_SYMBIAN
+ toSymbianPath(path);
+#endif
QString filepath = qApp->applicationFilePath();
- QChar drive = filepath.at(0);
+ QChar drive;
+ if (filepath.length()>=2 && filepath.at(1) == ':') {
+ drive = filepath.at(0);
+ }
+
QString lang = QLocale::system().name();
QString lang2 = lang;
languageDowngrade(lang);
- QString tsfile = path + name + QString("_") + lang + QString(".qm");
- if (!HbFindFile::hbFindFile(tsfile, drive)) {
- tsfile = path + name + QString("_") + lang2 + QString(".qm");
- HbFindFile::hbFindFile(tsfile);
+ QString tsfile = path + name + QString("_") + lang;
+ QString tsfileQM = tsfile + QString(".qm");
+
+ bool loaded = false;
+ if (HbFindFile::hbFindFile(tsfileQM, drive)) {
+ tsfileQM.chop(3);
+ loaded = (translatorData=loadTranslatorData(translator,tsfileQM));
+ }
+ else {
+ tsfile = path + name + QString("_") + lang2;
+ tsfileQM = tsfile + QString(".qm");
+ if (HbFindFile::hbFindFile(tsfileQM, drive)) {
+ tsfileQM.chop(3);
+ loaded = (translatorData=loadTranslatorData(translator,tsfileQM));
+ }
+ else {
+ QList<QString> fallBack;
+ fallBack.append("en");
+ fallBack.append("en_US");
+ int len = fallBack.length();
+ for (int i=0; i<len; i++) {
+ QString lang;
+ tsfile = path + name + QString("_") + fallBack.at(i);
+ tsfileQM = tsfile + QString(".qm");
+ if (HbFindFile::hbFindFile(tsfileQM, drive)) {
+ tsfileQM.chop(3);
+ loaded = (translatorData=loadTranslatorData(translator,tsfileQM));
+ }
+ }
+ }
+ }
+
+ if (loaded) {
+ qApp->installTranslator(&translator);
}
- translator.load(tsfile);
- qApp->installTranslator(&translator);
}
+class LanguageHash : public QHash<QString,QString>
+{
+public:
+ LanguageHash();
+};
+
+LanguageHash::LanguageHash(){
+ (*this)["en_GB"] = "en";
+ (*this)["fr_FR"] = "fr";
+ (*this)["de_DE"] = "de";
+ (*this)["es_ES"] = "es";
+ (*this)["it_IT"] = "it";
+ (*this)["sv_SE"] = "sv";
+ (*this)["da_DK"] = "da";
+ (*this)["no_NO"] = "no";
+ (*this)["fi_FI"] = "fi";
+ (*this)["en_US"] = "en_US";
+ (*this)["pt_PT"] = "pt";
+ (*this)["tr_TR"] = "tr";
+ (*this)["is_IS"] = "is";
+ (*this)["ru_RU"] = "ru";
+ (*this)["hu_HU"] = "hu";
+ (*this)["nl_NL"] = "nl";
+ (*this)["cs_CZ"] = "cs";
+ (*this)["sk_SK"] = "sk";
+ (*this)["pl_PL"] = "pl";
+ (*this)["sl_SI"] = "sl";
+ (*this)["zh_TW"] = "zh_TW";
+ (*this)["zh_HK"] = "zh_HK";
+ (*this)["zh_CN"] = "zh_CN";
+ (*this)["ja_JP"] = "ja";
+ (*this)["th_TH"] = "th";
+ (*this)["ar_AE"] = "ar";
+ (*this)["tl_PH"] = "tl";
+ (*this)["bg_BG"] = "bg";
+ (*this)["ca_ES"] = "ca";
+ (*this)["hr_HR"] = "hr";
+ (*this)["et_EE"] = "et";
+ (*this)["fa_IR"] = "fa";
+ (*this)["fr_CA"] = "fr_CA";
+ (*this)["el_GR"] = "el";
+ (*this)["he_IL"] = "he";
+ (*this)["hi_IN"] = "hi";
+ (*this)["id_ID"] = "id";
+ (*this)["ko_KR"] = "ko";
+ (*this)["lv_LV"] = "lv";
+ (*this)["lt_LT"] = "lt";
+ (*this)["ms_MY"] = "ms";
+ (*this)["pt_BR"] = "pt_BR";
+ (*this)["ro_RO"] = "ro";
+ (*this)["sr_YU"] = "sr";
+ (*this)["es_MX"] = "es_MX"; //!!
+ (*this)["uk_UA"] = "uk";
+ (*this)["ur_PK"] = "ur";
+ (*this)["vi_VN"] = "vi";
+ (*this)["eu_ES"] = "eu";
+ (*this)["gl_ES"] = "gl";
+
+}
+
+Q_GLOBAL_STATIC(LanguageHash, gs_LanguageHash)
+
// internal function for solving conflict between QLocale::system().name() and actual ts file naming convention.
bool HbTranslatorPrivate::languageDowngrade(QString &lang)
{
- static QHash<QString, QString> languages;
- languages["en_GB"] = "en";
- languages["fr_FR"] = "fr";
- languages["de_DE"] = "de";
- languages["es_ES"] = "es";
- languages["it_IT"] = "it";
- languages["sv_SE"] = "sv";
- languages["da_DK"] = "da";
- languages["no_NO"] = "no";
- languages["fi_FI"] = "fi";
- languages["en_US"] = "en_US";
- languages["pt_PT"] = "pt";
- languages["tr_TR"] = "tr";
- languages["is_IS"] = "is";
- languages["ru_RU"] = "ru";
- languages["hu_HU"] = "hu";
- languages["nl_NL"] = "nl";
- languages["cs_CZ"] = "cs";
- languages["sk_SK"] = "sk";
- languages["pl_PL"] = "pl";
- languages["sl_SI"] = "sl";
- languages["zh_TW"] = "zh_TW";
- languages["zh_HK"] = "zh_HK";
- languages["zh_CN"] = "zh_CN";
- languages["ja_JP"] = "ja";
- languages["th_TH"] = "th";
- languages["ar_AE"] = "ar";
- languages["tl_PH"] = "tl";
- languages["bg_BG"] = "bg";
- languages["ca_ES"] = "ca";
- languages["hr_HR"] = "hr";
- languages["et_EE"] = "et";
- languages["fa_IR"] = "fa";
- languages["fr_CA"] = "fr_CA";
- languages["el_GR"] = "el";
- languages["he_IL"] = "he";
- languages["hi_IN"] = "hi";
- languages["id_ID"] = "id";
- languages["ko_KR"] = "ko";
- languages["lv_LV"] = "lv";
- languages["lt_LT"] = "lt";
- languages["ms_MY"] = "ms";
- languages["pt_BR"] = "pt_BR";
- languages["ro_RO"] = "ro";
- languages["sr_YU"] = "sr";
- languages["es_MX"] = "es_MX"; //!!
- languages["uk_UA"] = "uk";
- languages["ur_PK"] = "ur";
- languages["vi_VN"] = "vi";
- languages["eu_ES"] = "eu";
- languages["gl_ES"] = "gl";
-
- if (languages.contains(lang)) {
- lang = languages.value(lang);
- return true;
+ QHash<QString,QString> *languageHash = gs_LanguageHash();
+ if (languageHash) {
+ if (languageHash->contains(lang)) {
+ lang = languageHash->value(lang);
+ return true;
+ }
}
return false;
}
--- a/src/hbcore/i18n/hbtranslator_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/i18n/hbtranslator_p.h Thu May 27 13:10:59 2010 +0300
@@ -33,8 +33,12 @@
public:
void installTranslator(const QString &name, const QString &path);
bool languageDowngrade(QString &lang);
+ HbTranslatorPrivate(): translatorData(0), commonData(0){}
+ ~HbTranslatorPrivate() { delete [] translatorData; delete [] commonData; }
QTranslator translator;
QTranslator common;
+ uchar *translatorData;
+ uchar *commonData;
};
#endif
--- a/src/hbcore/image/hbicon.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/image/hbicon.cpp Thu May 27 13:10:59 2010 +0300
@@ -290,6 +290,24 @@
/*!
\internal
*/
+void HbIconPrivate::setThemedColor(const QColor &color)
+{
+ if (engine && color != engine->themedColor()) {
+ engine->setThemedColor(color);
+ }
+}
+
+/*!
+\internal
+*/
+QColor HbIconPrivate::themedColor() const
+{
+ return engine ? engine->themedColor() : QColor();
+}
+
+/*!
+\internal
+*/
QDataStream &operator>>(QDataStream &stream, HbIconPrivate &icon)
{
stream >> icon.size;
@@ -382,7 +400,7 @@
* compatibility reasons if a QIcon instance needs to be passed as a parameter
* to a method taking a HbIcon parameter.
* \note If this constructor is used, there are the following limitations in the HbIcon methods.
-* - HbIcon::defaultSize() always returns QSizeF().
+* - HbIcon::defaultSize() may return QSizeF().
* - HbIcon::paint() ignores the parameter aspectRatioMode and converts the given QRectF to QRect.
* - HbIcon::iconName() returns empty string by default.
* - HbIcon::pixmap() returns null pixmap.
@@ -487,13 +505,16 @@
* always taken into account when the logical graphics name indicates that it is
* a mono icon.
*
-* Note that if a widget css defines a color for an icon primitive then the style will take
-* care of calling setColor() with the correct color from the theme whenever the theme
-* changes. Typical examples of such widgets are the itemviews (e.g. list, grid). Therefore
-* mono icons shown in such widgets will automatically be colorized with a theme-specific
-* color if the icon is either a mono icon coming from the theme or the icon has the
+* Note that if a widget defines a color for its icon primitive (as most standard
+* widgets do) then the style will take care of colorizing with the correct color
+* from the theme whenever the theme changes. Therefore mono icons shown in such
+* widgets will automatically be colorized with a theme-specific color if the
+* icon is either a mono icon coming from the theme or the icon has the
* HbIcon::Colorized flag set.
*
+* However it is possible to override this theme-specific color with a custom one
+* by calling this function.
+*
* \warning Currently this method makes use of pixmap() routine in case of NVG icons.
* pixmap() slows down the hardware accelerated rendering.
*
--- a/src/hbcore/image/hbicon_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/image/hbicon_p.h Thu May 27 13:10:59 2010 +0300
@@ -31,6 +31,7 @@
class HbIconAnimator;
class HbBadgeIcon;
+
class HbIconPrivate : public QSharedData
{
public:
@@ -48,6 +49,8 @@
bool removeBadge(const HbIcon& badge);
void removeAllBadges();
bool isBadged() const;
+ void setThemedColor(const QColor &color);
+ QColor themedColor() const;
private:
// disabled
@@ -55,6 +58,7 @@
public:
static HbIconPrivate *d_ptr(HbIcon *icon) { return icon->d.data(); }
+ static HbIconPrivate *d_ptr_detached(HbIcon *icon) { icon->d.detach(); return icon->d.data(); }
QSizeF size;
HbIconEngine *engine; // this is 0 if HbIcon was copy constructed from QIcon.
--- a/src/hbcore/image/hbiconengine.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/image/hbiconengine.cpp Thu May 27 13:10:59 2010 +0300
@@ -74,6 +74,8 @@
const QList<HbBadgeIconInfo> badges() const;
bool isBadged() const;
+ QColor colorToUse(const QString &iconName) const;
+
public:
QSizeF size;
@@ -119,7 +121,9 @@
// Variables introduced for handling colorizable icons
QColor color;
-
+ // The color coming from the color group associated with a widget in its css.
+ QColor themedColor;
+
//Icon Implementation interface which provides abstraction for the type of icon ( Pixmap, NVG, SgImage etc).
// Each class derived from HbIconImpl will have to implement the paint(), pixmap() and defaultSize() API
HbIconImpl *icon;
@@ -135,20 +139,15 @@
// Class HbIconEnginePrivate
HbIconEnginePrivate::HbIconEnginePrivate(const QString &iconName) :
- size(),
- iconNames(),
- pixmap(),
aspectRatioMode(Qt::KeepAspectRatio),
mode(QIcon::Normal),
state(QIcon::Off),
- defaultSize(),
defaultSizeFailed(false),
loadFailed(0),
flags(0),
mirroringMode(HbIcon::Default),
defaultMirroring(Unknown),
animator(0),
- color(QColor()),
icon(0),
badgeInfo(0),
signalConnectionsSet(false),
@@ -190,20 +189,15 @@
}
HbIconEnginePrivate::HbIconEnginePrivate(QDataStream &stream) :
- size(),
- iconNames(),
- pixmap(),
aspectRatioMode(Qt::KeepAspectRatio),
mode(QIcon::Normal),
state(QIcon::Off),
- defaultSize(),
defaultSizeFailed(false),
loadFailed(0),
flags(0),
mirroringMode(HbIcon::Default),
defaultMirroring(Unknown),
animator(0),
- color(QColor()),
icon(0),
badgeInfo(new HbBadgeIcon),
signalConnectionsSet(false),
@@ -313,6 +307,7 @@
defaultMirroring = Unknown;
animator = 0;
color = QColor();
+ themedColor = QColor();
unLoadIcon();
if (badgeInfo) {
badgeInfo->removeAllBadges();
@@ -435,6 +430,15 @@
return name.startsWith("qtg_mono_") && !name.contains('.');
}
+QColor HbIconEnginePrivate::colorToUse(const QString &iconName) const
+{
+ if (flags.testFlag(HbIcon::Colorized) || isMonoIcon(iconName)) {
+ return color.isValid() ? color : themedColor;
+ } else {
+ return QColor();
+ }
+}
+
void HbIconEnginePrivate::addBadge(Qt::Alignment align,
const HbIcon& icon,
int z)
@@ -686,7 +690,7 @@
modeForLoader,
d->iconLoaderOptions(),
0,
- (d->flags.testFlag(HbIcon::Colorized) || isMonoIcon(name)) ? d->color : QColor());
+ d->colorToUse(name));
if (d->icon){
// Draw badges on this pixmap
@@ -716,7 +720,7 @@
modeForLoader,
d->iconLoaderOptions(),
0,
- (d->flags.testFlag(HbIcon::Colorized) || isMonoIcon(name)) ? d->color : QColor());
+ d->colorToUse(name));
// If loading failed, store information so it is not retried.
if (!d->icon) {
@@ -754,6 +758,19 @@
return d->color;
}
+void HbIconEngine::setThemedColor(const QColor &color)
+{
+ if (d->themedColor != color) {
+ clearStoredIconContent();
+ d->themedColor = color;
+ }
+}
+
+QColor HbIconEngine::themedColor() const
+{
+ return d->themedColor;
+}
+
QSizeF HbIconEngine::defaultSize() const
{
QString name = iconName();
@@ -782,8 +799,13 @@
{
if (size != d->size) {
d->size = size;
+ // Update default size if size is set before painting
+ // to obtain the actual default size of the image
+ if (!d->icon && !d->defaultSize.isValid()) {
+ defaultSize();
+ }
// Size changed, invalidate pixmap stored in this object.
- clearStoredIconContent();
+ clearStoredIconContent(KeepDefaultSize);
}
}
@@ -793,21 +815,21 @@
QIcon::State state )
{
// This method is called by QIcon and it should paint the icon with the size defined by 'rect'.
- HbIconImpl* icon = NULL;
+ HbIconImpl* icon = 0;
// update the rendering mode
HbIconLoader::global()->updateRenderingMode(painter->paintEngine()->type());
icon = paintHelper(rect.size(), Qt::KeepAspectRatio, mode, state);
- if (icon){
+ if (icon) {
icon->paint(painter, rect, Qt::AlignCenter);
HbIconLoader::global()->unLoadIcon(icon);
icon->dispose();
- }
- // Now paint any necessary badges.
- if (d->badgeInfo) {
- d->badgeInfo->paint(painter, rect, mode, state, icon->isMirrored());
+ // Now paint any necessary badges.
+ if (d->badgeInfo) {
+ d->badgeInfo->paint(painter, rect, mode, state, icon->isMirrored());
+ }
}
}
@@ -948,7 +970,7 @@
modeForLoader,
d->iconLoaderOptions(),
d->animator,
- (d->flags.testFlag(HbIcon::Colorized) || isMonoIcon(name)) ? d->color : QColor());
+ d->colorToUse(name));
// If loading failed, store information so it is not retried in every repaint.
if (!icon) {
@@ -987,16 +1009,18 @@
The data will be reloaded (well, at least tried to be reloaded) when the icon is
painted the next time.
*/
-void HbIconEngine::clearStoredIconContent(bool resetIconSize, bool unloadedByServer)
+void HbIconEngine::clearStoredIconContent(ClearingFlags flags)
{
#ifdef HB_ICON_TRACES
qDebug("HbIconEngine %x: clearStoredIconContent", (int) this);
#endif
d->pixmap = QPixmap();
- d->unLoadIcon(unloadedByServer);
- d->defaultSize = QSizeF();
- if (resetIconSize) {
+ d->unLoadIcon(flags.testFlag(UnloadedByServer));
+ if (!(flags.testFlag(KeepDefaultSize))) {
+ d->defaultSize = QSizeF();
+ }
+ if (flags.testFlag(ResetIconSize)) {
d->size = QSizeF();
}
d->defaultSizeFailed = false;
@@ -1042,7 +1066,7 @@
// Theme has changed, clear stored icon content
// Server side icon cache is already cleared when theme is changed
if (updatedFiles.count() == 0 || (d->icon && updatedFiles.contains(d->icon->iconFileName())) ) {
- clearStoredIconContent(false, true);
+ clearStoredIconContent(UnloadedByServer);
}
}
@@ -1062,7 +1086,7 @@
{
if (d->flags.testFlag(HbIcon::ResolutionCorrected)) {
// Icon content not valid any more - clear it.
- clearStoredIconContent(true);
+ clearStoredIconContent(ResetIconSize);
}
}
--- a/src/hbcore/image/hbiconengine_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/image/hbiconengine_p.h Thu May 27 13:10:59 2010 +0300
@@ -78,6 +78,9 @@
void setColor(const QColor &color);
QColor color() const;
+ void setThemedColor(const QColor &color);
+ QColor themedColor() const;
+
void paint(QPainter *painter,
const QRect &rect,
QIcon::Mode mode,
@@ -101,6 +104,7 @@
void removeAllBadges();
const QList<HbBadgeIconInfo> badges() const;
HbIconFormatType iconFormatType() const;
+
private:
void ensureSignalConnections();
QPixmap getPixmapFromAnimation() const;
@@ -114,8 +118,16 @@
HbIconAnimation *animation() const;
+public:
+ enum ClearingFlag {
+ ResetIconSize = 0x01,
+ KeepDefaultSize = 0x02,
+ UnloadedByServer = 0x04
+ };
+ Q_DECLARE_FLAGS(ClearingFlags, ClearingFlag)
+
public slots:
- void clearStoredIconContent(bool resetIconSize = false, bool unloadedByServer = false);
+ void clearStoredIconContent(ClearingFlags flags = 0);
void clearStoredNonAnimIconContent();
private slots:
@@ -131,4 +143,6 @@
HbIconEnginePrivate *d;
};
+Q_DECLARE_OPERATORS_FOR_FLAGS(HbIconEngine::ClearingFlags)
+
#endif // HBICONENGINE_P_H
--- a/src/hbcore/image/hbiconsource.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/image/hbiconsource.cpp Thu May 27 13:10:59 2010 +0300
@@ -274,16 +274,16 @@
QByteArray* HbIconSource::byteArray()
{
if (!mByteArray) {
- #ifdef HB_NVG_CS_ICON
+#ifdef HB_NVG_CS_ICON
QFile file(mFilename);
if (!file.open(QIODevice::NotOpen | QIODevice::ReadOnly)) {
return 0;
}
- mByteArray = new QByteArray (file.readAll());
- #endif//nvg
+ mByteArray = new QByteArray(file.readAll());
+#endif
}
- if (!mByteArray->isEmpty()) {
+ if (mByteArray && !mByteArray->isEmpty()) {
return mByteArray;
} else {
return 0;
--- a/src/hbcore/indicatorplugins/hbindicatorinterface.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/indicatorplugins/hbindicatorinterface.cpp Thu May 27 13:10:59 2010 +0300
@@ -162,6 +162,14 @@
\sa HbIndicatorInterface::processClientRequest
*/
+/*!
+ \fn void HbIndicatorInterface::userActivated(const QVariantMap &data)
+
+ The class should emit this signal, when client needs to be notified of the
+ user interaction.
+ @param data Data sent by indicator.
+*/
+
class HbIndicatorInterfacePrivate
{
public:
--- a/src/hbcore/inputfw/hbinputeditorinterface.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/inputfw/hbinputeditorinterface.cpp Thu May 27 13:10:59 2010 +0300
@@ -133,6 +133,10 @@
if (mPrivate) {
mPrivate->lock();
mPrivate->mInputMode = inputMode;
+ if (mPrivate->mLastFocusedState.inputMode() != HbInputModeNone) {
+ // Update also the last known input state, otherwise it won't really change.
+ mPrivate->mLastFocusedState.setInputMode(inputMode);
+ }
mPrivate->unlock();
HbEditorInterfacePrivateCache::instance()->notifyValueChanged(mPrivate->mHostEditor);
}
--- a/src/hbcore/inputfw/hbinputmethod.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/inputfw/hbinputmethod.cpp Thu May 27 13:10:59 2010 +0300
@@ -241,7 +241,9 @@
if (!isActiveMethod()) {
return;
}
+
Q_D(HbInputMethod);
+
d->mInputState.setKeyboard(newKeyboard);
HbInputMethod* stateHandler = d->findStateHandler(d->mInputState);
if (stateHandler) {
--- a/src/hbcore/inputfw/hbinputmethod_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/inputfw/hbinputmethod_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -215,14 +215,29 @@
*/
HbInputMethod* HbInputMethodPrivate::findStateHandler(HbInputState& state)
{
+ HbInputMethod *stateHandler = 0;
+
+ if (mFocusObject &&
+ (mFocusObject->editorInterface().inputConstraints() & HbEditorConstraintIgnoreFocus)) {
+ return HbInputMethodNull::Instance();
+ }
+
if (stateAllowedInEditor(state)) {
- HbInputMethod* stateHandler = HbInputModeCache::instance()->findStateHandler(state);
- if (stateHandler) {
- return stateHandler;
+ stateHandler = HbInputModeCache::instance()->findStateHandler(state);
+ if (!stateHandler &&
+ state.inputMode() == HbInputModeNumeric &&
+ state.language() != QLocale::English &&
+ mFocusObject &&
+ (mFocusObject->editorInterface().inputConstraints() & HbEditorConstraintFixedInputMode)) {
+ // This is number only editor but there was no numeric handler
+ // for specified language. Use default numeric hanlder
+ // as a fallback.
+ state.setLanguage(QLocale::English);
+ stateHandler = HbInputModeCache::instance()->findStateHandler(state);
}
}
- return 0;
+ return stateHandler;
}
/*!
@@ -371,7 +386,9 @@
HbInputMethodDescriptor activeMethod = HbInputSettingProxy::instance()->activeCustomInputMethod();
if (!activeMethod.isEmpty() && !activeMethod.isDefault()) {
// A custom method is active. Don't resolve, just try to load it.
- stateHandler = HbInputModeCache::instance()->loadInputMethod(activeMethod);
+ if ((editorConstraints() & HbEditorConstraintIgnoreFocus) == 0) {
+ stateHandler = HbInputModeCache::instance()->loadInputMethod(activeMethod);
+ }
}
if (!stateHandler) {
@@ -380,11 +397,6 @@
stateHandler = findStateHandler(mInputState);
}
- if (editorConstraints() & HbEditorConstraintIgnoreFocus) {
- // The editor requests us to ignore the focus.
- stateHandler = 0;
- }
-
if (stateHandler == 0) {
// No state handler found (this should never happen under normal circumstances).
// Fall back to null method.
--- a/src/hbcore/inputfw/hbinputmodecache.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/inputfw/hbinputmodecache.cpp Thu May 27 13:10:59 2010 +0300
@@ -372,7 +372,7 @@
Q_D(HbInputModeCache);
HbInputModeProperties stateProperties = d->propertiesFromState(state);
- int languageRangeIndex = -1;
+ int languageRangeIndex = -1;
// First check if there is a method that matches excatly (ie. also specifies
// the language).
@@ -389,7 +389,7 @@
if (properties.inputMode() != HbInputModeCustom) {
if (properties == stateProperties) {
- return d->cachedMethod(d->mMethods[i]);
+ return d->cachedMethod(d->mMethods[i]);
}
}
}
--- a/src/hbcore/layouts/hbanchorlayoutengine_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/layouts/hbanchorlayoutengine_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -778,7 +778,7 @@
vertices->clear();
for( int i = 0; i < el->size(); i++ ) {
if( el->at(i)->isTrivial() ) {
- el->removeAt(i);
+ delete el->takeAt(i);
i--;
}
}
--- a/src/hbcore/primitives/hbiconitem.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/primitives/hbiconitem.cpp Thu May 27 13:10:59 2010 +0300
@@ -123,7 +123,7 @@
void HbIconItemPrivate::updateIconItem()
{
- Q_Q( HbIconItem );
+ Q_Q(HbIconItem);
const QRectF boundingRect = q->rect();
if (!boundingRect.size().isEmpty()) {
mIconRect = boundingRect;
@@ -131,8 +131,17 @@
mAnimator.setIcon(mIcon);
q->update();
}
+ if (!mIcon.isNull() && HbIconPrivate::d_ptr(&mIcon)->themedColor() != mThemedColor) {
+ HbIconPrivate::d_ptr_detached(&mIcon)->setThemedColor(mThemedColor);
+ }
}
+void HbIconItemPrivate::setThemedColor(const QColor &color)
+{
+ mThemedColor = color;
+ updateIconItem();
+}
+
/*!
Constructs a new HbIconItem with \a iconName and \a parent.
\param iconName the name of the icon.
@@ -195,7 +204,10 @@
*/
HbIconItem::~HbIconItem()
{
- HbOogmWatcher::instance()->unregisterIconItem(this);
+ HbOogmWatcher *w = HbOogmWatcher::instance();
+ if (w) {
+ w->unregisterIconItem(this);
+ }
}
/*!
@@ -214,30 +226,14 @@
\param icon the HbIcon instance that this HbIconItem displays.
- When \a takeIconSettings is false, the following settings are not
- taken (ignored) from \a icon: flags, color, mirroring mode. Instead,
- the previous values set via HbIconItem's setters are used.
-
- \sa icon
+ \sa icon()
*/
-void HbIconItem::setIcon(const HbIcon &icon, bool takeIconSettings)
+void HbIconItem::setIcon(const HbIcon &icon, bool reserved)
{
- Q_D(HbIconItem );
+ Q_UNUSED(reserved);
+ Q_D(HbIconItem);
if (d->mIcon != icon) {
- if (takeIconSettings) {
- d->mIcon = icon;
- } else {
- // Must preserve settings like flags, colors, etc. In this case the
- // settings made previously through HbIconItem take precedence over the
- // newly set HbIcon's own settings.
- HbIcon::Flags prevFlags = d->mIcon.flags();
- QColor prevColor = d->mIcon.color();
- HbIcon::MirroringMode prevMirroringMode = d->mIcon.mirroringMode();
- d->mIcon = icon;
- d->mIcon.setFlags(prevFlags);
- d->mIcon.setColor(prevColor);
- d->mIcon.setMirroringMode(prevMirroringMode);
- }
+ d->mIcon = icon;
d->updateIconItem();
}
}
@@ -419,12 +415,15 @@
}
/*!
- Sets the new icon color for the HbIconItem. Note that the color is just
- stored but not actually used if the HbIcon::Colorized flag is not set and the
- icon is not a mono icon from the theme.
+ Sets the new icon color for the HbIconItem. Note that the color
+ is just stored but not actually used if the HbIcon::Colorized flag
+ is not set and the icon is not a mono icon from the theme.
- \param color to be set.
- \sa HbIconItem::color(), HbIcon::setColor()
+ See HbIcon::setColor() for more information on colorization of mono
+ icons in widgets.
+
+ \param color to be set.
+ \sa HbIconItem::color(), HbIcon::setColor()
*/
void HbIconItem::setColor(const QColor &color)
{
@@ -595,7 +594,7 @@
Q_UNUSED(option)
Q_D(HbIconItem);
const QRectF rect(boundingRect());
- if(!rect.isEmpty()){
+ if (!rect.isEmpty()){
if (d->mIconRect != rect) {
d->mIconRect = rect;
d->mIcon.setSize(d->mIconRect.size());
--- a/src/hbcore/primitives/hbiconitem.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/primitives/hbiconitem.h Thu May 27 13:10:59 2010 +0300
@@ -44,7 +44,7 @@
explicit HbIconItem(QGraphicsItem *parent = 0);
virtual ~HbIconItem();
- void setIcon(const HbIcon &icon, bool takeIconSettings = false);
+ void setIcon(const HbIcon &icon, bool reserved = false);
void setSize(const QSizeF &size);
void setAspectRatioMode(Qt::AspectRatioMode mode);
void setAlignment(Qt::Alignment alignment);
--- a/src/hbcore/primitives/hbiconitem_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/primitives/hbiconitem_p.h Thu May 27 13:10:59 2010 +0300
@@ -26,16 +26,6 @@
#ifndef HBICONITEM_P_H
#define HBICONITEM_P_H
-//
-// W A R N I N G
-// -------------
-//
-// This file is not part of the Hb API. It exists purely as an
-// implementation detail. This file may change from version to
-// version without notice, or even be removed.
-//
-// We mean it.
-//
#include "hbwidgetbase_p.h"
#include "hbicon.h"
#include "hbiconanimator.h"
@@ -46,13 +36,14 @@
class HbIconItemPrivate : public HbWidgetBasePrivate
{
- Q_DECLARE_PUBLIC( HbIconItem)
+ Q_DECLARE_PUBLIC(HbIconItem)
public:
HbIconItemPrivate(const HbIcon &icon);
~HbIconItemPrivate();
void clearStoredIconContent();
void updateIconItem();
+ void setThemedColor(const QColor &color);
static HbIconItemPrivate *d_ptr(HbIconItem *item) { return item->d_func(); }
HbIcon mIcon;
HbIconAnimator mAnimator;
@@ -60,6 +51,7 @@
Qt::AspectRatioMode mAspectRatioMode;
QIcon::State mState;
QIcon::Mode mMode;
+ QColor mThemedColor;
QBrush mBrush;
QRectF mIconRect;
static bool outlinesEnabled;
--- a/src/hbcore/primitives/hbprogresstrackitem.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/primitives/hbprogresstrackitem.cpp Thu May 27 13:10:59 2010 +0300
@@ -45,14 +45,17 @@
maximum = 0;
value = 0;
maskWidth = 0;
+ mDiff = maximum - minimum;
}
void HbProgressTrackItem::setMinimum(int min)
{
minimum = min;
+ mDiff = maximum - minimum;
}
void HbProgressTrackItem::setMaximum(int max )
{
maximum = max;
+ mDiff = maximum - minimum;
}
void HbProgressTrackItem::setValue(int val )
{
@@ -79,30 +82,30 @@
if(boundingRect()!= parentItem()->boundingRect()){
setGeometry(parentItem()->boundingRect());
}
- QSize size = parentItem()->boundingRect().size().toSize();
+ /* QSize size = parentItem()->boundingRect().size().toSize();
if(size.width() == 0 || size.height() == 0){
size.setWidth((int)boundingRect().width());
size.setHeight((int)boundingRect().height());
- }
+ }*/
QRectF maskRect;
if(maximum != minimum) {
if(maskWidth == 0) {
if(mOrientation == Qt::Horizontal){
qreal left = (qreal)boundingRect().topLeft().x();
if(inverted) {
- left = (qreal)boundingRect().width()* ((maximum - value)/(qreal) (maximum - minimum));
+ left = (qreal)boundingRect().width()* ((maximum - value)/(qreal) (mDiff));
}
maskRect = QRectF(
left,
(qreal)boundingRect().topLeft().y(),
- (qreal)boundingRect().width()* ((value - minimum)/(qreal) (maximum - minimum)),
+ (qreal)boundingRect().width()* ((value - minimum)/(qreal) (mDiff)),
(qreal)boundingRect().height()
);
}
else{
- qreal start = boundingRect().bottom() -(qreal)boundingRect().height()*((value - minimum)/(qreal) (maximum - minimum));
+ qreal start = boundingRect().bottom() -(qreal)boundingRect().height()*((value - minimum)/(qreal) (mDiff));
maskRect = QRectF(
(qreal)boundingRect().topLeft().x(),
start,
--- a/src/hbcore/primitives/hbprogresstrackitem_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/primitives/hbprogresstrackitem_p.h Thu May 27 13:10:59 2010 +0300
@@ -46,6 +46,7 @@
bool inverted;
qreal maskWidth;
Qt::Orientation mOrientation;
+ int mDiff;
};
#endif // HBPROGRESSTRACKITEM_P_H
--- a/src/hbcore/primitives/hbtextitem.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/primitives/hbtextitem.cpp Thu May 27 13:10:59 2010 +0300
@@ -53,8 +53,6 @@
HbTextItemPrivate::HbTextItemPrivate () :
mAlignment(Qt::AlignLeft | Qt::AlignVCenter),
mElideMode(Qt::ElideNone),
- mDontPrint(false),
- mDontClip(false),
mInvalidateShownText(true),
mOffsetPos(0,0),
mPaintFaded(false),
@@ -73,7 +71,7 @@
Q_Q(HbTextItem);
q->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
- q->setFlag(QGraphicsItem::ItemClipsToShape, !mDontClip);
+ q->setFlag(QGraphicsItem::ItemClipsToShape, false);
q->setFlag(QGraphicsItem::ItemIsSelectable, false);
q->setFlag(QGraphicsItem::ItemIsFocusable, false);
@@ -272,8 +270,12 @@
break;
}
- if(mDontClip) flags |= Qt::TextDontClip;
- if(mDontPrint) flags |= Qt::TextDontPrint;
+ if(q_ptr->flags().testFlag(QGraphicsItem::ItemClipsToShape)) {
+ flags |= Qt::TextDontClip;
+ }
+ if(!q_ptr->isVisible()) { // or ItemHasNoContents?
+ flags |= Qt::TextDontPrint;
+ }
return flags;
}
@@ -418,96 +420,102 @@
}
/*
- This method paint each line in tree pieces.
- In each piece uses different pen.
- When fade effect is not needed on some end centerPen is used.
+ This method paints single piece of text layout.
+ If line contains criticalX value then fadePen is used for painting in other
+ case normalPen is used.
*/
-int HbTextItemPrivate::paintFaded(QPainter *painter,
+void HbTextItemPrivate::paintArea(QPainter *painter,
int firstItemToPaint,
- const QPen& leftPen,
- const QPen& centerPen,
- const QPen& rightPen,
- const QRectF& area ) const
+ int lastItemToPaint,
+ const QPen& normalPen,
+ const QPen& fadePen,
+ qreal criticalX) const
{
- Q_Q(const HbTextItem);
-
- const int n = mTextLayout.lineCount();
- const qreal leftBorder = q->contentsRect().left()-KFadeTolerance;
- const qreal rightBorder = q->contentsRect().right()+KFadeTolerance;
-
- QRectF leftRect(area);
- leftRect.setRight(mFadeFromRect.left());
- QRectF centerRect(area);
- centerRect.moveLeft(leftRect.right());
- centerRect.setRight(mFadeFromRect.right());
- QRectF rightRect(area);
- rightRect.setLeft(centerRect.right());
-
- qreal maxY = area.bottom();
-
- for(int i=firstItemToPaint; i<n; ++i) {
+ for(int i=firstItemToPaint; i<=lastItemToPaint; ++i) {
QTextLine line = mTextLayout.lineAt(i);
QRectF lineRect = line.naturalTextRect();
lineRect.translate(mOffsetPos);
#ifdef HB_FADE_EFFECT_WORKAROUND_ON_PHONE
- const QPointF gradientOffset(
- QPointF(lineRect.left(),
- lineRect.top()+line.ascent())
- );
+ const QPointF gradientOffset(lineRect.left(),
+ lineRect.top()+line.ascent());
+
+ if (lineRect.left()<criticalX && lineRect.right()>criticalX) {
+ setPainterPen(painter, fadePen, gradientOffset);
+ } else {
+ setPainterPen(painter, normalPen, gradientOffset);
+ }
+#else
+ if (lineRect.left()<criticalX && lineRect.right()>criticalX) {
+ painter->setPen(fadePen);
+ } else {
+ painter->setPen(normalPen);
+ }
#endif // HB_FADE_EFFECT_WORKAROUND_ON_PHONE
- QRectF currentCenter(centerRect);
-
- if(lineRect.top()>maxY) {
- // stop painting line by line
- return i; // current line won't be painted at all
- }
+ line.draw(painter, mOffsetPos);
+ } // for i
+}
- if(lineRect.left()<leftBorder) {
-#ifdef HB_FADE_EFFECT_WORKAROUND_ON_PHONE
- setPainterPen(painter, leftPen, gradientOffset);
-#else
- painter->setPen(leftPen);
-#endif
- painter->setClipRect(leftRect);
- line.draw(painter, mOffsetPos);
- } else {
- // no fade on this end so extend currentCenter
- currentCenter.setLeft(leftRect.left());
- }
+/*
+ This method is used to draw center part of lines.
+ It is also used to calculate range of lines needed for painting in this range.
+ */
+int HbTextItemPrivate::paintArea(QPainter *painter,
+ int firstItemToPaint,
+ const QPen& normalPen,
+ qreal lastValidY) const
+{
+ int i;
+ const int n = mTextLayout.lineCount();
- if(lineRect.right()>rightBorder) {
-#ifdef HB_FADE_EFFECT_WORKAROUND_ON_PHONE
- setPainterPen(painter, rightPen, gradientOffset);
-#else
- painter->setPen(rightPen);
+#ifndef HB_FADE_EFFECT_WORKAROUND_ON_PHONE
+ painter->setPen(normalPen);
#endif
- painter->setClipRect(rightRect);
- line.draw(painter, mOffsetPos);
- } else {
- // no fade on this end so extend currentCenter
- currentCenter.setRight(rightRect.right());
+
+ for(i=firstItemToPaint; i<n; ++i) {
+ QTextLine line = mTextLayout.lineAt(i);
+ QRectF lineRect = line.naturalTextRect();
+ lineRect.translate(mOffsetPos);
+
+ if (lineRect.top()>lastValidY) {
+ return i;
}
-
- if(currentCenter.width()>0) {
#ifdef HB_FADE_EFFECT_WORKAROUND_ON_PHONE
- setPainterPen(painter, centerPen, gradientOffset);
-#else
- painter->setPen(centerPen);
-#endif
- painter->setClipRect(currentCenter);
- line.draw(painter, mOffsetPos);
+ const QPointF gradientOffset(lineRect.left(),
+ lineRect.top()+line.ascent());
+
+ setPainterPen(painter, normalPen, gradientOffset);
+#endif // HB_FADE_EFFECT_WORKAROUND_ON_PHONE
+
+ line.draw(painter, mOffsetPos);
+
+ if (lineRect.bottom()>lastValidY) {
+ return i;
}
+ } // for i
+ return n-1;
+}
- if(lineRect.bottom()>maxY) {
- // stop painting line by line
- return i; // current line has been painted partially
+bool HbTextItemPrivate::setClipPath(QPainter *painter,
+ const QRectF& rect,
+ const QPainterPath& initialCliping) const
+{
+ if (initialCliping.isEmpty()) {
+ painter->setClipRect(rect);
+ } else {
+ QPainterPath newPath(rect.topLeft());
+ newPath.addRect(rect);
+
+ if (!initialCliping.intersects(newPath)) {
+ return false; // dont paint
}
- } // for loop
+ newPath = initialCliping.intersected(newPath);
- return n;
-} // paintFaded()
+ painter->setClipPath(newPath);
+ }
+ return true;
+}
void HbTextItemPrivate::paintWithFadeEffect(QPainter *painter) const
{
@@ -515,6 +523,7 @@
QLinearGradient gradient;
setupGradient(&gradient, q->textColor());
+ const QPainterPath initialClipPath = painter->clipPath();
const QRectF contentRect = q->contentsRect();
int i=0;
@@ -534,19 +543,32 @@
if(mTextLayout.lineAt(0).y()+mOffsetPos.y()<contentRect.top()) {
centerRect.setTop(mFadeFromRect.top());
- // top left gradient (//):
+ // top center gradient (==):
QPointF from(mFadeFromRect.topLeft());
+ gradient.setStart(mFadeFromRect.left(),mFadeToRect.top());
+ gradient.setFinalStop(from);
+ QBrush centerBrush(gradient);
+ QPen centerPen;
+ centerPen.setBrush(centerBrush);
+
+ if (setClipPath(painter,
+ QRectF(gradient.start(), mFadeFromRect.topRight()),
+ initialClipPath)) {
+ i = paintArea(painter, 0, centerPen, from.y());
+ } else {
+ i = 0;
+ }
+
+ // top left gradient (//):
gradient.setStart(from.x()-mCornerFadeX, from.y()-mCornerFadeY);
- gradient.setFinalStop(from);
QBrush leftBrush(gradient);
QPen leftPen;
leftPen.setBrush(leftBrush);
-
- // top center gradient (==):
- gradient.setStart(mFadeFromRect.left(),mFadeToRect.top());
- QBrush centerBrush(gradient);
- QPen centerPen;
- centerPen.setBrush(centerBrush);
+ if (setClipPath(painter,
+ QRectF(mFadeToRect.topLeft(), mFadeFromRect.topLeft()),
+ initialClipPath)) {
+ paintArea(painter, 0, i, centerPen, leftPen, contentRect.left()-KFadeTolerance);
+ }
// top right gradient (\\):
from = mFadeFromRect.topRight();
@@ -556,52 +578,94 @@
QPen rightPen;
rightPen.setBrush(rightBrush);
- QRectF clipTo(mFadeToRect);
- clipTo.setBottom(mFadeFromRect.top());
- i = paintFaded(painter, 0, leftPen, centerPen, rightPen, clipTo);
+ if (setClipPath(painter,
+ QRectF(mFadeToRect.topRight(), mFadeFromRect.topRight()),
+ initialClipPath)) {
+ paintArea(painter, 0, i, centerPen, rightPen, contentRect.right()+KFadeTolerance);
+ }
}
+ bool paintBottom = false;
if(mTextLayout.lineAt(n-1).naturalTextRect().bottom()+mOffsetPos.y()>contentRect.bottom()) {
// bottom fade is needed here
centerRect.setBottom(mFadeFromRect.bottom());
+ paintBottom = true;
}
// paint center part
{
+ int startFrom = i;
+ QPen centerPen(q->textColor());
+ if (setClipPath(painter,
+ QRectF(QPointF(mFadeFromRect.left(), centerRect.top()),
+ QPointF(mFadeFromRect.right(), centerRect.bottom())),
+ initialClipPath)) {
+ // center with no gradient:
+ i = paintArea(painter, i, centerPen, centerRect.bottom());
+ }
+
// left gradient | ||
gradient.setStart(mFadeToRect.left(), mFadeFromRect.top());
gradient.setFinalStop(mFadeFromRect.topLeft());
QBrush leftBrush(gradient);
QPen leftPen;
leftPen.setBrush(leftBrush);
+ if (setClipPath(painter,
+ QRectF(centerRect.topLeft(),
+ QPointF(mFadeFromRect.left(),
+ centerRect.bottom())),
+ initialClipPath)) {
+ paintArea(painter, startFrom, i, centerPen, leftPen, contentRect.left()-KFadeTolerance);
+ }
- // center with no gradient:
- QPen centerPen(q->textColor());
-
- // top right gradient || |
+ // right gradient || |
gradient.setStart(mFadeToRect.right(), mFadeFromRect.top());
gradient.setFinalStop(mFadeFromRect.topRight());
QBrush rightBrush(gradient);
QPen rightPen;
rightPen.setBrush(rightBrush);
- i = paintFaded(painter, i, leftPen, centerPen, rightPen, centerRect);
+
+ if (setClipPath(painter,
+ QRectF(QPointF(mFadeFromRect.right(), centerRect.top()),
+ centerRect.bottomRight()),
+ initialClipPath)) {
+ paintArea(painter, startFrom, i, centerPen, rightPen, contentRect.right()+KFadeTolerance);
+ }
}
// need to draw bottom as faded? is some lines remained?
- if(i<n) {
- // bottom left gradient (\\):
+ if (paintBottom) {
+ int startFrom = i;
+
+ // bottom center gradient (==):
QPointF from(mFadeFromRect.bottomLeft());
+ gradient.setFinalStop(from);
+ gradient.setStart(mFadeFromRect.left(),mFadeToRect.bottom());
+ QBrush centerBrush(gradient);
+ QPen centerPen;
+ centerPen.setBrush(centerBrush);
+
+ if (setClipPath(painter,
+ QRectF(mFadeFromRect.bottomLeft(),
+ QPointF(mFadeFromRect.right(), mFadeToRect.bottom())),
+ initialClipPath)) {
+ // center with no gradient:
+ i = paintArea(painter, i, centerPen, mFadeToRect.bottom());
+ }
+
+ // bottom left gradient (\\):
gradient.setStart(from.x()-mCornerFadeX, from.y()+mCornerFadeY);
- gradient.setFinalStop(from);
QBrush leftBrush(gradient);
QPen leftPen;
leftPen.setBrush(leftBrush);
- // bottom center gradient (==):
- gradient.setStart(mFadeFromRect.left(),mFadeToRect.bottom());
- QBrush centerBrush(gradient);
- QPen centerPen;
- centerPen.setBrush(centerBrush);
+ if (setClipPath(painter,
+ QRectF(mFadeFromRect.bottomLeft(),
+ mFadeToRect.bottomLeft()),
+ initialClipPath)) {
+ // center with no gradient:
+ paintArea(painter, startFrom, i, centerPen, leftPen, contentRect.left()-KFadeTolerance);
+ }
// bottom right gradient (//):
from = mFadeFromRect.bottomRight();
@@ -611,10 +675,17 @@
QPen rightPen;
rightPen.setBrush(rightBrush);
- QRectF clipTo(mFadeToRect);
- clipTo.setTop(mFadeFromRect.bottom());
- i = paintFaded(painter, 0, leftPen, centerPen, rightPen, clipTo);
+ if (setClipPath(painter,
+ QRectF(mFadeFromRect.bottomRight(),
+ mFadeToRect.bottomRight()),
+ initialClipPath)) {
+ // center with no gradient:
+ paintArea(painter, startFrom, i, centerPen, rightPen, contentRect.right()+KFadeTolerance);
+ }
}
+
+ // restoring initial clipping region
+ painter->setClipPath(initialClipPath);
}
void HbTextItemPrivate::setFadeLengths(qreal xLength, qreal yLength)
@@ -654,7 +725,7 @@
QRectF HbTextItemPrivate::boundingRect (const QRectF& contentsRect) const
{
QRectF result(layoutBoundingRect());
- if(!mDontClip) {
+ if(q_ptr->flags().testFlag(QGraphicsItem::ItemClipsToShape)) {
// clip
QRectF clippedTo = contentsRect;
@@ -898,6 +969,11 @@
Q_UNUSED(option);
Q_UNUSED(widget);
+ // optimalization:
+ if (option->exposedRect.isEmpty()) {
+ return;
+ }
+
// Save painter's state
QPen oldPen = painter->pen();
@@ -910,20 +986,20 @@
painter->drawRect(rect);
}
- if(!d->mDontPrint) {
- painter->setPen(textColor());
+
+ painter->setPen(textColor());
- Q_ASSERT(d->mPaintFaded == d->fadeNeeded(contentsRect()));
- if(!d->mDontClip && d->mPaintFaded ) {
- d->paintWithFadeEffect(painter);
- } else {
- d->mTextLayout.draw(painter,
- d->mOffsetPos,
- QVector<QTextLayout::FormatRange>(),
- d->mDontClip?QRectF():contentsRect());
- }
+ Q_ASSERT(d->mPaintFaded == d->fadeNeeded(contentsRect()));
+ if(d->mPaintFaded ) {
+ d->paintWithFadeEffect(painter);
+ } else {
+ d->mTextLayout.draw(painter,
+ d->mOffsetPos,
+ QVector<QTextLayout::FormatRange>(),
+ flags().testFlag(ItemClipsToShape)?contentsRect():QRectF());
}
+
// Restore painter's state
painter->setPen(oldPen);
}
@@ -1153,53 +1229,46 @@
Shows (default) or hides text.
Size hint remains unchanged (same as when text is visible).
- \sa HbTextItem::isVisible()
+ Equvalent of QGraphicsItem::setVisible(bool)
*/
void HbTextItem::setTextVisible(bool isVisible)
{
- Q_D(HbTextItem);
- if( d->mDontPrint == isVisible ) {
- d->mDontPrint = !isVisible;
- update();
- }
+ setVisible(isVisible);
}
/*!
Returns if text is visible.
\sa HbTextItem::setTextVisible(bool)
+
+ Equvalent of QGraphicsItem::isVisible()
*/
bool HbTextItem::isTextVisible() const
{
- Q_D(const HbTextItem);
- return !d->mDontPrint;
+ return isVisible();
}
/*!
- enables (default) or disables text clipping when item geometry is too small.
+ enables (default) od disables text cliping when item geometry is to small.
\sa HbTextItem::isTextClip()
+
+ Equvalent of QGraphicsItem::setFlag(QGraphicsItem::ItemClipsToShape, clipping)
*/
void HbTextItem::setTextClip(bool clipping)
{
- Q_D(HbTextItem);
- if( d->mDontClip == clipping ) {
- prepareGeometryChange();
- d->mDontClip = !clipping;
- setFlag(QGraphicsItem::ItemClipsToShape, clipping);
- update();
- }
+ setFlag(QGraphicsItem::ItemClipsToShape, clipping);
}
/*!
- Returns true if text is clipped when item geometry is too small.
+ Returns true if text is cliped when item geometry is to small.
+ \sa HbTextItem::setTextClip(bool)
- \sa HbTextItem::setTextClip(bool)
+ Equvalent of QGraphicsItem::flags().testFlag(QGraphicsItem::ItemClipsToShape)
*/
bool HbTextItem::isTextClip() const
{
- Q_D(const HbTextItem);
- return !d->mDontClip;
+ return flags().testFlag(ItemClipsToShape);
}
/*!
--- a/src/hbcore/primitives/hbtextitem_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/primitives/hbtextitem_p.h Thu May 27 13:10:59 2010 +0300
@@ -76,12 +76,34 @@
const QPen& pen,
const QPointF& lineBegin);
+ void paintArea(QPainter *painter,
+ int firstItemToPaint,
+ int lastItemToPaint,
+ const QPen& normalPen,
+ const QPen& fadePen,
+ qreal criticalX) const;
+
+ int paintArea(QPainter *painter,
+ int firstItemToPaint,
+ const QPen& normalPen,
+ qreal lastValidY) const;
+
+ int paintHorizontalSection(QPainter *painter,
+ int firstItemToPaint,
+ QLinearGradient& gradient,
+ qreal startY,
+ qreal stopY) const;
+
int paintFaded(QPainter *painter,
int firstItemToPaint,
const QPen& leftPen,
const QPen& centerPen,
const QPen& rightPen,
- const QRectF& area ) const;
+ const QPainterPath& area ) const;
+
+ bool setClipPath(QPainter *painter,
+ const QRectF& rect,
+ const QPainterPath& initialCliping) const;
void paintWithFadeEffect(QPainter *painter) const;
@@ -93,8 +115,6 @@
QString mText;
Qt::Alignment mAlignment;
Qt::TextElideMode mElideMode;
- bool mDontPrint; // needed to fake text flags
- bool mDontClip; // needed to fake text flags
bool mInvalidateShownText;
QRectF mOldContentsRect;
Binary file src/hbcore/resources/centralrepository/2002C304.txt has changed
Binary file src/hbcore/resources/keymaps/100.txt has changed
Binary file src/hbcore/resources/keymaps/108.txt has changed
Binary file src/hbcore/resources/keymaps/109.txt has changed
Binary file src/hbcore/resources/keymaps/115.txt has changed
Binary file src/hbcore/resources/keymaps/120.txt has changed
Binary file src/hbcore/resources/keymaps/125.txt has changed
Binary file src/hbcore/resources/keymaps/129.txt has changed
Binary file src/hbcore/resources/keymaps/130.txt has changed
Binary file src/hbcore/resources/keymaps/132.txt has changed
Binary file src/hbcore/resources/keymaps/14.txt has changed
Binary file src/hbcore/resources/keymaps/20.txt has changed
Binary file src/hbcore/resources/keymaps/24.txt has changed
Binary file src/hbcore/resources/keymaps/27.txt has changed
Binary file src/hbcore/resources/keymaps/28.txt has changed
Binary file src/hbcore/resources/keymaps/33.txt has changed
Binary file src/hbcore/resources/keymaps/40.txt has changed
Binary file src/hbcore/resources/keymaps/42.txt has changed
Binary file src/hbcore/resources/keymaps/43.txt has changed
Binary file src/hbcore/resources/keymaps/48.txt has changed
Binary file src/hbcore/resources/keymaps/50.txt has changed
Binary file src/hbcore/resources/keymaps/51.txt has changed
Binary file src/hbcore/resources/keymaps/52.txt has changed
Binary file src/hbcore/resources/keymaps/66.txt has changed
Binary file src/hbcore/resources/keymaps/71.txt has changed
Binary file src/hbcore/resources/keymaps/73.txt has changed
Binary file src/hbcore/resources/keymaps/76.txt has changed
Binary file src/hbcore/resources/keymaps/8.txt has changed
Binary file src/hbcore/resources/keymaps/89.txt has changed
Binary file src/hbcore/resources/keymaps/90.txt has changed
Binary file src/hbcore/resources/keymaps/95.txt has changed
Binary file src/hbcore/resources/keymaps/96.txt has changed
--- a/src/hbcore/resources/smileys/smileys_theme.sml Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/smileys/smileys_theme.sml Thu May 27 13:10:59 2010 +0300
@@ -15,7 +15,7 @@
qtg_small_smiley_kissing :-* :*
qtg_small_smiley_irritated :-X :X :-x :x
qtg_small_smiley_sarcastic :-> :>
-qtg_small_smiley_verycool B-) B)
+qtg_small_smiley_very_cool B-) B)
qtg_small_smiley_eyebrows %-) %)
qtg_small_smiley_angry :-@ :@
qtg_small_smiley_sarcastic_mad ;-> ;>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/animations/hbdefault/qtg_anim_loading.axml Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,14 @@
+<animations>
+<icon name="qtg_anim_loading" frame_duration="50" playmode="loop">
+<frame>qtg_anim_loading_1</frame>
+<frame>qtg_anim_loading_2</frame>
+<frame>qtg_anim_loading_3</frame>
+<frame>qtg_anim_loading_4</frame>
+<frame>qtg_anim_loading_5</frame>
+<frame>qtg_anim_loading_6</frame>
+<frame>qtg_anim_loading_7</frame>
+<frame>qtg_anim_loading_8</frame>
+<frame>qtg_anim_loading_9</frame>
+<frame>qtg_anim_loading_10</frame>
+</icon>
+</animations>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/animations/hbdefault/qtg_anim_longtap.axml Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,13 @@
+<animations>
+<icon name="qtg_anim_longtap" frame_duration="50" playmode="loop">
+<frame>qtg_anim_longtap_1</frame>
+<frame>qtg_anim_longtap_2</frame>
+<frame>qtg_anim_longtap_3</frame>
+<frame>qtg_anim_longtap_4</frame>
+<frame>qtg_anim_longtap_5</frame>
+<frame>qtg_anim_longtap_6</frame>
+<frame>qtg_anim_longtap_7</frame>
+<frame>qtg_anim_longtap_8</frame>
+<frame>qtg_anim_longtap_9</frame>
+</icon>
+</animations>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/animations/hbdefault/qtg_anim_small_loading.axml Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,14 @@
+<animations>
+<icon name="qtg_anim_small_loading" frame_duration="50" playmode="loop">
+<frame>qtg_anim_small_loading_1</frame>
+<frame>qtg_anim_small_loading_2</frame>
+<frame>qtg_anim_small_loading_3</frame>
+<frame>qtg_anim_small_loading_4</frame>
+<frame>qtg_anim_small_loading_5</frame>
+<frame>qtg_anim_small_loading_6</frame>
+<frame>qtg_anim_small_loading_7</frame>
+<frame>qtg_anim_small_loading_8</frame>
+<frame>qtg_anim_small_loading_9</frame>
+<frame>qtg_anim_small_loading_10</frame>
+</icon>
+</animations>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/animations/hbdefault/qtg_status_progress.axml Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,9 @@
+<animations>
+<icon name="qtg_status_progress" frame_duration="50" playmode="loop">
+<frame>qtg_status_progress_1</frame>
+<frame>qtg_status_progress_2</frame>
+<frame>qtg_status_progress_3</frame>
+<frame>qtg_status_progress_4</frame>
+<frame>qtg_status_progress_5</frame>
+</icon>
+</animations>
Binary file src/hbcore/resources/themes/hbdefault.themeindex has changed
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading.axml Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-<animations>
-<icon name="qtg_anim_loading" frame_duration="50" playmode="loop">
-<frame>qtg_anim_loading_1</frame>
-<frame>qtg_anim_loading_2</frame>
-<frame>qtg_anim_loading_3</frame>
-<frame>qtg_anim_loading_4</frame>
-<frame>qtg_anim_loading_5</frame>
-<frame>qtg_anim_loading_6</frame>
-<frame>qtg_anim_loading_7</frame>
-<frame>qtg_anim_loading_8</frame>
-<frame>qtg_anim_loading_9</frame>
-<frame>qtg_anim_loading_10</frame>
-</icon>
-</animations>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap.axml Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-<animations>
-<icon name="qtg_anim_longtap" frame_duration="50" playmode="loop">
-<frame>qtg_anim_longtap_1</frame>
-<frame>qtg_anim_longtap_2</frame>
-<frame>qtg_anim_longtap_3</frame>
-<frame>qtg_anim_longtap_4</frame>
-<frame>qtg_anim_longtap_5</frame>
-<frame>qtg_anim_longtap_6</frame>
-<frame>qtg_anim_longtap_7</frame>
-<frame>qtg_anim_longtap_8</frame>
-<frame>qtg_anim_longtap_9</frame>
-</icon>
-</animations>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading.axml Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-<animations>
-<icon name="qtg_anim_small_loading" frame_duration="50" playmode="loop">
-<frame>qtg_anim_small_loading_1</frame>
-<frame>qtg_anim_small_loading_2</frame>
-<frame>qtg_anim_small_loading_3</frame>
-<frame>qtg_anim_small_loading_4</frame>
-<frame>qtg_anim_small_loading_5</frame>
-<frame>qtg_anim_small_loading_6</frame>
-<frame>qtg_anim_small_loading_7</frame>
-<frame>qtg_anim_small_loading_8</frame>
-<frame>qtg_anim_small_loading_9</frame>
-<frame>qtg_anim_small_loading_10</frame>
-</icon>
-</animations>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_h_bg_c.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_h_bg_c.svg Thu May 27 13:10:59 2010 +0300
@@ -2,11 +2,5 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" y="0px">
<rect fill="none" height="15" width="15"/>
-<rect fill="url(#SVGID_1_)" height="15" width="15"/>
-<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4319 1250)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="1242.499" x2="1242.499" y1="4304.333" y2="4348.7798">
-<stop offset="0" style="stop-color:#D2D2D7"/>
-<stop offset="1" style="stop-color:#AAAAAF"/>
-</linearGradient>
-</defs>
+<rect fill="#AAAAAF" height="15" width="15"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_h_bg_l.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_h_bg_l.svg Thu May 27 13:10:59 2010 +0300
@@ -3,8 +3,9 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" y="0px">
<rect fill="none" height="15" width="15"/>
<rect fill="url(#SVGID_1_)" height="15" width="15"/>
+<rect fill="#969696" height="15" width="1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4304 1265)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="1257.499" x2="1257.499" y1="4304.333" y2="4348.7798">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -940.5195 -3915.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3923.48" x2="-3923.48" y1="-940.5195" y2="-955.5195">
<stop offset="0" style="stop-color:#D2D2D7"/>
<stop offset="1" style="stop-color:#AAAAAF"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_h_bg_r.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_h_bg_r.svg Thu May 27 13:10:59 2010 +0300
@@ -2,11 +2,5 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" y="0px">
<rect fill="none" height="15" width="15"/>
-<rect fill="url(#SVGID_1_)" height="15" width="15"/>
-<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4334 1235)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="1227.499" x2="1227.499" y1="4304.333" y2="4348.7798">
-<stop offset="0" style="stop-color:#D2D2D7"/>
-<stop offset="1" style="stop-color:#AAAAAF"/>
-</linearGradient>
-</defs>
+<rect fill="#AAAAAF" height="15" width="15"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_v_bg_b.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_v_bg_b.svg Thu May 27 13:10:59 2010 +0300
@@ -1,12 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" y="0px">
-<rect fill="none" height="15" width="15"/>
-<rect fill="url(#SVGID_1_)" height="15" width="15"/>
-<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.4995" x2="7.4995" y1="-29.6665" y2="14.7804">
-<stop offset="0" style="stop-color:#D2D2D7"/>
-<stop offset="1" style="stop-color:#AAAAAF"/>
-</linearGradient>
-</defs>
+<rect fill="none" height="15" width="15" x="0"/>
+<rect fill="#AAAAAF" height="15" width="15"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_v_bg_c.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_v_bg_c.svg Thu May 27 13:10:59 2010 +0300
@@ -1,12 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" y="0px">
-<rect fill="none" height="15" width="15"/>
-<rect fill="url(#SVGID_1_)" height="15" width="15"/>
-<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.4995" x2="7.4995" y1="-14.6675" y2="29.7809">
-<stop offset="0" style="stop-color:#D2D2D7"/>
-<stop offset="1" style="stop-color:#AAAAAF"/>
-</linearGradient>
-</defs>
+<rect fill="none" height="15" width="15" x="0"/>
+<rect fill="#AAAAAF" height="15" width="15"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_v_bg_t.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_v_bg_t.svg Thu May 27 13:10:59 2010 +0300
@@ -1,10 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" y="0px">
-<rect fill="none" height="15" width="15"/>
+<rect fill="none" height="15" width="15" x="0"/>
<rect fill="url(#SVGID_1_)" height="15" width="15"/>
+<rect fill="#969696" height="1" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.4995" x2="7.4995" y1="0.333" y2="44.78">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.4995" x2="7.4995" y1="0" y2="15">
<stop offset="0" style="stop-color:#D2D2D7"/>
<stop offset="1" style="stop-color:#AAAAAF"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_filled_b.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_filled_b.svg Thu May 27 13:10:59 2010 +0300
@@ -3,10 +3,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M5,14c0,2.757,2.243,5,5,5s5-2.243,5-5V0H5V14z" fill="url(#SVGID_1_)"/>
-<path d="M10,18c-2.206,0-4-1.795-4-4V0H5v14c0,2.757,2.243,5,5,5s5-2.243,5-5V0h-1v14 C14,16.205,12.206,18,10,18z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M15,14c0,2.757-2.244,5-5,5c-2.758,0-5-2.243-5-5V0h10V14z" fill="url(#SVGID_1_)"/>
+<path d="M10,18c2.205,0,4-1.795,4-4V0h1v14c0,2.757-2.244,5-5,5c-2.758,0-5-2.243-5-5V0h1v14 C6,16.205,7.793,18,10,18z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -2257 -249)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-258.5005" x2="-258.5005" y1="2262" y2="2272">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1726 -249)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-258.5005" x2="-258.5005" y1="-1740.9995" y2="-1730.9995">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_filled_c.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_filled_c.svg Thu May 27 13:10:59 2010 +0300
@@ -4,10 +4,10 @@
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
<rect fill="url(#SVGID_1_)" height="20" width="10" x="5"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="5"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="14"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="5"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -2277 -229)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-239.0005" x2="-239.0005" y1="2282" y2="2292">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1706 -229)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-239.0005" x2="-239.0005" y1="-1720.9995" y2="-1710.9995">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_filled_t.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_filled_t.svg Thu May 27 13:10:59 2010 +0300
@@ -3,10 +3,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M5,6c0-2.757,2.243-5,5-5s5,2.243,5,5v14H5V6z" fill="url(#SVGID_1_)"/>
-<path d="M10,2C7.794,2,6,3.795,6,6v14H5V6c0-2.757,2.243-5,5-5s5,2.243,5,5v14h-1V6 C14,3.795,12.206,2,10,2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M15,6c0-2.757-2.244-5-5-5C7.242,1,5,3.243,5,6v14h10V6z" fill="url(#SVGID_1_)"/>
+<path d="M10,2c2.205,0,4,1.795,4,4v14h1V6c0-2.757-2.244-5-5-5C7.242,1,5,3.243,5,6v14h1V6 C6,3.795,7.793,2,10,2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 1 1 0 -2297 2235)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2224.5005" x2="-2224.5005" y1="2302" y2="2312">
+<linearGradient gradientTransform="matrix(0 1 -1 0 -1686 2235)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2224.5005" x2="-2224.5005" y1="-1700.9995" y2="-1690.9995">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_frame_b.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_frame_b.svg Thu May 27 13:10:59 2010 +0300
@@ -3,10 +3,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M4,14c0,3.3,2.7,6,6,6s6-2.7,6-6V0H4V14z" fill="url(#SVGID_1_)"/>
-<path d="M15,14c0,2.757-2.243,5-5,5s-5-2.243-5-5V0H4v14c0,3.3,2.7,6,6,6s6-2.7,6-6V0h-1V14z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M16,14c0,3.3-2.701,6-6,6c-3.301,0-6-2.7-6-6V0h12V14z" fill="url(#SVGID_1_)"/>
+<path d="M5,14c0,2.757,2.242,5,5,5c2.756,0,5-2.243,5-5V0h1v14c0,3.3-2.701,6-6,6c-3.301,0-6-2.7-6-6V0h1V14z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -1885 105)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="95" x2="95" y1="1901" y2="1889">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1348 105)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="95" x2="95" y1="-1352.001" y2="-1364.0005">
<stop offset="0" style="stop-color:#E6E6E6"/>
<stop offset="0.7" style="stop-color:#E6E6E6"/>
<stop offset="1" style="stop-color:#D2D2D2"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_frame_c.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_frame_c.svg Thu May 27 13:10:59 2010 +0300
@@ -4,10 +4,10 @@
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
<rect fill="url(#SVGID_1_)" height="20" width="12" x="4"/>
+<rect fill-opacity="0.1" height="20" stroke-opacity="0.1" width="1" x="15"/>
<rect fill-opacity="0.1" height="20" stroke-opacity="0.1" width="1" x="4"/>
-<rect fill-opacity="0.1" height="20" stroke-opacity="0.1" width="1" x="15"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -1905 125)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="115" x2="115" y1="1921" y2="1909">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1328 125)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="115" x2="115" y1="-1332.001" y2="-1344.0005">
<stop offset="0" style="stop-color:#E6E6E6"/>
<stop offset="0.7" style="stop-color:#E6E6E6"/>
<stop offset="1" style="stop-color:#D2D2D2"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_frame_t.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_frame_t.svg Thu May 27 13:10:59 2010 +0300
@@ -3,10 +3,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M4,6c0-3.3,2.7-6,6-6s6,2.7,6,6v14H4V6z" fill="url(#SVGID_1_)"/>
-<path d="M15,6c0-2.757-2.243-5-5-5S5,3.243,5,6v14H4V6c0-3.3,2.7-6,6-6s6,2.7,6,6v14h-1V6z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M16,6c0-3.3-2.701-6-6-6C6.699,0,4,2.7,4,6v14h12V6z" fill="url(#SVGID_1_)"/>
+<path d="M5,6c0-2.757,2.242-5,5-5c2.756,0,5,2.243,5,5v14h1V6c0-3.3-2.701-6-6-6C6.699,0,4,2.7,4,6v14h1V6z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 1 1 0 -1925 1827)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1816.9995" x2="-1816.9995" y1="1941" y2="1929">
+<linearGradient gradientTransform="matrix(0 1 -1 0 -1308 1827)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1816.9995" x2="-1816.9995" y1="-1312.001" y2="-1324.0005">
<stop offset="0" style="stop-color:#E6E6E6"/>
<stop offset="0.7" style="stop-color:#E6E6E6"/>
<stop offset="1" style="stop-color:#D2D2D2"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_disabled_c.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
+<rect fill="none" height="20" width="20"/>
+<rect fill="none" height="20" width="20"/>
+<rect fill="#AAAAAA" fill-opacity="0.8" height="12" stroke-opacity="0.8" width="20" y="4"/>
+<rect fill="#646464" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="20" y="4"/>
+<rect fill="#646464" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="20" y="15"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_disabled_l.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
+<rect fill="none" height="20" width="20"/>
+<rect fill="none" height="20" width="20"/>
+<path d="M10,4c-3.3,0-6,2.7-6,6s2.7,6,6,6h10V4H10z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M10,15c-2.757,0-5-2.243-5-5s2.243-5,5-5h10V4H10c-3.3,0-6,2.7-6,6s2.7,6,6,6h10v-1H10z" fill="#646464" fill-opacity="0.5" stroke-opacity="0.5"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_disabled_r.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
+<rect fill="none" height="20" width="20"/>
+<rect fill="none" height="20" width="20"/>
+<path d="M10,4c3.3,0,6,2.7,6,6s-2.7,6-6,6H0V4H10z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M10,15c2.757,0,5-2.243,5-5s-2.243-5-5-5H0V4h10c3.3,0,6,2.7,6,6s-2.7,6-6,6H0v-1H10z" fill="#646464" fill-opacity="0.5" stroke-opacity="0.5"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_filled_b.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_filled_b.svg Thu May 27 13:10:59 2010 +0300
@@ -3,10 +3,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M5,10c0,2.757,2.243,5,5,5s5-2.243,5-5V0H5V10z" fill="url(#SVGID_1_)"/>
-<path d="M10,14c-2.206,0-4-1.795-4-4V0H5v10c0,2.757,2.243,5,5,5s5-2.243,5-5V0h-1v10 C14,12.205,12.206,14,10,14z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M15,10c0,2.757-2.244,5-5,5c-2.758,0-5-2.243-5-5V0h10V10z" fill="url(#SVGID_1_)"/>
+<path d="M10,14c2.205,0,4-1.795,4-4V0h1v10c0,2.757-2.244,5-5,5c-2.758,0-5-2.243-5-5V0h1v10 C6,12.205,7.793,14,10,14z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -2574 74)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="66.5" x2="66.5" y1="2579" y2="2589">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1412 74)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="66.5" x2="66.5" y1="-1426.9995" y2="-1417">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_filled_c.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_filled_c.svg Thu May 27 13:10:59 2010 +0300
@@ -4,10 +4,10 @@
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
<rect fill="url(#SVGID_1_)" height="20" width="10" x="5"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="5"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="14"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="5"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -2594 94)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="84" x2="84" y1="2599" y2="2609">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1392 94)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="84" x2="84" y1="-1406.9995" y2="-1397">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_filled_t.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_filled_t.svg Thu May 27 13:10:59 2010 +0300
@@ -3,10 +3,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M5,10c0-2.757,2.243-5,5-5s5,2.243,5,5v10H5V10z" fill="url(#SVGID_1_)"/>
-<path d="M10,6c-2.206,0-4,1.795-4,4v10H5V10c0-2.757,2.243-5,5-5s5,2.243,5,5v10h-1V10 C14,7.795,12.206,6,10,6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M15,10c0-2.757-2.244-5-5-5c-2.758,0-5,2.243-5,5v10h10V10z" fill="url(#SVGID_1_)"/>
+<path d="M10,6c2.205,0,4,1.795,4,4v10h1V10c0-2.757-2.244-5-5-5c-2.758,0-5,2.243-5,5v10h1V10 C6,7.795,7.793,6,10,6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 1 1 0 -2614 2558)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2545.5005" x2="-2545.5005" y1="2619" y2="2629">
+<linearGradient gradientTransform="matrix(0 1 -1 0 -1372 2558)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2545.5005" x2="-2545.5005" y1="-1386.9995" y2="-1377">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_disabled_b.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
+<rect fill="none" height="20" width="20"/>
+<rect fill="none" height="20" width="20"/>
+<path d="M16,10c0,3.3-2.7,6-6,6s-6-2.7-6-6V0h12V10z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M5,10c0,2.757,2.243,5,5,5s5-2.243,5-5V0h1v10c0,3.3-2.7,6-6,6s-6-2.7-6-6V0h1V10z" fill="#646464" fill-opacity="0.5" stroke-opacity="0.5"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_disabled_c.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
+<rect fill="none" height="20" width="20"/>
+<rect fill="none" height="20" width="20"/>
+<rect fill="#AAAAAA" fill-opacity="0.8" height="20" stroke-opacity="0.8" width="12" x="4"/>
+<rect fill="#646464" fill-opacity="0.5" height="20" stroke-opacity="0.5" width="1" x="15"/>
+<rect fill="#646464" fill-opacity="0.5" height="20" stroke-opacity="0.5" width="1" x="4"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_disabled_t.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
+<rect fill="none" height="20" width="20"/>
+<rect fill="none" height="20" width="20"/>
+<path d="M16,10c0-3.3-2.7-6-6-6s-6,2.7-6,6v10h12V10z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M5,10c0-2.757,2.243-5,5-5s5,2.243,5,5v10h1V10c0-3.3-2.7-6-6-6s-6,2.7-6,6v10h1V10z" fill="#646464" fill-opacity="0.5" stroke-opacity="0.5"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_normal_b.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_normal_b.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M4,10c0,3.3,2.7,6,6,6s6-2.7,6-6V0H4V10z" fill="url(#SVGID_1_)"/>
-<path d="M15,10c0,2.757-2.243,5-5,5s-5-2.243-5-5V0H4v10c0,3.3,2.7,6,6,6s6-2.7,6-6V0h-1V10z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<rect fill="none" height="20" width="20"/>
+<path d="M16,10c0,3.3-2.701,6-6,6c-3.301,0-6-2.7-6-6V0h12V10z" fill="url(#SVGID_1_)"/>
+<path d="M5,10c0,2.757,2.242,5,5,5c2.755,0,5-2.243,5-5V0h1v10c0,3.3-2.701,6-6,6c-3.301,0-6-2.7-6-6V0h1V10z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -2191 417)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="409" x2="409" y1="2207" y2="2195">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1046 417)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="409" x2="409" y1="-1050.001" y2="-1062.0005">
<stop offset="0" style="stop-color:#E6E6E6"/>
<stop offset="0.7" style="stop-color:#E6E6E6"/>
<stop offset="1" style="stop-color:#D2D2D2"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_normal_c.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_normal_c.svg Thu May 27 13:10:59 2010 +0300
@@ -4,10 +4,10 @@
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
<rect fill="url(#SVGID_1_)" height="20" width="12" x="4"/>
+<rect fill-opacity="0.1" height="20" stroke-opacity="0.1" width="1" x="15"/>
<rect fill-opacity="0.1" height="20" stroke-opacity="0.1" width="1" x="4"/>
-<rect fill-opacity="0.1" height="20" stroke-opacity="0.1" width="1" x="15"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -2211 437)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="427" x2="427" y1="2227" y2="2215">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1026 437)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="427" x2="427" y1="-1030.001" y2="-1042.0005">
<stop offset="0" style="stop-color:#E6E6E6"/>
<stop offset="0.7" style="stop-color:#E6E6E6"/>
<stop offset="1" style="stop-color:#D2D2D2"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_normal_t.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_normal_t.svg Thu May 27 13:10:59 2010 +0300
@@ -3,10 +3,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M4,10c0-3.3,2.7-6,6-6s6,2.7,6,6v10H4V10z" fill="url(#SVGID_1_)"/>
-<path d="M15,10c0-2.757-2.243-5-5-5s-5,2.243-5,5v10H4V10c0-3.3,2.7-6,6-6s6,2.7,6,6v10h-1V10z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M16,10c0-3.3-2.701-6-6-6C6.7,4,4,6.7,4,10v10h12V10z" fill="url(#SVGID_1_)"/>
+<path d="M5,10c0-2.757,2.242-5,5-5c2.755,0,5,2.243,5,5v10h1V10c0-3.3-2.701-6-6-6C6.7,4,4,6.7,4,10v10h1V10z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 1 1 0 -2231 2139)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2126.9995" x2="-2126.9995" y1="2247" y2="2235">
+<linearGradient gradientTransform="matrix(0 1 -1 0 -1006 2139)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2126.9995" x2="-2126.9995" y1="-1010.001" y2="-1022.0005">
<stop offset="0" style="stop-color:#E6E6E6"/>
<stop offset="0.7" style="stop-color:#E6E6E6"/>
<stop offset="1" style="stop-color:#D2D2D2"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_pressed_b.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_pressed_b.svg Thu May 27 13:10:59 2010 +0300
@@ -3,12 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M4,10c0,3.3,2.7,6,6,6s6-2.7,6-6V0H4V10z" fill="url(#SVGID_1_)"/>
-<path d="M6,10V0H5v10c0,2.757,2.243,5,5,5s5-2.243,5-5V0h-1v10c0,2.205-1.794,4-4,4S6,12.205,6,10z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M15,10c0,2.757-2.243,5-5,5s-5-2.243-5-5V0H4v10c0,3.3,2.7,6,6,6s6-2.7,6-6V0h-1V10z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="none" height="20" width="20"/>
+<path d="M16,10c0,3.3-2.701,6-6,6c-3.301,0-6-2.7-6-6V0h12V10z" fill="url(#SVGID_1_)"/>
+<path d="M14,10V0h1v10c0,2.757-2.244,5-5,5c-2.758,0-5-2.243-5-5V0h1v10c0,2.205,1.793,4,4,4 C12.205,14,14,12.205,14,10z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M5,10c0,2.757,2.242,5,5,5c2.756,0,5-2.243,5-5V0h1v10c0,3.3-2.701,6-6,6c-3.301,0-6-2.7-6-6V0h1V10z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -1839 817)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="809" x2="809" y1="1843" y2="1855">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -651 817)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="809" x2="809" y1="-666.9995" y2="-655">
<stop offset="0" style="stop-color:#B4B4BE"/>
<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_pressed_c.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_pressed_c.svg Thu May 27 13:10:59 2010 +0300
@@ -4,12 +4,12 @@
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
<rect fill="url(#SVGID_1_)" height="20" width="12" x="4"/>
+<rect fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="15"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="14"/>
<rect fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="4"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="5"/>
-<rect fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="15"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="14"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -1859 837)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="827" x2="827" y1="1863" y2="1875">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -631 837)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="827" x2="827" y1="-646.9995" y2="-635">
<stop offset="0" style="stop-color:#B4B4BE"/>
<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_pressed_t.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_pressed_t.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M4,10c0-3.3,2.7-6,6-6s6,2.7,6,6v10H4V10z" fill="url(#SVGID_1_)"/>
-<path d="M6,10v10H5V10c0-2.757,2.243-5,5-5s5,2.243,5,5v10h-1V10c0-2.205-1.794-4-4-4S6,7.795,6,10z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M15,10c0-2.757-2.243-5-5-5s-5,2.243-5,5v10H4V10c0-3.3,2.7-6,6-6s6,2.7,6,6v10h-1V10z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M16,10c0-3.3-2.701-6-6-6c-3.301,0-6,2.7-6,6v10h12V10z" fill="url(#SVGID_1_)"/>
+<path d="M14,10v10h1V10c0-2.757-2.244-5-5-5c-2.758,0-5,2.243-5,5v10h1V10c0-2.205,1.793-4,4-4 C12.205,6,14,7.795,14,10z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M5,10c0-2.757,2.242-5,5-5c2.756,0,5,2.243,5,5v10h1V10c0-3.3-2.701-6-6-6c-3.301,0-6,2.7-6,6v10h1V10z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 1 1 0 -1879 2539)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2527.0005" x2="-2527.0005" y1="1883" y2="1895">
+<linearGradient gradientTransform="matrix(0 1 -1 0 -611 2539)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2527.0005" x2="-2527.0005" y1="-626.9995" y2="-615">
<stop offset="0" style="stop-color:#B4B4BE"/>
<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_b.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_b.svg Thu May 27 13:10:59 2010 +0300
@@ -2,14 +2,14 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 4392.5005 -1675.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1690.5" x2="-1690.5" y1="-4392.5" y2="-4332.5">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1598.5 -1675.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1690.5005" x2="-1690.5005" y1="-1658.4995" y2="-1598.4995">
<stop offset="0" style="stop-color:#3C3C3C"/>
<stop offset="1" style="stop-color:#1E1E1E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 4392.5005 -1675.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1690.5" x2="-1690.5" y1="-4392.5" y2="-4332.624">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1598.5 -1675.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1690.5005" x2="-1690.5005" y1="-1658.4995" y2="-1598.6234">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="57,27 3,27 3,0 0,0 0,30 60,30 60,0 57,0 "/>
+<polygon fill="url(#SVGID_2_)" points="3,27 57,27 57,0 60,0 60,30 0,30 0,0 3,0 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_c.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_c.svg Thu May 27 13:10:59 2010 +0300
@@ -2,19 +2,19 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 4332.5005 -1615.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1630.5" x2="-1630.5" y1="-4332.5" y2="-4272.5">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1538.5 -1615.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1630.5005" x2="-1630.5005" y1="-1598.4995" y2="-1538.4995">
<stop offset="0" style="stop-color:#3C3C3C"/>
<stop offset="1" style="stop-color:#1E1E1E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 4332.5005 -1615.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1630.5" x2="-1630.5" y1="-4362.5" y2="-4272.6855">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1538.5 -1615.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1630.5005" x2="-1630.5005" y1="-1628.4995" y2="-1538.6852">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="30" width="3" x="57"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 4332.5005 -1615.5)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1630.5" x2="-1630.5" y1="-4332.5" y2="-4242.6855">
+<rect fill="url(#SVGID_2_)" height="30" width="3"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1538.5 -1615.5)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1630.5005" x2="-1630.5005" y1="-1598.4995" y2="-1508.6852">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="30" width="3"/>
+<rect fill="url(#SVGID_3_)" height="30" width="3" x="57"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_cb.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_cb.svg Thu May 27 13:10:59 2010 +0300
@@ -2,14 +2,14 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 4362.5005 -1645.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1660.5" x2="-1660.5" y1="-4362.5" y2="-4302.5">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1568.5 -1645.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1660.5005" x2="-1660.5005" y1="-1628.4995" y2="-1568.4995">
<stop offset="0" style="stop-color:#3C3C3C"/>
<stop offset="1" style="stop-color:#1E1E1E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 4362.5005 -1645.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1660.5" x2="-1660.5" y1="-4362.5" y2="-4302.624">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1568.5 -1645.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1660.5005" x2="-1660.5005" y1="-1628.4995" y2="-1568.6234">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="57,27 3,27 3,0 0,0 0,30 60,30 60,0 57,0 "/>
+<polygon fill="url(#SVGID_2_)" points="3,27 57,27 57,0 60,0 60,30 0,30 0,0 3,0 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_ct.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_ct.svg Thu May 27 13:10:59 2010 +0300
@@ -2,14 +2,14 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 4302.5005 -1585.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1600.5" x2="-1600.5" y1="-4302.5" y2="-4242.5">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1508.5 -1585.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1600.5005" x2="-1600.5005" y1="-1568.4995" y2="-1508.4995">
<stop offset="0" style="stop-color:#3C3C3C"/>
<stop offset="1" style="stop-color:#1E1E1E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 4302.5005 -1585.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1600.5" x2="-1600.5" y1="-4302.5" y2="-4242.624">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1508.5 -1585.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1600.5005" x2="-1600.5005" y1="-1568.4995" y2="-1508.6234">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="0,0 0,30 3,30 3,3 57,3 57,30 60,30 60,0 "/>
+<polygon fill="url(#SVGID_2_)" points="60,0 60,30 57,30 57,3 3,3 3,30 0,30 0,0 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_t.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_t.svg Thu May 27 13:10:59 2010 +0300
@@ -2,14 +2,14 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 4272.5005 -1555.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1570.5" x2="-1570.5" y1="-4272.5" y2="-4212.5">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1478.5 -1555.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1570.5005" x2="-1570.5005" y1="-1538.4995" y2="-1478.4995">
<stop offset="0" style="stop-color:#3C3C3C"/>
<stop offset="1" style="stop-color:#1E1E1E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 4272.5005 -1555.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1570.5" x2="-1570.5" y1="-4272.5" y2="-4212.624">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1478.5 -1555.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1570.5005" x2="-1570.5005" y1="-1538.4995" y2="-1478.6234">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="0,0 0,30 3,30 3,3 57,3 57,30 60,30 60,0 "/>
+<polygon fill="url(#SVGID_2_)" points="60,0 60,30 57,30 57,3 3,3 3,30 0,30 0,0 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_b.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_b.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
-<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="59"/>
-<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
+<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1"/>
+<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 3656.5 -2409.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2424.5" x2="-2424.5" y1="-3656.9995" y2="-3596.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2332.5 -2409.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2424.5005" x2="-2424.5005" y1="-2392.9995" y2="-2332.7295">
<stop offset="0" style="stop-color:#A0A0A0"/>
<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_c.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_c.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
-<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="59"/>
-<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
+<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1"/>
+<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 3596.5 -2349.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2364.5" x2="-2364.5" y1="-3596.9995" y2="-3536.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2272.5 -2349.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2364.5005" x2="-2364.5005" y1="-2332.9995" y2="-2272.7295">
<stop offset="0" style="stop-color:#A0A0A0"/>
<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_cb.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_cb.svg Thu May 27 13:10:59 2010 +0300
@@ -3,12 +3,12 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
-<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="59"/>
-<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
+<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1"/>
+<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
<rect fill="#FFFFFF" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="58" x="1" y="29"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 3626.5 -2379.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2394.5" x2="-2394.5" y1="-3626.9995" y2="-3566.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2302.5 -2379.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2394.5005" x2="-2394.5005" y1="-2362.9995" y2="-2302.7295">
<stop offset="0" style="stop-color:#A0A0A0"/>
<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_ct.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_ct.svg Thu May 27 13:10:59 2010 +0300
@@ -3,12 +3,12 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
-<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="59"/>
-<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
+<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1"/>
+<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<rect fill="#141414" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="58" x="1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 3566.5 -2319.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2334.5" x2="-2334.5" y1="-3566.9995" y2="-3506.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2242.5 -2319.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2334.5005" x2="-2334.5005" y1="-2302.9995" y2="-2242.7295">
<stop offset="0" style="stop-color:#A0A0A0"/>
<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_t.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_t.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
-<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="59"/>
-<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
+<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1"/>
+<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 3536.5 -2289.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2304.5" x2="-2304.5" y1="-3536.9995" y2="-3476.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2212.5 -2289.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2304.5005" x2="-2304.5005" y1="-2272.9995" y2="-2212.7295">
<stop offset="0" style="stop-color:#A0A0A0"/>
<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_b.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_b.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
+<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1"/>
<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="59"/>
-<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1"/>
-<rect fill="#C8C8C8" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
+<rect fill="#C8C8C8" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 2903.5 -3162.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3177.5" x2="-3177.5" y1="-2904" y2="-2843.73">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3085.5 -3162.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3177.5" x2="-3177.5" y1="-3146" y2="-3085.73">
<stop offset="0" style="stop-color:#3C3C3C"/>
<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_c.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_c.svg Thu May 27 13:10:59 2010 +0300
@@ -2,11 +2,11 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
+<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1"/>
<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="59"/>
-<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1"/>
-<rect fill="#C8C8C8" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
+<rect fill="#C8C8C8" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 2843.5 -3102.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3117.5" x2="-3117.5" y1="-2844" y2="-2783.73">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3025.5 -3102.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3117.5" x2="-3117.5" y1="-3086" y2="-3025.73">
<stop offset="0" style="stop-color:#3C3C3C"/>
<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_cb.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_cb.svg Thu May 27 13:10:59 2010 +0300
@@ -3,12 +3,12 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
+<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1"/>
<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="59"/>
-<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1"/>
<rect fill="#C8C8C8" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="58" x="1" y="29"/>
-<rect fill="#C8C8C8" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
+<rect fill="#C8C8C8" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 2873.5 -3132.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3147.5" x2="-3147.5" y1="-2874" y2="-2813.73">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3055.5 -3132.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3147.5" x2="-3147.5" y1="-3116" y2="-3055.73">
<stop offset="0" style="stop-color:#3C3C3C"/>
<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_ct.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_ct.svg Thu May 27 13:10:59 2010 +0300
@@ -2,12 +2,12 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
+<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" y="0"/>
<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="59" y="0"/>
-<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" y="0"/>
-<rect fill="#C8C8C8" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1" y="0"/>
+<rect fill="#C8C8C8" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58" y="0"/>
<rect fill="#141414" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="58" x="1" y="0"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 2843.4995 -3102.4995)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3117.5" x2="-3117.5" y1="-2843.9995" y2="-2783.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3025.5 -3102.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3117.5" x2="-3117.5" y1="-3086" y2="-3025.73">
<stop offset="0" style="stop-color:#3C3C3C"/>
<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_t.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_t.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
+<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" y="0"/>
<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="59" y="0"/>
-<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" y="0"/>
-<rect fill="#C8C8C8" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1" y="0"/>
+<rect fill="#C8C8C8" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58" y="0"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 2783.5 -3042.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3057.5" x2="-3057.5" y1="-2784" y2="-2723.73">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2965.5 -3042.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3057.5" x2="-3057.5" y1="-3026" y2="-2965.73">
<stop offset="0" style="stop-color:#3C3C3C"/>
<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_b.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_b.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
+<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
-<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
-<rect fill="none" height="30" width="60"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 3279 -2789)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2804" x2="-2804" y1="-3218.5" y2="-3278.77">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2710.5 -2789)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2804" x2="-2804" y1="-2710" y2="-2770.27">
<stop offset="0" style="stop-color:#B4B4B4"/>
<stop offset="1" style="stop-color:#5A5A5A"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_c.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_c.svg Thu May 27 13:10:59 2010 +0300
@@ -3,10 +3,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
+<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
-<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 3219 -2729)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2744" x2="-2744" y1="-3158.5" y2="-3218.77">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2650.5 -2729)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2744" x2="-2744" y1="-2650" y2="-2710.27">
<stop offset="0" style="stop-color:#B4B4B4"/>
<stop offset="1" style="stop-color:#5A5A5A"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_cb.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_cb.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
+<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
-<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="58" x="1" y="29"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 3249 -2759)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2774" x2="-2774" y1="-3188.5" y2="-3248.77">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2680.5 -2759)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2774" x2="-2774" y1="-2680" y2="-2740.27">
<stop offset="0" style="stop-color:#B4B4B4"/>
<stop offset="1" style="stop-color:#5A5A5A"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_ct.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_ct.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
+<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
-<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
<rect fill="#141414" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="58" x="1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 3189 -2699)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2714" x2="-2714" y1="-3128.5" y2="-3188.77">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2620.5 -2699)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2714" x2="-2714" y1="-2620" y2="-2680.27">
<stop offset="0" style="stop-color:#B4B4B4"/>
<stop offset="1" style="stop-color:#5A5A5A"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_t.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_t.svg Thu May 27 13:10:59 2010 +0300
@@ -3,10 +3,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
+<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
-<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 3159 -2669)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2684" x2="-2684" y1="-3098.5" y2="-3158.77">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2590.5 -2669)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2684" x2="-2684" y1="-2590" y2="-2650.27">
<stop offset="0" style="stop-color:#B4B4B4"/>
<stop offset="1" style="stop-color:#5A5A5A"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_b.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_b.svg Thu May 27 13:10:59 2010 +0300
@@ -3,10 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<polygon fill-opacity="0.2" points="0,30 60,30 60,29 1,29 1,0 0,0 " stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="58,28 4,28 4,0 1,0 1,29 59,29 59,0 58,0 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="60,30 0,30 0,29 59,29 59,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,28 56,28 56,0 59,0 59,29 1,29 1,0 2,0 " stroke-opacity="0.2"/>
+<rect fill="none" height="30" width="60"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 2221.5 -1604.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1619.5005" x2="-1619.5005" y1="-2221.9995" y2="-2161.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3102.5 -1604.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1619.5" x2="-1619.5" y1="-3162.9995" y2="-3102.7295">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="0.9" style="stop-color:#3F89A9"/>
<stop offset="0.9" style="stop-color:#3880A4"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_c.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_c.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="58"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="3" x="1"/>
+<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="59"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="3" x="56"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 2161.5 -1544.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1559.5005" x2="-1559.5005" y1="-2161.9995" y2="-2101.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3042.5 -1544.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1559.5" x2="-1559.5" y1="-3102.9995" y2="-3042.7295">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="0.9" style="stop-color:#3F89A9"/>
<stop offset="0.9" style="stop-color:#3880A4"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_cb.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_cb.svg Thu May 27 13:10:59 2010 +0300
@@ -3,10 +3,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<polygon fill-opacity="0.2" points="0,30 60,30 60,29 1,29 1,0 0,0 " stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="58,28 4,28 4,0 1,0 1,29 59,29 59,0 58,0 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="60,30 0,30 0,29 59,29 59,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,28 56,28 56,0 59,0 59,29 1,29 1,0 2,0 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 2191.5 -1574.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1589.5005" x2="-1589.5005" y1="-2191.9995" y2="-2131.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3072.5 -1574.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1589.5" x2="-1589.5" y1="-3132.9995" y2="-3072.7295">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="0.9" style="stop-color:#3F89A9"/>
<stop offset="0.9" style="stop-color:#3880A4"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_ct.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_ct.svg Thu May 27 13:10:59 2010 +0300
@@ -3,10 +3,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<polygon fill-opacity="0.2" points="0,30 1,30 1,1 60,1 60,0 0,0 " stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="1,30 4,30 4,2 58,2 58,30 59,30 59,1 1,1 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="60,30 59,30 59,1 0,1 0,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="59,30 56,30 56,2 2,2 2,30 1,30 1,1 59,1 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 2131.5 -1514.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1529.5005" x2="-1529.5005" y1="-2131.9995" y2="-2071.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3012.5 -1514.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1529.5" x2="-1529.5" y1="-3072.9995" y2="-3012.7295">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="0.9" style="stop-color:#3F89A9"/>
<stop offset="0.9" style="stop-color:#3880A4"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_t.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_t.svg Thu May 27 13:10:59 2010 +0300
@@ -3,10 +3,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<polygon fill-opacity="0.2" points="0,30 1,30 1,1 60,1 60,0 0,0 " stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="1,30 4,30 4,2 58,2 58,30 59,30 59,1 1,1 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="60,30 59,30 59,1 0,1 0,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="59,30 56,30 56,2 2,2 2,30 1,30 1,1 59,1 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 2101.5 -1484.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1499.5005" x2="-1499.5005" y1="-2101.9995" y2="-2041.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2982.5 -1484.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1499.5" x2="-1499.5" y1="-3042.9995" y2="-2982.7295">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="0.9" style="stop-color:#3F89A9"/>
<stop offset="0.9" style="stop-color:#3880A4"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_b.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_b.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<rect fill-opacity="0.1" height="29" stroke-opacity="0.1" width="1" x="59"/>
-<polygon fill-opacity="0.2" points="0,30 60,30 60,29 1,29 1,0 0,0 " stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,29 59,29 59,0 58,0 58,28 4,28 4,0 1,0 " stroke-opacity="0.4"/>
+<rect fill-opacity="0.1" height="29" stroke-opacity="0.1" width="1"/>
+<polygon fill-opacity="0.2" points="60,30 0,30 0,29 59,29 59,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,29 1,29 1,0 2,0 2,28 56,28 56,0 59,0 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 1460.5 -2311.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2326.5005" x2="-2326.5005" y1="-1460.9995" y2="-1400.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3771.5 -2311.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2326.5" x2="-2326.5" y1="-3831.9995" y2="-3771.7295">
<stop offset="0" style="stop-color:#CDCDD2"/>
<stop offset="0.9" style="stop-color:#9B9BA0"/>
<stop offset="0.9" style="stop-color:#919196"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_c.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_c.svg Thu May 27 13:10:59 2010 +0300
@@ -3,12 +3,12 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
-<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="3" x="1"/>
+<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
+<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="59"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="3" x="56"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 1400.5 -2251.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2266.5005" x2="-2266.5005" y1="-1400.9995" y2="-1340.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3711.5 -2251.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2266.5" x2="-2266.5" y1="-3771.9995" y2="-3711.7295">
<stop offset="0" style="stop-color:#CDCDD2"/>
<stop offset="0.9" style="stop-color:#9B9BA0"/>
<stop offset="0.9" style="stop-color:#919196"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_cb.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_cb.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<rect fill-opacity="0.1" height="29" stroke-opacity="0.1" width="1" x="59"/>
-<polygon fill-opacity="0.2" points="0,30 60,30 60,29 1,29 1,0 0,0 " stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,29 59,29 59,0 58,0 58,28 4,28 4,0 1,0 " stroke-opacity="0.4"/>
+<rect fill-opacity="0.1" height="29" stroke-opacity="0.1" width="1"/>
+<polygon fill-opacity="0.2" points="60,30 0,30 0,29 59,29 59,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,29 1,29 1,0 2,0 2,28 56,28 56,0 59,0 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 1430.5 -2281.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2296.5005" x2="-2296.5005" y1="-1430.9995" y2="-1370.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3741.5 -2281.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2296.5" x2="-2296.5" y1="-3801.9995" y2="-3741.7295">
<stop offset="0" style="stop-color:#CDCDD2"/>
<stop offset="0.9" style="stop-color:#9B9BA0"/>
<stop offset="0.9" style="stop-color:#919196"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_ct.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_ct.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<rect fill-opacity="0.1" height="29" stroke-opacity="0.1" width="1" x="59" y="1"/>
-<polygon fill-opacity="0.2" points="0,30 1,30 1,1 60,1 60,0 0,0 " stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,30 4,30 4,2 58,2 58,30 59,30 59,1 1,1 " stroke-opacity="0.4"/>
+<rect fill-opacity="0.1" height="29" stroke-opacity="0.1" width="1" y="1"/>
+<polygon fill-opacity="0.2" points="60,30 59,30 59,1 0,1 0,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,30 56,30 56,2 2,2 2,30 1,30 1,1 59,1 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 1370.5 -2221.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2236.5005" x2="-2236.5005" y1="-1370.9995" y2="-1310.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3681.5 -2221.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2236.5" x2="-2236.5" y1="-3741.9995" y2="-3681.7295">
<stop offset="0" style="stop-color:#CDCDD2"/>
<stop offset="0.9" style="stop-color:#9B9BA0"/>
<stop offset="0.9" style="stop-color:#919196"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_t.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_t.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<rect fill-opacity="0.1" height="29" stroke-opacity="0.1" width="1" x="59" y="1"/>
-<polygon fill-opacity="0.2" points="0,30 1,30 1,1 60,1 60,0 0,0 " stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,30 4,30 4,2 58,2 58,30 59,30 59,1 1,1 " stroke-opacity="0.4"/>
+<rect fill-opacity="0.1" height="29" stroke-opacity="0.1" width="1" y="1"/>
+<polygon fill-opacity="0.2" points="60,30 59,30 59,1 0,1 0,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,30 56,30 56,2 2,2 2,30 1,30 1,1 59,1 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 1340.5 -2191.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2206.5005" x2="-2206.5005" y1="-1340.9995" y2="-1280.7295">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3651.5 -2191.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2206.5" x2="-2206.5" y1="-3711.9995" y2="-3651.7295">
<stop offset="0" style="stop-color:#CDCDD2"/>
<stop offset="0.9" style="stop-color:#9B9BA0"/>
<stop offset="0.9" style="stop-color:#919196"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_b.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_b.svg Thu May 27 13:10:59 2010 +0300
@@ -2,18 +2,16 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 730.5 -3081.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3096.5005" x2="-3096.5005" y1="-731" y2="-670.73">
+<rect fill="url(#SVGID_1_)" height="30" width="60"/>
+<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
+<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="2,29 59,29 59,30 1,30 1,0 2,0 " stroke-opacity="0.4"/>
+<defs>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -4589.5 -3081.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3096.5" x2="-3096.5" y1="-4650" y2="-4589.73">
<stop offset="0" style="stop-color:#FAFAFF"/>
<stop offset="0.9" style="stop-color:#D7D7DC"/>
<stop offset="0.9" style="stop-color:#CDCDD2"/>
<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
-<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 730.5 -3081.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-3096.5005" x2="-3096.5005" y1="-729.3765" y2="-671.2837">
-<stop offset="0" style="stop-color:#FAFAFA"/>
-<stop offset="1" style="stop-color:#E6E6F0"/>
-</linearGradient>
-<polygon fill="url(#SVGID_2_)" fill-opacity="0.4" points="58,29 1,29 1,30 59,30 59,0 58,0 " stroke-opacity="0.4"/>
+</defs>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_c.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_c.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
+<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
-<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 670.5 -3021.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3036.5005" x2="-3036.5005" y1="-671" y2="-610.73">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -4529.5 -3021.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3036.5" x2="-3036.5" y1="-4590" y2="-4529.73">
<stop offset="0" style="stop-color:#FAFAFF"/>
<stop offset="0.9" style="stop-color:#D7D7DC"/>
<stop offset="0.9" style="stop-color:#CDCDD2"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_cb.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_cb.svg Thu May 27 13:10:59 2010 +0300
@@ -3,12 +3,12 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
+<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
-<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
<rect fill="#FFFFFF" fill-opacity="0.9" height="1" stroke-opacity="0.9" width="58" x="1" y="29"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 700.5 -3051.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3066.5005" x2="-3066.5005" y1="-701" y2="-640.73">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -4559.5 -3051.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3066.5" x2="-3066.5" y1="-4620" y2="-4559.73">
<stop offset="0" style="stop-color:#FAFAFF"/>
<stop offset="0.9" style="stop-color:#D7D7DC"/>
<stop offset="0.9" style="stop-color:#CDCDD2"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_ct.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_ct.svg Thu May 27 13:10:59 2010 +0300
@@ -3,12 +3,12 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
+<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
-<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
<rect fill="#9696A0" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="58" x="1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 640.5 -2991.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3006.5005" x2="-3006.5005" y1="-641" y2="-580.73">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -4499.5 -2991.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3006.5" x2="-3006.5" y1="-4560" y2="-4499.73">
<stop offset="0" style="stop-color:#FAFAFF"/>
<stop offset="0.9" style="stop-color:#D7D7DC"/>
<stop offset="0.9" style="stop-color:#CDCDD2"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_t.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_t.svg Thu May 27 13:10:59 2010 +0300
@@ -2,18 +2,16 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 610.5 -2961.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2976.5005" x2="-2976.5005" y1="-611" y2="-550.73">
+<rect fill="url(#SVGID_1_)" height="30" width="60"/>
+<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
+<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,1 2,1 2,30 1,30 1,0 59,0 " stroke-opacity="0.4"/>
+<defs>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -4469.5 -2961.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2976.5" x2="-2976.5" y1="-4530" y2="-4469.73">
<stop offset="0" style="stop-color:#FAFAFF"/>
<stop offset="0.9" style="stop-color:#D7D7DC"/>
<stop offset="0.9" style="stop-color:#CDCDD2"/>
<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
-<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 610.5 -2961.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2976.5005" x2="-2976.5005" y1="-609.3765" y2="-551.2837">
-<stop offset="0" style="stop-color:#FAFAFA"/>
-<stop offset="1" style="stop-color:#E6E6F0"/>
-</linearGradient>
-<polygon fill="url(#SVGID_2_)" fill-opacity="0.4" points="1,1 58,1 58,30 59,30 59,0 1,0 " stroke-opacity="0.4"/>
+</defs>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_b.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_b.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
-<polygon fill-opacity="0.2" points="0,30 60,30 60,29 1,29 1,0 0,0 " stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="58,28 2,28 2,0 1,0 1,29 59,29 59,0 58,0 " stroke-opacity="0.2"/>
+<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
+<polygon fill-opacity="0.2" points="60,30 0,30 0,29 59,29 59,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,28 58,28 58,0 59,0 59,29 1,29 1,0 2,0 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="59.75" x2="0.7505" y1="15" y2="15">
+<linearGradient gradientTransform="matrix(-1 0 0 1 -3105 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3105.2495" x2="-3164.2495" y1="15" y2="15">
<stop offset="0" style="stop-color:#65B8CC"/>
<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_c.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_c.svg Thu May 27 13:10:59 2010 +0300
@@ -3,12 +3,12 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
-<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1"/>
+<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
+<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="59"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="58"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="59.75" x2="0.7505" y1="15.0005" y2="15.0005">
+<linearGradient gradientTransform="matrix(-1 0 0 1 -3105 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3105.2495" x2="-3164.2495" y1="14.9995" y2="14.9995">
<stop offset="0" style="stop-color:#65B8CC"/>
<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_cb.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_cb.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
-<polygon fill-opacity="0.2" points="0,30 60,30 60,29 1,29 1,0 0,0 " stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="58,28 2,28 2,0 1,0 1,29 59,29 59,0 58,0 " stroke-opacity="0.2"/>
+<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
+<polygon fill-opacity="0.2" points="60,30 0,30 0,29 59,29 59,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,28 58,28 58,0 59,0 59,29 1,29 1,0 2,0 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="59.75" x2="0.7505" y1="15" y2="15">
+<linearGradient gradientTransform="matrix(-1 0 0 1 -3105 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3105.2495" x2="-3164.2495" y1="15" y2="15">
<stop offset="0" style="stop-color:#65B8CC"/>
<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_ct.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_ct.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
-<polygon fill-opacity="0.2" points="0,30 1,30 1,1 60,1 60,0 0,0 " stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="1,1 1,30 2,30 2,2 58,2 58,30 59,30 59,1 " stroke-opacity="0.2"/>
+<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
+<polygon fill-opacity="0.2" points="60,30 59,30 59,1 0,1 0,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="59,1 59,30 58,30 58,2 2,2 2,30 1,30 1,1 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="59.75" x2="0.7505" y1="15" y2="15">
+<linearGradient gradientTransform="matrix(-1 0 0 1 -3105 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3105.2495" x2="-3164.2495" y1="14.9995" y2="14.9995">
<stop offset="0" style="stop-color:#65B8CC"/>
<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_t.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_t.svg Thu May 27 13:10:59 2010 +0300
@@ -3,11 +3,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
-<polygon fill-opacity="0.2" points="0,30 1,30 1,1 60,1 60,0 0,0 " stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="1,1 1,30 2,30 2,2 58,2 58,30 59,30 59,1 " stroke-opacity="0.2"/>
+<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
+<polygon fill-opacity="0.2" points="60,30 59,30 59,1 0,1 0,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="59,1 59,30 58,30 58,2 2,2 2,30 1,30 1,1 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="59.75" x2="0.7505" y1="15" y2="15">
+<linearGradient gradientTransform="matrix(-1 0 0 1 -3105 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3105.2495" x2="-3164.2495" y1="14.9995" y2="14.9995">
<stop offset="0" style="stop-color:#65B8CC"/>
<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_input_h_swipe.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_input_h_swipe.svg Thu May 27 13:10:59 2010 +0300
@@ -1,118 +1,118 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="126px" version="1.1" viewBox="0 0 15 126" width="15px" x="0px" y="0px">
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="1550.499" x2="1550.499" y1="4113.5" y2="4128">
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3707.98" x2="-3707.98" y1="-1234.5195" y2="-1249.0195">
<stop offset="0" style="stop-color:#F5F5FA"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<path d="M0,126h9c3.3,0,6-2.7,6-6V6c0-3.3-2.7-6-6-6H0V126z" fill="url(#SVGID_1_)"/>
-<path d="M0,1h9c2.757,0,5,2.243,5,5v114c0,2.757-2.243,5-5,5H0v1h9c3.3,0,6-2.7,6-6V6c0-3.3-2.7-6-6-6 H0V1z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="1522.501" x2="1522.501" y1="4119.5" y2="4115.6333">
+<path d="M0,1h9c2.757,0,5,2.243,5,5v114c0,2.757-2.243,5-5,5H0v1h9 c3.3,0,6-2.7,6-6V6c0-3.3-2.7-6-6-6H0V1z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-3735.981" x2="-3735.981" y1="-1240.5195" y2="-1236.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="91" fill="url(#SVGID_2_)" r="2"/>
-<path d="M3,91c0-0.931,0.639-1.706,1.5-1.93C4.34,89.029,4.174,89,4,89c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,92.706,3,91.931,3,91z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="1522.501" x2="1522.501" y1="4125.5" y2="4121.6333">
+<path d="M3,91c0-0.932,0.639-1.706,1.5-1.93C4.34,89.028,4.174,89,4,89 c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,92.706,3,91.931,3,91z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-3735.981" x2="-3735.981" y1="-1246.5195" y2="-1242.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="91" fill="url(#SVGID_3_)" r="2"/>
-<path d="M9,91c0-0.931,0.639-1.706,1.5-1.93C10.34,89.029,10.174,89,10,89c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.639,92.706,9,91.931,9,91z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="1529.501" x2="1529.501" y1="4119.5" y2="4115.6333">
+<path d="M9,91c0-0.932,0.639-1.706,1.5-1.93 C10.34,89.028,10.174,89,10,89c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.639,92.706,9,91.931,9,91z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-3728.981" x2="-3728.981" y1="-1240.5195" y2="-1236.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="84" fill="url(#SVGID_4_)" r="2"/>
-<path d="M3,84c0-0.931,0.639-1.706,1.5-1.93C4.34,82.029,4.174,82,4,82c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,85.706,3,84.931,3,84z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="1529.501" x2="1529.501" y1="4125.5" y2="4121.6333">
+<path d="M3,84c0-0.932,0.639-1.706,1.5-1.93C4.34,82.028,4.174,82,4,82 c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,85.706,3,84.931,3,84z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-3728.981" x2="-3728.981" y1="-1246.5195" y2="-1242.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="84" fill="url(#SVGID_5_)" r="2"/>
-<path d="M9,84c0-0.931,0.639-1.706,1.5-1.93C10.34,82.029,10.174,82,10,82c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.639,85.706,9,84.931,9,84z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="1536.501" x2="1536.501" y1="4119.5" y2="4115.6333">
+<path d="M9,84c0-0.932,0.639-1.706,1.5-1.93 C10.34,82.028,10.174,82,10,82c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.639,85.706,9,84.931,9,84z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-3721.981" x2="-3721.981" y1="-1240.5195" y2="-1236.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="77" fill="url(#SVGID_6_)" r="2"/>
-<path d="M3,77c0-0.931,0.639-1.706,1.5-1.93C4.34,75.029,4.174,75,4,75c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,78.706,3,77.931,3,77z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="1536.501" x2="1536.501" y1="4125.5" y2="4121.6333">
+<path d="M3,77c0-0.932,0.639-1.706,1.5-1.93C4.34,75.028,4.174,75,4,75 c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,78.706,3,77.931,3,77z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-3721.981" x2="-3721.981" y1="-1246.5195" y2="-1242.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="77" fill="url(#SVGID_7_)" r="2"/>
-<path d="M9,77c0-0.931,0.639-1.706,1.5-1.93C10.34,75.029,10.174,75,10,75c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.639,78.706,9,77.931,9,77z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="1543.501" x2="1543.501" y1="4119.5" y2="4115.6333">
+<path d="M9,77c0-0.932,0.639-1.706,1.5-1.93 C10.34,75.028,10.174,75,10,75c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.639,78.706,9,77.931,9,77z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-3714.981" x2="-3714.981" y1="-1240.5195" y2="-1236.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="70" fill="url(#SVGID_8_)" r="2"/>
-<path d="M3,70c0-0.931,0.639-1.706,1.5-1.93C4.34,68.029,4.174,68,4,68c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.071C3.639,71.706,3,70.931,3,70z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="1543.501" x2="1543.501" y1="4125.5" y2="4121.6333">
+<path d="M3,70c0-0.932,0.639-1.706,1.5-1.93C4.34,68.028,4.174,68,4,68 c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,71.706,3,70.931,3,70z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-3714.981" x2="-3714.981" y1="-1246.5195" y2="-1242.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="70" fill="url(#SVGID_9_)" r="2"/>
-<path d="M9,70c0-0.931,0.639-1.706,1.5-1.93C10.34,68.029,10.174,68,10,68c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.071C9.639,71.706,9,70.931,9,70z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="1550.501" x2="1550.501" y1="4119.5" y2="4115.6333">
+<path d="M9,70c0-0.932,0.639-1.706,1.5-1.93 C10.34,68.028,10.174,68,10,68c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.639,71.706,9,70.931,9,70z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-3707.981" x2="-3707.981" y1="-1240.5195" y2="-1236.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="63" fill="url(#SVGID_10_)" r="2"/>
-<path d="M3,63c0-0.931,0.639-1.706,1.5-1.93C4.34,61.029,4.174,61,4,61c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.071C3.639,64.706,3,63.931,3,63z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="1550.501" x2="1550.501" y1="4125.5" y2="4121.6333">
+<path d="M3,63c0-0.932,0.639-1.706,1.5-1.93C4.34,61.029,4.174,61,4,61 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,64.706,3,63.931,3,63z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-3707.981" x2="-3707.981" y1="-1246.5195" y2="-1242.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="63" fill="url(#SVGID_11_)" r="2"/>
-<path d="M9,63c0-0.931,0.639-1.706,1.5-1.93C10.34,61.029,10.174,61,10,61c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.071C9.639,64.706,9,63.931,9,63z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="1557.501" x2="1557.501" y1="4119.5" y2="4115.6333">
+<path d="M9,63c0-0.932,0.639-1.706,1.5-1.93 C10.34,61.029,10.174,61,10,61c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.639,64.706,9,63.932,9,63z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-3700.981" x2="-3700.981" y1="-1240.5195" y2="-1236.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="56" fill="url(#SVGID_12_)" r="2"/>
-<path d="M3,56c0-0.931,0.639-1.706,1.5-1.93C4.34,54.029,4.174,54,4,54c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.071C3.639,57.706,3,56.931,3,56z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="1557.501" x2="1557.501" y1="4125.5" y2="4121.6333">
+<path d="M3,56c0-0.932,0.639-1.706,1.5-1.93C4.34,54.029,4.174,54,4,54 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,57.706,3,56.932,3,56z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-3700.981" x2="-3700.981" y1="-1246.5195" y2="-1242.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="56" fill="url(#SVGID_13_)" r="2"/>
-<path d="M9,56c0-0.931,0.639-1.706,1.5-1.93C10.34,54.029,10.174,54,10,54c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.071C9.639,57.706,9,56.931,9,56z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="1564.501" x2="1564.501" y1="4119.5" y2="4115.6333">
+<path d="M9,56c0-0.932,0.64-1.706,1.5-1.93C10.34,54.029,10.174,54,10,54 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.64,57.706,9,56.932,9,56z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-3693.981" x2="-3693.981" y1="-1240.5195" y2="-1236.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="49" fill="url(#SVGID_14_)" r="2"/>
-<path d="M3,49c0-0.931,0.639-1.706,1.5-1.93C4.34,47.029,4.174,47,4,47c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.071C3.639,50.706,3,49.931,3,49z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="1564.501" x2="1564.501" y1="4125.5" y2="4121.6333">
+<path d="M3,49c0-0.932,0.639-1.706,1.5-1.93C4.34,47.029,4.174,47,4,47 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,50.706,3,49.932,3,49z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-3693.981" x2="-3693.981" y1="-1246.5195" y2="-1242.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="49" fill="url(#SVGID_15_)" r="2"/>
-<path d="M9,49c0-0.931,0.639-1.706,1.5-1.93C10.34,47.029,10.174,47,10,47c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.071C9.639,50.706,9,49.931,9,49z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="1571.501" x2="1571.501" y1="4119.5" y2="4115.6333">
+<path d="M9,49c0-0.932,0.64-1.706,1.5-1.93C10.34,47.029,10.174,47,10,47 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.64,50.706,9,49.932,9,49z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-3686.981" x2="-3686.981" y1="-1240.5195" y2="-1236.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="42" fill="url(#SVGID_16_)" r="2"/>
-<path d="M3,42c0-0.931,0.639-1.706,1.5-1.93C4.34,40.029,4.174,40,4,40c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.071C3.639,43.706,3,42.931,3,42z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="1571.501" x2="1571.501" y1="4125.5" y2="4121.6333">
+<path d="M3,42c0-0.932,0.639-1.706,1.5-1.93C4.34,40.029,4.174,40,4,40 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,43.706,3,42.932,3,42z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="-3686.981" x2="-3686.981" y1="-1246.5195" y2="-1242.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="42" fill="url(#SVGID_17_)" r="2"/>
-<path d="M9,42c0-0.931,0.639-1.706,1.5-1.93C10.34,40.029,10.174,40,10,40c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.071C9.639,43.706,9,42.931,9,42z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="1578.501" x2="1578.501" y1="4119.5" y2="4115.6333">
+<path d="M9,42c0-0.932,0.64-1.706,1.5-1.93C10.34,40.029,10.174,40,10,40 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.64,43.706,9,42.932,9,42z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="-3679.981" x2="-3679.981" y1="-1240.5195" y2="-1236.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="35" fill="url(#SVGID_18_)" r="2"/>
-<path d="M3,35c0-0.931,0.639-1.706,1.5-1.93C4.34,33.029,4.174,33,4,33c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.071C3.639,36.706,3,35.931,3,35z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -4113.5 1613.5)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="1578.501" x2="1578.501" y1="4125.5" y2="4121.6333">
+<path d="M3,35c0-0.932,0.639-1.706,1.5-1.93C4.34,33.029,4.174,33,4,33 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,36.706,3,35.932,3,35z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="-3679.981" x2="-3679.981" y1="-1246.5195" y2="-1242.6528">
<stop offset="0" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="35" fill="url(#SVGID_19_)" r="2"/>
-<path d="M9,35c0-0.931,0.639-1.706,1.5-1.93C10.34,33.029,10.174,33,10,33c-1.104,0-2,0.896-2,2 s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.071C9.639,36.706,9,35.931,9,35z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M9,35c0-0.932,0.64-1.706,1.5-1.93C10.34,33.029,10.174,33,10,33 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.64,36.706,9,35.932,9,35z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progbar_v_wait.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progbar_v_wait.svg Thu May 27 13:10:59 2010 +0300
@@ -2,14 +2,14 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" y="0px">
<rect fill="none" height="20" width="20"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -1158 852)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="842" x2="842" y1="1163" y2="1173">
+<linearGradient gradientTransform="matrix(0 1 -1 0 -450.9985 1321.0005)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1311.001" x2="-1311.001" y1="-465.9976" y2="-455.998">
<stop offset="0" style="stop-color:#66B8CC"/>
<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="20" width="10" x="5"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -1158 852)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="843.4697" x2="843.4697" y1="1163" y2="1173">
+<linearGradient gradientTransform="matrix(0 1 -1 0 -450.9985 1321.0005)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1309.5313" x2="-1309.5313" y1="-465.9976" y2="-455.998">
<stop offset="0" style="stop-color:#80E6FF"/>
<stop offset="1" style="stop-color:#479BBF"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" fill-opacity="0.9" points="15,17.061 15,10 5,0 5,7.061 " stroke-opacity="0.9"/>
+<polygon fill="url(#SVGID_2_)" fill-opacity="0.9" points="5,2.939 5,10 15,20 15,12.939 " stroke-opacity="0.9"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progslider_handle_disabled.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progslider_handle_disabled.svg Thu May 27 13:10:59 2010 +0300
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="28px" version="1.1" viewBox="0 0 28 28" width="28px" x="0px" y="0px">
-<path d="M14,28C6.28,28,0,21.719,0,14C0,6.28,6.28,0,14,0c7.719,0,14,6.28,14,14 C28,21.719,21.719,28,14,28L14,28z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<rect fill="none" height="28" width="28"/>
-<circle cx="14" cy="14" fill="#969696" fill-opacity="0.8" r="12.923" stroke-opacity="0.8"/>
-<path d="M14,1.077C6.863,1.077,1.077,6.862,1.077,14S6.863,26.924,14,26.924 S26.924,21.138,26.924,14S21.137,1.077,14,1.077z M14,25.846C7.468,25.846,2.154,20.531,2.154,14C2.154,7.468,7.468,2.154,14,2.154 c6.531,0,11.846,5.314,11.846,11.846C25.846,20.531,20.531,25.846,14,25.846z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" y="0px">
+<rect fill="none" height="40" width="40"/>
+<circle cx="20" cy="20" fill="#969696" fill-opacity="0.8" r="19.999" stroke-opacity="0.8"/>
+<path d="M20,0.999C9.522,0.999,0.999,9.522,0.999,20 c0,10.477,8.522,18.999,19.001,18.999c10.479,0,18.999-8.522,18.999-18.999C38.999,9.522,30.479,0.999,20,0.999z M20,37.273 c-9.523,0-17.274-7.75-17.274-17.273c0-9.524,7.751-17.274,17.274-17.274c9.523,0,17.273,7.75,17.273,17.274 C37.273,29.523,29.523,37.273,20,37.273z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20,0C8.954,0,0,8.953,0,20s8.954,20,20,20c11.043,0,20-8.953,20-20 S31.043,0,20,0z M20,38.999C9.522,38.999,0.999,30.477,0.999,20C0.999,9.522,9.521,0.999,20,0.999 c10.479,0,18.999,8.522,18.999,19.001C38.999,30.477,30.479,38.999,20,38.999z" fill-opacity="0.2" stroke-opacity="0.2"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progslider_handle_normal.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progslider_handle_normal.svg Thu May 27 13:10:59 2010 +0300
@@ -2,12 +2,11 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" y="0px">
<rect fill="none" height="40" width="40"/>
-<path d="M20,40C8.971,40,0,31.027,0,20C0,8.971,8.971,0,20,0c11.025,0,20,8.971,20,20 C40,31.027,31.025,40,20,40L20,40z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<circle cx="20" cy="20" fill="url(#SVGID_1_)" r="18.462"/>
-<path d="M20,3.077C10.669,3.077,3.077,10.669,3.077,20 c0,9.33,7.591,16.923,16.923,16.923c9.333,0,16.923-7.593,16.923-16.923C36.923,10.669,29.333,3.077,20,3.077z M20,35.385 c-8.483,0-15.386-6.902-15.386-15.385c0-8.483,6.903-15.386,15.386-15.386c8.482,0,15.385,6.903,15.385,15.386 C35.385,28.482,28.482,35.385,20,35.385z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20,1.538C9.804,1.538,1.538,9.803,1.538,20 c0,10.197,8.266,18.463,18.462,18.463c10.193,0,18.463-8.266,18.463-18.463C38.463,9.803,30.193,1.538,20,1.538z M20,36.923 C10.669,36.923,3.077,29.33,3.077,20c0-9.331,7.591-16.923,16.923-16.923c9.333,0,16.923,7.591,16.923,16.923 C36.923,29.33,29.333,36.923,20,36.923z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<circle cx="20" cy="20" fill="url(#SVGID_1_)" r="19.999"/>
+<path d="M20,0.999C9.522,0.999,0.999,9.522,0.999,20 c0,10.476,8.522,18.999,19.001,18.999S38.999,30.476,38.999,20C38.999,9.522,30.479,0.999,20,0.999z M20,37.274 c-9.523,0-17.274-7.751-17.274-17.274c0-9.524,7.751-17.274,17.274-17.274c9.523,0,17.273,7.75,17.273,17.274 C37.273,29.523,29.523,37.274,20,37.274z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20,0C8.954,0,0,8.953,0,20s8.954,20,20,20c11.043,0,20-8.953,20-20 S31.043,0,20,0z M20,38.999C9.522,38.999,0.999,30.476,0.999,20C0.999,9.522,9.521,0.999,20,0.999S38.999,9.521,38.999,20 C38.999,30.476,30.479,38.999,20,38.999z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -724.9805 -1349.5195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="744.9805" x2="744.9805" y1="-1351.0576" y2="-1387.9824">
+<linearGradient gradientTransform="matrix(1 0 0 1 -996 -1652)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="1016.001" x2="1016.001" y1="1652" y2="1691.998">
<stop offset="0" style="stop-color:#FAFAFA"/>
<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progslider_handle_pressed.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progslider_handle_pressed.svg Thu May 27 13:10:59 2010 +0300
@@ -2,12 +2,11 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" y="0px">
<rect fill="none" height="40" width="40"/>
-<path d="M20,40C8.972,40,0,31.027,0,20C0,8.971,8.972,0,20,0c11.025,0,20,8.972,20,20 C40,31.027,31.025,40,20,40L20,40z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<circle cx="20" cy="20" fill="url(#SVGID_1_)" r="18.462"/>
-<path d="M20,3.077C10.669,3.077,3.077,10.669,3.077,20 c0,9.33,7.592,16.924,16.923,16.924c9.333,0,16.923-7.594,16.923-16.924C36.923,10.669,29.333,3.077,20,3.077z M20,35.385 c-8.483,0-15.384-6.902-15.384-15.385c0-8.483,6.901-15.384,15.384-15.384c8.482,0,15.385,6.901,15.385,15.384 C35.385,28.482,28.482,35.385,20,35.385z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M20,1.539C9.804,1.539,1.538,9.803,1.538,20 c0,10.197,8.266,18.463,18.462,18.463c10.195,0,18.462-8.266,18.462-18.463C38.462,9.803,30.195,1.539,20,1.539z M20,36.924 C10.669,36.924,3.077,29.33,3.077,20c0-9.331,7.592-16.923,16.923-16.923c9.333,0,16.923,7.592,16.923,16.923 C36.923,29.33,29.333,36.924,20,36.924z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<circle cx="20" cy="20" fill="url(#SVGID_1_)" r="19.999"/>
+<path d="M20,0.999C9.522,0.999,0.999,9.522,0.999,20 c0,10.477,8.522,18.999,19.001,18.999c10.479,0,18.999-8.522,18.999-18.999C38.999,9.522,30.479,0.999,20,0.999z M20,37.273 c-9.523,0-17.274-7.75-17.274-17.273c0-9.524,7.751-17.274,17.274-17.274c9.523,0,17.273,7.75,17.273,17.274 C37.273,29.523,29.523,37.273,20,37.273z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M20,0C8.954,0,0,8.953,0,20s8.954,20,20,20c11.043,0,20-8.953,20-20 S31.043,0,20,0z M20,38.999C9.522,38.999,0.999,30.477,0.999,20C0.999,9.522,9.521,0.999,20,0.999 c10.479,0,18.999,8.522,18.999,19.001C38.999,30.477,30.479,38.999,20,38.999z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -1078.5195 -942.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="1098.5195" x2="1098.5195" y1="-944.5186" y2="-981.4434">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19.9995" x2="19.9995" y1="-0.0493" y2="39.9492">
<stop offset="0" style="stop-color:#B4B4BE"/>
<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_h_handle_disabled.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 20 40" width="20px" x="0px" y="0px">
+<path d="M0,20c0-5.513,4.485-10,10-10c5.513,0,10,4.487,10,10c0,5.516-4.487,10-10,10 C4.484,30,0,25.516,0,20L0,20z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<rect fill="none" height="40" width="20"/>
+<circle cx="10.002" cy="20" fill="#969696" r="9.23"/>
+<path d="M19.232,20c0-5.098-4.133-9.231-9.231-9.231c-5.098,0-9.229,4.134-9.229,9.231 S4.902,29.229,10,29.229C15.099,29.229,19.232,25.098,19.232,20z M1.537,20c0-4.665,3.799-8.462,8.463-8.462 c4.665,0,8.462,3.797,8.462,8.462c0,4.664-3.797,8.463-8.462,8.463C5.336,28.463,1.537,24.664,1.537,20z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_v_handle_disabled.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 40 20" width="40px" x="0px" y="0px">
+<path d="M20,20c-5.513,0-10-4.484-10-10c0-5.513,4.487-10,10-10c5.516,0,10,4.487,10,10 C30,15.516,25.516,20,20,20L20,20z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<rect fill="none" height="20" width="40" y="0"/>
+<circle cx="20" cy="9.999" fill="#969696" r="9.23"/>
+<path d="M20,0.769c-5.098,0-9.231,4.133-9.231,9.231c0,5.098,4.134,9.229,9.231,9.229 s9.229-4.131,9.229-9.229C29.229,4.901,25.098,0.769,20,0.769z M20,18.463c-4.665,0-8.462-3.799-8.462-8.463S15.335,1.538,20,1.538 c4.664,0,8.463,3.797,8.463,8.462S24.664,18.463,20,18.463z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_about.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_about.svg Thu May 27 13:10:59 2010 +0300
@@ -1,137 +1,137 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="37.589" opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
- <stop offset="0" style="stop-color:#85EFFF"/>
- <stop offset="1" style="stop-color:#3BA1D9"/>
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
<rect fill="#9FE4FF" height="0.767" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D1D7D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D1D7D9"/>
</linearGradient>
<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
- <stop offset="0" style="stop-color:#6C7375"/>
- <stop offset="1" style="stop-color:#BDC2C4"/>
+<stop offset="0" style="stop-color:#6C7375"/>
+<stop offset="1" style="stop-color:#BDC2C4"/>
</linearGradient>
<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" opacity="0.6"/>
-<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" opacity="0.5"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" opacity="0.2"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" opacity="0.4"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" opacity="0.7"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" opacity="0.4"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" opacity="0.7"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M15,30C6.729,30,0,23.271,0,15C0,6.729,6.729,0,15,0s15,6.729,15,15C30,23.271,23.271,30,15,30L15,30z" opacity="0.35"/>
-<path d="M15.159,10.697c0.525,0,0.947-0.13,1.264-0.39 c0.316-0.259,0.474-0.615,0.474-1.07c0-0.44-0.164-0.795-0.49-1.061c-0.326-0.264-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.132-1.261,0.395c-0.311,0.262-0.465,0.617-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.567,14.641,10.697,15.159,10.697z" enable-background="new " opacity="0.1"/>
-<path d="M15.159,10.369c0.525,0,0.947-0.129,1.264-0.389 c0.316-0.26,0.474-0.615,0.474-1.07c0-0.441-0.164-0.795-0.49-1.061c-0.326-0.266-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.13-1.261,0.394c-0.311,0.263-0.465,0.616-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.24,14.641,10.369,15.159,10.369z" enable-background="new " opacity="0.2"/>
+<path d="M15,30C6.729,30,0,23.271,0,15C0,6.729,6.729,0,15,0s15,6.729,15,15C30,23.271,23.271,30,15,30L15,30z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M15.159,10.697c0.525,0,0.947-0.13,1.264-0.39 c0.316-0.259,0.474-0.615,0.474-1.07c0-0.44-0.164-0.795-0.49-1.061c-0.326-0.264-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.132-1.261,0.395c-0.311,0.262-0.465,0.617-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.567,14.641,10.697,15.159,10.697z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M15.159,10.369c0.525,0,0.947-0.129,1.264-0.389 c0.316-0.26,0.474-0.615,0.474-1.07c0-0.441-0.164-0.795-0.49-1.061c-0.326-0.266-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.13-1.261,0.394c-0.311,0.263-0.465,0.616-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.24,14.641,10.369,15.159,10.369z" fill-opacity="0.2" stroke-opacity="0.2"/>
<radialGradient cx="-2178.8628" cy="3345.4287" gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="26.49">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</radialGradient>
<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1c7.721,0,14,6.28,14,14S22.72,29,15,29L15,29z" fill="url(#SVGID_1__)"/>
-<polygon enable-background="new " opacity="0.1" points="12.46,13.847 13.555,13.847 13.555,23.318 16.741,23.318 16.741,12.032 12.46,12.032 "/>
-<polygon enable-background="new " opacity="0.2" points="12.46,13.519 13.555,13.519 13.555,22.99 16.741,22.99 16.741,11.704 12.46,11.704 "/>
+<polygon fill-opacity="0.1" points="12.46,13.847 13.555,13.847 13.555,23.318 16.741,23.318 16.741,12.032 12.46,12.032 " stroke-opacity="0.1"/>
+<polygon fill-opacity="0.2" points="12.46,13.519 13.555,13.519 13.555,22.99 16.741,22.99 16.741,11.704 12.46,11.704 " stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179.3994" x2="-2179.3994" y1="3340.2148" y2="3324.8184">
- <stop offset="0" style="stop-color:#F6FDFF"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="12.46,13.191 13.555,13.191 13.555,22.663 16.741,22.663 16.741,11.377 12.46,11.377 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-2178.8477" x2="-2178.8477" y1="3340.2158" y2="3324.8235">
- <stop offset="0" style="stop-color:#F6FDFF"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M15.148,10.205c0.524,0,0.945-0.129,1.262-0.389c0.316-0.259,0.475-0.615,0.475-1.07 c0-0.441-0.163-0.795-0.489-1.061c-0.327-0.264-0.743-0.397-1.248-0.397c-0.531,0-0.952,0.131-1.262,0.394 c-0.312,0.262-0.466,0.617-0.466,1.064c0,0.455,0.159,0.812,0.477,1.07C14.212,10.076,14.63,10.205,15.148,10.205z" fill="url(#SVGID_3__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_accessibility.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_accessibility.svg Thu May 27 13:10:59 2010 +0300
@@ -1,37 +1,37 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<g transform="matrix(1 0 0 1 4.499 4.5)">
-<defs>
-</defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.4995" x2="25.4995" y1="0.2427" y2="51.2432">
- <stop offset="0" style="stop-color:#A1DCFF"/>
- <stop offset="0.3879" style="stop-color:#2A93EE"/>
- <stop offset="0.6788" style="stop-color:#085BC2"/>
- <stop offset="1" style="stop-color:#36B5FF"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 1 -574.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="604.9609" x2="604.9609" y1="788.3066" y2="844.3066">
+<stop offset="0" style="stop-color:#A1DCFF"/>
+<stop offset="0.3879" style="stop-color:#2A93EE"/>
+<stop offset="0.6788" style="stop-color:#085BC2"/>
+<stop offset="1" style="stop-color:#36B5FF"/>
</linearGradient>
-<circle cx="25.5" cy="25.5" fill="url(#SVGID_1_)" r="25.5"/>
-<radialGradient cx="25.7441" cy="2.915" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="46.8724">
- <stop offset="0.1576" style="stop-color:#36B5FF"/>
- <stop offset="0.8242" style="stop-color:#1B66D8"/>
- <stop offset="1" style="stop-color:#2183E0"/>
+<circle cx="30" cy="30" fill="url(#SVGID_1_)" r="28"/>
+<radialGradient cx="605.2275" cy="791.2412" gradientTransform="matrix(1 0 0 1 -574.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.4678">
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="0.1576" style="stop-color:#36B5FF"/>
+<stop offset="0.8242" style="stop-color:#1B66D8"/>
+<stop offset="1" style="stop-color:#2183E0"/>
</radialGradient>
-<path d="M25.501,50.272c-13.66,0-24.771-11.112-24.771-24.772S11.841,0.729,25.501,0.729 S50.273,11.84,50.273,25.5S39.161,50.272,25.501,50.272L25.501,50.272z" fill="url(#SVGID_2_)"/>
-<circle cx="25.501" cy="14.888" r="6.123"/>
-<path d="M43.229,20.204c-0.633-1-1.957-1.298-2.957-0.664c-16.645,10.542-27.534,0.682-27.996,0.251 c-0.858-0.809-2.209-0.772-3.022,0.084c-0.815,0.858-0.781,2.214,0.077,3.029c0.072,0.068,4.009,3.7,10.66,5.141v15.618h11.02 V28.031c3.536-0.742,7.409-2.245,11.556-4.87C43.565,22.528,43.863,21.204,43.229,20.204z"/>
-<circle cx="25.501" cy="15.5" r="6.123"/>
-<path d="M43.229,20.816c-0.633-1-1.957-1.298-2.957-0.664c-16.645,10.542-27.534,0.682-27.996,0.251 c-0.858-0.809-2.209-0.772-3.022,0.084c-0.815,0.858-0.781,2.214,0.077,3.029c0.072,0.068,4.009,3.7,10.66,5.141v15.618h11.02 V28.644c3.536-0.742,7.409-2.245,11.556-4.87C43.565,23.14,43.863,21.816,43.229,20.816z"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="25.5005" x2="25.5005" y1="8.1533" y2="43.6655">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.5273" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CAD1D4"/>
+<path d="M30.001,57.197c-15,0-27.2-12.199-27.2-27.197c0-15,12.2-27.2,27.2-27.2C45,2.8,57.201,15,57.201,30 C57.201,44.998,45,57.197,30.001,57.197L30.001,57.197z" fill="url(#SVGID_2_)"/>
+<circle cx="30.001" cy="18.348" r="6.724"/>
+<path d="M49.466,24.184c-0.694-1.098-2.146-1.425-3.243-0.728c-18.279,11.575-30.235,0.748-30.744,0.275 c-0.941-0.89-2.426-0.848-3.317,0.091c-0.896,0.943-0.859,2.431,0.084,3.327c0.079,0.073,4.402,4.061,11.705,5.644v17.15h12.104 V32.779c3.881-0.814,8.131-2.466,12.688-5.348C49.837,26.737,50.166,25.282,49.466,24.184z"/>
+<circle cx="30.001" cy="19.02" r="6.722"/>
+<path d="M49.466,24.857c-0.694-1.098-2.146-1.425-3.243-0.73c-18.279,11.574-30.235,0.75-30.744,0.275 c-0.941-0.887-2.426-0.848-3.317,0.094c-0.896,0.941-0.859,2.432,0.084,3.325c0.079,0.075,4.402,4.064,11.705,5.646v17.149h12.104 V33.451c3.881-0.814,8.131-2.465,12.688-5.346C49.837,27.408,50.166,25.955,49.466,24.857z"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -574.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="604.9609" x2="604.9609" y1="796.9902" y2="835.9901">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5273" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CAD1D4"/>
</linearGradient>
-<circle cx="25.501" cy="14.276" fill="url(#SVGID_3_)" r="6.123"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="26.1128" x2="26.1128" y1="8.1528" y2="43.6647">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.5273" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CAD1D4"/>
+<circle cx="30.001" cy="17.675" fill="url(#SVGID_3_)" r="6.724"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -574.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="605.6348" x2="605.6348" y1="796.9932" y2="835.9828">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5273" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CAD1D4"/>
</linearGradient>
-<path d="M43.229,19.592c-0.633-1-1.957-1.298-2.957-0.664c-16.645,10.542-27.534,0.682-27.996,0.251 c-0.858-0.809-2.209-0.772-3.022,0.084c-0.815,0.858-0.781,2.214,0.077,3.029c0.072,0.068,4.009,3.701,10.66,5.141v15.618h11.02 V27.419c3.536-0.742,7.409-2.245,11.556-4.87C43.565,21.916,43.863,20.592,43.229,19.592z" fill="url(#SVGID_4_)"/>
+<path d="M49.466,23.513c-0.694-1.098-2.146-1.425-3.243-0.729c-18.279,11.575-30.235,0.748-30.744,0.275 c-0.941-0.887-2.426-0.848-3.317,0.094c-0.896,0.941-0.859,2.429,0.084,3.324c0.079,0.075,4.402,4.065,11.705,5.646V49.27h12.104 V32.107c3.881-0.815,8.131-2.465,12.688-5.35C49.837,26.064,50.166,24.611,49.466,23.513z" fill="url(#SVGID_4_)"/>
+<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_active_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_active_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,33 +1,33 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_active_mode.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_active_mode.svg Thu May 27 13:10:59 2010 +0300
@@ -1,140 +1,145 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="37.589" opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
- <stop offset="0" style="stop-color:#85EFFF"/>
- <stop offset="1" style="stop-color:#3BA1D9"/>
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
<rect fill="#9FE4FF" height="0.767" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D1D7D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D1D7D9"/>
</linearGradient>
<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
- <stop offset="0" style="stop-color:#6C7375"/>
- <stop offset="1" style="stop-color:#BDC2C4"/>
+<stop offset="0" style="stop-color:#6C7375"/>
+<stop offset="1" style="stop-color:#BDC2C4"/>
</linearGradient>
<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" opacity="0.6"/>
-<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" opacity="0.5"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" opacity="0.2"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" opacity="0.4"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" opacity="0.7"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" opacity="0.4"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" opacity="0.7"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30" x="0.002"/>
-<path d="M20.752,15.001H1.27c-0.555,0-0.998,0.273-1.186,0.73c-0.186,0.459-0.059,0.966,0.34,1.355l10.515,10.314 c0.339,0.335,0.687,0.404,0.918,0.404c0.565,0,1.165-0.448,1.165-1.28v-4.398h7.73c0.842,0,1.527-0.69,1.527-1.538v-4.051 C22.279,15.69,21.594,15.001,20.752,15.001z" opacity="0.35"/>
-<path d="M29.58,12.911L19.063,2.596c-0.339-0.333-0.685-0.402-0.916-0.402c-0.564,0-1.165,0.449-1.165,1.281v4.399 h-7.73c-0.842,0-1.525,0.689-1.525,1.537v4.051c0,0.847,0.684,1.535,1.525,1.535h19.482c0.555,0,0.998-0.273,1.186-0.73 C30.105,13.808,29.979,13.301,29.58,12.911z" opacity="0.35"/>
+<path d="M20.752,15.001H1.27c-0.555,0-0.998,0.273-1.186,0.73c-0.186,0.459-0.059,0.966,0.34,1.355l10.515,10.314 c0.339,0.335,0.687,0.404,0.918,0.404c0.565,0,1.165-0.448,1.165-1.28v-4.398h7.73c0.842,0,1.527-0.69,1.527-1.538v-4.051 C22.279,15.69,21.594,15.001,20.752,15.001z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M29.58,12.911L19.063,2.596c-0.339-0.333-0.685-0.402-0.916-0.402c-0.564,0-1.165,0.449-1.165,1.281v4.399 h-7.73c-0.842,0-1.525,0.689-1.525,1.537v4.051c0,0.847,0.684,1.535,1.525,1.535h19.482c0.555,0,0.998-0.273,1.186-0.73 C30.105,13.808,29.979,13.301,29.58,12.911z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="11.1406" x2="11.1406" y1="16.103" y2="27.0009">
- <stop offset="0" style="stop-color:#CDEDBD"/>
- <stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="0" style="stop-color:#CDEDBD"/>
+<stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="1" style="stop-color:#139900"/>
</linearGradient>
<path d="M21.279,20.589c0,0.294-0.236,0.538-0.527,0.538h-8.205c-0.287,0-0.525,0.241-0.525,0.537v4.861 c0,0.295-0.172,0.37-0.38,0.165L1.125,16.373c-0.211-0.205-0.144-0.372,0.145-0.372h19.482c0.289,0,0.527,0.241,0.527,0.537V20.589z " fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="11.7783" x2="11.7783" y1="17.0737" y2="24.8819">
- <stop offset="0" style="stop-color:#82C94C"/>
- <stop offset="0.2545" style="stop-color:#439020"/>
- <stop offset="0.5091" style="stop-color:#0D4D07"/>
+<stop offset="0" style="stop-color:#82C94C"/>
+<stop offset="0.2545" style="stop-color:#439020"/>
+<stop offset="0.5091" style="stop-color:#0D4D07"/>
+<stop offset="1" style="stop-color:#0D4D07"/>
</linearGradient>
<path d="M3.336,17.06h16.885v3.009h-7.674c-0.872,0-1.584,0.715-1.584,1.596v2.878L3.336,17.06z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="18.8643" x2="18.8643" y1="3.2227" y2="14.1618">
- <stop offset="0.4909" style="stop-color:#CDEDBD"/>
- <stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="0" style="stop-color:#CDEDBD"/>
+<stop offset="0.4909" style="stop-color:#CDEDBD"/>
+<stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="1" style="stop-color:#139900"/>
</linearGradient>
<path d="M8.727,9.411c0-0.296,0.235-0.537,0.525-0.537h8.206c0.288,0,0.524-0.242,0.524-0.538V3.475 c0-0.297,0.172-0.37,0.381-0.165l10.516,10.315c0.211,0.205,0.144,0.372-0.145,0.372H9.252c-0.289,0-0.525-0.241-0.525-0.535V9.411z " fill="url(#SVGID_3__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="18.2266" x2="18.2266" y1="5.4292" y2="12.9712">
- <stop offset="0" style="stop-color:#B2F56E"/>
- <stop offset="0.703" style="stop-color:#439020"/>
- <stop offset="0.9879" style="stop-color:#0D4D07"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.703" style="stop-color:#439020"/>
+<stop offset="0.9879" style="stop-color:#0D4D07"/>
+<stop offset="1" style="stop-color:#0D4D07"/>
</linearGradient>
<path d="M9.785,12.938V9.933h7.673c0.872,0,1.583-0.718,1.583-1.597V5.458l7.627,7.48H9.785z" fill="url(#SVGID_4__)"/>
<rect fill="none" height="30" width="30" x="0.002"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_add_contact_picture.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_add_contact_picture.svg Thu May 27 13:10:59 2010 +0300
@@ -1,105 +1,111 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<rect fill="none" height="60" width="60"/>
<path d="M58,53c0,2.762-2.238,5-5,5H7c-2.762,0-5-2.238-5-5V7c0-2.762,2.238-5,5-5h46c2.762,0,5,2.238,5,5V53z" fill="#E6E6E6"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-72.52" x2="-72.52" y1="32.0566" y2="-9.48">
- <stop offset="0" style="stop-color:#949494"/>
- <stop offset="1" style="stop-color:#393939"/>
+<stop offset="0" style="stop-color:#949494"/>
+<stop offset="1" style="stop-color:#393939"/>
</linearGradient>
<path d="M47.152,42.693c-1.711-0.891-10.189-3.861-10.353-4.045l0,0c-0.959-1.101-0.922-3.529-0.438-4.584 l0,0c0.035-0.074,0.068-0.146,0.104-0.203c0.119-0.184,0.226-0.365,0.339-0.549H36.8c0.837-1.365,1.539-2.726,2.111-4 c1.039,0.359,2.371-0.605,3.032-2.24c0.688-1.689,0.392-3.447-0.661-3.922c-0.062-0.027-0.123-0.029-0.183-0.049V23.1 c0.135-0.535,0.197-0.848,0.197-0.848c1.818-8.154-2.139-14.619-11.721-14.938c-3.938,0-5.834,1.789-7.295,3.662 c-2.377,0.367-6.146,2.545-3.488,12.09c-0.1,0.014-0.201,0.031-0.299,0.07c-1.061,0.449-1.395,2.188-0.742,3.889 c0.648,1.699,2.037,2.715,3.1,2.27c0.064-0.027,0.121-0.074,0.18-0.115c0.584,1.316,1.303,2.718,2.166,4.132h-0.004 c0.031,0.049,0.059,0.099,0.09,0.146c0.018,0.029,0.035,0.055,0.051,0.084c0.002,0.004,0.004,0.006,0.004,0.006 c0.064,0.104,0.125,0.209,0.193,0.313c0.545,0.855,0.68,3.316-0.172,4.58c-0.223,0.293-8.578,3.226-10.516,4.252 C10.625,43.871,7,46.58,7,52.686h46C53,46.58,48.863,43.582,47.152,42.693z M18.811,23.063c0.021-0.02,0.043-0.041,0.066-0.061 c0.002,0.016,0.004,0.025,0.01,0.041C18.859,23.047,18.836,23.057,18.811,23.063z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-72.52" x2="-72.52" y1="31.2559" y2="-12.5599">
- <stop offset="0" style="stop-color:#7A7A7A"/>
- <stop offset="0.7515" style="stop-color:#0A0A0A"/>
- <stop offset="1" style="stop-color:#5F5F5F"/>
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7515" style="stop-color:#0A0A0A"/>
+<stop offset="1" style="stop-color:#5F5F5F"/>
</linearGradient>
<path d="M7.645,52.686c0.172-4,2.02-6.963,5.496-8.807c1.014-0.539,4.008-1.676,6.412-2.592 c3.986-1.516,4.131-1.598,4.311-1.84c0.938-1.383,0.877-3.664,0.406-4.877l-0.535-0.957c-0.779-1.275-1.494-2.641-2.125-4.059 l-0.301-0.67l-0.617,0.396l-0.074,0.053c-0.098,0.047-0.191,0.066-0.291,0.066c-0.598,0-1.494-0.691-1.984-1.971 c-0.568-1.479-0.244-2.811,0.4-3.082c0.025-0.012,0.098-0.023,0.15-0.031l0.195-0.031l0.582-0.055l-0.418-1.711 c0,0-1.465-5.891,0.197-8.439c0.836-1.281,2.051-1.717,2.932-1.854l0.244-0.039l0.154-0.193c1.293-1.656,2.99-3.422,6.799-3.422 c4.238,0.143,7.525,1.553,9.484,4.082c1.938,2.504,2.514,6.084,1.621,10.088c-0.004,0.023-0.211,1.451-0.211,1.451l0.444,0.139 c0.039,0.014,0.08,0.021,0.121,0.029c0.627,0.281,0.924,1.629,0.321,3.104c-0.51,1.264-1.391,1.922-1.996,1.922 c-0.086,0-0.168-0.014-0.245-0.041l-0.543-0.188l-0.236,0.525c-0.612,1.359-1.312,2.684-2.075,3.929l-0.535,0.957 c-0.498,1.273-0.521,3.841,0.598,5.121c0,0,1.869,0.826,3.637,1.482c2.502,0.93,5.928,2.201,6.9,2.705 c0.889,0.463,5.199,3.002,5.492,8.807H7.645V52.686z" fill="url(#SVGID_2_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="0,7.489 0,24.514 0,30 30,30 30,24.514 30,5.713 30,0 0,0 "/>
-<path d="M1.777,26.306C0.797,26.306,0,25.502,0,24.514V7.489c0-0.988,0.797-1.792,1.777-1.792h0.125V5.495 c0-1.01,0.771-1.801,1.754-1.801h3.548c0.657,0,1.22,0.354,1.521,0.892c0.326-0.405,0.824-0.665,1.381-0.665h18.116 c0.98,0,1.778,0.804,1.778,1.792v18.801c0,0.988-0.798,1.792-1.778,1.792H1.777z" opacity="0.35"/>
+<path d="M1.777,26.306C0.797,26.306,0,25.502,0,24.514V7.489c0-0.988,0.797-1.792,1.777-1.792h0.125V5.495 c0-1.01,0.771-1.801,1.754-1.801h3.548c0.657,0,1.22,0.354,1.521,0.892c0.326-0.405,0.824-0.665,1.381-0.665h18.116 c0.98,0,1.778,0.804,1.778,1.792v18.801c0,0.988-0.798,1.792-1.778,1.792H1.777z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="2.8789" x2="7.9217" y1="6.0669" y2="6.0669">
- <stop offset="0" style="stop-color:#F0F0F0"/>
- <stop offset="0.4788" style="stop-color:#7C8284"/>
- <stop offset="1" style="stop-color:#E6E6E6"/>
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="0.4788" style="stop-color:#7C8284"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
<path d="M7.957,7.439V5.495c0-0.458-0.339-0.801-0.753-0.801H3.656c-0.414,0-0.754,0.342-0.754,0.801v1.944 H7.957z" fill="url(#SVGID_1__)"/>
<radialGradient cx="5.4297" cy="19.583" gradientTransform="matrix(1 0 0 1.008 0 -14.4484)" gradientUnits="userSpaceOnUse" id="SVGID_2__" r="1.8354">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#D9D9D9"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</radialGradient>
<path d="M7.204,4.694H3.656c-0.414,0-0.754,0.342-0.754,0.801v0.393c0-0.459,0.34-0.801,0.754-0.801h3.548 c0.414,0,0.753,0.342,0.753,0.801V5.495C7.957,5.037,7.618,4.694,7.204,4.694z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="4.8916" y2="25.3392">
- <stop offset="0.1212" style="stop-color:#D0D4D5"/>
- <stop offset="0.4182" style="stop-color:#B0B6B8"/>
- <stop offset="0.4182" style="stop-color:#9FA6A8"/>
- <stop offset="0.6606" style="stop-color:#7D8588"/>
- <stop offset="0.9697" style="stop-color:#ADB3B5"/>
- <stop offset="0.9697" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D0D4D5"/>
+<stop offset="0.1212" style="stop-color:#D0D4D5"/>
+<stop offset="0.4182" style="stop-color:#B0B6B8"/>
+<stop offset="0.4182" style="stop-color:#9FA6A8"/>
+<stop offset="0.6606" style="stop-color:#7D8588"/>
+<stop offset="0.9697" style="stop-color:#ADB3B5"/>
+<stop offset="0.9697" style="stop-color:#595C5E"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M28.222,4.921H10.105c-0.428,0-0.777,0.355-0.777,0.792v0.984H1.777C1.35,6.697,1,7.053,1,7.489 v17.024c0,0.436,0.35,0.792,0.777,0.792h26.444c0.427,0,0.778-0.356,0.778-0.792V5.713C29,5.276,28.648,4.921,28.222,4.921z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="24.7998" x2="24.7998" y1="6.1997" y2="9.553">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#E6E6E6"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="3.366" width="5.244" x="22.179" y="6.185"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="24.8008" x2="24.8008" y1="9.249" y2="6.4746">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#3B3B3B"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="2.801" width="4.583" x="22.509" y="6.468"/>
-<path d="M23.174,15.992c-0.002,4.312-3.498,8.564-7.811,8.563c-4.311-0.002-7.806-4.257-7.806-8.568 c0.003-4.312,3.499-7.806,7.812-7.804S23.174,11.681,23.174,15.992z" fill="#231F20" opacity="0.5"/>
+<path d="M23.174,15.992c-0.002,4.312-3.498,8.564-7.811,8.563c-4.311-0.002-7.806-4.257-7.806-8.568 c0.003-4.312,3.499-7.806,7.812-7.804S23.174,11.681,23.174,15.992z" fill="#231F20" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.3652" x2="15.3652" y1="7.8438" y2="23.4871">
- <stop offset="0.1091" style="stop-color:#CFCFCF"/>
- <stop offset="0.6848" style="stop-color:#121212"/>
- <stop offset="1" style="stop-color:#A6A6A6"/>
+<stop offset="0" style="stop-color:#CFCFCF"/>
+<stop offset="0.1091" style="stop-color:#CFCFCF"/>
+<stop offset="0.6848" style="stop-color:#121212"/>
+<stop offset="1" style="stop-color:#A6A6A6"/>
</linearGradient>
<circle cx="15.366" cy="15.674" fill="url(#SVGID_6_)" r="7.778"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.3652" x2="15.3652" y1="8.1816" y2="22.9943">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#606769"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#606769"/>
</linearGradient>
<circle cx="15.366" cy="15.675" fill="url(#SVGID_7_)" r="7.388"/>
<linearGradient gradientTransform="matrix(1 3.000000e-004 -3.000000e-004 1 -0.7997 -0.8701)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="11.9092" x2="20.4338" y1="12.2778" y2="20.8025">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.503" style="stop-color:#343434"/>
- <stop offset="0.7515" style="stop-color:#9E9E9E"/>
- <stop offset="1" style="stop-color:#CFCFCF"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.503" style="stop-color:#343434"/>
+<stop offset="0.7515" style="stop-color:#9E9E9E"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
<circle cx="15.366" cy="15.674" fill="url(#SVGID_8_)" r="6.028"/>
<radialGradient cx="13.751" cy="1.9536" gradientTransform="matrix(0.991 3.000000e-004 -3.000000e-004 0.991 2.3474 14.2158)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="6.5314">
- <stop offset="0.5917" style="stop-color:#000000"/>
- <stop offset="0.627" style="stop-color:#050505"/>
- <stop offset="0.7652" style="stop-color:#121212"/>
- <stop offset="0.8876" style="stop-color:#171717"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5917" style="stop-color:#000000"/>
+<stop offset="0.627" style="stop-color:#050505"/>
+<stop offset="0.7652" style="stop-color:#121212"/>
+<stop offset="0.8876" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#171717"/>
</radialGradient>
<circle cx="15.365" cy="15.674" fill="url(#SVGID_9_)" r="5.639"/>
<radialGradient cx="8.0361" cy="-26.853" gradientTransform="matrix(0.9785 3.000000e-004 -3.000000e-004 0.9786 6.3194 35.8131)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="11.413">
- <stop offset="0.3091" style="stop-color:#A700F5"/>
- <stop offset="0.4364" style="stop-color:#5E008A"/>
- <stop offset="0.8061" style="stop-color:#0E1402"/>
+<stop offset="0" style="stop-color:#A700F5"/>
+<stop offset="0.3091" style="stop-color:#A700F5"/>
+<stop offset="0.4364" style="stop-color:#5E008A"/>
+<stop offset="0.8061" style="stop-color:#0E1402"/>
+<stop offset="1" style="stop-color:#0E1402"/>
</radialGradient>
<path d="M19.449,15.674c-0.001,2.256-1.83,4.084-4.086,4.084c-2.252-0.002-4.081-1.831-4.081-4.086 c0.002-2.256,1.831-4.082,4.083-4.082C17.623,11.592,19.449,13.42,19.449,15.674z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="5.5742" x2="5.5742" y1="11.8188" y2="9.3852">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#3B3B3B"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
<circle cx="5.575" cy="10.556" fill="url(#SVGID_11_)" r="1.167"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15.3457" x2="15.3457" y1="10.6523" y2="15.6356">
- <stop offset="0" style="stop-color:#F8FBFF"/>
- <stop offset="1" style="stop-color:#808080"/>
+<stop offset="0" style="stop-color:#F8FBFF"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<path d="M15.346,15.611c1.81,0,3.515-0.274,5.02-0.758c-0.428-2.386-2.51-4.201-5.02-4.201 s-4.592,1.814-5.02,4.201C11.83,15.337,13.536,15.611,15.346,15.611z" fill="url(#SVGID_12_)" opacity="0.35"/>
+<path d="M15.346,15.611c1.81,0,3.515-0.274,5.02-0.758c-0.428-2.386-2.51-4.201-5.02-4.201 s-4.592,1.814-5.02,4.201C11.83,15.337,13.536,15.611,15.346,15.611z" fill="url(#SVGID_12_)" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15" x2="15" y1="4.8535" y2="25.2888">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.3212" style="stop-color:#E6E6E6"/>
- <stop offset="1" style="stop-color:#666666"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.3212" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
<path d="M28.222,4.921H10.105c-0.428,0-0.777,0.355-0.777,0.792v0.984H1.777C1.35,6.697,1,7.053,1,7.489 v17.024c0,0.436,0.35,0.792,0.777,0.792c0,0-0.389-0.214-0.389-0.792V7.489c0-0.222,0.175-0.401,0.389-0.401h7.551h0.389V6.697 V5.713c0-0.221,0.174-0.399,0.389-0.399h18.116c0.215,0,0.39,0.179,0.39,0.399v18.801c0,0.626-0.39,0.792-0.39,0.792 c0.427,0,0.778-0.356,0.778-0.792V5.713C29,5.276,28.648,4.921,28.222,4.921z" fill="url(#SVGID_13_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_album_art.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
+<g>
+<path d="M58,53c0,2.762-2.238,5-5,5H7c-2.762,0-5-2.238-5-5V7c0-2.762,2.238-5,5-5h46c2.762,0,5,2.238,5,5V53z" fill="#E6E6E6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="27.5933" x2="27.5933" y1="10.3408" y2="49.2278">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7515" style="stop-color:#0A0A0A"/>
+<stop offset="1" style="stop-color:#5F5F5F"/>
+</linearGradient>
+<path d="M46.969,12.834v-2.209H8.219v38.75h38.75v-2.209l-2.998-2.594V15.43L46.969,12.834z M28.979,38.395 c0.012,2.291-2.067,4.434-5.07,5.244c-3.551,0.957-7.013-0.387-7.734-3.004c-0.719-2.615,1.577-5.516,5.13-6.473 c2.252-0.609,4.469-0.289,5.973,0.695l-0.015-13.266l9.818-4.372l1.709,4.159l-9.811,4.011 C28.996,29.887,28.969,36.104,28.979,38.395z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="28.98" x2="28.98" y1="10.4248" y2="48.3106">
+<stop offset="0" style="stop-color:#949494"/>
+<stop offset="1" style="stop-color:#393939"/>
+</linearGradient>
+<path d="M28.977,37.497c0.001-2.074,0.009-5.018,0.008-7.831C28.983,32.657,28.975,35.659,28.977,37.497z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="33.8838" x2="33.8838" y1="10.4248" y2="48.3106">
+<stop offset="0" style="stop-color:#949494"/>
+<stop offset="1" style="stop-color:#393939"/>
+</linearGradient>
+<path d="M28.981,26.389l9.808-4.01l-0.352-0.856l-9.459,3.867C28.979,25.714,28.98,26.049,28.981,26.389z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="27.5933" x2="27.5933" y1="10.4248" y2="48.3106">
+<stop offset="0" style="stop-color:#949494"/>
+<stop offset="1" style="stop-color:#393939"/>
+</linearGradient>
+<rect fill="url(#SVGID_4_)" height="1" width="38.75" x="8.219" y="10.625"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="27.269" x2="27.269" y1="10.4248" y2="48.3106">
+<stop offset="0" style="stop-color:#949494"/>
+<stop offset="1" style="stop-color:#393939"/>
+</linearGradient>
+<rect fill="url(#SVGID_5_)" height="12.266" width="0.001" x="27.269" y="22.592"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="45.4697" x2="45.4697" y1="10.4351" y2="48.3106">
+<stop offset="0" style="stop-color:#949494"/>
+<stop offset="1" style="stop-color:#393939"/>
+</linearGradient>
+<polygon fill="url(#SVGID_6_)" points="43.971,45.573 46.969,48.167 46.969,47.167 43.971,44.573 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="22.5103" x2="22.5103" y1="10.4204" y2="48.3119">
+<stop offset="0" style="stop-color:#949494"/>
+<stop offset="1" style="stop-color:#393939"/>
+</linearGradient>
+<path d="M16.174,41.635c0.722,2.617,4.184,3.961,7.734,3.004c3.003-0.811,5.082-2.953,5.07-5.244 c-0.001-0.273-0.002-0.605-0.002-0.982c0,2.285-2.073,4.418-5.068,5.227c-3.551,0.957-7.013-0.387-7.734-3.004 c-0.044-0.16-0.076-0.322-0.098-0.484C16.011,40.645,16.04,41.145,16.174,41.635z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="49.6104" x2="49.6104" y1="15.2886" y2="44.8059">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7515" style="stop-color:#0A0A0A"/>
+<stop offset="1" style="stop-color:#5F5F5F"/>
+</linearGradient>
+<path d="M45.439,15.026v29.949c5.029-3.131,8.373-8.705,8.342-15.064 C53.75,23.616,50.416,18.125,45.439,15.026z" fill="url(#SVGID_8_)"/>
+<rect fill="none" height="60" width="60"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_als.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_als.svg Thu May 27 13:10:59 2010 +0300
@@ -1,266 +1,270 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.5586" x2="39.5586" y1="1" y2="45.1092">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M53.992,42.767c0,1.357-1.1,2.457-2.457,2.457H27.581c-1.356,0-2.457-1.1-2.457-2.457V3.456 C25.124,2.099,26.225,1,27.581,1h23.954c1.357,0,2.457,1.099,2.457,2.456V42.767z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="39.5586" x2="39.5586" y1="1" y2="44.3417">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M51.535,1H27.581c-1.356,0-2.457,1.099-2.457,2.456v39.311c0,0.655,0.261,1.247,0.68,1.688 c-0.038-0.147-0.065-0.3-0.065-0.459v-1.229V4.685V3.456c0-1.017,0.827-1.842,1.842-1.842h23.954c1.018,0,1.844,0.825,1.844,1.842 v1.229v38.082v1.229c0,0.159-0.027,0.312-0.066,0.459c0.42-0.44,0.68-1.032,0.68-1.688V3.456C53.992,2.099,52.893,1,51.535,1z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="39.5586" x2="39.5586" y1="4.1138" y2="33.5567">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="29.483" opacity="0.6" width="25.184" x="26.967" y="4.07"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="29.483" stroke-opacity="0.6" width="25.184" x="26.967" y="4.07"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="39.5586" x2="39.5586" y1="4.7266" y2="32.9417">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="28.254" width="23.954" x="27.581" y="4.685"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="39.5586" x2="39.5586" y1="5.2988" y2="32.3247">
- <stop offset="0" style="stop-color:#A6A6A6"/>
- <stop offset="1" style="stop-color:#585858"/>
+<stop offset="0" style="stop-color:#A6A6A6"/>
+<stop offset="1" style="stop-color:#585858"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="27.025" width="22.727" x="28.195" y="5.299"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="39.5586" x2="39.5586" y1="5.7876" y2="16.1937">
- <stop offset="0" style="stop-color:#D8D8D8"/>
- <stop offset="1" style="stop-color:#8B8B8B"/>
+<stop offset="0" style="stop-color:#D8D8D8"/>
+<stop offset="1" style="stop-color:#8B8B8B"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="50.922,14.514 28.195,16.969 28.195,5.913 50.922,5.913 "/>
-<rect enable-background="new " fill="#FFFFFF" height="0.614" opacity="0.7" width="22.727" x="28.195" y="5.299"/>
+<rect fill="#FFFFFF" fill-opacity="0.7" height="0.614" stroke-opacity="0.7" width="22.727" x="28.195" y="5.299"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="39.4639" x2="39.4639" y1="34.1924" y2="43.3226">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M37.244,43.381c-1.316,0-2.387-1.06-2.387-2.362v-4.489 c0-1.303,1.07-2.362,2.387-2.362h4.439c1.316,0,2.387,1.06,2.387,2.362v4.489c0,1.303-1.07,2.362-2.387,2.362H37.244z" fill="url(#SVGID_7_)" opacity="0.6"/>
-<path d="M37.24,42.767c-0.975,0-1.77-0.784-1.77-1.748v-4.489c0-0.964,0.795-1.747,1.77-1.747h4.447 c0.975,0,1.77,0.783,1.77,1.747v4.489c0,0.964-0.795,1.748-1.77,1.748H37.24z" fill="#020202" opacity="0.5"/>
+<path d="M37.244,43.381c-1.316,0-2.387-1.06-2.387-2.362v-4.489 c0-1.303,1.07-2.362,2.387-2.362h4.439c1.316,0,2.387,1.06,2.387,2.362v4.489c0,1.303-1.07,2.362-2.387,2.362H37.244z" fill="url(#SVGID_7_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M37.24,42.767c-0.975,0-1.77-0.784-1.77-1.748v-4.489c0-0.964,0.795-1.747,1.77-1.747h4.447 c0.975,0,1.77,0.783,1.77,1.747v4.489c0,0.964-0.795,1.748-1.77,1.748H37.24z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="39.4639" x2="39.4639" y1="35.3643" y2="42.1641">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M42.842,41.019c0,0.627-0.516,1.134-1.15,1.134h-4.455c-0.635,0-1.15-0.507-1.15-1.134v-4.489 c0-0.626,0.516-1.134,1.15-1.134h4.455c0.635,0,1.15,0.508,1.15,1.134V41.019z" fill="url(#SVGID_8_)"/>
-<path d="M38.543,40.924c-0.678,0-1.229-0.55-1.229-1.229v-1.843c0-0.679,0.551-1.228,1.229-1.228 h1.842c0.678,0,1.229,0.549,1.229,1.228v1.843c0,0.679-0.551,1.229-1.229,1.229H38.543z" fill="#020202" opacity="0.2"/>
+<path d="M38.543,40.924c-0.678,0-1.229-0.55-1.229-1.229v-1.843c0-0.679,0.551-1.228,1.229-1.228 h1.842c0.678,0,1.229,0.549,1.229,1.228v1.843c0,0.679-0.551,1.229-1.229,1.229H38.543z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="39.4639" x2="39.4639" y1="37.2236" y2="40.3145">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M38.543,40.31c-0.338,0-0.615-0.276-0.615-0.614v-1.843c0-0.338,0.277-0.614,0.615-0.614h1.842 c0.338,0,0.615,0.276,0.615,0.614v1.843c0,0.338-0.277,0.614-0.615,0.614H38.543z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.6831" x2="29.6831" y1="34.748" y2="42.165">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M29.329,42.152c-1.302,0-2.362-1.06-2.362-2.362v-2.646 c0-1.303,1.06-2.362,2.362-2.362h0.709c1.302,0,2.362,1.06,2.362,2.362v2.646c0,1.303-1.061,2.362-2.362,2.362H29.329z" fill="url(#SVGID_10_)" opacity="0.4"/>
+<path d="M29.329,42.152c-1.302,0-2.362-1.06-2.362-2.362v-2.646 c0-1.303,1.06-2.362,2.362-2.362h0.709c1.302,0,2.362,1.06,2.362,2.362v2.646c0,1.303-1.061,2.362-2.362,2.362H29.329z" fill="url(#SVGID_10_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.6831" x2="29.6831" y1="35.3672" y2="41.5488">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M29.329,41.538c-0.963,0-1.748-0.784-1.748-1.748v-2.646 c0-0.963,0.785-1.749,1.748-1.749h0.709c0.964,0,1.747,0.786,1.747,1.749v2.646c0,0.964-0.783,1.748-1.747,1.748H29.329z" fill="url(#SVGID_11_)" opacity="0.7"/>
+<path d="M29.329,41.538c-0.963,0-1.748-0.784-1.748-1.748v-2.646 c0-0.963,0.785-1.749,1.748-1.749h0.709c0.964,0,1.747,0.786,1.747,1.749v2.646c0,0.964-0.783,1.748-1.747,1.748H29.329z" fill="url(#SVGID_11_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="29.6831" x2="29.6831" y1="35.9873" y2="40.9326">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M31.172,39.79c0,0.626-0.508,1.134-1.134,1.134h-0.709c-0.625,0-1.134-0.508-1.134-1.134v-2.646 c0-0.627,0.508-1.135,1.134-1.135h0.709c0.626,0,1.134,0.508,1.134,1.135V39.79z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="48.9043" x2="48.9043" y1="34.748" y2="42.165">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M48.549,42.152c-1.301,0-2.361-1.06-2.361-2.362v-2.646 c0-1.303,1.061-2.362,2.361-2.362h0.709c1.303,0,2.363,1.06,2.363,2.362v2.646c0,1.303-1.061,2.362-2.363,2.362H48.549z" fill="url(#SVGID_13_)" opacity="0.4"/>
+<path d="M48.549,42.152c-1.301,0-2.361-1.06-2.361-2.362v-2.646 c0-1.303,1.061-2.362,2.361-2.362h0.709c1.303,0,2.363,1.06,2.363,2.362v2.646c0,1.303-1.061,2.362-2.363,2.362H48.549z" fill="url(#SVGID_13_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="48.9033" x2="48.9033" y1="35.3672" y2="41.5488">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M48.549,41.538c-0.963,0-1.748-0.784-1.748-1.748v-2.646 c0-0.963,0.785-1.749,1.748-1.749h0.709c0.965,0,1.748,0.786,1.748,1.749v2.646c0,0.964-0.783,1.748-1.748,1.748H48.549z" fill="url(#SVGID_14_)" opacity="0.7"/>
+<path d="M48.549,41.538c-0.963,0-1.748-0.784-1.748-1.748v-2.646 c0-0.963,0.785-1.749,1.748-1.749h0.709c0.965,0,1.748,0.786,1.748,1.749v2.646c0,0.964-0.783,1.748-1.748,1.748H48.549z" fill="url(#SVGID_14_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="48.9043" x2="48.9043" y1="35.9873" y2="40.9326">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<path d="M50.393,39.79c0,0.626-0.51,1.134-1.135,1.134h-0.709c-0.625,0-1.133-0.508-1.133-1.134v-2.646 c0-0.627,0.508-1.135,1.133-1.135h0.709c0.625,0,1.135,0.508,1.135,1.135V39.79z" fill="url(#SVGID_15_)"/>
<path d="M45.141,28.398H33.898v-1.411c0-1.2,0.271-2.36,0.813-3.484c0.543-1.122,1.955-2.538,4.24-4.246 c1.324-0.989,2.172-1.764,2.541-2.325c0.369-0.561,0.555-1.121,0.555-1.677c0-0.893-0.32-1.597-0.959-2.108 c-0.639-0.515-1.465-0.771-2.482-0.771c-0.854,0-2.328,0.198-4.42,0.59v-2.086c1.785-0.375,3.35-0.561,4.693-0.561 c1.967,0,3.502,0.434,4.607,1.301c1.102,0.868,1.654,2.052,1.654,3.549c0,0.652-0.135,1.327-0.402,2.023 c-0.27,0.695-0.689,1.332-1.26,1.908c-0.57,0.574-1.395,1.271-2.469,2.086c-1.219,0.911-2.059,1.62-2.52,2.124 c-0.461,0.503-0.813,1.031-1.051,1.582c-0.24,0.553-0.369,1.083-0.389,1.592h8.09V28.398z" fill="#FFFFFF"/>
-<path d="M28.771,6.527h-3.647v36.239c0,0.166,0.018,0.327,0.049,0.482c0.024,0.127,0.066,0.247,0.111,0.366 c0.009,0.025,0.014,0.055,0.024,0.079c0.366,0.896,1.244,1.529,2.272,1.529h4.876V10.213C32.457,8.181,30.804,6.527,28.771,6.527z" opacity="0.1"/>
-<path d="M28.771,7.142h-3.647v35.625c0,0.166,0.018,0.327,0.049,0.482c0.024,0.127,0.066,0.247,0.111,0.366 c0.009,0.025,0.014,0.055,0.024,0.079c0.366,0.896,1.244,1.529,2.272,1.529h4.261V10.213C31.842,8.52,30.465,7.142,28.771,7.142z" opacity="0.25"/>
+<path d="M28.771,6.527h-3.647v36.239c0,0.166,0.018,0.327,0.049,0.482c0.024,0.127,0.066,0.247,0.111,0.366 c0.009,0.025,0.014,0.055,0.024,0.079c0.366,0.896,1.244,1.529,2.272,1.529h4.876V10.213C32.457,8.181,30.804,6.527,28.771,6.527z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M28.771,7.142h-3.647v35.625c0,0.166,0.018,0.327,0.049,0.482c0.024,0.127,0.066,0.247,0.111,0.366 c0.009,0.025,0.014,0.055,0.024,0.079c0.366,0.896,1.244,1.529,2.272,1.529h4.261V10.213C31.842,8.52,30.465,7.142,28.771,7.142z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="16.7939" x2="16.7939" y1="7.7559" y2="51.8661">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M31.229,49.522c0,1.357-1.1,2.458-2.457,2.458H4.816c-1.356,0-2.457-1.101-2.457-2.458v-39.31 c0-1.357,1.101-2.457,2.457-2.457h23.955c1.357,0,2.457,1.1,2.457,2.457V49.522z" fill="url(#SVGID_16_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="16.7939" x2="16.7939" y1="7.7559" y2="51.0995">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M28.771,7.756H4.816c-1.356,0-2.457,1.1-2.457,2.457v39.31c0,0.656,0.26,1.249,0.68,1.689 c-0.039-0.148-0.066-0.302-0.066-0.46v-1.229V11.441v-1.229c0-1.017,0.827-1.843,1.843-1.843h23.955 c1.017,0,1.842,0.826,1.842,1.843v1.229v38.081v1.229c0,0.158-0.025,0.312-0.064,0.46c0.418-0.44,0.68-1.033,0.68-1.689v-39.31 C31.229,8.855,30.129,7.756,28.771,7.756z" fill="url(#SVGID_17_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="16.7939" x2="16.7939" y1="10.8696" y2="40.3126">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_18_)" height="29.483" opacity="0.6" width="25.184" x="4.202" y="10.826"/>
+<rect fill="url(#SVGID_18_)" fill-opacity="0.6" height="29.483" stroke-opacity="0.6" width="25.184" x="4.202" y="10.826"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="16.7939" x2="16.7939" y1="11.4834" y2="39.6986">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<rect fill="url(#SVGID_19_)" height="28.254" width="23.955" x="4.816" y="11.441"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="16.7939" x2="16.7939" y1="12.0547" y2="39.0815">
- <stop offset="0" style="stop-color:#A6A6A6"/>
- <stop offset="1" style="stop-color:#585858"/>
+<stop offset="0" style="stop-color:#A6A6A6"/>
+<stop offset="1" style="stop-color:#585858"/>
</linearGradient>
<rect fill="url(#SVGID_20_)" height="27.026" width="22.727" x="5.431" y="12.055"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="16.7939" x2="16.7939" y1="12.5435" y2="22.9495">
- <stop offset="0" style="stop-color:#D8D8D8"/>
- <stop offset="1" style="stop-color:#8B8B8B"/>
+<stop offset="0" style="stop-color:#D8D8D8"/>
+<stop offset="1" style="stop-color:#8B8B8B"/>
</linearGradient>
<polygon fill="url(#SVGID_21_)" points="28.157,21.27 5.431,23.725 5.431,12.669 28.157,12.669 "/>
-<rect enable-background="new " fill="#FFFFFF" height="0.614" opacity="0.7" width="22.727" x="5.431" y="12.055"/>
+<rect fill="#FFFFFF" fill-opacity="0.7" height="0.614" stroke-opacity="0.7" width="22.727" x="5.431" y="12.055"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="16.6992" x2="16.6992" y1="40.9492" y2="50.0804">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M14.479,50.139c-1.316,0-2.387-1.062-2.387-2.363v-4.489 c0-1.303,1.071-2.362,2.387-2.362h4.44c1.315,0,2.387,1.06,2.387,2.362v4.489c0,1.302-1.071,2.363-2.387,2.363H14.479z" fill="url(#SVGID_22_)" opacity="0.6"/>
-<path d="M14.476,49.522c-0.975,0-1.769-0.783-1.769-1.747v-4.489c0-0.965,0.794-1.748,1.769-1.748 h4.447c0.975,0,1.769,0.783,1.769,1.748v4.489c0,0.964-0.794,1.747-1.769,1.747H14.476z" fill="#020202" opacity="0.5"/>
+<path d="M14.479,50.139c-1.316,0-2.387-1.062-2.387-2.363v-4.489 c0-1.303,1.071-2.362,2.387-2.362h4.44c1.315,0,2.387,1.06,2.387,2.362v4.489c0,1.302-1.071,2.363-2.387,2.363H14.479z" fill="url(#SVGID_22_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M14.476,49.522c-0.975,0-1.769-0.783-1.769-1.747v-4.489c0-0.965,0.794-1.748,1.769-1.748 h4.447c0.975,0,1.769,0.783,1.769,1.748v4.489c0,0.964-0.794,1.747-1.769,1.747H14.476z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="16.6992" x2="16.6992" y1="42.1211" y2="48.9199">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M20.077,47.775c0,0.626-0.515,1.133-1.149,1.133h-4.457c-0.634,0-1.15-0.507-1.15-1.133v-4.489 c0-0.625,0.516-1.134,1.15-1.134h4.457c0.634,0,1.149,0.509,1.149,1.134V47.775z" fill="url(#SVGID_23_)"/>
-<path d="M15.777,47.68c-0.677,0-1.228-0.55-1.228-1.229v-1.842c0-0.678,0.551-1.229,1.228-1.229h1.843 c0.677,0,1.229,0.551,1.229,1.229v1.842c0,0.679-0.551,1.229-1.229,1.229H15.777z" fill="#020202" opacity="0.2"/>
+<path d="M15.777,47.68c-0.677,0-1.228-0.55-1.228-1.229v-1.842c0-0.678,0.551-1.229,1.228-1.229h1.843 c0.677,0,1.229,0.551,1.229,1.229v1.842c0,0.679-0.551,1.229-1.229,1.229H15.777z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="16.6997" x2="16.6997" y1="43.9805" y2="47.0723">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M15.777,47.067c-0.337,0-0.613-0.278-0.613-0.616v-1.842c0-0.338,0.276-0.614,0.613-0.614h1.843 c0.337,0,0.614,0.276,0.614,0.614v1.842c0,0.338-0.277,0.616-0.614,0.616H15.777z" fill="url(#SVGID_24_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="6.9185" x2="6.9185" y1="41.5039" y2="48.9209">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M6.564,48.908c-1.303,0-2.362-1.06-2.362-2.361V43.9c0-1.303,1.06-2.362,2.362-2.362 h0.708c1.303,0,2.362,1.06,2.362,2.362v2.646c0,1.302-1.059,2.361-2.362,2.361H6.564z" fill="url(#SVGID_25_)" opacity="0.4"/>
+<path d="M6.564,48.908c-1.303,0-2.362-1.06-2.362-2.361V43.9c0-1.303,1.06-2.362,2.362-2.362 h0.708c1.303,0,2.362,1.06,2.362,2.362v2.646c0,1.302-1.059,2.361-2.362,2.361H6.564z" fill="url(#SVGID_25_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="6.9189" x2="6.9189" y1="42.124" y2="48.3067">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M6.564,48.296c-0.964,0-1.748-0.785-1.748-1.749V43.9 c0-0.963,0.784-1.748,1.748-1.748h0.708c0.965,0,1.749,0.785,1.749,1.748v2.646c0,0.964-0.784,1.749-1.749,1.749H6.564z" fill="url(#SVGID_26_)" opacity="0.7"/>
+<path d="M6.564,48.296c-0.964,0-1.748-0.785-1.748-1.749V43.9 c0-0.963,0.784-1.748,1.748-1.748h0.708c0.965,0,1.749,0.785,1.749,1.748v2.646c0,0.964-0.784,1.749-1.749,1.749H6.564z" fill="url(#SVGID_26_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="6.9185" x2="6.9185" y1="42.7441" y2="47.6885">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M8.407,46.547c0,0.626-0.508,1.133-1.134,1.133H6.564c-0.625,0-1.134-0.507-1.134-1.133V43.9 c0-0.627,0.508-1.134,1.134-1.134h0.708c0.626,0,1.134,0.507,1.134,1.134V46.547z" fill="url(#SVGID_27_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="26.1392" x2="26.1392" y1="41.5039" y2="48.9209">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M25.785,48.908c-1.303,0-2.362-1.06-2.362-2.361V43.9c0-1.303,1.06-2.362,2.362-2.362 h0.708c1.303,0,2.362,1.06,2.362,2.362v2.646c0,1.302-1.06,2.361-2.362,2.361H25.785z" fill="url(#SVGID_28_)" opacity="0.4"/>
+<path d="M25.785,48.908c-1.303,0-2.362-1.06-2.362-2.361V43.9c0-1.303,1.06-2.362,2.362-2.362 h0.708c1.303,0,2.362,1.06,2.362,2.362v2.646c0,1.302-1.06,2.361-2.362,2.361H25.785z" fill="url(#SVGID_28_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="26.1392" x2="26.1392" y1="42.124" y2="48.3067">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M25.785,48.296c-0.965,0-1.749-0.785-1.749-1.749V43.9 c0-0.963,0.784-1.748,1.749-1.748h0.708c0.964,0,1.748,0.785,1.748,1.748v2.646c0,0.964-0.784,1.749-1.748,1.749H25.785z" fill="url(#SVGID_29_)" opacity="0.7"/>
+<path d="M25.785,48.296c-0.965,0-1.749-0.785-1.749-1.749V43.9 c0-0.963,0.784-1.748,1.749-1.748h0.708c0.964,0,1.748,0.785,1.748,1.748v2.646c0,0.964-0.784,1.749-1.748,1.749H25.785z" fill="url(#SVGID_29_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="26.1392" x2="26.1392" y1="42.7441" y2="47.6885">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<path d="M27.627,46.547c0,0.626-0.508,1.133-1.134,1.133h-0.708c-0.626,0-1.134-0.507-1.134-1.133V43.9 c0-0.627,0.508-1.134,1.134-1.134h0.708c0.626,0,1.134,0.507,1.134,1.134V46.547z" fill="url(#SVGID_30_)"/>
<path d="M22.736,35.155H11.479v-1.944h4.089V20.226l-4.089,0.764v-1.944l5.629-1.856h1.541v16.022h4.088V35.155z" fill="#FFFFFF"/>
-<path d="M53.357,31.105c-0.514-0.514-1.412-0.886-2.137-0.886H35.314c-1.004,0-1.822,0.815-1.822,1.819v13.185h18.043 c1.029,0,1.908-0.634,2.273-1.529c0.01-0.024,0.014-0.052,0.023-0.075c0.045-0.119,0.086-0.241,0.111-0.37 c0.033-0.155,0.049-0.316,0.049-0.482V31.74L53.357,31.105z" opacity="0.1"/>
-<path d="M52.924,31.541c-0.396-0.396-1.145-0.706-1.703-0.706H35.314c-0.666,0-1.207,0.539-1.207,1.204v13.185 h17.428c1.029,0,1.908-0.634,2.273-1.529c0.01-0.024,0.014-0.052,0.023-0.075c0.045-0.119,0.086-0.241,0.111-0.37 c0.033-0.155,0.049-0.316,0.049-0.482V32.609L52.924,31.541z" opacity="0.25"/>
+<path d="M53.357,31.105c-0.514-0.514-1.412-0.886-2.137-0.886H35.314c-1.004,0-1.822,0.815-1.822,1.819v13.185h18.043 c1.029,0,1.908-0.634,2.273-1.529c0.01-0.024,0.014-0.052,0.023-0.075c0.045-0.119,0.086-0.241,0.111-0.37 c0.033-0.155,0.049-0.316,0.049-0.482V31.74L53.357,31.105z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M52.924,31.541c-0.396-0.396-1.145-0.706-1.703-0.706H35.314c-0.666,0-1.207,0.539-1.207,1.204v13.185 h17.428c1.029,0,1.908-0.634,2.273-1.529c0.01-0.024,0.014-0.052,0.023-0.075c0.045-0.119,0.086-0.241,0.111-0.37 c0.033-0.155,0.049-0.316,0.049-0.482V32.609L52.924,31.541z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="46.1797" x2="46.1797" y1="31.418" y2="59.0309">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="0.7818" style="stop-color:#CCCCCC"/>
- <stop offset="1" style="stop-color:#D1D1D1"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
<path d="M57.047,59H35.314c-0.328,0-0.594-0.266-0.594-0.592V32.039c0-0.324,0.266-0.591,0.594-0.591h15.906 c0.396,0,0.988,0.247,1.27,0.526l4.625,4.621c0.279,0.282,0.523,0.874,0.523,1.271v20.542C57.639,58.734,57.375,59,57.047,59 L57.047,59z" fill="url(#SVGID_31_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="46.1816" x2="46.1816" y1="32.1338" y2="58.3145">
- <stop offset="0" style="stop-color:#E6E9E8"/>
- <stop offset="1" style="stop-color:#ADB2B5"/>
+<stop offset="0" style="stop-color:#E6E9E8"/>
+<stop offset="1" style="stop-color:#ADB2B5"/>
</linearGradient>
<path d="M56.957,58.314H35.406V32.134h15.814c0.213,0,0.633,0.174,0.785,0.326l4.625,4.62 c0.15,0.153,0.326,0.572,0.326,0.786V58.314L56.957,58.314z" fill="url(#SVGID_32_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="44.8232" x2="44.8232" y1="56.125" y2="42.3986">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#282828"/>
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
<rect fill="url(#SVGID_33_)" height="13.831" width="16.127" x="36.76" y="42.347"/>
-<rect fill="#FFFFFF" height="0.685" opacity="0.4" width="16.127" x="36.76" y="56.178"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="0.685" stroke-opacity="0.4" width="16.127" x="36.76" y="56.178"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="39.0664" x2="39.0664" y1="43.0127" y2="55.1728">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_34_)" height="3.772" width="2.934" x="37.6" y="51.523"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="46.2803" x2="46.2803" y1="43.1504" y2="55.0011">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_35_)" height="3.771" width="2.713" x="44.924" y="43.142"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="42.7275" x2="42.7275" y1="43.1504" y2="55.0011">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_36_)" height="3.771" width="2.713" x="41.371" y="43.142"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="50.25" x2="50.25" y1="43.1504" y2="55.0011">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_37_)" height="3.771" width="3.551" x="48.475" y="43.142"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="46.2803" x2="46.2803" y1="43.0127" y2="55.1728">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_38_)" height="3.772" width="2.713" x="44.924" y="51.523"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="42.7275" x2="42.7275" y1="43.0127" y2="55.1728">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_39_)" height="3.772" width="2.713" x="41.371" y="51.523"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="44.8125" x2="44.8125" y1="43.1504" y2="54.9801">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<polygon fill="url(#SVGID_40_)" points="40.486,47.752 40.486,43.142 37.6,43.142 37.6,50.685 52.025,50.685 52.025,47.752 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="50.25" x2="50.25" y1="43.0127" y2="55.1728">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_41_)" height="3.772" width="3.551" x="48.475" y="51.523"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_application.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_application.svg Thu May 27 13:10:59 2010 +0300
@@ -1,67 +1,61 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<rect fill="none" height="60" width="60"/>
<g>
-
- <linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2266.5317" x2="-2266.5317" y1="-3740.9238" y2="-3730.1428">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="1" style="stop-color:#7DC51A"/>
- </linearGradient>
- <path d="M53.46,11.174l-2.885-6.015c0,0-0.652-1.714-2.693-2.042H12.091 c-2.04,0.327-2.693,2.042-2.693,2.042l-2.886,6.015c-0.699,0.789-0.862,1.795-0.897,2.395h48.747 C54.326,12.969,54.163,11.963,53.46,11.174z" fill="url(#SVGID_1_)"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2266.5195" x2="-2266.5195" y1="-3734.1553" y2="-3685.6365">
- <stop offset="0.1394" style="stop-color:#AFED23"/>
- <stop offset="0.6909" style="stop-color:#3E8A0D"/>
- <stop offset="0.9515" style="stop-color:#7EF524"/>
- </linearGradient>
- <path d="M54.386,53.631c0,1.926-1.558,3.484-3.481,3.484H9.099c-1.926,0-3.484-1.561-3.484-3.484V13.567 c0-1.923,1.558-3.483,3.484-3.483h41.806c1.921,0,3.481,1.56,3.481,3.483V53.631L54.386,53.631z" fill="url(#SVGID_2_)"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2266.5181" x2="-2266.5181" y1="-3734.0898" y2="-3698.1501">
- <stop offset="0" style="stop-color:#67AD1A"/>
- <stop offset="1" style="stop-color:#358C0C"/>
- </linearGradient>
- <path d="M12.583,44.923h34.835c1.927,0,3.486-1.561,3.486-3.485V10.084H9.099v31.353 C9.099,43.362,10.657,44.923,12.583,44.923z" fill="url(#SVGID_3_)"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2266.5195" x2="-2266.5195" y1="-3702.2539" y2="-3686.2131">
- <stop offset="0" style="stop-color:#358C0C"/>
- <stop offset="0.7758" style="stop-color:#67AD1A"/>
- <stop offset="1" style="stop-color:#AFED23"/>
- </linearGradient>
- <path d="M49.22,44.408c-0.414,0.252-0.873,0.408-1.372,0.469c-0.115,0.027-0.248,0.046-0.43,0.046H12.583 c-0.183,0-0.317-0.019-0.429-0.046c-0.497-0.062-0.96-0.217-1.37-0.469l-4.68,10.979c0.605,1.029,1.714,1.729,2.995,1.729h41.806 c1.28,0,2.386-0.7,2.992-1.729L49.22,44.408z" fill="url(#SVGID_4_)"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2266.5195" x2="-2266.5195" y1="-3702.0195" y2="-3687.3784">
- <stop offset="0" style="stop-color:#0C4A06"/>
- <stop offset="0.3152" style="stop-color:#0A5E1C"/>
- <stop offset="0.7394" style="stop-color:#41AD1A"/>
- <stop offset="1" style="stop-color:#89D920"/>
- </linearGradient>
- <path d="M10.784,46.15c0.41,0.248,0.873,0.409,1.37,0.474 c0.113,0.025,0.249,0.041,0.429,0.041h34.835c0.182,0,0.315-0.016,0.43-0.041c0.499-0.064,0.958-0.223,1.372-0.474l4.199,9.857 c0.177-0.193,0.345-0.393,0.478-0.62L49.22,44.408c-0.412,0.252-0.873,0.408-1.372,0.469c-0.116,0.027-0.248,0.046-0.428,0.046 H12.583c-0.183,0-0.317-0.019-0.429-0.046c-0.497-0.062-0.96-0.217-1.37-0.469l-4.68,10.979c0.13,0.228,0.298,0.43,0.477,0.62 L10.784,46.15z" enable-background="new " fill="url(#SVGID_5_)" opacity="0.3"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2266.5181" x2="-2266.5181" y1="-3734.0898" y2="-3698.1499">
- <stop offset="0" style="stop-color:#87CC1F"/>
- <stop offset="0.6182" style="stop-color:#086311"/>
- <stop offset="1" style="stop-color:#06421E"/>
- </linearGradient>
- <path d="M9.099,10.084v31.353c0,1.926,1.558,3.485,3.484,3.485 h34.835c1.927,0,3.486-1.56,3.486-3.485V10.084H9.099z M49.162,41.437c0,0.963-0.786,1.744-1.744,1.744H12.583 c-0.96,0-1.744-0.781-1.744-1.744V11.826h38.323V41.437L49.162,41.437z" enable-background="new " fill="url(#SVGID_6_)" opacity="0.3"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-2266.5181" x2="-2266.5181" y1="-3740.9043" y2="-3733.7168">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="1" style="stop-color:#358C0C"/>
- </linearGradient>
- <path d="M50.904,6.6c0-1.922-1.561-3.482-3.486-3.482H12.583c-1.926,0-3.484,1.56-3.484,3.482v3.484h41.806 V6.6z" fill="url(#SVGID_7_)"/>
- <path d="M9.099,10.084h41.806c1.129,0,2.117,0.546,2.761,1.382 c-0.071-0.099-0.125-0.202-0.205-0.293l-2.885-6.015c0,0-0.652-1.714-2.695-2.042H12.091c-2.04,0.327-2.693,2.042-2.693,2.042 l-2.886,6.015c-0.244,0.275-0.405,0.575-0.538,0.876C6.541,10.89,7.717,10.084,9.099,10.084z" enable-background="new " fill="#C7FF5A" opacity="0.5"/>
- <path d="M53.867,11.76c0.016,0.025,0.027,0.053,0.046,0.081C53.896,11.811,53.883,11.788,53.867,11.76z" fill="#C7FF5A"/>
- <path d="M5.826,12.412c-0.01,0.023-0.017,0.048-0.023,0.074C5.812,12.461,5.816,12.435,5.826,12.412z" fill="#C7FF5A"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-2266.5195" x2="-2266.5195" y1="-3734.1553" y2="-3685.636">
- <stop offset="0" style="stop-color:#D4FFA8"/>
- <stop offset="0.6848" style="stop-color:#75D911"/>
- <stop offset="1" style="stop-color:#7EF524"/>
- </linearGradient>
- <path d="M50.904,10.084H9.099c-1.926,0-3.484,1.56-3.484,3.483v40.064c0,1.926,1.558,3.484,3.484,3.484 h41.806c1.921,0,3.481-1.561,3.481-3.484V13.567C54.386,11.645,52.828,10.084,50.904,10.084z M52.646,53.631 c0,0.964-0.786,1.745-1.742,1.745H9.099c-0.958,0-1.744-0.781-1.744-1.745V13.567c0-0.961,0.784-1.741,1.744-1.741h41.806 c0.956,0,1.741,0.781,1.741,1.741L52.646,53.631L52.646,53.631z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2266.5317" x2="-2266.5317" y1="-3740.9238" y2="-3730.1428">
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="1" style="stop-color:#7DC51A"/>
+</linearGradient>
+<path d="M53.46,11.174l-2.885-6.015c0,0-0.652-1.714-2.693-2.042H12.091 c-2.04,0.327-2.693,2.042-2.693,2.042l-2.886,6.015c-0.699,0.789-0.862,1.795-0.897,2.395h48.747 C54.326,12.969,54.163,11.963,53.46,11.174z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2266.5195" x2="-2266.5195" y1="-3734.1553" y2="-3685.6365">
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.1394" style="stop-color:#AFED23"/>
+<stop offset="0.6909" style="stop-color:#3E8A0D"/>
+<stop offset="0.9515" style="stop-color:#7EF524"/>
+<stop offset="1" style="stop-color:#7EF524"/>
+</linearGradient>
+<path d="M54.386,53.631c0,1.926-1.558,3.484-3.481,3.484H9.099c-1.926,0-3.484-1.561-3.484-3.484V13.567 c0-1.923,1.558-3.483,3.484-3.483h41.806c1.921,0,3.481,1.56,3.481,3.483V53.631L54.386,53.631z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2266.5181" x2="-2266.5181" y1="-3734.0898" y2="-3698.1501">
+<stop offset="0" style="stop-color:#67AD1A"/>
+<stop offset="1" style="stop-color:#358C0C"/>
+</linearGradient>
+<path d="M12.583,44.923h34.835c1.927,0,3.486-1.561,3.486-3.485V10.084H9.099v31.353 C9.099,43.362,10.657,44.923,12.583,44.923z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2266.5195" x2="-2266.5195" y1="-3702.2539" y2="-3686.2131">
+<stop offset="0" style="stop-color:#358C0C"/>
+<stop offset="0.7758" style="stop-color:#67AD1A"/>
+<stop offset="1" style="stop-color:#AFED23"/>
+</linearGradient>
+<path d="M49.22,44.408c-0.414,0.252-0.873,0.408-1.372,0.469c-0.115,0.027-0.248,0.046-0.43,0.046H12.583 c-0.183,0-0.317-0.019-0.429-0.046c-0.497-0.062-0.96-0.217-1.37-0.469l-4.68,10.979c0.605,1.029,1.714,1.729,2.995,1.729h41.806 c1.28,0,2.386-0.7,2.992-1.729L49.22,44.408z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2266.5195" x2="-2266.5195" y1="-3702.0195" y2="-3687.3784">
+<stop offset="0" style="stop-color:#0C4A06"/>
+<stop offset="0.3152" style="stop-color:#0A5E1C"/>
+<stop offset="0.7394" style="stop-color:#41AD1A"/>
+<stop offset="1" style="stop-color:#89D920"/>
+</linearGradient>
+<path d="M10.784,46.15c0.41,0.248,0.873,0.409,1.37,0.474 c0.113,0.025,0.249,0.041,0.429,0.041h34.835c0.182,0,0.315-0.016,0.43-0.041c0.499-0.064,0.958-0.223,1.372-0.474l4.199,9.857 c0.177-0.193,0.345-0.393,0.478-0.62L49.22,44.408c-0.412,0.252-0.873,0.408-1.372,0.469c-0.116,0.027-0.248,0.046-0.428,0.046 H12.583c-0.183,0-0.317-0.019-0.429-0.046c-0.497-0.062-0.96-0.217-1.37-0.469l-4.68,10.979c0.13,0.228,0.298,0.43,0.477,0.62 L10.784,46.15z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2266.5181" x2="-2266.5181" y1="-3734.0898" y2="-3698.1499">
+<stop offset="0" style="stop-color:#87CC1F"/>
+<stop offset="0.6182" style="stop-color:#086311"/>
+<stop offset="1" style="stop-color:#06421E"/>
+</linearGradient>
+<path d="M9.099,10.084v31.353c0,1.926,1.558,3.485,3.484,3.485 h34.835c1.927,0,3.486-1.56,3.486-3.485V10.084H9.099z M49.162,41.437c0,0.963-0.786,1.744-1.744,1.744H12.583 c-0.96,0-1.744-0.781-1.744-1.744V11.826h38.323V41.437L49.162,41.437z" fill="url(#SVGID_6_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-2266.5181" x2="-2266.5181" y1="-3740.9043" y2="-3733.7168">
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="1" style="stop-color:#358C0C"/>
+</linearGradient>
+<path d="M50.904,6.6c0-1.922-1.561-3.482-3.486-3.482H12.583c-1.926,0-3.484,1.56-3.484,3.482v3.484h41.806 V6.6z" fill="url(#SVGID_7_)"/>
+<path d="M9.099,10.084h41.806c1.129,0,2.117,0.546,2.761,1.382 c-0.071-0.099-0.125-0.202-0.205-0.293l-2.885-6.015c0,0-0.652-1.714-2.695-2.042H12.091c-2.04,0.327-2.693,2.042-2.693,2.042 l-2.886,6.015c-0.244,0.275-0.405,0.575-0.538,0.876C6.541,10.89,7.717,10.084,9.099,10.084z" fill="#C7FF5A" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M53.867,11.76c0.016,0.025,0.027,0.053,0.046,0.081C53.896,11.811,53.883,11.788,53.867,11.76z" fill="#C7FF5A"/>
+<path d="M5.826,12.412c-0.01,0.023-0.017,0.048-0.023,0.074C5.812,12.461,5.816,12.435,5.826,12.412z" fill="#C7FF5A"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-2266.5195" x2="-2266.5195" y1="-3734.1553" y2="-3685.636">
+<stop offset="0" style="stop-color:#D4FFA8"/>
+<stop offset="0.6848" style="stop-color:#75D911"/>
+<stop offset="1" style="stop-color:#7EF524"/>
+</linearGradient>
+<path d="M50.904,10.084H9.099c-1.926,0-3.484,1.56-3.484,3.483v40.064c0,1.926,1.558,3.484,3.484,3.484 h41.806c1.921,0,3.481-1.561,3.481-3.484V13.567C54.386,11.645,52.828,10.084,50.904,10.084z M52.646,53.631 c0,0.964-0.786,1.745-1.742,1.745H9.099c-0.958,0-1.744-0.781-1.744-1.745V13.567c0-0.961,0.784-1.741,1.744-1.741h41.806 c0.956,0,1.741,0.781,1.741,1.741L52.646,53.631L52.646,53.631z" fill="url(#SVGID_8_)"/>
</g>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_download.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_download.svg Thu May 27 13:10:59 2010 +0300
@@ -1,47 +1,44 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="59.999" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2163.8232" x2="-2163.8232" y1="4093.1855" y2="4081.4014">
- <stop offset="0" style="stop-color:#D49757"/>
- <stop offset="0.6182" style="stop-color:#8A4117"/>
- <stop offset="1" style="stop-color:#702200"/>
+<stop offset="0" style="stop-color:#D49757"/>
+<stop offset="0.6182" style="stop-color:#8A4117"/>
+<stop offset="1" style="stop-color:#702200"/>
</linearGradient>
<path d="M53.646,12.358c0,0-22.377,0-22.842,0c-0.463,0-1.002-0.202-1.332-1.01 c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697c-0.824,0-1.428,0.7-1.428,1.562v14.438h49.814 v-9.968C55.084,12.989,54.473,12.358,53.646,12.358z" fill="url(#SVGID_1_)"/>
-<path d="M53.646,12.358c0,0-22.377,0-22.842,0 c-0.463,0-1.002-0.202-1.332-1.01c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697 c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.576c0.941,0,1.225,0.584,1.436,1.236 c0,0,0.557,1.591,0.764,2.296c0.33,0.806,0.869,1.011,1.332,1.011c0.465,0,22.842,0,22.842,0c0.826,0,1.439,0.628,1.439,1.489 v-0.728C55.084,12.989,54.473,12.358,53.646,12.358z" enable-background="new " fill="#FFF7F5" opacity="0.5"/>
+<path d="M53.646,12.358c0,0-22.377,0-22.842,0 c-0.463,0-1.002-0.202-1.332-1.01c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697 c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.576c0.941,0,1.225,0.584,1.436,1.236 c0,0,0.557,1.591,0.764,2.296c0.33,0.806,0.869,1.011,1.332,1.011c0.465,0,22.842,0,22.842,0c0.826,0,1.439,0.628,1.439,1.489 v-0.728C55.084,12.989,54.473,12.358,53.646,12.358z" fill="#FFF7F5" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect height="8.728" width="46.906" x="6.73" y="15.817"/>
<rect fill="#F2F2F2" height="7.271" width="45.451" x="7.457" y="16.545"/>
-<polygon enable-background="new " fill="#231F20" opacity="0.4" points="55.084,22.362 5.27,22.362 5.27,21.636 55.084,21.636 "/>
-<polygon enable-background="new " fill="#231F20" opacity="0.15" points="55.084,21.636 5.27,21.636 5.27,20.908 55.084,20.908 "/>
-<polygon enable-background="new " fill="#231F20" opacity="0.05" points="55.084,20.908 5.27,20.908 5.27,20.182 55.084,20.182 "/>
+<polygon fill="#231F20" fill-opacity="0.4" points="55.084,22.362 5.27,22.362 5.27,21.636 55.084,21.636 " stroke-opacity="0.4"/>
+<polygon fill="#231F20" fill-opacity="0.15" points="55.084,21.636 5.27,21.636 5.27,20.908 55.084,20.908 " stroke-opacity="0.15"/>
+<polygon fill="#231F20" fill-opacity="0.05" points="55.084,20.908 5.27,20.908 5.27,20.182 55.084,20.182 " stroke-opacity="0.05"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="4048.7861" y2="4078.6064">
- <stop offset="0.0303" style="stop-color:#C79101"/>
- <stop offset="0.0364" style="stop-color:#FEEFA7"/>
- <stop offset="0.3273" style="stop-color:#FEE570"/>
- <stop offset="0.6727" style="stop-color:#F0C12B"/>
- <stop offset="1" style="stop-color:#E6A501"/>
+<stop offset="0" style="stop-color:#C79101"/>
+<stop offset="0.0303" style="stop-color:#C79101"/>
+<stop offset="0.0364" style="stop-color:#FEEFA7"/>
+<stop offset="0.3273" style="stop-color:#FEE570"/>
+<stop offset="0.6727" style="stop-color:#F0C12B"/>
+<stop offset="1" style="stop-color:#E6A501"/>
</linearGradient>
<path d="M56.273,22.362H3.727C2.191,22.362,2,24.065,2,24.065l2.549,25.934 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184L58,24.065 C58,24.065,57.809,22.362,56.273,22.362z" fill="url(#SVGID_2_)"/>
<path d="M3.727,23.091h52.547c1.178,0,1.563,0.995,1.68,1.464L58,24.065c0,0-0.191-1.703-1.727-1.703H3.727 C2.191,22.362,2,24.065,2,24.065l0.047,0.489C2.164,24.086,2.549,23.091,3.727,23.091z" fill="#FCF3D0"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0166" x2="-2164.0166" y1="4048.7861" y2="4053.1504">
- <stop offset="0" style="stop-color:#FCDA5E"/>
- <stop offset="1" style="stop-color:#FFB418"/>
+<stop offset="0" style="stop-color:#FCDA5E"/>
+<stop offset="1" style="stop-color:#FFB418"/>
</linearGradient>
-<path d="M4.334,47.818l0.215,2.181 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181H4.334z" enable-background="new " fill="url(#SVGID_3_)" opacity="0.25"/>
+<path d="M4.334,47.818l0.215,2.181 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181H4.334z" fill="url(#SVGID_3_)" fill-opacity="0.25" stroke-opacity="0.25"/>
<rect fill="none" height="59.999" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="30.096,0 0.096,0 0.096,14.833 0,14.833 0.096,14.933 0.096,30 14.601,30 15.021,30.438 15.447,30 30.096,30 30.096,14.963 30.215,14.841 30.096,14.841 "/>
-<polygon opacity="0.35" points="0,14.833 3.596,14.828 3.625,14.859 8.375,14.859 8.375,0 21.73,0.001 21.73,14.843 30.215,14.841 15.021,30.438 "/>
+<polygon fill-opacity="0.35" points="0,14.833 3.596,14.828 3.625,14.859 8.375,14.859 8.375,0 21.73,0.001 21.73,14.843 30.215,14.841 15.021,30.438 " stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2176.5142" x2="-2176.5142" y1="2984.646" y2="2957.3247">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="2.846,15.859 15.025,28.575 27.398,15.845 20.732,15.843 20.727,1.292 9.375,1.291 9.375,15.859 "/>
<line fill="none" x1="20.727" x2="9.375" y1="1.297" y2="1.296"/>
@@ -49,10 +46,10 @@
<polygon fill="#E7FFB9" points="20.555,15.867 27.527,15.867 27,16.458 20.555,16.458 "/>
<polygon fill="#E7FFB9" points="2.459,15.859 9.365,15.859 9.365,16.451 3.08,16.451 "/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2165.6621" x2="-2187.9482" y1="2963.2173" y2="2963.2173">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="27.016,15.844 15.025,28.15 3.172,15.829 2.348,15.83 15.025,29 27.842,15.844 "/>
<rect fill="none" height="30" width="30" x="0.096"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_games.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_games.svg Thu May 27 13:10:59 2010 +0300
@@ -1,267 +1,269 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="59.999" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2163.8232" x2="-2163.8232" y1="4093.1855" y2="4081.4014">
- <stop offset="0" style="stop-color:#D49757"/>
- <stop offset="0.6182" style="stop-color:#8A4117"/>
- <stop offset="1" style="stop-color:#702200"/>
+<stop offset="0" style="stop-color:#D49757"/>
+<stop offset="0.6182" style="stop-color:#8A4117"/>
+<stop offset="1" style="stop-color:#702200"/>
</linearGradient>
<path d="M53.646,12.358c0,0-22.377,0-22.842,0c-0.463,0-1.002-0.202-1.332-1.01 c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697c-0.824,0-1.428,0.7-1.428,1.562v14.438h49.814 v-9.968C55.084,12.989,54.473,12.358,53.646,12.358z" fill="url(#SVGID_1_)"/>
-<path d="M53.646,12.358c0,0-22.377,0-22.842,0 c-0.463,0-1.002-0.202-1.332-1.01c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697 c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.576c0.941,0,1.225,0.584,1.436,1.236 c0,0,0.557,1.591,0.764,2.296c0.33,0.806,0.869,1.011,1.332,1.011c0.465,0,22.842,0,22.842,0c0.826,0,1.439,0.628,1.439,1.489 v-0.728C55.084,12.989,54.473,12.358,53.646,12.358z" enable-background="new " fill="#FFF7F5" opacity="0.5"/>
+<path d="M53.646,12.358c0,0-22.377,0-22.842,0 c-0.463,0-1.002-0.202-1.332-1.01c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697 c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.576c0.941,0,1.225,0.584,1.436,1.236 c0,0,0.557,1.591,0.764,2.296c0.33,0.806,0.869,1.011,1.332,1.011c0.465,0,22.842,0,22.842,0c0.826,0,1.439,0.628,1.439,1.489 v-0.728C55.084,12.989,54.473,12.358,53.646,12.358z" fill="#FFF7F5" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect height="8.728" width="46.906" x="6.73" y="15.817"/>
<rect fill="#F2F2F2" height="7.271" width="45.451" x="7.457" y="16.545"/>
-<polygon enable-background="new " fill="#231F20" opacity="0.4" points="55.084,22.362 5.27,22.362 5.27,21.636 55.084,21.636 "/>
-<polygon enable-background="new " fill="#231F20" opacity="0.15" points="55.084,21.636 5.27,21.636 5.27,20.908 55.084,20.908 "/>
-<polygon enable-background="new " fill="#231F20" opacity="0.05" points="55.084,20.908 5.27,20.908 5.27,20.182 55.084,20.182 "/>
+<polygon fill="#231F20" fill-opacity="0.4" points="55.084,22.362 5.27,22.362 5.27,21.636 55.084,21.636 " stroke-opacity="0.4"/>
+<polygon fill="#231F20" fill-opacity="0.15" points="55.084,21.636 5.27,21.636 5.27,20.908 55.084,20.908 " stroke-opacity="0.15"/>
+<polygon fill="#231F20" fill-opacity="0.05" points="55.084,20.908 5.27,20.908 5.27,20.182 55.084,20.182 " stroke-opacity="0.05"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="4048.7861" y2="4078.6064">
- <stop offset="0.0303" style="stop-color:#C79101"/>
- <stop offset="0.0364" style="stop-color:#FEEFA7"/>
- <stop offset="0.3273" style="stop-color:#FEE570"/>
- <stop offset="0.6727" style="stop-color:#F0C12B"/>
- <stop offset="1" style="stop-color:#E6A501"/>
+<stop offset="0" style="stop-color:#C79101"/>
+<stop offset="0.0303" style="stop-color:#C79101"/>
+<stop offset="0.0364" style="stop-color:#FEEFA7"/>
+<stop offset="0.3273" style="stop-color:#FEE570"/>
+<stop offset="0.6727" style="stop-color:#F0C12B"/>
+<stop offset="1" style="stop-color:#E6A501"/>
</linearGradient>
<path d="M56.273,22.362H3.727C2.191,22.362,2,24.065,2,24.065l2.549,25.934 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184L58,24.065 C58,24.065,57.809,22.362,56.273,22.362z" fill="url(#SVGID_2_)"/>
<path d="M3.727,23.091h52.547c1.178,0,1.563,0.995,1.68,1.464L58,24.065c0,0-0.191-1.703-1.727-1.703H3.727 C2.191,22.362,2,24.065,2,24.065l0.047,0.489C2.164,24.086,2.549,23.091,3.727,23.091z" fill="#FCF3D0"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0166" x2="-2164.0166" y1="4048.7861" y2="4053.1504">
- <stop offset="0" style="stop-color:#FCDA5E"/>
- <stop offset="1" style="stop-color:#FFB418"/>
+<stop offset="0" style="stop-color:#FCDA5E"/>
+<stop offset="1" style="stop-color:#FFB418"/>
</linearGradient>
-<path d="M4.334,47.818l0.215,2.181 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181H4.334z" enable-background="new " fill="url(#SVGID_3_)" opacity="0.25"/>
+<path d="M4.334,47.818l0.215,2.181 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181H4.334z" fill="url(#SVGID_3_)" fill-opacity="0.25" stroke-opacity="0.25"/>
<rect fill="none" height="59.999" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M26.458,25.825c-1.436,0-2.695-0.801-3.367-2.143c-0.775-1.542-2.788-6.932-2.788-6.932 c-0.324-0.144-0.635-0.312-0.932-0.503h-8.742c-0.348,0.224-0.715,0.417-1.1,0.576c0,0-1.844,5.316-2.617,6.86 c-0.674,1.342-1.933,2.143-3.368,2.143c-1.565,0-2.854-0.985-3.138-2.395C0.088,21.848,0,10.468,0,10.468 c0.014-3.823,3.107-6.905,6.896-6.905c1.332,0,2.617,0.381,3.734,1.105h8.738c1.117-0.725,2.403-1.105,3.735-1.105 c3.451,0,6.322,2.556,6.818,5.874c0,0-0.121,12.96-0.328,13.995C29.313,24.84,28.022,25.825,26.458,25.825L26.458,25.825z" opacity="0.35"/>
+<path d="M26.458,25.825c-1.436,0-2.695-0.801-3.367-2.143c-0.775-1.542-2.788-6.932-2.788-6.932 c-0.324-0.144-0.635-0.312-0.932-0.503h-8.742c-0.348,0.224-0.715,0.417-1.1,0.576c0,0-1.844,5.316-2.617,6.86 c-0.674,1.342-1.933,2.143-3.368,2.143c-1.565,0-2.854-0.985-3.138-2.395C0.088,21.848,0,10.468,0,10.468 c0.014-3.823,3.107-6.905,6.896-6.905c1.332,0,2.617,0.381,3.734,1.105h8.738c1.117-0.725,2.403-1.105,3.735-1.105 c3.451,0,6.322,2.556,6.818,5.874c0,0-0.121,12.96-0.328,13.995C29.313,24.84,28.022,25.825,26.458,25.825L26.458,25.825z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179.1841" x2="-2179.1841" y1="3223.6826" y2="3213.8577">
- <stop offset="0.0424" style="stop-color:#E9F0F2"/>
- <stop offset="0.5394" style="stop-color:#A8B2B8"/>
- <stop offset="1" style="stop-color:#A1AAAD"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.0424" style="stop-color:#E9F0F2"/>
+<stop offset="0.5394" style="stop-color:#A8B2B8"/>
+<stop offset="1" style="stop-color:#A1AAAD"/>
</linearGradient>
<rect fill="url(#SVGID_1__)" height="9.579" width="12.896" x="8.368" y="5.668"/>
<rect fill="#FFFFFF" height="0.368" width="12.526" x="8.737" y="5.668"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2193.1895" x2="-2186.1226" y1="3212.127" y2="3210.9614">
- <stop offset="0" style="stop-color:#949899"/>
- <stop offset="0.3273" style="stop-color:#B0B5B8"/>
- <stop offset="0.7212" style="stop-color:#848D8F"/>
- <stop offset="1" style="stop-color:#8A9294"/>
+<stop offset="0" style="stop-color:#949899"/>
+<stop offset="0.3273" style="stop-color:#B0B5B8"/>
+<stop offset="0.7212" style="stop-color:#848D8F"/>
+<stop offset="1" style="stop-color:#8A9294"/>
</linearGradient>
<path d="M1,10.437c0,0,0,10.875,0.387,12.798c0.386,1.924,3.473,2.309,4.631,0 c1.158-2.309,3.088-7.796,3.088-7.796s-1.543-3.848-3.473-4.616C3.703,10.052,1,10.437,1,10.437z" fill="url(#SVGID_2__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-2193.2305" x2="-2186.1636" y1="3211.8779" y2="3210.7124">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#303030"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#303030"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
-<path d="M6.018,22.615c-1.158,2.308-4.245,1.924-4.631,0 c-0.331-1.648-0.378-9.855-0.385-12.178H1c0,0,0,10.875,0.387,12.798c0.386,1.924,3.473,2.309,4.631,0 c1.158-2.309,3.088-7.796,3.088-7.796s-0.041-0.104-0.119-0.281C8.547,16.383,7.003,20.649,6.018,22.615z" enable-background="new " fill="url(#SVGID_3__)" opacity="0.3"/>
+<path d="M6.018,22.615c-1.158,2.308-4.245,1.924-4.631,0 c-0.331-1.648-0.378-9.855-0.385-12.178H1c0,0,0,10.875,0.387,12.798c0.386,1.924,3.473,2.309,4.631,0 c1.158-2.309,3.088-7.796,3.088-7.796s-0.041-0.104-0.119-0.281C8.547,16.383,7.003,20.649,6.018,22.615z" fill="url(#SVGID_3__)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -3497.2295 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-3526.4194" x2="-3519.3518" y1="3212.127" y2="3210.9612">
- <stop offset="0" style="stop-color:#949899"/>
- <stop offset="0.3273" style="stop-color:#B0B5B8"/>
- <stop offset="0.7212" style="stop-color:#848D8F"/>
- <stop offset="1" style="stop-color:#8A9294"/>
+<stop offset="0" style="stop-color:#949899"/>
+<stop offset="0.3273" style="stop-color:#B0B5B8"/>
+<stop offset="0.7212" style="stop-color:#848D8F"/>
+<stop offset="1" style="stop-color:#8A9294"/>
</linearGradient>
<path d="M29,10.437c0,0,0,10.875-0.387,12.798c-0.385,1.924-3.473,2.309-4.631,0 c-1.158-2.309-3.088-7.796-3.088-7.796s1.545-3.848,3.475-4.616C26.299,10.052,29,10.437,29,10.437z" fill="url(#SVGID_4_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2172.3784" x2="-2165.251" y1="3212.6367" y2="3211.4612">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#303030"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#303030"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
-<path d="M28.614,22.615c-0.385,1.924-3.473,2.308-4.631,0 c-0.986-1.965-2.53-6.231-2.967-7.458c-0.078,0.177-0.121,0.281-0.121,0.281s1.93,5.487,3.088,7.796 c1.158,2.309,4.246,1.924,4.631,0C29,21.312,29,10.437,29,10.437l0,0C28.993,12.76,28.946,20.967,28.614,22.615z" enable-background="new " fill="url(#SVGID_5_)" opacity="0.3"/>
+<path d="M28.614,22.615c-0.385,1.924-3.473,2.308-4.631,0 c-0.986-1.965-2.53-6.231-2.967-7.458c-0.078,0.177-0.121,0.281-0.121,0.281s1.93,5.487,3.088,7.796 c1.158,2.309,4.246,1.924,4.631,0C29,21.312,29,10.437,29,10.437l0,0C28.993,12.76,28.946,20.967,28.614,22.615z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2183.0532" x2="-2183.0532" y1="3223.5195" y2="3214.0896">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#303030"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#303030"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
-<path d="M8.368,15.247h3.101c1.265-1.209,2.057-2.907,2.057-4.79 c0-1.884-0.792-3.581-2.057-4.79H8.368V15.247z" enable-background="new " fill="url(#SVGID_6_)" opacity="0.05"/>
+<path d="M8.368,15.247h3.101c1.265-1.209,2.057-2.907,2.057-4.79 c0-1.884-0.792-3.581-2.057-4.79H8.368V15.247z" fill="url(#SVGID_6_)" fill-opacity="0.05" stroke-opacity="0.05"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-2183.2368" x2="-2183.2368" y1="3223.5195" y2="3214.0896">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#303030"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#303030"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
-<path d="M8.368,15.247h2.556c1.364-1.149,2.234-2.87,2.234-4.79 c0-1.92-0.87-3.64-2.234-4.79H8.368V15.247z" enable-background="new " fill="url(#SVGID_7_)" opacity="0.1"/>
+<path d="M8.368,15.247h2.556c1.364-1.149,2.234-2.87,2.234-4.79 c0-1.92-0.87-3.64-2.234-4.79H8.368V15.247z" fill="url(#SVGID_7_)" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-2188.9473" x2="-2188.9473" y1="3218.873" y2="3212.23">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#303030"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#303030"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
-<path d="M5.633,10.822C3.703,10.052,1,10.437,1,10.437 s0,1.299,0.016,3.077c1.108,2.121,3.326,3.575,5.881,3.575c0.587,0,1.154-0.085,1.697-0.229c0.311-0.85,0.512-1.421,0.512-1.421 S7.563,11.591,5.633,10.822z" enable-background="new " fill="url(#SVGID_8_)" opacity="0.1"/>
+<path d="M5.633,10.822C3.703,10.052,1,10.437,1,10.437 s0,1.299,0.016,3.077c1.108,2.121,3.326,3.575,5.881,3.575c0.587,0,1.154-0.085,1.697-0.229c0.311-0.85,0.512-1.421,0.512-1.421 S7.563,11.591,5.633,10.822z" fill="url(#SVGID_8_)" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-2188.9473" x2="-2188.9473" y1="3218.877" y2="3212.5967">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#303030"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#303030"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
-<path d="M5.633,10.822C3.703,10.052,1,10.437,1,10.437 s0,0.86,0.009,2.139c0.873,2.413,3.179,4.146,5.888,4.146c0.643,0,1.266-0.1,1.851-0.281c0.221-0.611,0.358-1.001,0.358-1.001 S7.563,11.591,5.633,10.822z" enable-background="new " fill="url(#SVGID_9_)" opacity="0.2"/>
+<path d="M5.633,10.822C3.703,10.052,1,10.437,1,10.437 s0,0.86,0.009,2.139c0.873,2.413,3.179,4.146,5.888,4.146c0.643,0,1.266-0.1,1.851-0.281c0.221-0.611,0.358-1.001,0.358-1.001 S7.563,11.591,5.633,10.822z" fill="url(#SVGID_9_)" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-2187.1045" x2="-2187.1045" y1="3224.4238" y2="3213.1807">
- <stop offset="0.0424" style="stop-color:#E9F0F2"/>
- <stop offset="0.4" style="stop-color:#D4D9DB"/>
- <stop offset="0.7333" style="stop-color:#B0BCBF"/>
- <stop offset="1" style="stop-color:#D0DADE"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.0424" style="stop-color:#E9F0F2"/>
+<stop offset="0.4" style="stop-color:#D4D9DB"/>
+<stop offset="0.7333" style="stop-color:#B0BCBF"/>
+<stop offset="1" style="stop-color:#D0DADE"/>
</linearGradient>
<path d="M6.896,4.747c3.152,0,5.709,2.557,5.709,5.71c0,3.155-2.557,5.71-5.709,5.71 c-3.156,0-5.711-2.556-5.711-5.71C1.186,7.304,3.74,4.747,6.896,4.747z" fill="url(#SVGID_10_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-2187.105" x2="-2187.105" y1="3224.6045" y2="3212.999">
- <stop offset="0.0424" style="stop-color:#F6FDFF"/>
- <stop offset="0.4" style="stop-color:#E6EBED"/>
- <stop offset="0.7333" style="stop-color:#B0BCBF"/>
- <stop offset="1" style="stop-color:#D0DADE"/>
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="0.0424" style="stop-color:#F6FDFF"/>
+<stop offset="0.4" style="stop-color:#E6EBED"/>
+<stop offset="0.7333" style="stop-color:#B0BCBF"/>
+<stop offset="1" style="stop-color:#D0DADE"/>
</linearGradient>
<path d="M6.896,4.563C3.639,4.563,1,7.202,1,10.458c0,3.254,2.639,5.894,5.896,5.894 c3.254,0,5.894-2.64,5.894-5.894C12.79,7.202,10.15,4.563,6.896,4.563z M6.896,15.984c-3.049,0-5.528-2.479-5.528-5.526 s2.479-5.526,5.528-5.526c3.046,0,5.524,2.479,5.524,5.526S9.942,15.984,6.896,15.984z" fill="url(#SVGID_11_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-2175.1309" x2="-2175.1309" y1="3223.5195" y2="3214.0898">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#303030"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#303030"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
-<path d="M16.475,10.458c0,1.883,0.792,3.58,2.058,4.79h2.731 V5.668h-2.731C17.267,6.876,16.475,8.574,16.475,10.458z" enable-background="new " fill="url(#SVGID_12_)" opacity="0.05"/>
+<path d="M16.475,10.458c0,1.883,0.792,3.58,2.058,4.79h2.731 V5.668h-2.731C17.267,6.876,16.475,8.574,16.475,10.458z" fill="url(#SVGID_12_)" fill-opacity="0.05" stroke-opacity="0.05"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-2174.9473" x2="-2174.9473" y1="3223.5195" y2="3214.0898">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#303030"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#303030"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
-<path d="M16.842,10.458c0,1.919,0.87,3.64,2.236,4.79h2.186 V5.668h-2.186C17.712,6.817,16.842,8.537,16.842,10.458z" enable-background="new " fill="url(#SVGID_13_)" opacity="0.1"/>
+<path d="M16.842,10.458c0,1.919,0.87,3.64,2.236,4.79h2.186 V5.668h-2.186C17.712,6.817,16.842,8.537,16.842,10.458z" fill="url(#SVGID_13_)" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-2169.0527" x2="-2169.0527" y1="3218.874" y2="3212.231">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#303030"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#303030"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
-<path d="M28.985,13.515C29,11.735,29,10.437,29,10.437 s-2.701-0.384-4.631,0.386c-1.93,0.769-3.475,4.616-3.475,4.616s0.202,0.571,0.512,1.422c0.543,0.144,1.112,0.229,1.698,0.229 C25.659,17.089,27.875,15.636,28.985,13.515z" enable-background="new " fill="url(#SVGID_14_)" opacity="0.1"/>
+<path d="M28.985,13.515C29,11.735,29,10.437,29,10.437 s-2.701-0.384-4.631,0.386c-1.93,0.769-3.475,4.616-3.475,4.616s0.202,0.571,0.512,1.422c0.543,0.144,1.112,0.229,1.698,0.229 C25.659,17.089,27.875,15.636,28.985,13.515z" fill="url(#SVGID_14_)" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-2169.0527" x2="-2169.0527" y1="3218.877" y2="3212.5967">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#303030"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#303030"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
-<path d="M28.991,12.575C29,11.297,29,10.437,29,10.437 s-2.701-0.384-4.631,0.386c-1.93,0.769-3.475,4.616-3.475,4.616s0.138,0.39,0.359,1.001c0.586,0.182,1.208,0.281,1.85,0.281 C25.815,16.721,28.12,14.988,28.991,12.575z" enable-background="new " fill="url(#SVGID_15_)" opacity="0.2"/>
+<path d="M28.991,12.575C29,11.297,29,10.437,29,10.437 s-2.701-0.384-4.631,0.386c-1.93,0.769-3.475,4.616-3.475,4.616s0.138,0.39,0.359,1.001c0.586,0.182,1.208,0.281,1.85,0.281 C25.815,16.721,28.12,14.988,28.991,12.575z" fill="url(#SVGID_15_)" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-2170.8945" x2="-2170.8945" y1="3224.4238" y2="3213.1809">
- <stop offset="0.0424" style="stop-color:#E9F0F2"/>
- <stop offset="0.4" style="stop-color:#D4D9DB"/>
- <stop offset="0.7333" style="stop-color:#B0BCBF"/>
- <stop offset="1" style="stop-color:#D0DADE"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.0424" style="stop-color:#E9F0F2"/>
+<stop offset="0.4" style="stop-color:#D4D9DB"/>
+<stop offset="0.7333" style="stop-color:#B0BCBF"/>
+<stop offset="1" style="stop-color:#D0DADE"/>
</linearGradient>
<path d="M23.104,4.747c3.154,0,5.713,2.557,5.713,5.71c0,3.155-2.559,5.71-5.713,5.71 c-3.152,0-5.709-2.556-5.709-5.71C17.395,7.304,19.952,4.747,23.104,4.747z" fill="url(#SVGID_16_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="-2170.8945" x2="-2170.8945" y1="3224.6045" y2="3212.9993">
- <stop offset="0.0424" style="stop-color:#F6FDFF"/>
- <stop offset="0.4" style="stop-color:#E6EBED"/>
- <stop offset="0.7333" style="stop-color:#B0BCBF"/>
- <stop offset="1" style="stop-color:#D0DADE"/>
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="0.0424" style="stop-color:#F6FDFF"/>
+<stop offset="0.4" style="stop-color:#E6EBED"/>
+<stop offset="0.7333" style="stop-color:#B0BCBF"/>
+<stop offset="1" style="stop-color:#D0DADE"/>
</linearGradient>
<path d="M23.104,4.563c-3.254,0-5.894,2.64-5.894,5.895c0,3.254,2.64,5.894,5.894,5.894 c3.258,0,5.896-2.64,5.896-5.894C29,7.202,26.362,4.563,23.104,4.563z M23.104,15.984c-3.046,0-5.525-2.479-5.525-5.526 s2.479-5.526,5.525-5.526c3.051,0,5.527,2.479,5.527,5.526S26.155,15.984,23.104,15.984z" fill="url(#SVGID_17_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="-2187.106" x2="-2187.106" y1="3221.9912" y2="3215.072">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#303030"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#303030"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
-<path d="M6.58,14.142c-0.437,0-0.79-0.355-0.79-0.791v-1.419 H4.369c-0.436,0-0.791-0.354-0.791-0.791v-0.683c0-0.436,0.355-0.79,0.791-0.79H5.79V8.299c0-0.435,0.354-0.789,0.79-0.789h0.683 c0.437,0,0.791,0.354,0.791,0.789v1.369h1.419c0.438,0,0.737,0.354,0.737,0.79v0.683c0,0.437-0.3,0.791-0.737,0.791H8.054v1.419 c0,0.436-0.354,0.791-0.791,0.791H6.58z" enable-background="new " fill="url(#SVGID_18_)" opacity="0.4"/>
+<path d="M6.58,14.142c-0.437,0-0.79-0.355-0.79-0.791v-1.419 H4.369c-0.436,0-0.791-0.354-0.791-0.791v-0.683c0-0.436,0.355-0.79,0.791-0.79H5.79V8.299c0-0.435,0.354-0.789,0.79-0.789h0.683 c0.437,0,0.791,0.354,0.791,0.789v1.369h1.419c0.438,0,0.737,0.354,0.737,0.79v0.683c0,0.437-0.3,0.791-0.737,0.791H8.054v1.419 c0,0.436-0.354,0.791-0.791,0.791H6.58z" fill="url(#SVGID_18_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="-2187.106" x2="-2187.106" y1="3222.3604" y2="3215.4402">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#666666"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#666666"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
<path d="M6.58,13.773c-0.437,0-0.79-0.354-0.79-0.79v-1.421H4.369c-0.436,0-0.791-0.354-0.791-0.79V10.09 c0-0.436,0.355-0.79,0.791-0.79H5.79V7.931c0-0.435,0.354-0.79,0.79-0.79h0.683c0.437,0,0.791,0.355,0.791,0.79V9.3h1.419 c0.438,0,0.737,0.354,0.737,0.79v0.683c0,0.436-0.3,0.79-0.737,0.79H8.054v1.421c0,0.436-0.354,0.79-0.791,0.79H6.58z" fill="url(#SVGID_19_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="-2187.1055" x2="-2187.1055" y1="3221.9668" y2="3215.8157">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.3879" style="stop-color:#7B7E80"/>
- <stop offset="0.7152" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#63686A"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.3879" style="stop-color:#7B7E80"/>
+<stop offset="0.7152" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#63686A"/>
</linearGradient>
<path d="M9.473,9.668H7.685V7.931c0-0.232-0.187-0.421-0.421-0.421H6.58c-0.233,0-0.422,0.188-0.422,0.421 v1.737H4.369c-0.234,0-0.422,0.188-0.422,0.422v0.683c0,0.233,0.188,0.422,0.422,0.422h1.789v1.789c0,0.232,0.188,0.422,0.422,0.422 h0.684c0.234,0,0.421-0.189,0.421-0.422v-1.789h1.788c0.234,0,0.369-0.189,0.369-0.422V10.09C9.842,9.856,9.707,9.668,9.473,9.668z" fill="url(#SVGID_20_)"/>
-<path d="M4.369,10.036h1.789V9.668H4.369c-0.234,0-0.422,0.188-0.422,0.422v0.368 C3.947,10.225,4.135,10.036,4.369,10.036z" fill="#FFFFFF" opacity="0.75"/>
-<path d="M6.58,7.878h0.683c0.235,0,0.422,0.189,0.422,0.421V7.931c0-0.232-0.187-0.421-0.422-0.421 H6.58c-0.234,0-0.422,0.188-0.422,0.421v0.368C6.158,8.067,6.347,7.878,6.58,7.878z" fill="#FFFFFF" opacity="0.75"/>
-<path d="M9.473,9.668H7.685v0.368h1.788c0.234,0,0.369,0.189,0.369,0.422V10.09 C9.842,9.856,9.707,9.668,9.473,9.668z" fill="#FFFFFF" opacity="0.75"/>
+<path d="M4.369,10.036h1.789V9.668H4.369c-0.234,0-0.422,0.188-0.422,0.422v0.368 C3.947,10.225,4.135,10.036,4.369,10.036z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M6.58,7.878h0.683c0.235,0,0.422,0.189,0.422,0.421V7.931c0-0.232-0.187-0.421-0.422-0.421 H6.58c-0.234,0-0.422,0.188-0.422,0.421v0.368C6.158,8.067,6.347,7.878,6.58,7.878z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M9.473,9.668H7.685v0.368h1.788c0.234,0,0.369,0.189,0.369,0.422V10.09 C9.842,9.856,9.707,9.668,9.473,9.668z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="-2168.3159" x2="-2168.3159" y1="3219.7852" y2="3217.5706">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#303030"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#303030"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
-<path d="M25.682,11.932c-0.607,0-1.104-0.497-1.104-1.106 c0-0.608,0.496-1.104,1.104-1.104c0.611,0,1.107,0.496,1.107,1.104C26.79,11.435,26.293,11.932,25.682,11.932L25.682,11.932z" enable-background="new " fill="url(#SVGID_21_)" opacity="0.4"/>
+<path d="M25.682,11.932c-0.607,0-1.104-0.497-1.104-1.106 c0-0.608,0.496-1.104,1.104-1.104c0.611,0,1.107,0.496,1.107,1.104C26.79,11.435,26.293,11.932,25.682,11.932L25.682,11.932z" fill="url(#SVGID_21_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="-2168.3159" x2="-2168.3159" y1="3220.0801" y2="3217.8655">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#666666"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#666666"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
<path d="M25.682,11.637c-0.607,0-1.104-0.498-1.104-1.106c0-0.61,0.496-1.104,1.104-1.104 c0.611,0,1.107,0.495,1.107,1.104C26.79,11.141,26.293,11.637,25.682,11.637L25.682,11.637z" fill="url(#SVGID_22_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="-2168.3159" x2="-2168.3159" y1="3219.6377" y2="3218.1604">
- <stop offset="0" style="stop-color:#F0653D"/>
- <stop offset="0.103" style="stop-color:#C94832"/>
- <stop offset="0.7515" style="stop-color:#89181F"/>
- <stop offset="1" style="stop-color:#961A22"/>
+<stop offset="0" style="stop-color:#F0653D"/>
+<stop offset="0.103" style="stop-color:#C94832"/>
+<stop offset="0.7515" style="stop-color:#89181F"/>
+<stop offset="1" style="stop-color:#961A22"/>
</linearGradient>
<circle cx="25.682" cy="10.531" fill="url(#SVGID_23_)" r="0.737"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="-2173.4736" x2="-2173.4736" y1="3219.6211" y2="3217.4065">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#303030"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#303030"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
-<path d="M20.525,11.932c-0.608,0-1.104-0.497-1.104-1.106 c0-0.608,0.496-1.104,1.104-1.104c0.609,0,1.106,0.496,1.106,1.104C21.631,11.435,21.135,11.932,20.525,11.932L20.525,11.932z" enable-background="new " fill="url(#SVGID_24_)" opacity="0.4"/>
+<path d="M20.525,11.932c-0.608,0-1.104-0.497-1.104-1.106 c0-0.608,0.496-1.104,1.104-1.104c0.609,0,1.106,0.496,1.106,1.104C21.631,11.435,21.135,11.932,20.525,11.932L20.525,11.932z" fill="url(#SVGID_24_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="-2173.4736" x2="-2173.4736" y1="3219.916" y2="3217.7014">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#666666"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#666666"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
<path d="M20.525,11.637c-0.608,0-1.104-0.498-1.104-1.106c0-0.61,0.496-1.104,1.104-1.104 c0.609,0,1.106,0.495,1.106,1.104C21.631,11.141,21.135,11.637,20.525,11.637L20.525,11.637z" fill="url(#SVGID_25_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="-2173.4741" x2="-2173.4741" y1="3219.5283" y2="3218.051">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.7394" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.7394" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</linearGradient>
<circle cx="20.525" cy="10.531" fill="url(#SVGID_26_)" r="0.737"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="-2170.895" x2="-2170.895" y1="3222.2549" y2="3220.0405">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#303030"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#303030"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
-<path d="M23.104,9.352C22.495,9.352,22,8.857,22,8.247 c0-0.61,0.494-1.106,1.104-1.106s1.105,0.496,1.105,1.106C24.209,8.855,23.713,9.352,23.104,9.352L23.104,9.352z" enable-background="new " fill="url(#SVGID_27_)" opacity="0.4"/>
+<path d="M23.104,9.352C22.495,9.352,22,8.857,22,8.247 c0-0.61,0.494-1.106,1.104-1.106s1.105,0.496,1.105,1.106C24.209,8.855,23.713,9.352,23.104,9.352L23.104,9.352z" fill="url(#SVGID_27_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="-2170.895" x2="-2170.895" y1="3222.6221" y2="3220.4084">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#666666"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#666666"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
<path d="M23.104,8.984C22.495,8.984,22,8.488,22,7.878c0-0.609,0.494-1.104,1.104-1.104 s1.105,0.496,1.105,1.104C24.209,8.488,23.713,8.984,23.104,8.984L23.104,8.984z" fill="url(#SVGID_28_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="-2170.896" x2="-2170.896" y1="3222.2158" y2="3220.7397">
- <stop offset="0" style="stop-color:#FEEFA7"/>
- <stop offset="0.5091" style="stop-color:#FFC501"/>
- <stop offset="1" style="stop-color:#F6A800"/>
+<stop offset="0" style="stop-color:#FEEFA7"/>
+<stop offset="0.5091" style="stop-color:#FFC501"/>
+<stop offset="1" style="stop-color:#F6A800"/>
</linearGradient>
<circle cx="23.104" cy="7.878" fill="url(#SVGID_29_)" r="0.737"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="-2170.895" x2="-2170.895" y1="3216.9248" y2="3214.7102">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#303030"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#303030"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
-<path d="M23.104,14.51c-0.609,0-1.104-0.496-1.104-1.104 c0-0.61,0.494-1.106,1.104-1.106s1.105,0.496,1.105,1.106C24.209,14.014,23.713,14.51,23.104,14.51L23.104,14.51z" enable-background="new " fill="url(#SVGID_30_)" opacity="0.4"/>
+<path d="M23.104,14.51c-0.609,0-1.104-0.496-1.104-1.104 c0-0.61,0.494-1.106,1.104-1.106s1.105,0.496,1.105,1.106C24.209,14.014,23.713,14.51,23.104,14.51L23.104,14.51z" fill="url(#SVGID_30_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="-2170.895" x2="-2170.895" y1="3217.292" y2="3215.0784">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#666666"/>
- <stop offset="0.7212" style="stop-color:#141414"/>
- <stop offset="1" style="stop-color:#262626"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#666666"/>
+<stop offset="0.7212" style="stop-color:#141414"/>
+<stop offset="1" style="stop-color:#262626"/>
</linearGradient>
<path d="M23.104,14.142c-0.609,0-1.104-0.497-1.104-1.106c0-0.61,0.494-1.104,1.104-1.104 s1.105,0.495,1.105,1.104C24.209,13.645,23.713,14.142,23.104,14.142L23.104,14.142z" fill="url(#SVGID_31_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="-2170.896" x2="-2170.896" y1="3216.9424" y2="3215.4653">
- <stop offset="0" style="stop-color:#96E9FA"/>
- <stop offset="0.7333" style="stop-color:#005BCC"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="0.7333" style="stop-color:#005BCC"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</linearGradient>
<circle cx="23.104" cy="13.036" fill="url(#SVGID_32_)" r="0.737"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_office.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_office.svg Thu May 27 13:10:59 2010 +0300
@@ -1,354 +1,226 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="59.999" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2163.8232" x2="-2163.8232" y1="4093.1855" y2="4081.4014">
- <stop offset="0" style="stop-color:#D49757"/>
- <stop offset="0.6182" style="stop-color:#8A4117"/>
- <stop offset="1" style="stop-color:#702200"/>
+<stop offset="0" style="stop-color:#D49757"/>
+<stop offset="0.6182" style="stop-color:#8A4117"/>
+<stop offset="1" style="stop-color:#702200"/>
</linearGradient>
<path d="M53.646,12.358c0,0-22.377,0-22.842,0c-0.463,0-1.002-0.202-1.332-1.01 c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697c-0.824,0-1.428,0.7-1.428,1.562v14.438h49.814 v-9.968C55.084,12.989,54.473,12.358,53.646,12.358z" fill="url(#SVGID_1_)"/>
-<path d="M53.646,12.358c0,0-22.377,0-22.842,0 c-0.463,0-1.002-0.202-1.332-1.01c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697 c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.576c0.941,0,1.225,0.584,1.436,1.236 c0,0,0.557,1.591,0.764,2.296c0.33,0.806,0.869,1.011,1.332,1.011c0.465,0,22.842,0,22.842,0c0.826,0,1.439,0.628,1.439,1.489 v-0.728C55.084,12.989,54.473,12.358,53.646,12.358z" enable-background="new " fill="#FFF7F5" opacity="0.5"/>
+<path d="M53.646,12.358c0,0-22.377,0-22.842,0 c-0.463,0-1.002-0.202-1.332-1.01c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697 c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.576c0.941,0,1.225,0.584,1.436,1.236 c0,0,0.557,1.591,0.764,2.296c0.33,0.806,0.869,1.011,1.332,1.011c0.465,0,22.842,0,22.842,0c0.826,0,1.439,0.628,1.439,1.489 v-0.728C55.084,12.989,54.473,12.358,53.646,12.358z" fill="#FFF7F5" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect height="8.728" width="46.906" x="6.73" y="15.817"/>
<rect fill="#F2F2F2" height="7.271" width="45.451" x="7.457" y="16.545"/>
-<polygon enable-background="new " fill="#231F20" opacity="0.4" points="55.084,22.362 5.27,22.362 5.27,21.636 55.084,21.636 "/>
-<polygon enable-background="new " fill="#231F20" opacity="0.15" points="55.084,21.636 5.27,21.636 5.27,20.908 55.084,20.908 "/>
-<polygon enable-background="new " fill="#231F20" opacity="0.05" points="55.084,20.908 5.27,20.908 5.27,20.182 55.084,20.182 "/>
+<polygon fill="#231F20" fill-opacity="0.4" points="55.084,22.362 5.27,22.362 5.27,21.636 55.084,21.636 " stroke-opacity="0.4"/>
+<polygon fill="#231F20" fill-opacity="0.15" points="55.084,21.636 5.27,21.636 5.27,20.908 55.084,20.908 " stroke-opacity="0.15"/>
+<polygon fill="#231F20" fill-opacity="0.05" points="55.084,20.908 5.27,20.908 5.27,20.182 55.084,20.182 " stroke-opacity="0.05"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="4048.7861" y2="4078.6064">
- <stop offset="0.0303" style="stop-color:#C79101"/>
- <stop offset="0.0364" style="stop-color:#FEEFA7"/>
- <stop offset="0.3273" style="stop-color:#FEE570"/>
- <stop offset="0.6727" style="stop-color:#F0C12B"/>
- <stop offset="1" style="stop-color:#E6A501"/>
+<stop offset="0" style="stop-color:#C79101"/>
+<stop offset="0.0303" style="stop-color:#C79101"/>
+<stop offset="0.0364" style="stop-color:#FEEFA7"/>
+<stop offset="0.3273" style="stop-color:#FEE570"/>
+<stop offset="0.6727" style="stop-color:#F0C12B"/>
+<stop offset="1" style="stop-color:#E6A501"/>
</linearGradient>
<path d="M56.273,22.362H3.727C2.191,22.362,2,24.065,2,24.065l2.549,25.934 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184L58,24.065 C58,24.065,57.809,22.362,56.273,22.362z" fill="url(#SVGID_2_)"/>
<path d="M3.727,23.091h52.547c1.178,0,1.563,0.995,1.68,1.464L58,24.065c0,0-0.191-1.703-1.727-1.703H3.727 C2.191,22.362,2,24.065,2,24.065l0.047,0.489C2.164,24.086,2.549,23.091,3.727,23.091z" fill="#FCF3D0"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0166" x2="-2164.0166" y1="4048.7861" y2="4053.1504">
- <stop offset="0" style="stop-color:#FCDA5E"/>
- <stop offset="1" style="stop-color:#FFB418"/>
+<stop offset="0" style="stop-color:#FCDA5E"/>
+<stop offset="1" style="stop-color:#FFB418"/>
</linearGradient>
-<path d="M4.334,47.818l0.215,2.181 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181H4.334z" enable-background="new " fill="url(#SVGID_3_)" opacity="0.25"/>
+<path d="M4.334,47.818l0.215,2.181 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181H4.334z" fill="url(#SVGID_3_)" fill-opacity="0.25" stroke-opacity="0.25"/>
<rect fill="none" height="59.999" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="14.94" x2="14.94" y1="3.354" y2="10.7">
-
<stop offset="0" stop-color="#6B6B6B"/>
-
<stop offset="0.7697" stop-color="#5E5E5E"/>
-
<stop offset="1" stop-color="#363636"/>
-
</linearGradient>
<path d="M24.17,10.71v-6.744c0.011-0.331-0.264-0.601-0.603-0.601h-17.24c-0.338,0-0.613,0.27-0.613,0.601v6.747h18.45z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="14.94" x2="14.94" y1="4.357" y2="9.705">
-
<stop offset="0" stop-color="#E6E6E6"/>
-
<stop offset="0.8182" stop-color="#7C7E87"/>
-
<stop offset="1" stop-color="#94979D"/>
-
</linearGradient>
<rect fill="url(#SVGID_2__)" height="5.348" width="16.45" x="6.72" y="4.365"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="14.94" x2="14.94" y1="4.906" y2="9.21">
-
<stop offset="0" stop-color="#686C6E"/>
-
<stop offset="1" stop-color="#CAD3D6"/>
-
</linearGradient>
<path d="M7.863,9.182c-0.338,0-0.612-0.28-0.612-0.625v-3.036c0-0.346,0.274-0.625,0.612-0.625h14.16c0.338,0,0.613,0.279,0.613,0.625v3.035c0,0.345-0.275,0.625-0.613,0.625h-14.16z" fill="url(#SVGID_3__)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="14.94" x2="14.94" y1="-0.0059" y2="10.68">
-
<stop offset="0" stop-color="#45E8FF"/>
-
<stop offset="0.1455" stop-color="#45E8FF"/>
-
<stop offset="0.5576" stop-color="#30A4D5"/>
-
<stop offset="0.8727" stop-color="#1347BA"/>
-
<stop offset="1" stop-color="#1C65C3"/>
-
</linearGradient>
<rect fill="url(#SVGID_4_)" height="3.035" width="14.16" x="7.863" y="5.521"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.94" x2="14.94" y1="1.943" y2="9.68">
-
<stop offset="0" stop-color="#45E8FF"/>
-
<stop offset="0.1455" stop-color="#45E8FF"/>
-
<stop offset="0.5576" stop-color="#4FADD5"/>
-
<stop offset="0.8727" stop-color="#1347BA"/>
-
<stop offset="1" stop-color="#1C65C3"/>
-
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="7.863,6.937,22.02,6.413,22.02,5.521,7.863,5.521"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.94" x2="14.94" y1="10.47" y2="25.65">
-
<stop offset="0" stop-color="#6B6B6B"/>
-
<stop offset="0.7212" stop-color="#363636"/>
-
<stop offset="0.9636" stop-color="#5E5E5E"/>
-
<stop offset="1" stop-color="#5E5E5E"/>
-
</linearGradient>
<path d="M5.72,10.67v14.39c0,0.338,0.274,0.613,0.612,0.613h17.22c0.339,0,0.612-0.275,0.612-0.613v-14.39h-18.45z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.94" x2="14.94" y1="11.49" y2="24.65">
-
<stop offset="0" stop-color="#E6E6E6"/>
-
<stop offset="0.8182" stop-color="#7C7E87"/>
-
<stop offset="1" stop-color="#94979D"/>
-
</linearGradient>
<rect fill="url(#SVGID_7_)" height="13" width="16.45" x="6.72" y="11.67"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="9.716" x2="9.716" y1="12.96" y2="17.11">
-
<stop offset="0" stop-color="#646263"/>
-
<stop offset="0.2" stop-color="#4D4D4D"/>
-
<stop offset="0.7212" stop-color="#242424"/>
-
<stop offset="1" stop-color="#373737"/>
-
</linearGradient>
<path d="M8.644,17.01c-0.512,0-0.928-0.416-0.928-0.928v-2.144c0-0.512,0.416-0.928,0.928-0.928h2.145c0.512,0,0.928,0.416,0.928,0.928v2.144c0,0.512-0.416,0.928-0.928,0.928h-2.146z" fill="url(#SVGID_8_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<path d="M10.79,17.01h-2.146c-0.512,0-0.928-0.416-0.928-0.928v0.656c0,0.512,0.416,0.928,0.928,0.928h2.145c0.512,0,0.928-0.416,0.928-0.928v-0.656c0,0.51-0.42,0.93-0.93,0.93z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="9.716" x2="9.716" y1="13.47" y2="16.59">
-
<stop offset="0" stop-color="#E4EBED"/>
-
<stop offset="0.2606" stop-color="#D6DCDE"/>
-
<stop offset="0.6606" stop-color="#B6C3C7"/>
-
<stop offset="0.9758" stop-color="#D2D9DB"/>
-
<stop offset="1" stop-color="#D2D9DB"/>
-
</linearGradient>
<path d="M11.22,16.08c0,0.234-0.192,0.428-0.428,0.428h-2.146c-0.235,0-0.428-0.193-0.428-0.428v-2.144c0-0.236,0.192-0.428,0.428-0.428h2.145c0.235,0,0.428,0.191,0.428,0.428v2.142z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="14.72" x2="14.72" y1="12.96" y2="17.11">
-
<stop offset="0" stop-color="#646263"/>
-
<stop offset="0.2" stop-color="#4D4D4D"/>
-
<stop offset="0.7212" stop-color="#242424"/>
-
<stop offset="1" stop-color="#373737"/>
-
</linearGradient>
<path d="M13.64,17.01c-0.512,0-0.928-0.416-0.928-0.928v-2.144c0-0.512,0.416-0.928,0.928-0.928h2.145c0.512,0,0.928,0.416,0.928,0.928v2.144c0,0.512-0.416,0.928-0.928,0.928h-2.136z" fill="url(#SVGID_10_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<path d="M15.79,17.01h-2.145c-0.512,0-0.928-0.416-0.928-0.928v0.656c0,0.512,0.416,0.928,0.928,0.928h2.145c0.512,0,0.928-0.416,0.928-0.928v-0.656c0.01,0.51-0.41,0.93-0.92,0.93z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="14.72" x2="14.72" y1="13.47" y2="16.59">
-
<stop offset="0" stop-color="#E4EBED"/>
-
<stop offset="0.2606" stop-color="#D6DCDE"/>
-
<stop offset="0.6606" stop-color="#B6C3C7"/>
-
<stop offset="0.9758" stop-color="#D2D9DB"/>
-
<stop offset="1" stop-color="#D2D9DB"/>
-
</linearGradient>
<path d="M16.22,16.08c0,0.234-0.192,0.428-0.428,0.428h-2.145c-0.235,0-0.428-0.193-0.428-0.428v-2.144c0-0.236,0.192-0.428,0.428-0.428h2.145c0.235,0,0.428,0.191,0.428,0.428v2.142z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="19.72" x2="19.72" y1="12.96" y2="17.11">
-
<stop offset="0" stop-color="#646263"/>
-
<stop offset="0.2" stop-color="#4D4D4D"/>
-
<stop offset="0.7212" stop-color="#242424"/>
-
<stop offset="1" stop-color="#373737"/>
-
</linearGradient>
<path d="M18.64,17.01c-0.512,0-0.928-0.416-0.928-0.928v-2.144c0-0.512,0.416-0.928,0.928-0.928h2.145c0.512,0,0.928,0.416,0.928,0.928v2.144c0,0.512-0.416,0.928-0.928,0.928h-2.136z" fill="url(#SVGID_12_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<path d="M20.79,17.01h-2.145c-0.512,0-0.928-0.416-0.928-0.928v0.656c0,0.512,0.416,0.928,0.928,0.928h2.145c0.512,0,0.928-0.416,0.928-0.928v-0.656c0.01,0.51-0.41,0.93-0.92,0.93z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="19.72" x2="19.72" y1="13.47" y2="16.59">
-
<stop offset="0" stop-color="#A0A3A6"/>
-
<stop offset="0.1333" stop-color="#838688"/>
-
<stop offset="0.2606" stop-color="#7B7E80"/>
-
<stop offset="0.6606" stop-color="#474B4D"/>
-
<stop offset="1" stop-color="#707577"/>
-
</linearGradient>
<path d="M21.22,16.08c0,0.234-0.192,0.428-0.428,0.428h-2.145c-0.235,0-0.428-0.193-0.428-0.428v-2.144c0-0.236,0.192-0.428,0.428-0.428h2.145c0.235,0,0.428,0.191,0.428,0.428v2.142z" fill="url(#SVGID_13_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="9.716" x2="9.716" y1="18.63" y2="22.78">
-
<stop offset="0" stop-color="#646263"/>
-
<stop offset="0.2" stop-color="#4D4D4D"/>
-
<stop offset="0.7212" stop-color="#242424"/>
-
<stop offset="1" stop-color="#373737"/>
-
</linearGradient>
<path d="M8.644,22.68c-0.512,0-0.928-0.416-0.928-0.928v-2.145c0-0.512,0.416-0.928,0.928-0.928h2.145c0.512,0,0.928,0.416,0.928,0.928v2.145c0,0.512-0.416,0.928-0.928,0.928h-2.146z" fill="url(#SVGID_14_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<path d="M10.79,22.68h-2.146c-0.512,0-0.928-0.416-0.928-0.928v0.656c0,0.512,0.416,0.928,0.928,0.928h2.145c0.512,0,0.928-0.416,0.928-0.928v-0.656c0,0.51-0.42,0.93-0.93,0.93z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="9.716" x2="9.716" y1="19.14" y2="22.25">
-
<stop offset="0" stop-color="#E4EBED"/>
-
<stop offset="0.2606" stop-color="#D6DCDE"/>
-
<stop offset="0.6606" stop-color="#B6C3C7"/>
-
<stop offset="0.9758" stop-color="#D2D9DB"/>
-
<stop offset="1" stop-color="#D2D9DB"/>
-
</linearGradient>
<path d="M11.22,21.75c0,0.236-0.192,0.428-0.428,0.428h-2.146c-0.235,0-0.428-0.191-0.428-0.428v-2.145c0-0.234,0.192-0.428,0.428-0.428h2.145c0.235,0,0.428,0.193,0.428,0.428v2.148z" fill="url(#SVGID_15_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="14.72" x2="14.72" y1="18.63" y2="22.78">
-
<stop offset="0" stop-color="#646263"/>
-
<stop offset="0.2" stop-color="#4D4D4D"/>
-
<stop offset="0.7212" stop-color="#242424"/>
-
<stop offset="1" stop-color="#373737"/>
-
</linearGradient>
<path d="M13.64,22.68c-0.512,0-0.928-0.416-0.928-0.928v-2.145c0-0.512,0.416-0.928,0.928-0.928h2.145c0.512,0,0.928,0.416,0.928,0.928v2.145c0,0.512-0.416,0.928-0.928,0.928h-2.136z" fill="url(#SVGID_16_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<path d="M15.79,22.68h-2.145c-0.512,0-0.928-0.416-0.928-0.928v0.656c0,0.512,0.416,0.928,0.928,0.928h2.145c0.512,0,0.928-0.416,0.928-0.928v-0.656c0.01,0.51-0.41,0.93-0.92,0.93z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="14.72" x2="14.72" y1="19.14" y2="22.25">
-
<stop offset="0" stop-color="#E4EBED"/>
-
<stop offset="0.2606" stop-color="#D6DCDE"/>
-
<stop offset="0.6606" stop-color="#B6C3C7"/>
-
<stop offset="0.9758" stop-color="#D2D9DB"/>
-
<stop offset="1" stop-color="#D2D9DB"/>
-
</linearGradient>
<path d="M16.22,21.75c0,0.236-0.192,0.428-0.428,0.428h-2.145c-0.235,0-0.428-0.191-0.428-0.428v-2.145c0-0.234,0.192-0.428,0.428-0.428h2.145c0.235,0,0.428,0.193,0.428,0.428v2.148z" fill="url(#SVGID_17_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="19.72" x2="19.72" y1="18.63" y2="22.78">
-
<stop offset="0" stop-color="#646263"/>
-
<stop offset="0.2" stop-color="#4D4D4D"/>
-
<stop offset="0.7212" stop-color="#242424"/>
-
<stop offset="1" stop-color="#373737"/>
-
</linearGradient>
<path d="M18.64,22.68c-0.512,0-0.928-0.416-0.928-0.928v-2.145c0-0.512,0.416-0.928,0.928-0.928h2.145c0.512,0,0.928,0.416,0.928,0.928v2.145c0,0.512-0.416,0.928-0.928,0.928h-2.136z" fill="url(#SVGID_18_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<path d="M20.79,22.68h-2.145c-0.512,0-0.928-0.416-0.928-0.928v0.656c0,0.512,0.416,0.928,0.928,0.928h2.145c0.512,0,0.928-0.416,0.928-0.928v-0.656c0.01,0.51-0.41,0.93-0.92,0.93z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="19.72" x2="19.72" y1="19.14" y2="22.25">
-
<stop offset="0" stop-color="#F0653D"/>
-
<stop offset="0.103" stop-color="#C94832"/>
-
<stop offset="0.7515" stop-color="#89181F"/>
-
<stop offset="1" stop-color="#961A22"/>
-
</linearGradient>
<path d="M21.22,21.75c0,0.236-0.192,0.428-0.428,0.428h-2.145c-0.235,0-0.428-0.191-0.428-0.428v-2.145c0-0.234,0.192-0.428,0.428-0.428h2.145c0.235,0,0.428,0.193,0.428,0.428v2.148z" fill="url(#SVGID_19_)"/>
<polygon fill-opacity="0.35" fill-rule="evenodd" points="24.17,10.71,24.17,10.67,24.17,9.891,15.62,18.44,16,18.81,10.34,24.48,10.47,24.62,9.831,24.63,9.57,25.67,16.5,25.67,19.68,22.5,20.06,22.87,24.17,18.76" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 327.5859 -136.9729)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="-109.7" x2="-105.4" y1="322.8" y2="322.8">
-
<stop offset="0" stop-color="#262626"/>
-
<stop offset="0.3091" stop-color="#A2A2A2"/>
-
<stop offset="0.8606" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</linearGradient>
<path d="M27.23,11.26c-0.834-0.834-1.765-1.257-2.077-0.943l-7.364,7.362,3.021,3.021,7.364-7.363c0.32-0.31-0.11-1.24-0.94-2.08z" fill="url(#SVGID_20_)" fill-rule="evenodd"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 327.5859 -136.9729)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="-109.2" x2="-106" y1="333.2" y2="333.2">
-
<stop offset="0" stop-color="#CECECE"/>
-
<stop offset="0.3818" stop-color="#FFFFFF"/>
-
<stop offset="0.7455" stop-color="#8B8B8B"/>
-
<stop offset="1" stop-color="#B2B2B2"/>
-
</linearGradient>
<polygon fill="url(#SVGID_21_)" fill-rule="evenodd" points="14.39,26.37,12.12,24.1,17.41,18.81,19.68,21.08"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.0471 -0.0471 72.2638 118.3492)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="-109.2" x2="-106" y1="358.1" y2="358.1">
-
<stop offset="0" stop-color="#B2B2B2"/>
-
<stop offset="0.3818" stop-color="#FFFFFF"/>
-
<stop offset="0.8" stop-color="#4D4D4D"/>
-
<stop offset="1" stop-color="#B2B2B2"/>
-
</linearGradient>
<polygon fill="url(#SVGID_22_)" fill-rule="evenodd" points="14.39,26.37,12.12,24.1,11.75,24.48,14.01,26.75"/>
<rect fill="#020202" fill-opacity="0.2" fill-rule="evenodd" height="0.534" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 19.772 -6.7045)" width="3.204" x="16.38" y="20.25"/>
<rect fill="#020202" fill-opacity="0.5" fill-rule="evenodd" height="0.534" stroke-opacity="0.5" transform="matrix(0.7068 0.7074 -0.7074 0.7068 19.6277 -7.0812)" width="3.205" x="16.75" y="19.87"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 327.5859 -136.9729)" gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="-109.2" x2="-106" y1="339.6" y2="339.6">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#E7EDF0"/>
-
<stop offset="0.7455" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<path d="M13.64,26.37l-0.756-0.756-0.755-0.754c-0.755,0.754-1.51,0.754-1.51,0.754l-0.756,3.021,3.021-0.756c0,0.01,0-0.75,0.76-1.5z" fill="url(#SVGID_23_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 327.5859 -136.9729)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="-109.7" x2="-105.4" y1="329" y2="329">
-
<stop offset="0" stop-color="#CECECE"/>
-
<stop offset="0.3818" stop-color="#FFFFFF"/>
-
<stop offset="0.7455" stop-color="#8B8B8B"/>
-
<stop offset="1" stop-color="#B2B2B2"/>
-
</linearGradient>
<polygon fill="url(#SVGID_24_)" fill-rule="evenodd" points="20.06,21.46,17.04,18.44,17.79,17.68,20.81,20.7"/>
<path d="M11.22,25.46l1.807,1.807c0.059-0.148,0.146-0.313,0.267-0.488l-1.584-1.584c-0.18,0.12-0.35,0.21-0.5,0.26z" fill="#020202" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
<path d="M13.3,26.78c0.094-0.135,0.2-0.273,0.341-0.414l-0.756-0.756-0.755-0.754c-0.141,0.139-0.279,0.246-0.414,0.34l1.59,1.58z" fill="#020202" fill-opacity="0.3" fill-rule="evenodd" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 327.5859 -136.9729)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="-108.1" x2="-107" y1="338.8" y2="338.8">
-
<stop offset="0" stop-color="#666666"/>
-
<stop offset="0.3455" stop-color="#969696"/>
-
<stop offset="0.7818" stop-color="#3B3B3B"/>
-
<stop offset="1" stop-color="#2B2B2B"/>
-
</linearGradient>
<path d="M12.31,26.94c-0.104,0.104-0.357,0.02-0.565-0.189-0.209-0.209-0.293-0.461-0.189-0.566,0.104-0.104,0.358-0.02,0.566,0.189,0.21,0.21,0.3,0.46,0.19,0.57z" fill="url(#SVGID_25_)" fill-rule="evenodd"/>
<rect fill="none" fill-rule="evenodd" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_user.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_user.svg Thu May 27 13:10:59 2010 +0300
@@ -1,91 +1,90 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="59.999" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2163.8232" x2="-2163.8232" y1="4093.1855" y2="4081.4014">
- <stop offset="0" style="stop-color:#D49757"/>
- <stop offset="0.6182" style="stop-color:#8A4117"/>
- <stop offset="1" style="stop-color:#702200"/>
+<stop offset="0" style="stop-color:#D49757"/>
+<stop offset="0.6182" style="stop-color:#8A4117"/>
+<stop offset="1" style="stop-color:#702200"/>
</linearGradient>
<path d="M53.646,12.358c0,0-22.377,0-22.842,0c-0.463,0-1.002-0.202-1.332-1.01 c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697c-0.824,0-1.428,0.7-1.428,1.562v14.438h49.814 v-9.968C55.084,12.989,54.473,12.358,53.646,12.358z" fill="url(#SVGID_1_)"/>
-<path d="M53.646,12.358c0,0-22.377,0-22.842,0 c-0.463,0-1.002-0.202-1.332-1.01c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697 c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.576c0.941,0,1.225,0.584,1.436,1.236 c0,0,0.557,1.591,0.764,2.296c0.33,0.806,0.869,1.011,1.332,1.011c0.465,0,22.842,0,22.842,0c0.826,0,1.439,0.628,1.439,1.489 v-0.728C55.084,12.989,54.473,12.358,53.646,12.358z" enable-background="new " fill="#FFF7F5" opacity="0.5"/>
+<path d="M53.646,12.358c0,0-22.377,0-22.842,0 c-0.463,0-1.002-0.202-1.332-1.01c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697 c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.576c0.941,0,1.225,0.584,1.436,1.236 c0,0,0.557,1.591,0.764,2.296c0.33,0.806,0.869,1.011,1.332,1.011c0.465,0,22.842,0,22.842,0c0.826,0,1.439,0.628,1.439,1.489 v-0.728C55.084,12.989,54.473,12.358,53.646,12.358z" fill="#FFF7F5" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect height="8.728" width="46.906" x="6.73" y="15.817"/>
<rect fill="#F2F2F2" height="7.271" width="45.451" x="7.457" y="16.545"/>
-<polygon enable-background="new " fill="#231F20" opacity="0.4" points="55.084,22.362 5.27,22.362 5.27,21.636 55.084,21.636 "/>
-<polygon enable-background="new " fill="#231F20" opacity="0.15" points="55.084,21.636 5.27,21.636 5.27,20.908 55.084,20.908 "/>
-<polygon enable-background="new " fill="#231F20" opacity="0.05" points="55.084,20.908 5.27,20.908 5.27,20.182 55.084,20.182 "/>
+<polygon fill="#231F20" fill-opacity="0.4" points="55.084,22.362 5.27,22.362 5.27,21.636 55.084,21.636 " stroke-opacity="0.4"/>
+<polygon fill="#231F20" fill-opacity="0.15" points="55.084,21.636 5.27,21.636 5.27,20.908 55.084,20.908 " stroke-opacity="0.15"/>
+<polygon fill="#231F20" fill-opacity="0.05" points="55.084,20.908 5.27,20.908 5.27,20.182 55.084,20.182 " stroke-opacity="0.05"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="4048.7861" y2="4078.6064">
- <stop offset="0.0303" style="stop-color:#C79101"/>
- <stop offset="0.0364" style="stop-color:#FEEFA7"/>
- <stop offset="0.3273" style="stop-color:#FEE570"/>
- <stop offset="0.6727" style="stop-color:#F0C12B"/>
- <stop offset="1" style="stop-color:#E6A501"/>
+<stop offset="0" style="stop-color:#C79101"/>
+<stop offset="0.0303" style="stop-color:#C79101"/>
+<stop offset="0.0364" style="stop-color:#FEEFA7"/>
+<stop offset="0.3273" style="stop-color:#FEE570"/>
+<stop offset="0.6727" style="stop-color:#F0C12B"/>
+<stop offset="1" style="stop-color:#E6A501"/>
</linearGradient>
<path d="M56.273,22.362H3.727C2.191,22.362,2,24.065,2,24.065l2.549,25.934 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184L58,24.065 C58,24.065,57.809,22.362,56.273,22.362z" fill="url(#SVGID_2_)"/>
<path d="M3.727,23.091h52.547c1.178,0,1.563,0.995,1.68,1.464L58,24.065c0,0-0.191-1.703-1.727-1.703H3.727 C2.191,22.362,2,24.065,2,24.065l0.047,0.489C2.164,24.086,2.549,23.091,3.727,23.091z" fill="#FCF3D0"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0166" x2="-2164.0166" y1="4048.7861" y2="4053.1504">
- <stop offset="0" style="stop-color:#FCDA5E"/>
- <stop offset="1" style="stop-color:#FFB418"/>
+<stop offset="0" style="stop-color:#FCDA5E"/>
+<stop offset="1" style="stop-color:#FFB418"/>
</linearGradient>
-<path d="M4.334,47.818l0.215,2.181 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181H4.334z" enable-background="new " fill="url(#SVGID_3_)" opacity="0.25"/>
+<path d="M4.334,47.818l0.215,2.181 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181H4.334z" fill="url(#SVGID_3_)" fill-opacity="0.25" stroke-opacity="0.25"/>
<rect fill="none" height="59.999" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
-<path d="M4.714,29.284C3.218,29.284,2,28.067,2,26.572V6.857 c0-0.395,0.088-0.781,0.263-1.15l-0.001,0C2.327,5.56,2.428,5.352,2.591,5.139l1.37-2.852c0.162-0.437,0.824-1.362,2.067-1.561 l0.079-0.013h17.772l0.079,0.013c1.242,0.201,1.905,1.124,2.101,1.638l1.345,2.795c0.016,0.022,0.03,0.045,0.045,0.069 c0.355,0.465,0.55,1.034,0.55,1.628l0.001,19.715c0,1.495-1.218,2.712-2.714,2.712H4.714z" enable-background="new " opacity="0.35"/>
+<path d="M4.714,29.284C3.218,29.284,2,28.067,2,26.572V6.857 c0-0.395,0.088-0.781,0.263-1.15l-0.001,0C2.327,5.56,2.428,5.352,2.591,5.139l1.37-2.852c0.162-0.437,0.824-1.362,2.067-1.561 l0.079-0.013h17.772l0.079,0.013c1.242,0.201,1.905,1.124,2.101,1.638l1.345,2.795c0.016,0.022,0.03,0.045,0.045,0.069 c0.355,0.465,0.55,1.034,0.55,1.628l0.001,19.715c0,1.495-1.218,2.712-2.714,2.712H4.714z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="318.4922" x2="318.4922" y1="406.1846" y2="411.4904">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="1" style="stop-color:#7DC51A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="1" style="stop-color:#7DC51A"/>
</linearGradient>
<path d="M26.543,5.679l-1.418-2.959c0,0-0.321-0.844-1.326-1.005H6.186C5.183,1.875,4.862,2.721,4.862,2.721 L3.441,5.679C3.097,6.067,3.016,6.563,2.999,6.857h23.985C26.97,6.563,26.889,6.067,26.543,5.679z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="318.5" x2="318.5" y1="409.5186" y2="433.3899">
- <stop offset="0.14" style="stop-color:#AFED23"/>
- <stop offset="0.69" style="stop-color:#3E8A0D"/>
- <stop offset="0.95" style="stop-color:#7EF524"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.14" style="stop-color:#AFED23"/>
+<stop offset="0.69" style="stop-color:#3E8A0D"/>
+<stop offset="0.95" style="stop-color:#7EF524"/>
+<stop offset="1" style="stop-color:#7EF524"/>
</linearGradient>
<path d="M26.999,26.572c0,0.943-0.768,1.712-1.714,1.712H4.714C3.766,28.284,3,27.516,3,26.572V6.857 C3,5.91,3.768,5.143,4.714,5.143h20.57c0.947,0,1.714,0.767,1.714,1.714L26.999,26.572L26.999,26.572z" fill="url(#SVGID_2__)"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="318.5" x2="318.5" y1="409.5498" y2="427.2303">
- <stop offset="0" style="stop-color:#67AD1A"/>
- <stop offset="1" style="stop-color:#358C0C"/>
+<stop offset="0" style="stop-color:#67AD1A"/>
+<stop offset="1" style="stop-color:#358C0C"/>
</linearGradient>
<path d="M6.429,22.284h17.142c0.947,0,1.714-0.767,1.714-1.713V5.142H4.714V20.57 C4.714,21.518,5.481,22.284,6.429,22.284z" fill="url(#SVGID_3__)"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="318.5" x2="318.5" y1="425.2158" y2="433.1063">
- <stop offset="0" style="stop-color:#358C0C"/>
- <stop offset="0.78" style="stop-color:#67AD1A"/>
- <stop offset="1" style="stop-color:#AFED23"/>
+<stop offset="0" style="stop-color:#358C0C"/>
+<stop offset="0.78" style="stop-color:#67AD1A"/>
+<stop offset="1" style="stop-color:#AFED23"/>
</linearGradient>
<path d="M24.455,22.034c-0.201,0.12-0.429,0.199-0.673,0.23c-0.058,0.014-0.122,0.021-0.211,0.021H6.429 c-0.09,0-0.157-0.008-0.213-0.021c-0.244-0.031-0.471-0.108-0.673-0.23l-2.302,5.4c0.298,0.506,0.844,0.849,1.473,0.849h20.57 c0.629,0,1.174-0.343,1.475-0.849L24.455,22.034z" fill="url(#SVGID_4_)"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="318.5" x2="318.5" y1="425.333" y2="432.5319">
- <stop offset="0" style="stop-color:#0C4A06"/>
- <stop offset="0.32" style="stop-color:#0A5E1C"/>
- <stop offset="0.74" style="stop-color:#41AD1A"/>
- <stop offset="1" style="stop-color:#89D920"/>
+<stop offset="0" style="stop-color:#0C4A06"/>
+<stop offset="0.32" style="stop-color:#0A5E1C"/>
+<stop offset="0.74" style="stop-color:#41AD1A"/>
+<stop offset="1" style="stop-color:#89D920"/>
</linearGradient>
-<path d="M5.543,22.89c0.202,0.122,0.429,0.201,0.673,0.233 c0.056,0.013,0.124,0.021,0.213,0.021h17.142c0.089,0,0.153-0.011,0.209-0.021c0.246-0.031,0.472-0.111,0.675-0.233l2.066,4.85 c0.089-0.093,0.17-0.193,0.237-0.305l-2.301-5.4c-0.204,0.122-0.432,0.201-0.678,0.23c-0.056,0.014-0.12,0.022-0.209,0.022H6.429 c-0.09,0-0.157-0.009-0.213-0.022c-0.244-0.029-0.471-0.108-0.673-0.23l-2.302,5.4c0.065,0.111,0.148,0.211,0.236,0.305L5.543,22.89 z" enable-background="new " fill="url(#SVGID_5_)" opacity="0.3"/>
+<path d="M5.543,22.89c0.202,0.122,0.429,0.201,0.673,0.233 c0.056,0.013,0.124,0.021,0.213,0.021h17.142c0.089,0,0.153-0.011,0.209-0.021c0.246-0.031,0.472-0.111,0.675-0.233l2.066,4.85 c0.089-0.093,0.17-0.193,0.237-0.305l-2.301-5.4c-0.204,0.122-0.432,0.201-0.678,0.23c-0.056,0.014-0.12,0.022-0.209,0.022H6.429 c-0.09,0-0.157-0.009-0.213-0.022c-0.244-0.029-0.471-0.108-0.673-0.23l-2.302,5.4c0.065,0.111,0.148,0.211,0.236,0.305L5.543,22.89 z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="318.5" x2="318.5" y1="409.5498" y2="427.229">
- <stop offset="0" style="stop-color:#87CC1F"/>
- <stop offset="0.62" style="stop-color:#086311"/>
- <stop offset="1" style="stop-color:#06421E"/>
+<stop offset="0" style="stop-color:#87CC1F"/>
+<stop offset="0.62" style="stop-color:#086311"/>
+<stop offset="1" style="stop-color:#06421E"/>
</linearGradient>
-<path d="M4.714,5.143v15.428c0,0.946,0.767,1.713,1.715,1.713 h17.142c0.947,0,1.714-0.767,1.714-1.713V5.143H4.714z M24.427,20.57c0,0.473-0.386,0.858-0.856,0.858H6.429 c-0.473,0-0.86-0.385-0.86-0.858V6h18.857V20.57L24.427,20.57z" enable-background="new " fill="url(#SVGID_6_)" opacity="0.3"/>
+<path d="M4.714,5.143v15.428c0,0.946,0.767,1.713,1.715,1.713 h17.142c0.947,0,1.714-0.767,1.714-1.713V5.143H4.714z M24.427,20.57c0,0.473-0.386,0.858-0.856,0.858H6.429 c-0.473,0-0.86-0.385-0.86-0.858V6h18.857V20.57L24.427,20.57z" fill="url(#SVGID_6_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="318.499" x2="318.499" y1="406.1982" y2="409.7297">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="1" style="stop-color:#358C0C"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="1" style="stop-color:#358C0C"/>
</linearGradient>
<path d="M25.284,3.428c0-0.947-0.766-1.714-1.714-1.714H6.429c-0.948,0-1.715,0.767-1.715,1.714v1.713h20.57 V3.428z" fill="url(#SVGID_7_)"/>
-<path d="M4.714,5.143h20.57c0.556,0,1.045,0.268,1.358,0.68 c-0.035-0.049-0.061-0.099-0.1-0.144l-1.419-2.958c0,0-0.321-0.844-1.325-1.006H6.186C5.183,1.875,4.862,2.721,4.862,2.721 L3.441,5.679C3.32,5.815,3.242,5.963,3.177,6.111C3.454,5.54,4.035,5.143,4.714,5.143z" enable-background="new " fill="#C7FF5A" opacity="0.5"/>
+<path d="M4.714,5.143h20.57c0.556,0,1.045,0.268,1.358,0.68 c-0.035-0.049-0.061-0.099-0.1-0.144l-1.419-2.958c0,0-0.321-0.844-1.325-1.006H6.186C5.183,1.875,4.862,2.721,4.862,2.721 L3.441,5.679C3.32,5.815,3.242,5.963,3.177,6.111C3.454,5.54,4.035,5.143,4.714,5.143z" fill="#C7FF5A" fill-opacity="0.5" stroke-opacity="0.5"/>
<path d="M26.743,5.967c0.008,0.013,0.013,0.027,0.022,0.04C26.759,5.991,26.751,5.982,26.743,5.967z" fill="#C7FF5A"/>
<path d="M3.051,5.824C3.047,5.836,3.043,5.847,3.04,5.86C3.043,5.849,3.047,5.836,3.051,5.824z" fill="#C7FF5A"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="318.5" x2="318.5" y1="409.5186" y2="433.3899">
- <stop offset="0" style="stop-color:#D4FFA8"/>
- <stop offset="0.68" style="stop-color:#75D911"/>
- <stop offset="1" style="stop-color:#7EF524"/>
+<stop offset="0" style="stop-color:#D4FFA8"/>
+<stop offset="0.68" style="stop-color:#75D911"/>
+<stop offset="1" style="stop-color:#7EF524"/>
</linearGradient>
<path d="M25.284,5.143H4.714C3.766,5.143,3,5.91,3,6.857V26.57c0,0.945,0.767,1.714,1.713,1.714h20.57 c0.947,0,1.714-0.769,1.714-1.714V6.857C26.999,5.91,26.231,5.143,25.284,5.143z M26.143,26.572c0,0.472-0.388,0.856-0.858,0.856 H4.714c-0.471,0-0.858-0.385-0.858-0.856V6.857C3.856,6.384,4.241,6,4.714,6h20.57c0.471,0,0.858,0.384,0.858,0.857V26.572z" fill="url(#SVGID_8_)"/>
<rect fill="none" height="29.998" width="29.998"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_avatar.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_avatar.svg Thu May 27 13:10:59 2010 +0300
@@ -1,29 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
+<g>
<rect fill="none" height="60" width="60"/>
-
<path d="M46.69,42.35c-1.665-0.866-9.918-3.756-10.07-3.936l-0.002,0.002c-0.934-1.068-0.896-3.433-0.43-4.46,0.001-0.001,0.002-0.001,0.002-0.002,0.032-0.071,0.065-0.139,0.104-0.197,0.113-0.177,0.219-0.354,0.326-0.533,0.813-1.329,1.494-2.651,2.054-3.892,1.009,0.349,2.307-0.59,2.95-2.18,0.667-1.645,0.379-3.354-0.645-3.815-0.058-0.026-0.119-0.03-0.178-0.048v-0.002c0.133-0.521,0.191-0.826,0.191-0.826,1.77-7.934-2.078-14.22-11.4-14.53-3.832,0-5.617,0.578-7.039,2.398-2.313,0.357-6.039,3.642-3.453,12.93-0.098,0.016-0.195,0.031-0.289,0.071-1.032,0.436-1.355,2.128-0.724,3.782,0.633,1.653,1.983,2.643,3.017,2.208,0.063-0.027,0.117-0.072,0.176-0.11,0.568,1.279,1.266,2.646,2.104,4.02h-0.01c0.022,0.037,0.046,0.073,0.067,0.11,0.023,0.038,0.045,0.076,0.068,0.114,0.002,0.003,0.005,0.005,0.007,0.008,0.061,0.101,0.12,0.201,0.185,0.301,0.532,0.833,0.663,3.229-0.166,4.457-0.208,0.283-8.346,3.135-10.23,4.136-2.161,1.147-5.688,3.782-5.688,9.723h44.76c-0.01-5.95-4.04-8.86-5.7-9.73z" fill="url(#SVGID_1)"/>
-
<path d="M7.659,51.07c-0.022,0.323-0.037,0.655-0.037,1h44.76c0-0.345-0.017-0.676-0.042-1h-44.68z" fill="#FFFFFF" fill-opacity="0.15"/>
-
<path d="M22.55,11.33c1.422-1.82,3.207-2.398,7.039-2.398,7.565,0.252,11.52,4.44,11.8,10.25,0.15-6.32-3.81-10.99-11.8-11.25-3.832,0-5.617,0.578-7.039,2.398-1.81,0.279-4.472,2.367-4.311,7.704,0.18-4.6,2.62-6.44,4.31-6.7z" fill="#FFFFFF" fill-opacity="0.5"/>
-
<path d="M36.62,38.42c-0.441-0.505-0.66-1.3-0.725-2.106-0.086,1.09,0.098,2.389,0.725,3.106l0.002-0.002c0.154,0.18,8.407,3.069,10.07,3.936,1.566,0.816,5.225,3.453,5.645,8.723h0.042c0-5.94-4.024-8.856-5.687-9.723-1.665-0.866-9.918-3.756-10.07-3.936z" fill="#FFFFFF" fill-opacity="0.5"/>
-
<path d="M13.31,43.35c1.885-1.001,10.02-3.853,10.23-4.136,0.508-0.752,0.652-1.938,0.568-2.938-0.053,0.717-0.225,1.429-0.568,1.938-0.208,0.283-8.346,3.135-10.23,4.136-2.161,1.147-5.688,3.782-5.688,9.723h0.037c0.37-5.24,3.621-7.64,5.651-8.72z" fill="#FFFFFF" fill-opacity="0.5"/>
-
<defs>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="30" x2="30" y1="8.6" y2="52.35">
-
<stop offset="0" stop-color="#8E8E8E"/>
-
<stop offset="1" stop-color="#444444"/>
-
</linearGradient>
-
</defs>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bell.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bell.svg Thu May 27 13:10:59 2010 +0300
@@ -1,65 +1,63 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -785.9789 1292.5154)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-326.7236" x2="-304.7813" y1="-1454.5332" y2="-1454.5332">
- <stop offset="0" style="stop-color:#676B6D"/>
- <stop offset="0.297" style="stop-color:#A0A3A6"/>
- <stop offset="0.7091" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#676B6D"/>
+<stop offset="0.297" style="stop-color:#A0A3A6"/>
+<stop offset="0.7091" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M15.172,29.313L15.172,29.313c-4.057,4.059-3.887,10.822,0.402,15.109 c4.285,4.285,11.057,4.465,15.113,0.406l0,0L15.172,29.313z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(1 0 0 1 0 9.765625e-004)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5.5908" x2="42.1352" y1="17.8457" y2="54.3901">
- <stop offset="0" style="stop-color:#FFB533"/>
- <stop offset="0.2" style="stop-color:#FFE692"/>
- <stop offset="0.3879" style="stop-color:#FBD072"/>
- <stop offset="0.4182" style="stop-color:#F7BC54"/>
- <stop offset="0.6667" style="stop-color:#ED8C0D"/>
- <stop offset="0.8545" style="stop-color:#F9C967"/>
- <stop offset="1" style="stop-color:#FFB81F"/>
+<stop offset="0" style="stop-color:#FFB533"/>
+<stop offset="0.2" style="stop-color:#FFE692"/>
+<stop offset="0.3879" style="stop-color:#FBD072"/>
+<stop offset="0.4182" style="stop-color:#F7BC54"/>
+<stop offset="0.6667" style="stop-color:#ED8C0D"/>
+<stop offset="0.8545" style="stop-color:#F9C967"/>
+<stop offset="1" style="stop-color:#FFB81F"/>
</linearGradient>
<path d="M42.727,47.441L12.559,17.273c-4.08-1.461-5.623-0.41-7.496,1.463L2,21.799L38.201,58l3.064-3.063 C43.137,53.064,44.188,51.521,42.727,47.441z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -785.9789 1292.5154)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-320.21" x2="-311.6052" y1="-1501.5957" y2="-1501.5957">
- <stop offset="0" style="stop-color:#FFB533"/>
- <stop offset="0.1939" style="stop-color:#FFE692"/>
- <stop offset="0.703" style="stop-color:#ED8C0D"/>
- <stop offset="0.8848" style="stop-color:#F9C967"/>
- <stop offset="1" style="stop-color:#FFB81F"/>
+<stop offset="0" style="stop-color:#FFB533"/>
+<stop offset="0.1939" style="stop-color:#FFE692"/>
+<stop offset="0.703" style="stop-color:#ED8C0D"/>
+<stop offset="0.8848" style="stop-color:#F9C967"/>
+<stop offset="1" style="stop-color:#FFB81F"/>
</linearGradient>
<path d="M53.285,12.75l1.51-1.51c1.658-1.658,1.658-4.375,0-6.033c-1.66-1.66-4.375-1.66-6.035,0 l-1.508,1.508L53.285,12.75z" fill="url(#SVGID_3_)"/>
-<path d="M53.285,12.75l1.51-1.51c0.09-0.09,0.158-0.195,0.238-0.293 c-0.771-1.162-1.666-2.268-2.689-3.289c-1.023-1.023-2.127-1.92-3.291-2.691c-0.096,0.082-0.201,0.148-0.293,0.24l-1.508,1.508 L53.285,12.75z" fill="#873900" opacity="0.2"/>
-<path d="M52.91,7.092c-0.984-0.984-2.045-1.848-3.16-2.598c-0.354,0.189-0.691,0.414-0.988,0.711 L47.818,6.15l6.033,6.033l0.943-0.943c0.297-0.297,0.521-0.637,0.713-0.99C54.756,9.137,53.893,8.076,52.91,7.092z" fill="#873900" opacity="0.1"/>
+<path d="M53.285,12.75l1.51-1.51c0.09-0.09,0.158-0.195,0.238-0.293 c-0.771-1.162-1.666-2.268-2.689-3.289c-1.023-1.023-2.127-1.92-3.291-2.691c-0.096,0.082-0.201,0.148-0.293,0.24l-1.508,1.508 L53.285,12.75z" fill="#873900" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M52.91,7.092c-0.984-0.984-2.045-1.848-3.16-2.598c-0.354,0.189-0.691,0.414-0.988,0.711 L47.818,6.15l6.033,6.033l0.943-0.943c0.297-0.297,0.521-0.637,0.713-0.99C54.756,9.137,53.893,8.076,52.91,7.092z" fill="#873900" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="51.8164" x2="27.3908" y1="8.1841" y2="32.6097">
- <stop offset="0" style="stop-color:#FDE6B1"/>
- <stop offset="1" style="stop-color:#EF951A"/>
+<stop offset="0" style="stop-color:#FDE6B1"/>
+<stop offset="1" style="stop-color:#EF951A"/>
</linearGradient>
<path d="M42.727,47.441l9.051-9.051c8.297-8.295,8.297-21.871,0-30.168c-8.295-8.297-21.871-8.297-30.168,0 l-9.051,9.051L42.727,47.441z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="25.4072" x2="54.0366" y1="5.9873" y2="34.6167">
- <stop offset="0" style="stop-color:#FFB533"/>
- <stop offset="0.2545" style="stop-color:#FFE692"/>
- <stop offset="0.503" style="stop-color:#F8C15B"/>
- <stop offset="0.5152" style="stop-color:#F6B84E"/>
- <stop offset="0.6667" style="stop-color:#ED8C0D"/>
- <stop offset="0.8545" style="stop-color:#F9C967"/>
- <stop offset="1" style="stop-color:#FFB81F"/>
+<stop offset="0" style="stop-color:#FFB533"/>
+<stop offset="0.2545" style="stop-color:#FFE692"/>
+<stop offset="0.503" style="stop-color:#F8C15B"/>
+<stop offset="0.5152" style="stop-color:#F6B84E"/>
+<stop offset="0.6667" style="stop-color:#ED8C0D"/>
+<stop offset="0.8545" style="stop-color:#F9C967"/>
+<stop offset="1" style="stop-color:#FFB81F"/>
</linearGradient>
<path d="M13.689,17.273l8.486-8.484c3.861-3.861,9.018-5.988,14.518-5.988c5.502,0,10.658,2.127,14.52,5.988 s5.988,9.018,5.988,14.518c0,5.502-2.127,10.658-5.988,14.52l-8.486,8.484L13.689,17.273z" fill="url(#SVGID_5_)"/>
-<rect fill="#873900" height="0.801" opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 30.8495 -10.3756)" width="42.664" x="6.617" y="31.65"/>
-<path d="M26.412,47.342c0.285-0.082,0.57-0.174,0.85-0.281L12.939,32.738c-0.107,0.279-0.199,0.563-0.281,0.85 L26.412,47.342z" opacity="0.2"/>
-<rect fill="#873900" height="0.8" opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 30.6155 -10.9417)" width="42.664" x="7.184" y="31.086"/>
-<path d="M25.439,47.572c0.311-0.059,0.617-0.127,0.92-0.213L12.641,33.641c-0.086,0.303-0.156,0.609-0.215,0.918 L25.439,47.572z" opacity="0.1"/>
-<path d="M8.873,16.604l34.523,34.525c0.072-0.971-0.119-2.148-0.67-3.688L12.559,17.273 C11.021,16.721,9.844,16.531,8.873,16.604z" fill="#FFF6C9" opacity="0.5"/>
-<path d="M12.559,17.273c-0.391-0.141-0.758-0.256-1.105-0.352l31.625,31.625 c-0.094-0.346-0.211-0.715-0.352-1.105L12.559,17.273z" fill="#FFF6C9" opacity="0.5"/>
-<rect fill="#753200" height="0.801" opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 33.985 -2.8095)" width="51.198" x="-5.215" y="39.217"/>
-<rect fill="#753200" height="0.798" opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 33.7481 -3.3767)" width="51.198" x="-4.649" y="38.652"/>
+<rect fill="#873900" fill-opacity="0.2" height="0.801" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 30.8495 -10.3756)" width="42.664" x="6.617" y="31.65"/>
+<path d="M26.412,47.342c0.285-0.082,0.57-0.174,0.85-0.281L12.939,32.738c-0.107,0.279-0.199,0.563-0.281,0.85 L26.412,47.342z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="#873900" fill-opacity="0.1" height="0.8" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 30.6155 -10.9417)" width="42.664" x="7.184" y="31.086"/>
+<path d="M25.439,47.572c0.311-0.059,0.617-0.127,0.92-0.213L12.641,33.641c-0.086,0.303-0.156,0.609-0.215,0.918 L25.439,47.572z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M8.873,16.604l34.523,34.525c0.072-0.971-0.119-2.148-0.67-3.688L12.559,17.273 C11.021,16.721,9.844,16.531,8.873,16.604z" fill="#FFF6C9" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M12.559,17.273c-0.391-0.141-0.758-0.256-1.105-0.352l31.625,31.625 c-0.094-0.346-0.211-0.715-0.352-1.105L12.559,17.273z" fill="#FFF6C9" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect fill="#753200" fill-opacity="0.2" height="0.801" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 33.985 -2.8095)" width="51.198" x="-5.215" y="39.217"/>
+<rect fill="#753200" fill-opacity="0.1" height="0.798" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 33.7481 -3.3767)" width="51.198" x="-4.649" y="38.652"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="42.4766" x2="42.4766" y1="3.564" y2="32.0729">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#F9C966"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#F9C966"/>
</linearGradient>
-<path d="M53.869,30.98c-4.629-2.719-9.43-6.51-13.885-10.965S31.738,10.76,29.021,6.131 l-0.475-0.807l0.871-0.344c2.313-0.91,4.752-1.371,7.254-1.371c5.23,0,10.324,2.094,13.975,5.746 c5.551,5.549,7.268,13.883,4.373,21.229l-0.344,0.869L53.869,30.98z" fill="url(#SVGID_6_)" opacity="0.5"/>
+<path d="M53.869,30.98c-4.629-2.719-9.43-6.51-13.885-10.965S31.738,10.76,29.021,6.131 l-0.475-0.807l0.871-0.344c2.313-0.91,4.752-1.371,7.254-1.371c5.23,0,10.324,2.094,13.975,5.746 c5.551,5.549,7.268,13.883,4.373,21.229l-0.344,0.869L53.869,30.98z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth.svg Thu May 27 13:10:59 2010 +0300
@@ -1,29 +1,28 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.0739">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.2545" style="stop-color:#4F88BD"/>
- <stop offset="0.7333" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#4F88BD"/>
+<stop offset="0.7333" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M30,2C18.142,2,9.945,7.973,9.945,30.001C9.945,52.03,18.145,58,30,58 c11.857,0,20.054-5.97,20.054-27.999C50.054,7.973,41.857,2,30,2z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.2363" y2="56.7637">
- <stop offset="0.1576" style="stop-color:#36B5FF"/>
- <stop offset="0.8242" style="stop-color:#1B66D8"/>
- <stop offset="1" style="stop-color:#2183E0"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="0.1576" style="stop-color:#36B5FF"/>
+<stop offset="0.8242" style="stop-color:#1B66D8"/>
+<stop offset="1" style="stop-color:#2183E0"/>
</linearGradient>
<path d="M30,56.764c-9.305,0-18.818-3.179-18.818-26.763C11.182,6.415,20.695,3.236,30,3.236 c9.306,0,18.817,3.179,18.817,26.765C48.817,53.585,39.306,56.764,30,56.764L30,56.764z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.6924" x2="42.3066" y1="30.2065" y2="30.2065">
- <stop offset="0" style="stop-color:#0B81FA"/>
- <stop offset="1" style="stop-color:#47DAFA"/>
+<stop offset="0" style="stop-color:#0B81FA"/>
+<stop offset="1" style="stop-color:#47DAFA"/>
</linearGradient>
<path d="M42.307,20.702L28.242,6.305v18.972l-7.728-7.912l-2.822,2.881l9.712,9.961l-9.712,9.96l2.815,2.879 l7.734-7.91v18.974l14.064-14.396l-9.287-9.506L42.307,20.702z M36.689,20.734l-4.49,4.59l-0.006-9.188L36.689,20.734z M36.689,39.686l-4.496,4.584l0.006-9.185L36.689,39.686z" fill="url(#SVGID_3_)"/>
<path d="M29.479,32.103l-8.971,9.175l-1.087-1.112l9.71-9.959l-9.71-9.96l1.091-1.113l8.967,9.179V9.339l11.1,11.363 l-9.287,9.504l9.287,9.506l-11.1,11.362V32.103z M30.955,47.297l7.464-7.61l-7.454-7.636L30.955,47.297z M30.965,28.353l7.454-7.618 l-7.464-7.632L30.965,28.353z" fill="#FFFFFF"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_active_connection.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_active_connection.svg Thu May 27 13:10:59 2010 +0300
@@ -1,59 +1,61 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.0739">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.2545" style="stop-color:#4F88BD"/>
- <stop offset="0.7333" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#4F88BD"/>
+<stop offset="0.7333" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M30,2C18.142,2,9.945,7.973,9.945,30.001C9.945,52.03,18.145,58,30,58 c11.857,0,20.054-5.97,20.054-27.999C50.054,7.973,41.857,2,30,2z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.2363" y2="56.7637">
- <stop offset="0.1576" style="stop-color:#36B5FF"/>
- <stop offset="0.8242" style="stop-color:#1B66D8"/>
- <stop offset="1" style="stop-color:#2183E0"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="0.1576" style="stop-color:#36B5FF"/>
+<stop offset="0.8242" style="stop-color:#1B66D8"/>
+<stop offset="1" style="stop-color:#2183E0"/>
</linearGradient>
<path d="M30,56.764c-9.305,0-18.818-3.179-18.818-26.763C11.182,6.415,20.695,3.236,30,3.236 c9.306,0,18.817,3.179,18.817,26.765C48.817,53.585,39.306,56.764,30,56.764L30,56.764z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.6924" x2="42.3066" y1="30.2065" y2="30.2065">
- <stop offset="0" style="stop-color:#0B81FA"/>
- <stop offset="1" style="stop-color:#47DAFA"/>
+<stop offset="0" style="stop-color:#0B81FA"/>
+<stop offset="1" style="stop-color:#47DAFA"/>
</linearGradient>
<path d="M42.307,20.702L28.242,6.305v18.972l-7.728-7.912l-2.822,2.881l9.712,9.961l-9.712,9.96l2.815,2.879 l7.734-7.91v18.974l14.064-14.396l-9.287-9.506L42.307,20.702z M36.689,20.734l-4.49,4.59l-0.006-9.188L36.689,20.734z M36.689,39.686l-4.496,4.584l0.006-9.185L36.689,39.686z" fill="url(#SVGID_3_)"/>
<path d="M29.479,32.103l-8.971,9.175l-1.087-1.112l9.71-9.959l-9.71-9.96l1.091-1.113l8.967,9.179V9.339l11.1,11.363 l-9.287,9.504l9.287,9.506l-11.1,11.362V32.103z M30.955,47.297l7.464-7.61l-7.454-7.636L30.955,47.297z M30.965,28.353l7.454-7.618 l-7.464-7.632L30.965,28.353z" fill="#FFFFFF"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30" x="0.002"/>
-<path d="M20.752,15.001H1.27c-0.555,0-0.998,0.273-1.186,0.73c-0.186,0.459-0.059,0.966,0.34,1.355l10.515,10.314 c0.339,0.335,0.687,0.404,0.918,0.404c0.565,0,1.165-0.448,1.165-1.28v-4.398h7.73c0.842,0,1.527-0.69,1.527-1.538v-4.051 C22.279,15.69,21.594,15.001,20.752,15.001z" opacity="0.35"/>
-<path d="M29.58,12.911L19.063,2.596c-0.339-0.333-0.685-0.402-0.916-0.402c-0.564,0-1.165,0.449-1.165,1.281v4.399 h-7.73c-0.842,0-1.525,0.689-1.525,1.537v4.051c0,0.847,0.684,1.535,1.525,1.535h19.482c0.555,0,0.998-0.273,1.186-0.73 C30.105,13.808,29.979,13.301,29.58,12.911z" opacity="0.35"/>
+<path d="M20.752,15.001H1.27c-0.555,0-0.998,0.273-1.186,0.73c-0.186,0.459-0.059,0.966,0.34,1.355l10.515,10.314 c0.339,0.335,0.687,0.404,0.918,0.404c0.565,0,1.165-0.448,1.165-1.28v-4.398h7.73c0.842,0,1.527-0.69,1.527-1.538v-4.051 C22.279,15.69,21.594,15.001,20.752,15.001z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M29.58,12.911L19.063,2.596c-0.339-0.333-0.685-0.402-0.916-0.402c-0.564,0-1.165,0.449-1.165,1.281v4.399 h-7.73c-0.842,0-1.525,0.689-1.525,1.537v4.051c0,0.847,0.684,1.535,1.525,1.535h19.482c0.555,0,0.998-0.273,1.186-0.73 C30.105,13.808,29.979,13.301,29.58,12.911z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="11.1406" x2="11.1406" y1="16.103" y2="27.0009">
- <stop offset="0" style="stop-color:#CDEDBD"/>
- <stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="0" style="stop-color:#CDEDBD"/>
+<stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="1" style="stop-color:#139900"/>
</linearGradient>
<path d="M21.279,20.589c0,0.294-0.236,0.538-0.527,0.538h-8.205c-0.287,0-0.525,0.241-0.525,0.537v4.861 c0,0.295-0.172,0.37-0.38,0.165L1.125,16.373c-0.211-0.205-0.144-0.372,0.145-0.372h19.482c0.289,0,0.527,0.241,0.527,0.537V20.589z " fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="11.7783" x2="11.7783" y1="17.0737" y2="24.8819">
- <stop offset="0" style="stop-color:#82C94C"/>
- <stop offset="0.2545" style="stop-color:#439020"/>
- <stop offset="0.5091" style="stop-color:#0D4D07"/>
+<stop offset="0" style="stop-color:#82C94C"/>
+<stop offset="0.2545" style="stop-color:#439020"/>
+<stop offset="0.5091" style="stop-color:#0D4D07"/>
+<stop offset="1" style="stop-color:#0D4D07"/>
</linearGradient>
<path d="M3.336,17.06h16.885v3.009h-7.674c-0.872,0-1.584,0.715-1.584,1.596v2.878L3.336,17.06z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="18.8643" x2="18.8643" y1="3.2227" y2="14.1618">
- <stop offset="0.4909" style="stop-color:#CDEDBD"/>
- <stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="0" style="stop-color:#CDEDBD"/>
+<stop offset="0.4909" style="stop-color:#CDEDBD"/>
+<stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="1" style="stop-color:#139900"/>
</linearGradient>
<path d="M8.727,9.411c0-0.296,0.235-0.537,0.525-0.537h8.206c0.288,0,0.524-0.242,0.524-0.538V3.475 c0-0.297,0.172-0.37,0.381-0.165l10.516,10.315c0.211,0.205,0.144,0.372-0.145,0.372H9.252c-0.289,0-0.525-0.241-0.525-0.535V9.411z " fill="url(#SVGID_3__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.2266" x2="18.2266" y1="5.4292" y2="12.9712">
- <stop offset="0" style="stop-color:#B2F56E"/>
- <stop offset="0.703" style="stop-color:#439020"/>
- <stop offset="0.9879" style="stop-color:#0D4D07"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.703" style="stop-color:#439020"/>
+<stop offset="0.9879" style="stop-color:#0D4D07"/>
+<stop offset="1" style="stop-color:#0D4D07"/>
</linearGradient>
<path d="M9.785,12.938V9.933h7.673c0.872,0,1.583-0.718,1.583-1.597V5.458l7.627,7.48H9.785z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="30" width="30" x="0.002"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_hide.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_hide.svg Thu May 27 13:10:59 2010 +0300
@@ -1,29 +1,28 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<g opacity="None">
-<defs>
-</defs>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
+<g opacity="0.5">
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.0739">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.2545" style="stop-color:#4F88BD"/>
- <stop offset="0.7333" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#4F88BD"/>
+<stop offset="0.7333" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M30,2C18.142,2,9.945,7.973,9.945,30.001C9.945,52.03,18.145,58,30,58 c11.857,0,20.054-5.97,20.054-27.999C50.054,7.973,41.857,2,30,2z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.2363" y2="56.7637">
- <stop offset="0.1576" style="stop-color:#36B5FF"/>
- <stop offset="0.8242" style="stop-color:#1B66D8"/>
- <stop offset="1" style="stop-color:#2183E0"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="0.1576" style="stop-color:#36B5FF"/>
+<stop offset="0.8242" style="stop-color:#1B66D8"/>
+<stop offset="1" style="stop-color:#2183E0"/>
</linearGradient>
<path d="M30,56.764c-9.305,0-18.818-3.179-18.818-26.763C11.182,6.415,20.695,3.236,30,3.236 c9.306,0,18.817,3.179,18.817,26.765C48.817,53.585,39.306,56.764,30,56.764L30,56.764z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.6924" x2="42.3066" y1="30.2065" y2="30.2065">
- <stop offset="0" style="stop-color:#0B81FA"/>
- <stop offset="1" style="stop-color:#47DAFA"/>
+<stop offset="0" style="stop-color:#0B81FA"/>
+<stop offset="1" style="stop-color:#47DAFA"/>
</linearGradient>
<path d="M42.307,20.702L28.242,6.305v18.972l-7.728-7.912l-2.822,2.881l9.712,9.961l-9.712,9.96l2.815,2.879 l7.734-7.91v18.974l14.064-14.396l-9.287-9.506L42.307,20.702z M36.689,20.734l-4.49,4.59l-0.006-9.188L36.689,20.734z M36.689,39.686l-4.496,4.584l0.006-9.185L36.689,39.686z" fill="url(#SVGID_3_)"/>
<path d="M29.479,32.103l-8.971,9.175l-1.087-1.112l9.71-9.959l-9.71-9.96l1.091-1.113l8.967,9.179V9.339l11.1,11.363 l-9.287,9.504l9.287,9.506l-11.1,11.362V32.103z M30.955,47.297l7.464-7.61l-7.454-7.636L30.955,47.297z M30.965,28.353l7.454-7.618 l-7.464-7.632L30.965,28.353z" fill="#FFFFFF"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_hide_connection.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
+<g opacity="0.5">
+<rect fill="none" height="60" width="60"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.0739">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#4F88BD"/>
+<stop offset="0.7333" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
+</linearGradient>
+<path d="M30,2C18.142,2,9.945,7.973,9.945,30.001C9.945,52.03,18.145,58,30,58 c11.857,0,20.054-5.97,20.054-27.999C50.054,7.973,41.857,2,30,2z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.2363" y2="56.7637">
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="0.1576" style="stop-color:#36B5FF"/>
+<stop offset="0.8242" style="stop-color:#1B66D8"/>
+<stop offset="1" style="stop-color:#2183E0"/>
+</linearGradient>
+<path d="M30,56.764c-9.305,0-18.818-3.179-18.818-26.763C11.182,6.415,20.695,3.236,30,3.236 c9.306,0,18.817,3.179,18.817,26.765C48.817,53.585,39.306,56.764,30,56.764L30,56.764z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.6924" x2="42.3066" y1="30.2065" y2="30.2065">
+<stop offset="0" style="stop-color:#0B81FA"/>
+<stop offset="1" style="stop-color:#47DAFA"/>
+</linearGradient>
+<path d="M42.307,20.702L28.242,6.305v18.972l-7.728-7.912l-2.822,2.881l9.712,9.961l-9.712,9.96l2.815,2.879 l7.734-7.91v18.974l14.064-14.396l-9.287-9.506L42.307,20.702z M36.689,20.734l-4.49,4.59l-0.006-9.188L36.689,20.734z M36.689,39.686l-4.496,4.584l0.006-9.185L36.689,39.686z" fill="url(#SVGID_3_)"/>
+<path d="M29.479,32.103l-8.971,9.175l-1.087-1.112l9.71-9.959l-9.71-9.96l1.091-1.113l8.967,9.179V9.339l11.1,11.363 l-9.287,9.504l9.287,9.506l-11.1,11.362V32.103z M30.955,47.297l7.464-7.61l-7.454-7.636L30.955,47.297z M30.965,28.353l7.454-7.618 l-7.464-7.632L30.965,28.353z" fill="#FFFFFF"/>
+<rect fill="none" height="60" width="60"/>
+</g>
+<g transform="matrix(1 0 0 1 30 30)">
+<rect fill="none" height="30" width="30" x="0.002"/>
+<path d="M20.752,15.001H1.27c-0.555,0-0.998,0.273-1.186,0.73c-0.186,0.459-0.059,0.966,0.34,1.355l10.515,10.314 c0.339,0.335,0.687,0.404,0.918,0.404c0.565,0,1.165-0.448,1.165-1.28v-4.398h7.73c0.842,0,1.527-0.69,1.527-1.538v-4.051 C22.279,15.69,21.594,15.001,20.752,15.001z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M29.58,12.911L19.063,2.596c-0.339-0.333-0.685-0.402-0.916-0.402c-0.564,0-1.165,0.449-1.165,1.281v4.399 h-7.73c-0.842,0-1.525,0.689-1.525,1.537v4.051c0,0.847,0.684,1.535,1.525,1.535h19.482c0.555,0,0.998-0.273,1.186-0.73 C30.105,13.808,29.979,13.301,29.58,12.911z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="11.1406" x2="11.1406" y1="16.103" y2="27.0009">
+<stop offset="0" style="stop-color:#CDEDBD"/>
+<stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="1" style="stop-color:#139900"/>
+</linearGradient>
+<path d="M21.279,20.589c0,0.294-0.236,0.538-0.527,0.538h-8.205c-0.287,0-0.525,0.241-0.525,0.537v4.861 c0,0.295-0.172,0.37-0.38,0.165L1.125,16.373c-0.211-0.205-0.144-0.372,0.145-0.372h19.482c0.289,0,0.527,0.241,0.527,0.537V20.589z " fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="11.7783" x2="11.7783" y1="17.0737" y2="24.8819">
+<stop offset="0" style="stop-color:#82C94C"/>
+<stop offset="0.2545" style="stop-color:#439020"/>
+<stop offset="0.5091" style="stop-color:#0D4D07"/>
+<stop offset="1" style="stop-color:#0D4D07"/>
+</linearGradient>
+<path d="M3.336,17.06h16.885v3.009h-7.674c-0.872,0-1.584,0.715-1.584,1.596v2.878L3.336,17.06z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="18.8643" x2="18.8643" y1="3.2227" y2="14.1618">
+<stop offset="0" style="stop-color:#CDEDBD"/>
+<stop offset="0.4909" style="stop-color:#CDEDBD"/>
+<stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="1" style="stop-color:#139900"/>
+</linearGradient>
+<path d="M8.727,9.411c0-0.296,0.235-0.537,0.525-0.537h8.206c0.288,0,0.524-0.242,0.524-0.538V3.475 c0-0.297,0.172-0.37,0.381-0.165l10.516,10.315c0.211,0.205,0.144,0.372-0.145,0.372H9.252c-0.289,0-0.525-0.241-0.525-0.535V9.411z " fill="url(#SVGID_3__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.2266" x2="18.2266" y1="5.4292" y2="12.9712">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.703" style="stop-color:#439020"/>
+<stop offset="0.9879" style="stop-color:#0D4D07"/>
+<stop offset="1" style="stop-color:#0D4D07"/>
+</linearGradient>
+<path d="M9.785,12.938V9.933h7.673c0.872,0,1.583-0.718,1.583-1.597V5.458l7.627,7.48H9.785z" fill="url(#SVGID_4_)"/>
+<rect fill="none" height="30" width="30" x="0.002"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_multiple_connection.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_multiple_connection.svg Thu May 27 13:10:59 2010 +0300
@@ -1,58 +1,60 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.0739">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.2545" style="stop-color:#4F88BD"/>
- <stop offset="0.7333" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#4F88BD"/>
+<stop offset="0.7333" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M30,2C18.142,2,9.945,7.973,9.945,30.001C9.945,52.03,18.145,58,30,58 c11.857,0,20.054-5.97,20.054-27.999C50.054,7.973,41.857,2,30,2z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.2363" y2="56.7637">
- <stop offset="0.1576" style="stop-color:#36B5FF"/>
- <stop offset="0.8242" style="stop-color:#1B66D8"/>
- <stop offset="1" style="stop-color:#2183E0"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="0.1576" style="stop-color:#36B5FF"/>
+<stop offset="0.8242" style="stop-color:#1B66D8"/>
+<stop offset="1" style="stop-color:#2183E0"/>
</linearGradient>
<path d="M30,56.764c-9.305,0-18.818-3.179-18.818-26.763C11.182,6.415,20.695,3.236,30,3.236 c9.306,0,18.817,3.179,18.817,26.765C48.817,53.585,39.306,56.764,30,56.764L30,56.764z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.6924" x2="42.3066" y1="30.2065" y2="30.2065">
- <stop offset="0" style="stop-color:#0B81FA"/>
- <stop offset="1" style="stop-color:#47DAFA"/>
+<stop offset="0" style="stop-color:#0B81FA"/>
+<stop offset="1" style="stop-color:#47DAFA"/>
</linearGradient>
<path d="M42.307,20.702L28.242,6.305v18.972l-7.728-7.912l-2.822,2.881l9.712,9.961l-9.712,9.96l2.815,2.879 l7.734-7.91v18.974l14.064-14.396l-9.287-9.506L42.307,20.702z M36.689,20.734l-4.49,4.59l-0.006-9.188L36.689,20.734z M36.689,39.686l-4.496,4.584l0.006-9.185L36.689,39.686z" fill="url(#SVGID_3_)"/>
<path d="M29.479,32.103l-8.971,9.175l-1.087-1.112l9.71-9.959l-9.71-9.96l1.091-1.113l8.967,9.179V9.339l11.1,11.363 l-9.287,9.504l9.287,9.506l-11.1,11.362V32.103z M30.955,47.297l7.464-7.61l-7.454-7.636L30.955,47.297z M30.965,28.353l7.454-7.618 l-7.464-7.632L30.965,28.353z" fill="#FFFFFF"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30" x="0.002"/>
-<path d="M29.587,12.96l-9.934-9.744C19.32,2.889,18.979,2.82,18.75,2.82c-0.561,0-1.156,0.443-1.156,1.266 l-0.002,3.91l-4.872-4.78c-0.333-0.327-0.675-0.396-0.903-0.396c-0.561,0-1.156,0.443-1.156,1.266l-0.002,4.1h-3.16 c-0.824,0-1.496,0.677-1.496,1.508v3.826c0,0.7,0.48,1.285,1.125,1.453H1.256c-0.549,0-0.986,0.271-1.172,0.724 c-0.185,0.455-0.061,0.956,0.333,1.342l9.934,9.744c0.334,0.327,0.676,0.396,0.904,0.396c0.56,0,1.155-0.443,1.155-1.266l0.002-3.91 l4.872,4.78c0.334,0.327,0.676,0.396,0.904,0.396c0.56,0,1.155-0.443,1.155-1.266l0.002-4.1h3.16c0.824,0,1.496-0.677,1.496-1.508 v-3.826c0-0.7-0.48-1.285-1.125-1.453h5.871c0.549,0,0.986-0.271,1.172-0.724C30.104,13.847,29.98,13.346,29.587,12.96z" opacity="0.35"/>
+<path d="M29.587,12.96l-9.934-9.744C19.32,2.889,18.979,2.82,18.75,2.82c-0.561,0-1.156,0.443-1.156,1.266 l-0.002,3.91l-4.872-4.78c-0.333-0.327-0.675-0.396-0.903-0.396c-0.561,0-1.156,0.443-1.156,1.266l-0.002,4.1h-3.16 c-0.824,0-1.496,0.677-1.496,1.508v3.826c0,0.7,0.48,1.285,1.125,1.453H1.256c-0.549,0-0.986,0.271-1.172,0.724 c-0.185,0.455-0.061,0.956,0.333,1.342l9.934,9.744c0.334,0.327,0.676,0.396,0.904,0.396c0.56,0,1.155-0.443,1.155-1.266l0.002-3.91 l4.872,4.78c0.334,0.327,0.676,0.396,0.904,0.396c0.56,0,1.155-0.443,1.155-1.266l0.002-4.1h3.16c0.824,0,1.496-0.677,1.496-1.508 v-3.826c0-0.7-0.48-1.285-1.125-1.453h5.871c0.549,0,0.986-0.271,1.172-0.724C30.104,13.847,29.98,13.346,29.587,12.96z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="18.002" x2="18.002" y1="3.8481" y2="14.1812">
- <stop offset="0.4909" style="stop-color:#CDEDBD"/>
- <stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="0" style="stop-color:#CDEDBD"/>
+<stop offset="0.4909" style="stop-color:#CDEDBD"/>
+<stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="1" style="stop-color:#139900"/>
</linearGradient>
<path d="M28.887,13.674L18.953,3.93c-0.197-0.193-0.359-0.123-0.359,0.156l-0.002,4.592 c0,0.279-0.223,0.508-0.494,0.508h-0.721L12.02,3.93c-0.197-0.193-0.359-0.123-0.359,0.156l-0.002,4.592 c0,0.279-0.223,0.508-0.494,0.508h-0.6H7.498c-0.273,0-0.496,0.229-0.496,0.508v3.826c0,0.277,0.224,0.506,0.496,0.506h3.066h11.031 h7.152C29.021,14.025,29.084,13.867,28.887,13.674z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="17.3994" x2="17.3994" y1="5.978" y2="13.133">
- <stop offset="0" style="stop-color:#B2F56E"/>
- <stop offset="0.703" style="stop-color:#439020"/>
- <stop offset="0.9879" style="stop-color:#0D4D07"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.703" style="stop-color:#439020"/>
+<stop offset="0.9879" style="stop-color:#0D4D07"/>
+<stop offset="1" style="stop-color:#0D4D07"/>
</linearGradient>
<path d="M8.002,13.025v-2.84h3.162c0.824,0,1.494-0.676,1.494-1.508l0.002-2.719l4.309,4.227h1.129 c0.824,0,1.494-0.676,1.494-1.508l0.002-2.719l7.203,7.066H8.002z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="12.002" x2="12.002" y1="16.0352" y2="26.3801">
- <stop offset="0" style="stop-color:#CDEDBD"/>
- <stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="0" style="stop-color:#CDEDBD"/>
+<stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="1" style="stop-color:#139900"/>
</linearGradient>
<path d="M1.117,16.324l9.934,9.744c0.197,0.193,0.359,0.125,0.359-0.156l0.002-4.592 c0-0.279,0.223-0.508,0.494-0.508h0.721l5.357,5.256c0.197,0.193,0.359,0.125,0.359-0.156l0.002-4.592 c0-0.279,0.223-0.508,0.494-0.508h0.6h3.066c0.273,0,0.496-0.229,0.496-0.508v-3.826c0-0.277-0.224-0.506-0.496-0.506h-3.066H8.408 H1.256C0.982,15.973,0.92,16.131,1.117,16.324z" fill="url(#SVGID_3__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="12.6045" x2="12.6045" y1="16.9727" y2="24.1645">
- <stop offset="0" style="stop-color:#82C94C"/>
- <stop offset="0.2545" style="stop-color:#439020"/>
- <stop offset="0.5091" style="stop-color:#0D4D07"/>
+<stop offset="0" style="stop-color:#82C94C"/>
+<stop offset="0.2545" style="stop-color:#439020"/>
+<stop offset="0.5091" style="stop-color:#0D4D07"/>
+<stop offset="1" style="stop-color:#0D4D07"/>
</linearGradient>
<path d="M22.002,16.973v2.84H18.84c-0.824,0-1.494,0.678-1.494,1.508l-0.002,2.719l-4.309-4.227h-1.129 c-0.824,0-1.494,0.678-1.494,1.508l-0.002,2.719l-7.203-7.066H22.002z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="30" width="30" x="0.002"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,42 +1,39 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.0739">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.2545" style="stop-color:#4F88BD"/>
- <stop offset="0.7333" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#4F88BD"/>
+<stop offset="0.7333" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M30,2C18.142,2,9.945,7.973,9.945,30.001C9.945,52.03,18.145,58,30,58 c11.857,0,20.054-5.97,20.054-27.999C50.054,7.973,41.857,2,30,2z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.2363" y2="56.7637">
- <stop offset="0.1576" style="stop-color:#36B5FF"/>
- <stop offset="0.8242" style="stop-color:#1B66D8"/>
- <stop offset="1" style="stop-color:#2183E0"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="0.1576" style="stop-color:#36B5FF"/>
+<stop offset="0.8242" style="stop-color:#1B66D8"/>
+<stop offset="1" style="stop-color:#2183E0"/>
</linearGradient>
<path d="M30,56.764c-9.305,0-18.818-3.179-18.818-26.763C11.182,6.415,20.695,3.236,30,3.236 c9.306,0,18.817,3.179,18.817,26.765C48.817,53.585,39.306,56.764,30,56.764L30,56.764z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.6924" x2="42.3066" y1="30.2065" y2="30.2065">
- <stop offset="0" style="stop-color:#0B81FA"/>
- <stop offset="1" style="stop-color:#47DAFA"/>
+<stop offset="0" style="stop-color:#0B81FA"/>
+<stop offset="1" style="stop-color:#47DAFA"/>
</linearGradient>
<path d="M42.307,20.702L28.242,6.305v18.972l-7.728-7.912l-2.822,2.881l9.712,9.961l-9.712,9.96l2.815,2.879 l7.734-7.91v18.974l14.064-14.396l-9.287-9.506L42.307,20.702z M36.689,20.734l-4.49,4.59l-0.006-9.188L36.689,20.734z M36.689,39.686l-4.496,4.584l0.006-9.185L36.689,39.686z" fill="url(#SVGID_3_)"/>
<path d="M29.479,32.103l-8.971,9.175l-1.087-1.112l9.71-9.959l-9.71-9.96l1.091-1.113l8.967,9.179V9.339l11.1,11.363 l-9.287,9.504l9.287,9.506l-11.1,11.362V32.103z M30.955,47.297l7.464-7.61l-7.454-7.636L30.955,47.297z M30.965,28.353l7.454-7.618 l-7.464-7.632L30.965,28.353z" fill="#FFFFFF"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(2 0 0 2 0 0)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<rect height="33.866" opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
+<rect fill-opacity="0.35" height="33.866" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="260" x2="284" y1="655.9761" y2="655.9761">
- <stop offset="0" style="stop-color:#FF4D00"/>
- <stop offset="0.8424" style="stop-color:#CC1414"/>
- <stop offset="1" style="stop-color:#FF4D00"/>
+<stop offset="0" style="stop-color:#FF4D00"/>
+<stop offset="0.8424" style="stop-color:#CC1414"/>
+<stop offset="1" style="stop-color:#FF4D00"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="25.809,26.431 3,4.177 4.191,2.956 27,25.21 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_browser.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_browser.svg Thu May 27 13:10:59 2010 +0300
@@ -1,61 +1,63 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.998" x2="29.998" y1="57.6797" y2="2.0783">
- <stop offset="0" style="stop-color:#004E8C"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#004E8C"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M57.998,30.001C57.998,45.464,45.461,58,30,58C14.535,58,1.998,45.464,1.998,30.001 C1.998,14.54,14.535,2,30,2C45.461,2,57.998,14.54,57.998,30.001z" fill="url(#SVGID_1_)"/>
<radialGradient cx="26.9434" cy="12.7056" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="33.8669">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="29.999" cy="30.001" fill="url(#SVGID_2_)" r="27.282"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.999" x2="29.999" y1="2.4785" y2="57.4196">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#88D6EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#88D6EB"/>
</linearGradient>
-<path d="M30,2.718c-15.066,0-27.283,12.218-27.283,27.283c0,15.069,12.217,27.28,27.283,27.28 c15.07,0,27.281-12.211,27.281-27.28C57.281,14.937,45.07,2.718,30,2.718z M30,54.894c-14.166,0-25.691-11.524-25.691-25.688 C4.309,15.04,15.834,3.515,30,3.515S55.689,15.04,55.689,29.206C55.689,43.37,44.166,54.894,30,54.894z" fill="url(#SVGID_3_)" opacity="0.3"/>
+<path d="M30,2.718c-15.066,0-27.283,12.218-27.283,27.283c0,15.069,12.217,27.28,27.283,27.28 c15.07,0,27.281-12.211,27.281-27.28C57.281,14.937,45.07,2.718,30,2.718z M30,54.894c-14.166,0-25.691-11.524-25.691-25.688 C4.309,15.04,15.834,3.515,30,3.515S55.689,15.04,55.689,29.206C55.689,43.37,44.166,54.894,30,54.894z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="3.1621" x2="7.498" y1="33.7139" y2="33.7139">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M5.277,29.556C4.988,29.17,4.332,29.17,4.041,29.17c-0.57,0-0.873,0.406-0.879,0.804 v0.028v0.041c0,0.702,0.039,1.489,0.123,2.446c0.018,0.179,0.039,0.36,0.061,0.54l0.033,0.263c0.072,0.566,0.158,1.125,0.256,1.665 l0.043,0.237c0.043,0.213,0.084,0.424,0.129,0.633c0.117,0.53,0.26,1.08,0.434,1.687c0.025,0.087,0.049,0.175,0.07,0.26 c0.039,0.142,0.076,0.283,0.121,0.419l0.004,0.02l0.016,0.043c-0.002-0.011-0.01-0.03-0.012-0.048l1.564-0.106 c0.025-0.243,0.033-0.497,0.025-0.751C6.016,36.956,6,36.467,5.889,36.056l1.455-1.951l0.154-0.213v-0.264v-1.52v-0.331 l-0.232-0.232L5.277,29.556z" fill="url(#SVGID_4_)" opacity="0.3"/>
+<path d="M5.277,29.556C4.988,29.17,4.332,29.17,4.041,29.17c-0.57,0-0.873,0.406-0.879,0.804 v0.028v0.041c0,0.702,0.039,1.489,0.123,2.446c0.018,0.179,0.039,0.36,0.061,0.54l0.033,0.263c0.072,0.566,0.158,1.125,0.256,1.665 l0.043,0.237c0.043,0.213,0.084,0.424,0.129,0.633c0.117,0.53,0.26,1.08,0.434,1.687c0.025,0.087,0.049,0.175,0.07,0.26 c0.039,0.142,0.076,0.283,0.121,0.419l0.004,0.02l0.016,0.043c-0.002-0.011-0.01-0.03-0.012-0.048l1.564-0.106 c0.025-0.243,0.033-0.497,0.025-0.751C6.016,36.956,6,36.467,5.889,36.056l1.455-1.951l0.154-0.213v-0.264v-1.52v-0.331 l-0.232-0.232L5.277,29.556z" fill="url(#SVGID_4_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.5254" x2="56.9043" y1="25.7695" y2="25.7695">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M56.896,24.654c-0.02-0.103-0.039-0.176-0.057-0.25 c-0.016-0.055-0.027-0.109-0.037-0.162c-0.141-0.646-0.313-1.314-0.514-1.994l-0.023-0.074c-0.041-0.153-0.086-0.306-0.135-0.457 c-0.248-0.767-0.514-1.5-0.797-2.177c-0.035-0.085-0.074-0.163-0.109-0.245l-0.059-0.131c-0.268-0.619-0.568-1.238-0.883-1.833 l-0.041-0.077c-0.061-0.117-0.119-0.236-0.184-0.353c-0.385-0.695-0.789-1.358-1.199-1.974c-0.043-0.065-0.092-0.134-0.141-0.202 c-0.031-0.041-0.059-0.081-0.086-0.121c-0.395-0.571-0.807-1.126-1.236-1.656l-0.084-0.106c-0.059-0.071-0.115-0.146-0.176-0.218 c-0.498-0.596-1.023-1.174-1.566-1.72c-0.072-0.074-0.152-0.15-0.23-0.226l-0.064-0.062c-0.49-0.481-1.01-0.956-1.547-1.402 l-0.104-0.091c-0.055-0.048-0.107-0.096-0.164-0.139c-0.582-0.48-1.215-0.952-1.875-1.405c-0.08-0.055-0.164-0.109-0.248-0.162 l-0.1-0.066c-0.594-0.393-1.213-0.77-1.834-1.114l-0.098-0.055c-0.051-0.029-0.102-0.059-0.152-0.088 c-0.693-0.371-1.414-0.72-2.146-1.035L40.82,4.985l-0.199-0.083c-0.193-0.079-0.387-0.147-0.578-0.215 c-0.102-0.035-0.199-0.069-0.299-0.104l-0.371-0.138l-0.33,0.212c-0.223,0.14-1.098,0.64-1.613,0.934 c-0.574-0.077-1.961-0.251-3.359-0.386c0.432-0.042,1.025-0.09,1.869-0.146l0.117-1.573L35.994,3.47 c-0.051-0.014-0.102-0.025-0.152-0.037L35.723,3.41l-0.098-0.02c-0.857-0.172-1.662-0.297-2.461-0.38L33.16,3.009l-0.109-0.01 c-0.914-0.093-1.844-0.139-2.762-0.139c-0.809,0-1.648,0.042-2.564,0.13c-0.145,0.013-0.281,0.029-0.422,0.043 c-0.906,0.101-1.697,0.221-2.447,0.373L24.83,3.411l-0.018,0.003c-0.789,0.163-1.582,0.367-2.428,0.624 c-0.074,0.022-0.15,0.048-0.227,0.071l-0.17,0.056c-0.713,0.23-1.412,0.485-2.084,0.762c-0.057,0.023-0.094,0.037-0.131,0.051 l-0.102,0.041c-0.738,0.314-1.475,0.668-2.205,1.06c-0.078,0.041-0.156,0.087-0.232,0.13l-0.094,0.055 c-0.205,0.113-0.412,0.242-0.617,0.37L16.258,6.8l-1.461,0.893l1.623,0.542c0.242,0.082,0.504,0.123,0.773,0.123 c0.875,0,1.721-0.43,2.402-0.776c0.273-0.138,0.678-0.344,0.848-0.376c0.199,0.06,0.396,0.089,0.596,0.089 c0.746,0,1.354-0.401,1.893-0.754l0.145-0.094c0.174-0.057,0.473-0.167,1.07-0.391c0.607-0.229,1.717-0.645,2.01-0.715 c0.578-0.006,1.264-0.088,1.752-0.392c0.459,0.075,1.273,0.204,2.115,0.314C29.961,5.301,29.9,5.341,29.85,5.391 c-0.273,0.251-1.742,0.696-2.195,0.755c-0.848,0.106-1.186,0.532-1.322,0.871c-0.176,0.439-0.068,0.878,0.104,1.235 c-0.32,0.212-0.713,0.448-1.049,0.625c0-0.007,0.002-0.015,0.004-0.024c0.121-0.675,0.209-1.163-0.119-1.556 c-0.166-0.2-0.414-0.314-0.676-0.314c-0.387,0-0.688,0.239-0.93,0.473c-0.68,0.656-1.09,1.476-1.246,1.783l-0.027,0.059 l-0.025,0.044c-0.293,0.563-0.414,0.962-0.25,2.207c-0.074,0.051-0.287,0.132-0.582,0.132c-0.041,0-0.076-0.002-0.105-0.005 c-0.191-0.205-0.453-0.322-0.752-0.322l0,0c-0.684,0-1.619,0.771-2.773,2.292l-0.371,0.49l0.377,0.484l0.354,0.449 c-5.51,4.257-5.551,4.5-5.609,4.855c-0.01,0.032-0.057,0.18-0.123,0.383c-0.822,2.552-1.275,4.46-0.834,5.482 c1.025,2.368,2.182,4.579,3.68,4.701c0.133,0.011,0.277,0.017,0.434,0.017c1.373,0,3.6-0.416,4.668-0.635 c0.197,0.371,0.436,0.804,0.568,1.04l0.238,0.421l0.484-0.016c0,0,0.26-0.008,0.584-0.008c0.375,0,0.625,0.011,0.787,0.022 c0.584,1.708,1.699,5.643,1.492,6.459l-0.004,0.004c-1.885,2.821,0.4,6.499,1.494,8.269c0.088,0.14,0.168,0.266,0.232,0.374 c0.424,1.204,0.934,2.002,2.02,2.002c0.078,0,0.16-0.005,0.244-0.009c0.063-0.004,0.125-0.007,0.191-0.007 c0.121,0,0.207,0.014,0.293,0.045l0.1,0.036l0.105,0.01c0.205,0.017,0.4,0.045,0.592,0.071c0.334,0.047,0.68,0.095,1.031,0.095 c0.941,0,1.689-0.357,2.336-1.119c0.021-0.004,0.045-0.005,0.068-0.008c0.678-0.095,0.932-0.433,1.018-0.737 c0.051-0.05,0.117-0.112,0.172-0.164c0.268-0.244,0.584-0.537,0.803-0.88c0.1-0.059,0.213-0.125,0.338-0.2 c0.219-0.134,0.465-0.283,0.658-0.382c0.172-0.052,0.322-0.153,0.436-0.293c0.273-0.335,0.217-0.717,0.172-1.023 c-0.047-0.318-0.092-0.642,0.078-0.99c0.965-0.465,2.68-1.608,2.957-1.796v0.022c-0.02,0.153-0.064,0.563-0.133,0.822 c-0.363,0.366-0.67,0.919-0.766,1.105l-0.063,0.121l-0.02,0.137c-0.023,0.18-0.123,1.11,0.4,1.712 c0.264,0.301,0.641,0.468,1.063,0.468c0.131,0,0.271-0.017,0.416-0.05c1.342-0.304,3.723-3.531,3.916-5.312 c0.096-0.859-0.24-1.534-0.918-1.852l-0.506-0.24l-0.398,0.396l-1.469,1.471c-0.498,0.046-0.887,0.193-1.148,0.425 c0.016-0.627-0.047-1.27-0.113-1.896c-0.201-1.891-0.24-3.097,0.92-3.915l0.059-0.043l0.051-0.051 c0.418-0.426,0.883-0.799,1.373-1.193c1.15-0.924,2.34-1.878,3.047-3.604l0.031-0.074c0.227-0.59,0.568-1.478,0.104-2.158 c-0.115-0.167-0.359-0.426-0.814-0.518c0.604-0.242,1.066-0.435,1.111-0.452l0.141-0.059l0.109-0.104l2.48-2.381l0.363-0.35 l-0.16-0.479c-0.021-0.062-0.158-0.438-0.537-0.977c0.725,0.099,1.344,0.272,1.549,0.427c0.074,0.163,0.221,0.519,0.379,0.892 c2.732,6.435,3.115,6.766,3.824,6.777c0.027,0,0.049,0.002,0.066,0.005c0.057,0.002,0.109,0.006,0.156,0.006 c0.404,0,0.635-0.207,0.736-0.331c0.297-0.357,0.215-0.795,0.184-0.959l-0.012-0.056c-0.033-0.384-0.012-2.113,0.045-3.536 c0.004,0.004,0.006,0.008,0.008,0.013l1.463-0.58L56.896,24.654z M35.391,16.784c-0.113,0.005-0.238,0.012-0.367,0.017 c-0.422,0.018-0.902,0.04-1.377,0.04c-1.25,0-1.533-0.155-1.564-0.171c-0.146-0.107-0.297-0.188-0.457-0.246 c0.285-0.063,0.607-0.279,0.939-0.924c0.33,0.636,0.773,1.198,1.457,1.198c0.184,0,0.363-0.045,0.531-0.131 C34.783,16.568,35.162,16.7,35.391,16.784z M34.9,13.303c-0.094,0-0.172-0.005-0.23-0.009c0.064-0.167,0.141-0.264,0.201-0.319 c0.08,0.122,0.186,0.229,0.305,0.32C35.078,13.301,34.986,13.303,34.9,13.303z M29.932,14.974c0.428,0.837,0.744,1.198,0.994,1.355 c-0.619,0.049-1.086,0.443-1.469,0.817c-0.271-0.09-0.74-0.374-0.879-0.572c-0.084-0.117-0.18-0.217-0.287-0.304 C28.969,16.077,29.564,15.447,29.932,14.974z M27.57,14.355l-0.889-0.043l-2.975-0.146c0.361-0.299,0.707-0.579,0.91-0.745 c0.055-0.02,0.27-0.078,0.793-0.078c0.314,0,0.617,0.021,0.809,0.037L27.57,14.355z" fill="url(#SVGID_5_)" opacity="0.3"/>
+<path d="M56.896,24.654c-0.02-0.103-0.039-0.176-0.057-0.25 c-0.016-0.055-0.027-0.109-0.037-0.162c-0.141-0.646-0.313-1.314-0.514-1.994l-0.023-0.074c-0.041-0.153-0.086-0.306-0.135-0.457 c-0.248-0.767-0.514-1.5-0.797-2.177c-0.035-0.085-0.074-0.163-0.109-0.245l-0.059-0.131c-0.268-0.619-0.568-1.238-0.883-1.833 l-0.041-0.077c-0.061-0.117-0.119-0.236-0.184-0.353c-0.385-0.695-0.789-1.358-1.199-1.974c-0.043-0.065-0.092-0.134-0.141-0.202 c-0.031-0.041-0.059-0.081-0.086-0.121c-0.395-0.571-0.807-1.126-1.236-1.656l-0.084-0.106c-0.059-0.071-0.115-0.146-0.176-0.218 c-0.498-0.596-1.023-1.174-1.566-1.72c-0.072-0.074-0.152-0.15-0.23-0.226l-0.064-0.062c-0.49-0.481-1.01-0.956-1.547-1.402 l-0.104-0.091c-0.055-0.048-0.107-0.096-0.164-0.139c-0.582-0.48-1.215-0.952-1.875-1.405c-0.08-0.055-0.164-0.109-0.248-0.162 l-0.1-0.066c-0.594-0.393-1.213-0.77-1.834-1.114l-0.098-0.055c-0.051-0.029-0.102-0.059-0.152-0.088 c-0.693-0.371-1.414-0.72-2.146-1.035L40.82,4.985l-0.199-0.083c-0.193-0.079-0.387-0.147-0.578-0.215 c-0.102-0.035-0.199-0.069-0.299-0.104l-0.371-0.138l-0.33,0.212c-0.223,0.14-1.098,0.64-1.613,0.934 c-0.574-0.077-1.961-0.251-3.359-0.386c0.432-0.042,1.025-0.09,1.869-0.146l0.117-1.573L35.994,3.47 c-0.051-0.014-0.102-0.025-0.152-0.037L35.723,3.41l-0.098-0.02c-0.857-0.172-1.662-0.297-2.461-0.38L33.16,3.009l-0.109-0.01 c-0.914-0.093-1.844-0.139-2.762-0.139c-0.809,0-1.648,0.042-2.564,0.13c-0.145,0.013-0.281,0.029-0.422,0.043 c-0.906,0.101-1.697,0.221-2.447,0.373L24.83,3.411l-0.018,0.003c-0.789,0.163-1.582,0.367-2.428,0.624 c-0.074,0.022-0.15,0.048-0.227,0.071l-0.17,0.056c-0.713,0.23-1.412,0.485-2.084,0.762c-0.057,0.023-0.094,0.037-0.131,0.051 l-0.102,0.041c-0.738,0.314-1.475,0.668-2.205,1.06c-0.078,0.041-0.156,0.087-0.232,0.13l-0.094,0.055 c-0.205,0.113-0.412,0.242-0.617,0.37L16.258,6.8l-1.461,0.893l1.623,0.542c0.242,0.082,0.504,0.123,0.773,0.123 c0.875,0,1.721-0.43,2.402-0.776c0.273-0.138,0.678-0.344,0.848-0.376c0.199,0.06,0.396,0.089,0.596,0.089 c0.746,0,1.354-0.401,1.893-0.754l0.145-0.094c0.174-0.057,0.473-0.167,1.07-0.391c0.607-0.229,1.717-0.645,2.01-0.715 c0.578-0.006,1.264-0.088,1.752-0.392c0.459,0.075,1.273,0.204,2.115,0.314C29.961,5.301,29.9,5.341,29.85,5.391 c-0.273,0.251-1.742,0.696-2.195,0.755c-0.848,0.106-1.186,0.532-1.322,0.871c-0.176,0.439-0.068,0.878,0.104,1.235 c-0.32,0.212-0.713,0.448-1.049,0.625c0-0.007,0.002-0.015,0.004-0.024c0.121-0.675,0.209-1.163-0.119-1.556 c-0.166-0.2-0.414-0.314-0.676-0.314c-0.387,0-0.688,0.239-0.93,0.473c-0.68,0.656-1.09,1.476-1.246,1.783l-0.027,0.059 l-0.025,0.044c-0.293,0.563-0.414,0.962-0.25,2.207c-0.074,0.051-0.287,0.132-0.582,0.132c-0.041,0-0.076-0.002-0.105-0.005 c-0.191-0.205-0.453-0.322-0.752-0.322l0,0c-0.684,0-1.619,0.771-2.773,2.292l-0.371,0.49l0.377,0.484l0.354,0.449 c-5.51,4.257-5.551,4.5-5.609,4.855c-0.01,0.032-0.057,0.18-0.123,0.383c-0.822,2.552-1.275,4.46-0.834,5.482 c1.025,2.368,2.182,4.579,3.68,4.701c0.133,0.011,0.277,0.017,0.434,0.017c1.373,0,3.6-0.416,4.668-0.635 c0.197,0.371,0.436,0.804,0.568,1.04l0.238,0.421l0.484-0.016c0,0,0.26-0.008,0.584-0.008c0.375,0,0.625,0.011,0.787,0.022 c0.584,1.708,1.699,5.643,1.492,6.459l-0.004,0.004c-1.885,2.821,0.4,6.499,1.494,8.269c0.088,0.14,0.168,0.266,0.232,0.374 c0.424,1.204,0.934,2.002,2.02,2.002c0.078,0,0.16-0.005,0.244-0.009c0.063-0.004,0.125-0.007,0.191-0.007 c0.121,0,0.207,0.014,0.293,0.045l0.1,0.036l0.105,0.01c0.205,0.017,0.4,0.045,0.592,0.071c0.334,0.047,0.68,0.095,1.031,0.095 c0.941,0,1.689-0.357,2.336-1.119c0.021-0.004,0.045-0.005,0.068-0.008c0.678-0.095,0.932-0.433,1.018-0.737 c0.051-0.05,0.117-0.112,0.172-0.164c0.268-0.244,0.584-0.537,0.803-0.88c0.1-0.059,0.213-0.125,0.338-0.2 c0.219-0.134,0.465-0.283,0.658-0.382c0.172-0.052,0.322-0.153,0.436-0.293c0.273-0.335,0.217-0.717,0.172-1.023 c-0.047-0.318-0.092-0.642,0.078-0.99c0.965-0.465,2.68-1.608,2.957-1.796v0.022c-0.02,0.153-0.064,0.563-0.133,0.822 c-0.363,0.366-0.67,0.919-0.766,1.105l-0.063,0.121l-0.02,0.137c-0.023,0.18-0.123,1.11,0.4,1.712 c0.264,0.301,0.641,0.468,1.063,0.468c0.131,0,0.271-0.017,0.416-0.05c1.342-0.304,3.723-3.531,3.916-5.312 c0.096-0.859-0.24-1.534-0.918-1.852l-0.506-0.24l-0.398,0.396l-1.469,1.471c-0.498,0.046-0.887,0.193-1.148,0.425 c0.016-0.627-0.047-1.27-0.113-1.896c-0.201-1.891-0.24-3.097,0.92-3.915l0.059-0.043l0.051-0.051 c0.418-0.426,0.883-0.799,1.373-1.193c1.15-0.924,2.34-1.878,3.047-3.604l0.031-0.074c0.227-0.59,0.568-1.478,0.104-2.158 c-0.115-0.167-0.359-0.426-0.814-0.518c0.604-0.242,1.066-0.435,1.111-0.452l0.141-0.059l0.109-0.104l2.48-2.381l0.363-0.35 l-0.16-0.479c-0.021-0.062-0.158-0.438-0.537-0.977c0.725,0.099,1.344,0.272,1.549,0.427c0.074,0.163,0.221,0.519,0.379,0.892 c2.732,6.435,3.115,6.766,3.824,6.777c0.027,0,0.049,0.002,0.066,0.005c0.057,0.002,0.109,0.006,0.156,0.006 c0.404,0,0.635-0.207,0.736-0.331c0.297-0.357,0.215-0.795,0.184-0.959l-0.012-0.056c-0.033-0.384-0.012-2.113,0.045-3.536 c0.004,0.004,0.006,0.008,0.008,0.013l1.463-0.58L56.896,24.654z M35.391,16.784c-0.113,0.005-0.238,0.012-0.367,0.017 c-0.422,0.018-0.902,0.04-1.377,0.04c-1.25,0-1.533-0.155-1.564-0.171c-0.146-0.107-0.297-0.188-0.457-0.246 c0.285-0.063,0.607-0.279,0.939-0.924c0.33,0.636,0.773,1.198,1.457,1.198c0.184,0,0.363-0.045,0.531-0.131 C34.783,16.568,35.162,16.7,35.391,16.784z M34.9,13.303c-0.094,0-0.172-0.005-0.23-0.009c0.064-0.167,0.141-0.264,0.201-0.319 c0.08,0.122,0.186,0.229,0.305,0.32C35.078,13.301,34.986,13.303,34.9,13.303z M29.932,14.974c0.428,0.837,0.744,1.198,0.994,1.355 c-0.619,0.049-1.086,0.443-1.469,0.817c-0.271-0.09-0.74-0.374-0.879-0.572c-0.084-0.117-0.18-0.217-0.287-0.304 C28.969,16.077,29.564,15.447,29.932,14.974z M27.57,14.355l-0.889-0.043l-2.975-0.146c0.361-0.299,0.707-0.579,0.91-0.745 c0.055-0.02,0.27-0.078,0.793-0.078c0.314,0,0.617,0.021,0.809,0.037L27.57,14.355z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="27.8105" cy="3.104" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="30.9363">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
<path d="M3.957,29.985c0,0,0,0,0,0.002c0,0.01,0.002,0.014,0.002,0.021c0,0.813,0.051,1.615,0.119,2.41 c0.023,0.259,0.063,0.52,0.092,0.781c0.07,0.544,0.15,1.082,0.248,1.615c0.055,0.283,0.107,0.567,0.166,0.845 c0.123,0.553,0.266,1.097,0.422,1.632c0.063,0.222,0.113,0.447,0.184,0.663C5.197,37.978,5.207,38,5.213,38.023 c0.021-0.212,0.027-0.427,0.021-0.648c-0.053-1.568-0.303-1.367-0.303-1.367l1.771-2.381v-1.52L4.625,30.03 C4.625,30.03,3.959,29.926,3.957,29.985z" fill="url(#SVGID_6_)"/>
<radialGradient cx="27.8096" cy="3.1069" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="30.9388">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
<path d="M20.631,6.433c0.766,0.252,1.395-0.26,2.109-0.717c0.252-0.051,3.055-1.17,3.357-1.17 c0.301,0,1.32-0.04,1.572-0.444c0,0,4.387,0.763,5.049,0.508c0.359-0.141,1.869-0.26,3.17-0.346 c-0.074-0.016-0.141-0.037-0.213-0.052c-0.07-0.014-0.141-0.026-0.211-0.04c-0.814-0.163-1.637-0.295-2.475-0.378 c-0.006,0-0.012,0-0.02-0.004c-0.881-0.088-1.775-0.135-2.682-0.135c-0.84,0-1.67,0.05-2.492,0.127 c-0.143,0.015-0.287,0.031-0.434,0.046c-0.793,0.086-1.578,0.203-2.35,0.357C25,4.191,24.986,4.192,24.973,4.193 c-0.801,0.166-1.584,0.371-2.355,0.606c-0.133,0.039-0.26,0.085-0.393,0.125c-0.684,0.221-1.357,0.466-2.02,0.737 c-0.076,0.034-0.156,0.063-0.234,0.095c-0.727,0.31-1.438,0.654-2.129,1.024c-0.104,0.056-0.203,0.116-0.307,0.175 c-0.299,0.165-0.576,0.349-0.861,0.525C18.098,7.957,19.877,6.178,20.631,6.433z" fill="url(#SVGID_7_)"/>
<radialGradient cx="27.8066" cy="3.105" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="30.9346">
- <stop offset="0.3152" style="stop-color:#B2F56E"/>
- <stop offset="0.7273" style="stop-color:#5CBF1B"/>
- <stop offset="1" style="stop-color:#227A00"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.3152" style="stop-color:#B2F56E"/>
+<stop offset="0.7273" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
<path d="M56.111,24.787c-0.027-0.133-0.064-0.258-0.09-0.388c-0.141-0.65-0.307-1.292-0.494-1.924 c-0.051-0.171-0.102-0.346-0.154-0.515c-0.23-0.718-0.484-1.426-0.773-2.113c-0.051-0.121-0.109-0.24-0.16-0.358 c-0.266-0.606-0.553-1.201-0.861-1.782c-0.07-0.139-0.143-0.282-0.217-0.417c-0.365-0.657-0.75-1.297-1.166-1.919 c-0.068-0.107-0.15-0.21-0.223-0.316c-0.379-0.553-0.777-1.086-1.195-1.605c-0.086-0.103-0.166-0.209-0.254-0.313 c-0.482-0.578-0.986-1.135-1.518-1.669c-0.09-0.092-0.188-0.183-0.281-0.272c-0.482-0.475-0.984-0.933-1.506-1.369 c-0.09-0.073-0.17-0.151-0.26-0.223c-0.584-0.478-1.195-0.933-1.822-1.362c-0.109-0.075-0.223-0.148-0.334-0.219 c-0.578-0.384-1.174-0.747-1.785-1.085c-0.084-0.045-0.16-0.094-0.244-0.141c-0.68-0.363-1.371-0.696-2.082-1.003 c-0.125-0.053-0.256-0.103-0.379-0.155c-0.277-0.115-0.563-0.206-0.844-0.309c-0.334,0.213-1.881,1.088-1.881,1.088 s-6.717-0.917-7.174-0.462c-0.459,0.462-2.248,0.929-2.656,0.981c-0.406,0.053-1.25,0.27-0.238,1.518 c-0.152,0.155-3.039,2.165-3.039,1.25c0-0.916,0.645-2.552-0.26-1.676c-0.652,0.631-1.039,1.483-1.127,1.643 c-0.211,0.409-0.342,0.604-0.188,1.773c0.154,1.171-1.869,1.164-2.004,0.862c-0.363-0.813-2.363,1.821-2.363,1.821l0.844,1.082 c0,0-5.893,4.539-5.941,4.844c-0.053,0.307-1.523,4.247-1.016,5.418c0.512,1.174,1.797,4.127,3.016,4.226 c1.598,0.131,5.469-0.73,5.469-0.73c0.104,0.257,0.834,1.556,0.834,1.556s1.896-0.063,2.004,0.143 c0.035,0.069,2.287,6.693,1.543,7.571c-1.773,2.656,1.014,6.548,1.789,7.864c0.775,2.262,1.277,1.25,2.297,1.62 c1.258,0.108,2.318,0.573,3.385-0.8c0.309-0.255,0.836-0.054,0.836-0.408c0-0.198,0.912-0.781,1.146-1.33 c0.248-0.114,0.881-0.542,1.313-0.748c0.391-0.025-0.371-1.071,0.402-2.177c0.836-0.33,3.088-1.849,3.088-1.849 c0.104-2.227-1.094-4.979,1.141-6.559c1.445-1.47,3.336-2.306,4.256-4.544c0.252-0.661,0.818-2.014-0.813-1.609 c-1.531,0.386-3.238,0.474-2.432-0.201c-0.092-0.828-1.111-1.218-2.023-2.026c-0.473-1.117-1.215-3.108-1.215-3.108l-1.621-2.463 l0.203-0.508l1.926,2.836l1.926,2.328c0.707,2.33,1.314,2.535,1.314,2.535c1.068-0.377,3.596-1.419,3.596-1.419l2.484-2.381 c0,0-0.256-0.761-1.264-1.722l-0.764-0.455c-0.166,0.467-1.049,0.642-1.049,0.642l-2.145-2.564l0.801-0.162l0.613,1.171l1.473,0.509 c0,0,0.408-0.298,1.166,0.484c0.619-0.051,3.029,0.117,3.594,0.832c0.109,0.142,2.986,7.325,3.555,7.336 c0.248,0.001,0.43,0.099,0.348-0.335c-0.102-0.205,0-4.717,0.154-5.683c0.385-0.821,0.445-0.002,1.357,1.553 C56.121,24.862,56.119,24.824,56.111,24.787z M30.797,7.378c0.201-0.6,1.367-0.804,1.367-0.804s-0.334,0.618-0.258,0.937 c0.08,0.322-0.533,0.524-0.6,1.282c-0.066,0.755-1.459,0.313-1.574,0.047C29.617,8.577,30.592,7.977,30.797,7.378z M35.793,17.571 c-0.865,0-3.455,0.257-4.17-0.253c-0.711-0.508-1.266,0.052-1.781,0.562c-0.334,0.331-1.559-0.339-1.916-0.848 c-0.355-0.509-1.553-0.472-1.553-0.472l0.271-1.452l-3.445-0.167l-1.957,0.574l-1.844,0.052l1.031-0.491l1.287-0.304 c0,0,1.867-1.536,2.43-1.993c0.475-0.388,2.365-0.169,2.365-0.169l2.074,1.497c0,0-0.459,1.174-0.662,1.426 c0.76-0.05,1.658-1.436,1.658-1.436c-1.621-1.488-1.555-1.992-1.555-1.992l2.133,1.498l0.021,0.013c0,0,0.865,2.035,1.225,2.035 c0.352,0,0.809-1.401,0.809-1.401l0.609-0.153c0.27,0.642,0.773,2.094,1.381,1.754c0.35-0.193,0.928-0.017,1.588,0.236 c0.664,0.255,1.115-0.137,1.654,0.337C37.381,18.519,36.15,17.674,35.793,17.571z M37.148,14.068c-0.891-0.339-3.9,0.766-3.229-1.04 c0.359-0.975,1.281-1.179,1.598-0.531c0.082,0.267,1.084,0.679,1.076,0.117c-0.006-0.562,1.01-0.86,1.154-0.441 C37.207,12.563,39.863,14.589,37.148,14.068z M42.816,15.78c-0.492-0.397,0.223-0.738-0.506-1.359 c-1.041-0.895-1.855-1.278-0.436-2.002c1.754-0.221,0.283,0.559,0.576,1.027c0.156,0.247,1.039,1.08,1.73,2.103 C44.756,16.397,43.307,16.175,42.816,15.78z" fill="url(#SVGID_8_)"/>
<radialGradient cx="27.8125" cy="3.1055" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="30.9328">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
<path d="M43.523,38.979l-1.689,1.688c0,0-1.016,0-1.064,0.406c-0.023,0.174-0.082,0.927-0.252,1.315 c-0.338,0.235-0.742,1.012-0.742,1.012s-0.211,1.504,0.912,1.249C41.809,44.395,45.256,39.795,43.523,38.979z" fill="url(#SVGID_9_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calculator.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calculator.svg Thu May 27 13:10:59 2010 +0300
@@ -1,71 +1,75 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="20.2573" y2="56.9514">
- <stop offset="0" style="stop-color:#B5B9BC"/>
- <stop offset="0.8182" style="stop-color:#7C7E87"/>
- <stop offset="1" style="stop-color:#94979D"/>
+<stop offset="0" style="stop-color:#B5B9BC"/>
+<stop offset="0.8182" style="stop-color:#7C7E87"/>
+<stop offset="1" style="stop-color:#94979D"/>
</linearGradient>
<path d="M8.918,20.754v34.767C8.918,56.336,9.58,57,10.396,57h39.207c0.816,0,1.479-0.664,1.479-1.479V20.754 H8.918z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="20.2573" y2="56.9514">
- <stop offset="0" style="stop-color:#6B6B6B"/>
- <stop offset="0.7212" style="stop-color:#363636"/>
- <stop offset="0.9636" style="stop-color:#5E5E5E"/>
+<stop offset="0" style="stop-color:#6B6B6B"/>
+<stop offset="0.7212" style="stop-color:#363636"/>
+<stop offset="0.9636" style="stop-color:#5E5E5E"/>
+<stop offset="1" style="stop-color:#5E5E5E"/>
</linearGradient>
<path d="M50.344,20.754v0.739V54.78v0.74c0,0.408-0.332,0.74-0.74,0.74H10.396 c-0.404,0-0.738-0.332-0.738-0.74v-0.74V21.493v-0.739h-0.74v34.767C8.918,56.336,9.58,57,10.396,57h39.207 c0.816,0,1.479-0.664,1.479-1.479V20.754H50.344z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="20.2671" y2="56.2123">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#CED3D6"/>
- <stop offset="0.6606" style="stop-color:#CEDBE0"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#CED3D6"/>
+<stop offset="0.6606" style="stop-color:#CEDBE0"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
-<path d="M49.604,21.119v34.402H10.447l0.021-34.767H9.658v34.767 c0,0.409,0.381,0.74,0.789,0.74h39.156c0.408,0,0.738-0.331,0.738-0.74V21.119H49.604z" fill="url(#SVGID_3_)" opacity="0.6"/>
+<path d="M49.604,21.119v34.402H10.447l0.021-34.767H9.658v34.767 c0,0.409,0.381,0.74,0.789,0.74h39.156c0.408,0,0.738-0.331,0.738-0.74V21.119H49.604z" fill="url(#SVGID_3_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="2.9741" y2="20.728">
- <stop offset="0" style="stop-color:#B5B9BC"/>
- <stop offset="0.8182" style="stop-color:#7C7E87"/>
- <stop offset="1" style="stop-color:#94979D"/>
+<stop offset="0" style="stop-color:#B5B9BC"/>
+<stop offset="0.8182" style="stop-color:#7C7E87"/>
+<stop offset="1" style="stop-color:#94979D"/>
</linearGradient>
<path d="M51.082,20.754V4.451C51.107,3.649,50.443,3,49.627,3H10.4C9.584,3,8.918,3.649,8.918,4.451v16.303 H51.082z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30.001" x2="30.001" y1="3.7144" y2="20.729">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#CED3D6"/>
- <stop offset="0.6606" style="stop-color:#CEDBE0"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#CED3D6"/>
+<stop offset="0.6606" style="stop-color:#CEDBE0"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
-<path d="M50.16,3.96c-0.139-0.142-0.328-0.221-0.533-0.221H10.4 c-0.408,0-0.742,0.319-0.742,0.711v0.74v14.824v0.74h40.684l0.002-15.586v-0.74C50.348,4.254,50.281,4.088,50.16,3.96z M49.604,5.167v14.847H10.396V4.451l39.23,0.029L49.604,5.167z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M50.16,3.96c-0.139-0.142-0.328-0.221-0.533-0.221H10.4 c-0.408,0-0.742,0.319-0.742,0.711v0.74v14.824v0.74h40.684l0.002-15.586v-0.74C50.348,4.254,50.281,4.088,50.16,3.96z M49.604,5.167v14.847H10.396V4.451l39.23,0.029L49.604,5.167z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="2.9741" y2="20.728">
- <stop offset="0" style="stop-color:#6B6B6B"/>
- <stop offset="0.7212" style="stop-color:#363636"/>
- <stop offset="0.9636" style="stop-color:#5E5E5E"/>
+<stop offset="0" style="stop-color:#6B6B6B"/>
+<stop offset="0.7212" style="stop-color:#363636"/>
+<stop offset="0.9636" style="stop-color:#5E5E5E"/>
+<stop offset="1" style="stop-color:#5E5E5E"/>
</linearGradient>
<path d="M49.627,3H10.4C9.584,3,8.918,3.649,8.918,4.451v16.303h0.74v-0.74V5.19v-0.74 c0-0.392,0.334-0.711,0.742-0.711h39.227c0.205,0,0.395,0.079,0.533,0.221c0.121,0.127,0.188,0.294,0.184,0.467v0.74l0,0 l-0.002,15.586h0.74V4.451C51.107,3.649,50.443,3,49.627,3z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.001" x2="30.001" y1="6.7217" y2="17.1228">
- <stop offset="0" style="stop-color:#686C6E"/>
- <stop offset="1" style="stop-color:#CAD3D6"/>
+<stop offset="0" style="stop-color:#686C6E"/>
+<stop offset="1" style="stop-color:#CAD3D6"/>
</linearGradient>
-<path d="M14.098,17.055c-0.816,0-1.48-0.678-1.48-1.509V8.208c0-0.833,0.664-1.509,1.48-1.509 h31.805c0.816,0,1.482,0.676,1.482,1.509v7.337c0,0.831-0.666,1.509-1.482,1.509H14.098z" fill="url(#SVGID_7_)" opacity="0.4"/>
+<path d="M14.098,17.055c-0.816,0-1.48-0.678-1.48-1.509V8.208c0-0.833,0.664-1.509,1.48-1.509 h31.805c0.816,0,1.482,0.676,1.482,1.509v7.337c0,0.831-0.666,1.509-1.482,1.509H14.098z" fill="url(#SVGID_7_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="29.998" x2="29.998" y1="7.4897" y2="16.4665">
- <stop offset="0" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#2E2E2E"/>
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
<path d="M46.637,15.545c0,0.417-0.334,0.754-0.742,0.754H14.098c-0.408,0-0.738-0.337-0.738-0.754V8.208 c0-0.417,0.33-0.755,0.738-0.755h31.797c0.408,0,0.742,0.338,0.742,0.755V15.545z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.9961" x2="29.9961" y1="-5.1528" y2="20.6866">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#30A4D5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#30A4D5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="7.337" width="31.797" x="14.098" y="8.208"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.9961" x2="29.9961" y1="-0.4434" y2="18.2631">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#4FADD5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#4FADD5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<polygon fill="url(#SVGID_10_)" points="14.098,11.63 45.895,10.364 45.895,8.208 14.098,8.208 "/>
<path d="M25.531,14.36H22.34v-0.551h1.158v-3.681l-1.158,0.215V9.792l1.596-0.525h0.436v4.542h1.16V14.36z" fill="#FFFFFF"/>
@@ -75,189 +79,198 @@
<path d="M42.4,11.122h0.172c0.549,0,0.969,0.137,1.266,0.405c0.293,0.271,0.441,0.654,0.441,1.152 c0,0.57-0.152,1-0.451,1.284c-0.301,0.284-0.75,0.426-1.35,0.426c-0.438,0-0.828-0.049-1.17-0.147v-0.595 c0.395,0.103,0.77,0.155,1.123,0.155c0.299,0,0.535-0.083,0.699-0.246c0.166-0.163,0.25-0.446,0.25-0.848 c0-0.332-0.094-0.583-0.279-0.749c-0.188-0.169-0.467-0.251-0.84-0.251c-0.246,0-0.494,0.011-0.738,0.038V9.27h2.625v0.547H42.4 V11.122z" fill="#FFFFFF"/>
<circle cx="30.79" cy="13.831" fill="#FFFFFF" r="0.595"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="43.3145" x2="43.3145" y1="45.8735" y2="52.5934">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M41.467,52.562c-0.816,0-1.48-0.664-1.48-1.48v-3.698c0-0.815,0.664-1.479,1.48-1.479 h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H41.467z" fill="url(#SVGID_11_)" opacity="0.8"/>
-<path d="M45.164,52.562h-3.697c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.816,0.664,1.48,1.48,1.48 h3.697c0.816,0,1.479-0.664,1.479-1.48v-0.74C46.643,51.897,45.98,52.562,45.164,52.562z" fill="#231F20" opacity="0.4"/>
+<path d="M41.467,52.562c-0.816,0-1.48-0.664-1.48-1.48v-3.698c0-0.815,0.664-1.479,1.48-1.479 h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H41.467z" fill="url(#SVGID_11_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M45.164,52.562h-3.697c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.816,0.664,1.48,1.48,1.48 h3.697c0.816,0,1.479-0.664,1.479-1.48v-0.74C46.643,51.897,45.98,52.562,45.164,52.562z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="43.3154" x2="43.3154" y1="46.5791" y2="51.9528">
- <stop offset="0" style="stop-color:#F0653D"/>
- <stop offset="0.103" style="stop-color:#C94832"/>
- <stop offset="0.7515" style="stop-color:#89181F"/>
- <stop offset="1" style="stop-color:#961A22"/>
+<stop offset="0" style="stop-color:#F0653D"/>
+<stop offset="0.103" style="stop-color:#C94832"/>
+<stop offset="0.7515" style="stop-color:#89181F"/>
+<stop offset="1" style="stop-color:#961A22"/>
</linearGradient>
<path d="M45.904,51.082c0,0.41-0.332,0.74-0.74,0.74h-3.697c-0.408,0-0.74-0.33-0.74-0.74v-3.698 c0-0.409,0.332-0.74,0.74-0.74h3.697c0.408,0,0.74,0.331,0.74,0.74V51.082z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="34.4385" x2="34.4385" y1="45.8735" y2="52.5934">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M32.592,52.562c-0.818,0-1.482-0.664-1.482-1.48v-3.698 c0-0.815,0.664-1.479,1.482-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H32.592z" fill="url(#SVGID_13_)" opacity="0.8"/>
-<path d="M36.289,52.562h-3.697c-0.818,0-1.482-0.664-1.482-1.48v0.74c0,0.816,0.664,1.48,1.482,1.48 h3.697c0.816,0,1.479-0.664,1.479-1.48v-0.74C37.768,51.897,37.105,52.562,36.289,52.562z" fill="#231F20" opacity="0.4"/>
+<path d="M32.592,52.562c-0.818,0-1.482-0.664-1.482-1.48v-3.698 c0-0.815,0.664-1.479,1.482-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H32.592z" fill="url(#SVGID_13_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M36.289,52.562h-3.697c-0.818,0-1.482-0.664-1.482-1.48v0.74c0,0.816,0.664,1.48,1.482,1.48 h3.697c0.816,0,1.479-0.664,1.479-1.48v-0.74C37.768,51.897,37.105,52.562,36.289,52.562z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="34.4385" x2="34.4385" y1="46.5791" y2="51.9528">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B6C3C7"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B6C3C7"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M37.027,51.082c0,0.41-0.33,0.74-0.738,0.74h-3.697c-0.412,0-0.742-0.33-0.742-0.74v-3.698 c0-0.409,0.33-0.74,0.742-0.74h3.697c0.408,0,0.738,0.331,0.738,0.74V51.082z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="25.5625" x2="25.5625" y1="45.8735" y2="52.5934">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.713,52.562c-0.816,0-1.479-0.664-1.479-1.48v-3.698 c0-0.815,0.662-1.479,1.479-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H23.713z" fill="url(#SVGID_15_)" opacity="0.8"/>
-<path d="M27.412,52.562h-3.699c-0.816,0-1.479-0.664-1.479-1.48v0.74c0,0.816,0.662,1.48,1.479,1.48 h3.699c0.816,0,1.479-0.664,1.479-1.48v-0.74C28.891,51.897,28.229,52.562,27.412,52.562z" fill="#231F20" opacity="0.4"/>
+<path d="M23.713,52.562c-0.816,0-1.479-0.664-1.479-1.48v-3.698 c0-0.815,0.662-1.479,1.479-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H23.713z" fill="url(#SVGID_15_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M27.412,52.562h-3.699c-0.816,0-1.479-0.664-1.479-1.48v0.74c0,0.816,0.662,1.48,1.479,1.48 h3.699c0.816,0,1.479-0.664,1.479-1.48v-0.74C28.891,51.897,28.229,52.562,27.412,52.562z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="25.5615" x2="25.5615" y1="46.5791" y2="51.9528">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B6C3C7"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B6C3C7"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M28.15,51.082c0,0.41-0.33,0.74-0.738,0.74h-3.699c-0.408,0-0.74-0.33-0.74-0.74v-3.698 c0-0.409,0.332-0.74,0.74-0.74h3.699c0.408,0,0.738,0.331,0.738,0.74V51.082z" fill="url(#SVGID_16_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="16.6846" x2="16.6846" y1="45.8735" y2="52.5934">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
<path d="M14.836,52.562c-0.816,0-1.48-0.664-1.48-1.48v-3.698c0-0.815,0.664-1.479,1.48-1.479h3.699 c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H14.836z" fill="url(#SVGID_17_)"/>
-<path d="M18.535,52.562h-3.699c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.816,0.664,1.48,1.48,1.48 h3.699c0.816,0,1.479-0.664,1.479-1.48v-0.74C20.014,51.897,19.352,52.562,18.535,52.562z" fill="#231F20" opacity="0.4"/>
+<path d="M18.535,52.562h-3.699c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.816,0.664,1.48,1.48,1.48 h3.699c0.816,0,1.479-0.664,1.479-1.48v-0.74C20.014,51.897,19.352,52.562,18.535,52.562z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="16.6865" x2="16.6865" y1="46.5791" y2="51.9528">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B6C3C7"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B6C3C7"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M19.275,51.082c0,0.41-0.332,0.74-0.74,0.74h-3.699c-0.408,0-0.738-0.33-0.738-0.74v-3.698 c0-0.409,0.33-0.74,0.738-0.74h3.699c0.408,0,0.74,0.331,0.74,0.74V51.082z" fill="url(#SVGID_18_)"/>
-<path d="M45.164,42.206h-3.697c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.814,0.664,1.479,1.48,1.479 h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74C46.643,41.542,45.98,42.206,45.164,42.206z" fill="#231F20" opacity="0.4"/>
+<path d="M45.164,42.206h-3.697c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.814,0.664,1.479,1.48,1.479 h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74C46.643,41.542,45.98,42.206,45.164,42.206z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="43.3145" x2="43.3145" y1="35.5479" y2="42.1745">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M41.467,42.206c-0.816,0-1.48-0.664-1.48-1.48v-3.698c0-0.816,0.664-1.479,1.48-1.479 h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H41.467z" fill="url(#SVGID_19_)" opacity="0.9"/>
+<path d="M41.467,42.206c-0.816,0-1.48-0.664-1.48-1.48v-3.698c0-0.816,0.664-1.479,1.48-1.479 h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H41.467z" fill="url(#SVGID_19_)" fill-opacity="0.9" stroke-opacity="0.9"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="43.3154" x2="43.3154" y1="36.2231" y2="41.5973">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M45.904,40.726c0,0.409-0.332,0.74-0.74,0.74h-3.697c-0.408,0-0.74-0.331-0.74-0.74v-3.698 c0-0.409,0.332-0.74,0.74-0.74h3.697c0.408,0,0.74,0.331,0.74,0.74V40.726z" fill="url(#SVGID_20_)"/>
-<rect fill="#231F20" height="0.739" opacity="0.5" width="40.686" x="9.658" y="20.754"/>
-<path d="M36.289,42.206h-3.697c-0.818,0-1.482-0.664-1.482-1.48v0.74c0,0.814,0.664,1.479,1.482,1.479 h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74C37.768,41.542,37.105,42.206,36.289,42.206z" fill="#231F20" opacity="0.4"/>
+<rect fill="#231F20" fill-opacity="0.5" height="0.739" stroke-opacity="0.5" width="40.686" x="9.658" y="20.754"/>
+<path d="M36.289,42.206h-3.697c-0.818,0-1.482-0.664-1.482-1.48v0.74c0,0.814,0.664,1.479,1.482,1.479 h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74C37.768,41.542,37.105,42.206,36.289,42.206z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="34.4385" x2="34.4385" y1="35.5479" y2="42.1745">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M32.592,42.206c-0.818,0-1.482-0.664-1.482-1.48v-3.698 c0-0.816,0.664-1.479,1.482-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H32.592z" fill="url(#SVGID_21_)" opacity="0.8"/>
+<path d="M32.592,42.206c-0.818,0-1.482-0.664-1.482-1.48v-3.698 c0-0.816,0.664-1.479,1.482-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H32.592z" fill="url(#SVGID_21_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="34.4385" x2="34.4385" y1="36.2231" y2="41.5973">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B6C3C7"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B6C3C7"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M37.027,40.726c0,0.409-0.33,0.74-0.738,0.74h-3.697c-0.412,0-0.742-0.331-0.742-0.74v-3.698 c0-0.409,0.33-0.74,0.742-0.74h3.697c0.408,0,0.738,0.331,0.738,0.74V40.726z" fill="url(#SVGID_22_)"/>
-<path d="M27.412,42.206h-3.699c-0.816,0-1.479-0.664-1.479-1.48v0.74c0,0.814,0.662,1.479,1.479,1.479 h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74C28.891,41.542,28.229,42.206,27.412,42.206z" fill="#231F20" opacity="0.4"/>
+<path d="M27.412,42.206h-3.699c-0.816,0-1.479-0.664-1.479-1.48v0.74c0,0.814,0.662,1.479,1.479,1.479 h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74C28.891,41.542,28.229,42.206,27.412,42.206z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="25.5625" x2="25.5625" y1="35.5479" y2="42.1745">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.713,42.206c-0.816,0-1.479-0.664-1.479-1.48v-3.698 c0-0.816,0.662-1.479,1.479-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H23.713z" fill="url(#SVGID_23_)" opacity="0.8"/>
+<path d="M23.713,42.206c-0.816,0-1.479-0.664-1.479-1.48v-3.698 c0-0.816,0.662-1.479,1.479-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H23.713z" fill="url(#SVGID_23_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="25.5615" x2="25.5615" y1="36.2231" y2="41.5973">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B6C3C7"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B6C3C7"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M28.15,40.726c0,0.409-0.33,0.74-0.738,0.74h-3.699c-0.408,0-0.74-0.331-0.74-0.74v-3.698 c0-0.409,0.332-0.74,0.74-0.74h3.699c0.408,0,0.738,0.331,0.738,0.74V40.726z" fill="url(#SVGID_24_)"/>
-<path d="M18.535,42.206h-3.699c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.814,0.664,1.479,1.48,1.479 h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74C20.014,41.542,19.352,42.206,18.535,42.206z" fill="#231F20" opacity="0.4"/>
+<path d="M18.535,42.206h-3.699c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.814,0.664,1.479,1.48,1.479 h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74C20.014,41.542,19.352,42.206,18.535,42.206z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="16.6846" x2="16.6846" y1="35.5479" y2="42.1745">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.836,42.206c-0.816,0-1.48-0.664-1.48-1.48v-3.698c0-0.816,0.664-1.479,1.48-1.479 h3.699c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H14.836z" fill="url(#SVGID_25_)" opacity="0.8"/>
+<path d="M14.836,42.206c-0.816,0-1.48-0.664-1.48-1.48v-3.698c0-0.816,0.664-1.479,1.48-1.479 h3.699c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H14.836z" fill="url(#SVGID_25_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="16.6865" x2="16.6865" y1="36.2231" y2="41.5973">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B6C3C7"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B6C3C7"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M19.275,40.726c0,0.409-0.332,0.74-0.74,0.74h-3.699c-0.408,0-0.738-0.331-0.738-0.74v-3.698 c0-0.409,0.33-0.74,0.738-0.74h3.699c0.408,0,0.74,0.331,0.74,0.74V40.726z" fill="url(#SVGID_26_)"/>
-<path d="M45.164,31.849h-3.697c-0.816,0-1.48-0.664-1.48-1.479v0.74c0,0.815,0.664,1.479,1.48,1.479 h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74C46.643,31.185,45.98,31.849,45.164,31.849z" fill="#231F20" opacity="0.4"/>
+<path d="M45.164,31.849h-3.697c-0.816,0-1.48-0.664-1.48-1.479v0.74c0,0.815,0.664,1.479,1.48,1.479 h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74C46.643,31.185,45.98,31.849,45.164,31.849z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="43.3145" x2="43.3145" y1="25.208" y2="31.91">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M41.467,31.849c-0.816,0-1.48-0.664-1.48-1.479v-3.699 c0-0.815,0.664-1.479,1.48-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479H41.467z" fill="url(#SVGID_27_)" opacity="0.9"/>
+<path d="M41.467,31.849c-0.816,0-1.48-0.664-1.48-1.479v-3.699 c0-0.815,0.664-1.479,1.48-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479H41.467z" fill="url(#SVGID_27_)" fill-opacity="0.9" stroke-opacity="0.9"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="43.3154" x2="43.3154" y1="25.8672" y2="31.2414">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M45.904,30.37c0,0.409-0.332,0.74-0.74,0.74h-3.697c-0.408,0-0.74-0.331-0.74-0.74v-3.699 c0-0.408,0.332-0.739,0.74-0.739h3.697c0.408,0,0.74,0.331,0.74,0.739V30.37z" fill="url(#SVGID_28_)"/>
-<path d="M36.289,31.849h-3.697c-0.818,0-1.482-0.664-1.482-1.479v0.74 c0,0.815,0.664,1.479,1.482,1.479h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74C37.768,31.185,37.105,31.849,36.289,31.849z" fill="#231F20" opacity="0.4"/>
+<path d="M36.289,31.849h-3.697c-0.818,0-1.482-0.664-1.482-1.479v0.74 c0,0.815,0.664,1.479,1.482,1.479h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74C37.768,31.185,37.105,31.849,36.289,31.849z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="34.4385" x2="34.4385" y1="25.208" y2="31.91">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M32.592,31.849c-0.818,0-1.482-0.664-1.482-1.479v-3.699 c0-0.815,0.664-1.479,1.482-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479H32.592z" fill="url(#SVGID_29_)" opacity="0.8"/>
+<path d="M32.592,31.849c-0.818,0-1.482-0.664-1.482-1.479v-3.699 c0-0.815,0.664-1.479,1.482-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479H32.592z" fill="url(#SVGID_29_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="34.4385" x2="34.4385" y1="25.8672" y2="31.2414">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B6C3C7"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B6C3C7"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M37.027,30.37c0,0.409-0.33,0.74-0.738,0.74h-3.697c-0.412,0-0.742-0.331-0.742-0.74v-3.699 c0-0.408,0.33-0.739,0.742-0.739h3.697c0.408,0,0.738,0.331,0.738,0.739V30.37z" fill="url(#SVGID_30_)"/>
-<path d="M27.412,31.849h-3.699c-0.816,0-1.479-0.664-1.479-1.479v0.74 c0,0.815,0.662,1.479,1.479,1.479h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74C28.891,31.185,28.229,31.849,27.412,31.849z" fill="#231F20" opacity="0.4"/>
+<path d="M27.412,31.849h-3.699c-0.816,0-1.479-0.664-1.479-1.479v0.74 c0,0.815,0.662,1.479,1.479,1.479h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74C28.891,31.185,28.229,31.849,27.412,31.849z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="25.5625" x2="25.5625" y1="25.127" y2="31.9908">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.713,31.849c-0.816,0-1.479-0.664-1.479-1.479v-3.699 c0-0.815,0.662-1.479,1.479-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479H23.713z" fill="url(#SVGID_31_)" opacity="0.8"/>
+<path d="M23.713,31.849c-0.816,0-1.479-0.664-1.479-1.479v-3.699 c0-0.815,0.662-1.479,1.479-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479H23.713z" fill="url(#SVGID_31_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="25.5615" x2="25.5615" y1="25.8672" y2="31.2414">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B6C3C7"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B6C3C7"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M28.15,30.37c0,0.409-0.33,0.74-0.738,0.74h-3.699c-0.408,0-0.74-0.331-0.74-0.74v-3.699 c0-0.408,0.332-0.739,0.74-0.739h3.699c0.408,0,0.738,0.331,0.738,0.739V30.37z" fill="url(#SVGID_32_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="16.6846" x2="16.6846" y1="25.127" y2="31.9099">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.836,31.849c-0.816,0-1.48-0.664-1.48-1.479v-3.699 c0-0.815,0.664-1.479,1.48-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479H14.836z" fill="url(#SVGID_33_)" opacity="0.8"/>
-<path d="M18.535,31.849h-3.699c-0.816,0-1.48-0.664-1.48-1.479v0.74c0,0.815,0.664,1.479,1.48,1.479 h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74C20.014,31.185,19.352,31.849,18.535,31.849z" fill="#231F20" opacity="0.4"/>
+<path d="M14.836,31.849c-0.816,0-1.48-0.664-1.48-1.479v-3.699 c0-0.815,0.664-1.479,1.48-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479H14.836z" fill="url(#SVGID_33_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M18.535,31.849h-3.699c-0.816,0-1.48-0.664-1.48-1.479v0.74c0,0.815,0.664,1.479,1.48,1.479 h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74C20.014,31.185,19.352,31.849,18.535,31.849z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="16.6865" x2="16.6865" y1="25.8672" y2="31.2414">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B6C3C7"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B6C3C7"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M19.275,30.37c0,0.409-0.332,0.74-0.74,0.74h-3.699c-0.408,0-0.738-0.331-0.738-0.74v-3.699 c0-0.408,0.33-0.739,0.738-0.739h3.699c0.408,0,0.74,0.331,0.74,0.739V30.37z" fill="url(#SVGID_34_)"/>
-<rect fill="#FFFFFF" height="0.74" opacity="0.6" width="40.686" x="9.658" y="22.233"/>
-<rect fill="#231F20" height="0.74" opacity="0.3" width="40.686" x="9.658" y="21.493"/>
+<rect fill="#FFFFFF" fill-opacity="0.6" height="0.74" stroke-opacity="0.6" width="40.686" x="9.658" y="22.233"/>
+<rect fill="#231F20" fill-opacity="0.3" height="0.74" stroke-opacity="0.3" width="40.686" x="9.658" y="21.493"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calendar.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calendar.svg Thu May 27 13:10:59 2010 +0300
@@ -1,102 +1,104 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
-<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-72.52" x2="-72.52" y1="30.8438" y2="-15.6104">
- <stop offset="0.2" style="stop-color:#ECF3F5"/>
- <stop offset="0.8606" style="stop-color:#7E878A"/>
- <stop offset="1" style="stop-color:#B0B8BB"/>
+<rect fill="none" height="60" width="60" x="0"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="301.0195" x2="301.0195" y1="-240.6152" y2="-287.0708">
+<stop offset="0" style="stop-color:#ECF3F5"/>
+<stop offset="0.2" style="stop-color:#ECF3F5"/>
+<stop offset="0.8606" style="stop-color:#7E878A"/>
+<stop offset="1" style="stop-color:#B0B8BB"/>
</linearGradient>
-<path d="M55.5,8.382h-51C3.672,8.382,3,9.054,3,9.883v43.161c0,0.827,0.672,1.499,1.5,1.499h51 c0.828,0,1.5-0.671,1.5-1.499V9.883C57,9.054,56.328,8.382,55.5,8.382L55.5,8.382z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-72.52" x2="-72.52" y1="29.8403" y2="-14.5312">
- <stop offset="0" style="stop-color:#DDE3E6"/>
- <stop offset="0.2364" style="stop-color:#C9CED1"/>
- <stop offset="0.9636" style="stop-color:#899396"/>
+<path d="M55.501,8.382H4.5C3.673,8.382,3,9.054,3,9.883v43.162c0,0.826,0.673,1.498,1.5,1.498h51.001 c0.826,0,1.5-0.672,1.5-1.498V9.883C57.001,9.054,56.327,8.382,55.501,8.382L55.501,8.382z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="301.0195" x2="301.0195" y1="-241.6206" y2="-285.9926">
+<stop offset="0" style="stop-color:#DDE3E6"/>
+<stop offset="0.2364" style="stop-color:#C9CED1"/>
+<stop offset="0.9636" style="stop-color:#899396"/>
+<stop offset="1" style="stop-color:#899396"/>
</linearGradient>
-<path d="M4.5,53.784c-0.41,0-0.742-0.333-0.742-0.741V9.883C3.758,9.472,4.09,9.14,4.5,9.14h51 c0.412,0,0.742,0.333,0.742,0.743v43.161c0,0.408-0.33,0.741-0.742,0.741L4.5,53.784L4.5,53.784z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-72.5571" x2="-72.5571" y1="27.8345" y2="-12.7649">
- <stop offset="0" style="stop-color:#707173"/>
- <stop offset="1" style="stop-color:#000000"/>
+<path d="M4.5,53.785c-0.409,0-0.742-0.334-0.742-0.74V9.883c0-0.411,0.333-0.743,0.742-0.743h51.001 c0.41,0,0.742,0.333,0.742,0.743v43.162c0,0.406-0.332,0.74-0.742,0.74H4.5z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="300.9824" x2="300.9824" y1="-243.6255" y2="-284.2258">
+<stop offset="0" style="stop-color:#707173"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect enable-background="new " fill="url(#SVGID_3_)" height="41.06" opacity="0.4" width="48.965" x="5.48" y="10.892"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-72.5347" x2="-72.5348" y1="16.5146" y2="-11.7964">
- <stop offset="0.6606" style="stop-color:#737373"/>
- <stop offset="1" style="stop-color:#DEDEDE"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.4" height="41.061" stroke-opacity="0.4" width="48.965" x="5.48" y="10.892"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="291.541" x2="282.9478" y1="-278.6968" y2="-287.29">
+<stop offset="0" style="stop-color:#737373"/>
+<stop offset="0.2485" style="stop-color:#737373"/>
+<stop offset="0.703" style="stop-color:#DEDEDE"/>
+<stop offset="1" style="stop-color:#DEDEDE"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="27.871" width="46.163" x="6.904" y="22.815"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-69.3926" x2="-77.4889" y1="-7.9272" y2="18.5136">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
+<rect fill="url(#SVGID_4_)" height="27.873" width="46.164" x="6.905" y="22.815"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="301.0195" x2="301.0195" y1="-255.1953" y2="-283.0328">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<path d="M43.459,48.54c-3.66,0.956-14.168,2.085-14.168,2.085H6.918V22.754H53.08 c0,0-0.666,18.598-1.311,21.188C51.203,46.232,48.729,47.163,43.459,48.54z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-72.521" x2="-72.521" y1="26.7407" y2="16.4258">
- <stop offset="0" style="stop-color:#FF7042"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<path d="M53.081,50.625c0,0-30.833,0-32.895,0c-1.003,0-6.479-6.617-6.479-6.617s-6.788-5.709-6.788-6.063 c0-0.688,0-15.191,0-15.191h46.162V50.625z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="293.7813" x2="293.7813" y1="-278.7661" y2="-259.8767">
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="10.453" width="46.162" x="6.918" y="12.301"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-61.6943" x2="-59.3015" y1="-6.646" y2="-11.1237">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#000000"/>
+<path d="M28.694,46.221H16.827v-2.05h4.31V30.482l-4.31,0.805v-2.049l5.934-1.958h1.624v16.891h4.31 L28.694,46.221L28.694,46.221z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="308.2676" x2="308.2676" y1="-278.7661" y2="-259.8762">
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M42.891,49.125c-3.358,0.65-7.975,1.264-14.292,1.327 l23.638-11.177c0,0,0.021,2.432-0.467,4.668C51.77,43.941,51.377,47.479,42.891,49.125z" enable-background="new " fill="url(#SVGID_7_)" opacity="0.42"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-61.2495" x2="-62.6952" y1="-11.4277" y2="-8.2283">
- <stop offset="0" style="stop-color:#9C9C9C"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<path d="M43.173,46.221H31.32v-1.486c0-1.266,0.285-2.49,0.857-3.674c0.57-1.185,2.061-2.677,4.469-4.478 c1.396-1.043,2.289-1.858,2.681-2.451c0.389-0.592,0.584-1.182,0.584-1.769c0-0.94-0.339-1.684-1.011-2.224 c-0.674-0.541-1.545-0.811-2.616-0.811c-0.902,0-2.455,0.207-4.66,0.621V27.75c1.883-0.395,3.53-0.592,4.946-0.592 c2.074,0,3.693,0.458,4.857,1.375c1.162,0.916,1.744,2.162,1.744,3.74c0,0.688-0.141,1.397-0.424,2.133 c-0.283,0.732-0.727,1.404-1.328,2.01c-0.602,0.607-1.471,1.342-2.604,2.201c-1.285,0.961-2.17,1.707-2.656,2.238 c-0.484,0.531-0.854,1.088-1.107,1.67c-0.252,0.582-0.389,1.141-0.41,1.678h8.529L43.173,46.221L43.173,46.221z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="301.0195" x2="301.0195" y1="-244.7197" y2="-255.0341">
+<stop offset="0" style="stop-color:#FF7042"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
-<path d="M27.945,50.618c0,0,13.764-0.12,18.883-7.134c0,0,3.664,4.517,4.941,0.457 C51.229,46.73,46.316,50.721,27.945,50.618z" fill="url(#SVGID_8_)"/>
-<path d="M46.938,44.23c0,0,2.734,2.875,4.287,0.957c0.293-0.438,0.467-0.869,0.545-1.272 c-1.276,4.058-4.94-0.46-4.94-0.46c-5.119,7.016-18.883,7.136-18.883,7.136C34.328,50.591,43.756,48.591,46.938,44.23z" fill="#FFFFFF"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-79.5366" x2="-79.5366" y1="-6.4883" y2="11.8389">
- <stop offset="0" style="stop-color:#303030"/>
- <stop offset="1" style="stop-color:#000000"/>
-</linearGradient>
-<polygon fill="url(#SVGID_9_)" points="24.822,27.157 22.977,27.157 17.369,28.926 17.369,30.961 21.361,30.024 21.361,44.113 17.369,44.236 17.369,46.27 28.598,45.881 28.598,43.891 24.822,44.007 "/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-65.4268" x2="-65.4268" y1="-6.4873" y2="11.8388">
- <stop offset="0" style="stop-color:#303030"/>
- <stop offset="1" style="stop-color:#000000"/>
+<rect fill="url(#SVGID_8_)" height="10.453" width="46.162" x="6.919" y="12.301"/>
+<rect fill="#231F20" fill-opacity="0.4" height="7.614" stroke-opacity="0.4" width="6.012" x="41.637" y="8.382"/>
+<rect fill="#231F20" fill-opacity="0.4" height="7.614" stroke-opacity="0.4" width="6.012" x="12.63" y="8.382"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="312.6953" x2="318.8543" y1="-249.5625" y2="-249.5625">
+<stop offset="0" style="stop-color:#FB6C41"/>
+<stop offset="0.497" style="stop-color:#FFB69E"/>
+<stop offset="1" style="stop-color:#FB6C41"/>
</linearGradient>
-<path d="M34.727,43.525c0.033-0.73,0.23-1.407,0.59-2.027c0.361-0.619,0.806-1.191,1.328-1.711 c0.527-0.52,1.256-1.17,2.188-1.947c1.672-1.374,2.729-2.488,3.179-3.354c0.452-0.857,0.68-1.729,0.68-2.61 c0-1.567-0.502-2.753-1.504-3.557c-1-0.807-2.463-1.21-4.39-1.21c-1.557,0-3.159,0.251-4.803,0.754v2.204h0.024 c1.566-0.56,2.902-0.841,4.002-0.846c1.045-0.004,1.826,0.232,2.349,0.707c0.521,0.476,0.782,1.183,0.782,2.128 c0,0.537-0.161,1.082-0.481,1.631c-0.325,0.549-1.101,1.332-2.332,2.35c-1.022,0.854-1.868,1.641-2.539,2.355 c-0.672,0.717-1.233,1.582-1.692,2.592c-0.455,1.011-0.685,2.16-0.685,3.451v1.348l11.341-0.391v-2.111L34.727,43.525z" fill="url(#SVGID_10_)"/>
-<rect enable-background="new " fill="#231F20" height="7.614" opacity="0.4" width="6.012" x="41.637" y="8.382"/>
-<rect enable-background="new " fill="#231F20" height="7.614" opacity="0.4" width="6.012" x="12.631" y="8.382"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-60.8442" x2="-54.6872" y1="21.8984" y2="21.8984">
- <stop offset="0" style="stop-color:#FB6C41"/>
- <stop offset="0.497" style="stop-color:#FFB69E"/>
- <stop offset="1" style="stop-color:#FB6C41"/>
+<ellipse cx="44.676" cy="17.082" fill="url(#SVGID_9_)" rx="3.051" ry="2.87"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="283.6484" x2="289.8074" y1="-249.5625" y2="-249.5625">
+<stop offset="0" style="stop-color:#FB6C41"/>
+<stop offset="0.497" style="stop-color:#FFB69E"/>
+<stop offset="1" style="stop-color:#FB6C41"/>
</linearGradient>
-<ellipse cx="44.676" cy="17.082" fill="url(#SVGID_11_)" rx="3.049" ry="2.87"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-89.8911" x2="-83.7336" y1="21.8984" y2="21.8984">
- <stop offset="0" style="stop-color:#FB6C41"/>
- <stop offset="0.497" style="stop-color:#FFB69E"/>
- <stop offset="1" style="stop-color:#FB6C41"/>
+<ellipse cx="15.629" cy="17.082" fill="url(#SVGID_10_)" rx="3.049" ry="2.87"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="315.6953" x2="315.6953" y1="-246.5366" y2="-251.6692">
+<stop offset="0" style="stop-color:#4A050A"/>
+<stop offset="1" style="stop-color:#B00F25"/>
+</linearGradient>
+<path d="M47.727,16.346c0,1.686-1.367,3.05-3.049,3.05c-1.685,0-3.052-1.364-3.052-3.05 c0-1.681,1.367-3.048,3.052-3.048C46.357,13.297,47.727,14.665,47.727,16.346z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="313.5303" x2="317.8512" y1="-244.3633" y2="-244.3633">
+<stop offset="0" style="stop-color:#B6B4B5"/>
+<stop offset="0.1152" style="stop-color:#FFFCFE"/>
+<stop offset="0.6788" style="stop-color:#595959"/>
+<stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<stop offset="1" style="stop-color:#D4D3D3"/>
</linearGradient>
-<ellipse cx="15.629" cy="17.082" fill="url(#SVGID_12_)" rx="3.049" ry="2.87"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-57.8442" x2="-57.8442" y1="24.9229" y2="19.7907">
- <stop offset="0" style="stop-color:#4A050A"/>
- <stop offset="1" style="stop-color:#B00F25"/>
+<path d="M44.678,5.458c-1.201,0-2.179,0.977-2.179,2.178v8.494c0,1.202,0.978,2.177,2.179,2.177 c1.198,0,2.178-0.975,2.178-2.177V7.636C46.854,6.435,45.876,5.458,44.678,5.458z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="286.6484" x2="286.6484" y1="-246.5366" y2="-251.6692">
+<stop offset="0" style="stop-color:#4A050A"/>
+<stop offset="1" style="stop-color:#B00F25"/>
</linearGradient>
-<path d="M47.725,16.346c0,1.686-1.367,3.05-3.049,3.05c-1.684,0-3.049-1.364-3.049-3.05 c0-1.681,1.365-3.048,3.049-3.048C46.357,13.297,47.725,14.665,47.725,16.346z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-60.0093" x2="-55.6903" y1="27.0977" y2="27.0977">
- <stop offset="0" style="stop-color:#B6B4B5"/>
- <stop offset="0.1152" style="stop-color:#FFFCFE"/>
- <stop offset="0.6788" style="stop-color:#595959"/>
- <stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<path d="M18.678,16.346c0,1.686-1.366,3.05-3.05,3.05s-3.048-1.364-3.048-3.05 c0-1.681,1.365-3.048,3.048-3.048C17.312,13.297,18.678,14.665,18.678,16.346z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="284.4844" x2="288.8053" y1="-244.3633" y2="-244.3633">
+<stop offset="0" style="stop-color:#B6B4B5"/>
+<stop offset="0.1152" style="stop-color:#FFFCFE"/>
+<stop offset="0.6788" style="stop-color:#595959"/>
+<stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<stop offset="1" style="stop-color:#D4D3D3"/>
</linearGradient>
-<path d="M44.676,5.458c-1.201,0-2.176,0.977-2.176,2.178v8.494c0,1.202,0.975,2.177,2.176,2.177 s2.178-0.975,2.178-2.177V7.636C46.854,6.435,45.877,5.458,44.676,5.458z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-86.8911" x2="-86.8911" y1="24.9229" y2="19.7907">
- <stop offset="0" style="stop-color:#4A050A"/>
- <stop offset="1" style="stop-color:#B00F25"/>
+<path d="M15.628,5.458c-1.202,0-2.175,0.977-2.175,2.178v8.494c0,1.202,0.973,2.177,2.175,2.177 s2.18-0.975,2.18-2.177V7.636C17.808,6.435,16.83,5.458,15.628,5.458z" fill="url(#SVGID_14_)"/>
+<polygon fill="#701619" points="53.081,23.051 6.919,23.051 6.919,22.455 53.081,22.455 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -528.0195 -588.4805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="546.5391" x2="540.9523" y1="627.8145" y2="633.4014">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.297" style="stop-color:#FFFFFF"/>
+<stop offset="0.5576" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
</linearGradient>
-<path d="M18.678,16.346c0,1.686-1.365,3.05-3.051,3.05c-1.684,0-3.047-1.364-3.047-3.05 c0-1.681,1.363-3.048,3.047-3.048C17.313,13.297,18.678,14.665,18.678,16.346z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-89.0562" x2="-84.7366" y1="27.0977" y2="27.0977">
- <stop offset="0" style="stop-color:#B6B4B5"/>
- <stop offset="0.1152" style="stop-color:#FFFCFE"/>
- <stop offset="0.6788" style="stop-color:#595959"/>
- <stop offset="0.9455" style="stop-color:#D4D3D3"/>
-</linearGradient>
-<path d="M15.627,5.458c-1.201,0-2.174,0.977-2.174,2.178v8.494c0,1.202,0.973,2.177,2.174,2.177 c1.203,0,2.18-0.975,2.18-2.177V7.636C17.807,6.435,16.83,5.458,15.627,5.458z" fill="url(#SVGID_16_)"/>
-<polygon fill="#701619" points="53.08,23.051 6.918,23.051 6.918,22.455 53.08,22.455 "/>
-<rect fill="none" height="60" width="60"/>
+<path d="M8.216,39.958c-0.314-0.347-0.896-0.692-1.297-2.185c0,0,0.66,3.056,9.701,0.041 c0,12.81,3.768,12.81,3.768,12.81c-0.831,0-1.987-0.479-2.573-1.063L8.216,39.958z" fill="url(#SVGID_15_)"/>
+<path d="M6.932,37.82c-0.004-0.016-0.009-0.029-0.013-0.045C6.919,37.775,6.923,37.792,6.932,37.82z" fill="#FFFFFF"/>
+<path d="M15.776,38.941c0,6.371,1.427,9.572,2.861,11.182c0.529,0.277,1.13,0.467,1.644,0.49 c-0.609-0.115-3.662-1.266-3.662-12.797c-8.417,2.805-9.568,0.354-9.688,0.004c0.13,0.469,0.277,0.816,0.429,1.092 C8.604,39.878,11.029,40.523,15.776,38.941z" fill="#FFFFFF" fill-opacity="0.75"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calendar_alarm.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calendar_alarm.svg Thu May 27 13:10:59 2010 +0300
@@ -1,164 +1,164 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
-<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-72.52" x2="-72.52" y1="30.8438" y2="-15.6104">
- <stop offset="0.2" style="stop-color:#ECF3F5"/>
- <stop offset="0.8606" style="stop-color:#7E878A"/>
- <stop offset="1" style="stop-color:#B0B8BB"/>
+<rect fill="none" height="60" width="60" x="0"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="301.0195" x2="301.0195" y1="-240.6152" y2="-287.0708">
+<stop offset="0" style="stop-color:#ECF3F5"/>
+<stop offset="0.2" style="stop-color:#ECF3F5"/>
+<stop offset="0.8606" style="stop-color:#7E878A"/>
+<stop offset="1" style="stop-color:#B0B8BB"/>
</linearGradient>
-<path d="M55.5,8.382h-51C3.672,8.382,3,9.054,3,9.883v43.161c0,0.827,0.672,1.499,1.5,1.499h51 c0.828,0,1.5-0.671,1.5-1.499V9.883C57,9.054,56.328,8.382,55.5,8.382L55.5,8.382z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-72.52" x2="-72.52" y1="29.8403" y2="-14.5312">
- <stop offset="0" style="stop-color:#DDE3E6"/>
- <stop offset="0.2364" style="stop-color:#C9CED1"/>
- <stop offset="0.9636" style="stop-color:#899396"/>
+<path d="M55.501,8.382H4.5C3.673,8.382,3,9.054,3,9.883v43.162c0,0.826,0.673,1.498,1.5,1.498h51.001 c0.826,0,1.5-0.672,1.5-1.498V9.883C57.001,9.054,56.327,8.382,55.501,8.382L55.501,8.382z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="301.0195" x2="301.0195" y1="-241.6206" y2="-285.9926">
+<stop offset="0" style="stop-color:#DDE3E6"/>
+<stop offset="0.2364" style="stop-color:#C9CED1"/>
+<stop offset="0.9636" style="stop-color:#899396"/>
+<stop offset="1" style="stop-color:#899396"/>
</linearGradient>
-<path d="M4.5,53.784c-0.41,0-0.742-0.333-0.742-0.741V9.883C3.758,9.472,4.09,9.14,4.5,9.14h51 c0.412,0,0.742,0.333,0.742,0.743v43.161c0,0.408-0.33,0.741-0.742,0.741L4.5,53.784L4.5,53.784z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-72.5571" x2="-72.5571" y1="27.8345" y2="-12.7649">
- <stop offset="0" style="stop-color:#707173"/>
- <stop offset="1" style="stop-color:#000000"/>
+<path d="M4.5,53.785c-0.409,0-0.742-0.334-0.742-0.74V9.883c0-0.411,0.333-0.743,0.742-0.743h51.001 c0.41,0,0.742,0.333,0.742,0.743v43.162c0,0.406-0.332,0.74-0.742,0.74H4.5z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="300.9824" x2="300.9824" y1="-243.6255" y2="-284.2258">
+<stop offset="0" style="stop-color:#707173"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect enable-background="new " fill="url(#SVGID_3_)" height="41.06" opacity="0.4" width="48.965" x="5.48" y="10.892"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-72.5347" x2="-72.5348" y1="16.5146" y2="-11.7964">
- <stop offset="0.6606" style="stop-color:#737373"/>
- <stop offset="1" style="stop-color:#DEDEDE"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.4" height="41.061" stroke-opacity="0.4" width="48.965" x="5.48" y="10.892"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="291.541" x2="282.9478" y1="-278.6968" y2="-287.29">
+<stop offset="0" style="stop-color:#737373"/>
+<stop offset="0.2485" style="stop-color:#737373"/>
+<stop offset="0.703" style="stop-color:#DEDEDE"/>
+<stop offset="1" style="stop-color:#DEDEDE"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="27.871" width="46.163" x="6.904" y="22.815"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-69.3926" x2="-77.4889" y1="-7.9272" y2="18.5136">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
+<rect fill="url(#SVGID_4_)" height="27.873" width="46.164" x="6.905" y="22.815"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="301.0195" x2="301.0195" y1="-255.1953" y2="-283.0328">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<path d="M43.459,48.54c-3.66,0.956-14.168,2.085-14.168,2.085H6.918V22.754H53.08 c0,0-0.666,18.598-1.311,21.188C51.203,46.232,48.729,47.163,43.459,48.54z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-72.521" x2="-72.521" y1="26.7407" y2="16.4258">
- <stop offset="0" style="stop-color:#FF7042"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<path d="M53.081,50.625c0,0-30.833,0-32.895,0c-1.003,0-6.479-6.617-6.479-6.617s-6.788-5.709-6.788-6.063 c0-0.688,0-15.191,0-15.191h46.162V50.625z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="293.7813" x2="293.7813" y1="-278.7661" y2="-259.8767">
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="10.453" width="46.162" x="6.918" y="12.301"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-61.6943" x2="-59.3015" y1="-6.646" y2="-11.1237">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#000000"/>
+<path d="M28.694,46.221H16.827v-2.05h4.31V30.482l-4.31,0.805v-2.049l5.934-1.958h1.624v16.891h4.31 L28.694,46.221L28.694,46.221z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="308.2676" x2="308.2676" y1="-278.7661" y2="-259.8762">
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M42.891,49.125c-3.358,0.65-7.975,1.264-14.292,1.327 l23.638-11.177c0,0,0.021,2.432-0.467,4.668C51.77,43.941,51.377,47.479,42.891,49.125z" enable-background="new " fill="url(#SVGID_7_)" opacity="0.42"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-61.2495" x2="-62.6952" y1="-11.4277" y2="-8.2283">
- <stop offset="0" style="stop-color:#9C9C9C"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<path d="M43.173,46.221H31.32v-1.486c0-1.266,0.285-2.49,0.857-3.674c0.57-1.185,2.061-2.677,4.469-4.478 c1.396-1.043,2.289-1.858,2.681-2.451c0.389-0.592,0.584-1.182,0.584-1.769c0-0.94-0.339-1.684-1.011-2.224 c-0.674-0.541-1.545-0.811-2.616-0.811c-0.902,0-2.455,0.207-4.66,0.621V27.75c1.883-0.395,3.53-0.592,4.946-0.592 c2.074,0,3.693,0.458,4.857,1.375c1.162,0.916,1.744,2.162,1.744,3.74c0,0.688-0.141,1.397-0.424,2.133 c-0.283,0.732-0.727,1.404-1.328,2.01c-0.602,0.607-1.471,1.342-2.604,2.201c-1.285,0.961-2.17,1.707-2.656,2.238 c-0.484,0.531-0.854,1.088-1.107,1.67c-0.252,0.582-0.389,1.141-0.41,1.678h8.529L43.173,46.221L43.173,46.221z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="301.0195" x2="301.0195" y1="-244.7197" y2="-255.0341">
+<stop offset="0" style="stop-color:#FF7042"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
-<path d="M27.945,50.618c0,0,13.764-0.12,18.883-7.134c0,0,3.664,4.517,4.941,0.457 C51.229,46.73,46.316,50.721,27.945,50.618z" fill="url(#SVGID_8_)"/>
-<path d="M46.938,44.23c0,0,2.734,2.875,4.287,0.957c0.293-0.438,0.467-0.869,0.545-1.272 c-1.276,4.058-4.94-0.46-4.94-0.46c-5.119,7.016-18.883,7.136-18.883,7.136C34.328,50.591,43.756,48.591,46.938,44.23z" fill="#FFFFFF"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-79.5366" x2="-79.5366" y1="-6.4883" y2="11.8389">
- <stop offset="0" style="stop-color:#303030"/>
- <stop offset="1" style="stop-color:#000000"/>
-</linearGradient>
-<polygon fill="url(#SVGID_9_)" points="24.822,27.157 22.977,27.157 17.369,28.926 17.369,30.961 21.361,30.024 21.361,44.113 17.369,44.236 17.369,46.27 28.598,45.881 28.598,43.891 24.822,44.007 "/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-65.4268" x2="-65.4268" y1="-6.4873" y2="11.8388">
- <stop offset="0" style="stop-color:#303030"/>
- <stop offset="1" style="stop-color:#000000"/>
+<rect fill="url(#SVGID_8_)" height="10.453" width="46.162" x="6.919" y="12.301"/>
+<rect fill="#231F20" fill-opacity="0.4" height="7.614" stroke-opacity="0.4" width="6.012" x="41.637" y="8.382"/>
+<rect fill="#231F20" fill-opacity="0.4" height="7.614" stroke-opacity="0.4" width="6.012" x="12.63" y="8.382"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="312.6953" x2="318.8543" y1="-249.5625" y2="-249.5625">
+<stop offset="0" style="stop-color:#FB6C41"/>
+<stop offset="0.497" style="stop-color:#FFB69E"/>
+<stop offset="1" style="stop-color:#FB6C41"/>
</linearGradient>
-<path d="M34.727,43.525c0.033-0.73,0.23-1.407,0.59-2.027c0.361-0.619,0.806-1.191,1.328-1.711 c0.527-0.52,1.256-1.17,2.188-1.947c1.672-1.374,2.729-2.488,3.179-3.354c0.452-0.857,0.68-1.729,0.68-2.61 c0-1.567-0.502-2.753-1.504-3.557c-1-0.807-2.463-1.21-4.39-1.21c-1.557,0-3.159,0.251-4.803,0.754v2.204h0.024 c1.566-0.56,2.902-0.841,4.002-0.846c1.045-0.004,1.826,0.232,2.349,0.707c0.521,0.476,0.782,1.183,0.782,2.128 c0,0.537-0.161,1.082-0.481,1.631c-0.325,0.549-1.101,1.332-2.332,2.35c-1.022,0.854-1.868,1.641-2.539,2.355 c-0.672,0.717-1.233,1.582-1.692,2.592c-0.455,1.011-0.685,2.16-0.685,3.451v1.348l11.341-0.391v-2.111L34.727,43.525z" fill="url(#SVGID_10_)"/>
-<rect enable-background="new " fill="#231F20" height="7.614" opacity="0.4" width="6.012" x="41.637" y="8.382"/>
-<rect enable-background="new " fill="#231F20" height="7.614" opacity="0.4" width="6.012" x="12.631" y="8.382"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-60.8442" x2="-54.6872" y1="21.8984" y2="21.8984">
- <stop offset="0" style="stop-color:#FB6C41"/>
- <stop offset="0.497" style="stop-color:#FFB69E"/>
- <stop offset="1" style="stop-color:#FB6C41"/>
+<ellipse cx="44.676" cy="17.082" fill="url(#SVGID_9_)" rx="3.051" ry="2.87"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="283.6484" x2="289.8074" y1="-249.5625" y2="-249.5625">
+<stop offset="0" style="stop-color:#FB6C41"/>
+<stop offset="0.497" style="stop-color:#FFB69E"/>
+<stop offset="1" style="stop-color:#FB6C41"/>
</linearGradient>
-<ellipse cx="44.676" cy="17.082" fill="url(#SVGID_11_)" rx="3.049" ry="2.87"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-89.8911" x2="-83.7336" y1="21.8984" y2="21.8984">
- <stop offset="0" style="stop-color:#FB6C41"/>
- <stop offset="0.497" style="stop-color:#FFB69E"/>
- <stop offset="1" style="stop-color:#FB6C41"/>
+<ellipse cx="15.629" cy="17.082" fill="url(#SVGID_10_)" rx="3.049" ry="2.87"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="315.6953" x2="315.6953" y1="-246.5366" y2="-251.6692">
+<stop offset="0" style="stop-color:#4A050A"/>
+<stop offset="1" style="stop-color:#B00F25"/>
</linearGradient>
-<ellipse cx="15.629" cy="17.082" fill="url(#SVGID_12_)" rx="3.049" ry="2.87"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-57.8442" x2="-57.8442" y1="24.9229" y2="19.7907">
- <stop offset="0" style="stop-color:#4A050A"/>
- <stop offset="1" style="stop-color:#B00F25"/>
+<path d="M47.727,16.346c0,1.686-1.367,3.05-3.049,3.05c-1.685,0-3.052-1.364-3.052-3.05 c0-1.681,1.367-3.048,3.052-3.048C46.357,13.297,47.727,14.665,47.727,16.346z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="313.5303" x2="317.8512" y1="-244.3633" y2="-244.3633">
+<stop offset="0" style="stop-color:#B6B4B5"/>
+<stop offset="0.1152" style="stop-color:#FFFCFE"/>
+<stop offset="0.6788" style="stop-color:#595959"/>
+<stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<stop offset="1" style="stop-color:#D4D3D3"/>
</linearGradient>
-<path d="M47.725,16.346c0,1.686-1.367,3.05-3.049,3.05c-1.684,0-3.049-1.364-3.049-3.05 c0-1.681,1.365-3.048,3.049-3.048C46.357,13.297,47.725,14.665,47.725,16.346z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-60.0093" x2="-55.6903" y1="27.0977" y2="27.0977">
- <stop offset="0" style="stop-color:#B6B4B5"/>
- <stop offset="0.1152" style="stop-color:#FFFCFE"/>
- <stop offset="0.6788" style="stop-color:#595959"/>
- <stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<path d="M44.678,5.458c-1.201,0-2.179,0.977-2.179,2.178v8.494c0,1.202,0.978,2.177,2.179,2.177 c1.198,0,2.178-0.975,2.178-2.177V7.636C46.854,6.435,45.876,5.458,44.678,5.458z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="286.6484" x2="286.6484" y1="-246.5366" y2="-251.6692">
+<stop offset="0" style="stop-color:#4A050A"/>
+<stop offset="1" style="stop-color:#B00F25"/>
</linearGradient>
-<path d="M44.676,5.458c-1.201,0-2.176,0.977-2.176,2.178v8.494c0,1.202,0.975,2.177,2.176,2.177 s2.178-0.975,2.178-2.177V7.636C46.854,6.435,45.877,5.458,44.676,5.458z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-86.8911" x2="-86.8911" y1="24.9229" y2="19.7907">
- <stop offset="0" style="stop-color:#4A050A"/>
- <stop offset="1" style="stop-color:#B00F25"/>
+<path d="M18.678,16.346c0,1.686-1.366,3.05-3.05,3.05s-3.048-1.364-3.048-3.05 c0-1.681,1.365-3.048,3.048-3.048C17.312,13.297,18.678,14.665,18.678,16.346z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="284.4844" x2="288.8053" y1="-244.3633" y2="-244.3633">
+<stop offset="0" style="stop-color:#B6B4B5"/>
+<stop offset="0.1152" style="stop-color:#FFFCFE"/>
+<stop offset="0.6788" style="stop-color:#595959"/>
+<stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<stop offset="1" style="stop-color:#D4D3D3"/>
</linearGradient>
-<path d="M18.678,16.346c0,1.686-1.365,3.05-3.051,3.05c-1.684,0-3.047-1.364-3.047-3.05 c0-1.681,1.363-3.048,3.047-3.048C17.313,13.297,18.678,14.665,18.678,16.346z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-89.0562" x2="-84.7366" y1="27.0977" y2="27.0977">
- <stop offset="0" style="stop-color:#B6B4B5"/>
- <stop offset="0.1152" style="stop-color:#FFFCFE"/>
- <stop offset="0.6788" style="stop-color:#595959"/>
- <stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<path d="M15.628,5.458c-1.202,0-2.175,0.977-2.175,2.178v8.494c0,1.202,0.973,2.177,2.175,2.177 s2.18-0.975,2.18-2.177V7.636C17.808,6.435,16.83,5.458,15.628,5.458z" fill="url(#SVGID_14_)"/>
+<polygon fill="#701619" points="53.081,23.051 6.919,23.051 6.919,22.455 53.081,22.455 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -528.0195 -588.4805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="546.5391" x2="540.9523" y1="627.8145" y2="633.4014">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.297" style="stop-color:#FFFFFF"/>
+<stop offset="0.5576" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
</linearGradient>
-<path d="M15.627,5.458c-1.201,0-2.174,0.977-2.174,2.178v8.494c0,1.202,0.973,2.177,2.174,2.177 c1.203,0,2.18-0.975,2.18-2.177V7.636C17.807,6.435,16.83,5.458,15.627,5.458z" fill="url(#SVGID_16_)"/>
-<polygon fill="#701619" points="53.08,23.051 6.918,23.051 6.918,22.455 53.08,22.455 "/>
-<rect fill="none" height="60" width="60"/>
+<path d="M8.216,39.958c-0.314-0.347-0.896-0.692-1.297-2.185c0,0,0.66,3.056,9.701,0.041 c0,12.81,3.768,12.81,3.768,12.81c-0.831,0-1.987-0.479-2.573-1.063L8.216,39.958z" fill="url(#SVGID_15_)"/>
+<path d="M6.932,37.82c-0.004-0.016-0.009-0.029-0.013-0.045C6.919,37.775,6.923,37.792,6.932,37.82z" fill="#FFFFFF"/>
+<path d="M15.776,38.941c0,6.371,1.427,9.572,2.861,11.182c0.529,0.277,1.13,0.467,1.644,0.49 c-0.609-0.115-3.662-1.266-3.662-12.797c-8.417,2.805-9.568,0.354-9.688,0.004c0.13,0.469,0.277,0.816,0.429,1.092 C8.604,39.878,11.029,40.523,15.776,38.941z" fill="#FFFFFF" fill-opacity="0.75"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="0.414,0 0.414,10.485 0,10.899 0.414,11.313 0.414,30 19.1,30 19.514,30.414 19.928,30 30.414,30 30.414,0 "/>
-<path d="M13.769,24.668c-0.003,0.001-0.44,0.125-0.44,0.125l-0.022-0.021L12.8,24.867l-0.025-0.025 c-0.205,0.02-0.411,0.03-0.618,0.03c-1.746,0-3.402-0.694-4.662-1.954c-1.416-1.414-2.113-3.354-1.924-5.279L5.55,17.618l0.09-0.501 L5.634,17.11l0.032-0.128c0.023-0.113,0.049-0.226,0.079-0.338L0,10.899l2.238-2.238c0.623-0.625,1.393-1.296,2.627-1.358 C4.924,7.3,4.988,7.298,5.054,7.298c0.11,0,0.226,0.005,0.346,0.015L5.58,7.334c0.188,0.025,0.352,0.054,0.521,0.092 c0,0,0.277,0.066,0.313,0.076l4.098-4.098C12.707,1.209,15.636,0,18.76,0c2.05,0,4.037,0.526,5.792,1.527 c0.53-0.355,1.14-0.541,1.763-0.541c0.834,0,1.616,0.323,2.203,0.91c1.08,1.08,1.205,2.759,0.375,3.979 c2.574,4.525,1.834,10.311-1.883,14.027l-4.096,4.096c0,0.002,0.068,0.29,0.068,0.29c0.044,0.201,0.072,0.357,0.092,0.505 c0.011,0.083,0.021,0.159,0.026,0.23c0.015,0.178,0.019,0.354,0.011,0.519c-0.062,1.237-0.732,2.009-1.357,2.634l-2.24,2.238 L13.769,24.668z" opacity="0.35"/>
+<path d="M13.769,24.668c-0.003,0.001-0.44,0.125-0.44,0.125l-0.022-0.021L12.8,24.867l-0.025-0.025 c-0.205,0.02-0.411,0.03-0.618,0.03c-1.746,0-3.402-0.694-4.662-1.954c-1.416-1.414-2.113-3.354-1.924-5.279L5.55,17.618l0.09-0.501 L5.634,17.11l0.032-0.128c0.023-0.113,0.049-0.226,0.079-0.338L0,10.899l2.238-2.238c0.623-0.625,1.393-1.296,2.627-1.358 C4.924,7.3,4.988,7.298,5.054,7.298c0.11,0,0.226,0.005,0.346,0.015L5.58,7.334c0.188,0.025,0.352,0.054,0.521,0.092 c0,0,0.277,0.066,0.313,0.076l4.098-4.098C12.707,1.209,15.636,0,18.76,0c2.05,0,4.037,0.526,5.792,1.527 c0.53-0.355,1.14-0.541,1.763-0.541c0.834,0,1.616,0.323,2.203,0.91c1.08,1.08,1.205,2.759,0.375,3.979 c2.574,4.525,1.834,10.311-1.883,14.027l-4.096,4.096c0,0.002,0.068,0.29,0.068,0.29c0.044,0.201,0.072,0.357,0.092,0.505 c0.011,0.083,0.021,0.159,0.026,0.23c0.015,0.178,0.019,0.354,0.011,0.519c-0.062,1.237-0.732,2.009-1.357,2.634l-2.24,2.238 L13.769,24.668z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -924.0166 637.3657)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="218.7148" x2="229.6865" y1="-1096.7686" y2="-1096.7686">
- <stop offset="0" style="stop-color:#676B6D"/>
- <stop offset="0.297" style="stop-color:#A0A3A6"/>
- <stop offset="0.7091" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#676B6D"/>
+<stop offset="0.297" style="stop-color:#A0A3A6"/>
+<stop offset="0.7091" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M8,14.656L8,14.656c-2.029,2.029-1.943,5.411,0.201,7.555c2.143,2.143,5.527,2.232,7.557,0.203l0,0 L8,14.656z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(1 0 0 1 0 9.765625e-004)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="3.21" x2="21.4822" y1="8.9229" y2="27.1951">
- <stop offset="0" style="stop-color:#FFB533"/>
- <stop offset="0.2" style="stop-color:#FFE692"/>
- <stop offset="0.3879" style="stop-color:#FBD072"/>
- <stop offset="0.4182" style="stop-color:#F7BC54"/>
- <stop offset="0.6667" style="stop-color:#ED8C0D"/>
- <stop offset="0.8545" style="stop-color:#F9C967"/>
- <stop offset="1" style="stop-color:#FFB81F"/>
+<stop offset="0" style="stop-color:#FFB533"/>
+<stop offset="0.2" style="stop-color:#FFE692"/>
+<stop offset="0.3879" style="stop-color:#FBD072"/>
+<stop offset="0.4182" style="stop-color:#F7BC54"/>
+<stop offset="0.6667" style="stop-color:#ED8C0D"/>
+<stop offset="0.8545" style="stop-color:#F9C967"/>
+<stop offset="1" style="stop-color:#FFB81F"/>
</linearGradient>
<path d="M21.777,23.721L6.693,8.637c-2.041-0.73-2.813-0.205-3.748,0.731l-1.531,1.531L19.514,29l1.533-1.531 C21.982,26.532,22.508,25.761,21.777,23.721z" fill="url(#SVGID_2__)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -924.0166 637.3657)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="221.9707" x2="226.2741" y1="-1120.2998" y2="-1120.2998">
- <stop offset="0" style="stop-color:#FFB533"/>
- <stop offset="0.1939" style="stop-color:#FFE692"/>
- <stop offset="0.703" style="stop-color:#ED8C0D"/>
- <stop offset="0.8848" style="stop-color:#F9C967"/>
- <stop offset="1" style="stop-color:#FFB81F"/>
+<stop offset="0" style="stop-color:#FFB533"/>
+<stop offset="0.1939" style="stop-color:#FFE692"/>
+<stop offset="0.703" style="stop-color:#ED8C0D"/>
+<stop offset="0.8848" style="stop-color:#F9C967"/>
+<stop offset="1" style="stop-color:#FFB81F"/>
</linearGradient>
<path d="M27.057,6.375l0.754-0.755c0.83-0.829,0.83-2.188,0-3.017c-0.83-0.83-2.188-0.83-3.018,0 l-0.754,0.754L27.057,6.375z" fill="url(#SVGID_3__)"/>
-<path d="M27.057,6.375l0.754-0.755c0.045-0.045,0.08-0.098,0.119-0.146 c-0.385-0.581-0.832-1.134-1.344-1.645c-0.512-0.512-1.064-0.96-1.646-1.346c-0.047,0.041-0.1,0.074-0.146,0.12l-0.754,0.754 L27.057,6.375z" fill="#873900" opacity="0.2"/>
-<path d="M26.869,3.546c-0.492-0.492-1.023-0.924-1.58-1.299c-0.178,0.095-0.346,0.207-0.494,0.355 l-0.473,0.473l3.018,3.017l0.471-0.472c0.148-0.148,0.262-0.318,0.357-0.495C27.791,4.568,27.359,4.038,26.869,3.546z" fill="#873900" opacity="0.1"/>
+<path d="M27.057,6.375l0.754-0.755c0.045-0.045,0.08-0.098,0.119-0.146 c-0.385-0.581-0.832-1.134-1.344-1.645c-0.512-0.512-1.064-0.96-1.646-1.346c-0.047,0.041-0.1,0.074-0.146,0.12l-0.754,0.754 L27.057,6.375z" fill="#873900" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M26.869,3.546c-0.492-0.492-1.023-0.924-1.58-1.299c-0.178,0.095-0.346,0.207-0.494,0.355 l-0.473,0.473l3.018,3.017l0.471-0.472c0.148-0.148,0.262-0.318,0.357-0.495C27.791,4.568,27.359,4.038,26.869,3.546z" fill="#873900" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="26.3223" x2="14.1095" y1="4.0923" y2="16.3051">
- <stop offset="0" style="stop-color:#FDE6B1"/>
- <stop offset="1" style="stop-color:#EF951A"/>
+<stop offset="0" style="stop-color:#FDE6B1"/>
+<stop offset="1" style="stop-color:#EF951A"/>
</linearGradient>
<path d="M21.777,23.721l4.525-4.525c4.148-4.147,4.148-10.936,0-15.084s-10.936-4.148-15.084,0L6.693,8.637 L21.777,23.721z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="13.1172" x2="27.4319" y1="2.9941" y2="17.3088">
- <stop offset="0" style="stop-color:#FFB533"/>
- <stop offset="0.2545" style="stop-color:#FFE692"/>
- <stop offset="0.503" style="stop-color:#F8C15B"/>
- <stop offset="0.5152" style="stop-color:#F6B84E"/>
- <stop offset="0.6667" style="stop-color:#ED8C0D"/>
- <stop offset="0.8545" style="stop-color:#F9C967"/>
- <stop offset="1" style="stop-color:#FFB81F"/>
+<stop offset="0" style="stop-color:#FFB533"/>
+<stop offset="0.2545" style="stop-color:#FFE692"/>
+<stop offset="0.503" style="stop-color:#F8C15B"/>
+<stop offset="0.5152" style="stop-color:#F6B84E"/>
+<stop offset="0.6667" style="stop-color:#ED8C0D"/>
+<stop offset="0.8545" style="stop-color:#F9C967"/>
+<stop offset="1" style="stop-color:#FFB81F"/>
</linearGradient>
<path d="M7.258,8.637l4.244-4.242C13.432,2.464,16.01,1.4,18.76,1.4c2.752,0,5.33,1.063,7.26,2.994 c1.932,1.931,2.994,4.509,2.994,7.259c0,2.751-1.063,5.329-2.994,7.26l-4.242,4.242L7.258,8.637z" fill="url(#SVGID_5__)"/>
-<rect fill="#873900" height="0.401" opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.546 -5.4806)" width="21.332" x="3.723" y="15.825"/>
-<path d="M13.619,23.671c0.143-0.041,0.285-0.087,0.426-0.141l-7.162-7.161c-0.053,0.14-0.1,0.281-0.141,0.425 L13.619,23.671z" opacity="0.2"/>
-<rect fill="#873900" height="0.4" opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.429 -5.7637)" width="21.332" x="4.006" y="15.543"/>
-<path d="M13.133,23.786c0.156-0.029,0.309-0.063,0.461-0.106L6.734,16.82c-0.043,0.151-0.078,0.305-0.107,0.459 L13.133,23.786z" opacity="0.1"/>
-<path d="M4.85,8.302l17.262,17.263c0.037-0.485-0.059-1.074-0.334-1.844L6.693,8.637 C5.924,8.36,5.336,8.266,4.85,8.302z" fill="#FFF6C9" opacity="0.5"/>
-<path d="M6.693,8.637c-0.195-0.07-0.379-0.128-0.553-0.176l15.813,15.813 c-0.047-0.173-0.105-0.357-0.176-0.553L6.693,8.637z" fill="#FFF6C9" opacity="0.5"/>
-<rect fill="#753200" height="0.401" opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 17.1142 -1.697)" width="25.598" x="-2.194" y="19.608"/>
-<rect fill="#753200" height="0.398" opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.9952 -1.9808)" width="25.599" x="-1.911" y="19.326"/>
+<rect fill="#873900" fill-opacity="0.2" height="0.401" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.546 -5.4806)" width="21.332" x="3.723" y="15.825"/>
+<path d="M13.619,23.671c0.143-0.041,0.285-0.087,0.426-0.141l-7.162-7.161c-0.053,0.14-0.1,0.281-0.141,0.425 L13.619,23.671z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="#873900" fill-opacity="0.1" height="0.4" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.429 -5.7637)" width="21.332" x="4.006" y="15.543"/>
+<path d="M13.133,23.786c0.156-0.029,0.309-0.063,0.461-0.106L6.734,16.82c-0.043,0.151-0.078,0.305-0.107,0.459 L13.133,23.786z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M4.85,8.302l17.262,17.263c0.037-0.485-0.059-1.074-0.334-1.844L6.693,8.637 C5.924,8.36,5.336,8.266,4.85,8.302z" fill="#FFF6C9" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M6.693,8.637c-0.195-0.07-0.379-0.128-0.553-0.176l15.813,15.813 c-0.047-0.173-0.105-0.357-0.176-0.553L6.693,8.637z" fill="#FFF6C9" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect fill="#753200" fill-opacity="0.2" height="0.401" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 17.1142 -1.697)" width="25.598" x="-2.194" y="19.608"/>
+<rect fill="#753200" fill-opacity="0.1" height="0.398" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.9952 -1.9808)" width="25.599" x="-1.911" y="19.326"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="21.6523" x2="21.6523" y1="1.7822" y2="16.0367">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#F9C966"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#F9C966"/>
</linearGradient>
-<path d="M27.348,15.49c-2.314-1.359-4.715-3.255-6.941-5.482 c-2.229-2.228-4.123-4.628-5.482-6.942l-0.236-0.403l0.436-0.172c1.156-0.455,2.375-0.686,3.627-0.686 c2.615,0,5.162,1.047,6.986,2.873c2.775,2.774,3.635,6.941,2.188,10.614l-0.172,0.435L27.348,15.49z" fill="url(#SVGID_6__)" opacity="0.5"/>
+<path d="M27.348,15.49c-2.314-1.359-4.715-3.255-6.941-5.482 c-2.229-2.228-4.123-4.628-5.482-6.942l-0.236-0.403l0.436-0.172c1.156-0.455,2.375-0.686,3.627-0.686 c2.615,0,5.162,1.047,6.986,2.873c2.775,2.774,3.635,6.941,2.188,10.614l-0.172,0.435L27.348,15.49z" fill="url(#SVGID_6__)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calendar_dynamic.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calendar_dynamic.svg Thu May 27 13:10:59 2010 +0300
@@ -1,92 +1,94 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
-<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="8.1353" y2="54.5899">
- <stop offset="0.2" style="stop-color:#ECF3F5"/>
- <stop offset="0.8606" style="stop-color:#7E878A"/>
- <stop offset="1" style="stop-color:#B0B8BB"/>
+<rect fill="none" fill-rule="evenodd" height="60" width="60"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="8.1353" y2="54.5904">
+<stop offset="0" style="stop-color:#ECF3F5"/>
+<stop offset="0.2" style="stop-color:#ECF3F5"/>
+<stop offset="0.8606" style="stop-color:#7E878A"/>
+<stop offset="1" style="stop-color:#B0B8BB"/>
</linearGradient>
<path d="M55.5,8.382h-51C3.673,8.382,3,9.054,3,9.883v43.16c0,0.828,0.673,1.499,1.5,1.499h51 c0.828,0,1.5-0.671,1.5-1.499V9.883C57,9.054,56.328,8.382,55.5,8.382L55.5,8.382z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.1396" y2="53.5106">
- <stop offset="0" style="stop-color:#DDE3E6"/>
- <stop offset="0.2364" style="stop-color:#C9CED1"/>
- <stop offset="0.9636" style="stop-color:#899396"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="9.1396" y2="53.5111">
+<stop offset="0" style="stop-color:#DDE3E6"/>
+<stop offset="0.2364" style="stop-color:#C9CED1"/>
+<stop offset="0.9636" style="stop-color:#899396"/>
+<stop offset="1" style="stop-color:#899396"/>
</linearGradient>
-<path clip-rule="evenodd" d="M4.5,53.784c-0.409,0-0.742-0.333-0.742-0.741V9.883 c0-0.411,0.333-0.743,0.742-0.743h51c0.412,0,0.742,0.333,0.742,0.743v43.16c0,0.408-0.33,0.741-0.742,0.741H4.5z" fill="url(#SVGID_2_)" fill-rule="evenodd"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9629" x2="29.9629" y1="11.1455" y2="51.7439">
- <stop offset="0" style="stop-color:#707173"/>
- <stop offset="1" style="stop-color:#000000"/>
+<path d="M4.5,53.784c-0.409,0-0.742-0.333-0.742-0.741V9.883 c0-0.411,0.333-0.743,0.742-0.743h51c0.412,0,0.742,0.333,0.742,0.743v43.16c0,0.408-0.33,0.741-0.742,0.741H4.5z" fill="url(#SVGID_2_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9624" x2="29.9624" y1="11.1455" y2="51.7444">
+<stop offset="0" style="stop-color:#707173"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="41.06" opacity="0.4" width="48.965" x="5.48" y="10.892"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.9854" x2="29.9853" y1="22.4663" y2="50.7773">
- <stop offset="0.6606" style="stop-color:#737373"/>
- <stop offset="1" style="stop-color:#DEDEDE"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.4" height="41.06" stroke-opacity="0.4" width="48.965" x="5.48" y="10.892"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="20.5205" x2="11.9277" y1="46.2158" y2="54.8087">
+<stop offset="0" style="stop-color:#737373"/>
+<stop offset="0.2485" style="stop-color:#737373"/>
+<stop offset="0.703" style="stop-color:#DEDEDE"/>
+<stop offset="1" style="stop-color:#DEDEDE"/>
</linearGradient>
-<rect clip-rule="evenodd" fill="url(#SVGID_4_)" fill-rule="evenodd" height="27.871" width="46.162" x="6.904" y="22.815"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="33.1284" x2="25.0323" y1="46.9072" y2="20.4671">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
-</linearGradient>
-<path clip-rule="evenodd" d="M43.46,48.54c-3.661,0.956-14.169,2.085-14.169,2.085H6.919 V22.754h46.162c0,0-0.667,18.597-1.312,21.188C51.203,46.232,48.729,47.162,43.46,48.54z" fill="url(#SVGID_5_)" fill-rule="evenodd"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="12.2397" y2="22.5541">
- <stop offset="0" style="stop-color:#FF7042"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<rect fill="url(#SVGID_4_)" fill-rule="evenodd" height="27.871" width="46.162" x="6.904" y="22.815"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.9995" x2="29.9995" y1="22.7153" y2="50.5533">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<rect clip-rule="evenodd" fill="url(#SVGID_6_)" fill-rule="evenodd" height="10.453" width="46.162" x="6.919" y="12.301"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="40.8252" x2="43.2182" y1="45.627" y2="50.105">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#000000"/>
+<path d="M53.08,50.625c0,0-30.832,0-32.895,0 c-1.003,0-6.479-6.618-6.479-6.618s-6.788-5.71-6.788-6.063c0-0.688,0-15.19,0-15.19H53.08V50.625z" fill="url(#SVGID_5_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="29.9995" x2="29.9995" y1="12.2397" y2="22.5541">
+<stop offset="0" style="stop-color:#FF7042"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
-<path clip-rule="evenodd" d="M42.892,49.125 c-3.36,0.65-7.976,1.264-14.294,1.326l23.639-11.176c0,0,0.021,2.431-0.467,4.667C51.77,43.942,51.377,47.479,42.892,49.125z" fill="url(#SVGID_7_)" fill-rule="evenodd" opacity="0.42"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="41.271" x2="39.8252" y1="50.4082" y2="47.2086">
- <stop offset="0" style="stop-color:#9C9C9C"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<rect fill="url(#SVGID_6_)" fill-rule="evenodd" height="10.453" width="46.161" x="6.919" y="12.301"/>
+<rect fill="#231F20" fill-opacity="0.4" fill-rule="evenodd" height="7.614" stroke-opacity="0.4" width="6.012" x="41.637" y="8.382"/>
+<rect fill="#231F20" fill-opacity="0.4" fill-rule="evenodd" height="7.614" stroke-opacity="0.4" width="6.012" x="12.631" y="8.382"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="41.6758" x2="47.8333" y1="17.0825" y2="17.0825">
+<stop offset="0" style="stop-color:#FB6C41"/>
+<stop offset="0.497" style="stop-color:#FFB69E"/>
+<stop offset="1" style="stop-color:#FB6C41"/>
</linearGradient>
-<path clip-rule="evenodd" d="M27.946,50.618c0,0,13.763-0.12,18.882-7.134 c0,0,3.664,4.517,4.941,0.458C51.229,46.73,46.316,50.721,27.946,50.618z" fill="url(#SVGID_8_)" fill-rule="evenodd"/>
-<path clip-rule="evenodd" d="M46.938,44.23c0,0,2.733,2.877,4.287,0.958 c0.292-0.438,0.466-0.869,0.544-1.273c-1.277,4.058-4.941-0.46-4.941-0.46c-5.119,7.016-18.882,7.136-18.882,7.136 C34.328,50.591,43.756,48.591,46.938,44.23z" fill="#FFFFFF" fill-rule="evenodd"/>
-<rect clip-rule="evenodd" fill="#231F20" fill-rule="evenodd" height="7.614" opacity="0.4" width="6.012" x="41.637" y="8.382"/>
-<rect clip-rule="evenodd" fill="#231F20" fill-rule="evenodd" height="7.614" opacity="0.4" width="6.012" x="12.631" y="8.382"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="41.6763" x2="47.8338" y1="17.0825" y2="17.0825">
- <stop offset="0" style="stop-color:#FB6C41"/>
- <stop offset="0.497" style="stop-color:#FFB69E"/>
- <stop offset="1" style="stop-color:#FB6C41"/>
+<ellipse cx="44.676" cy="17.082" fill="url(#SVGID_7_)" fill-rule="evenodd" rx="3.049" ry="2.87"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="12.6294" x2="18.7869" y1="17.0825" y2="17.0825">
+<stop offset="0" style="stop-color:#FB6C41"/>
+<stop offset="0.497" style="stop-color:#FFB69E"/>
+<stop offset="1" style="stop-color:#FB6C41"/>
</linearGradient>
-<ellipse clip-rule="evenodd" cx="44.676" cy="17.082" fill="url(#SVGID_9_)" fill-rule="evenodd" rx="3.049" ry="2.87"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="12.6294" x2="18.7869" y1="17.0825" y2="17.0825">
- <stop offset="0" style="stop-color:#FB6C41"/>
- <stop offset="0.497" style="stop-color:#FFB69E"/>
- <stop offset="1" style="stop-color:#FB6C41"/>
+<ellipse cx="15.629" cy="17.082" fill="url(#SVGID_8_)" fill-rule="evenodd" rx="3.049" ry="2.87"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="44.6758" x2="44.6758" y1="14.0566" y2="19.1892">
+<stop offset="0" style="stop-color:#4A050A"/>
+<stop offset="1" style="stop-color:#B00F25"/>
</linearGradient>
-<ellipse clip-rule="evenodd" cx="15.629" cy="17.082" fill="url(#SVGID_10_)" fill-rule="evenodd" rx="3.049" ry="2.87"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="44.6758" x2="44.6758" y1="14.0566" y2="19.1892">
- <stop offset="0" style="stop-color:#4A050A"/>
- <stop offset="1" style="stop-color:#B00F25"/>
+<path d="M47.725,16.346c0,1.686-1.367,3.05-3.049,3.05 c-1.684,0-3.049-1.364-3.049-3.05c0-1.681,1.365-3.048,3.049-3.048C46.357,13.297,47.725,14.665,47.725,16.346z" fill="url(#SVGID_9_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="42.5107" x2="46.8302" y1="11.8828" y2="11.8828">
+<stop offset="0" style="stop-color:#B6B4B5"/>
+<stop offset="0.1152" style="stop-color:#FFFCFE"/>
+<stop offset="0.6788" style="stop-color:#595959"/>
+<stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<stop offset="1" style="stop-color:#D4D3D3"/>
</linearGradient>
-<path clip-rule="evenodd" d="M47.725,16.346c0,1.686-1.366,3.05-3.049,3.05 c-1.684,0-3.049-1.364-3.049-3.05c0-1.681,1.365-3.048,3.049-3.048C46.358,13.297,47.725,14.665,47.725,16.346z" fill="url(#SVGID_11_)" fill-rule="evenodd"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="42.5112" x2="46.8307" y1="11.8828" y2="11.8828">
- <stop offset="0" style="stop-color:#B6B4B5"/>
- <stop offset="0.1152" style="stop-color:#FFFCFE"/>
- <stop offset="0.6788" style="stop-color:#595959"/>
- <stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<path d="M44.676,5.458c-1.201,0-2.176,0.977-2.176,2.178v8.494 c0,1.202,0.975,2.177,2.176,2.177s2.178-0.975,2.178-2.177V7.636C46.854,6.435,45.877,5.458,44.676,5.458z" fill="url(#SVGID_10_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="15.6289" x2="15.6289" y1="14.0566" y2="19.1892">
+<stop offset="0" style="stop-color:#4A050A"/>
+<stop offset="1" style="stop-color:#B00F25"/>
</linearGradient>
-<path clip-rule="evenodd" d="M44.676,5.458c-1.201,0-2.176,0.977-2.176,2.178v8.494 c0,1.202,0.975,2.177,2.176,2.177s2.178-0.975,2.178-2.177V7.636C46.854,6.435,45.877,5.458,44.676,5.458z" fill="url(#SVGID_12_)" fill-rule="evenodd"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15.6289" x2="15.6289" y1="14.0566" y2="19.1892">
- <stop offset="0" style="stop-color:#4A050A"/>
- <stop offset="1" style="stop-color:#B00F25"/>
+<path d="M18.678,16.346c0,1.686-1.365,3.05-3.05,3.05 c-1.684,0-3.048-1.364-3.048-3.05c0-1.681,1.364-3.048,3.048-3.048C17.313,13.297,18.678,14.665,18.678,16.346z" fill="url(#SVGID_11_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="13.4644" x2="17.7848" y1="11.8828" y2="11.8828">
+<stop offset="0" style="stop-color:#B6B4B5"/>
+<stop offset="0.1152" style="stop-color:#FFFCFE"/>
+<stop offset="0.6788" style="stop-color:#595959"/>
+<stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<stop offset="1" style="stop-color:#D4D3D3"/>
</linearGradient>
-<path clip-rule="evenodd" d="M18.678,16.346c0,1.686-1.365,3.05-3.05,3.05 c-1.684,0-3.048-1.364-3.048-3.05c0-1.681,1.364-3.048,3.048-3.048C17.313,13.297,18.678,14.665,18.678,16.346z" fill="url(#SVGID_13_)" fill-rule="evenodd"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="13.4644" x2="17.7848" y1="11.8828" y2="11.8828">
- <stop offset="0" style="stop-color:#B6B4B5"/>
- <stop offset="0.1152" style="stop-color:#FFFCFE"/>
- <stop offset="0.6788" style="stop-color:#595959"/>
- <stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<path d="M15.628,5.458c-1.202,0-2.175,0.977-2.175,2.178v8.494 c0,1.202,0.973,2.177,2.175,2.177s2.18-0.975,2.18-2.177V7.636C17.808,6.435,16.83,5.458,15.628,5.458z" fill="url(#SVGID_12_)" fill-rule="evenodd"/>
+<polygon fill="#701619" points="53.08,23.051 6.919,23.051 6.919,22.455 53.08,22.455 53.08,23.051 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="275.5176" x2="269.9313" y1="-325.3354" y2="-330.9218">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.297" style="stop-color:#FFFFFF"/>
+<stop offset="0.5576" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
</linearGradient>
-<path clip-rule="evenodd" d="M15.628,5.458c-1.202,0-2.175,0.977-2.175,2.178v8.494 c0,1.202,0.973,2.177,2.175,2.177s2.18-0.975,2.18-2.177V7.636C17.808,6.435,16.83,5.458,15.628,5.458z" fill="url(#SVGID_14_)" fill-rule="evenodd"/>
-<polygon fill="#701619" points="53.081,23.051 6.919,23.051 6.919,22.455 53.081,22.455 53.081,23.051 "/>
-<rect clip-rule="evenodd" fill="none" fill-rule="evenodd" height="60" width="60"/>
+<path d="M8.216,39.959c-0.313-0.348-0.896-0.695-1.297-2.184c0,0,0.659,3.055,9.701,0.041 c0,12.809,3.767,12.809,3.767,12.809c-0.83,0-1.986-0.479-2.572-1.064L8.216,39.959z" fill="url(#SVGID_13_)"/>
+<path d="M6.932,37.818c-0.004-0.016-0.008-0.027-0.013-0.043C6.919,37.775,6.924,37.793,6.932,37.818z" fill="#FFFFFF"/>
+<path d="M15.776,38.941c0,6.371,1.427,9.571,2.861,11.181c0.528,0.276,1.13,0.467,1.644,0.489 c-0.609-0.114-3.661-1.264-3.661-12.795c-8.417,2.805-9.568,0.354-9.688,0.002c0.131,0.47,0.277,0.818,0.43,1.094 C8.604,39.878,11.029,40.523,15.776,38.941z" fill="#FFFFFF" fill-opacity="0.75"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_assistant.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_assistant.svg Thu May 27 13:10:59 2010 +0300
@@ -1,153 +1,152 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<path d="M30,0.001H14.961C14.955,0.001,14.949,0,14.943,0c-0.006,0-0.012,0.001-0.019,0.001H0v30h30V0.001z" fill="none"/>
<rect fill="none" height="30" width="30" y="0.001"/>
-<path d="M28.736,18.376c0.006-0.225,0.008-0.446-0.004-0.649c-0.002-0.063-0.008-0.122-0.02-0.228 c-0.018-0.208-0.035-0.415-0.068-0.609c-0.01-0.063-0.023-0.122-0.053-0.255c-0.037-0.18-0.072-0.357-0.121-0.521 c-0.02-0.068-0.043-0.131-0.066-0.192l-0.936,0.352l0.896-0.462c-0.047-0.14-0.098-0.279-0.154-0.406 c-0.035-0.079-0.076-0.149-0.115-0.22l-0.865,0.502l0.805-0.611c-0.057-0.108-0.115-0.215-0.178-0.306 c-0.064-0.094-0.133-0.174-0.205-0.252l-0.066-0.078c-0.061-0.076-0.125-0.149-0.197-0.217c-0.158-0.144-0.311-0.233-0.379-0.271 l0.063-0.398h-0.217c-0.018-0.405-0.047-0.809-0.088-1.203c0.014-0.257,0.016-0.514,0.021-0.819 c0.004-0.072,0.008-0.146,0.008-0.203c0-0.065-0.049-1.029-0.049-1.029c-0.006-0.074-0.018-0.146-0.037-0.245 c-0.043-0.41-0.105-0.811-0.189-1.234c-0.01-0.077-0.02-0.153-0.057-0.299c0,0-0.107-0.409-0.164-0.609 c-0.016-0.063-0.033-0.127-0.078-0.267c-0.016-0.036-0.031-0.072-0.049-0.109c-0.404-1.208-1.006-2.3-1.736-3.177l-0.084-0.135 l-0.057-0.066c-0.045-0.052-0.094-0.101-0.174-0.179c-0.145-0.161-0.297-0.316-0.455-0.472c-0.135-0.131-0.275-0.261-0.422-0.387 c-0.164-0.143-0.332-0.282-0.545-0.447c-0.031-0.027-0.117-0.1-0.117-0.1l-0.068-0.048c-0.076-0.054-0.156-0.104-0.236-0.152 l-0.092-0.058c-0.166-0.109-0.334-0.219-0.531-0.336c-0.043-0.028-0.225-0.134-0.225-0.134c-0.076-0.041-0.156-0.079-0.238-0.117 l-0.15-0.074c-0.186-0.095-0.371-0.188-0.557-0.271l-0.072-0.036l-0.172-0.073c-0.102-0.042-0.209-0.079-0.316-0.116l-0.098-0.035 C18.303,0.378,16.66,0,14.943,0c-3.277,0-6.254,1.365-8.416,3.851c0,0-0.074,0.042-0.088,0.049c-0.102,0.04-0.201,0.082-0.33,0.142 L6.088,4.048L5.908,4.14c0,0-0.043,0.032-0.051,0.038C5.732,4.245,5.611,4.316,5.516,4.38L4.975,4.731v0.058 c-1.043,0.897-2.107,2.544-2.125,5.53c0,0,0.002,0.221,0.008,0.355c0.006,0.26,0.014,0.522,0.039,0.858l0,0l0.006,0.119 c0.018,0.194,0.037,0.393,0.07,0.65l0.084,0.609c-0.025,0.351-0.045,0.689-0.055,1.025c-0.148,0.088-0.277,0.184-0.396,0.293 c-0.055,0.051-0.107,0.11-0.15,0.166c-0.109,0.116-0.217,0.235-0.318,0.385c-0.049,0.072-0.094,0.154-0.139,0.237L1.93,15.142 c-0.049,0.085-0.096,0.17-0.141,0.269c-0.057,0.125-0.105,0.264-0.152,0.402l0.945,0.323l-0.984-0.215 c-0.023,0.061-0.045,0.122-0.066,0.191c-0.057,0.194-0.1,0.402-0.143,0.626l-0.029,0.14c-0.037,0.226-0.061,0.463-0.078,0.709 L1.27,17.703c-0.014,0.241-0.012,0.489-0.004,0.729v0.122l0.041,0.001l-0.039,0.002l0.004,0.159c0.18,2.729,1.537,4.709,3.225,4.709 l0.066-0.003c0.033,0.007,0.068,0.012,0.104,0.017l0.314,0.518h0.018c1.168,1.754,3.143,3.851,6.264,4.856 c0.137,0.088,0.277,0.173,0.42,0.254c0.105,0.06,0.211,0.116,0.322,0.173c0.189,0.096,0.383,0.184,0.566,0.259 c0.115,0.049,0.229,0.096,0.348,0.139c0.217,0.075,0.434,0.135,0.734,0.208c0.076,0.021,0.154,0.041,0.236,0.056 c0.363,0.067,0.697,0.1,1.018,0.1c0.369,0,0.715-0.029,1.049-0.071c0.1-0.012,0.199-0.027,0.301-0.044 c0.256-0.042,0.504-0.096,0.809-0.176l0.174-0.046c0.24-0.073,0.469-0.155,0.691-0.247l0.229-0.095l0.018-0.02 c1.295-0.59,2.434-1.545,3.477-2.911l0.057-0.075l0.09-0.18c0.49-0.765,0.957-1.572,1.398-2.416l0.01,0.018 c0,0,0.344-0.712,0.385-0.799c0.455,0.389,0.947,0.495,1.277,0.518l0.145,0.005c0.139,0,0.281-0.013,0.424-0.038l0.066,0.002 c1.689,0,3.045-1.98,3.227-4.714C28.734,18.665,28.738,18.451,28.736,18.376z" opacity="0.35"/>
+<path d="M28.736,18.376c0.006-0.225,0.008-0.446-0.004-0.649c-0.002-0.063-0.008-0.122-0.02-0.228 c-0.018-0.208-0.035-0.415-0.068-0.609c-0.01-0.063-0.023-0.122-0.053-0.255c-0.037-0.18-0.072-0.357-0.121-0.521 c-0.02-0.068-0.043-0.131-0.066-0.192l-0.936,0.352l0.896-0.462c-0.047-0.14-0.098-0.279-0.154-0.406 c-0.035-0.079-0.076-0.149-0.115-0.22l-0.865,0.502l0.805-0.611c-0.057-0.108-0.115-0.215-0.178-0.306 c-0.064-0.094-0.133-0.174-0.205-0.252l-0.066-0.078c-0.061-0.076-0.125-0.149-0.197-0.217c-0.158-0.144-0.311-0.233-0.379-0.271 l0.063-0.398h-0.217c-0.018-0.405-0.047-0.809-0.088-1.203c0.014-0.257,0.016-0.514,0.021-0.819 c0.004-0.072,0.008-0.146,0.008-0.203c0-0.065-0.049-1.029-0.049-1.029c-0.006-0.074-0.018-0.146-0.037-0.245 c-0.043-0.41-0.105-0.811-0.189-1.234c-0.01-0.077-0.02-0.153-0.057-0.299c0,0-0.107-0.409-0.164-0.609 c-0.016-0.063-0.033-0.127-0.078-0.267c-0.016-0.036-0.031-0.072-0.049-0.109c-0.404-1.208-1.006-2.3-1.736-3.177l-0.084-0.135 l-0.057-0.066c-0.045-0.052-0.094-0.101-0.174-0.179c-0.145-0.161-0.297-0.316-0.455-0.472c-0.135-0.131-0.275-0.261-0.422-0.387 c-0.164-0.143-0.332-0.282-0.545-0.447c-0.031-0.027-0.117-0.1-0.117-0.1l-0.068-0.048c-0.076-0.054-0.156-0.104-0.236-0.152 l-0.092-0.058c-0.166-0.109-0.334-0.219-0.531-0.336c-0.043-0.028-0.225-0.134-0.225-0.134c-0.076-0.041-0.156-0.079-0.238-0.117 l-0.15-0.074c-0.186-0.095-0.371-0.188-0.557-0.271l-0.072-0.036l-0.172-0.073c-0.102-0.042-0.209-0.079-0.316-0.116l-0.098-0.035 C18.303,0.378,16.66,0,14.943,0c-3.277,0-6.254,1.365-8.416,3.851c0,0-0.074,0.042-0.088,0.049c-0.102,0.04-0.201,0.082-0.33,0.142 L6.088,4.048L5.908,4.14c0,0-0.043,0.032-0.051,0.038C5.732,4.245,5.611,4.316,5.516,4.38L4.975,4.731v0.058 c-1.043,0.897-2.107,2.544-2.125,5.53c0,0,0.002,0.221,0.008,0.355c0.006,0.26,0.014,0.522,0.039,0.858l0,0l0.006,0.119 c0.018,0.194,0.037,0.393,0.07,0.65l0.084,0.609c-0.025,0.351-0.045,0.689-0.055,1.025c-0.148,0.088-0.277,0.184-0.396,0.293 c-0.055,0.051-0.107,0.11-0.15,0.166c-0.109,0.116-0.217,0.235-0.318,0.385c-0.049,0.072-0.094,0.154-0.139,0.237L1.93,15.142 c-0.049,0.085-0.096,0.17-0.141,0.269c-0.057,0.125-0.105,0.264-0.152,0.402l0.945,0.323l-0.984-0.215 c-0.023,0.061-0.045,0.122-0.066,0.191c-0.057,0.194-0.1,0.402-0.143,0.626l-0.029,0.14c-0.037,0.226-0.061,0.463-0.078,0.709 L1.27,17.703c-0.014,0.241-0.012,0.489-0.004,0.729v0.122l0.041,0.001l-0.039,0.002l0.004,0.159c0.18,2.729,1.537,4.709,3.225,4.709 l0.066-0.003c0.033,0.007,0.068,0.012,0.104,0.017l0.314,0.518h0.018c1.168,1.754,3.143,3.851,6.264,4.856 c0.137,0.088,0.277,0.173,0.42,0.254c0.105,0.06,0.211,0.116,0.322,0.173c0.189,0.096,0.383,0.184,0.566,0.259 c0.115,0.049,0.229,0.096,0.348,0.139c0.217,0.075,0.434,0.135,0.734,0.208c0.076,0.021,0.154,0.041,0.236,0.056 c0.363,0.067,0.697,0.1,1.018,0.1c0.369,0,0.715-0.029,1.049-0.071c0.1-0.012,0.199-0.027,0.301-0.044 c0.256-0.042,0.504-0.096,0.809-0.176l0.174-0.046c0.24-0.073,0.469-0.155,0.691-0.247l0.229-0.095l0.018-0.02 c1.295-0.59,2.434-1.545,3.477-2.911l0.057-0.075l0.09-0.18c0.49-0.765,0.957-1.572,1.398-2.416l0.01,0.018 c0,0,0.344-0.712,0.385-0.799c0.455,0.389,0.947,0.495,1.277,0.518l0.145,0.005c0.139,0,0.281-0.013,0.424-0.038l0.066,0.002 c1.689,0,3.045-1.98,3.227-4.714C28.734,18.665,28.738,18.451,28.736,18.376z" fill-opacity="0.35" stroke-opacity="0.35"/>
<radialGradient cx="-4272.6958" cy="-2826.3394" gradientTransform="matrix(0.4209 0 0 0.4195 1813.6772 1193.3445)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="50.7847">
- <stop offset="0" style="stop-color:#FFE2D9"/>
- <stop offset="0.5091" style="stop-color:#FFC6B3"/>
- <stop offset="0.7636" style="stop-color:#FFA98E"/>
- <stop offset="1" style="stop-color:#E88160"/>
+<stop offset="0" style="stop-color:#FFE2D9"/>
+<stop offset="0.5091" style="stop-color:#FFC6B3"/>
+<stop offset="0.7636" style="stop-color:#FFA98E"/>
+<stop offset="1" style="stop-color:#E88160"/>
</radialGradient>
<path d="M25.389,15.734c-0.051-0.023-0.109-0.029-0.166-0.046v-0.001c-0.01-0.003-0.02-0.004-0.031-0.006 c-0.084-0.021-0.164-0.041-0.25-0.045C14.48,13.817,9.682,8.021,9.32,9.556c-0.289,1.219-3.221,3.863-4.758,5.179 c0.014,0.062,0.02,0.111,0.035,0.171c0,0,0.053,0.271,0.168,0.729c-0.121,0.014-0.24,0.039-0.355,0.088 c-0.979,0.413-1.285,2.014-0.684,3.58c0.596,1.563,1.873,2.502,2.852,2.089c0.061-0.025,0.113-0.067,0.166-0.104 c0.566,1.277,1.268,2.646,2.119,4.018c1.432,1.7,3.623,3.694,6.043,3.694c2.93,0,4.719-1.601,5.951-3.216 c0.035-0.069,0.064-0.132,0.1-0.188c0.912-1.426,1.652-2.856,2.252-4.188c0.955,0.331,2.182-0.559,2.791-2.063 C26.633,17.789,26.357,16.172,25.389,15.734z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="10.7998" x2="19.8362" y1="30.4028" y2="21.437">
- <stop offset="0" style="stop-color:#FFC6B3"/>
- <stop offset="1" style="stop-color:#FFA98E"/>
+<stop offset="0" style="stop-color:#FFC6B3"/>
+<stop offset="1" style="stop-color:#FFA98E"/>
</linearGradient>
<path d="M14.477,28.181c-1.781,0-3.578-0.829-4.9-2.08C10.975,27.572,12.857,29,14.906,29 c2.93,0,4.719-1.601,5.951-3.216c0.035-0.069,0.064-0.132,0.1-0.188c0.912-1.426,1.652-2.856,2.252-4.188 C19.879,27.229,17.404,28.181,14.477,28.181z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="14.8223" x2="14.8223" y1="1.3467" y2="14.6545">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M14.615,1.151c-3.629,0-5.373,1.65-6.721,3.372c-2.188,0.339-5.66,2.344-3.209,11.141 c1.535-1.317,4.346-4.89,4.635-6.108c0.365-1.549,5.246,4.369,15.902,6.132c0.127-0.492,0.182-0.782,0.182-0.782 C27.078,7.396,23.438,1.444,14.615,1.151z" fill="url(#SVGID_3__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="19.375" x2="7.3168" y1="14.0776" y2="6.9192">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3636" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3636" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M9.332,8.835c0,0,5.217,6.854,15.818,6.842C25.15,15.677,20.156,14.894,9.332,8.835z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="6.2285" x2="6.3344" y1="5.5264" y2="13.1843">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M8.076,5.032c0,0-5.105,0.307-3.211,8.964C4.865,13.996,4.24,8.067,8.076,5.032z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="16.5127" x2="16.1374" y1="2.4868" y2="5.9564">
- <stop offset="0" style="stop-color:#A87C4F"/>
- <stop offset="1" style="stop-color:#632F00"/>
+<stop offset="0" style="stop-color:#A87C4F"/>
+<stop offset="1" style="stop-color:#632F00"/>
</linearGradient>
<path d="M17.088,6.231c-2.377-0.338-6.398-2.445-7.977-1.694c0,0,5.16-5.888,14.27,0.818 C23.381,5.355,21.211,6.819,17.088,6.231z" fill="url(#SVGID_6_)"/>
-<path d="M14.906,29c1.008,0,1.877-0.191,2.641-0.508c0.219-0.284,0.35-0.608,0.35-0.962 c0-1.137-1.271-2.026-2.895-2.026c-0.975,0-1.861,0.333-2.387,0.871c-2.586-0.645-4.225-2.271-5.199-3.676 c0.191,0.386,0.396,0.776,0.613,1.169c0.006,0.01,0.01,0.021,0.016,0.03c0.219,0.396,0.449,0.794,0.693,1.194l0,0 c0.018,0.031,0.035,0.061,0.055,0.094c0.008,0.015,0.018,0.027,0.027,0.043c0.016,0.026,0.029,0.05,0.043,0.076 C10.295,27.006,12.486,29,14.906,29z" fill="#020202" opacity="0.3"/>
-<path d="M4.039,19.958c0.051,0.078,0.098,0.153,0.145,0.229c0.115,0.174,0.242,0.337,0.369,0.481l0,0 c0.623,0.679,1.387,0.993,2.025,0.724c0.061-0.025,0.113-0.067,0.166-0.104c0.031,0.07,0.068,0.145,0.1,0.215 c0.213-0.626,0.311-1.44,0.287-2.506c-0.004-0.219-0.012-0.443-0.029-0.672c-0.094-1.413-0.336-2.495-0.719-3.22l-0.041-0.581 l0.008-0.197C6.436,7.803,9.889,3.421,14.943,3.421c5.088,0,8.543,4.423,8.596,11.01l0.006,0.054l-0.059,0.897 c-0.307,0.713-0.502,1.701-0.586,2.943c-0.018,0.229-0.023,0.453-0.033,0.712c-0.02,1.024,0.08,1.843,0.293,2.477 c0.016-0.035,0.035-0.07,0.049-0.105c0.75,0.259,1.664-0.238,2.318-1.189l0,0c0.088-0.126,0.17-0.264,0.252-0.403 c0.076-0.151,0.152-0.304,0.221-0.471c0.633-1.556,0.357-3.173-0.611-3.61c-0.051-0.023-0.109-0.029-0.166-0.046v-0.001 c0.127-0.492,0.182-0.782,0.182-0.782c0.063-0.284,0.117-0.566,0.164-0.848c0.014-0.076,0.025-0.157,0.039-0.235 c0.035-0.214,0.064-0.429,0.09-0.642c0.008-0.068,0.014-0.139,0.021-0.207c0.061-0.561,0.086-1.11,0.078-1.646 c0-0.048-0.002-0.097-0.004-0.144c-0.004-0.243-0.014-0.48-0.037-0.717c0-0.027-0.002-0.055-0.004-0.082 c-0.047-0.539-0.127-1.063-0.242-1.571c-0.006-0.024-0.014-0.05-0.021-0.074c-0.057-0.244-0.119-0.484-0.193-0.721 c-0.002-0.004-0.004-0.01-0.004-0.01c-0.463-1.186-1.051-2.256-1.75-3.196c-0.002-0.002-0.002-0.002-0.002-0.002 c-0.461-0.538-0.99-1.023-1.584-1.456c-0.006-0.005-0.014-0.01-0.02-0.016c-0.287-0.203-0.588-0.393-0.902-0.572 c-0.029-0.016-0.057-0.029-0.084-0.045c-0.305-0.169-0.629-0.327-0.965-0.471c-0.041-0.017-0.082-0.035-0.125-0.054 c-0.332-0.137-0.68-0.263-1.039-0.376c-0.053-0.017-0.104-0.031-0.154-0.046c-0.363-0.107-0.738-0.206-1.133-0.285 c-0.051-0.011-0.102-0.022-0.154-0.031c-0.402-0.079-0.818-0.146-1.246-0.196c-0.039-0.005-0.078-0.007-0.119-0.013 c-0.451-0.049-0.916-0.084-1.398-0.1c-3.629,0-5.373,1.65-6.721,3.372C7.748,4.545,7.598,4.576,7.441,4.615l-0.02,0.004 C7.27,4.66,7.117,4.707,6.959,4.765C6.953,4.767,6.947,4.767,6.941,4.771C6.783,4.831,6.625,4.898,6.465,4.979 c-0.004,0.003-0.008,0.003-0.01,0.004c-0.162,0.084-0.322,0.18-0.48,0.287v0.003c-0.977,1.45-1.701,3.185-2.127,5.142 c0,0.349,0.014,0.72,0.049,1.107c0,0.006,0,0.011,0,0.011c0.018,0.192,0.035,0.389,0.061,0.587c0.002,0.02,0.006,0.038,0.008,0.057 c0.023,0.187,0.049,0.377,0.08,0.574c0.004,0.037,0.012,0.078,0.016,0.117c0.031,0.179,0.061,0.361,0.1,0.549 c0.01,0.064,0.023,0.131,0.037,0.196c0.031,0.169,0.064,0.333,0.102,0.508c0.023,0.101,0.053,0.207,0.074,0.311 c0.033,0.146,0.066,0.286,0.104,0.435c0.063,0.256,0.131,0.516,0.207,0.783c-0.094,0.015-0.186,0.035-0.273,0.073 c-0.979,0.413-1.285,2.014-0.684,3.58c0.063,0.167,0.137,0.324,0.217,0.477C3.975,19.841,4.006,19.9,4.039,19.958z M4.758,15.599 c0.002,0.013,0.006,0.023,0.008,0.036c-0.02,0.002-0.041,0.007-0.061,0.01C4.721,15.63,4.74,15.614,4.758,15.599z" fill="#020202" opacity="0.3"/>
+<path d="M14.906,29c1.008,0,1.877-0.191,2.641-0.508c0.219-0.284,0.35-0.608,0.35-0.962 c0-1.137-1.271-2.026-2.895-2.026c-0.975,0-1.861,0.333-2.387,0.871c-2.586-0.645-4.225-2.271-5.199-3.676 c0.191,0.386,0.396,0.776,0.613,1.169c0.006,0.01,0.01,0.021,0.016,0.03c0.219,0.396,0.449,0.794,0.693,1.194l0,0 c0.018,0.031,0.035,0.061,0.055,0.094c0.008,0.015,0.018,0.027,0.027,0.043c0.016,0.026,0.029,0.05,0.043,0.076 C10.295,27.006,12.486,29,14.906,29z" fill="#020202" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M4.039,19.958c0.051,0.078,0.098,0.153,0.145,0.229c0.115,0.174,0.242,0.337,0.369,0.481l0,0 c0.623,0.679,1.387,0.993,2.025,0.724c0.061-0.025,0.113-0.067,0.166-0.104c0.031,0.07,0.068,0.145,0.1,0.215 c0.213-0.626,0.311-1.44,0.287-2.506c-0.004-0.219-0.012-0.443-0.029-0.672c-0.094-1.413-0.336-2.495-0.719-3.22l-0.041-0.581 l0.008-0.197C6.436,7.803,9.889,3.421,14.943,3.421c5.088,0,8.543,4.423,8.596,11.01l0.006,0.054l-0.059,0.897 c-0.307,0.713-0.502,1.701-0.586,2.943c-0.018,0.229-0.023,0.453-0.033,0.712c-0.02,1.024,0.08,1.843,0.293,2.477 c0.016-0.035,0.035-0.07,0.049-0.105c0.75,0.259,1.664-0.238,2.318-1.189l0,0c0.088-0.126,0.17-0.264,0.252-0.403 c0.076-0.151,0.152-0.304,0.221-0.471c0.633-1.556,0.357-3.173-0.611-3.61c-0.051-0.023-0.109-0.029-0.166-0.046v-0.001 c0.127-0.492,0.182-0.782,0.182-0.782c0.063-0.284,0.117-0.566,0.164-0.848c0.014-0.076,0.025-0.157,0.039-0.235 c0.035-0.214,0.064-0.429,0.09-0.642c0.008-0.068,0.014-0.139,0.021-0.207c0.061-0.561,0.086-1.11,0.078-1.646 c0-0.048-0.002-0.097-0.004-0.144c-0.004-0.243-0.014-0.48-0.037-0.717c0-0.027-0.002-0.055-0.004-0.082 c-0.047-0.539-0.127-1.063-0.242-1.571c-0.006-0.024-0.014-0.05-0.021-0.074c-0.057-0.244-0.119-0.484-0.193-0.721 c-0.002-0.004-0.004-0.01-0.004-0.01c-0.463-1.186-1.051-2.256-1.75-3.196c-0.002-0.002-0.002-0.002-0.002-0.002 c-0.461-0.538-0.99-1.023-1.584-1.456c-0.006-0.005-0.014-0.01-0.02-0.016c-0.287-0.203-0.588-0.393-0.902-0.572 c-0.029-0.016-0.057-0.029-0.084-0.045c-0.305-0.169-0.629-0.327-0.965-0.471c-0.041-0.017-0.082-0.035-0.125-0.054 c-0.332-0.137-0.68-0.263-1.039-0.376c-0.053-0.017-0.104-0.031-0.154-0.046c-0.363-0.107-0.738-0.206-1.133-0.285 c-0.051-0.011-0.102-0.022-0.154-0.031c-0.402-0.079-0.818-0.146-1.246-0.196c-0.039-0.005-0.078-0.007-0.119-0.013 c-0.451-0.049-0.916-0.084-1.398-0.1c-3.629,0-5.373,1.65-6.721,3.372C7.748,4.545,7.598,4.576,7.441,4.615l-0.02,0.004 C7.27,4.66,7.117,4.707,6.959,4.765C6.953,4.767,6.947,4.767,6.941,4.771C6.783,4.831,6.625,4.898,6.465,4.979 c-0.004,0.003-0.008,0.003-0.01,0.004c-0.162,0.084-0.322,0.18-0.48,0.287v0.003c-0.977,1.45-1.701,3.185-2.127,5.142 c0,0.349,0.014,0.72,0.049,1.107c0,0.006,0,0.011,0,0.011c0.018,0.192,0.035,0.389,0.061,0.587c0.002,0.02,0.006,0.038,0.008,0.057 c0.023,0.187,0.049,0.377,0.08,0.574c0.004,0.037,0.012,0.078,0.016,0.117c0.031,0.179,0.061,0.361,0.1,0.549 c0.01,0.064,0.023,0.131,0.037,0.196c0.031,0.169,0.064,0.333,0.102,0.508c0.023,0.101,0.053,0.207,0.074,0.311 c0.033,0.146,0.066,0.286,0.104,0.435c0.063,0.256,0.131,0.516,0.207,0.783c-0.094,0.015-0.186,0.035-0.273,0.073 c-0.979,0.413-1.285,2.014-0.684,3.58c0.063,0.167,0.137,0.324,0.217,0.477C3.975,19.841,4.006,19.9,4.039,19.958z M4.758,15.599 c0.002,0.013,0.006,0.023,0.008,0.036c-0.02,0.002-0.041,0.007-0.061,0.01C4.721,15.63,4.74,15.614,4.758,15.599z" fill="#020202" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="4.5703" x2="15.5801" y1="24.3438" y2="24.3438">
- <stop offset="0" style="stop-color:#454647"/>
- <stop offset="0.4727" style="stop-color:#BDBEC3"/>
- <stop offset="1" style="stop-color:#E4E6EB"/>
+<stop offset="0" style="stop-color:#454647"/>
+<stop offset="0.4727" style="stop-color:#BDBEC3"/>
+<stop offset="1" style="stop-color:#E4E6EB"/>
</linearGradient>
<path d="M15.002,28.398c-7.861,0-10.377-7.274-10.4-7.347c-0.104-0.304,0.061-0.633,0.367-0.732 c0.303-0.102,0.631,0.062,0.732,0.364c0.088,0.268,2.289,6.558,9.301,6.558c0.318,0,0.578,0.261,0.578,0.579 C15.58,28.142,15.32,28.398,15.002,28.398L15.002,28.398z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="4.5801" x2="15.5801" y1="24.6323" y2="24.6323">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.7394" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.7394" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M15.002,27.82c-7.535,0-9.852-6.954-9.852-6.954H4.58c0,0.064,0,0.124,0.021,0.186 c0.023,0.072,2.539,7.347,10.4,7.347c0.318,0,0.578-0.257,0.578-0.578H15.002z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.9443" x2="14.9443" y1="15.605" y2="2.9585">
- <stop offset="0" style="stop-color:#39393B"/>
- <stop offset="0.0424" style="stop-color:#808184"/>
- <stop offset="0.3333" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#A6A8AB"/>
+<stop offset="0" style="stop-color:#39393B"/>
+<stop offset="0.0424" style="stop-color:#808184"/>
+<stop offset="0.3333" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#A6A8AB"/>
</linearGradient>
<path d="M25.432,14.492L25.432,14.492L25.432,14.492c-0.01-8.527-4.396-12.747-10.43-12.747 S4.58,5.965,4.572,14.492l0,0l0,0c0,0.006,0-0.005,0-0.005v0.005l-0.193,5.98l1.77-0.114l-0.387-5.834 c0.021-7.47,4.131-11.683,9.182-11.683c5.049,0,9.156,4.212,9.18,11.679l-0.381,5.838l1.768,0.114L25.432,14.492L25.432,14.492 C25.432,14.492,25.432,14.498,25.432,14.492z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="14.9434" x2="14.9434" y1="10.8926" y2="1.3884">
- <stop offset="0.0545" style="stop-color:#9C9DA1"/>
- <stop offset="0.3333" style="stop-color:#88898C"/>
- <stop offset="1" style="stop-color:#E3E6EB"/>
+<stop offset="0" style="stop-color:#9C9DA1"/>
+<stop offset="0.0545" style="stop-color:#9C9DA1"/>
+<stop offset="0.3333" style="stop-color:#88898C"/>
+<stop offset="1" style="stop-color:#E3E6EB"/>
</linearGradient>
<path d="M25.895,14.554h-0.002C25.885,6.026,20.977,1,14.943,1C8.914,1,4.002,6.026,3.992,14.554v0.009 v0.017h0.002l0.578,0.495C4.762,6.837,9.027,1.745,14.943,1.745c5.922,0,10.303,5.084,10.488,13.329l0.461-0.495h0.002l-0.002-0.011 L25.895,14.554z" fill="url(#SVGID_10_)"/>
-<path d="M4.635,13.914c-0.041,0-0.086,0-0.129,0.004c-0.166,0.012-0.332,0.048-0.492,0.101 c-0.008,0.181-0.021,0.351-0.021,0.535v0.009v0.017h0.002l0.086,1.333l0.135-0.009l0.088-0.037c0.092-0.036,0.188-0.062,0.332-0.067 c0.693,0,1.172,1.212,1.311,3.328c0.014,0.191,0.021,0.38,0.023,0.564h0.133l-0.34-5.167c0-0.07,0.01-0.136,0.01-0.205 C5.449,14.052,5.072,13.914,4.635,13.914z" fill="#020202" opacity="0.2"/>
-<path d="M5.701,20.684c-0.102-0.303-0.43-0.466-0.732-0.364c-0.307,0.1-0.471,0.429-0.367,0.732 c0.008,0.023,0.289,0.831,0.941,1.904c0.371-0.112,0.682-0.33,0.926-0.663C5.959,21.424,5.727,20.767,5.701,20.684z" fill="#020202" opacity="0.2"/>
+<path d="M4.635,13.914c-0.041,0-0.086,0-0.129,0.004c-0.166,0.012-0.332,0.048-0.492,0.101 c-0.008,0.181-0.021,0.351-0.021,0.535v0.009v0.017h0.002l0.086,1.333l0.135-0.009l0.088-0.037c0.092-0.036,0.188-0.062,0.332-0.067 c0.693,0,1.172,1.212,1.311,3.328c0.014,0.191,0.021,0.38,0.023,0.564h0.133l-0.34-5.167c0-0.07,0.01-0.136,0.01-0.205 C5.449,14.052,5.072,13.914,4.635,13.914z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M5.701,20.684c-0.102-0.303-0.43-0.466-0.732-0.364c-0.307,0.1-0.471,0.429-0.367,0.732 c0.008,0.023,0.289,0.831,0.941,1.904c0.371-0.112,0.682-0.33,0.926-0.663C5.959,21.424,5.727,20.767,5.701,20.684z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(-1.1528 0.0088 -0.0088 1.0194 -260.3646 8.1097)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-229.8506" x2="-229.8506" y1="6.7896" y2="15.8948">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.8303" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.8303" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M2.451,18.632c0.146,2.2,1.32,3.912,2.621,3.826c1.301-0.087,1.596-1.895,1.451-4.094 c-0.143-2.199-0.676-3.955-1.977-3.868S2.307,16.433,2.451,18.632z" fill="url(#SVGID_11_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -239.0674 0)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-243.1118" x2="-243.1118" y1="14.311" y2="22.5257">
- <stop offset="0" style="stop-color:#7A7A7A"/>
- <stop offset="0.7818" style="stop-color:#212121"/>
- <stop offset="1" style="stop-color:#666666"/>
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
<path d="M2.27,18.649c0.143,2.158,1.172,3.849,2.301,3.772c1.131-0.074,1.371-1.848,1.229-4.004 c-0.143-2.159-0.615-3.885-1.744-3.811C2.928,14.684,2.127,16.491,2.27,18.649z" fill="url(#SVGID_12_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -239.0674 0)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-242.6147" x2="-242.6147" y1="14.103" y2="22.1363">
- <stop offset="0" style="stop-color:#BDC3C4"/>
- <stop offset="0.3515" style="stop-color:#DDE3E6"/>
- <stop offset="0.6545" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#BDC3C4"/>
+<stop offset="0.3515" style="stop-color:#DDE3E6"/>
+<stop offset="0.6545" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M3.678,14.938c0.625,0.681,0.889,2.033,0.949,3.574c0.053,1.407-0.047,2.636-0.531,3.396 c-0.828-0.358-1.516-1.714-1.625-3.381C2.357,16.833,2.879,15.374,3.678,14.938z" fill="url(#SVGID_13_)"/>
-<path d="M4.055,15.332c0.006,0,0.014,0.002,0.014,0.002c0.158-0.063,0.316-0.101,0.479-0.112 c1.301-0.086,1.834,1.669,1.977,3.867c0.014,0.198,0.021,0.394,0.027,0.586c0.012-0.414,0.002-0.853-0.027-1.311 c-0.143-2.199-0.676-3.955-1.977-3.868c-0.162,0.009-0.32,0.05-0.471,0.113c0,0-0.016-0.002-0.021-0.002 c-1.105,0.072-1.889,1.809-1.789,3.903C2.354,16.754,3.082,15.397,4.055,15.332z" fill="#FFFFFF" opacity="0.3"/>
-<path d="M25.367,13.914c-0.488,0-0.902,0.172-1.25,0.507c0.002,0.033,0.006,0.066,0.006,0.1 l-0.338,5.171h0.246c0.006-0.185,0.014-0.373,0.025-0.564c0.139-2.113,0.615-3.327,1.359-3.327h0.004 c0.092,0.005,0.188,0.03,0.281,0.066l0.086,0.037l0.02,0.002l0.086-1.326h0.002l-0.002-0.011l0.002-0.015h-0.002 c0-0.195-0.016-0.377-0.02-0.569c-0.123-0.034-0.248-0.06-0.379-0.066C25.451,13.914,25.408,13.914,25.367,13.914z" fill="#020202" opacity="0.2"/>
+<path d="M4.055,15.332c0.006,0,0.014,0.002,0.014,0.002c0.158-0.063,0.316-0.101,0.479-0.112 c1.301-0.086,1.834,1.669,1.977,3.867c0.014,0.198,0.021,0.394,0.027,0.586c0.012-0.414,0.002-0.853-0.027-1.311 c-0.143-2.199-0.676-3.955-1.977-3.868c-0.162,0.009-0.32,0.05-0.471,0.113c0,0-0.016-0.002-0.021-0.002 c-1.105,0.072-1.889,1.809-1.789,3.903C2.354,16.754,3.082,15.397,4.055,15.332z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M25.367,13.914c-0.488,0-0.902,0.172-1.25,0.507c0.002,0.033,0.006,0.066,0.006,0.1 l-0.338,5.171h0.246c0.006-0.185,0.014-0.373,0.025-0.564c0.139-2.113,0.615-3.327,1.359-3.327h0.004 c0.092,0.005,0.188,0.03,0.281,0.066l0.086,0.037l0.02,0.002l0.086-1.326h0.002l-0.002-0.011l0.002-0.015h-0.002 c0-0.195-0.016-0.377-0.02-0.569c-0.123-0.034-0.248-0.06-0.379-0.066C25.451,13.914,25.408,13.914,25.367,13.914z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(1.1528 0.0088 0.0088 1.0194 453.5628 8.1097)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-371.4248" x2="-371.4248" y1="8.0117" y2="17.117">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.8303" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.8303" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M27.551,18.632c-0.146,2.2-1.318,3.912-2.619,3.826c-1.303-0.087-1.598-1.895-1.453-4.094 s0.676-3.955,1.979-3.868C26.758,14.583,27.695,16.433,27.551,18.632z" fill="url(#SVGID_14_)"/>
<linearGradient gradientTransform="matrix(1 0 0 1 432.2656 0)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-406.3081" x2="-406.3081" y1="14.311" y2="22.5257">
- <stop offset="0" style="stop-color:#7A7A7A"/>
- <stop offset="0.7818" style="stop-color:#212121"/>
- <stop offset="1" style="stop-color:#666666"/>
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
<path d="M27.732,18.649c-0.143,2.158-1.172,3.849-2.301,3.772c-1.129-0.074-1.373-1.848-1.227-4.004 c0.139-2.159,0.613-3.885,1.742-3.811C27.076,14.684,27.873,16.491,27.732,18.649z" fill="url(#SVGID_15_)"/>
<linearGradient gradientTransform="matrix(1 0 0 1 432.2656 0)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-405.8105" x2="-405.8105" y1="14.103" y2="22.1363">
- <stop offset="0" style="stop-color:#BDC3C4"/>
- <stop offset="0.3515" style="stop-color:#DDE3E6"/>
- <stop offset="0.6545" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#BDC3C4"/>
+<stop offset="0.3515" style="stop-color:#DDE3E6"/>
+<stop offset="0.6545" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M26.322,14.938c-0.621,0.681-0.889,2.033-0.947,3.574c-0.051,1.407,0.049,2.636,0.531,3.396 c0.83-0.358,1.516-1.714,1.625-3.381C27.643,16.833,27.123,15.374,26.322,14.938z" fill="url(#SVGID_16_)"/>
-<path d="M25.947,15.332l-0.021,0.002c-0.15-0.063-0.307-0.101-0.469-0.112 c-1.303-0.086-1.834,1.669-1.979,3.867c-0.016,0.198-0.021,0.394-0.025,0.586c-0.016-0.414-0.004-0.853,0.025-1.311 c0.145-2.199,0.676-3.955,1.979-3.868c0.162,0.009,0.318,0.05,0.469,0.113l0.021-0.002c1.104,0.072,1.891,1.809,1.789,3.903 C27.648,16.754,26.922,15.397,25.947,15.332z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M25.947,15.332l-0.021,0.002c-0.15-0.063-0.307-0.101-0.469-0.112 c-1.303-0.086-1.834,1.669-1.979,3.867c-0.016,0.198-0.021,0.394-0.025,0.586c-0.016-0.414-0.004-0.853,0.025-1.311 c0.145-2.199,0.676-3.955,1.979-3.868c0.162,0.009,0.318,0.05,0.469,0.113l0.021-0.002c1.104,0.072,1.891,1.809,1.789,3.903 C27.648,16.754,26.922,15.397,25.947,15.332z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="15.002" x2="15.002" y1="26.0142" y2="28.9689">
- <stop offset="0" style="stop-color:#7A7A7A"/>
- <stop offset="0.7818" style="stop-color:#212121"/>
- <stop offset="1" style="stop-color:#666666"/>
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
<ellipse cx="15.002" cy="27.53" fill="url(#SVGID_17_)" rx="2.316" ry="1.449"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_car.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_car.svg Thu May 27 13:10:59 2010 +0300
@@ -1,149 +1,107 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
<path d="M27.61,11.99l-1.636-5.233c-0.38-1.531-2.51-3.757-4.97-3.757h-12c-2.461,0-4.588,2.226-4.955,3.701l-1.652,5.291c-0.846,0.74-1.393,1.81-1.393,3.01v6c0,0.883,0.391,1.67,1,2.22v1.78c0,1.103,1.01,2,2.25,2h2.5c1.24,0,2.25-0.9,2.25-2v-1h12v1c0,1.103,1.01,2,2.25,2h2.5c1.24,0,2.25-0.897,2.25-2v-1.78c0.609-0.55,1-1.337,1-2.22v-6c0-1.2-0.55-2.28-1.39-3.01z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="5.5" x2="5.5" y1="22" y2="26">
-
<stop offset="0" stop-color="#000000"/>
-
<stop offset="0.6848" stop-color="#000000"/>
-
<stop offset="1" stop-color="#646464"/>
-
</linearGradient>
<path d="M3,22v3c0,0.55,0.563,1,1.25,1h2.5c0.688,0,1.25-0.45,1.25-1v-3h-5z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="24.5" x2="24.5" y1="22" y2="26">
-
<stop offset="0" stop-color="#000000"/>
-
<stop offset="0.6848" stop-color="#000000"/>
-
<stop offset="1" stop-color="#646464"/>
-
</linearGradient>
<path d="M22,22v3c0,0.55,0.563,1,1.25,1h2.5c0.688,0,1.25-0.45,1.25-1v-3h-5z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="4.062" y2="14.94">
-
<stop offset="0" stop-color="#F7CC01"/>
-
<stop offset="1" stop-color="#FFAB01"/>
-
</linearGradient>
<path d="M27.5,15l-2.5-8c-0.267-1.067-2-3-4-3h-12c-2,0-3.733,1.933-4,3l-2.5,8h25z" fill="url(#SVGID_3__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="5.545" y2="13.46">
-
<stop offset="0" stop-color="#4D4D4D"/>
-
<stop offset="1" stop-color="#000000"/>
-
</linearGradient>
<path d="M4.541,13.5l1.891-6.053c0.14-0.549,1.33-1.947,2.568-1.947h12c1.238,0,2.428,1.398,2.545,1.863l1.916,6.137h-20.92z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="2" x2="28" y1="17.5" y2="17.5">
-
<stop offset="0" stop-color="#FFC501"/>
-
<stop offset="1" stop-color="#FFB701"/>
-
</linearGradient>
<path d="M25,12h-20c-1.65,0-3,1.35-3,3v6c0,1.1,0.9,2,2,2h22c1.1,0,2-0.9,2-2v-6c0-1.65-1.35-3-3-3z" fill="url(#SVGID_5_)"/>
<path d="M7.416,12l1.04,3.383c0.452,1.47,2.004,2.62,3.544,2.62h6c1.535,0,3.092-1.15,3.544-2.617l1.04-3.38h-15.16z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="6" x2="6" y1="18" y2="13">
-
<stop offset="0" stop-color="#F0B901"/>
-
<stop offset="1" stop-color="#ED7E00"/>
-
</linearGradient>
<path d="M6,18c-1.654,0-3-1.121-3-2.5s1.346-2.5,3-2.5,3,1.121,3,2.5-1.346,2.5-3,2.5z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="6" x2="6" y1="13.83" y2="17.17">
-
<stop offset="0" stop-color="#FAFAFA"/>
-
<stop offset="1" stop-color="#C8C8D2"/>
-
</linearGradient>
<ellipse cx="6" cy="15.5" fill="url(#SVGID_7_)" rx="2" ry="1.666"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="24" x2="24" y1="18" y2="13">
-
<stop offset="0" stop-color="#F0B901"/>
-
<stop offset="1" stop-color="#ED7E00"/>
-
</linearGradient>
<path d="M24,18c-1.654,0-3-1.121-3-2.5s1.346-2.5,3-2.5,3,1.121,3,2.5-1.35,2.5-3,2.5z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="24" x2="24" y1="13.83" y2="17.17">
-
<stop offset="0" stop-color="#FAFAFA"/>
-
<stop offset="1" stop-color="#C8C8D2"/>
-
</linearGradient>
<ellipse cx="24" cy="15.5" fill="url(#SVGID_9_)" rx="2" ry="1.666"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="2" x2="28" y1="19.5" y2="19.5">
-
<stop offset="0" stop-color="#FF9000"/>
-
<stop offset="0.511" stop-color="#FFC501"/>
-
<stop offset="1" stop-color="#FF8800"/>
-
</linearGradient>
<rect fill="url(#SVGID_10_)" height="1" width="26" x="2" y="19"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="15" x2="15" y1="17" y2="12">
-
<stop offset="0" stop-color="#D67900"/>
-
<stop offset="1" stop-color="#FFC501"/>
-
</linearGradient>
<path d="M8.461,12l0.951,3.088c0.323,1.05,1.488,1.91,2.588,1.91h6c1.1,0,2.265-0.86,2.588-1.912l0.95-3.09h-13.08z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15" x2="15" y1="12.06" y2="16.44">
-
<stop offset="0" stop-color="#FFE896"/>
-
<stop offset="1" stop-color="#FFB701"/>
-
</linearGradient>
<path d="M8.984,12l0.905,2.941c0.261,0.85,1.231,1.56,2.111,1.56h6c0.884,0,1.85-0.714,2.11-1.559l0.91-2.94h-12.04z" fill="url(#SVGID_12_)"/>
<path d="M23.22,8.01l-0.164-0.523c-0.08-0.288-1.08-1.487-2.06-1.487h-12c-0.965,0-1.99,1.203-2.092,1.596l-0.625,2.003,16.94-1.589z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15" x2="15" y1="23" y2="21">
-
<stop offset="0" stop-color="#565656"/>
-
<stop offset="1" stop-color="#212121"/>
-
</linearGradient>
<path d="M22,21h-14c-1.1,0-2,0.9-2,2h18c0-1.1-0.9-2-2-2z" fill="url(#SVGID_13_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_duration.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_duration.svg Thu May 27 13:10:59 2010 +0300
@@ -1,79 +1,78 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M14.999,30C6.729,30,0,23.271,0,15S6.729,0,14.999,0C23.271,0,30,6.729,30,15S23.271,30,14.999,30L14.999,30 z" opacity="0.35"/>
+<path d="M14.999,30C6.729,30,0,23.271,0,15S6.729,0,14.999,0C23.271,0,30,6.729,30,15S23.271,30,14.999,30L14.999,30 z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="1.1948" y2="28.8709">
- <stop offset="0" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#454B4D"/>
+<stop offset="0" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#454B4D"/>
</linearGradient>
<path d="M14.999,29C7.281,29,1,22.72,1,15S7.281,1,14.999,1C22.72,1,29,7.28,29,15S22.72,29,14.999,29 L14.999,29z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.5835" y2="28.5506">
- <stop offset="0" style="stop-color:#D1D7D9"/>
- <stop offset="0.2364" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#697173"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.2364" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#697173"/>
</linearGradient>
<circle cx="15" cy="15" fill="url(#SVGID_2__)" r="13.611"/>
-<path d="M15.474,15.476c4.559,0,8.961-0.286,13.127-0.81C28.425,7.305,22.406,1.389,14.999,1.389 c-7.36,0-13.357,5.847-13.6,13.151C5.846,15.143,10.568,15.476,15.474,15.476z" fill="#F1F1F2" opacity="0.35"/>
+<path d="M15.474,15.476c4.559,0,8.961-0.286,13.127-0.81C28.425,7.305,22.406,1.389,14.999,1.389 c-7.36,0-13.357,5.847-13.6,13.151C5.846,15.143,10.568,15.476,15.474,15.476z" fill="#F1F1F2" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="1.5186" x2="28.6768" y1="8.2915" y2="8.2915">
- <stop offset="0" style="stop-color:#C0C5C7"/>
- <stop offset="0.2" style="stop-color:#F7FDFF"/>
- <stop offset="0.8" style="stop-color:#F7FDFF"/>
- <stop offset="1" style="stop-color:#CDD3D5"/>
+<stop offset="0" style="stop-color:#C0C5C7"/>
+<stop offset="0.2" style="stop-color:#F7FDFF"/>
+<stop offset="0.8" style="stop-color:#F7FDFF"/>
+<stop offset="1" style="stop-color:#CDD3D5"/>
</linearGradient>
<path d="M14.999,1.778c7.453,0,13.503,5.99,13.605,13.416c0.002-0.063,0.007-0.129,0.007-0.194 c0-7.517-6.095-13.611-13.612-13.611C7.482,1.389,1.389,7.483,1.389,15c0,0.065,0.003,0.131,0.005,0.194 C1.498,7.769,7.548,1.778,14.999,1.778z" fill="url(#SVGID_3__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="14.999" x2="14.999" y1="27.249" y2="2.9914">
- <stop offset="0" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#454B4D"/>
+<stop offset="0" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#454B4D"/>
</linearGradient>
<path d="M14.999,27.055C8.352,27.055,2.944,21.648,2.944,15S8.352,2.945,14.999,2.945 c6.648,0,12.056,5.406,12.056,12.055S21.647,27.055,14.999,27.055L14.999,27.055z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.001" x2="15.001" y1="26.3296" y2="3.0368">
- <stop offset="0.4" style="stop-color:#FAF9F9"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#FAF9F9"/>
+<stop offset="0.4" style="stop-color:#FAF9F9"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M14.999,26.666C8.566,26.666,3.333,21.432,3.333,15S8.566,3.334,14.999,3.334S26.668,8.568,26.668,15 S21.432,26.666,14.999,26.666L14.999,26.666z" fill="url(#SVGID_5__)"/>
-<path d="M14.999,15.832c3.849,0,7.521-0.322,10.89-0.905C25.848,8.956,20.98,4.111,14.999,4.111 c-5.979,0-10.846,4.845-10.886,10.815C7.479,15.51,11.15,15.832,14.999,15.832z" fill="#FFFFFF" opacity="0.7"/>
+<path d="M14.999,15.832c3.849,0,7.521-0.322,10.89-0.905C25.848,8.956,20.98,4.111,14.999,4.111 c-5.979,0-10.846,4.845-10.886,10.815C7.479,15.51,11.15,15.832,14.999,15.832z" fill="#FFFFFF" fill-opacity="0.7" stroke-opacity="0.7"/>
<rect fill="#404041" height="2.335" width="0.777" x="14.611" y="4.396"/>
<rect fill="#404041" height="2.333" width="0.777" x="14.611" y="23.842"/>
<rect fill="#404041" height="0.779" width="2.333" x="23.556" y="14.896"/>
@@ -86,23 +85,23 @@
<rect fill="#404041" height="1.882" transform="matrix(0.8678 -0.497 0.497 0.8678 -9.1555 13.0056)" width="0.627" x="19.548" y="22.766"/>
<rect fill="#404041" height="1.884" transform="matrix(0.497 -0.8678 0.8678 0.497 -5.7368 10.9541)" width="0.627" x="6.267" y="9.483"/>
<rect fill="#404041" height="1.882" transform="matrix(0.4991 -0.8665 0.8665 0.4991 -5.7273 30.3844)" width="0.63" x="23.105" y="19.206"/>
-<path d="M15.953,15.552c-0.04-0.188-0.133-0.352-0.261-0.482l1.34-4.418l-1.117-0.34l-1.392,4.587 c-0.24,0.138-0.42,0.372-0.475,0.653h-2.55v0.389h2.55c0.009,0.05,0.024,0.101,0.043,0.148L8.091,22.09l0.505,0.506l5.978-5.979 c0.129,0.063,0.273,0.102,0.427,0.102c0.471,0,0.862-0.333,0.953-0.777h9.158v-0.389H15.953z" fill="#231F20" opacity="0.2"/>
+<path d="M15.953,15.552c-0.04-0.188-0.133-0.352-0.261-0.482l1.34-4.418l-1.117-0.34l-1.392,4.587 c-0.24,0.138-0.42,0.372-0.475,0.653h-2.55v0.389h2.55c0.009,0.05,0.024,0.101,0.043,0.148L8.091,22.09l0.505,0.506l5.978-5.979 c0.129,0.063,0.273,0.102,0.427,0.102c0.471,0,0.862-0.333,0.953-0.777h9.158v-0.389H15.953z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(0.9569 0.2903 -0.2903 0.9569 409.6663 189.0642)" gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="-428.2788" x2="-428.2788" y1="-57.4336" y2="-51.435">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<polygon fill="url(#SVGID_6__)" points="17.032,10.101 15.915,9.763 14.22,15.344 15.339,15.684 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="8.3799" x2="15.2201" y1="21.7544" y2="14.9142">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<polygon fill="url(#SVGID_7_)" points="15.479,15.16 14.974,14.655 8.091,21.539 8.596,22.044 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="18.3057" x2="18.3057" y1="14.9443" y2="15.5124">
- <stop offset="0" style="stop-color:#FF0000"/>
- <stop offset="1" style="stop-color:#A8000B"/>
+<stop offset="0" style="stop-color:#FF0000"/>
+<stop offset="1" style="stop-color:#A8000B"/>
</linearGradient>
<path d="M25.111,15h-9.158c-0.091-0.442-0.482-0.778-0.953-0.778S14.138,14.558,14.049,15h-2.55v0.389h2.55 c0.089,0.443,0.48,0.778,0.951,0.778s0.862-0.335,0.953-0.778h9.158V15z" fill="url(#SVGID_8_)"/>
<circle cx="15" cy="15.194" fill="#F99792" r="0.583"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_fax.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_fax.svg Thu May 27 13:10:59 2010 +0300
@@ -1,291 +1,296 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="0,11.605 0,11.61 0,22.205 0,22.21 0,30 30,30 30,0 0,0 "/>
-<path clip-rule="evenodd" d="M4.541,29.085v-2.15c-0.734-0.043-1.318-0.653-1.318-1.397v-0.819 H2.514C1.128,24.718,0,23.591,0,22.205V11.61c0-1.387,1.128-2.515,2.514-2.515h0.703V8.334h0.006v-1.58 c0-0.744,0.584-1.354,1.318-1.397V0.915H25.46v4.441c0.734,0.043,1.318,0.653,1.318,1.397v1.58l0.005,0.762h0.704 c1.386,0,2.513,1.128,2.513,2.515v10.595c0,1.386-1.127,2.513-2.513,2.513h-0.709v0.819c0,0.744-0.584,1.354-1.318,1.397v2.15H4.541 z" fill-rule="evenodd" opacity="0.35"/>
+<path d="M4.541,29.085v-2.15c-0.734-0.043-1.318-0.653-1.318-1.397v-0.819 H2.514C1.128,24.718,0,23.591,0,22.205V11.61c0-1.387,1.128-2.515,2.514-2.515h0.703V8.334h0.006v-1.58 c0-0.744,0.584-1.354,1.318-1.397V0.915H25.46v4.441c0.734,0.043,1.318,0.653,1.318,1.397v1.58l0.005,0.762h0.704 c1.386,0,2.513,1.128,2.513,2.515v10.595c0,1.386-1.127,2.513-2.513,2.513h-0.709v0.819c0,0.744-0.584,1.354-1.318,1.397v2.15H4.541 z" fill-opacity="0.35" fill-rule="evenodd" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.0005" x2="15.0005" y1="6.3018" y2="10.8418">
- <stop offset="0" style="stop-color:#D1D7D9"/>
- <stop offset="0.3273" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.3273" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M25.778,10.497c0,0.22-0.179,0.397-0.399,0.397H4.622c-0.22,0-0.399-0.178-0.399-0.397V6.754 c0-0.221,0.179-0.399,0.399-0.399h20.756c0.221,0,0.399,0.179,0.399,0.399V10.497z" fill="url(#SVGID_1__)"/>
-<rect fill="#020202" height="0.38" opacity="0.3" width="21.567" x="4.217" y="9.712"/>
-<rect fill="#020202" height="0.378" opacity="0.15" width="21.567" x="4.217" y="9.334"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.38" stroke-opacity="0.3" width="21.567" x="4.217" y="9.712"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="21.567" x="4.217" y="9.334"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.0005" x2="15.0005" y1="1.915" y2="10.6297">
- <stop offset="0" style="stop-color:#D9D9D9"/>
- <stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
<rect fill="url(#SVGID_2__)" height="8.323" width="18.919" x="5.541" y="1.915"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.0005" x2="15.0005" y1="1.835" y2="9.598">
- <stop offset="0" style="stop-color:#EDEDED"/>
- <stop offset="1" style="stop-color:#BDBDBD"/>
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
<polygon fill="url(#SVGID_3__)" points="24.46,5.21 24.46,10.238 5.541,10.238 5.541,1.915 12.667,1.915 16.569,2.111 23.704,4.152 24.272,4.748 "/>
-<rect fill="#020202" height="0.376" opacity="0.5" width="13.621" x="8.19" y="7.213"/>
-<rect fill="#020202" height="0.379" opacity="0.2" width="13.621" x="8.19" y="6.834"/>
-<rect fill="#020202" height="0.38" opacity="0.2" width="18.919" x="5.541" y="9.712"/>
-<rect fill="#020202" height="0.378" opacity="0.1" width="18.919" x="5.541" y="9.334"/>
-<rect fill="#020202" height="0.379" opacity="0.03" width="18.919" x="5.541" y="8.955"/>
-<rect fill="#020202" height="0.376" opacity="0.5" width="13.621" x="8.19" y="4.942"/>
-<rect fill="#020202" height="0.38" opacity="0.2" width="13.621" x="8.19" y="4.563"/>
-<path clip-rule="evenodd" d="M12.572,1.916c0,0,6.867,1.039,9.42,4.539 c0,0,1.93-2.649,2.467-1.208C24.188,3.855,21.738,1.864,12.572,1.916z" fill="#050505" fill-rule="evenodd" opacity="0.05"/>
-<path clip-rule="evenodd" d="M12.572,1.916c0,0,6.867,0.282,9.42,3.781 c0,0,1.93-2.271,2.467-0.45C24.188,3.855,21.738,1.864,12.572,1.916z" fill="#050505" fill-rule="evenodd" opacity="0.1"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.376" stroke-opacity="0.5" width="13.621" x="8.19" y="7.213"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.621" x="8.19" y="6.834"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.38" stroke-opacity="0.2" width="18.919" x="5.541" y="9.712"/>
+<rect fill="#020202" fill-opacity="0.1" height="0.378" stroke-opacity="0.1" width="18.919" x="5.541" y="9.334"/>
+<rect fill="#020202" fill-opacity="0.03" height="0.379" stroke-opacity="0.03" width="18.919" x="5.541" y="8.955"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.376" stroke-opacity="0.5" width="13.621" x="8.19" y="4.942"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.38" stroke-opacity="0.2" width="13.621" x="8.19" y="4.563"/>
+<path d="M12.572,1.916c0,0,6.867,1.039,9.42,4.539 c0,0,1.93-2.649,2.467-1.208C24.188,3.855,21.738,1.864,12.572,1.916z" fill="#050505" fill-opacity="0.05" fill-rule="evenodd" stroke-opacity="0.05"/>
+<path d="M12.572,1.916c0,0,6.867,0.282,9.42,3.781 c0,0,1.93-2.271,2.467-0.45C24.188,3.855,21.738,1.864,12.572,1.916z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="18.876" x2="18.1627" y1="2.2437" y2="4.8932">
- <stop offset="0.0061" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D9D9D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.0061" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<path clip-rule="evenodd" d="M12.572,1.916c0,0,6.867,0.059,9.42,3.56 c0,0,1.83-2.256,2.467-0.229C24.188,3.855,21.738,1.864,12.572,1.916z" fill="url(#SVGID_4__)" fill-rule="evenodd"/>
+<path d="M12.572,1.916c0,0,6.867,0.059,9.42,3.56 c0,0,1.83-2.256,2.467-0.229C24.188,3.855,21.738,1.864,12.572,1.916z" fill="url(#SVGID_4__)" fill-rule="evenodd"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="9.9375" y2="23.5596">
- <stop offset="0" style="stop-color:#BDC3C4"/>
- <stop offset="0.3515" style="stop-color:#DDE3E6"/>
- <stop offset="0.6545" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#BDC3C4"/>
+<stop offset="0.3515" style="stop-color:#DDE3E6"/>
+<stop offset="0.6545" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M29,22.205c0,0.835-0.677,1.513-1.513,1.513H2.514C1.678,23.718,1,23.04,1,22.205V11.61 c0-0.835,0.678-1.515,1.514-1.515h24.973c0.836,0,1.513,0.68,1.513,1.515V22.205z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.0005" x2="15.0005" y1="26.0552" y2="23.3401">
- <stop offset="0" style="stop-color:#D1D7D9"/>
- <stop offset="0.3273" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.3273" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M4.223,23.718v1.819c0,0.221,0.179,0.399,0.399,0.399h20.756c0.221,0,0.399-0.179,0.399-0.399v-1.819 H4.223z" fill="url(#SVGID_6_)"/>
-<rect fill="#020202" height="0.377" opacity="0.3" width="21.551" x="4.226" y="23.729"/>
-<rect fill="#020202" height="0.379" opacity="0.15" width="21.551" x="4.226" y="24.105"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.377" stroke-opacity="0.3" width="21.551" x="4.226" y="23.729"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.379" stroke-opacity="0.15" width="21.551" x="4.226" y="24.105"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15" x2="15" y1="9.9375" y2="23.5596">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M27.487,10.096H2.514C1.678,10.096,1,10.775,1,11.61v10.595c0,0.835,0.678,1.513,1.514,1.513 c-0.626,0-1.135-0.51-1.135-1.135v-0.378V11.988V11.61c0-0.626,0.509-1.135,1.135-1.135h24.973c0.626,0,1.135,0.509,1.135,1.135 v0.378v10.217v0.378c0,0.625-0.509,1.135-1.135,1.135c0.836,0,1.513-0.678,1.513-1.513V11.61C29,10.775,28.323,10.096,27.487,10.096 z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="10.4932" x2="10.4932" y1="11.9312" y2="15.3514">
- <stop offset="0" style="stop-color:#686C6E"/>
- <stop offset="1" style="stop-color:#E4EEF2"/>
+<stop offset="0" style="stop-color:#686C6E"/>
+<stop offset="1" style="stop-color:#E4EEF2"/>
</linearGradient>
-<path d="M5.005,15.329c-0.417,0-0.758-0.344-0.758-0.766v-1.874 c0-0.423,0.34-0.766,0.758-0.766h10.978c0.417,0,0.757,0.343,0.757,0.766v1.874c0,0.422-0.34,0.766-0.757,0.766H5.005z" fill="url(#SVGID_8_)" opacity="0.4"/>
+<path d="M5.005,15.329c-0.417,0-0.758-0.344-0.758-0.766v-1.874 c0-0.423,0.34-0.766,0.758-0.766h10.978c0.417,0,0.757,0.343,0.757,0.766v1.874c0,0.422-0.34,0.766-0.757,0.766H5.005z" fill="url(#SVGID_8_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.4912" x2="10.4912" y1="12.3164" y2="14.996">
- <stop offset="0" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#2E2E2E"/>
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
<path d="M16.356,14.563c0,0.21-0.17,0.383-0.379,0.383H5.005c-0.209,0-0.378-0.173-0.378-0.383v-1.874 c0-0.213,0.169-0.384,0.378-0.384h10.972c0.209,0,0.379,0.171,0.379,0.384V14.563z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.4912" x2="10.4912" y1="9.2769" y2="15.8769">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#30A4D5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#30A4D5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="1.874" width="10.972" x="5.005" y="12.689"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="10.4912" x2="10.4912" y1="10.1255" y2="15.6464">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#4FADD5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#4FADD5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<polygon fill="url(#SVGID_11_)" points="5.005,13.688 15.977,13.419 15.977,12.679 5.005,12.679 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="24.9111" x2="24.9111" y1="11.897" y2="14.1399">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.553,14.085c-0.398,0-0.723-0.323-0.723-0.722v-0.717 c0-0.397,0.324-0.723,0.723-0.723h0.717c0.399,0,0.722,0.325,0.722,0.723v0.717c0,0.398-0.323,0.722-0.722,0.722H24.553z" fill="url(#SVGID_12_)" opacity="0.8"/>
-<path d="M25.27,14.085h-0.717c-0.398,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724 h0.717c0.399,0,0.722-0.324,0.722-0.724v-0.36C25.992,13.762,25.669,14.085,25.27,14.085z" fill="#231F20" opacity="0.4"/>
+<path d="M24.553,14.085c-0.398,0-0.723-0.323-0.723-0.722v-0.717 c0-0.397,0.324-0.723,0.723-0.723h0.717c0.399,0,0.722,0.325,0.722,0.723v0.717c0,0.398-0.323,0.722-0.722,0.722H24.553z" fill="url(#SVGID_12_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,14.085h-0.717c-0.398,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724 h0.717c0.399,0,0.722-0.324,0.722-0.724v-0.36C25.992,13.762,25.669,14.085,25.27,14.085z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="24.9111" x2="24.9111" y1="12.2661" y2="13.76">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.631,13.363c0,0.201-0.162,0.36-0.361,0.36h-0.717c-0.2,0-0.362-0.159-0.362-0.36v-0.717 c0-0.201,0.163-0.362,0.362-0.362h0.717c0.199,0,0.361,0.161,0.361,0.362V13.363z" fill="url(#SVGID_13_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="22.0195" x2="22.0195" y1="11.897" y2="14.1399">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.662,14.085c-0.398,0-0.723-0.323-0.723-0.722v-0.717 c0-0.397,0.325-0.723,0.723-0.723h0.716c0.398,0,0.723,0.325,0.723,0.723v0.717c0,0.398-0.325,0.722-0.723,0.722H21.662z" fill="url(#SVGID_14_)" opacity="0.8"/>
-<path d="M22.378,14.085h-0.716c-0.398,0-0.723-0.323-0.723-0.722v0.36 c0,0.399,0.325,0.724,0.723,0.724h0.716c0.398,0,0.723-0.324,0.723-0.724v-0.36C23.101,13.762,22.776,14.085,22.378,14.085z" fill="#231F20" opacity="0.4"/>
+<path d="M21.662,14.085c-0.398,0-0.723-0.323-0.723-0.722v-0.717 c0-0.397,0.325-0.723,0.723-0.723h0.716c0.398,0,0.723,0.325,0.723,0.723v0.717c0,0.398-0.325,0.722-0.723,0.722H21.662z" fill="url(#SVGID_14_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.378,14.085h-0.716c-0.398,0-0.723-0.323-0.723-0.722v0.36 c0,0.399,0.325,0.724,0.723,0.724h0.716c0.398,0,0.723-0.324,0.723-0.724v-0.36C23.101,13.762,22.776,14.085,22.378,14.085z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.02" x2="22.02" y1="12.2661" y2="13.76">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M22.74,13.363c0,0.201-0.163,0.36-0.362,0.36h-0.716c-0.2,0-0.362-0.159-0.362-0.36v-0.717 c0-0.201,0.162-0.362,0.362-0.362h0.716c0.2,0,0.362,0.161,0.362,0.362V13.363z" fill="url(#SVGID_15_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="19.1279" x2="19.1279" y1="11.897" y2="14.1399">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,14.085c-0.399,0-0.723-0.323-0.723-0.722v-0.717 c0-0.397,0.324-0.723,0.723-0.723h0.716c0.399,0,0.723,0.325,0.723,0.723v0.717c0,0.398-0.324,0.722-0.723,0.722H18.77z" fill="url(#SVGID_16_)" opacity="0.8"/>
-<path d="M19.486,14.085H18.77c-0.399,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724 h0.716c0.399,0,0.723-0.324,0.723-0.724v-0.36C20.209,13.762,19.885,14.085,19.486,14.085z" fill="#231F20" opacity="0.4"/>
+<path d="M18.77,14.085c-0.399,0-0.723-0.323-0.723-0.722v-0.717 c0-0.397,0.324-0.723,0.723-0.723h0.716c0.399,0,0.723,0.325,0.723,0.723v0.717c0,0.398-0.324,0.722-0.723,0.722H18.77z" fill="url(#SVGID_16_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.486,14.085H18.77c-0.399,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724 h0.716c0.399,0,0.723-0.324,0.723-0.724v-0.36C20.209,13.762,19.885,14.085,19.486,14.085z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="19.1279" x2="19.1279" y1="12.2661" y2="13.76">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M19.848,13.363c0,0.201-0.162,0.36-0.362,0.36H18.77c-0.199,0-0.361-0.159-0.361-0.36v-0.717 c0-0.201,0.162-0.362,0.361-0.362h0.716c0.2,0,0.362,0.161,0.362,0.362V13.363z" fill="url(#SVGID_17_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="24.9111" x2="24.9111" y1="14.7876" y2="17.0325">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.553,16.978c-0.398,0-0.723-0.324-0.723-0.724v-0.717 c0-0.399,0.324-0.723,0.723-0.723h0.717c0.399,0,0.722,0.323,0.722,0.723v0.717c0,0.399-0.323,0.724-0.722,0.724H24.553z" fill="url(#SVGID_18_)" opacity="0.8"/>
-<path d="M25.27,16.978h-0.717c-0.398,0-0.723-0.324-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724 h0.717c0.399,0,0.722-0.323,0.722-0.724v-0.36C25.992,16.653,25.669,16.978,25.27,16.978z" fill="#231F20" opacity="0.4"/>
+<path d="M24.553,16.978c-0.398,0-0.723-0.324-0.723-0.724v-0.717 c0-0.399,0.324-0.723,0.723-0.723h0.717c0.399,0,0.722,0.323,0.722,0.723v0.717c0,0.399-0.323,0.724-0.722,0.724H24.553z" fill="url(#SVGID_18_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,16.978h-0.717c-0.398,0-0.723-0.324-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724 h0.717c0.399,0,0.722-0.323,0.722-0.724v-0.36C25.992,16.653,25.669,16.978,25.27,16.978z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="24.9111" x2="24.9111" y1="15.1587" y2="16.6506">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.631,16.254c0,0.201-0.162,0.36-0.361,0.36h-0.717c-0.2,0-0.362-0.159-0.362-0.36v-0.717 c0-0.199,0.163-0.36,0.362-0.36h0.717c0.199,0,0.361,0.161,0.361,0.36V16.254z" fill="url(#SVGID_19_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="22.0195" x2="22.0195" y1="14.7876" y2="17.0325">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.662,16.978c-0.398,0-0.723-0.324-0.723-0.724v-0.717 c0-0.399,0.325-0.723,0.723-0.723h0.716c0.398,0,0.723,0.323,0.723,0.723v0.717c0,0.399-0.325,0.724-0.723,0.724H21.662z" fill="url(#SVGID_20_)" opacity="0.8"/>
-<path d="M22.378,16.978h-0.716c-0.398,0-0.723-0.324-0.723-0.724v0.36c0,0.4,0.325,0.724,0.723,0.724 h0.716c0.398,0,0.723-0.323,0.723-0.724v-0.36C23.101,16.653,22.776,16.978,22.378,16.978z" fill="#231F20" opacity="0.4"/>
+<path d="M21.662,16.978c-0.398,0-0.723-0.324-0.723-0.724v-0.717 c0-0.399,0.325-0.723,0.723-0.723h0.716c0.398,0,0.723,0.323,0.723,0.723v0.717c0,0.399-0.325,0.724-0.723,0.724H21.662z" fill="url(#SVGID_20_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.378,16.978h-0.716c-0.398,0-0.723-0.324-0.723-0.724v0.36c0,0.4,0.325,0.724,0.723,0.724 h0.716c0.398,0,0.723-0.323,0.723-0.724v-0.36C23.101,16.653,22.776,16.978,22.378,16.978z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="22.02" x2="22.02" y1="15.1587" y2="16.6506">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M22.74,16.254c0,0.201-0.163,0.36-0.362,0.36h-0.716c-0.2,0-0.362-0.159-0.362-0.36v-0.717 c0-0.199,0.162-0.36,0.362-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36V16.254z" fill="url(#SVGID_21_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.1279" x2="19.1279" y1="14.7876" y2="17.0325">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,16.978c-0.399,0-0.723-0.324-0.723-0.724v-0.717 c0-0.399,0.324-0.723,0.723-0.723h0.716c0.399,0,0.723,0.323,0.723,0.723v0.717c0,0.399-0.324,0.724-0.723,0.724H18.77z" fill="url(#SVGID_22_)" opacity="0.8"/>
-<path d="M19.486,16.978H18.77c-0.399,0-0.723-0.324-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724 h0.716c0.399,0,0.723-0.323,0.723-0.724v-0.36C20.209,16.653,19.885,16.978,19.486,16.978z" fill="#231F20" opacity="0.4"/>
+<path d="M18.77,16.978c-0.399,0-0.723-0.324-0.723-0.724v-0.717 c0-0.399,0.324-0.723,0.723-0.723h0.716c0.399,0,0.723,0.323,0.723,0.723v0.717c0,0.399-0.324,0.724-0.723,0.724H18.77z" fill="url(#SVGID_22_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.486,16.978H18.77c-0.399,0-0.723-0.324-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724 h0.716c0.399,0,0.723-0.323,0.723-0.724v-0.36C20.209,16.653,19.885,16.978,19.486,16.978z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.1279" x2="19.1279" y1="15.1587" y2="16.6506">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M19.848,16.254c0,0.201-0.162,0.36-0.362,0.36H18.77c-0.199,0-0.361-0.159-0.361-0.36v-0.717 c0-0.199,0.162-0.36,0.361-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36V16.254z" fill="url(#SVGID_23_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="24.9111" x2="24.9111" y1="17.6792" y2="19.9231">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.553,19.868c-0.398,0-0.723-0.322-0.723-0.723V18.43 c0-0.398,0.324-0.724,0.723-0.724h0.717c0.399,0,0.722,0.325,0.722,0.724v0.716c0,0.4-0.323,0.723-0.722,0.723H24.553z" fill="url(#SVGID_24_)" opacity="0.8"/>
-<path d="M25.27,19.868h-0.717c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725 h0.717c0.399,0,0.722-0.324,0.722-0.725v-0.361C25.992,19.546,25.669,19.868,25.27,19.868z" fill="#231F20" opacity="0.4"/>
+<path d="M24.553,19.868c-0.398,0-0.723-0.322-0.723-0.723V18.43 c0-0.398,0.324-0.724,0.723-0.724h0.717c0.399,0,0.722,0.325,0.722,0.724v0.716c0,0.4-0.323,0.723-0.722,0.723H24.553z" fill="url(#SVGID_24_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,19.868h-0.717c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725 h0.717c0.399,0,0.722-0.324,0.722-0.725v-0.361C25.992,19.546,25.669,19.868,25.27,19.868z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="24.9111" x2="24.9111" y1="18.0513" y2="19.5432">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.631,19.146c0,0.199-0.162,0.361-0.361,0.361h-0.717c-0.2,0-0.362-0.162-0.362-0.361V18.43 c0-0.199,0.163-0.36,0.362-0.36h0.717c0.199,0,0.361,0.161,0.361,0.36V19.146z" fill="url(#SVGID_25_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="22.0195" x2="22.0195" y1="17.6792" y2="19.9231">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.662,19.868c-0.398,0-0.723-0.322-0.723-0.723V18.43 c0-0.398,0.325-0.724,0.723-0.724h0.716c0.398,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.325,0.723-0.723,0.723H21.662z" fill="url(#SVGID_26_)" opacity="0.8"/>
-<path d="M22.378,19.868h-0.716c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.325,0.725,0.723,0.725 h0.716c0.398,0,0.723-0.324,0.723-0.725v-0.361C23.101,19.546,22.776,19.868,22.378,19.868z" fill="#231F20" opacity="0.4"/>
+<path d="M21.662,19.868c-0.398,0-0.723-0.322-0.723-0.723V18.43 c0-0.398,0.325-0.724,0.723-0.724h0.716c0.398,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.325,0.723-0.723,0.723H21.662z" fill="url(#SVGID_26_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.378,19.868h-0.716c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.325,0.725,0.723,0.725 h0.716c0.398,0,0.723-0.324,0.723-0.725v-0.361C23.101,19.546,22.776,19.868,22.378,19.868z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="22.02" x2="22.02" y1="18.0513" y2="19.5432">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M22.74,19.146c0,0.199-0.163,0.361-0.362,0.361h-0.716c-0.2,0-0.362-0.162-0.362-0.361V18.43 c0-0.199,0.162-0.36,0.362-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36V19.146z" fill="url(#SVGID_27_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="19.1279" x2="19.1279" y1="17.6792" y2="19.9231">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,19.868c-0.399,0-0.723-0.322-0.723-0.723V18.43 c0-0.398,0.324-0.724,0.723-0.724h0.716c0.399,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.324,0.723-0.723,0.723H18.77z" fill="url(#SVGID_28_)" opacity="0.8"/>
-<path d="M19.486,19.868H18.77c-0.399,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725 h0.716c0.399,0,0.723-0.324,0.723-0.725v-0.361C20.209,19.546,19.885,19.868,19.486,19.868z" fill="#231F20" opacity="0.4"/>
+<path d="M18.77,19.868c-0.399,0-0.723-0.322-0.723-0.723V18.43 c0-0.398,0.324-0.724,0.723-0.724h0.716c0.399,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.324,0.723-0.723,0.723H18.77z" fill="url(#SVGID_28_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.486,19.868H18.77c-0.399,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725 h0.716c0.399,0,0.723-0.324,0.723-0.725v-0.361C20.209,19.546,19.885,19.868,19.486,19.868z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="19.1279" x2="19.1279" y1="18.0513" y2="19.5432">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M19.848,19.146c0,0.199-0.162,0.361-0.362,0.361H18.77c-0.199,0-0.361-0.162-0.361-0.361V18.43 c0-0.199,0.162-0.36,0.361-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36V19.146z" fill="url(#SVGID_29_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -7634.4854 1952.6084)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="-7649.4858" x2="-7649.4858" y1="1924.5239" y2="1930.8613">
- <stop offset="0" style="stop-color:#D9D9D9"/>
- <stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
<rect fill="url(#SVGID_30_)" height="6.053" width="18.919" x="5.541" y="22.032"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="15.0005" x2="15.0005" y1="21.604" y2="23.7331">
- <stop offset="0" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#2E2E2E"/>
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
<path d="M24.568,21.584H5.433c-0.21,0-0.382,0.172-0.382,0.383v1.751H24.95v-1.751 C24.95,21.756,24.779,21.584,24.568,21.584z" fill="url(#SVGID_31_)"/>
-<path d="M24.568,21.206H5.433c-0.21,0-0.382,0.171-0.382,0.384v0.377 c0-0.211,0.171-0.383,0.382-0.383h19.135c0.211,0,0.382,0.172,0.382,0.383V21.59C24.95,21.377,24.779,21.206,24.568,21.206z" fill="#FFFFFF" opacity="0.35"/>
+<path d="M24.568,21.206H5.433c-0.21,0-0.382,0.171-0.382,0.384v0.377 c0-0.211,0.171-0.383,0.382-0.383h19.135c0.211,0,0.382,0.172,0.382,0.383V21.59C24.95,21.377,24.779,21.206,24.568,21.206z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -7634.4854 1952.6084)" gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="-7649.4858" x2="-7649.4858" y1="1924.4653" y2="1930.1107">
- <stop offset="0" style="stop-color:#EDEDED"/>
- <stop offset="1" style="stop-color:#BDBDBD"/>
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
<polygon fill="url(#SVGID_32_)" points="5.541,24.79 5.541,22.032 24.46,22.032 24.46,28.085 17.334,28.085 13.432,27.889 6.298,25.848 5.729,25.252 "/>
-<rect fill="#020202" height="0.38" opacity="0.3" width="18.919" x="5.541" y="22.032"/>
-<rect fill="#020202" height="0.378" opacity="0.15" width="18.919" x="5.541" y="22.412"/>
-<rect fill="#020202" height="0.378" opacity="0.05" width="18.919" x="5.541" y="22.79"/>
-<rect fill="#020202" height="0.376" opacity="0.5" width="13.621" x="8.19" y="24.682"/>
-<rect fill="#020202" height="0.38" opacity="0.2" width="13.621" x="8.19" y="25.058"/>
-<path clip-rule="evenodd" d="M17.429,28.084c0,0-6.867-1.039-9.421-4.539 c0,0-1.929,2.649-2.467,1.208C5.813,26.145,8.263,28.136,17.429,28.084z" fill="#050505" fill-rule="evenodd" opacity="0.05"/>
-<path clip-rule="evenodd" d="M17.429,28.084c0,0-6.867-0.282-9.421-3.781 c0,0-1.929,2.271-2.467,0.45C5.813,26.145,8.263,28.136,17.429,28.084z" fill="#050505" fill-rule="evenodd" opacity="0.1"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.38" stroke-opacity="0.3" width="18.919" x="5.541" y="22.032"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="18.919" x="5.541" y="22.412"/>
+<rect fill="#020202" fill-opacity="0.05" height="0.378" stroke-opacity="0.05" width="18.919" x="5.541" y="22.79"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.376" stroke-opacity="0.5" width="13.621" x="8.19" y="24.682"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.38" stroke-opacity="0.2" width="13.621" x="8.19" y="25.058"/>
+<path d="M17.429,28.084c0,0-6.867-1.039-9.421-4.539 c0,0-1.929,2.649-2.467,1.208C5.813,26.145,8.263,28.136,17.429,28.084z" fill="#050505" fill-opacity="0.05" fill-rule="evenodd" stroke-opacity="0.05"/>
+<path d="M17.429,28.084c0,0-6.867-0.282-9.421-3.781 c0,0-1.929,2.271-2.467,0.45C5.813,26.145,8.263,28.136,17.429,28.084z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -7634.4854 1952.6084)" gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="-7645.6104" x2="-7646.3232" y1="1924.8521" y2="1927.5011">
- <stop offset="0.0061" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D9D9D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.0061" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<path clip-rule="evenodd" d="M17.429,28.084c0,0-6.867-0.059-9.421-3.56 c0,0-1.829,2.256-2.467,0.229C5.813,26.145,8.263,28.136,17.429,28.084z" fill="url(#SVGID_33_)" fill-rule="evenodd"/>
+<path d="M17.429,28.084c0,0-6.867-0.059-9.421-3.56 c0,0-1.829,2.256-2.467,0.229C5.813,26.145,8.263,28.136,17.429,28.084z" fill="url(#SVGID_33_)" fill-rule="evenodd"/>
<rect fill="none" height="30" width="30" x="0"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_fax_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_fax_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,308 +1,314 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="0,11.605 0,11.61 0,22.205 0,22.21 0,30 30,30 30,22.205 30,11.61 30,0 0,0 "/>
-<path d="M21.5,30c-1.331,0-2.65-0.315-3.834-0.915H4.541v-2.15c-0.734-0.043-1.318-0.653-1.318-1.398v-0.818H2.514 C1.128,24.718,0,23.591,0,22.205V11.61c0-1.387,1.128-2.515,2.514-2.515h0.703V8.334h0.006V6.753c0-0.744,0.584-1.354,1.318-1.396 V0.915h20.918v4.441c0.734,0.043,1.318,0.652,1.318,1.396v1.581l0.006,0.762h0.703c1.386,0,2.514,1.128,2.514,2.515v10.595 c0,0.297-0.052,0.588-0.154,0.864C29.092,27.092,25.598,30,21.5,30L21.5,30z" opacity="0.35"/>
+<path d="M21.5,30c-1.331,0-2.65-0.315-3.834-0.915H4.541v-2.15c-0.734-0.043-1.318-0.653-1.318-1.398v-0.818H2.514 C1.128,24.718,0,23.591,0,22.205V11.61c0-1.387,1.128-2.515,2.514-2.515h0.703V8.334h0.006V6.753c0-0.744,0.584-1.354,1.318-1.396 V0.915h20.918v4.441c0.734,0.043,1.318,0.652,1.318,1.396v1.581l0.006,0.762h0.703c1.386,0,2.514,1.128,2.514,2.515v10.595 c0,0.297-0.052,0.588-0.154,0.864C29.092,27.092,25.598,30,21.5,30L21.5,30z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.0005" x2="15.0005" y1="6.3018" y2="10.8418">
- <stop offset="0" style="stop-color:#D1D7D9"/>
- <stop offset="0.3273" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.3273" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M25.778,10.497c0,0.22-0.179,0.397-0.399,0.397H4.622c-0.22,0-0.399-0.178-0.399-0.397V6.753 c0-0.221,0.179-0.398,0.399-0.398h20.756c0.221,0,0.399,0.178,0.399,0.398V10.497z" fill="url(#SVGID_1__)"/>
-<rect fill="#020202" height="0.379" opacity="0.3" width="21.567" x="4.217" y="9.712"/>
-<rect fill="#020202" height="0.378" opacity="0.15" width="21.567" x="4.217" y="9.334"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.379" stroke-opacity="0.3" width="21.567" x="4.217" y="9.712"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="21.567" x="4.217" y="9.334"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.915" y2="10.6297">
- <stop offset="0" style="stop-color:#D9D9D9"/>
- <stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
<rect fill="url(#SVGID_2__)" height="8.323" width="18.918" x="5.541" y="1.915"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="1.835" y2="9.598">
- <stop offset="0" style="stop-color:#EDEDED"/>
- <stop offset="1" style="stop-color:#BDBDBD"/>
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
<polygon fill="url(#SVGID_3__)" points="24.459,5.21 24.459,10.238 5.541,10.238 5.541,1.915 12.667,1.915 16.569,2.111 23.704,4.152 24.272,4.748 "/>
-<rect fill="#020202" height="0.377" opacity="0.5" width="13.621" x="8.19" y="7.212"/>
-<rect fill="#020202" height="0.379" opacity="0.2" width="13.621" x="8.19" y="6.833"/>
-<rect fill="#020202" height="0.379" opacity="0.2" width="18.918" x="5.541" y="9.712"/>
-<rect fill="#020202" height="0.378" opacity="0.1" width="18.918" x="5.541" y="9.334"/>
-<rect fill="#020202" height="0.379" opacity="0.03" width="18.918" x="5.541" y="8.955"/>
-<rect fill="#020202" height="0.377" opacity="0.5" width="13.621" x="8.19" y="4.941"/>
-<rect fill="#020202" height="0.379" opacity="0.2" width="13.621" x="8.19" y="4.563"/>
-<path clip-rule="evenodd" d="M12.572,1.916c0,0,6.867,1.039,9.421,4.539 c0,0,1.93-2.648,2.467-1.209C24.188,3.855,21.738,1.864,12.572,1.916z" fill="#050505" fill-rule="evenodd" opacity="0.05"/>
-<path clip-rule="evenodd" d="M12.572,1.916c0,0,6.867,0.282,9.421,3.781 c0,0,1.93-2.27,2.467-0.451C24.188,3.855,21.738,1.864,12.572,1.916z" fill="#050505" fill-rule="evenodd" opacity="0.1"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.621" x="8.19" y="7.212"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.621" x="8.19" y="6.833"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="18.918" x="5.541" y="9.712"/>
+<rect fill="#020202" fill-opacity="0.1" height="0.378" stroke-opacity="0.1" width="18.918" x="5.541" y="9.334"/>
+<rect fill="#020202" fill-opacity="0.03" height="0.379" stroke-opacity="0.03" width="18.918" x="5.541" y="8.955"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.621" x="8.19" y="4.941"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.621" x="8.19" y="4.563"/>
+<path d="M12.572,1.916c0,0,6.867,1.039,9.421,4.539 c0,0,1.93-2.648,2.467-1.209C24.188,3.855,21.738,1.864,12.572,1.916z" fill="#050505" fill-opacity="0.05" fill-rule="evenodd" stroke-opacity="0.05"/>
+<path d="M12.572,1.916c0,0,6.867,0.282,9.421,3.781 c0,0,1.93-2.27,2.467-0.451C24.188,3.855,21.738,1.864,12.572,1.916z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="18.876" x2="18.1629" y1="2.2437" y2="4.8927">
- <stop offset="0.0061" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D9D9D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.0061" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<path clip-rule="evenodd" d="M12.572,1.916c0,0,6.867,0.06,9.421,3.56 c0,0,1.83-2.256,2.467-0.229C24.188,3.855,21.738,1.864,12.572,1.916z" fill="url(#SVGID_4__)" fill-rule="evenodd"/>
+<path d="M12.572,1.916c0,0,6.867,0.06,9.421,3.56 c0,0,1.83-2.256,2.467-0.229C24.188,3.855,21.738,1.864,12.572,1.916z" fill="url(#SVGID_4__)" fill-rule="evenodd"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="9.9375" y2="23.5596">
- <stop offset="0" style="stop-color:#BDC3C4"/>
- <stop offset="0.3515" style="stop-color:#DDE3E6"/>
- <stop offset="0.6545" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#BDC3C4"/>
+<stop offset="0.3515" style="stop-color:#DDE3E6"/>
+<stop offset="0.6545" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M29,22.205c0,0.835-0.678,1.513-1.514,1.513H2.514C1.678,23.718,1,23.04,1,22.205V11.61 c0-0.836,0.678-1.515,1.514-1.515h24.973c0.836,0,1.514,0.679,1.514,1.515V22.205z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.0005" x2="15.0005" y1="26.0552" y2="23.3401">
- <stop offset="0" style="stop-color:#D1D7D9"/>
- <stop offset="0.3273" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.3273" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M4.223,23.718v1.818c0,0.221,0.179,0.4,0.399,0.4h20.756c0.221,0,0.399-0.18,0.399-0.4v-1.818H4.223z " fill="url(#SVGID_6_)"/>
-<rect fill="#020202" height="0.377" opacity="0.3" width="21.551" x="4.226" y="23.729"/>
-<rect fill="#020202" height="0.379" opacity="0.15" width="21.551" x="4.226" y="24.105"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.377" stroke-opacity="0.3" width="21.551" x="4.226" y="23.729"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.379" stroke-opacity="0.15" width="21.551" x="4.226" y="24.105"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15" x2="15" y1="9.9375" y2="23.5596">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M27.487,10.096H2.514C1.678,10.096,1,10.774,1,11.61v10.595c0,0.835,0.678,1.513,1.514,1.513 c-0.626,0-1.135-0.51-1.135-1.136v-0.377V11.988V11.61c0-0.626,0.509-1.135,1.135-1.135h24.973c0.626,0,1.135,0.509,1.135,1.135 v0.378v10.217v0.377c0,0.626-0.509,1.136-1.135,1.136c0.836,0,1.514-0.678,1.514-1.513V11.61C29,10.774,28.323,10.096,27.487,10.096 z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="10.4927" x2="10.4927" y1="11.9312" y2="15.3514">
- <stop offset="0" style="stop-color:#686C6E"/>
- <stop offset="1" style="stop-color:#E4EEF2"/>
+<stop offset="0" style="stop-color:#686C6E"/>
+<stop offset="1" style="stop-color:#E4EEF2"/>
</linearGradient>
-<path d="M5.005,15.329c-0.418,0-0.758-0.345-0.758-0.766V12.69c0-0.424,0.34-0.767,0.758-0.767 h10.978c0.416,0,0.756,0.343,0.756,0.767v1.873c0,0.421-0.34,0.766-0.756,0.766H5.005z" fill="url(#SVGID_8_)" opacity="0.4"/>
+<path d="M5.005,15.329c-0.418,0-0.758-0.345-0.758-0.766V12.69c0-0.424,0.34-0.767,0.758-0.767 h10.978c0.416,0,0.756,0.343,0.756,0.767v1.873c0,0.421-0.34,0.766-0.756,0.766H5.005z" fill="url(#SVGID_8_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.4912" x2="10.4912" y1="12.3164" y2="14.996">
- <stop offset="0" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#2E2E2E"/>
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
<path d="M16.356,14.563c0,0.21-0.17,0.383-0.379,0.383H5.005c-0.209,0-0.379-0.173-0.379-0.383V12.69 c0-0.214,0.17-0.385,0.379-0.385h10.972c0.209,0,0.379,0.171,0.379,0.385V14.563z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.4912" x2="10.4912" y1="9.2793" y2="15.8759">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#30A4D5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#30A4D5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="1.873" width="10.972" x="5.005" y="12.69"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="10.4912" x2="10.4912" y1="10.1255" y2="15.6464">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#4FADD5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#4FADD5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<polygon fill="url(#SVGID_11_)" points="5.005,13.688 15.977,13.419 15.977,12.679 5.005,12.679 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="24.9116" x2="24.9116" y1="11.897" y2="14.1399">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.553,14.085c-0.398,0-0.723-0.323-0.723-0.722v-0.717 c0-0.398,0.324-0.723,0.723-0.723h0.717c0.398,0,0.723,0.324,0.723,0.723v0.717c0,0.398-0.324,0.722-0.723,0.722H24.553z" fill="url(#SVGID_12_)" opacity="0.8"/>
-<path d="M25.27,14.085h-0.717c-0.398,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724 h0.717c0.398,0,0.723-0.324,0.723-0.724v-0.36C25.993,13.762,25.668,14.085,25.27,14.085z" fill="#231F20" opacity="0.4"/>
+<path d="M24.553,14.085c-0.398,0-0.723-0.323-0.723-0.722v-0.717 c0-0.398,0.324-0.723,0.723-0.723h0.717c0.398,0,0.723,0.324,0.723,0.723v0.717c0,0.398-0.324,0.722-0.723,0.722H24.553z" fill="url(#SVGID_12_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,14.085h-0.717c-0.398,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724 h0.717c0.398,0,0.723-0.324,0.723-0.724v-0.36C25.993,13.762,25.668,14.085,25.27,14.085z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="24.9111" x2="24.9111" y1="12.2661" y2="13.76">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.631,13.363c0,0.2-0.162,0.36-0.361,0.36h-0.717c-0.199,0-0.362-0.16-0.362-0.36v-0.717 c0-0.2,0.163-0.362,0.362-0.362h0.717c0.199,0,0.361,0.162,0.361,0.362V13.363z" fill="url(#SVGID_13_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="22.0195" x2="22.0195" y1="11.897" y2="14.1399">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.662,14.085c-0.398,0-0.724-0.323-0.724-0.722v-0.717 c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722H21.662z" fill="url(#SVGID_14_)" opacity="0.8"/>
-<path d="M22.377,14.085h-0.716c-0.398,0-0.724-0.323-0.724-0.722v0.36 c0,0.399,0.325,0.724,0.724,0.724h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36C23.101,13.762,22.776,14.085,22.377,14.085z" fill="#231F20" opacity="0.4"/>
+<path d="M21.662,14.085c-0.398,0-0.724-0.323-0.724-0.722v-0.717 c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722H21.662z" fill="url(#SVGID_14_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.377,14.085h-0.716c-0.398,0-0.724-0.323-0.724-0.722v0.36 c0,0.399,0.325,0.724,0.724,0.724h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36C23.101,13.762,22.776,14.085,22.377,14.085z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.02" x2="22.02" y1="12.2661" y2="13.76">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M22.741,13.363c0,0.2-0.163,0.36-0.363,0.36h-0.716c-0.2,0-0.362-0.16-0.362-0.36v-0.717 c0-0.2,0.162-0.362,0.362-0.362h0.716c0.2,0,0.363,0.162,0.363,0.362V13.363z" fill="url(#SVGID_15_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="19.1279" x2="19.1279" y1="11.897" y2="14.1399">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,14.085c-0.398,0-0.724-0.323-0.724-0.722v-0.717 c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722H18.77z" fill="url(#SVGID_16_)" opacity="0.8"/>
-<path d="M19.486,14.085H18.77c-0.398,0-0.724-0.323-0.724-0.722v0.36c0,0.399,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36C20.209,13.762,19.884,14.085,19.486,14.085z" fill="#231F20" opacity="0.4"/>
+<path d="M18.77,14.085c-0.398,0-0.724-0.323-0.724-0.722v-0.717 c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722H18.77z" fill="url(#SVGID_16_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.486,14.085H18.77c-0.398,0-0.724-0.323-0.724-0.722v0.36c0,0.399,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36C20.209,13.762,19.884,14.085,19.486,14.085z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="19.1284" x2="19.1284" y1="12.2661" y2="13.76">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M19.848,13.363c0,0.2-0.162,0.36-0.362,0.36H18.77c-0.199,0-0.361-0.16-0.361-0.36v-0.717 c0-0.2,0.162-0.362,0.361-0.362h0.716c0.2,0,0.362,0.162,0.362,0.362V13.363z" fill="url(#SVGID_17_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="24.9116" x2="24.9116" y1="14.7866" y2="17.0326">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.553,16.978c-0.398,0-0.723-0.325-0.723-0.724v-0.717 c0-0.399,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.324,0.723,0.724v0.717c0,0.398-0.324,0.724-0.723,0.724H24.553z" fill="url(#SVGID_18_)" opacity="0.8"/>
-<path d="M25.27,16.978h-0.717c-0.398,0-0.723-0.325-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724 h0.717c0.398,0,0.723-0.323,0.723-0.724v-0.36C25.993,16.652,25.668,16.978,25.27,16.978z" fill="#231F20" opacity="0.4"/>
+<path d="M24.553,16.978c-0.398,0-0.723-0.325-0.723-0.724v-0.717 c0-0.399,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.324,0.723,0.724v0.717c0,0.398-0.324,0.724-0.723,0.724H24.553z" fill="url(#SVGID_18_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,16.978h-0.717c-0.398,0-0.723-0.325-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724 h0.717c0.398,0,0.723-0.323,0.723-0.724v-0.36C25.993,16.652,25.668,16.978,25.27,16.978z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="24.9111" x2="24.9111" y1="15.1587" y2="16.6506">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.631,16.254c0,0.201-0.162,0.36-0.361,0.36h-0.717c-0.199,0-0.362-0.159-0.362-0.36v-0.717 c0-0.199,0.163-0.36,0.362-0.36h0.717c0.199,0,0.361,0.161,0.361,0.36V16.254z" fill="url(#SVGID_19_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="22.0195" x2="22.0195" y1="14.7866" y2="17.0326">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.662,16.978c-0.398,0-0.724-0.325-0.724-0.724v-0.717 c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724H21.662z" fill="url(#SVGID_20_)" opacity="0.8"/>
-<path d="M22.377,16.978h-0.716c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36C23.101,16.652,22.776,16.978,22.377,16.978z" fill="#231F20" opacity="0.4"/>
+<path d="M21.662,16.978c-0.398,0-0.724-0.325-0.724-0.724v-0.717 c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724H21.662z" fill="url(#SVGID_20_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.377,16.978h-0.716c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36C23.101,16.652,22.776,16.978,22.377,16.978z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="22.02" x2="22.02" y1="15.1587" y2="16.6506">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M22.741,16.254c0,0.201-0.163,0.36-0.363,0.36h-0.716c-0.2,0-0.362-0.159-0.362-0.36v-0.717 c0-0.199,0.162-0.36,0.362-0.36h0.716c0.2,0,0.363,0.161,0.363,0.36V16.254z" fill="url(#SVGID_21_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.1279" x2="19.1279" y1="14.7866" y2="17.0326">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,16.978c-0.398,0-0.724-0.325-0.724-0.724v-0.717 c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724H18.77z" fill="url(#SVGID_22_)" opacity="0.8"/>
-<path d="M19.486,16.978H18.77c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36C20.209,16.652,19.884,16.978,19.486,16.978z" fill="#231F20" opacity="0.4"/>
+<path d="M18.77,16.978c-0.398,0-0.724-0.325-0.724-0.724v-0.717 c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724H18.77z" fill="url(#SVGID_22_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.486,16.978H18.77c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36C20.209,16.652,19.884,16.978,19.486,16.978z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.1284" x2="19.1284" y1="15.1587" y2="16.6506">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M19.848,16.254c0,0.201-0.162,0.36-0.362,0.36H18.77c-0.199,0-0.361-0.159-0.361-0.36v-0.717 c0-0.199,0.162-0.36,0.361-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36V16.254z" fill="url(#SVGID_23_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="24.9116" x2="24.9116" y1="17.6792" y2="19.9231">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.553,19.868c-0.398,0-0.723-0.322-0.723-0.723V18.43 c0-0.398,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.324,0.723-0.723,0.723H24.553z" fill="url(#SVGID_24_)" opacity="0.8"/>
-<path d="M25.27,19.868h-0.717c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725 h0.717c0.398,0,0.723-0.324,0.723-0.725v-0.361C25.993,19.546,25.668,19.868,25.27,19.868z" fill="#231F20" opacity="0.4"/>
+<path d="M24.553,19.868c-0.398,0-0.723-0.322-0.723-0.723V18.43 c0-0.398,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.324,0.723-0.723,0.723H24.553z" fill="url(#SVGID_24_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,19.868h-0.717c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725 h0.717c0.398,0,0.723-0.324,0.723-0.725v-0.361C25.993,19.546,25.668,19.868,25.27,19.868z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="24.9111" x2="24.9111" y1="18.0503" y2="19.5432">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.631,19.146c0,0.199-0.162,0.361-0.361,0.361h-0.717c-0.199,0-0.362-0.162-0.362-0.361V18.43 c0-0.199,0.163-0.361,0.362-0.361h0.717c0.199,0,0.361,0.162,0.361,0.361V19.146z" fill="url(#SVGID_25_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="22.0195" x2="22.0195" y1="17.6792" y2="19.9231">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.662,19.868c-0.398,0-0.724-0.322-0.724-0.723V18.43 c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723H21.662z" fill="url(#SVGID_26_)" opacity="0.8"/>
-<path d="M22.377,19.868h-0.716c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725 h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361C23.101,19.546,22.776,19.868,22.377,19.868z" fill="#231F20" opacity="0.4"/>
+<path d="M21.662,19.868c-0.398,0-0.724-0.322-0.724-0.723V18.43 c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723H21.662z" fill="url(#SVGID_26_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.377,19.868h-0.716c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725 h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361C23.101,19.546,22.776,19.868,22.377,19.868z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="22.02" x2="22.02" y1="18.0503" y2="19.5432">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M22.741,19.146c0,0.199-0.163,0.361-0.363,0.361h-0.716c-0.2,0-0.362-0.162-0.362-0.361V18.43 c0-0.199,0.162-0.361,0.362-0.361h0.716c0.2,0,0.363,0.162,0.363,0.361V19.146z" fill="url(#SVGID_27_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="19.1279" x2="19.1279" y1="17.6792" y2="19.9231">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,19.868c-0.398,0-0.724-0.322-0.724-0.723V18.43 c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723H18.77z" fill="url(#SVGID_28_)" opacity="0.8"/>
-<path d="M19.486,19.868H18.77c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725 h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361C20.209,19.546,19.884,19.868,19.486,19.868z" fill="#231F20" opacity="0.4"/>
+<path d="M18.77,19.868c-0.398,0-0.724-0.322-0.724-0.723V18.43 c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723H18.77z" fill="url(#SVGID_28_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.486,19.868H18.77c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725 h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361C20.209,19.546,19.884,19.868,19.486,19.868z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="19.1284" x2="19.1284" y1="18.0503" y2="19.5432">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M19.848,19.146c0,0.199-0.162,0.361-0.362,0.361H18.77c-0.199,0-0.361-0.162-0.361-0.361V18.43 c0-0.199,0.162-0.361,0.361-0.361h0.716c0.2,0,0.362,0.162,0.362,0.361V19.146z" fill="url(#SVGID_29_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -7758.4854 1952.6084)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="-7773.4854" x2="-7773.4854" y1="1924.5239" y2="1930.8613">
- <stop offset="0" style="stop-color:#D9D9D9"/>
- <stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
<rect fill="url(#SVGID_30_)" height="6.053" width="18.918" x="5.541" y="22.032"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="15" x2="15" y1="21.605" y2="23.7331">
- <stop offset="0" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#2E2E2E"/>
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
<path d="M24.568,21.585H5.433c-0.21,0-0.382,0.171-0.382,0.383v1.75H24.95v-1.75 C24.95,21.756,24.779,21.585,24.568,21.585z" fill="url(#SVGID_31_)"/>
-<path d="M24.568,21.206H5.433c-0.21,0-0.382,0.17-0.382,0.384v0.378c0-0.212,0.171-0.383,0.382-0.383 h19.135c0.211,0,0.382,0.171,0.382,0.383V21.59C24.95,21.376,24.779,21.206,24.568,21.206z" fill="#FFFFFF" opacity="0.35"/>
+<path d="M24.568,21.206H5.433c-0.21,0-0.382,0.17-0.382,0.384v0.378c0-0.212,0.171-0.383,0.382-0.383 h19.135c0.211,0,0.382,0.171,0.382,0.383V21.59C24.95,21.376,24.779,21.206,24.568,21.206z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -7758.4854 1952.6084)" gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="-7773.4854" x2="-7773.4854" y1="1924.4653" y2="1930.1107">
- <stop offset="0" style="stop-color:#EDEDED"/>
- <stop offset="1" style="stop-color:#BDBDBD"/>
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
<polygon fill="url(#SVGID_32_)" points="5.541,24.79 5.541,22.032 24.459,22.032 24.459,28.085 17.334,28.085 13.432,27.889 6.298,25.848 5.729,25.252 "/>
-<rect fill="#020202" height="0.38" opacity="0.3" width="18.918" x="5.541" y="22.032"/>
-<rect fill="#020202" height="0.378" opacity="0.15" width="18.918" x="5.541" y="22.412"/>
-<rect fill="#020202" height="0.379" opacity="0.05" width="18.918" x="5.541" y="22.79"/>
-<rect fill="#020202" height="0.377" opacity="0.5" width="13.621" x="8.19" y="24.682"/>
-<rect fill="#020202" height="0.379" opacity="0.2" width="13.621" x="8.19" y="25.059"/>
-<path clip-rule="evenodd" d="M17.429,28.084c0,0-6.867-1.039-9.421-4.539 c0,0-1.93,2.648-2.467,1.209C5.813,26.145,8.263,28.136,17.429,28.084z" fill="#050505" fill-rule="evenodd" opacity="0.05"/>
-<path clip-rule="evenodd" d="M17.429,28.084c0,0-6.867-0.282-9.421-3.781 c0,0-1.93,2.27-2.467,0.451C5.813,26.145,8.263,28.136,17.429,28.084z" fill="#050505" fill-rule="evenodd" opacity="0.1"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.38" stroke-opacity="0.3" width="18.918" x="5.541" y="22.032"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="18.918" x="5.541" y="22.412"/>
+<rect fill="#020202" fill-opacity="0.05" height="0.379" stroke-opacity="0.05" width="18.918" x="5.541" y="22.79"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.621" x="8.19" y="24.682"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.621" x="8.19" y="25.059"/>
+<path d="M17.429,28.084c0,0-6.867-1.039-9.421-4.539 c0,0-1.93,2.648-2.467,1.209C5.813,26.145,8.263,28.136,17.429,28.084z" fill="#050505" fill-opacity="0.05" fill-rule="evenodd" stroke-opacity="0.05"/>
+<path d="M17.429,28.084c0,0-6.867-0.282-9.421-3.781 c0,0-1.93,2.27-2.467,0.451C5.813,26.145,8.263,28.136,17.429,28.084z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -7758.4854 1952.6084)" gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="-7769.6108" x2="-7770.3237" y1="1924.8521" y2="1927.5011">
- <stop offset="0.0061" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D9D9D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.0061" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<path clip-rule="evenodd" d="M17.429,28.084c0,0-6.867-0.06-9.421-3.56 c0,0-1.83,2.256-2.467,0.229C5.813,26.145,8.263,28.136,17.429,28.084z" fill="url(#SVGID_33_)" fill-rule="evenodd"/>
+<path d="M17.429,28.084c0,0-6.867-0.06-9.421-3.56 c0,0-1.83,2.256-2.467,0.229C5.813,26.145,8.263,28.136,17.429,28.084z" fill="url(#SVGID_33_)" fill-rule="evenodd"/>
<rect fill="none" height="30" width="30" x="0"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -216.8074 280.5271)" gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="476.6157" x2="476.6157" y1="533.1255" y2="503.1255">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.2545" style="stop-color:#4F88BD"/>
- <stop offset="0.7333" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#4F88BD"/>
+<stop offset="0.7333" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M21.5,29c-4.137,0-7.5-3.363-7.5-7.5c0-4.135,3.363-7.5,7.5-7.5c4.135,0,7.5,3.365,7.5,7.5 C29,25.637,25.635,29,21.5,29L21.5,29z" fill="url(#SVGID_34_)"/>
<radialGradient cx="527.4526" cy="963.3052" gradientTransform="matrix(0.4708 0 0 -0.4709 -226.8932 469.2089)" gradientUnits="userSpaceOnUse" id="SVGID_35_" r="29.2365">
- <stop offset="0.15" style="stop-color:#96E9FA"/>
- <stop offset="0.7455" style="stop-color:#005BCC"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="0.15" style="stop-color:#96E9FA"/>
+<stop offset="0.7455" style="stop-color:#005BCC"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</radialGradient>
<path d="M28.786,21.5c0,4.024-3.264,7.286-7.285,7.286c-4.025,0-7.285-3.262-7.285-7.286 c0-4.022,3.26-7.286,7.285-7.286C25.522,14.214,28.786,17.478,28.786,21.5z" fill="url(#SVGID_35_)"/>
-<polygon opacity="0.3" points="25.704,22.889 21.499,18.435 17.297,22.889 16.659,22.209 21.499,17.077 26.342,22.209 25.704,22.889 "/>
-<polygon opacity="0.3" points="21.5,19.845 17.627,23.951 17.627,25.793 20.532,25.793 20.532,22.889 22.469,22.889 22.469,25.793 25.374,25.793 25.374,23.95 "/>
+<polygon fill-opacity="0.3" points="25.704,22.889 21.499,18.435 17.297,22.889 16.659,22.209 21.499,17.077 26.342,22.209 25.704,22.889 " stroke-opacity="0.3"/>
+<polygon fill-opacity="0.3" points="21.5,19.845 17.627,23.951 17.627,25.793 20.532,25.793 20.532,22.889 22.469,22.889 22.469,25.793 25.374,25.793 25.374,23.95 " stroke-opacity="0.3"/>
<polygon fill="#FFFFFF" points="25.704,22.188 21.499,17.734 17.297,22.188 16.659,21.51 21.499,16.377 26.342,21.51 25.704,22.188 "/>
<polygon fill="#FFFFFF" points="21.5,19.146 17.627,23.252 17.627,25.094 20.532,25.094 20.532,22.188 22.469,22.188 22.469,25.094 25.374,25.094 25.374,23.25 "/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_fax_work.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_fax_work.svg Thu May 27 13:10:59 2010 +0300
@@ -1,307 +1,313 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="0,11.61 0,22.205 0,30 30,30 30,22.205 30,11.61 30,0 0,0 "/>
-<path d="M21.5,30c-1.33,0-2.65-0.315-3.833-0.915H4.541v-2.15c-0.734-0.043-1.318-0.653-1.318-1.398v-0.818H2.514 C1.127,24.718,0,23.591,0,22.205V11.61c0-1.387,1.127-2.515,2.514-2.515h0.703V8.334h0.006V6.753c0-0.744,0.584-1.354,1.318-1.396 V0.915h20.918v4.441c0.734,0.043,1.318,0.652,1.318,1.396v1.581l0.006,0.762h0.703c1.386,0,2.514,1.128,2.514,2.515v10.595 c0,0.297-0.052,0.587-0.152,0.863C29.094,27.091,25.6,30,21.5,30L21.5,30z" opacity="0.35"/>
+<path d="M21.5,30c-1.33,0-2.65-0.315-3.833-0.915H4.541v-2.15c-0.734-0.043-1.318-0.653-1.318-1.398v-0.818H2.514 C1.127,24.718,0,23.591,0,22.205V11.61c0-1.387,1.127-2.515,2.514-2.515h0.703V8.334h0.006V6.753c0-0.744,0.584-1.354,1.318-1.396 V0.915h20.918v4.441c0.734,0.043,1.318,0.652,1.318,1.396v1.581l0.006,0.762h0.703c1.386,0,2.514,1.128,2.514,2.515v10.595 c0,0.297-0.052,0.587-0.152,0.863C29.094,27.091,25.6,30,21.5,30L21.5,30z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="6.3018" y2="10.8418">
- <stop offset="0" style="stop-color:#D1D7D9"/>
- <stop offset="0.3273" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.3273" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M25.777,10.497c0,0.22-0.179,0.397-0.399,0.397H4.621c-0.22,0-0.398-0.178-0.398-0.397V6.753 c0-0.221,0.179-0.398,0.398-0.398h20.757c0.221,0,0.399,0.178,0.399,0.398V10.497z" fill="url(#SVGID_1__)"/>
-<rect fill="#020202" height="0.379" opacity="0.3" width="21.567" x="4.217" y="9.712"/>
-<rect fill="#020202" height="0.378" opacity="0.15" width="21.567" x="4.217" y="9.334"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.379" stroke-opacity="0.3" width="21.567" x="4.217" y="9.712"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="21.567" x="4.217" y="9.334"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.915" y2="10.6297">
- <stop offset="0" style="stop-color:#D9D9D9"/>
- <stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
<rect fill="url(#SVGID_2__)" height="8.323" width="18.918" x="5.541" y="1.915"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="1.835" y2="9.598">
- <stop offset="0" style="stop-color:#EDEDED"/>
- <stop offset="1" style="stop-color:#BDBDBD"/>
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
<polygon fill="url(#SVGID_3__)" points="24.459,5.21 24.459,10.238 5.541,10.238 5.541,1.915 12.666,1.915 16.568,2.111 23.703,4.152 24.271,4.748 "/>
-<rect fill="#020202" height="0.377" opacity="0.5" width="13.621" x="8.189" y="7.212"/>
-<rect fill="#020202" height="0.379" opacity="0.2" width="13.621" x="8.189" y="6.833"/>
-<rect fill="#020202" height="0.379" opacity="0.2" width="18.918" x="5.541" y="9.712"/>
-<rect fill="#020202" height="0.378" opacity="0.1" width="18.918" x="5.541" y="9.334"/>
-<rect fill="#020202" height="0.379" opacity="0.03" width="18.918" x="5.541" y="8.955"/>
-<rect fill="#020202" height="0.377" opacity="0.5" width="13.621" x="8.189" y="4.941"/>
-<rect fill="#020202" height="0.379" opacity="0.2" width="13.621" x="8.189" y="4.563"/>
-<path clip-rule="evenodd" d="M12.571,1.916c0,0,6.867,1.039,9.421,4.539 c0,0,1.93-2.648,2.467-1.209C24.188,3.855,21.737,1.864,12.571,1.916z" fill="#050505" fill-rule="evenodd" opacity="0.05"/>
-<path clip-rule="evenodd" d="M12.571,1.916c0,0,6.867,0.282,9.421,3.781 c0,0,1.93-2.27,2.467-0.451C24.188,3.855,21.737,1.864,12.571,1.916z" fill="#050505" fill-rule="evenodd" opacity="0.1"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.621" x="8.189" y="7.212"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.621" x="8.189" y="6.833"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="18.918" x="5.541" y="9.712"/>
+<rect fill="#020202" fill-opacity="0.1" height="0.378" stroke-opacity="0.1" width="18.918" x="5.541" y="9.334"/>
+<rect fill="#020202" fill-opacity="0.03" height="0.379" stroke-opacity="0.03" width="18.918" x="5.541" y="8.955"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.621" x="8.189" y="4.941"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.621" x="8.189" y="4.563"/>
+<path d="M12.571,1.916c0,0,6.867,1.039,9.421,4.539 c0,0,1.93-2.648,2.467-1.209C24.188,3.855,21.737,1.864,12.571,1.916z" fill="#050505" fill-opacity="0.05" fill-rule="evenodd" stroke-opacity="0.05"/>
+<path d="M12.571,1.916c0,0,6.867,0.282,9.421,3.781 c0,0,1.93-2.27,2.467-0.451C24.188,3.855,21.737,1.864,12.571,1.916z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="18.875" x2="18.1619" y1="2.2437" y2="4.8927">
- <stop offset="0.0061" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D9D9D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.0061" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<path clip-rule="evenodd" d="M12.571,1.916c0,0,6.867,0.06,9.421,3.56 c0,0,1.83-2.256,2.467-0.229C24.188,3.855,21.737,1.864,12.571,1.916z" fill="url(#SVGID_4__)" fill-rule="evenodd"/>
+<path d="M12.571,1.916c0,0,6.867,0.06,9.421,3.56 c0,0,1.83-2.256,2.467-0.229C24.188,3.855,21.737,1.864,12.571,1.916z" fill="url(#SVGID_4__)" fill-rule="evenodd"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="9.9375" y2="23.5596">
- <stop offset="0" style="stop-color:#BDC3C4"/>
- <stop offset="0.3515" style="stop-color:#DDE3E6"/>
- <stop offset="0.6545" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#BDC3C4"/>
+<stop offset="0.3515" style="stop-color:#DDE3E6"/>
+<stop offset="0.6545" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M29,22.205c0,0.835-0.678,1.513-1.514,1.513H2.514C1.678,23.718,1,23.04,1,22.205V11.61 c0-0.836,0.678-1.515,1.514-1.515h24.973c0.836,0,1.514,0.679,1.514,1.515V22.205z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="26.0552" y2="23.3401">
- <stop offset="0" style="stop-color:#D1D7D9"/>
- <stop offset="0.3273" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.3273" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M4.223,23.718v1.818c0,0.221,0.179,0.4,0.398,0.4h20.757c0.221,0,0.399-0.18,0.399-0.4v-1.818H4.223z " fill="url(#SVGID_6_)"/>
-<rect fill="#020202" height="0.377" opacity="0.3" width="21.552" x="4.225" y="23.729"/>
-<rect fill="#020202" height="0.379" opacity="0.15" width="21.552" x="4.225" y="24.105"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.377" stroke-opacity="0.3" width="21.552" x="4.225" y="23.729"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.379" stroke-opacity="0.15" width="21.552" x="4.225" y="24.105"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15" x2="15" y1="9.9375" y2="23.5596">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M27.486,10.096H2.514C1.678,10.096,1,10.774,1,11.61v10.595c0,0.835,0.678,1.513,1.514,1.513 c-0.626,0-1.135-0.51-1.135-1.136v-0.377V11.988V11.61c0-0.626,0.509-1.135,1.135-1.135h24.973c0.626,0,1.135,0.509,1.135,1.135 v0.378v10.217v0.377c0,0.626-0.509,1.136-1.135,1.136c0.836,0,1.514-0.678,1.514-1.513V11.61C29,10.774,28.322,10.096,27.486,10.096 z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="10.4922" x2="10.4922" y1="11.9312" y2="15.3514">
- <stop offset="0" style="stop-color:#686C6E"/>
- <stop offset="1" style="stop-color:#E4EEF2"/>
+<stop offset="0" style="stop-color:#686C6E"/>
+<stop offset="1" style="stop-color:#E4EEF2"/>
</linearGradient>
-<path d="M5.004,15.329c-0.418,0-0.758-0.345-0.758-0.766V12.69c0-0.424,0.34-0.767,0.758-0.767 h10.979c0.416,0,0.756,0.343,0.756,0.767v1.873c0,0.421-0.34,0.766-0.756,0.766H5.004z" fill="url(#SVGID_8_)" opacity="0.4"/>
+<path d="M5.004,15.329c-0.418,0-0.758-0.345-0.758-0.766V12.69c0-0.424,0.34-0.767,0.758-0.767 h10.979c0.416,0,0.756,0.343,0.756,0.767v1.873c0,0.421-0.34,0.766-0.756,0.766H5.004z" fill="url(#SVGID_8_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.4902" x2="10.4902" y1="12.3164" y2="14.996">
- <stop offset="0" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#2E2E2E"/>
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
<path d="M16.355,14.563c0,0.21-0.17,0.383-0.379,0.383H5.004c-0.209,0-0.379-0.173-0.379-0.383V12.69 c0-0.214,0.17-0.385,0.379-0.385h10.973c0.209,0,0.379,0.171,0.379,0.385V14.563z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.4902" x2="10.4902" y1="9.2793" y2="15.8759">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#30A4D5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#30A4D5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="1.873" width="10.973" x="5.004" y="12.69"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="10.4902" x2="10.4902" y1="10.1255" y2="15.6464">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#4FADD5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#4FADD5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<polygon fill="url(#SVGID_11_)" points="5.004,13.688 15.977,13.419 15.977,12.679 5.004,12.679 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="24.9111" x2="24.9111" y1="11.897" y2="14.1399">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.553,14.085c-0.398,0-0.723-0.323-0.723-0.722v-0.717 c0-0.398,0.324-0.723,0.723-0.723h0.717c0.398,0,0.723,0.324,0.723,0.723v0.717c0,0.398-0.324,0.722-0.723,0.722H24.553z" fill="url(#SVGID_12_)" opacity="0.8"/>
-<path d="M25.27,14.085h-0.717c-0.398,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724 h0.717c0.398,0,0.723-0.324,0.723-0.724v-0.36C25.992,13.762,25.668,14.085,25.27,14.085z" fill="#231F20" opacity="0.4"/>
+<path d="M24.553,14.085c-0.398,0-0.723-0.323-0.723-0.722v-0.717 c0-0.398,0.324-0.723,0.723-0.723h0.717c0.398,0,0.723,0.324,0.723,0.723v0.717c0,0.398-0.324,0.722-0.723,0.722H24.553z" fill="url(#SVGID_12_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,14.085h-0.717c-0.398,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724 h0.717c0.398,0,0.723-0.324,0.723-0.724v-0.36C25.992,13.762,25.668,14.085,25.27,14.085z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="24.9102" x2="24.9102" y1="12.2661" y2="13.76">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.631,13.363c0,0.2-0.162,0.36-0.361,0.36h-0.717c-0.199,0-0.362-0.16-0.362-0.36v-0.717 c0-0.2,0.163-0.362,0.362-0.362h0.717c0.199,0,0.361,0.162,0.361,0.362V13.363z" fill="url(#SVGID_13_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="22.0195" x2="22.0195" y1="11.897" y2="14.1399">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.661,14.085c-0.398,0-0.724-0.323-0.724-0.722v-0.717 c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722H21.661z" fill="url(#SVGID_14_)" opacity="0.8"/>
-<path d="M22.377,14.085h-0.716c-0.398,0-0.724-0.323-0.724-0.722v0.36 c0,0.399,0.325,0.724,0.724,0.724h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36C23.101,13.762,22.775,14.085,22.377,14.085z" fill="#231F20" opacity="0.4"/>
+<path d="M21.661,14.085c-0.398,0-0.724-0.323-0.724-0.722v-0.717 c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722H21.661z" fill="url(#SVGID_14_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.377,14.085h-0.716c-0.398,0-0.724-0.323-0.724-0.722v0.36 c0,0.399,0.325,0.724,0.724,0.724h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36C23.101,13.762,22.775,14.085,22.377,14.085z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.0195" x2="22.0195" y1="12.2661" y2="13.76">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M22.74,13.363c0,0.2-0.163,0.36-0.363,0.36h-0.716c-0.2,0-0.362-0.16-0.362-0.36v-0.717 c0-0.2,0.162-0.362,0.362-0.362h0.716c0.2,0,0.363,0.162,0.363,0.362V13.363z" fill="url(#SVGID_15_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="19.127" x2="19.127" y1="11.897" y2="14.1399">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,14.085c-0.398,0-0.724-0.323-0.724-0.722v-0.717 c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722H18.77z" fill="url(#SVGID_16_)" opacity="0.8"/>
-<path d="M19.485,14.085H18.77c-0.398,0-0.724-0.323-0.724-0.722v0.36c0,0.399,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36C20.209,13.762,19.884,14.085,19.485,14.085z" fill="#231F20" opacity="0.4"/>
+<path d="M18.77,14.085c-0.398,0-0.724-0.323-0.724-0.722v-0.717 c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722H18.77z" fill="url(#SVGID_16_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.485,14.085H18.77c-0.398,0-0.724-0.323-0.724-0.722v0.36c0,0.399,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36C20.209,13.762,19.884,14.085,19.485,14.085z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="19.1279" x2="19.1279" y1="12.2661" y2="13.76">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M19.848,13.363c0,0.2-0.162,0.36-0.362,0.36H18.77c-0.199,0-0.361-0.16-0.361-0.36v-0.717 c0-0.2,0.162-0.362,0.361-0.362h0.716c0.2,0,0.362,0.162,0.362,0.362V13.363z" fill="url(#SVGID_17_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="24.9111" x2="24.9111" y1="14.7866" y2="17.0326">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.553,16.978c-0.398,0-0.723-0.325-0.723-0.724v-0.717 c0-0.399,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.324,0.723,0.724v0.717c0,0.398-0.324,0.724-0.723,0.724H24.553z" fill="url(#SVGID_18_)" opacity="0.8"/>
-<path d="M25.27,16.978h-0.717c-0.398,0-0.723-0.325-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724 h0.717c0.398,0,0.723-0.323,0.723-0.724v-0.36C25.992,16.652,25.668,16.978,25.27,16.978z" fill="#231F20" opacity="0.4"/>
+<path d="M24.553,16.978c-0.398,0-0.723-0.325-0.723-0.724v-0.717 c0-0.399,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.324,0.723,0.724v0.717c0,0.398-0.324,0.724-0.723,0.724H24.553z" fill="url(#SVGID_18_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,16.978h-0.717c-0.398,0-0.723-0.325-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724 h0.717c0.398,0,0.723-0.323,0.723-0.724v-0.36C25.992,16.652,25.668,16.978,25.27,16.978z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="24.9102" x2="24.9102" y1="15.1587" y2="16.6506">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.631,16.254c0,0.201-0.162,0.36-0.361,0.36h-0.717c-0.199,0-0.362-0.159-0.362-0.36v-0.717 c0-0.199,0.163-0.36,0.362-0.36h0.717c0.199,0,0.361,0.161,0.361,0.36V16.254z" fill="url(#SVGID_19_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="22.0195" x2="22.0195" y1="14.7866" y2="17.0326">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.661,16.978c-0.398,0-0.724-0.325-0.724-0.724v-0.717 c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724H21.661z" fill="url(#SVGID_20_)" opacity="0.8"/>
-<path d="M22.377,16.978h-0.716c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36C23.101,16.652,22.775,16.978,22.377,16.978z" fill="#231F20" opacity="0.4"/>
+<path d="M21.661,16.978c-0.398,0-0.724-0.325-0.724-0.724v-0.717 c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724H21.661z" fill="url(#SVGID_20_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.377,16.978h-0.716c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36C23.101,16.652,22.775,16.978,22.377,16.978z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="22.0195" x2="22.0195" y1="15.1587" y2="16.6506">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M22.74,16.254c0,0.201-0.163,0.36-0.363,0.36h-0.716c-0.2,0-0.362-0.159-0.362-0.36v-0.717 c0-0.199,0.162-0.36,0.362-0.36h0.716c0.2,0,0.363,0.161,0.363,0.36V16.254z" fill="url(#SVGID_21_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.127" x2="19.127" y1="14.7866" y2="17.0326">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,16.978c-0.398,0-0.724-0.325-0.724-0.724v-0.717 c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724H18.77z" fill="url(#SVGID_22_)" opacity="0.8"/>
-<path d="M19.485,16.978H18.77c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36C20.209,16.652,19.884,16.978,19.485,16.978z" fill="#231F20" opacity="0.4"/>
+<path d="M18.77,16.978c-0.398,0-0.724-0.325-0.724-0.724v-0.717 c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724H18.77z" fill="url(#SVGID_22_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.485,16.978H18.77c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36C20.209,16.652,19.884,16.978,19.485,16.978z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.1279" x2="19.1279" y1="15.1587" y2="16.6506">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M19.848,16.254c0,0.201-0.162,0.36-0.362,0.36H18.77c-0.199,0-0.361-0.159-0.361-0.36v-0.717 c0-0.199,0.162-0.36,0.361-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36V16.254z" fill="url(#SVGID_23_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="24.9111" x2="24.9111" y1="17.6792" y2="19.9231">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.553,19.868c-0.398,0-0.723-0.322-0.723-0.723V18.43 c0-0.398,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.324,0.723-0.723,0.723H24.553z" fill="url(#SVGID_24_)" opacity="0.8"/>
-<path d="M25.27,19.868h-0.717c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725 h0.717c0.398,0,0.723-0.324,0.723-0.725v-0.361C25.992,19.546,25.668,19.868,25.27,19.868z" fill="#231F20" opacity="0.4"/>
+<path d="M24.553,19.868c-0.398,0-0.723-0.322-0.723-0.723V18.43 c0-0.398,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.324,0.723-0.723,0.723H24.553z" fill="url(#SVGID_24_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,19.868h-0.717c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725 h0.717c0.398,0,0.723-0.324,0.723-0.725v-0.361C25.992,19.546,25.668,19.868,25.27,19.868z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="24.9102" x2="24.9102" y1="18.0503" y2="19.5432">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.631,19.146c0,0.199-0.162,0.361-0.361,0.361h-0.717c-0.199,0-0.362-0.162-0.362-0.361V18.43 c0-0.199,0.163-0.361,0.362-0.361h0.717c0.199,0,0.361,0.162,0.361,0.361V19.146z" fill="url(#SVGID_25_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="22.0195" x2="22.0195" y1="17.6792" y2="19.9231">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.661,19.868c-0.398,0-0.724-0.322-0.724-0.723V18.43 c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723H21.661z" fill="url(#SVGID_26_)" opacity="0.8"/>
-<path d="M22.377,19.868h-0.716c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725 h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361C23.101,19.546,22.775,19.868,22.377,19.868z" fill="#231F20" opacity="0.4"/>
+<path d="M21.661,19.868c-0.398,0-0.724-0.322-0.724-0.723V18.43 c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723H21.661z" fill="url(#SVGID_26_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.377,19.868h-0.716c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725 h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361C23.101,19.546,22.775,19.868,22.377,19.868z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="22.0195" x2="22.0195" y1="18.0503" y2="19.5432">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M22.74,19.146c0,0.199-0.163,0.361-0.363,0.361h-0.716c-0.2,0-0.362-0.162-0.362-0.361V18.43 c0-0.199,0.162-0.361,0.362-0.361h0.716c0.2,0,0.363,0.162,0.363,0.361V19.146z" fill="url(#SVGID_27_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="19.127" x2="19.127" y1="17.6792" y2="19.9231">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,19.868c-0.398,0-0.724-0.322-0.724-0.723V18.43 c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723H18.77z" fill="url(#SVGID_28_)" opacity="0.8"/>
-<path d="M19.485,19.868H18.77c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725 h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361C20.209,19.546,19.884,19.868,19.485,19.868z" fill="#231F20" opacity="0.4"/>
+<path d="M18.77,19.868c-0.398,0-0.724-0.322-0.724-0.723V18.43 c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723H18.77z" fill="url(#SVGID_28_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.485,19.868H18.77c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725 h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361C20.209,19.546,19.884,19.868,19.485,19.868z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="19.1279" x2="19.1279" y1="18.0503" y2="19.5432">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M19.848,19.146c0,0.199-0.162,0.361-0.362,0.361H18.77c-0.199,0-0.361-0.162-0.361-0.361V18.43 c0-0.199,0.162-0.361,0.361-0.361h0.716c0.2,0,0.362,0.162,0.362,0.361V19.146z" fill="url(#SVGID_29_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -7890.4863 1952.6084)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="-7905.4863" x2="-7905.4863" y1="1924.5239" y2="1930.8613">
- <stop offset="0" style="stop-color:#D9D9D9"/>
- <stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
<rect fill="url(#SVGID_30_)" height="6.053" width="18.918" x="5.541" y="22.032"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="15" x2="15" y1="21.605" y2="23.7331">
- <stop offset="0" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#2E2E2E"/>
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
<path d="M24.567,21.585H5.432c-0.209,0-0.381,0.171-0.381,0.383v1.75h19.898v-1.75 C24.949,21.756,24.778,21.585,24.567,21.585z" fill="url(#SVGID_31_)"/>
-<path d="M24.567,21.206H5.432c-0.209,0-0.381,0.17-0.381,0.384v0.378 c0-0.212,0.172-0.383,0.381-0.383h19.136c0.211,0,0.382,0.171,0.382,0.383V21.59C24.949,21.376,24.778,21.206,24.567,21.206z" fill="#FFFFFF" opacity="0.35"/>
+<path d="M24.567,21.206H5.432c-0.209,0-0.381,0.17-0.381,0.384v0.378 c0-0.212,0.172-0.383,0.381-0.383h19.136c0.211,0,0.382,0.171,0.382,0.383V21.59C24.949,21.376,24.778,21.206,24.567,21.206z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -7890.4863 1952.6084)" gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="-7905.4863" x2="-7905.4863" y1="1924.4653" y2="1930.1107">
- <stop offset="0" style="stop-color:#EDEDED"/>
- <stop offset="1" style="stop-color:#BDBDBD"/>
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
<polygon fill="url(#SVGID_32_)" points="5.541,24.79 5.541,22.032 24.459,22.032 24.459,28.085 17.334,28.085 13.432,27.889 6.297,25.848 5.729,25.252 "/>
-<rect fill="#020202" height="0.38" opacity="0.3" width="18.918" x="5.541" y="22.032"/>
-<rect fill="#020202" height="0.378" opacity="0.15" width="18.918" x="5.541" y="22.412"/>
-<rect fill="#020202" height="0.379" opacity="0.05" width="18.918" x="5.541" y="22.79"/>
-<rect fill="#020202" height="0.377" opacity="0.5" width="13.621" x="8.189" y="24.682"/>
-<rect fill="#020202" height="0.379" opacity="0.2" width="13.621" x="8.189" y="25.059"/>
-<path clip-rule="evenodd" d="M17.429,28.084c0,0-6.867-1.039-9.421-4.539 c0,0-1.93,2.648-2.467,1.209C5.813,26.145,8.262,28.136,17.429,28.084z" fill="#050505" fill-rule="evenodd" opacity="0.05"/>
-<path clip-rule="evenodd" d="M17.429,28.084c0,0-6.867-0.282-9.421-3.781 c0,0-1.93,2.27-2.467,0.451C5.813,26.145,8.262,28.136,17.429,28.084z" fill="#050505" fill-rule="evenodd" opacity="0.1"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.38" stroke-opacity="0.3" width="18.918" x="5.541" y="22.032"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="18.918" x="5.541" y="22.412"/>
+<rect fill="#020202" fill-opacity="0.05" height="0.379" stroke-opacity="0.05" width="18.918" x="5.541" y="22.79"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.621" x="8.189" y="24.682"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.621" x="8.189" y="25.059"/>
+<path d="M17.429,28.084c0,0-6.867-1.039-9.421-4.539 c0,0-1.93,2.648-2.467,1.209C5.813,26.145,8.262,28.136,17.429,28.084z" fill="#050505" fill-opacity="0.05" fill-rule="evenodd" stroke-opacity="0.05"/>
+<path d="M17.429,28.084c0,0-6.867-0.282-9.421-3.781 c0,0-1.93,2.27-2.467,0.451C5.813,26.145,8.262,28.136,17.429,28.084z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -7890.4863 1952.6084)" gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="-7901.6113" x2="-7902.3242" y1="1924.8521" y2="1927.5011">
- <stop offset="0.0061" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D9D9D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.0061" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<path clip-rule="evenodd" d="M17.429,28.084c0,0-6.867-0.06-9.421-3.56 c0,0-1.83,2.256-2.467,0.229C5.813,26.145,8.262,28.136,17.429,28.084z" fill="url(#SVGID_33_)" fill-rule="evenodd"/>
+<path d="M17.429,28.084c0,0-6.867-0.06-9.421-3.56 c0,0-1.83,2.256-2.467,0.229C5.813,26.145,8.262,28.136,17.429,28.084z" fill="url(#SVGID_33_)" fill-rule="evenodd"/>
<rect fill="none" height="30" width="30"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -249.8076 280.5271)" gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="542.6152" x2="542.6152" y1="533.1255" y2="503.1255">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.2545" style="stop-color:#4F88BD"/>
- <stop offset="0.7333" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#4F88BD"/>
+<stop offset="0.7333" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M21.5,29c-4.136,0-7.5-3.364-7.5-7.5c0-4.135,3.364-7.5,7.5-7.5c4.135,0,7.5,3.365,7.5,7.5 C29,25.636,25.635,29,21.5,29L21.5,29z" fill="url(#SVGID_34_)"/>
<radialGradient cx="542.4775" cy="530.1011" gradientTransform="matrix(0.5 0 0 -0.5 -249.8076 280.6384)" gradientUnits="userSpaceOnUse" id="SVGID_35_" r="27.5291">
- <stop offset="0.15" style="stop-color:#96E9FA"/>
- <stop offset="0.7455" style="stop-color:#005BCC"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="0.15" style="stop-color:#96E9FA"/>
+<stop offset="0.7455" style="stop-color:#005BCC"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</radialGradient>
<path d="M28.785,21.5c0,4.024-3.263,7.286-7.285,7.286c-4.023,0-7.285-3.262-7.285-7.286 c0-4.023,3.262-7.286,7.285-7.286C25.522,14.214,28.785,17.477,28.785,21.5z" fill="url(#SVGID_35_)"/>
-<path d="M22.518,20.029v-2.035h-5.086v8.138H21.5h1.018h3.051v-6.103H22.518z M21.5,24.098h-3.052V23.08H21.5V24.098z M21.5,22.063h-3.052v-1.018H21.5V22.063z M18.448,20.029v-1.018H21.5v1.018H18.448z M24.552,24.098h-2.034V23.08h2.034V24.098z M24.552,22.063h-2.034v-1.018h2.034V22.063z" opacity="0.3"/>
+<path d="M22.518,20.029v-2.035h-5.086v8.138H21.5h1.018h3.051v-6.103H22.518z M21.5,24.098h-3.052V23.08H21.5V24.098z M21.5,22.063h-3.052v-1.018H21.5V22.063z M18.448,20.029v-1.018H21.5v1.018H18.448z M24.552,24.098h-2.034V23.08h2.034V24.098z M24.552,22.063h-2.034v-1.018h2.034V22.063z" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M22.518,19.329v-2.034h-5.086v8.137H21.5h1.018h3.051v-6.103H22.518z M21.5,23.397h-3.052v-1.017H21.5 V23.397z M21.5,21.363h-3.052v-1.018H21.5V21.363z M18.448,19.329v-1.018H21.5v1.018H18.448z M24.552,23.397h-2.034v-1.017h2.034 V23.397z M24.552,21.363h-2.034v-1.018h2.034V21.363z" fill="#FFFFFF"/>
-<rect height="6.103" opacity="0.3" width="1.017" x="22.518" y="19.329"/>
+<rect fill-opacity="0.3" height="6.103" stroke-opacity="0.3" width="1.017" x="22.518" y="19.329"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_group.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_group.svg Thu May 27 13:10:59 2010 +0300
@@ -1,323 +1,213 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<radialGradient cx="669.4" cy="-594.3" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="11.1">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.2" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</radialGradient>
<path d="M23.46,18.68c-0.521-0.226-0.506-1.339-0.291-1.675,0.038-0.059,0.072-0.117,0.107-0.176h-4.365c0.035,0.059,0.069,0.116,0.107,0.176,0.215,0.336,0.23,1.448-0.291,1.675-0.522,0.228,2.428,2.202,2.428,2.202s2.81-1.98,2.29-2.2z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="669.2" x2="669.2" y1="-588.9" y2="-598.1">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="0.39" stop-color="#2D9BD2"/>
-
<stop offset="0.89" stop-color="#1347BA"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
<path d="M26.59,19.84c-0.549-0.286-3.27-1.238-3.322-1.299l-2.078,1.729-2.233-1.795c-0.063,0.092-2.752,1.035-3.374,1.365-0.713,0.377-1.877,1.246-1.877,3.207h14.76c0-1.97-1.33-2.93-1.88-3.21z" fill="url(#SVGID_2__)"/>
-<polygon fill="#020202" opacity="0.3" points="18.45,18.69,21.19,20.88,23.77,18.74,23.27,18.54,21.19,20.27,18.96,18.47" style="enable-background:new;"/>
+<polygon fill="#020202" fill-opacity="0.3" points="18.45,18.69,21.19,20.88,23.77,18.74,23.27,18.54,21.19,20.27,18.96,18.47" stroke-opacity="0.3" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="669.2" x2="669.2" y1="-594.1" y2="-589.1">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="1" stop-color="#2D9BD2"/>
-
</linearGradient>
<polygon fill="url(#SVGID_3__)" points="21.19,20.88,18.45,18.69,18.29,18.76,21.19,21.07,23.93,18.8,23.77,18.74"/>
<radialGradient cx="669.9" cy="-573.8" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="14.9">
-
<stop offset="0" stop-color="#FFE2D9"/>
-
<stop offset="0.51" stop-color="#FFC6B3"/>
-
<stop offset="0.76" stop-color="#FFA98E"/>
-
<stop offset="1" stop-color="#E88160"/>
-
</radialGradient>
<path d="M24.71,13.56c-0.019-0.008-0.04-0.009-0.06-0.015v-0.001c-0.004-0.001-0.006-0.002-0.006-0.002-0.033-0.008-0.063-0.014-0.094-0.016-3.644-0.635-5.317-2.654-5.442-2.119-0.101,0.425-1.122,1.346-1.657,1.805,0.004,0.021,0.008,0.039,0.012,0.06,0,0,0.02,0.094,0.06,0.254-0.042,0.005-0.084,0.014-0.124,0.03-0.341,0.145-0.447,0.702-0.238,1.248,0.209,0.545,0.652,0.871,0.994,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.198,0.445,0.44,0.922,0.739,1.4,0.498,0.594,1.262,1.287,2.105,1.287,1.02,0,1.645-0.559,2.072-1.121,0.012-0.023,0.022-0.047,0.034-0.064,0.317-0.497,0.575-0.996,0.785-1.46,0.333,0.115,0.761-0.194,0.974-0.719,0.23-0.53,0.14-1.09-0.2-1.25z" fill="url(#SVGID_4__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="666.5" x2="672.8" y1="-589.1" y2="-582.8">
-
<stop offset="0" stop-color="#FFC6B3"/>
-
<stop offset="1" stop-color="#FFA98E"/>
-
</linearGradient>
<path d="M20.91,17.9c-0.621,0-1.246-0.289-1.707-0.727,0.486,0.514,1.143,1.012,1.857,1.012,1.02,0,1.645-0.559,2.072-1.121,0.011-0.023,0.021-0.047,0.034-0.064,0.317-0.497,0.575-0.996,0.785-1.46-1.15,2.03-2.01,2.36-3.03,2.36z" fill="url(#SVGID_5_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="669.1" x2="669.1" y1="-569.1" y2="-578.4">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M20.95,8.483c-1.265,0-1.872,0.574-2.341,1.175-0.764,0.117-1.974,0.817-1.119,3.882,0.535-0.459,1.514-1.703,1.614-2.128,0.128-0.54,1.828,1.521,5.542,2.137,0.045-0.172,0.063-0.272,0.063-0.272,0.6-2.62-0.67-4.694-3.75-4.797z" fill="url(#SVGID_6_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="672.2" x2="663.8" y1="-578" y2="-573">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.36" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M19.11,11.16s1.818,2.389,5.512,2.384c0,0-1.73-0.27-5.51-2.38z" fill="url(#SVGID_7_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="663.1" x2="663.1" y1="-572" y2="-577.3">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M18.68,9.836s-1.78,0.106-1.12,3.123c0,0-0.22-2.07,1.12-3.124z" fill="url(#SVGID_8_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="670.2" x2="670" y1="-569.9" y2="-572.3">
-
<stop offset="0" stop-color="#A87C4F"/>
-
<stop offset="1" stop-color="#632F00"/>
-
</linearGradient>
<path d="M21.82,10.25c-0.828-0.118-2.23-0.853-2.779-0.59,0,0,1.799-2.053,4.971,0.284,0,0.004-0.76,0.516-2.19,0.306z" fill="url(#SVGID_9_)"/>
<radialGradient cx="645" cy="-594.3" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="11.1">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.2" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</radialGradient>
<path d="M11.28,18.68c-0.521-0.226-0.505-1.339-0.29-1.675,0.037-0.059,0.072-0.117,0.108-0.176h-4.371c0.035,0.059,0.069,0.116,0.107,0.176,0.215,0.336,0.23,1.448-0.29,1.675-0.523,0.228,2.427,2.202,2.427,2.202s2.827-1.98,2.307-2.2z" fill="url(#SVGID_10_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="644.8" x2="644.8" y1="-588.9" y2="-598.1">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="0.39" stop-color="#2D9BD2"/>
-
<stop offset="0.89" stop-color="#1347BA"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
<path d="M14.42,19.84c-0.549-0.286-3.271-1.238-3.322-1.299l-2.079,1.729-2.233-1.795c-0.063,0.092-2.752,1.035-3.375,1.365-0.712,0.377-1.876,1.246-1.876,3.207h14.76c-0.01-1.97-1.34-2.93-1.88-3.21z" fill="url(#SVGID_11_)"/>
-<polygon fill="#020202" opacity="0.3" points="6.272,18.69,9.015,20.88,11.59,18.74,11.09,18.54,9.015,20.27,6.781,18.47" style="enable-background:new;"/>
+<polygon fill="#020202" fill-opacity="0.3" points="6.272,18.69,9.015,20.88,11.59,18.74,11.09,18.54,9.015,20.27,6.781,18.47" stroke-opacity="0.3" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="644.9" x2="644.9" y1="-594.1" y2="-589.1">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="1" stop-color="#2D9BD2"/>
-
</linearGradient>
<polygon fill="url(#SVGID_12_)" points="9.015,20.88,6.271,18.69,6.113,18.76,9.015,21.07,11.75,18.8,11.59,18.74"/>
<radialGradient cx="645.6" cy="-573.8" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="14.9">
-
<stop offset="0" stop-color="#FFE2D9"/>
-
<stop offset="0.51" stop-color="#FFC6B3"/>
-
<stop offset="0.76" stop-color="#FFA98E"/>
-
<stop offset="1" stop-color="#E88160"/>
-
</radialGradient>
<path d="M12.53,13.56c-0.019-0.008-0.04-0.009-0.059-0.015v-0.001c-0.004-0.001-0.007-0.002-0.012-0.002-0.028-0.008-0.057-0.014-0.087-0.016-3.645-0.635-5.317-2.654-5.443-2.119-0.102,0.425-1.123,1.346-1.658,1.805,0.004,0.021,0.008,0.039,0.012,0.06,0,0,0.02,0.094,0.06,0.254-0.043,0.005-0.085,0.014-0.124,0.03-0.341,0.145-0.447,0.702-0.239,1.248,0.209,0.545,0.653,0.871,0.995,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.198,0.445,0.44,0.922,0.738,1.4,0.499,0.594,1.263,1.287,2.106,1.287,1.02,0,1.645-0.559,2.073-1.121,0.011-0.023,0.022-0.047,0.034-0.064,0.318-0.497,0.576-0.996,0.785-1.46,0.334,0.115,0.761-0.194,0.973-0.719,0.23-0.53,0.14-1.09-0.2-1.25z" fill="url(#SVGID_13_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="642.2" x2="648.5" y1="-589.1" y2="-582.8">
-
<stop offset="0" stop-color="#FFC6B3"/>
-
<stop offset="1" stop-color="#FFA98E"/>
-
</linearGradient>
<path d="M8.729,17.9c-0.621,0-1.247-0.289-1.708-0.727,0.487,0.514,1.144,1.012,1.858,1.012,1.02,0,1.645-0.559,2.073-1.121,0.011-0.023,0.022-0.047,0.034-0.064,0.318-0.497,0.576-0.996,0.785-1.46-1.15,2.03-2.011,2.36-3.031,2.36z" fill="url(#SVGID_14_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="644.7" x2="644.7" y1="-569.1" y2="-578.4">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M8.776,8.483c-1.265,0-1.872,0.574-2.342,1.175-0.763,0.117-1.973,0.817-1.118,3.882,0.535-0.459,1.514-1.703,1.615-2.128,0.127-0.54,1.828,1.521,5.542,2.137,0.043-0.172,0.063-0.272,0.063-0.272,0.59-2.62-0.68-4.694-3.754-4.797z" fill="url(#SVGID_15_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="647.9" x2="639.5" y1="-578" y2="-573">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.36" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M6.936,11.16s1.818,2.389,5.513,2.384c0,0-1.74-0.27-5.514-2.38z" fill="url(#SVGID_16_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="638.7" x2="638.8" y1="-572.3" y2="-577.7">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M6.498,9.836s-1.779,0.106-1.119,3.123c0,0-0.218-2.07,1.119-3.124z" fill="url(#SVGID_17_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="645.9" x2="645.6" y1="-569.9" y2="-572.3">
-
<stop offset="0" stop-color="#A87C4F"/>
-
<stop offset="1" stop-color="#632F00"/>
-
</linearGradient>
<path d="M9.639,10.25c-0.828-0.118-2.23-0.853-2.78-0.59,0,0,1.8-2.053,4.973,0.284,0,0.004-0.76,0.516-2.191,0.306z" fill="url(#SVGID_18_)"/>
-<path d="M23.32,20.43c-0.506-0.264-2.081-0.849-3.348-1.317l-0.711-0.265-0.128-0.053-0.166-0.063-0.317-0.128-0.196,0.086c-0.001,0.002-0.003,0.002-0.004,0.003h-0.001c-0.826,0.323-2.406,0.897-2.865,1.143-0.178,0.095-0.385,0.222-0.596,0.388-0.221-0.183-0.426-0.311-0.573-0.388-0.395-0.205-1.904-0.753-2.746-1.067l-0.078-0.031-0.002,0.001-0.349-0.142-0.317,0.139c-0.311,0.122-0.693,0.268-1.103,0.424l-0.038,0.014c-1.21,0.461-2.582,0.982-3.107,1.262-1.177,0.625-2.025,1.51-2.525,2.609h21.66c-0.77-1.62-2.12-2.41-2.48-2.6z" fill="#231F20" opacity="0.15" style="enable-background:new;"/>
-<path d="M9.052,11.44c-0.561,0.477-0.712,1.432-0.349,2.38,0.342,0.894,1.048,1.494,1.758,1.494h0.002c0.106,0.221,0.217,0.439,0.331,0.654h-0.033l0.271,0.448s0.071,0.115,0.154,0.253c0.226-0.383,0.424-0.765,0.586-1.123,0.334,0.115,0.761-0.194,0.973-0.719,0.22-0.542,0.125-1.106-0.212-1.259-0.019-0.008-0.04-0.009-0.059-0.015v-0.001c-0.004-0.001-0.007-0.002-0.012-0.002-0.028-0.008-0.057-0.014-0.087-0.016-0.007-0.002-0.012-0.003-0.019-0.005-0.015-0.003-0.032-0.007-0.05-0.011,0.057,0.011,0.109,0.023,0.167,0.033,0.043-0.172,0.063-0.272,0.063-0.272,0.583-2.617-0.686-4.69-3.761-4.793-0.006,0-0.01,0.001-0.017,0.001-0.072,0.839,0.021,1.822,0.3,2.962z" fill="#231F20" opacity="0.15" style="enable-background:new;"/>
-<path d="M18.61,9.658c-0.764,0.117-1.973,0.817-1.119,3.879-0.033,0.006-0.064,0.011-0.096,0.023-0.342,0.145-0.447,0.702-0.238,1.248,0.209,0.545,0.652,0.871,0.994,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.165,0.371,0.364,0.766,0.599,1.163,0.263-0.441,0.512-0.897,0.736-1.369,0.646-0.077,1.279-0.639,1.605-1.444,0.371-0.919,0.253-1.873-0.272-2.37,0.235-1.062,0.272-2.073,0.117-2.993-0.015-0.001-0.028-0.003-0.043-0.003-1.26-0.001-1.87,0.574-2.34,1.174zm-1.11,3.882c0.007-0.006,0.015-0.013,0.021-0.019,0,0.005,0.002,0.008,0.002,0.013,0,0-0.01,0.01-0.02,0.01zm1.76-2.21c-0.009-0.002-0.021-0.007-0.029-0.008,0.01,0,0.02,0.01,0.03,0.01z" fill="#231F20" opacity="0.15" style="enable-background:new;"/>
-<path d="M23.19,20.69c-0.49-0.256-2.057-0.836-3.314-1.305l-0.719-0.266-0.123-0.051-0.172-0.065-0.484-0.194c-0.016-0.021-0.027-0.051-0.041-0.073-0.85,0.327-2.31,0.862-2.746,1.097-0.179,0.094-0.386,0.221-0.597,0.387-0.221-0.182-0.426-0.311-0.573-0.387-0.395-0.205-1.904-0.754-2.746-1.068l-0.042-0.018-0.596,0.261c-0.32,0.125-0.719,0.276-1.144,0.438-1.202,0.457-2.565,0.975-3.074,1.244-1.071,0.568-1.857,1.363-2.338,2.35h21.01c-0.76-1.46-1.98-2.18-2.3-2.35z" fill="#231F20" opacity="0.3" style="enable-background:new;"/>
-<path d="M8.979,13.71c0.298,0.78,0.894,1.304,1.481,1.304,0.062,0,0.122-0.005,0.181-0.017,0.202,0.433,0.419,0.854,0.651,1.261h-0.009l0.068,0.113c0.155-0.283,0.3-0.563,0.419-0.829,0.334,0.115,0.761-0.194,0.973-0.719,0.22-0.542,0.125-1.106-0.212-1.259-0.019-0.008-0.04-0.009-0.059-0.015v-0.001c-0.004-0.001-0.007-0.002-0.012-0.002-0.028-0.008-0.057-0.014-0.087-0.016-0.007-0.002-0.012-0.003-0.019-0.005-0.015-0.003-0.032-0.007-0.05-0.011,0.057,0.011,0.109,0.023,0.167,0.033,0.043-0.172,0.063-0.272,0.063-0.272,0.564-2.535-0.613-4.556-3.483-4.772-0.08,0.847,0.026,1.864,0.336,3.057-0.57,0.33-0.751,1.24-0.404,2.15z" fill="#231F20" opacity="0.3" style="enable-background:new;"/>
-<path d="M18.61,9.658c-0.764,0.117-1.973,0.817-1.119,3.879-0.033,0.006-0.064,0.011-0.096,0.023-0.342,0.145-0.447,0.702-0.238,1.248,0.209,0.545,0.652,0.871,0.994,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.124,0.278,0.269,0.569,0.429,0.864,0.256-0.439,0.497-0.891,0.715-1.357,0.014,0.001,0.025,0.001,0.039,0.001,0.58,0,1.177-0.511,1.483-1.27,0.358-0.884,0.21-1.785-0.325-2.144,0.025-0.106,0.036-0.166,0.036-0.166,0.233-1.043,0.267-2.035,0.11-2.931-1.08,0.083-1.64,0.612-2.08,1.169zm-1.11,3.882c0.007-0.006,0.015-0.013,0.021-0.019,0,0.005,0.002,0.008,0.002,0.013,0,0-0.01,0.01-0.02,0.01zm1.76-2.21c-0.009-0.002-0.021-0.007-0.029-0.008,0.01,0,0.02,0.01,0.03,0.01z" fill="#231F20" opacity="0.3" style="enable-background:new;"/>
+<path d="M23.32,20.43c-0.506-0.264-2.081-0.849-3.348-1.317l-0.711-0.265-0.128-0.053-0.166-0.063-0.317-0.128-0.196,0.086c-0.001,0.002-0.003,0.002-0.004,0.003h-0.001c-0.826,0.323-2.406,0.897-2.865,1.143-0.178,0.095-0.385,0.222-0.596,0.388-0.221-0.183-0.426-0.311-0.573-0.388-0.395-0.205-1.904-0.753-2.746-1.067l-0.078-0.031-0.002,0.001-0.349-0.142-0.317,0.139c-0.311,0.122-0.693,0.268-1.103,0.424l-0.038,0.014c-1.21,0.461-2.582,0.982-3.107,1.262-1.177,0.625-2.025,1.51-2.525,2.609h21.66c-0.77-1.62-2.12-2.41-2.48-2.6z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15" style="enable-background:new;"/>
+<path d="M9.052,11.44c-0.561,0.477-0.712,1.432-0.349,2.38,0.342,0.894,1.048,1.494,1.758,1.494h0.002c0.106,0.221,0.217,0.439,0.331,0.654h-0.033l0.271,0.448s0.071,0.115,0.154,0.253c0.226-0.383,0.424-0.765,0.586-1.123,0.334,0.115,0.761-0.194,0.973-0.719,0.22-0.542,0.125-1.106-0.212-1.259-0.019-0.008-0.04-0.009-0.059-0.015v-0.001c-0.004-0.001-0.007-0.002-0.012-0.002-0.028-0.008-0.057-0.014-0.087-0.016-0.007-0.002-0.012-0.003-0.019-0.005-0.015-0.003-0.032-0.007-0.05-0.011,0.057,0.011,0.109,0.023,0.167,0.033,0.043-0.172,0.063-0.272,0.063-0.272,0.583-2.617-0.686-4.69-3.761-4.793-0.006,0-0.01,0.001-0.017,0.001-0.072,0.839,0.021,1.822,0.3,2.962z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15" style="enable-background:new;"/>
+<path d="M18.61,9.658c-0.764,0.117-1.973,0.817-1.119,3.879-0.033,0.006-0.064,0.011-0.096,0.023-0.342,0.145-0.447,0.702-0.238,1.248,0.209,0.545,0.652,0.871,0.994,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.165,0.371,0.364,0.766,0.599,1.163,0.263-0.441,0.512-0.897,0.736-1.369,0.646-0.077,1.279-0.639,1.605-1.444,0.371-0.919,0.253-1.873-0.272-2.37,0.235-1.062,0.272-2.073,0.117-2.993-0.015-0.001-0.028-0.003-0.043-0.003-1.26-0.001-1.87,0.574-2.34,1.174zm-1.11,3.882c0.007-0.006,0.015-0.013,0.021-0.019,0,0.005,0.002,0.008,0.002,0.013,0,0-0.01,0.01-0.02,0.01zm1.76-2.21c-0.009-0.002-0.021-0.007-0.029-0.008,0.01,0,0.02,0.01,0.03,0.01z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15" style="enable-background:new;"/>
+<path d="M23.19,20.69c-0.49-0.256-2.057-0.836-3.314-1.305l-0.719-0.266-0.123-0.051-0.172-0.065-0.484-0.194c-0.016-0.021-0.027-0.051-0.041-0.073-0.85,0.327-2.31,0.862-2.746,1.097-0.179,0.094-0.386,0.221-0.597,0.387-0.221-0.182-0.426-0.311-0.573-0.387-0.395-0.205-1.904-0.754-2.746-1.068l-0.042-0.018-0.596,0.261c-0.32,0.125-0.719,0.276-1.144,0.438-1.202,0.457-2.565,0.975-3.074,1.244-1.071,0.568-1.857,1.363-2.338,2.35h21.01c-0.76-1.46-1.98-2.18-2.3-2.35z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3" style="enable-background:new;"/>
+<path d="M8.979,13.71c0.298,0.78,0.894,1.304,1.481,1.304,0.062,0,0.122-0.005,0.181-0.017,0.202,0.433,0.419,0.854,0.651,1.261h-0.009l0.068,0.113c0.155-0.283,0.3-0.563,0.419-0.829,0.334,0.115,0.761-0.194,0.973-0.719,0.22-0.542,0.125-1.106-0.212-1.259-0.019-0.008-0.04-0.009-0.059-0.015v-0.001c-0.004-0.001-0.007-0.002-0.012-0.002-0.028-0.008-0.057-0.014-0.087-0.016-0.007-0.002-0.012-0.003-0.019-0.005-0.015-0.003-0.032-0.007-0.05-0.011,0.057,0.011,0.109,0.023,0.167,0.033,0.043-0.172,0.063-0.272,0.063-0.272,0.564-2.535-0.613-4.556-3.483-4.772-0.08,0.847,0.026,1.864,0.336,3.057-0.57,0.33-0.751,1.24-0.404,2.15z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3" style="enable-background:new;"/>
+<path d="M18.61,9.658c-0.764,0.117-1.973,0.817-1.119,3.879-0.033,0.006-0.064,0.011-0.096,0.023-0.342,0.145-0.447,0.702-0.238,1.248,0.209,0.545,0.652,0.871,0.994,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.124,0.278,0.269,0.569,0.429,0.864,0.256-0.439,0.497-0.891,0.715-1.357,0.014,0.001,0.025,0.001,0.039,0.001,0.58,0,1.177-0.511,1.483-1.27,0.358-0.884,0.21-1.785-0.325-2.144,0.025-0.106,0.036-0.166,0.036-0.166,0.233-1.043,0.267-2.035,0.11-2.931-1.08,0.083-1.64,0.612-2.08,1.169zm-1.11,3.882c0.007-0.006,0.015-0.013,0.021-0.019,0,0.005,0.002,0.008,0.002,0.013,0,0-0.01,0.01-0.02,0.01zm1.76-2.21c-0.009-0.002-0.021-0.007-0.029-0.008,0.01,0,0.02,0.01,0.03,0.01z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3" style="enable-background:new;"/>
<radialGradient cx="657.3" cy="-597.7" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_19_" r="16.23">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.2" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</radialGradient>
<path d="M18.46,19.26c-0.764-0.332-0.738-1.957-0.424-2.448,0.055-0.086,0.104-0.172,0.156-0.258h-6.385c0.053,0.086,0.103,0.172,0.157,0.258,0.315,0.491,0.34,2.116-0.424,2.448-0.764,0.331,3.549,3.219,3.549,3.219s4.11-2.89,3.35-3.22z" fill="url(#SVGID_19_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="657" x2="657" y1="-589.9" y2="-603.3">
-
<stop offset="0" stop-color="#FF7236"/>
-
<stop offset="1" stop-color="#BA1212"/>
-
</linearGradient>
<path d="M23.05,20.96c-0.803-0.418-4.781-1.811-4.857-1.896l-3.04,2.524-3.266-2.623c-0.09,0.134-4.023,1.512-4.934,1.995-1.042,0.553-2.743,1.822-2.743,4.688h21.59c0-2.87-1.94-4.28-2.74-4.69z" fill="url(#SVGID_20_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="657.1" x2="657.1" y1="-589" y2="-596.9">
-
<stop offset="0" stop-color="#BC1C24"/>
-
<stop offset="1" stop-color="#6B1C24"/>
-
</linearGradient>
<polygon fill="url(#SVGID_21_)" points="11.14,19.28,15.15,22.48,18.92,19.35,18.19,19.06,15.15,21.58,11.89,18.96"/>
<path d="M11.33,19.79s-5.72,1.493-5.72,5.502h-0.823c0-2.46,1.922-4.38,6.543-5.5z" fill="#FF7B56"/>
<path d="M18.6,19.7s5.72,1.494,5.72,5.502h0.824c0-2.47-1.92-4.38-6.54-5.5z" fill="#FF7B56"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="657.1" x2="657.1" y1="-597.5" y2="-590.2">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</linearGradient>
<polygon fill="url(#SVGID_22_)" points="15.15,22.48,11.14,19.28,10.91,19.39,15.15,22.77,19.15,19.44,18.92,19.35"/>
<radialGradient cx="658.1" cy="-567.8" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_23_" r="21.78">
-
<stop offset="0" stop-color="#FFE2D9"/>
-
<stop offset="0.51" stop-color="#FFC6B3"/>
-
<stop offset="0.76" stop-color="#FFA98E"/>
-
<stop offset="1" stop-color="#E88160"/>
-
</radialGradient>
<path d="M20.29,11.79c-0.026-0.013-0.058-0.015-0.086-0.022v-0.002c-0.005-0.001-0.01-0.002-0.017-0.003-0.041-0.011-0.084-0.021-0.127-0.022-5.331-0.928-7.775-3.88-7.959-3.099-0.147,0.622-1.641,1.968-2.424,2.639,0.007,0.03,0.01,0.057,0.018,0.087,0,0,0.027,0.138,0.086,0.372-0.062,0.007-0.123,0.02-0.182,0.045-0.498,0.21-0.654,1.026-0.349,1.823,0.305,0.798,0.956,1.274,1.454,1.065,0.03-0.014,0.057-0.035,0.085-0.054,0.289,0.65,0.645,1.348,1.079,2.047,0.729,0.866,1.846,1.883,3.079,1.883,1.49,0,2.404-0.815,3.031-1.64,0.017-0.033,0.031-0.066,0.053-0.095,0.465-0.728,0.842-1.455,1.145-2.134,0.488,0.168,1.113-0.284,1.424-1.051,0.35-0.81,0.21-1.63-0.29-1.85z" fill="url(#SVGID_23_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="653.2" x2="662.4" y1="-590.1" y2="-580.9">
-
<stop offset="0" stop-color="#FFC6B3"/>
-
<stop offset="1" stop-color="#FFA98E"/>
-
</linearGradient>
<path d="M14.73,18.13c-0.908,0-1.822-0.423-2.496-1.06,0.713,0.748,1.672,1.478,2.716,1.478,1.491,0,2.403-0.815,3.032-1.64,0.016-0.033,0.031-0.066,0.051-0.095,0.465-0.728,0.842-1.455,1.146-2.134-1.7,2.95-2.96,3.44-4.45,3.44z" fill="url(#SVGID_24_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="656.8" x2="656.8" y1="-560.9" y2="-574.5">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M14.8,4.357c-1.847,0-2.736,0.84-3.423,1.718-1.12,0.172-2.884,1.195-1.636,5.675,0.783-0.67,2.214-2.489,2.361-3.111,0.186-0.788,2.672,2.226,8.103,3.124,0.063-0.251,0.093-0.398,0.093-0.398,0.86-3.821-0.99-6.853-5.49-7.003z" fill="url(#SVGID_25_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="661.5" x2="649.2" y1="-573.9" y2="-566.6">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.36" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M12.11,8.272s2.658,3.492,8.059,3.485c0,0-2.54-0.4-8.06-3.488z" fill="url(#SVGID_26_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="648.1" x2="648.2" y1="-565.2" y2="-573">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M11.47,6.335s-2.603,0.155-1.637,4.566c0.003,0-0.315-3.019,1.637-4.565z" fill="url(#SVGID_27_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="658.5" x2="658.2" y1="-562.1" y2="-565.6">
-
<stop offset="0" stop-color="#A87C4F"/>
-
<stop offset="1" stop-color="#632F00"/>
-
</linearGradient>
<path d="M16.06,6.946c-1.212-0.173-3.263-1.247-4.065-0.863,0,0,2.63-3,7.271,0.415,0,0-1.11,0.747-3.21,0.448z" fill="url(#SVGID_28_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_landline.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_landline.svg Thu May 27 13:10:59 2010 +0300
@@ -1,253 +1,255 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="0,8 0,25.294 0,30 30,30 30,25.294 30,8 30,0 0,0 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="2.1646" y2="28.4294">
- <stop offset="0" style="stop-color:#252629"/>
- <stop offset="1" style="stop-color:#5A5D61"/>
+<stop offset="0" style="stop-color:#252629"/>
+<stop offset="1" style="stop-color:#5A5D61"/>
</linearGradient>
-<path d="M2.647,27.941C1.188,27.941,0,26.754,0,25.294V8c0-1.295,0.936-2.376,2.167-2.603 c0.436-1.91,2.147-3.339,4.187-3.339h0.822c2.024,0,3.726,1.407,4.177,3.295h15.999C28.813,5.354,30,6.541,30,8v17.294 c0,1.46-1.188,2.647-2.647,2.647H2.647z" fill="url(#SVGID_1__)" opacity="0.35"/>
+<path d="M2.647,27.941C1.188,27.941,0,26.754,0,25.294V8c0-1.295,0.936-2.376,2.167-2.603 c0.436-1.91,2.147-3.339,4.187-3.339h0.822c2.024,0,3.726,1.407,4.177,3.295h15.999C28.813,5.354,30,6.541,30,8v17.294 c0,1.46-1.188,2.647-2.647,2.647H2.647z" fill="url(#SVGID_1__)" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="6.1143" y2="26.7021">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M29,25.294c0,0.909-0.738,1.647-1.647,1.647H2.647C1.738,26.941,1,26.203,1,25.294V8 c0-0.908,0.738-1.646,1.647-1.646h24.705C28.262,6.354,29,7.092,29,8V25.294z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="6.1143" y2="26.7021">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M27.353,6.354H2.647C1.738,6.354,1,7.092,1,8v17.294c0,0.909,0.738,1.647,1.647,1.647 c-0.682,0-1.235-0.554-1.235-1.236v-0.411V8.412V8c0-0.682,0.554-1.235,1.235-1.235h24.705c0.682,0,1.234,0.554,1.234,1.235v0.412 v16.882v0.411c0,0.683-0.552,1.236-1.234,1.236c0.909,0,1.647-0.738,1.647-1.647V8C29,7.092,28.262,6.354,27.353,6.354z" fill="url(#SVGID_3__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="24.4707" x2="24.4707" y1="20.7725" y2="24.0876">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.647,24.058c-0.455,0-0.824-0.368-0.824-0.822v-1.646 c0-0.455,0.369-0.824,0.824-0.824h1.647c0.456,0,0.824,0.369,0.824,0.824v1.646c0,0.454-0.368,0.822-0.824,0.822H23.647z" fill="url(#SVGID_4__)" opacity="0.8"/>
+<path d="M23.647,24.058c-0.455,0-0.824-0.368-0.824-0.822v-1.646 c0-0.455,0.369-0.824,0.824-0.824h1.647c0.456,0,0.824,0.369,0.824,0.824v1.646c0,0.454-0.368,0.822-0.824,0.822H23.647z" fill="url(#SVGID_4__)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="24.4707" x2="24.4707" y1="21.146" y2="23.7092">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.705,23.235c0,0.228-0.184,0.411-0.411,0.411h-1.647c-0.228,0-0.412-0.184-0.412-0.411v-1.646 c0-0.229,0.184-0.412,0.412-0.412h1.647c0.227,0,0.411,0.183,0.411,0.412V23.235z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.9414" x2="19.9414" y1="20.7324" y2="24.1276">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.118,24.058c-0.455,0-0.824-0.368-0.824-0.822v-1.646 c0-0.455,0.369-0.824,0.824-0.824h1.646c0.454,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.371,0.822-0.825,0.822H19.118z" fill="url(#SVGID_6_)" opacity="0.8"/>
+<path d="M19.118,24.058c-0.455,0-0.824-0.368-0.824-0.822v-1.646 c0-0.455,0.369-0.824,0.824-0.824h1.646c0.454,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.371,0.822-0.825,0.822H19.118z" fill="url(#SVGID_6_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="19.9409" x2="19.9409" y1="21.146" y2="23.7092">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M21.176,23.235c0,0.228-0.184,0.411-0.413,0.411h-1.646c-0.228,0-0.413-0.184-0.413-0.411v-1.646 c0-0.229,0.185-0.412,0.413-0.412h1.646c0.229,0,0.413,0.183,0.413,0.412V23.235z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="15.4126" x2="15.4126" y1="20.7324" y2="24.0876">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.587,24.058c-0.452,0-0.821-0.368-0.821-0.822v-1.646 c0-0.455,0.369-0.824,0.821-0.824h1.647c0.455,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.371,0.822-0.825,0.822H14.587z" fill="url(#SVGID_8_)" opacity="0.8"/>
+<path d="M14.587,24.058c-0.452,0-0.821-0.368-0.821-0.822v-1.646 c0-0.455,0.369-0.824,0.821-0.824h1.647c0.455,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.371,0.822-0.825,0.822H14.587z" fill="url(#SVGID_8_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="15.4121" x2="15.4121" y1="21.146" y2="23.7092">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M16.647,23.235c0,0.228-0.184,0.411-0.413,0.411h-1.647c-0.227,0-0.411-0.184-0.411-0.411v-1.646 c0-0.229,0.184-0.412,0.411-0.412h1.647c0.229,0,0.413,0.183,0.413,0.412V23.235z" fill="url(#SVGID_9_)"/>
-<path d="M25.294,19.942h-1.647c-0.455,0-0.824-0.369-0.824-0.825v0.412 c0,0.455,0.369,0.824,0.824,0.824h1.647c0.456,0,0.824-0.369,0.824-0.824v-0.412C26.118,19.573,25.75,19.942,25.294,19.942z" fill="#231F20" opacity="0.4"/>
+<path d="M25.294,19.942h-1.647c-0.455,0-0.824-0.369-0.824-0.825v0.412 c0,0.455,0.369,0.824,0.824,0.824h1.647c0.456,0,0.824-0.369,0.824-0.824v-0.412C26.118,19.573,25.75,19.942,25.294,19.942z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="24.4707" x2="24.4707" y1="16.6553" y2="19.9724">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.647,19.942c-0.455,0-0.824-0.369-0.824-0.825V17.47 c0-0.452,0.369-0.822,0.824-0.822h1.647c0.456,0,0.824,0.37,0.824,0.822v1.647c0,0.456-0.368,0.825-0.824,0.825H23.647z" fill="url(#SVGID_10_)" opacity="0.8"/>
+<path d="M23.647,19.942c-0.455,0-0.824-0.369-0.824-0.825V17.47 c0-0.452,0.369-0.822,0.824-0.822h1.647c0.456,0,0.824,0.37,0.824,0.822v1.647c0,0.456-0.368,0.825-0.824,0.825H23.647z" fill="url(#SVGID_10_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="24.4707" x2="24.4707" y1="17.0278" y2="19.592">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.705,19.117c0,0.229-0.184,0.412-0.411,0.412h-1.647c-0.228,0-0.412-0.184-0.412-0.412V17.47 c0-0.226,0.184-0.411,0.412-0.411h1.647c0.227,0,0.411,0.186,0.411,0.411V19.117z" fill="url(#SVGID_11_)"/>
-<path d="M20.764,19.942h-1.646c-0.455,0-0.824-0.369-0.824-0.825v0.412 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.454,0,0.825-0.369,0.825-0.824v-0.412C21.589,19.573,21.218,19.942,20.764,19.942z" fill="#231F20" opacity="0.4"/>
+<path d="M20.764,19.942h-1.646c-0.455,0-0.824-0.369-0.824-0.825v0.412 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.454,0,0.825-0.369,0.825-0.824v-0.412C21.589,19.573,21.218,19.942,20.764,19.942z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="19.9414" x2="19.9414" y1="16.6152" y2="20.0124">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.118,19.942c-0.455,0-0.824-0.369-0.824-0.825V17.47 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.454,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.371,0.825-0.825,0.825H19.118z" fill="url(#SVGID_12_)" opacity="0.8"/>
+<path d="M19.118,19.942c-0.455,0-0.824-0.369-0.824-0.825V17.47 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.454,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.371,0.825-0.825,0.825H19.118z" fill="url(#SVGID_12_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="19.9409" x2="19.9409" y1="17.0278" y2="19.592">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M21.176,19.117c0,0.229-0.184,0.412-0.413,0.412h-1.646c-0.228,0-0.413-0.184-0.413-0.412V17.47 c0-0.226,0.185-0.411,0.413-0.411h1.646c0.229,0,0.413,0.186,0.413,0.411V19.117z" fill="url(#SVGID_13_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="15.4126" x2="15.4126" y1="16.6152" y2="19.9724">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.587,19.942c-0.452,0-0.821-0.369-0.821-0.825V17.47 c0-0.452,0.369-0.822,0.821-0.822h1.647c0.455,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.371,0.825-0.825,0.825H14.587z" fill="url(#SVGID_14_)" opacity="0.8"/>
-<path d="M16.234,19.942h-1.647c-0.452,0-0.821-0.369-0.821-0.825v0.412 c0,0.455,0.369,0.824,0.821,0.824h1.647c0.455,0,0.825-0.369,0.825-0.824v-0.412C17.06,19.573,16.689,19.942,16.234,19.942z" fill="#231F20" opacity="0.4"/>
+<path d="M14.587,19.942c-0.452,0-0.821-0.369-0.821-0.825V17.47 c0-0.452,0.369-0.822,0.821-0.822h1.647c0.455,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.371,0.825-0.825,0.825H14.587z" fill="url(#SVGID_14_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M16.234,19.942h-1.647c-0.452,0-0.821-0.369-0.821-0.825v0.412 c0,0.455,0.369,0.824,0.821,0.824h1.647c0.455,0,0.825-0.369,0.825-0.824v-0.412C17.06,19.573,16.689,19.942,16.234,19.942z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="15.4121" x2="15.4121" y1="17.0278" y2="19.592">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M16.647,19.117c0,0.229-0.184,0.412-0.413,0.412h-1.647c-0.227,0-0.411-0.184-0.411-0.412V17.47 c0-0.226,0.184-0.411,0.411-0.411h1.647c0.229,0,0.413,0.186,0.413,0.411V19.117z" fill="url(#SVGID_15_)"/>
-<path d="M25.294,15.822h-1.647c-0.455,0-0.824-0.369-0.824-0.822v0.411 c0,0.455,0.369,0.824,0.824,0.824h1.647c0.456,0,0.824-0.369,0.824-0.824V15C26.118,15.453,25.75,15.822,25.294,15.822z" fill="#231F20" opacity="0.4"/>
+<path d="M25.294,15.822h-1.647c-0.455,0-0.824-0.369-0.824-0.822v0.411 c0,0.455,0.369,0.824,0.824,0.824h1.647c0.456,0,0.824-0.369,0.824-0.824V15C26.118,15.453,25.75,15.822,25.294,15.822z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="24.4707" x2="24.4707" y1="12.5381" y2="15.8522">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.647,15.822c-0.455,0-0.824-0.369-0.824-0.822v-1.647 c0-0.452,0.369-0.822,0.824-0.822h1.647c0.456,0,0.824,0.37,0.824,0.822V15c0,0.453-0.368,0.822-0.824,0.822H23.647z" fill="url(#SVGID_16_)" opacity="0.8"/>
+<path d="M23.647,15.822c-0.455,0-0.824-0.369-0.824-0.822v-1.647 c0-0.452,0.369-0.822,0.824-0.822h1.647c0.456,0,0.824,0.37,0.824,0.822V15c0,0.453-0.368,0.822-0.824,0.822H23.647z" fill="url(#SVGID_16_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="24.4707" x2="24.4707" y1="12.9106" y2="15.4738">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.705,15c0,0.228-0.184,0.411-0.411,0.411h-1.647c-0.228,0-0.412-0.184-0.412-0.411v-1.647 c0-0.228,0.184-0.411,0.412-0.411h1.647c0.227,0,0.411,0.184,0.411,0.411V15z" fill="url(#SVGID_17_)"/>
-<path d="M20.764,15.822h-1.646c-0.455,0-0.824-0.369-0.824-0.822v0.411 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.454,0,0.825-0.369,0.825-0.824V15C21.589,15.453,21.218,15.822,20.764,15.822z" fill="#231F20" opacity="0.4"/>
+<path d="M20.764,15.822h-1.646c-0.455,0-0.824-0.369-0.824-0.822v0.411 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.454,0,0.825-0.369,0.825-0.824V15C21.589,15.453,21.218,15.822,20.764,15.822z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="19.9414" x2="19.9414" y1="12.498" y2="15.8922">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.118,15.822c-0.455,0-0.824-0.369-0.824-0.822v-1.647 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.454,0,0.825,0.37,0.825,0.822V15c0,0.453-0.371,0.822-0.825,0.822H19.118z" fill="url(#SVGID_18_)" opacity="0.8"/>
+<path d="M19.118,15.822c-0.455,0-0.824-0.369-0.824-0.822v-1.647 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.454,0,0.825,0.37,0.825,0.822V15c0,0.453-0.371,0.822-0.825,0.822H19.118z" fill="url(#SVGID_18_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="19.9409" x2="19.9409" y1="12.9106" y2="15.4738">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M21.176,15c0,0.228-0.184,0.411-0.413,0.411h-1.646c-0.228,0-0.413-0.184-0.413-0.411v-1.647 c0-0.228,0.185-0.411,0.413-0.411h1.646c0.229,0,0.413,0.184,0.413,0.411V15z" fill="url(#SVGID_19_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="15.4126" x2="15.4126" y1="12.498" y2="15.8522">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.587,15.822c-0.452,0-0.821-0.369-0.821-0.822v-1.647 c0-0.452,0.369-0.822,0.821-0.822h1.647c0.455,0,0.825,0.37,0.825,0.822V15c0,0.453-0.371,0.822-0.825,0.822H14.587z" fill="url(#SVGID_20_)" opacity="0.8"/>
-<path d="M16.234,15.822h-1.647c-0.452,0-0.821-0.369-0.821-0.822v0.411 c0,0.455,0.369,0.824,0.821,0.824h1.647c0.455,0,0.825-0.369,0.825-0.824V15C17.06,15.453,16.689,15.822,16.234,15.822z" fill="#231F20" opacity="0.4"/>
+<path d="M14.587,15.822c-0.452,0-0.821-0.369-0.821-0.822v-1.647 c0-0.452,0.369-0.822,0.821-0.822h1.647c0.455,0,0.825,0.37,0.825,0.822V15c0,0.453-0.371,0.822-0.825,0.822H14.587z" fill="url(#SVGID_20_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M16.234,15.822h-1.647c-0.452,0-0.821-0.369-0.821-0.822v0.411 c0,0.455,0.369,0.824,0.821,0.824h1.647c0.455,0,0.825-0.369,0.825-0.824V15C17.06,15.453,16.689,15.822,16.234,15.822z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="15.4121" x2="15.4121" y1="12.9106" y2="15.4738">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M16.647,15c0,0.228-0.184,0.411-0.413,0.411h-1.647c-0.227,0-0.411-0.184-0.411-0.411v-1.647 c0-0.228,0.184-0.411,0.411-0.411h1.647c0.229,0,0.413,0.184,0.413,0.411V15z" fill="url(#SVGID_21_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.9434" x2="19.9434" y1="7.5977" y2="11.732">
- <stop offset="0" style="stop-color:#686C6E"/>
- <stop offset="1" style="stop-color:#E4EEF2"/>
+<stop offset="0" style="stop-color:#686C6E"/>
+<stop offset="1" style="stop-color:#E4EEF2"/>
</linearGradient>
-<path d="M13.354,11.705c-0.454,0-0.825-0.374-0.825-0.833V8.423 c0-0.461,0.371-0.834,0.825-0.834h13.181c0.454,0,0.823,0.373,0.823,0.834v2.449c0,0.459-0.369,0.833-0.823,0.833H13.354z" fill="url(#SVGID_22_)" opacity="0.4"/>
+<path d="M13.354,11.705c-0.454,0-0.825-0.374-0.825-0.833V8.423 c0-0.461,0.371-0.834,0.825-0.834h13.181c0.454,0,0.823,0.373,0.823,0.834v2.449c0,0.459-0.369,0.833-0.823,0.833H13.354z" fill="url(#SVGID_22_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.9419" x2="19.9419" y1="8.0195" y2="11.3512">
- <stop offset="0" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#2E2E2E"/>
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
<path d="M26.942,10.872c0,0.23-0.183,0.417-0.411,0.417H13.354c-0.227,0-0.412-0.187-0.412-0.417V8.423 c0-0.23,0.185-0.417,0.412-0.417h13.177c0.228,0,0.411,0.187,0.411,0.417V10.872z" fill="url(#SVGID_23_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="19.9424" x2="19.9424" y1="3.9624" y2="12.5882">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#30A4D5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#30A4D5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<rect fill="url(#SVGID_24_)" height="2.449" width="13.177" x="13.354" y="8.423"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="19.9424" x2="19.9424" y1="5.6362" y2="11.6377">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#4FADD5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#4FADD5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<polygon fill="url(#SVGID_25_)" points="13.354,9.51 26.531,8.807 26.531,8.412 13.354,8.412 "/>
-<path d="M2.234,21.177c0,2.27,1.849,4.117,4.12,4.117h0.822c2.27,0,4.118-1.848,4.118-4.117V6.354 H4.706H2.647c-0.147,0-0.277,0.046-0.413,0.083V21.177z" fill="#050505" opacity="0.1"/>
-<path d="M6.354,24.883h0.822c2.044,0,3.706-1.662,3.706-3.706V6.354H4.706H2.647v14.823 C2.647,23.221,4.31,24.883,6.354,24.883z" fill="#050505" opacity="0.2"/>
+<path d="M2.234,21.177c0,2.27,1.849,4.117,4.12,4.117h0.822c2.27,0,4.118-1.848,4.118-4.117V6.354 H4.706H2.647c-0.147,0-0.277,0.046-0.413,0.083V21.177z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M6.354,24.883h0.822c2.044,0,3.706-1.662,3.706-3.706V6.354H4.706H2.647v14.823 C2.647,23.221,4.31,24.883,6.354,24.883z" fill="#050505" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="6.7656" x2="6.7656" y1="3.1465" y2="24.8746">
- <stop offset="0" style="stop-color:#727678"/>
- <stop offset="0.7394" style="stop-color:#252629"/>
- <stop offset="1" style="stop-color:#494C4F"/>
+<stop offset="0" style="stop-color:#727678"/>
+<stop offset="0.7394" style="stop-color:#252629"/>
+<stop offset="1" style="stop-color:#494C4F"/>
</linearGradient>
<path d="M10.471,21.177c0,1.819-1.474,3.294-3.295,3.294H6.354c-1.82,0-3.294-1.475-3.294-3.294V6.354 c0-1.819,1.474-3.295,3.294-3.295h0.822c1.821,0,3.295,1.476,3.295,3.295V21.177z" fill="url(#SVGID_26_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="6.7656" x2="6.7656" y1="3.082" y2="8.9318">
- <stop offset="0" style="stop-color:#B5BCBF"/>
- <stop offset="1" style="stop-color:#494C4F"/>
+<stop offset="0" style="stop-color:#B5BCBF"/>
+<stop offset="1" style="stop-color:#494C4F"/>
</linearGradient>
<path d="M7.176,3.059H6.354c-1.82,0-3.294,1.476-3.294,3.295v2.47c0-1.819,1.474-3.295,3.294-3.295h0.822 c1.821,0,3.295,1.476,3.295,3.295v-2.47C10.471,4.534,8.997,3.059,7.176,3.059z" fill="url(#SVGID_27_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="6.7656" x2="6.7656" y1="3.0688" y2="7.2577">
- <stop offset="0" style="stop-color:#D5DDE0"/>
- <stop offset="1" style="stop-color:#494C4F"/>
+<stop offset="0" style="stop-color:#D5DDE0"/>
+<stop offset="1" style="stop-color:#494C4F"/>
</linearGradient>
<path d="M7.176,3.059H6.354c-1.82,0-3.294,1.476-3.294,3.295v0.411c0-1.818,1.474-3.295,3.294-3.295h0.822 c1.821,0,3.295,1.477,3.295,3.295V6.354C10.471,4.534,8.997,3.059,7.176,3.059z" fill="url(#SVGID_28_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="6.7646" x2="6.7646" y1="2.7354" y2="24.6079">
- <stop offset="0" style="stop-color:#A0A7A8"/>
- <stop offset="0.7576" style="stop-color:#252629"/>
- <stop offset="1" style="stop-color:#1F2021"/>
+<stop offset="0" style="stop-color:#A0A7A8"/>
+<stop offset="0.7576" style="stop-color:#252629"/>
+<stop offset="1" style="stop-color:#1F2021"/>
</linearGradient>
<path d="M7.176,5.528H6.354c-0.438,0-0.855,0.087-1.236,0.244V22h3.292V5.772 C8.03,5.615,7.614,5.528,7.176,5.528z" fill="url(#SVGID_29_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="6.7656" x2="6.7656" y1="18.7295" y2="24.5792">
- <stop offset="0" style="stop-color:#252629"/>
- <stop offset="1" style="stop-color:#5A5D61"/>
+<stop offset="0" style="stop-color:#252629"/>
+<stop offset="1" style="stop-color:#5A5D61"/>
</linearGradient>
<path d="M7.176,22H6.354c-1.82,0-3.294-1.476-3.294-3.294v2.471c0,1.819,1.474,3.294,3.294,3.294h0.822 c1.821,0,3.295-1.475,3.295-3.294v-2.471C10.471,20.524,8.997,22,7.176,22z" fill="url(#SVGID_30_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_landline_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_landline_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,266 +1,269 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="0,8 0,25.294 0,30 30,30 30,25.294 30,8 30,0 0,0 "/>
-<path d="M21.5,30c-2.037,0-3.986-0.729-5.531-2.059H2.647C1.188,27.941,0,26.754,0,25.294V8 c0-1.295,0.936-2.376,2.167-2.603c0.436-1.91,2.147-3.339,4.187-3.339h0.822c2.024,0,3.727,1.407,4.178,3.295h15.999 C28.813,5.354,30,6.541,30,8v17.294c0,1.46-1.188,2.647-2.647,2.647h-0.321C25.486,29.271,23.537,30,21.5,30L21.5,30z" opacity="0.35"/>
+<path d="M21.5,30c-2.037,0-3.986-0.729-5.531-2.059H2.647C1.188,27.941,0,26.754,0,25.294V8 c0-1.295,0.936-2.376,2.167-2.603c0.436-1.91,2.147-3.339,4.187-3.339h0.822c2.024,0,3.727,1.407,4.178,3.295h15.999 C28.813,5.354,30,6.541,30,8v17.294c0,1.46-1.188,2.647-2.647,2.647h-0.321C25.486,29.271,23.537,30,21.5,30L21.5,30z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="6.1143" y2="26.7021">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M29,25.294c0,0.909-0.738,1.647-1.647,1.647H2.647C1.738,26.941,1,26.203,1,25.294V8 c0-0.908,0.738-1.646,1.647-1.646h24.705C28.262,6.354,29,7.092,29,8V25.294z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="6.1143" y2="26.7021">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M27.353,6.354H2.647C1.738,6.354,1,7.092,1,8v17.294c0,0.909,0.738,1.647,1.647,1.647 c-0.682,0-1.235-0.554-1.235-1.236v-0.411V8.412V8c0-0.682,0.554-1.235,1.235-1.235h24.705c0.683,0,1.235,0.554,1.235,1.235v0.412 v16.882v0.411c0,0.683-0.553,1.236-1.235,1.236c0.909,0,1.647-0.738,1.647-1.647V8C29,7.092,28.262,6.354,27.353,6.354z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="24.4707" x2="24.4707" y1="20.7725" y2="24.0876">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.647,24.058c-0.454,0-0.823-0.368-0.823-0.822v-1.646 c0-0.455,0.369-0.824,0.823-0.824h1.647c0.455,0,0.823,0.369,0.823,0.824v1.646c0,0.454-0.368,0.822-0.823,0.822H23.647z" fill="url(#SVGID_3__)" opacity="0.8"/>
+<path d="M23.647,24.058c-0.454,0-0.823-0.368-0.823-0.822v-1.646 c0-0.455,0.369-0.824,0.823-0.824h1.647c0.455,0,0.823,0.369,0.823,0.824v1.646c0,0.454-0.368,0.822-0.823,0.822H23.647z" fill="url(#SVGID_3__)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="24.4707" x2="24.4707" y1="21.146" y2="23.7092">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.705,23.235c0,0.228-0.184,0.411-0.41,0.411h-1.647c-0.228,0-0.411-0.184-0.411-0.411v-1.646 c0-0.229,0.184-0.412,0.411-0.412h1.647c0.227,0,0.41,0.183,0.41,0.412V23.235z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="19.9424" x2="19.9424" y1="20.7324" y2="24.1276">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.118,24.058c-0.454,0-0.823-0.368-0.823-0.822v-1.646 c0-0.455,0.369-0.824,0.823-0.824h1.646c0.455,0,0.826,0.369,0.826,0.824v1.646c0,0.454-0.371,0.822-0.826,0.822H19.118z" fill="url(#SVGID_5_)" opacity="0.8"/>
+<path d="M19.118,24.058c-0.454,0-0.823-0.368-0.823-0.822v-1.646 c0-0.455,0.369-0.824,0.823-0.824h1.646c0.455,0,0.826,0.369,0.826,0.824v1.646c0,0.454-0.371,0.822-0.826,0.822H19.118z" fill="url(#SVGID_5_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.9404" x2="19.9404" y1="21.146" y2="23.7092">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M21.176,23.235c0,0.228-0.184,0.411-0.412,0.411h-1.646c-0.228,0-0.413-0.184-0.413-0.411v-1.646 c0-0.229,0.186-0.412,0.413-0.412h1.646c0.229,0,0.412,0.183,0.412,0.412V23.235z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.4121" x2="15.4121" y1="20.7324" y2="24.0876">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.588,24.058c-0.453,0-0.822-0.368-0.822-0.822v-1.646 c0-0.455,0.369-0.824,0.822-0.824h1.646c0.455,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.37,0.822-0.825,0.822H14.588z" fill="url(#SVGID_7_)" opacity="0.8"/>
+<path d="M14.588,24.058c-0.453,0-0.822-0.368-0.822-0.822v-1.646 c0-0.455,0.369-0.824,0.822-0.824h1.646c0.455,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.37,0.822-0.825,0.822H14.588z" fill="url(#SVGID_7_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="15.4121" x2="15.4121" y1="21.146" y2="23.7092">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M16.647,23.235c0,0.228-0.185,0.411-0.413,0.411h-1.646c-0.228,0-0.412-0.184-0.412-0.411v-1.646 c0-0.229,0.185-0.412,0.412-0.412h1.646c0.229,0,0.413,0.183,0.413,0.412V23.235z" fill="url(#SVGID_8_)"/>
-<path d="M25.295,19.942h-1.647c-0.454,0-0.823-0.369-0.823-0.825v0.412 c0,0.455,0.369,0.824,0.823,0.824h1.647c0.455,0,0.823-0.369,0.823-0.824v-0.412C26.118,19.573,25.75,19.942,25.295,19.942z" fill="#231F20" opacity="0.4"/>
+<path d="M25.295,19.942h-1.647c-0.454,0-0.823-0.369-0.823-0.825v0.412 c0,0.455,0.369,0.824,0.823,0.824h1.647c0.455,0,0.823-0.369,0.823-0.824v-0.412C26.118,19.573,25.75,19.942,25.295,19.942z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="24.4707" x2="24.4707" y1="16.6553" y2="19.9724">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.647,19.942c-0.454,0-0.823-0.369-0.823-0.825V17.47 c0-0.452,0.369-0.822,0.823-0.822h1.647c0.455,0,0.823,0.37,0.823,0.822v1.647c0,0.456-0.368,0.825-0.823,0.825H23.647z" fill="url(#SVGID_9_)" opacity="0.8"/>
+<path d="M23.647,19.942c-0.454,0-0.823-0.369-0.823-0.825V17.47 c0-0.452,0.369-0.822,0.823-0.822h1.647c0.455,0,0.823,0.37,0.823,0.822v1.647c0,0.456-0.368,0.825-0.823,0.825H23.647z" fill="url(#SVGID_9_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="24.4707" x2="24.4707" y1="17.0278" y2="19.592">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.705,19.117c0,0.229-0.184,0.412-0.41,0.412h-1.647c-0.228,0-0.411-0.184-0.411-0.412V17.47 c0-0.226,0.184-0.411,0.411-0.411h1.647c0.227,0,0.41,0.186,0.41,0.411V19.117z" fill="url(#SVGID_10_)"/>
-<path d="M20.764,19.942h-1.646c-0.454,0-0.823-0.369-0.823-0.825v0.412 c0,0.455,0.369,0.824,0.823,0.824h1.646c0.455,0,0.826-0.369,0.826-0.824v-0.412C21.59,19.573,21.219,19.942,20.764,19.942z" fill="#231F20" opacity="0.4"/>
+<path d="M20.764,19.942h-1.646c-0.454,0-0.823-0.369-0.823-0.825v0.412 c0,0.455,0.369,0.824,0.823,0.824h1.646c0.455,0,0.826-0.369,0.826-0.824v-0.412C21.59,19.573,21.219,19.942,20.764,19.942z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="19.9424" x2="19.9424" y1="16.6152" y2="20.0124">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.118,19.942c-0.454,0-0.823-0.369-0.823-0.825V17.47 c0-0.452,0.369-0.822,0.823-0.822h1.646c0.455,0,0.826,0.37,0.826,0.822v1.647c0,0.456-0.371,0.825-0.826,0.825H19.118z" fill="url(#SVGID_11_)" opacity="0.8"/>
+<path d="M19.118,19.942c-0.454,0-0.823-0.369-0.823-0.825V17.47 c0-0.452,0.369-0.822,0.823-0.822h1.646c0.455,0,0.826,0.37,0.826,0.822v1.647c0,0.456-0.371,0.825-0.826,0.825H19.118z" fill="url(#SVGID_11_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="19.9404" x2="19.9404" y1="17.0278" y2="19.592">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M21.176,19.117c0,0.229-0.184,0.412-0.412,0.412h-1.646c-0.228,0-0.413-0.184-0.413-0.412V17.47 c0-0.226,0.186-0.411,0.413-0.411h1.646c0.229,0,0.412,0.186,0.412,0.411V19.117z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15.4121" x2="15.4121" y1="16.6152" y2="19.9724">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.588,19.942c-0.453,0-0.822-0.369-0.822-0.825V17.47 c0-0.452,0.369-0.822,0.822-0.822h1.646c0.455,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.37,0.825-0.825,0.825H14.588z" fill="url(#SVGID_13_)" opacity="0.8"/>
-<path d="M16.234,19.942h-1.646c-0.453,0-0.822-0.369-0.822-0.825v0.412 c0,0.455,0.369,0.824,0.822,0.824h1.646c0.455,0,0.825-0.369,0.825-0.824v-0.412C17.06,19.573,16.689,19.942,16.234,19.942z" fill="#231F20" opacity="0.4"/>
+<path d="M14.588,19.942c-0.453,0-0.822-0.369-0.822-0.825V17.47 c0-0.452,0.369-0.822,0.822-0.822h1.646c0.455,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.37,0.825-0.825,0.825H14.588z" fill="url(#SVGID_13_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M16.234,19.942h-1.646c-0.453,0-0.822-0.369-0.822-0.825v0.412 c0,0.455,0.369,0.824,0.822,0.824h1.646c0.455,0,0.825-0.369,0.825-0.824v-0.412C17.06,19.573,16.689,19.942,16.234,19.942z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="15.4121" x2="15.4121" y1="17.0278" y2="19.592">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M16.647,19.117c0,0.229-0.185,0.412-0.413,0.412h-1.646c-0.228,0-0.412-0.184-0.412-0.412V17.47 c0-0.226,0.185-0.411,0.412-0.411h1.646c0.229,0,0.413,0.186,0.413,0.411V19.117z" fill="url(#SVGID_14_)"/>
-<path d="M25.295,15.822h-1.647c-0.454,0-0.823-0.369-0.823-0.822v0.411 c0,0.455,0.369,0.824,0.823,0.824h1.647c0.455,0,0.823-0.369,0.823-0.824V15C26.118,15.453,25.75,15.822,25.295,15.822z" fill="#231F20" opacity="0.4"/>
+<path d="M25.295,15.822h-1.647c-0.454,0-0.823-0.369-0.823-0.822v0.411 c0,0.455,0.369,0.824,0.823,0.824h1.647c0.455,0,0.823-0.369,0.823-0.824V15C26.118,15.453,25.75,15.822,25.295,15.822z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="24.4707" x2="24.4707" y1="12.5381" y2="15.8522">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.647,15.822c-0.454,0-0.823-0.369-0.823-0.822v-1.647 c0-0.452,0.369-0.822,0.823-0.822h1.647c0.455,0,0.823,0.37,0.823,0.822V15c0,0.453-0.368,0.822-0.823,0.822H23.647z" fill="url(#SVGID_15_)" opacity="0.8"/>
+<path d="M23.647,15.822c-0.454,0-0.823-0.369-0.823-0.822v-1.647 c0-0.452,0.369-0.822,0.823-0.822h1.647c0.455,0,0.823,0.37,0.823,0.822V15c0,0.453-0.368,0.822-0.823,0.822H23.647z" fill="url(#SVGID_15_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="24.4707" x2="24.4707" y1="12.9106" y2="15.4738">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.705,15c0,0.228-0.184,0.411-0.41,0.411h-1.647c-0.228,0-0.411-0.184-0.411-0.411v-1.647 c0-0.228,0.184-0.411,0.411-0.411h1.647c0.227,0,0.41,0.184,0.41,0.411V15z" fill="url(#SVGID_16_)"/>
-<path d="M20.764,15.822h-1.646c-0.454,0-0.823-0.369-0.823-0.822v0.411 c0,0.455,0.369,0.824,0.823,0.824h1.646c0.455,0,0.826-0.369,0.826-0.824V15C21.59,15.453,21.219,15.822,20.764,15.822z" fill="#231F20" opacity="0.4"/>
+<path d="M20.764,15.822h-1.646c-0.454,0-0.823-0.369-0.823-0.822v0.411 c0,0.455,0.369,0.824,0.823,0.824h1.646c0.455,0,0.826-0.369,0.826-0.824V15C21.59,15.453,21.219,15.822,20.764,15.822z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="19.9424" x2="19.9424" y1="12.498" y2="15.8922">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.118,15.822c-0.454,0-0.823-0.369-0.823-0.822v-1.647 c0-0.452,0.369-0.822,0.823-0.822h1.646c0.455,0,0.826,0.37,0.826,0.822V15c0,0.453-0.371,0.822-0.826,0.822H19.118z" fill="url(#SVGID_17_)" opacity="0.8"/>
+<path d="M19.118,15.822c-0.454,0-0.823-0.369-0.823-0.822v-1.647 c0-0.452,0.369-0.822,0.823-0.822h1.646c0.455,0,0.826,0.37,0.826,0.822V15c0,0.453-0.371,0.822-0.826,0.822H19.118z" fill="url(#SVGID_17_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="19.9404" x2="19.9404" y1="12.9106" y2="15.4738">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M21.176,15c0,0.228-0.184,0.411-0.412,0.411h-1.646c-0.228,0-0.413-0.184-0.413-0.411v-1.647 c0-0.228,0.186-0.411,0.413-0.411h1.646c0.229,0,0.412,0.184,0.412,0.411V15z" fill="url(#SVGID_18_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="15.4121" x2="15.4121" y1="12.498" y2="15.8522">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.588,15.822c-0.453,0-0.822-0.369-0.822-0.822v-1.647 c0-0.452,0.369-0.822,0.822-0.822h1.646c0.455,0,0.825,0.37,0.825,0.822V15c0,0.453-0.37,0.822-0.825,0.822H14.588z" fill="url(#SVGID_19_)" opacity="0.8"/>
-<path d="M16.234,15.822h-1.646c-0.453,0-0.822-0.369-0.822-0.822v0.411 c0,0.455,0.369,0.824,0.822,0.824h1.646c0.455,0,0.825-0.369,0.825-0.824V15C17.06,15.453,16.689,15.822,16.234,15.822z" fill="#231F20" opacity="0.4"/>
+<path d="M14.588,15.822c-0.453,0-0.822-0.369-0.822-0.822v-1.647 c0-0.452,0.369-0.822,0.822-0.822h1.646c0.455,0,0.825,0.37,0.825,0.822V15c0,0.453-0.37,0.822-0.825,0.822H14.588z" fill="url(#SVGID_19_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M16.234,15.822h-1.646c-0.453,0-0.822-0.369-0.822-0.822v0.411 c0,0.455,0.369,0.824,0.822,0.824h1.646c0.455,0,0.825-0.369,0.825-0.824V15C17.06,15.453,16.689,15.822,16.234,15.822z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="15.4121" x2="15.4121" y1="12.9106" y2="15.4738">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M16.647,15c0,0.228-0.185,0.411-0.413,0.411h-1.646c-0.228,0-0.412-0.184-0.412-0.411v-1.647 c0-0.228,0.185-0.411,0.412-0.411h1.646c0.229,0,0.413,0.184,0.413,0.411V15z" fill="url(#SVGID_20_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="19.9434" x2="19.9434" y1="7.5977" y2="11.732">
- <stop offset="0" style="stop-color:#686C6E"/>
- <stop offset="1" style="stop-color:#E4EEF2"/>
+<stop offset="0" style="stop-color:#686C6E"/>
+<stop offset="1" style="stop-color:#E4EEF2"/>
</linearGradient>
-<path d="M13.354,11.705c-0.453,0-0.824-0.374-0.824-0.832v-2.45 c0-0.461,0.371-0.834,0.824-0.834h13.181c0.454,0,0.823,0.373,0.823,0.834v2.45c0,0.458-0.369,0.832-0.823,0.832H13.354z" fill="url(#SVGID_21_)" opacity="0.4"/>
+<path d="M13.354,11.705c-0.453,0-0.824-0.374-0.824-0.832v-2.45 c0-0.461,0.371-0.834,0.824-0.834h13.181c0.454,0,0.823,0.373,0.823,0.834v2.45c0,0.458-0.369,0.832-0.823,0.832H13.354z" fill="url(#SVGID_21_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.9414" x2="19.9414" y1="8.0195" y2="11.3512">
- <stop offset="0" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#2E2E2E"/>
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
<path d="M26.941,10.873c0,0.229-0.183,0.416-0.41,0.416H13.354c-0.227,0-0.412-0.187-0.412-0.416v-2.45 c0-0.23,0.186-0.417,0.412-0.417h13.178c0.228,0,0.41,0.187,0.41,0.417V10.873z" fill="url(#SVGID_22_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.9424" x2="19.9424" y1="3.9609" y2="12.5901">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#30A4D5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#30A4D5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<rect fill="url(#SVGID_23_)" height="2.45" width="13.178" x="13.354" y="8.423"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="19.9424" x2="19.9424" y1="5.6362" y2="11.6377">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#4FADD5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#4FADD5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<polygon fill="url(#SVGID_24_)" points="13.354,9.51 26.531,8.807 26.531,8.412 13.354,8.412 "/>
-<path d="M2.234,21.177c0,2.27,1.849,4.117,4.119,4.117h0.822c2.27,0,4.119-1.848,4.119-4.117V6.354 h-6.59H2.647c-0.147,0-0.277,0.046-0.413,0.083V21.177z" fill="#050505" opacity="0.1"/>
-<path d="M6.354,24.883h0.822c2.045,0,3.706-1.662,3.706-3.706V6.354H4.705H2.647v14.823 C2.647,23.221,4.31,24.883,6.354,24.883z" fill="#050505" opacity="0.2"/>
+<path d="M2.234,21.177c0,2.27,1.849,4.117,4.119,4.117h0.822c2.27,0,4.119-1.848,4.119-4.117V6.354 h-6.59H2.647c-0.147,0-0.277,0.046-0.413,0.083V21.177z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M6.354,24.883h0.822c2.045,0,3.706-1.662,3.706-3.706V6.354H4.705H2.647v14.823 C2.647,23.221,4.31,24.883,6.354,24.883z" fill="#050505" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="6.7656" x2="6.7656" y1="3.1465" y2="24.8746">
- <stop offset="0" style="stop-color:#727678"/>
- <stop offset="0.7394" style="stop-color:#252629"/>
- <stop offset="1" style="stop-color:#494C4F"/>
+<stop offset="0" style="stop-color:#727678"/>
+<stop offset="0.7394" style="stop-color:#252629"/>
+<stop offset="1" style="stop-color:#494C4F"/>
</linearGradient>
<path d="M10.471,21.177c0,1.819-1.474,3.294-3.295,3.294H6.354c-1.82,0-3.294-1.475-3.294-3.294V6.354 c0-1.819,1.474-3.295,3.294-3.295h0.822c1.821,0,3.295,1.476,3.295,3.295V21.177z" fill="url(#SVGID_25_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="6.7656" x2="6.7656" y1="3.082" y2="8.9318">
- <stop offset="0" style="stop-color:#B5BCBF"/>
- <stop offset="1" style="stop-color:#494C4F"/>
+<stop offset="0" style="stop-color:#B5BCBF"/>
+<stop offset="1" style="stop-color:#494C4F"/>
</linearGradient>
<path d="M7.176,3.059H6.354c-1.82,0-3.294,1.476-3.294,3.295v2.47c0-1.819,1.474-3.295,3.294-3.295h0.822 c1.821,0,3.295,1.476,3.295,3.295v-2.47C10.471,4.534,8.997,3.059,7.176,3.059z" fill="url(#SVGID_26_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="6.7656" x2="6.7656" y1="3.0688" y2="7.2577">
- <stop offset="0" style="stop-color:#D5DDE0"/>
- <stop offset="1" style="stop-color:#494C4F"/>
+<stop offset="0" style="stop-color:#D5DDE0"/>
+<stop offset="1" style="stop-color:#494C4F"/>
</linearGradient>
<path d="M7.176,3.059H6.354c-1.82,0-3.294,1.476-3.294,3.295v0.411c0-1.818,1.474-3.295,3.294-3.295h0.822 c1.821,0,3.295,1.477,3.295,3.295V6.354C10.471,4.534,8.997,3.059,7.176,3.059z" fill="url(#SVGID_27_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="6.7637" x2="6.7637" y1="2.7354" y2="24.6079">
- <stop offset="0" style="stop-color:#A0A7A8"/>
- <stop offset="0.7576" style="stop-color:#252629"/>
- <stop offset="1" style="stop-color:#1F2021"/>
+<stop offset="0" style="stop-color:#A0A7A8"/>
+<stop offset="0.7576" style="stop-color:#252629"/>
+<stop offset="1" style="stop-color:#1F2021"/>
</linearGradient>
<path d="M7.176,5.528H6.354c-0.438,0-0.855,0.087-1.235,0.244V22H8.41V5.772 C8.03,5.615,7.613,5.528,7.176,5.528z" fill="url(#SVGID_28_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="6.7656" x2="6.7656" y1="18.7295" y2="24.5792">
- <stop offset="0" style="stop-color:#252629"/>
- <stop offset="1" style="stop-color:#5A5D61"/>
+<stop offset="0" style="stop-color:#252629"/>
+<stop offset="1" style="stop-color:#5A5D61"/>
</linearGradient>
<path d="M7.176,22H6.354c-1.82,0-3.294-1.476-3.294-3.294v2.471c0,1.819,1.474,3.294,3.294,3.294h0.822 c1.821,0,3.295-1.475,3.295-3.294v-2.471C10.471,20.524,8.997,22,7.176,22z" fill="url(#SVGID_29_)"/>
<rect fill="none" height="30" width="30"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -281.6006 280.5271)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="606.2012" x2="606.2012" y1="533.1255" y2="503.1255">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.2545" style="stop-color:#4F88BD"/>
- <stop offset="0.7333" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#4F88BD"/>
+<stop offset="0.7333" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M21.5,29c-4.137,0-7.5-3.363-7.5-7.5c0-4.135,3.363-7.5,7.5-7.5c4.136,0,7.5,3.365,7.5,7.5 C29,25.637,25.636,29,21.5,29L21.5,29z" fill="url(#SVGID_30_)"/>
<radialGradient cx="673.1133" cy="963.3052" gradientTransform="matrix(0.4708 0 0 -0.4709 -295.4703 469.2089)" gradientUnits="userSpaceOnUse" id="SVGID_31_" r="29.24">
- <stop offset="0.15" style="stop-color:#96E9FA"/>
- <stop offset="0.7455" style="stop-color:#005BCC"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="0.15" style="stop-color:#96E9FA"/>
+<stop offset="0.7455" style="stop-color:#005BCC"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</radialGradient>
<path d="M28.786,21.5c0,4.024-3.264,7.286-7.286,7.286c-4.024,0-7.285-3.262-7.285-7.286 c0-4.022,3.261-7.286,7.285-7.286C25.522,14.214,28.786,17.478,28.786,21.5z" fill="url(#SVGID_31_)"/>
-<polygon opacity="0.3" points="25.703,22.889 21.499,18.435 17.297,22.889 16.658,22.209 21.499,17.077 26.342,22.209 25.703,22.889 "/>
-<polygon opacity="0.3" points="21.5,19.845 17.627,23.951 17.627,25.793 20.531,25.793 20.531,22.889 22.469,22.889 22.469,25.793 25.373,25.793 25.373,23.95 "/>
+<polygon fill-opacity="0.3" points="25.703,22.889 21.499,18.435 17.297,22.889 16.658,22.209 21.499,17.077 26.342,22.209 25.703,22.889 " stroke-opacity="0.3"/>
+<polygon fill-opacity="0.3" points="21.5,19.845 17.627,23.951 17.627,25.793 20.531,25.793 20.531,22.889 22.469,22.889 22.469,25.793 25.373,25.793 25.373,23.95 " stroke-opacity="0.3"/>
<polygon fill="#FFFFFF" points="25.703,22.188 21.499,17.734 17.297,22.188 16.658,21.51 21.499,16.377 26.342,21.51 25.703,22.188 "/>
<polygon fill="#FFFFFF" points="21.5,19.146 17.627,23.252 17.627,25.094 20.531,25.094 20.531,22.188 22.469,22.188 22.469,25.094 25.373,25.094 25.373,23.25 "/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_landline_work.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_landline_work.svg Thu May 27 13:10:59 2010 +0300
@@ -1,265 +1,268 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="0,8 0,25.294 0,30 30,30 30,25.294 30,8 30,0 0,0 "/>
-<path d="M21.5,30c-2.037,0-3.985-0.729-5.53-2.059H2.647C1.188,27.941,0,26.754,0,25.294V8 c0-1.295,0.936-2.376,2.167-2.603c0.436-1.91,2.147-3.339,4.188-3.339h0.822c2.023,0,3.725,1.407,4.177,3.295h15.999 C28.813,5.354,30,6.541,30,8v17.294c0,1.46-1.188,2.647-2.647,2.647H27.03C25.485,29.271,23.536,30,21.5,30L21.5,30z" opacity="0.35"/>
+<path d="M21.5,30c-2.037,0-3.985-0.729-5.53-2.059H2.647C1.188,27.941,0,26.754,0,25.294V8 c0-1.295,0.936-2.376,2.167-2.603c0.436-1.91,2.147-3.339,4.188-3.339h0.822c2.023,0,3.725,1.407,4.177,3.295h15.999 C28.813,5.354,30,6.541,30,8v17.294c0,1.46-1.188,2.647-2.647,2.647H27.03C25.485,29.271,23.536,30,21.5,30L21.5,30z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="6.1143" y2="26.7021">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M29,25.294c0,0.909-0.738,1.647-1.647,1.647H2.647C1.738,26.941,1,26.203,1,25.294V8 c0-0.908,0.738-1.646,1.647-1.646h24.705C28.262,6.354,29,7.092,29,8V25.294z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="6.1143" y2="26.7021">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M27.353,6.354H2.647C1.738,6.354,1,7.092,1,8v17.294c0,0.909,0.738,1.647,1.647,1.647 c-0.682,0-1.234-0.554-1.234-1.236v-0.411V8.412V8c0-0.682,0.553-1.235,1.234-1.235h24.705c0.682,0,1.234,0.554,1.234,1.235v0.412 v16.882v0.411c0,0.683-0.553,1.236-1.234,1.236c0.909,0,1.647-0.738,1.647-1.647V8C29,7.092,28.262,6.354,27.353,6.354z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="24.4707" x2="24.4707" y1="20.7725" y2="24.0876">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.647,24.058c-0.455,0-0.824-0.368-0.824-0.822v-1.646 c0-0.455,0.369-0.824,0.824-0.824h1.646c0.457,0,0.824,0.369,0.824,0.824v1.646c0,0.454-0.367,0.822-0.824,0.822H23.647z" fill="url(#SVGID_3__)" opacity="0.8"/>
+<path d="M23.647,24.058c-0.455,0-0.824-0.368-0.824-0.822v-1.646 c0-0.455,0.369-0.824,0.824-0.824h1.646c0.457,0,0.824,0.369,0.824,0.824v1.646c0,0.454-0.367,0.822-0.824,0.822H23.647z" fill="url(#SVGID_3__)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="24.4707" x2="24.4707" y1="21.146" y2="23.7092">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.705,23.235c0,0.228-0.184,0.411-0.411,0.411h-1.646c-0.229,0-0.412-0.184-0.412-0.411v-1.646 c0-0.229,0.184-0.412,0.412-0.412h1.646c0.228,0,0.411,0.183,0.411,0.412V23.235z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="19.9414" x2="19.9414" y1="20.7324" y2="24.1276">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.118,24.058c-0.455,0-0.824-0.368-0.824-0.822v-1.646 c0-0.455,0.369-0.824,0.824-0.824h1.646c0.453,0,0.824,0.369,0.824,0.824v1.646c0,0.454-0.371,0.822-0.824,0.822H19.118z" fill="url(#SVGID_5_)" opacity="0.8"/>
+<path d="M19.118,24.058c-0.455,0-0.824-0.368-0.824-0.822v-1.646 c0-0.455,0.369-0.824,0.824-0.824h1.646c0.453,0,0.824,0.369,0.824,0.824v1.646c0,0.454-0.371,0.822-0.824,0.822H19.118z" fill="url(#SVGID_5_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.9414" x2="19.9414" y1="21.146" y2="23.7092">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M21.177,23.235c0,0.228-0.185,0.411-0.412,0.411h-1.646c-0.228,0-0.412-0.184-0.412-0.411v-1.646 c0-0.229,0.185-0.412,0.412-0.412h1.646c0.228,0,0.412,0.183,0.412,0.412V23.235z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.4121" x2="15.4121" y1="20.7324" y2="24.0876">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.587,24.058c-0.452,0-0.821-0.368-0.821-0.822v-1.646 c0-0.455,0.369-0.824,0.821-0.824h1.647c0.454,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.371,0.822-0.825,0.822H14.587z" fill="url(#SVGID_7_)" opacity="0.8"/>
+<path d="M14.587,24.058c-0.452,0-0.821-0.368-0.821-0.822v-1.646 c0-0.455,0.369-0.824,0.821-0.824h1.647c0.454,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.371,0.822-0.825,0.822H14.587z" fill="url(#SVGID_7_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="15.4121" x2="15.4121" y1="21.146" y2="23.7092">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M16.647,23.235c0,0.228-0.184,0.411-0.413,0.411h-1.647c-0.227,0-0.41-0.184-0.41-0.411v-1.646 c0-0.229,0.184-0.412,0.41-0.412h1.647c0.229,0,0.413,0.183,0.413,0.412V23.235z" fill="url(#SVGID_8_)"/>
-<path d="M25.294,19.942h-1.646c-0.455,0-0.824-0.369-0.824-0.825v0.412 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.457,0,0.824-0.369,0.824-0.824v-0.412C26.118,19.573,25.751,19.942,25.294,19.942z" fill="#231F20" opacity="0.4"/>
+<path d="M25.294,19.942h-1.646c-0.455,0-0.824-0.369-0.824-0.825v0.412 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.457,0,0.824-0.369,0.824-0.824v-0.412C26.118,19.573,25.751,19.942,25.294,19.942z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="24.4707" x2="24.4707" y1="16.6553" y2="19.9724">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.647,19.942c-0.455,0-0.824-0.369-0.824-0.825V17.47 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.457,0,0.824,0.37,0.824,0.822v1.647c0,0.456-0.367,0.825-0.824,0.825H23.647z" fill="url(#SVGID_9_)" opacity="0.8"/>
+<path d="M23.647,19.942c-0.455,0-0.824-0.369-0.824-0.825V17.47 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.457,0,0.824,0.37,0.824,0.822v1.647c0,0.456-0.367,0.825-0.824,0.825H23.647z" fill="url(#SVGID_9_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="24.4707" x2="24.4707" y1="17.0278" y2="19.592">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.705,19.117c0,0.229-0.184,0.412-0.411,0.412h-1.646c-0.229,0-0.412-0.184-0.412-0.412V17.47 c0-0.226,0.184-0.411,0.412-0.411h1.646c0.228,0,0.411,0.186,0.411,0.411V19.117z" fill="url(#SVGID_10_)"/>
-<path d="M20.765,19.942h-1.646c-0.455,0-0.824-0.369-0.824-0.825v0.412 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.453,0,0.824-0.369,0.824-0.824v-0.412C21.589,19.573,21.218,19.942,20.765,19.942z" fill="#231F20" opacity="0.4"/>
+<path d="M20.765,19.942h-1.646c-0.455,0-0.824-0.369-0.824-0.825v0.412 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.453,0,0.824-0.369,0.824-0.824v-0.412C21.589,19.573,21.218,19.942,20.765,19.942z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="19.9414" x2="19.9414" y1="16.6152" y2="20.0124">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.118,19.942c-0.455,0-0.824-0.369-0.824-0.825V17.47 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.453,0,0.824,0.37,0.824,0.822v1.647c0,0.456-0.371,0.825-0.824,0.825H19.118z" fill="url(#SVGID_11_)" opacity="0.8"/>
+<path d="M19.118,19.942c-0.455,0-0.824-0.369-0.824-0.825V17.47 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.453,0,0.824,0.37,0.824,0.822v1.647c0,0.456-0.371,0.825-0.824,0.825H19.118z" fill="url(#SVGID_11_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="19.9414" x2="19.9414" y1="17.0278" y2="19.592">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M21.177,19.117c0,0.229-0.185,0.412-0.412,0.412h-1.646c-0.228,0-0.412-0.184-0.412-0.412V17.47 c0-0.226,0.185-0.411,0.412-0.411h1.646c0.228,0,0.412,0.186,0.412,0.411V19.117z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15.4121" x2="15.4121" y1="16.6152" y2="19.9724">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.587,19.942c-0.452,0-0.821-0.369-0.821-0.825V17.47 c0-0.452,0.369-0.822,0.821-0.822h1.647c0.454,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.371,0.825-0.825,0.825H14.587z" fill="url(#SVGID_13_)" opacity="0.8"/>
-<path d="M16.234,19.942h-1.647c-0.452,0-0.821-0.369-0.821-0.825v0.412 c0,0.455,0.369,0.824,0.821,0.824h1.647c0.454,0,0.825-0.369,0.825-0.824v-0.412C17.06,19.573,16.688,19.942,16.234,19.942z" fill="#231F20" opacity="0.4"/>
+<path d="M14.587,19.942c-0.452,0-0.821-0.369-0.821-0.825V17.47 c0-0.452,0.369-0.822,0.821-0.822h1.647c0.454,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.371,0.825-0.825,0.825H14.587z" fill="url(#SVGID_13_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M16.234,19.942h-1.647c-0.452,0-0.821-0.369-0.821-0.825v0.412 c0,0.455,0.369,0.824,0.821,0.824h1.647c0.454,0,0.825-0.369,0.825-0.824v-0.412C17.06,19.573,16.688,19.942,16.234,19.942z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="15.4121" x2="15.4121" y1="17.0278" y2="19.592">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M16.647,19.117c0,0.229-0.184,0.412-0.413,0.412h-1.647c-0.227,0-0.41-0.184-0.41-0.412V17.47 c0-0.226,0.184-0.411,0.41-0.411h1.647c0.229,0,0.413,0.186,0.413,0.411V19.117z" fill="url(#SVGID_14_)"/>
-<path d="M25.294,15.822h-1.646c-0.455,0-0.824-0.369-0.824-0.822v0.411 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.457,0,0.824-0.369,0.824-0.824V15C26.118,15.453,25.751,15.822,25.294,15.822z" fill="#231F20" opacity="0.4"/>
+<path d="M25.294,15.822h-1.646c-0.455,0-0.824-0.369-0.824-0.822v0.411 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.457,0,0.824-0.369,0.824-0.824V15C26.118,15.453,25.751,15.822,25.294,15.822z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="24.4707" x2="24.4707" y1="12.5381" y2="15.8522">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.647,15.822c-0.455,0-0.824-0.369-0.824-0.822v-1.647 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.457,0,0.824,0.37,0.824,0.822V15c0,0.453-0.367,0.822-0.824,0.822H23.647z" fill="url(#SVGID_15_)" opacity="0.8"/>
+<path d="M23.647,15.822c-0.455,0-0.824-0.369-0.824-0.822v-1.647 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.457,0,0.824,0.37,0.824,0.822V15c0,0.453-0.367,0.822-0.824,0.822H23.647z" fill="url(#SVGID_15_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="24.4707" x2="24.4707" y1="12.9106" y2="15.4738">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M25.705,15c0,0.228-0.184,0.411-0.411,0.411h-1.646c-0.229,0-0.412-0.184-0.412-0.411v-1.647 c0-0.228,0.184-0.411,0.412-0.411h1.646c0.228,0,0.411,0.184,0.411,0.411V15z" fill="url(#SVGID_16_)"/>
-<path d="M20.765,15.822h-1.646c-0.455,0-0.824-0.369-0.824-0.822v0.411 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.453,0,0.824-0.369,0.824-0.824V15C21.589,15.453,21.218,15.822,20.765,15.822z" fill="#231F20" opacity="0.4"/>
+<path d="M20.765,15.822h-1.646c-0.455,0-0.824-0.369-0.824-0.822v0.411 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.453,0,0.824-0.369,0.824-0.824V15C21.589,15.453,21.218,15.822,20.765,15.822z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="19.9414" x2="19.9414" y1="12.498" y2="15.8922">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.118,15.822c-0.455,0-0.824-0.369-0.824-0.822v-1.647 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.453,0,0.824,0.37,0.824,0.822V15c0,0.453-0.371,0.822-0.824,0.822H19.118z" fill="url(#SVGID_17_)" opacity="0.8"/>
+<path d="M19.118,15.822c-0.455,0-0.824-0.369-0.824-0.822v-1.647 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.453,0,0.824,0.37,0.824,0.822V15c0,0.453-0.371,0.822-0.824,0.822H19.118z" fill="url(#SVGID_17_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="19.9414" x2="19.9414" y1="12.9106" y2="15.4738">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M21.177,15c0,0.228-0.185,0.411-0.412,0.411h-1.646c-0.228,0-0.412-0.184-0.412-0.411v-1.647 c0-0.228,0.185-0.411,0.412-0.411h1.646c0.228,0,0.412,0.184,0.412,0.411V15z" fill="url(#SVGID_18_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="15.4121" x2="15.4121" y1="12.498" y2="15.8522">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.587,15.822c-0.452,0-0.821-0.369-0.821-0.822v-1.647 c0-0.452,0.369-0.822,0.821-0.822h1.647c0.454,0,0.825,0.37,0.825,0.822V15c0,0.453-0.371,0.822-0.825,0.822H14.587z" fill="url(#SVGID_19_)" opacity="0.8"/>
-<path d="M16.234,15.822h-1.647c-0.452,0-0.821-0.369-0.821-0.822v0.411 c0,0.455,0.369,0.824,0.821,0.824h1.647c0.454,0,0.825-0.369,0.825-0.824V15C17.06,15.453,16.688,15.822,16.234,15.822z" fill="#231F20" opacity="0.4"/>
+<path d="M14.587,15.822c-0.452,0-0.821-0.369-0.821-0.822v-1.647 c0-0.452,0.369-0.822,0.821-0.822h1.647c0.454,0,0.825,0.37,0.825,0.822V15c0,0.453-0.371,0.822-0.825,0.822H14.587z" fill="url(#SVGID_19_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M16.234,15.822h-1.647c-0.452,0-0.821-0.369-0.821-0.822v0.411 c0,0.455,0.369,0.824,0.821,0.824h1.647c0.454,0,0.825-0.369,0.825-0.824V15C17.06,15.453,16.688,15.822,16.234,15.822z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="15.4121" x2="15.4121" y1="12.9106" y2="15.4738">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M16.647,15c0,0.228-0.184,0.411-0.413,0.411h-1.647c-0.227,0-0.41-0.184-0.41-0.411v-1.647 c0-0.228,0.184-0.411,0.41-0.411h1.647c0.229,0,0.413,0.184,0.413,0.411V15z" fill="url(#SVGID_20_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="19.9434" x2="19.9434" y1="7.5977" y2="11.732">
- <stop offset="0" style="stop-color:#686C6E"/>
- <stop offset="1" style="stop-color:#E4EEF2"/>
+<stop offset="0" style="stop-color:#686C6E"/>
+<stop offset="1" style="stop-color:#E4EEF2"/>
</linearGradient>
-<path d="M13.354,11.705c-0.454,0-0.825-0.374-0.825-0.832v-2.45 c0-0.461,0.371-0.834,0.825-0.834h13.181c0.454,0,0.823,0.373,0.823,0.834v2.45c0,0.458-0.369,0.832-0.823,0.832H13.354z" fill="url(#SVGID_21_)" opacity="0.4"/>
+<path d="M13.354,11.705c-0.454,0-0.825-0.374-0.825-0.832v-2.45 c0-0.461,0.371-0.834,0.825-0.834h13.181c0.454,0,0.823,0.373,0.823,0.834v2.45c0,0.458-0.369,0.832-0.823,0.832H13.354z" fill="url(#SVGID_21_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.9424" x2="19.9424" y1="8.0195" y2="11.3512">
- <stop offset="0" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#2E2E2E"/>
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
<path d="M26.942,10.873c0,0.229-0.184,0.416-0.412,0.416H13.354c-0.227,0-0.411-0.187-0.411-0.416v-2.45 c0-0.23,0.185-0.417,0.411-0.417H26.53c0.229,0,0.412,0.187,0.412,0.417V10.873z" fill="url(#SVGID_22_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.9414" x2="19.9414" y1="3.9609" y2="12.5901">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#30A4D5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#30A4D5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<rect fill="url(#SVGID_23_)" height="2.45" width="13.177" x="13.354" y="8.423"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="19.9414" x2="19.9414" y1="5.6362" y2="11.6377">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#4FADD5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#4FADD5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<polygon fill="url(#SVGID_24_)" points="13.354,9.51 26.53,8.807 26.53,8.412 13.354,8.412 "/>
-<path d="M2.234,21.177c0,2.27,1.849,4.117,4.12,4.117h0.822c2.27,0,4.117-1.848,4.117-4.117V6.354 H4.706H2.647c-0.147,0-0.277,0.046-0.413,0.083V21.177z" fill="#050505" opacity="0.1"/>
-<path d="M6.354,24.883h0.822c2.043,0,3.705-1.662,3.705-3.706V6.354H4.706H2.647v14.823 C2.647,23.221,4.31,24.883,6.354,24.883z" fill="#050505" opacity="0.2"/>
+<path d="M2.234,21.177c0,2.27,1.849,4.117,4.12,4.117h0.822c2.27,0,4.117-1.848,4.117-4.117V6.354 H4.706H2.647c-0.147,0-0.277,0.046-0.413,0.083V21.177z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M6.354,24.883h0.822c2.043,0,3.705-1.662,3.705-3.706V6.354H4.706H2.647v14.823 C2.647,23.221,4.31,24.883,6.354,24.883z" fill="#050505" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="6.7656" x2="6.7656" y1="3.1465" y2="24.8746">
- <stop offset="0" style="stop-color:#727678"/>
- <stop offset="0.7394" style="stop-color:#252629"/>
- <stop offset="1" style="stop-color:#494C4F"/>
+<stop offset="0" style="stop-color:#727678"/>
+<stop offset="0.7394" style="stop-color:#252629"/>
+<stop offset="1" style="stop-color:#494C4F"/>
</linearGradient>
<path d="M10.472,21.177c0,1.819-1.475,3.294-3.295,3.294H6.354c-1.82,0-3.295-1.475-3.295-3.294V6.354 c0-1.819,1.475-3.295,3.295-3.295h0.822c1.82,0,3.295,1.476,3.295,3.295V21.177z" fill="url(#SVGID_25_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="6.7656" x2="6.7656" y1="3.082" y2="8.9318">
- <stop offset="0" style="stop-color:#B5BCBF"/>
- <stop offset="1" style="stop-color:#494C4F"/>
+<stop offset="0" style="stop-color:#B5BCBF"/>
+<stop offset="1" style="stop-color:#494C4F"/>
</linearGradient>
<path d="M7.177,3.059H6.354c-1.82,0-3.295,1.476-3.295,3.295v2.47c0-1.819,1.475-3.295,3.295-3.295h0.822 c1.82,0,3.295,1.476,3.295,3.295v-2.47C10.472,4.534,8.997,3.059,7.177,3.059z" fill="url(#SVGID_26_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="6.7656" x2="6.7656" y1="3.0688" y2="7.2577">
- <stop offset="0" style="stop-color:#D5DDE0"/>
- <stop offset="1" style="stop-color:#494C4F"/>
+<stop offset="0" style="stop-color:#D5DDE0"/>
+<stop offset="1" style="stop-color:#494C4F"/>
</linearGradient>
<path d="M7.177,3.059H6.354c-1.82,0-3.295,1.476-3.295,3.295v0.411c0-1.818,1.475-3.295,3.295-3.295h0.822 c1.82,0,3.295,1.477,3.295,3.295V6.354C10.472,4.534,8.997,3.059,7.177,3.059z" fill="url(#SVGID_27_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="6.7646" x2="6.7646" y1="2.7354" y2="24.6079">
- <stop offset="0" style="stop-color:#A0A7A8"/>
- <stop offset="0.7576" style="stop-color:#252629"/>
- <stop offset="1" style="stop-color:#1F2021"/>
+<stop offset="0" style="stop-color:#A0A7A8"/>
+<stop offset="0.7576" style="stop-color:#252629"/>
+<stop offset="1" style="stop-color:#1F2021"/>
</linearGradient>
<path d="M7.177,5.528H6.354c-0.439,0-0.855,0.087-1.236,0.244V22h3.293V5.772 C8.03,5.615,7.614,5.528,7.177,5.528z" fill="url(#SVGID_28_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="6.7656" x2="6.7656" y1="18.7295" y2="24.5792">
- <stop offset="0" style="stop-color:#252629"/>
- <stop offset="1" style="stop-color:#5A5D61"/>
+<stop offset="0" style="stop-color:#252629"/>
+<stop offset="1" style="stop-color:#5A5D61"/>
</linearGradient>
<path d="M7.177,22H6.354c-1.82,0-3.295-1.476-3.295-3.294v2.471c0,1.819,1.475,3.294,3.295,3.294h0.822 c1.82,0,3.295-1.475,3.295-3.294v-2.471C10.472,20.524,8.997,22,7.177,22z" fill="url(#SVGID_29_)"/>
<rect fill="none" height="30" width="30"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -316.6406 280.5271)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="676.2813" x2="676.2813" y1="533.1255" y2="503.1255">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.2545" style="stop-color:#4F88BD"/>
- <stop offset="0.7333" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#4F88BD"/>
+<stop offset="0.7333" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M21.5,29c-4.136,0-7.5-3.364-7.5-7.5c0-4.135,3.364-7.5,7.5-7.5c4.135,0,7.5,3.365,7.5,7.5 C29,25.636,25.635,29,21.5,29L21.5,29z" fill="url(#SVGID_30_)"/>
<radialGradient cx="676.1436" cy="530.1011" gradientTransform="matrix(0.5 0 0 -0.5 -316.6406 280.6384)" gradientUnits="userSpaceOnUse" id="SVGID_31_" r="27.5291">
- <stop offset="0.15" style="stop-color:#96E9FA"/>
- <stop offset="0.7455" style="stop-color:#005BCC"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="0.15" style="stop-color:#96E9FA"/>
+<stop offset="0.7455" style="stop-color:#005BCC"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</radialGradient>
<path d="M28.785,21.5c0,4.024-3.263,7.286-7.285,7.286c-4.023,0-7.285-3.262-7.285-7.286 c0-4.023,3.262-7.286,7.285-7.286C25.522,14.214,28.785,17.477,28.785,21.5z" fill="url(#SVGID_31_)"/>
-<path d="M22.518,20.029v-2.035h-5.086v8.138H21.5h1.018h3.051v-6.103H22.518z M21.5,24.098h-3.052V23.08H21.5V24.098z M21.5,22.063h-3.052v-1.018H21.5V22.063z M18.448,20.029v-1.018H21.5v1.018H18.448z M24.552,24.098h-2.034V23.08h2.034V24.098z M24.552,22.063h-2.034v-1.018h2.034V22.063z" opacity="0.3"/>
+<path d="M22.518,20.029v-2.035h-5.086v8.138H21.5h1.018h3.051v-6.103H22.518z M21.5,24.098h-3.052V23.08H21.5V24.098z M21.5,22.063h-3.052v-1.018H21.5V22.063z M18.448,20.029v-1.018H21.5v1.018H18.448z M24.552,24.098h-2.034V23.08h2.034V24.098z M24.552,22.063h-2.034v-1.018h2.034V22.063z" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M22.518,19.329v-2.034h-5.086v8.137H21.5h1.018h3.051v-6.103H22.518z M21.5,23.397h-3.052v-1.017H21.5 V23.397z M21.5,21.363h-3.052v-1.018H21.5V21.363z M18.448,19.329v-1.018H21.5v1.018H18.448z M24.552,23.397h-2.034v-1.017h2.034 V23.397z M24.552,21.363h-2.034v-1.018h2.034V21.363z" fill="#FFFFFF"/>
-<rect height="6.103" opacity="0.3" width="1.017" x="22.518" y="19.329"/>
+<rect fill-opacity="0.3" height="6.103" stroke-opacity="0.3" width="1.017" x="22.518" y="19.329"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_mobile.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_mobile.svg Thu May 27 13:10:59 2010 +0300
@@ -1,129 +1,131 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="7.52,0 0,0 0,30 7.52,30 22.479,30 30,30 30,0 22.479,0 "/>
-<path d="M7.52,30c-0.699,0-1.352-0.281-1.836-0.793l-0.039-0.041l-0.057-0.07c-0.045-0.047-0.123-0.146-0.193-0.254 l-0.031-0.049l-0.041-0.079c-0.031-0.044-0.094-0.16-0.146-0.284l-0.023-0.057l-0.033-0.117c-0.035-0.096-0.064-0.191-0.084-0.291 c-0.033-0.161-0.051-0.327-0.051-0.498V2.534C4.984,1.137,6.123,0,7.52,0h14.959c1.398,0,2.535,1.137,2.535,2.534v24.933 c0,0.171-0.018,0.337-0.051,0.498c-0.027,0.135-0.066,0.262-0.113,0.387c-0.074,0.188-0.137,0.314-0.207,0.428l-0.039,0.065 c-0.072,0.111-0.156,0.214-0.244,0.313C23.828,29.72,23.178,30,22.479,30H7.52z" opacity="0.35"/>
+<path d="M7.52,30c-0.699,0-1.352-0.281-1.836-0.793l-0.039-0.041l-0.057-0.07c-0.045-0.047-0.123-0.146-0.193-0.254 l-0.031-0.049l-0.041-0.079c-0.031-0.044-0.094-0.16-0.146-0.284l-0.023-0.057l-0.033-0.117c-0.035-0.096-0.064-0.191-0.084-0.291 c-0.033-0.161-0.051-0.327-0.051-0.498V2.534C4.984,1.137,6.123,0,7.52,0h14.959c1.398,0,2.535,1.137,2.535,2.534v24.933 c0,0.171-0.018,0.337-0.051,0.498c-0.027,0.135-0.066,0.262-0.113,0.387c-0.074,0.188-0.137,0.314-0.207,0.428l-0.039,0.065 c-0.072,0.111-0.156,0.214-0.244,0.313C23.828,29.72,23.178,30,22.479,30H7.52z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="14.999" x2="14.999" y1="1" y2="28.9273">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M24.014,27.467c0,0.847-0.688,1.533-1.535,1.533H7.52c-0.848,0-1.535-0.687-1.535-1.533V2.534 C5.984,1.687,6.672,1,7.52,1h14.959c0.848,0,1.535,0.687,1.535,1.534V27.467z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="14.999" x2="14.999" y1="1" y2="28.45">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M22.479,1H7.52C6.672,1,5.984,1.687,5.984,2.534v24.933c0,0.409,0.164,0.779,0.424,1.055 c-0.021-0.094-0.039-0.188-0.039-0.287v-0.768V3.3V2.534c0-0.635,0.516-1.151,1.15-1.151h14.959c0.635,0,1.152,0.517,1.152,1.151 V3.3v24.167v0.768c0,0.099-0.018,0.193-0.041,0.287c0.26-0.275,0.424-0.646,0.424-1.055V2.534C24.014,1.687,23.326,1,22.479,1z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="2.9458" y2="21.7146">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_3__)" height="18.795" opacity="0.6" width="15.727" x="7.137" y="2.918"/>
+<rect fill="url(#SVGID_3__)" fill-opacity="0.6" height="18.795" stroke-opacity="0.6" width="15.727" x="7.137" y="2.918"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="14.999" x2="14.999" y1="3.3267" y2="21.3309">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<rect fill="url(#SVGID_4__)" height="18.029" width="14.959" x="7.52" y="3.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="3.71" y2="20.9477">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="17.262" width="14.191" x="7.904" y="3.685"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="3.9844" y2="10.8451">
- <stop offset="0" style="stop-color:#85EFFF"/>
- <stop offset="1" style="stop-color:#3BA1D9"/>
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="22.096,9.821 7.904,11.356 7.904,4.067 22.096,4.067 "/>
<rect fill="#9FE4FF" height="0.383" width="14.191" x="7.904" y="3.685"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.9404" x2="14.9404" y1="22.1118" y2="27.8145">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M13.553,27.851c-0.82,0-1.488-0.662-1.488-1.475v-2.805 c0-0.813,0.668-1.476,1.488-1.476h2.773c0.822,0,1.49,0.663,1.49,1.476v2.805c0,0.813-0.668,1.475-1.49,1.475H13.553z" fill="url(#SVGID_7_)" opacity="0.6"/>
-<path d="M13.551,27.467c-0.607,0-1.104-0.489-1.104-1.091v-2.805c0-0.602,0.496-1.09,1.104-1.09h2.777 c0.609,0,1.105,0.488,1.105,1.09v2.805c0,0.602-0.496,1.091-1.105,1.091H13.551z" fill="#020202" opacity="0.5"/>
+<path d="M13.553,27.851c-0.82,0-1.488-0.662-1.488-1.475v-2.805 c0-0.813,0.668-1.476,1.488-1.476h2.773c0.822,0,1.49,0.663,1.49,1.476v2.805c0,0.813-0.668,1.475-1.49,1.475H13.553z" fill="url(#SVGID_7_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M13.551,27.467c-0.607,0-1.104-0.489-1.104-1.091v-2.805c0-0.602,0.496-1.09,1.104-1.09h2.777 c0.609,0,1.105,0.488,1.105,1.09v2.805c0,0.602-0.496,1.091-1.105,1.091H13.551z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="14.9404" x2="14.9404" y1="22.8438" y2="27.0903">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M17.051,26.376c0,0.391-0.322,0.707-0.719,0.707h-2.785c-0.395,0-0.717-0.316-0.717-0.707v-2.805 c0-0.391,0.322-0.708,0.717-0.708h2.785c0.396,0,0.719,0.317,0.719,0.708V26.376z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.9404" x2="14.9404" y1="23.5933" y2="26.3081">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M14.363,26.316c-0.422,0-0.766-0.344-0.766-0.769v-1.149c0-0.424,0.344-0.769,0.766-0.769h1.152 c0.424,0,0.768,0.345,0.768,0.769v1.149c0,0.425-0.344,0.769-0.768,0.769H14.363z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="8.833" x2="8.833" y1="22.46" y2="27.0908">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M8.609,27.083c-0.811,0-1.473-0.66-1.473-1.476v-1.652 c0-0.813,0.662-1.474,1.473-1.474h0.443c0.814,0,1.477,0.66,1.477,1.474v1.652c0,0.815-0.662,1.476-1.477,1.476H8.609z" fill="url(#SVGID_10_)" opacity="0.4"/>
+<path d="M8.609,27.083c-0.811,0-1.473-0.66-1.473-1.476v-1.652 c0-0.813,0.662-1.474,1.473-1.474h0.443c0.814,0,1.477,0.66,1.477,1.474v1.652c0,0.815-0.662,1.476-1.477,1.476H8.609z" fill="url(#SVGID_10_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="8.832" x2="8.832" y1="22.8452" y2="26.7065">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M8.609,26.7c-0.6,0-1.09-0.49-1.09-1.093v-1.652c0-0.602,0.49-1.092,1.09-1.092h0.443 c0.604,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.488,1.093-1.092,1.093H8.609z" fill="url(#SVGID_11_)" opacity="0.7"/>
+<path d="M8.609,26.7c-0.6,0-1.09-0.49-1.09-1.093v-1.652c0-0.602,0.49-1.092,1.09-1.092h0.443 c0.604,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.488,1.093-1.092,1.093H8.609z" fill="url(#SVGID_11_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="8.833" x2="8.833" y1="23.2339" y2="26.3218">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M9.762,25.607c0,0.393-0.316,0.709-0.709,0.709H8.609c-0.389,0-0.705-0.316-0.705-0.709v-1.652 c0-0.392,0.316-0.707,0.705-0.707h0.443c0.393,0,0.709,0.315,0.709,0.707V25.607z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="20.835" x2="20.835" y1="22.46" y2="27.0908">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M20.615,27.083c-0.814,0-1.477-0.66-1.477-1.476v-1.652 c0-0.813,0.662-1.474,1.477-1.474h0.441c0.814,0,1.475,0.66,1.475,1.474v1.652c0,0.815-0.66,1.476-1.475,1.476H20.615z" fill="url(#SVGID_13_)" opacity="0.4"/>
+<path d="M20.615,27.083c-0.814,0-1.477-0.66-1.477-1.476v-1.652 c0-0.813,0.662-1.474,1.477-1.474h0.441c0.814,0,1.475,0.66,1.475,1.474v1.652c0,0.815-0.66,1.476-1.475,1.476H20.615z" fill="url(#SVGID_13_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="20.835" x2="20.835" y1="22.8452" y2="26.7065">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M20.615,26.7c-0.604,0-1.094-0.49-1.094-1.093v-1.652c0-0.602,0.49-1.092,1.094-1.092 h0.441c0.602,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.49,1.093-1.092,1.093H20.615z" fill="url(#SVGID_14_)" opacity="0.7"/>
+<path d="M20.615,26.7c-0.604,0-1.094-0.49-1.094-1.093v-1.652c0-0.602,0.49-1.092,1.094-1.092 h0.441c0.602,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.49,1.093-1.092,1.093H20.615z" fill="url(#SVGID_14_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="20.8359" x2="20.8359" y1="23.2339" y2="26.3218">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<path d="M21.766,25.607c0,0.393-0.318,0.709-0.709,0.709h-0.441c-0.393,0-0.709-0.316-0.709-0.709v-1.652 c0-0.392,0.316-0.707,0.709-0.707h0.441c0.391,0,0.709,0.315,0.709,0.707V25.607z" fill="url(#SVGID_15_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_mobile_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_mobile_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,146 +1,149 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="7.52,0 0,0 0,30 7.52,30 22.48,30 30,30 30,0 22.48,0 "/>
-<path d="M7.52,30c-0.672,0-1.299-0.26-1.775-0.732l-0.053-0.04l-0.094-0.121c-0.045-0.045-0.131-0.151-0.205-0.268 l-0.057-0.101c-0.041-0.06-0.105-0.18-0.158-0.305l-0.023-0.059l-0.033-0.114c-0.035-0.101-0.066-0.199-0.086-0.302 c-0.033-0.155-0.049-0.324-0.049-0.492V2.534C4.986,1.137,6.123,0,7.52,0H22.48c1.396,0,2.533,1.137,2.533,2.534V13.77 C28.023,15.141,30,18.163,30,21.5c0,3.895-2.619,7.258-6.385,8.226C23.258,29.905,22.869,30,22.48,30H7.52z" opacity="0.35"/>
+<path d="M7.52,30c-0.672,0-1.299-0.26-1.775-0.732l-0.053-0.04l-0.094-0.121c-0.045-0.045-0.131-0.151-0.205-0.268 l-0.057-0.101c-0.041-0.06-0.105-0.18-0.158-0.305l-0.023-0.059l-0.033-0.114c-0.035-0.101-0.066-0.199-0.086-0.302 c-0.033-0.155-0.049-0.324-0.049-0.492V2.534C4.986,1.137,6.123,0,7.52,0H22.48c1.396,0,2.533,1.137,2.533,2.534V13.77 C28.023,15.141,30,18.163,30,21.5c0,3.895-2.619,7.258-6.385,8.226C23.258,29.905,22.869,30,22.48,30H7.52z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="1" y2="28.9273">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M24.014,27.467c0,0.847-0.688,1.533-1.533,1.533H7.52c-0.846,0-1.533-0.687-1.533-1.533V2.534 C5.986,1.687,6.674,1,7.52,1H22.48c0.846,0,1.533,0.687,1.533,1.534V27.467z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1" y2="28.45">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M22.48,1H7.52C6.674,1,5.986,1.687,5.986,2.534v24.933c0,0.409,0.162,0.779,0.424,1.055 c-0.023-0.094-0.041-0.188-0.041-0.287v-0.768V3.3V2.534c0-0.635,0.516-1.151,1.15-1.151H22.48c0.633,0,1.15,0.517,1.15,1.151V3.3 v24.167v0.768c0,0.099-0.018,0.193-0.041,0.287c0.26-0.275,0.424-0.646,0.424-1.055V2.534C24.014,1.687,23.326,1,22.48,1z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="2.9458" y2="21.7146">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_3__)" height="18.795" opacity="0.6" width="15.727" x="7.137" y="2.918"/>
+<rect fill="url(#SVGID_3__)" fill-opacity="0.6" height="18.795" stroke-opacity="0.6" width="15.727" x="7.137" y="2.918"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="3.3267" y2="21.3309">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<rect fill="url(#SVGID_4__)" height="18.029" width="14.961" x="7.52" y="3.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="3.71" y2="20.9477">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="17.262" width="14.191" x="7.904" y="3.685"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="3.9844" y2="10.8451">
- <stop offset="0" style="stop-color:#85EFFF"/>
- <stop offset="1" style="stop-color:#3BA1D9"/>
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="22.096,9.821 7.904,11.356 7.904,4.067 22.096,4.067 "/>
<rect fill="#9FE4FF" height="0.383" width="14.191" x="7.904" y="3.685"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.9404" x2="14.9404" y1="22.1118" y2="27.8145">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M13.555,27.851c-0.822,0-1.49-0.662-1.49-1.475v-2.805c0-0.813,0.668-1.476,1.49-1.476 h2.773c0.82,0,1.488,0.663,1.488,1.476v2.805c0,0.813-0.668,1.475-1.488,1.475H13.555z" fill="url(#SVGID_7_)" opacity="0.6"/>
-<path d="M13.553,27.467c-0.609,0-1.105-0.489-1.105-1.091v-2.805c0-0.602,0.496-1.09,1.105-1.09h2.775 c0.609,0,1.105,0.488,1.105,1.09v2.805c0,0.602-0.496,1.091-1.105,1.091H13.553z" fill="#020202" opacity="0.5"/>
+<path d="M13.555,27.851c-0.822,0-1.49-0.662-1.49-1.475v-2.805c0-0.813,0.668-1.476,1.49-1.476 h2.773c0.82,0,1.488,0.663,1.488,1.476v2.805c0,0.813-0.668,1.475-1.488,1.475H13.555z" fill="url(#SVGID_7_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M13.553,27.467c-0.609,0-1.105-0.489-1.105-1.091v-2.805c0-0.602,0.496-1.09,1.105-1.09h2.775 c0.609,0,1.105,0.488,1.105,1.09v2.805c0,0.602-0.496,1.091-1.105,1.091H13.553z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="14.9404" x2="14.9404" y1="22.8438" y2="27.0903">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M17.051,26.376c0,0.391-0.322,0.707-0.719,0.707h-2.783c-0.396,0-0.719-0.316-0.719-0.707v-2.805 c0-0.391,0.322-0.708,0.719-0.708h2.783c0.396,0,0.719,0.317,0.719,0.708V26.376z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.9404" x2="14.9404" y1="23.5933" y2="26.3081">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M14.365,26.316c-0.424,0-0.768-0.344-0.768-0.769v-1.149c0-0.424,0.344-0.769,0.768-0.769h1.15 c0.424,0,0.768,0.345,0.768,0.769v1.149c0,0.425-0.344,0.769-0.768,0.769H14.365z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="8.833" x2="8.833" y1="22.46" y2="27.0908">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M8.611,27.083c-0.813,0-1.475-0.66-1.475-1.476v-1.652 c0-0.813,0.662-1.474,1.475-1.474h0.443c0.813,0,1.475,0.66,1.475,1.474v1.652c0,0.815-0.662,1.476-1.475,1.476H8.611z" fill="url(#SVGID_10_)" opacity="0.4"/>
+<path d="M8.611,27.083c-0.813,0-1.475-0.66-1.475-1.476v-1.652 c0-0.813,0.662-1.474,1.475-1.474h0.443c0.813,0,1.475,0.66,1.475,1.474v1.652c0,0.815-0.662,1.476-1.475,1.476H8.611z" fill="url(#SVGID_10_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="8.833" x2="8.833" y1="22.8452" y2="26.7065">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M8.611,26.7c-0.602,0-1.092-0.49-1.092-1.093v-1.652c0-0.602,0.49-1.092,1.092-1.092 h0.443c0.602,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.49,1.093-1.092,1.093H8.611z" fill="url(#SVGID_11_)" opacity="0.7"/>
+<path d="M8.611,26.7c-0.602,0-1.092-0.49-1.092-1.093v-1.652c0-0.602,0.49-1.092,1.092-1.092 h0.443c0.602,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.49,1.093-1.092,1.093H8.611z" fill="url(#SVGID_11_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="8.834" x2="8.834" y1="23.2339" y2="26.3218">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M9.764,25.607c0,0.393-0.318,0.709-0.709,0.709H8.611c-0.391,0-0.707-0.316-0.707-0.709v-1.652 c0-0.392,0.316-0.707,0.707-0.707h0.443c0.391,0,0.709,0.315,0.709,0.707V25.607z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="20.8359" x2="20.8359" y1="22.46" y2="27.0908">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M20.615,27.083c-0.814,0-1.477-0.66-1.477-1.476v-1.652 c0-0.813,0.662-1.474,1.477-1.474h0.441c0.814,0,1.477,0.66,1.477,1.474v1.652c0,0.815-0.662,1.476-1.477,1.476H20.615z" fill="url(#SVGID_13_)" opacity="0.4"/>
+<path d="M20.615,27.083c-0.814,0-1.477-0.66-1.477-1.476v-1.652 c0-0.813,0.662-1.474,1.477-1.474h0.441c0.814,0,1.477,0.66,1.477,1.474v1.652c0,0.815-0.662,1.476-1.477,1.476H20.615z" fill="url(#SVGID_13_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="20.8359" x2="20.8359" y1="22.8452" y2="26.7065">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M20.615,26.7c-0.604,0-1.092-0.49-1.092-1.093v-1.652 c0-0.602,0.488-1.092,1.092-1.092h0.441c0.602,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.49,1.093-1.092,1.093H20.615z" fill="url(#SVGID_14_)" opacity="0.7"/>
+<path d="M20.615,26.7c-0.604,0-1.092-0.49-1.092-1.093v-1.652 c0-0.602,0.488-1.092,1.092-1.092h0.441c0.602,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.49,1.093-1.092,1.093H20.615z" fill="url(#SVGID_14_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="20.8359" x2="20.8359" y1="23.2339" y2="26.3218">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<path d="M21.766,25.607c0,0.393-0.318,0.709-0.709,0.709h-0.441c-0.393,0-0.709-0.316-0.709-0.709v-1.652 c0-0.392,0.316-0.707,0.709-0.707h0.441c0.391,0,0.709,0.315,0.709,0.707V25.607z" fill="url(#SVGID_15_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -316.6406 360.4753)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="676.2813" x2="676.2813" y1="693.022" y2="663.022">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.2545" style="stop-color:#4F88BD"/>
- <stop offset="0.7333" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#4F88BD"/>
+<stop offset="0.7333" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M21.5,29c-4.137,0-7.5-3.363-7.5-7.5c0-4.135,3.363-7.5,7.5-7.5c4.135,0,7.5,3.365,7.5,7.5 C29,25.637,25.635,29,21.5,29L21.5,29z" fill="url(#SVGID_16_)"/>
<radialGradient cx="751.8848" cy="1129.7896" gradientTransform="matrix(0.4708 0 0 -0.4709 -332.5567 547.6061)" gradientUnits="userSpaceOnUse" id="SVGID_17_" r="29.2379">
- <stop offset="0.15" style="stop-color:#96E9FA"/>
- <stop offset="0.7455" style="stop-color:#005BCC"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="0.15" style="stop-color:#96E9FA"/>
+<stop offset="0.7455" style="stop-color:#005BCC"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</radialGradient>
<path d="M28.785,21.5c0,4.024-3.264,7.286-7.285,7.286c-4.025,0-7.285-3.262-7.285-7.286 c0-4.022,3.26-7.286,7.285-7.286C25.521,14.214,28.785,17.478,28.785,21.5z" fill="url(#SVGID_17_)"/>
-<polygon opacity="0.3" points="25.703,22.889 21.498,18.435 17.297,22.889 16.658,22.209 21.498,17.077 26.342,22.209 25.703,22.889 "/>
-<polygon opacity="0.3" points="21.5,19.845 17.627,23.951 17.627,25.793 20.531,25.793 20.531,22.889 22.469,22.889 22.469,25.793 25.373,25.793 25.373,23.95 "/>
+<polygon fill-opacity="0.3" points="25.703,22.889 21.498,18.435 17.297,22.889 16.658,22.209 21.498,17.077 26.342,22.209 25.703,22.889 " stroke-opacity="0.3"/>
+<polygon fill-opacity="0.3" points="21.5,19.845 17.627,23.951 17.627,25.793 20.531,25.793 20.531,22.889 22.469,22.889 22.469,25.793 25.373,25.793 25.373,23.95 " stroke-opacity="0.3"/>
<polygon fill="#FFFFFF" points="25.703,22.188 21.498,17.734 17.297,22.188 16.658,21.51 21.498,16.377 26.342,21.51 25.703,22.188 "/>
<polygon fill="#FFFFFF" points="21.5,19.146 17.627,23.252 17.627,25.094 20.531,25.094 20.531,22.188 22.469,22.188 22.469,25.094 25.373,25.094 25.373,23.25 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_mobile_work.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_mobile_work.svg Thu May 27 13:10:59 2010 +0300
@@ -1,145 +1,148 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="7.52,0 0,0 0,30 7.52,30 22.479,30 30,30 30,0 22.479,0 "/>
-<path d="M7.52,30c-0.699,0-1.352-0.281-1.836-0.793l-0.041-0.041l-0.055-0.07c-0.045-0.047-0.123-0.146-0.193-0.254 l-0.031-0.049l-0.041-0.079c-0.031-0.044-0.094-0.16-0.146-0.284l-0.023-0.057l-0.033-0.117c-0.035-0.096-0.064-0.191-0.084-0.291 c-0.033-0.161-0.051-0.327-0.051-0.498V2.534C4.984,1.137,6.123,0,7.52,0h14.959c1.398,0,2.535,1.137,2.535,2.534v11.236 C28.023,15.142,30,18.164,30,21.5c0,3.895-2.619,7.257-6.385,8.225C23.258,29.905,22.869,30,22.479,30H7.52z" opacity="0.35"/>
+<path d="M7.52,30c-0.699,0-1.352-0.281-1.836-0.793l-0.041-0.041l-0.055-0.07c-0.045-0.047-0.123-0.146-0.193-0.254 l-0.031-0.049l-0.041-0.079c-0.031-0.044-0.094-0.16-0.146-0.284l-0.023-0.057l-0.033-0.117c-0.035-0.096-0.064-0.191-0.084-0.291 c-0.033-0.161-0.051-0.327-0.051-0.498V2.534C4.984,1.137,6.123,0,7.52,0h14.959c1.398,0,2.535,1.137,2.535,2.534v11.236 C28.023,15.142,30,18.164,30,21.5c0,3.895-2.619,7.257-6.385,8.225C23.258,29.905,22.869,30,22.479,30H7.52z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="14.999" x2="14.999" y1="1" y2="28.9273">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M24.014,27.467c0,0.847-0.688,1.533-1.535,1.533H7.52c-0.848,0-1.535-0.687-1.535-1.533V2.534 C5.984,1.687,6.672,1,7.52,1h14.959c0.848,0,1.535,0.687,1.535,1.534V27.467z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="14.999" x2="14.999" y1="1" y2="28.45">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M22.479,1H7.52C6.672,1,5.984,1.687,5.984,2.534v24.933c0,0.409,0.164,0.779,0.424,1.055 c-0.021-0.094-0.039-0.188-0.039-0.287v-0.768V3.3V2.534c0-0.635,0.516-1.151,1.15-1.151h14.959c0.635,0,1.152,0.517,1.152,1.151 V3.3v24.167v0.768c0,0.099-0.018,0.193-0.041,0.287c0.26-0.275,0.424-0.646,0.424-1.055V2.534C24.014,1.687,23.326,1,22.479,1z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="2.9458" y2="21.7146">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_3__)" height="18.795" opacity="0.6" width="15.727" x="7.137" y="2.918"/>
+<rect fill="url(#SVGID_3__)" fill-opacity="0.6" height="18.795" stroke-opacity="0.6" width="15.727" x="7.137" y="2.918"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="14.999" x2="14.999" y1="3.3267" y2="21.3309">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<rect fill="url(#SVGID_4__)" height="18.029" width="14.959" x="7.52" y="3.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="3.71" y2="20.9477">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="17.262" width="14.191" x="7.904" y="3.685"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="3.9844" y2="10.8451">
- <stop offset="0" style="stop-color:#85EFFF"/>
- <stop offset="1" style="stop-color:#3BA1D9"/>
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="22.096,9.821 7.904,11.356 7.904,4.067 22.096,4.067 "/>
<rect fill="#9FE4FF" height="0.383" width="14.191" x="7.904" y="3.685"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.9404" x2="14.9404" y1="22.1118" y2="27.8145">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M13.553,27.851c-0.82,0-1.488-0.662-1.488-1.475v-2.805 c0-0.813,0.668-1.476,1.488-1.476h2.773c0.822,0,1.49,0.663,1.49,1.476v2.805c0,0.813-0.668,1.475-1.49,1.475H13.553z" fill="url(#SVGID_7_)" opacity="0.6"/>
-<path d="M13.551,27.467c-0.607,0-1.104-0.489-1.104-1.091v-2.805c0-0.602,0.496-1.09,1.104-1.09h2.777 c0.609,0,1.105,0.488,1.105,1.09v2.805c0,0.602-0.496,1.091-1.105,1.091H13.551z" fill="#020202" opacity="0.5"/>
+<path d="M13.553,27.851c-0.82,0-1.488-0.662-1.488-1.475v-2.805 c0-0.813,0.668-1.476,1.488-1.476h2.773c0.822,0,1.49,0.663,1.49,1.476v2.805c0,0.813-0.668,1.475-1.49,1.475H13.553z" fill="url(#SVGID_7_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M13.551,27.467c-0.607,0-1.104-0.489-1.104-1.091v-2.805c0-0.602,0.496-1.09,1.104-1.09h2.777 c0.609,0,1.105,0.488,1.105,1.09v2.805c0,0.602-0.496,1.091-1.105,1.091H13.551z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="14.9404" x2="14.9404" y1="22.8438" y2="27.0903">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M17.051,26.376c0,0.391-0.322,0.707-0.719,0.707h-2.785c-0.395,0-0.717-0.316-0.717-0.707v-2.805 c0-0.391,0.322-0.708,0.717-0.708h2.785c0.396,0,0.719,0.317,0.719,0.708V26.376z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.9404" x2="14.9404" y1="23.5933" y2="26.3081">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M14.363,26.316c-0.422,0-0.766-0.344-0.766-0.769v-1.149c0-0.424,0.344-0.769,0.766-0.769h1.152 c0.424,0,0.768,0.345,0.768,0.769v1.149c0,0.425-0.344,0.769-0.768,0.769H14.363z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="8.833" x2="8.833" y1="22.46" y2="27.0908">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M8.609,27.083c-0.811,0-1.473-0.66-1.473-1.476v-1.652 c0-0.813,0.662-1.474,1.473-1.474h0.445c0.813,0,1.475,0.66,1.475,1.474v1.652c0,0.815-0.662,1.476-1.475,1.476H8.609z" fill="url(#SVGID_10_)" opacity="0.4"/>
+<path d="M8.609,27.083c-0.811,0-1.473-0.66-1.473-1.476v-1.652 c0-0.813,0.662-1.474,1.473-1.474h0.445c0.813,0,1.475,0.66,1.475,1.474v1.652c0,0.815-0.662,1.476-1.475,1.476H8.609z" fill="url(#SVGID_10_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="8.832" x2="8.832" y1="22.8452" y2="26.7065">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M8.609,26.7c-0.6,0-1.09-0.49-1.09-1.093v-1.652c0-0.602,0.49-1.092,1.09-1.092h0.445 c0.602,0,1.09,0.49,1.09,1.092v1.652c0,0.603-0.488,1.093-1.09,1.093H8.609z" fill="url(#SVGID_11_)" opacity="0.7"/>
+<path d="M8.609,26.7c-0.6,0-1.09-0.49-1.09-1.093v-1.652c0-0.602,0.49-1.092,1.09-1.092h0.445 c0.602,0,1.09,0.49,1.09,1.092v1.652c0,0.603-0.488,1.093-1.09,1.093H8.609z" fill="url(#SVGID_11_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="8.833" x2="8.833" y1="23.2339" y2="26.3218">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M9.762,25.607c0,0.393-0.316,0.709-0.707,0.709H8.609c-0.389,0-0.705-0.316-0.705-0.709v-1.652 c0-0.392,0.316-0.707,0.705-0.707h0.445c0.391,0,0.707,0.315,0.707,0.707V25.607z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="20.835" x2="20.835" y1="22.46" y2="27.0908">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M20.615,27.083c-0.814,0-1.477-0.66-1.477-1.476v-1.652 c0-0.813,0.662-1.474,1.477-1.474h0.441c0.814,0,1.475,0.66,1.475,1.474v1.652c0,0.815-0.66,1.476-1.475,1.476H20.615z" fill="url(#SVGID_13_)" opacity="0.4"/>
+<path d="M20.615,27.083c-0.814,0-1.477-0.66-1.477-1.476v-1.652 c0-0.813,0.662-1.474,1.477-1.474h0.441c0.814,0,1.475,0.66,1.475,1.474v1.652c0,0.815-0.66,1.476-1.475,1.476H20.615z" fill="url(#SVGID_13_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="20.835" x2="20.835" y1="22.8452" y2="26.7065">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M20.615,26.7c-0.604,0-1.094-0.49-1.094-1.093v-1.652c0-0.602,0.49-1.092,1.094-1.092 h0.441c0.602,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.49,1.093-1.092,1.093H20.615z" fill="url(#SVGID_14_)" opacity="0.7"/>
+<path d="M20.615,26.7c-0.604,0-1.094-0.49-1.094-1.093v-1.652c0-0.602,0.49-1.092,1.094-1.092 h0.441c0.602,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.49,1.093-1.092,1.093H20.615z" fill="url(#SVGID_14_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="20.8359" x2="20.8359" y1="23.2339" y2="26.3218">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<path d="M21.766,25.607c0,0.393-0.318,0.709-0.709,0.709h-0.441c-0.393,0-0.709-0.316-0.709-0.709v-1.652 c0-0.392,0.316-0.707,0.709-0.707h0.441c0.391,0,0.709,0.315,0.709,0.707V25.607z" fill="url(#SVGID_15_)"/>
<rect fill="none" height="30" width="30"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -353.9307 360.4753)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="750.8613" x2="750.8613" y1="693.022" y2="663.022">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.2545" style="stop-color:#4F88BD"/>
- <stop offset="0.7333" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#4F88BD"/>
+<stop offset="0.7333" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M21.5,29c-4.137,0-7.5-3.364-7.5-7.5c0-4.135,3.363-7.5,7.5-7.5c4.135,0,7.5,3.365,7.5,7.5 C29,25.636,25.635,29,21.5,29L21.5,29z" fill="url(#SVGID_16_)"/>
<radialGradient cx="750.7217" cy="689.9976" gradientTransform="matrix(0.5 0 0 -0.5 -353.9307 360.5867)" gradientUnits="userSpaceOnUse" id="SVGID_17_" r="27.5326">
- <stop offset="0.15" style="stop-color:#96E9FA"/>
- <stop offset="0.7455" style="stop-color:#005BCC"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="0.15" style="stop-color:#96E9FA"/>
+<stop offset="0.7455" style="stop-color:#005BCC"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</radialGradient>
<path d="M28.785,21.5c0,4.024-3.264,7.286-7.285,7.286c-4.025,0-7.287-3.262-7.287-7.286 c0-4.023,3.262-7.286,7.287-7.286C25.521,14.214,28.785,17.477,28.785,21.5z" fill="url(#SVGID_17_)"/>
-<path d="M22.516,20.029v-2.035H17.43v8.138h4.07h1.016h3.053v-6.103H22.516z M21.5,24.098h-3.053V23.08H21.5V24.098z M21.5,22.063h-3.053v-1.018H21.5V22.063z M18.447,20.029v-1.018H21.5v1.018H18.447z M24.551,24.098h-2.035V23.08h2.035V24.098z M24.551,22.063h-2.035v-1.018h2.035V22.063z" opacity="0.3"/>
+<path d="M22.516,20.029v-2.035H17.43v8.138h4.07h1.016h3.053v-6.103H22.516z M21.5,24.098h-3.053V23.08H21.5V24.098z M21.5,22.063h-3.053v-1.018H21.5V22.063z M18.447,20.029v-1.018H21.5v1.018H18.447z M24.551,24.098h-2.035V23.08h2.035V24.098z M24.551,22.063h-2.035v-1.018h2.035V22.063z" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M22.516,19.329v-2.034H17.43v8.137h4.07h1.016h3.053v-6.103H22.516z M21.5,23.397h-3.053v-1.017H21.5V23.397 z M21.5,21.363h-3.053v-1.018H21.5V21.363z M18.447,19.329v-1.018H21.5v1.018H18.447z M24.551,23.397h-2.035v-1.017h2.035V23.397z M24.551,21.363h-2.035v-1.018h2.035V21.363z" fill="#FFFFFF"/>
-<rect height="6.103" opacity="0.3" width="1.018" x="22.516" y="19.329"/>
+<rect fill-opacity="0.3" height="6.103" stroke-opacity="0.3" width="1.018" x="22.516" y="19.329"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_muted.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_muted.svg Thu May 27 13:10:59 2010 +0300
@@ -1,42 +1,40 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
-<path d="M49.816,18.774L49.816,18.774c2.203-4.334,1.499-9.768-2.128-13.393c-3.624-3.624-9.056-4.33-13.391-2.127 l0,0c0,0-0.002,0.001-0.005,0.002c-1.055,0.538-2.049,1.242-2.932,2.125L21.019,15.725c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544 v-0.002l-2.177,2.179c-0.299,0.3-0.299,0.789,0,1.089l-4.897,4.897c-4.51,4.51-4.51,11.821,0,16.33 c2.907,2.907,6.978,3.929,10.711,3.087c0.18-0.039,0.357-0.081,0.535-0.131c0.151-0.041,0.301-0.088,0.449-0.135 c0.041-0.015,0.083-0.024,0.125-0.038v3.85c-0.892,0.086-1.541,0.4-1.541,1.388v5.367h-5.405c-0.166,0-0.327,0.02-0.482,0.055 c-0.028,0.005-0.05,0.016-0.077,0.021c-0.13,0.033-0.258,0.074-0.378,0.128c-0.012,0.005-0.023,0.013-0.036,0.017 c-0.776,0.364-1.32,1.14-1.32,2.046v0.506c0,0.084,0.005,0.166,0.014,0.333c0.008,0.153,0.02,0.377,0.033,0.745h0.002h22.994h0.001 c0.032-0.767,0.048-0.92,0.048-1.078v-0.506c0-0.906-0.542-1.682-1.321-2.046c-0.01-0.004-0.021-0.012-0.033-0.017 c-0.122-0.054-0.248-0.095-0.378-0.128c-0.027-0.006-0.051-0.017-0.077-0.021c-0.156-0.035-0.317-0.055-0.482-0.055h-5.405 l-0.001-5.367c0-0.987-0.649-1.302-1.538-1.388v-6.742l4.788-4.79c0.301,0.3,0.79,0.3,1.09,0l2.721-2.721 c0.3-0.299,0.3-0.789,0-1.089c0,0,10.687-10.718,10.854-10.906v-0.001c0.645-0.736,1.186-1.529,1.613-2.367L49.816,18.774z" opacity="0.1"/>
+<path d="M49.816,18.774L49.816,18.774c2.203-4.334,1.499-9.768-2.128-13.393c-3.624-3.624-9.056-4.33-13.391-2.127 l0,0c0,0-0.002,0.001-0.005,0.002c-1.055,0.538-2.049,1.242-2.932,2.125L21.019,15.725c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544 v-0.002l-2.177,2.179c-0.299,0.3-0.299,0.789,0,1.089l-4.897,4.897c-4.51,4.51-4.51,11.821,0,16.33 c2.907,2.907,6.978,3.929,10.711,3.087c0.18-0.039,0.357-0.081,0.535-0.131c0.151-0.041,0.301-0.088,0.449-0.135 c0.041-0.015,0.083-0.024,0.125-0.038v3.85c-0.892,0.086-1.541,0.4-1.541,1.388v5.367h-5.405c-0.166,0-0.327,0.02-0.482,0.055 c-0.028,0.005-0.05,0.016-0.077,0.021c-0.13,0.033-0.258,0.074-0.378,0.128c-0.012,0.005-0.023,0.013-0.036,0.017 c-0.776,0.364-1.32,1.14-1.32,2.046v0.506c0,0.084,0.005,0.166,0.014,0.333c0.008,0.153,0.02,0.377,0.033,0.745h0.002h22.994h0.001 c0.032-0.767,0.048-0.92,0.048-1.078v-0.506c0-0.906-0.542-1.682-1.321-2.046c-0.01-0.004-0.021-0.012-0.033-0.017 c-0.122-0.054-0.248-0.095-0.378-0.128c-0.027-0.006-0.051-0.017-0.077-0.021c-0.156-0.035-0.317-0.055-0.482-0.055h-5.405 l-0.001-5.367c0-0.987-0.649-1.302-1.538-1.388v-6.742l4.788-4.79c0.301,0.3,0.79,0.3,1.09,0l2.721-2.721 c0.3-0.299,0.3-0.789,0-1.089c0,0,10.687-10.718,10.854-10.906v-0.001c0.645-0.736,1.186-1.529,1.613-2.367L49.816,18.774z" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="267.0962" x2="290.189" y1="468.0112" y2="468.0112">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.7091" style="stop-color:#686E70"/>
- <stop offset="1" style="stop-color:#A6B0B3"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#686E70"/>
+<stop offset="1" style="stop-color:#A6B0B3"/>
</linearGradient>
<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0L21.019,15.725l16.328,16.328l10.341-10.342 C52.198,17.202,52.199,9.893,47.688,5.382z" fill="url(#SVGID_1_)"/>
-<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0l-1.634,1.633 c4.51-4.509,9.643-2.331,14.151,2.178c4.511,4.51,6.687,9.644,2.178,14.151l1.632-1.633C52.198,17.202,52.199,9.893,47.688,5.382z" fill="#FFFFFF" opacity="0.2"/>
-<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0l-1.634,1.633 c4.51-4.509,11.821-4.509,16.33,0c4.51,4.511,4.508,11.821,0,16.329l1.632-1.633C52.198,17.202,52.199,9.893,47.688,5.382z" fill="#FFFFFF" opacity="0.2"/>
+<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0l-1.634,1.633 c4.51-4.509,9.643-2.331,14.151,2.178c4.511,4.51,6.687,9.644,2.178,14.151l1.632-1.633C52.198,17.202,52.199,9.893,47.688,5.382z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0l-1.634,1.633 c4.51-4.509,11.821-4.509,16.33,0c4.51,4.511,4.508,11.821,0,16.329l1.632-1.633C52.198,17.202,52.199,9.893,47.688,5.382z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="267.0962" x2="290.1899" y1="493.0283" y2="493.0283">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.3818" style="stop-color:#7A7A7A"/>
- <stop offset="0.7091" style="stop-color:#1A1A1A"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#7A7A7A"/>
+<stop offset="0.7091" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<path d="M21.019,15.725l-8.709,8.707c-4.51,4.51-4.51,11.821,0,16.33c4.508,4.51,11.821,4.51,16.33,0 l8.708-8.709L21.019,15.725z" fill="url(#SVGID_2_)"/>
-<path d="M16.664,36.407c-4.51-4.509-8.318-8.01-3.81-12.52l-0.544,0.544c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0.543-0.545C24.674,44.728,21.173,40.916,16.664,36.407z" opacity="0.1"/>
-<path d="M15.031,38.04c-4.508-4.508-6.685-9.643-2.177-14.152l-0.544,0.544c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0.543-0.545C24.674,44.728,19.541,42.55,15.031,38.04z" opacity="0.2"/>
-<path d="M13.398,39.674C8.889,35.164,7.8,28.941,12.31,24.432l0,0c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0,0C24.131,45.271,17.909,44.183,13.398,39.674z" opacity="0.2"/>
+<path d="M16.664,36.407c-4.51-4.509-8.318-8.01-3.81-12.52l-0.544,0.544c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0.543-0.545C24.674,44.728,21.173,40.916,16.664,36.407z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M15.031,38.04c-4.508-4.508-6.685-9.643-2.177-14.152l-0.544,0.544c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0.543-0.545C24.674,44.728,19.541,42.55,15.031,38.04z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M13.398,39.674C8.889,35.164,7.8,28.941,12.31,24.432l0,0c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0,0C24.131,45.271,17.909,44.183,13.398,39.674z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="266.3257" x2="290.9585" y1="483.7915" y2="483.7915">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.3818" style="stop-color:#7A7A7A"/>
- <stop offset="0.7091" style="stop-color:#1A1A1A"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#7A7A7A"/>
+<stop offset="0.7091" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<path d="M34.626,35.862c-0.301,0.3-0.79,0.3-1.09,0L17.208,19.534c-0.299-0.3-0.299-0.789,0-1.089 l2.721-2.721c0.301-0.3,0.791-0.3,1.09,0l16.328,16.328c0.3,0.3,0.3,0.79,0,1.089L34.626,35.862z" fill="url(#SVGID_3_)"/>
-<path d="M37.347,32.053L21.019,15.725c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544 c0.301-0.299,0.79-0.299,1.09,0l16.328,16.328c0.3,0.3,0.3,0.79,0,1.089l0.544-0.544C37.647,32.843,37.647,32.353,37.347,32.053z" fill="#FFFFFF" opacity="0.2"/>
-<rect height="0.77" opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.5824 -8.4675)" width="23.093" x="12.465" y="28.674"/>
-<rect fill="#FFFFFF" height="0.771" opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 25.326 -13.911)" width="23.091" x="17.909" y="23.23"/>
-<rect height="0.769" opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.3549 -9.0122)" width="23.091" x="13.01" y="28.13"/>
-<rect height="0.769" opacity="0.4" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.131 -9.5558)" width="23.092" x="13.554" y="27.586"/>
+<path d="M37.347,32.053L21.019,15.725c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544 c0.301-0.299,0.79-0.299,1.09,0l16.328,16.328c0.3,0.3,0.3,0.79,0,1.089l0.544-0.544C37.647,32.843,37.647,32.353,37.347,32.053z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill-opacity="0.1" height="0.77" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.5824 -8.4675)" width="23.093" x="12.465" y="28.674"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="0.771" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 25.326 -13.911)" width="23.091" x="17.909" y="23.23"/>
+<rect fill-opacity="0.2" height="0.769" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.3549 -9.0122)" width="23.091" x="13.01" y="28.13"/>
+<rect fill-opacity="0.4" height="0.769" stroke-opacity="0.4" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.131 -9.5558)" width="23.092" x="13.554" y="27.586"/>
<path d="M22.652,15.179c0.301-0.299,0.301-0.786,0-1.087l-1.089,1.087C21.864,15.481,22.351,15.48,22.652,15.179z" fill="#FFFFFF"/>
<path d="M27.005,10.824c0.301-0.3,0.301-0.787,0-1.088l-1.087,1.088C26.217,11.126,26.705,11.125,27.005,10.824z" fill="#FFFFFF"/>
<path d="M31.361,6.471c0.291-0.291,0.293-0.753,0.021-1.055c-0.19,0.167-0.384,0.329-0.566,0.511l-0.544,0.544 C30.571,6.771,31.059,6.771,31.361,6.471z" fill="#FFFFFF"/>
@@ -59,187 +57,207 @@
<circle cx="36.803" cy="16.269" fill="#FFFFFF" r="0.769"/>
<circle cx="41.157" cy="11.914" fill="#FFFFFF" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="267.4819" x2="267.4819" y1="462.314" y2="479.7079">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M23.196,14.637c0.301-0.302,0.301-0.788,0-1.091l-1.088,1.091 C22.409,14.937,22.895,14.937,23.196,14.637z" fill="url(#SVGID_4_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="267.481" x2="267.481" y1="462.3311" y2="479.7029">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M27.549,10.28c0.302-0.3,0.302-0.788,0-1.088l-1.087,1.088C26.763,10.582,27.249,10.581,27.549,10.28 z" fill="url(#SVGID_5_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="267.481" x2="267.481" y1="462.3467" y2="479.6524">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M31.903,5.927c0.292-0.291,0.294-0.754,0.023-1.057c-0.192,0.168-0.386,0.33-0.566,0.512 l-0.545,0.545C31.116,6.228,31.603,6.228,31.903,5.927z" fill="url(#SVGID_6_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="270.9458" x2="270.9458" y1="462.3418" y2="479.7027">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="27.549" cy="14.635" fill="url(#SVGID_7_)" r="0.769"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="270.9458" x2="270.9458" y1="462.3311" y2="479.6974">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="31.905" cy="10.28" fill="url(#SVGID_8_)" r="0.769"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="270.9458" x2="270.9458" y1="462.3247" y2="479.6966">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="36.26" cy="5.926" fill="url(#SVGID_9_)" r="0.769"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="274.7954" x2="274.7954" y1="462.314" y2="479.7079">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="28.094" cy="19.534" fill="url(#SVGID_10_)" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="274.7944" x2="274.7944" y1="462.3257" y2="479.7086">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="32.448" cy="15.181" fill="url(#SVGID_11_)" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="274.7944" x2="274.7944" y1="462.3267" y2="479.6985">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="36.803" cy="10.825" fill="url(#SVGID_12_)" r="0.769"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="289.8052" x2="289.8052" y1="462.335" y2="479.7068">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M38.437,29.876c-0.301,0.301-0.301,0.788,0,1.088l1.088-1.088 C39.225,29.574,38.737,29.575,38.437,29.876z" fill="url(#SVGID_13_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="289.8052" x2="289.8052" y1="462.3247" y2="479.7076">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M42.79,25.521c-0.301,0.301-0.301,0.787,0,1.09l1.088-1.09C43.579,25.22,43.091,25.22,42.79,25.521z " fill="url(#SVGID_14_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="289.8032" x2="289.8032" y1="462.3516" y2="479.6407">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M48.201,21.146c-0.302-0.274-0.765-0.271-1.057,0.02c-0.301,0.302-0.301,0.788,0,1.089l0.544-0.544 C47.871,21.529,48.034,21.335,48.201,21.146z" fill="url(#SVGID_15_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="286.3403" x2="286.3403" y1="462.3247" y2="479.7076">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="38.436" cy="25.521" fill="url(#SVGID_16_)" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="286.3403" x2="286.3403" y1="462.3271" y2="479.7046">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="42.79" cy="21.167" fill="url(#SVGID_17_)" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="286.3403" x2="286.3403" y1="462.3262" y2="479.7036">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M47.688,17.357c-0.297,0.3-0.786,0.3-1.088,0c-0.301-0.301-0.301-0.788,0-1.089s0.787-0.301,1.088,0 C47.991,16.569,47.989,17.057,47.688,17.357z" fill="url(#SVGID_18_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="282.4907" x2="282.4907" y1="462.3296" y2="479.707">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M34.08,25.521c-0.298,0.301-0.786,0.301-1.088,0c-0.301-0.301-0.301-0.788,0-1.089 c0.301-0.3,0.789-0.301,1.088,0C34.383,24.734,34.381,25.22,34.08,25.521z" fill="url(#SVGID_19_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="282.4917" x2="282.4917" y1="462.3237" y2="479.7066">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="37.892" cy="20.622" fill="url(#SVGID_20_)" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="282.4917" x2="282.4917" y1="462.3267" y2="479.7041">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="42.246" cy="16.269" fill="url(#SVGID_21_)" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="278.6431" x2="278.6431" y1="462.3335" y2="479.7054">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="32.992" cy="20.078" fill="url(#SVGID_22_)" r="0.769"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="278.6431" x2="278.6431" y1="462.3223" y2="479.7107">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="37.347" cy="15.724" fill="url(#SVGID_23_)" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="278.6431" x2="278.6431" y1="462.3242" y2="479.7016">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="41.702" cy="11.369" fill="url(#SVGID_24_)" r="0.769"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -374.1758 -502.9102)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="404.7837" x2="396.38" y1="554.8911" y2="554.8911">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2545" style="stop-color:#1A1A1A"/>
- <stop offset="0.6182" style="stop-color:#7A7A7A"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2545" style="stop-color:#1A1A1A"/>
+<stop offset="0.6182" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<path d="M30.288,54.397c-0.001,1.216-0.979,2.203-2.185,2.203h-3.328c-1.207,0-2.185-0.987-2.185-2.2v-5.618 c0-1.215,0.978-1.42,2.185-1.42h3.327c1.207,0,2.184,0.205,2.184,1.42L30.288,54.397z" fill="url(#SVGID_25_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="14.8921" x2="37.9844" y1="56.0747" y2="56.0747">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.3818" style="stop-color:#999999"/>
- <stop offset="0.7515" style="stop-color:#1A1A1A"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#999999"/>
+<stop offset="0.7515" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<path d="M37.937,58c0.032-0.767,0.048-0.92,0.048-1.078v-0.506c0-1.251-1.026-2.267-2.292-2.267H17.186 c-1.266,0-2.293,1.016-2.293,2.267v0.506c0,0.158,0.019,0.312,0.049,1.078H37.937z" fill="url(#SVGID_26_)"/>
-<path d="M15.032,55.661h22.811c-0.101-0.282-0.255-0.537-0.453-0.755H15.488 C15.29,55.124,15.135,55.379,15.032,55.661z" fill="#FFFFFF" opacity="0.2"/>
-<path d="M14.904,57.243c0.009,0.154,0.02,0.381,0.035,0.757h22.997c0.017-0.376,0.028-0.603,0.037-0.757H14.904z" opacity="0.35"/>
-<path d="M15.488,54.906H37.39c-0.42-0.462-1.021-0.757-1.698-0.757H17.186 C16.509,54.149,15.908,54.444,15.488,54.906z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M30,49.086v-0.304c0-1.215-0.906-1.42-2.022-1.42h-3.079c-1.115,0-2.02,0.205-2.02,1.42v0.304 c0.391,0.721,1.147,1.216,2.02,1.216h3.079C28.854,50.302,29.606,49.807,30,49.086z" opacity="0.1"/>
-<path d="M29.518,47.992v-0.294c-0.371-0.265-0.918-0.336-1.54-0.336h-3.079c-0.62,0-1.169,0.071-1.539,0.336v0.294 c0,0.85,0.69,1.54,1.539,1.54h3.079C28.827,49.532,29.518,48.842,29.518,47.992z" opacity="0.2"/>
-<path d="M28.64,40.762l1.648-1.649V25.67c0-0.298-0.062-0.58-0.164-0.84l-1.305-1.307 c-0.261-0.104-0.542-0.163-0.841-0.163h-3.079c-1.273,0-2.309,1.036-2.309,2.31v18.275C24.807,43.534,26.924,42.476,28.64,40.762z" opacity="0.1"/>
-<path d="M28.64,40.762l0.878-0.879V25.67c0-0.85-0.691-1.54-1.54-1.54h-3.079c-0.849,0-1.539,0.69-1.539,1.54v18.097 C25.293,43.269,27.125,42.275,28.64,40.762z" opacity="0.2"/>
+<path d="M15.032,55.661h22.811c-0.101-0.282-0.255-0.537-0.453-0.755H15.488 C15.29,55.124,15.135,55.379,15.032,55.661z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M14.904,57.243c0.009,0.154,0.02,0.381,0.035,0.757h22.997c0.017-0.376,0.028-0.603,0.037-0.757H14.904z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M15.488,54.906H37.39c-0.42-0.462-1.021-0.757-1.698-0.757H17.186 C16.509,54.149,15.908,54.444,15.488,54.906z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M30,49.086v-0.304c0-1.215-0.906-1.42-2.022-1.42h-3.079c-1.115,0-2.02,0.205-2.02,1.42v0.304 c0.391,0.721,1.147,1.216,2.02,1.216h3.079C28.854,50.302,29.606,49.807,30,49.086z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M29.518,47.992v-0.294c-0.371-0.265-0.918-0.336-1.54-0.336h-3.079c-0.62,0-1.169,0.071-1.539,0.336v0.294 c0,0.85,0.69,1.54,1.539,1.54h3.079C28.827,49.532,29.518,48.842,29.518,47.992z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M28.64,40.762l1.648-1.649V25.67c0-0.298-0.062-0.58-0.164-0.84l-1.305-1.307 c-0.261-0.104-0.542-0.163-0.841-0.163h-3.079c-1.273,0-2.309,1.036-2.309,2.31v18.275C24.807,43.534,26.924,42.476,28.64,40.762z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M28.64,40.762l0.878-0.879V25.67c0-0.85-0.691-1.54-1.54-1.54h-3.079c-0.849,0-1.539,0.69-1.539,1.54v18.097 C25.293,43.269,27.125,42.275,28.64,40.762z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="26.4395" x2="26.4395" y1="25.1289" y2="48.4234">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.3818" style="stop-color:#7A7A7A"/>
- <stop offset="0.7091" style="stop-color:#1A1A1A"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#7A7A7A"/>
+<stop offset="0.7091" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<path d="M28.748,47.992c0,0.426-0.344,0.77-0.77,0.77h-3.079c-0.425,0-0.768-0.344-0.768-0.77V25.67 c0-0.425,0.343-0.771,0.768-0.771h3.079c0.426,0,0.77,0.346,0.77,0.771V47.992z" fill="url(#SVGID_27_)"/>
-<path d="M26.439,29.237c-2.124,0-3.849-1.727-3.849-3.848c0-2.123,1.725-3.85,3.849-3.85 c2.121,0,3.848,1.727,3.848,3.85C30.288,27.511,28.56,29.237,26.439,29.237L26.439,29.237z" opacity="0.35"/>
+<path d="M26.439,29.237c-2.124,0-3.849-1.727-3.849-3.848c0-2.123,1.725-3.85,3.849-3.85 c2.121,0,3.848,1.727,3.848,3.85C30.288,27.511,28.56,29.237,26.439,29.237L26.439,29.237z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="26.439" x2="26.439" y1="22.3696" y2="28.3803">
- <stop offset="0" style="stop-color:#9D9B9C"/>
- <stop offset="0.1515" style="stop-color:#D6D4D4"/>
- <stop offset="0.703" style="stop-color:#555557"/>
- <stop offset="0.9879" style="stop-color:#575757"/>
+<stop offset="0" style="stop-color:#9D9B9C"/>
+<stop offset="0.1515" style="stop-color:#D6D4D4"/>
+<stop offset="0.703" style="stop-color:#555557"/>
+<stop offset="0.9879" style="stop-color:#575757"/>
+<stop offset="1" style="stop-color:#575757"/>
</linearGradient>
<circle cx="26.439" cy="25.39" fill="url(#SVGID_28_)" r="3.079"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="26.4385" x2="26.4385" y1="23.8794" y2="26.8862">
- <stop offset="0" style="stop-color:#646464"/>
- <stop offset="1" style="stop-color:#EBEBEB"/>
+<stop offset="0" style="stop-color:#646464"/>
+<stop offset="1" style="stop-color:#EBEBEB"/>
</linearGradient>
<path d="M26.439,26.93c-0.851,0-1.541-0.691-1.541-1.54c0-0.85,0.69-1.54,1.541-1.54 c0.847,0,1.539,0.69,1.539,1.54C27.978,26.238,27.287,26.93,26.439,26.93L26.439,26.93z" fill="url(#SVGID_29_)"/>
-<rect height="0.769" opacity="0.2" width="7.697" x="22.59" y="53.381"/>
-<rect height="0.77" opacity="0.1" width="7.697" x="22.59" y="52.611"/>
+<rect fill-opacity="0.2" height="0.769" stroke-opacity="0.2" width="7.697" x="22.59" y="53.381"/>
+<rect fill-opacity="0.1" height="0.77" stroke-opacity="0.1" width="7.697" x="22.59" y="52.611"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(2 0 0 2 0 0)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<rect height="33.866" opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
+<rect fill-opacity="0.35" height="33.866" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="260" x2="284" y1="655.9761" y2="655.9761">
- <stop offset="0" style="stop-color:#FF4D00"/>
- <stop offset="0.8424" style="stop-color:#CC1414"/>
- <stop offset="1" style="stop-color:#FF4D00"/>
+<stop offset="0" style="stop-color:#FF4D00"/>
+<stop offset="0.8424" style="stop-color:#CC1414"/>
+<stop offset="1" style="stop-color:#FF4D00"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="25.809,26.431 3,4.177 4.191,2.956 27,25.21 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_pager.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_pager.svg Thu May 27 13:10:59 2010 +0300
@@ -1,111 +1,113 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="0,6.354 0,23.646 0,30 30,30 30,23.646 30,6.354 30,0 0,0 "/>
-<path d="M2.647,26.295C1.188,26.295,0,25.106,0,23.646V6.354c0-1.46,1.188-2.648,2.647-2.648h24.706 C28.813,3.705,30,4.894,30,6.354v17.293c0,1.46-1.188,2.648-2.646,2.648H2.647z" opacity="0.35"/>
+<path d="M2.647,26.295C1.188,26.295,0,25.106,0,23.646V6.354c0-1.46,1.188-2.648,2.647-2.648h24.706 C28.813,3.705,30,4.894,30,6.354v17.293c0,1.46-1.188,2.648-2.646,2.648H2.647z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="4.4658" y2="25.0557">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M29,23.646c0,0.91-0.738,1.648-1.646,1.648H2.647C1.738,25.295,1,24.557,1,23.646V6.354 c0-0.91,0.738-1.648,1.647-1.648h24.706C28.262,4.705,29,5.443,29,6.354V23.646z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="4.4658" y2="25.0557">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M27.354,4.705H2.647C1.738,4.705,1,5.443,1,6.354v17.293c0,0.91,0.738,1.648,1.647,1.648 c-0.681,0-1.235-0.554-1.235-1.236v-0.412V6.764v-0.41c0-0.682,0.555-1.235,1.235-1.235h24.706c0.683,0,1.234,0.554,1.234,1.235 v0.41v16.883v0.412c0,0.683-0.552,1.236-1.234,1.236c0.908,0,1.646-0.738,1.646-1.648V6.354C29,5.443,28.262,4.705,27.354,4.705z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.002" x2="15.002" y1="7.4736" y2="16.6938">
- <stop offset="0" style="stop-color:#686C6E"/>
- <stop offset="1" style="stop-color:#E4EEF2"/>
+<stop offset="0" style="stop-color:#686C6E"/>
+<stop offset="1" style="stop-color:#E4EEF2"/>
</linearGradient>
-<path d="M4.032,16.634c-0.455,0-0.825-0.374-0.825-0.832V8.288c0-0.459,0.37-0.834,0.825-0.834 h21.938c0.455,0,0.826,0.375,0.826,0.834v7.514c0,0.458-0.371,0.832-0.826,0.832H4.032z" fill="url(#SVGID_3__)" opacity="0.4"/>
+<path d="M4.032,16.634c-0.455,0-0.825-0.374-0.825-0.832V8.288c0-0.459,0.37-0.834,0.825-0.834 h21.938c0.455,0,0.826,0.375,0.826,0.834v7.514c0,0.458-0.371,0.832-0.826,0.832H4.032z" fill="url(#SVGID_3__)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="14.9995" x2="14.9995" y1="7.9063" y2="16.3741">
- <stop offset="0" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#2E2E2E"/>
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
<path d="M26.379,15.802c0,0.229-0.184,0.415-0.413,0.415H4.032c-0.229,0-0.412-0.186-0.412-0.415V8.288 c0-0.231,0.184-0.416,0.412-0.416h21.934c0.229,0,0.413,0.185,0.413,0.416V15.802z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.999" x2="14.999" y1="-5.395" y2="21.0669">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#30A4D5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#30A4D5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="7.514" width="21.934" x="4.032" y="8.288"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.999" x2="14.999" y1="0.04" y2="17.8522">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#4FADD5"/>
- <stop offset="0.8727" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#1C65C3"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#4FADD5"/>
+<stop offset="0.8727" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1C65C3"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="4.032,11.536 25.966,10.833 25.966,8.278 4.032,8.278 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="17.6641" x2="17.6641" y1="18.374" y2="21.7321">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.734,21.702c-0.453,0-0.822-0.371-0.822-0.826V19.23 c0-0.454,0.369-0.824,0.822-0.824h5.856c0.455,0,0.825,0.37,0.825,0.824v1.646c0,0.455-0.37,0.826-0.825,0.826H14.734z" fill="url(#SVGID_7_)" opacity="0.8"/>
-<path d="M20.591,21.702h-5.856c-0.453,0-0.822-0.371-0.822-0.826v0.412 c0,0.454,0.369,0.823,0.822,0.823h5.856c0.455,0,0.825-0.369,0.825-0.823v-0.412C21.416,21.331,21.046,21.702,20.591,21.702z" fill="#231F20" opacity="0.4"/>
+<path d="M14.734,21.702c-0.453,0-0.822-0.371-0.822-0.826V19.23 c0-0.454,0.369-0.824,0.822-0.824h5.856c0.455,0,0.825,0.37,0.825,0.824v1.646c0,0.455-0.37,0.826-0.825,0.826H14.734z" fill="url(#SVGID_7_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M20.591,21.702h-5.856c-0.453,0-0.822-0.371-0.822-0.826v0.412 c0,0.454,0.369,0.823,0.822,0.823h5.856c0.455,0,0.825-0.369,0.825-0.823v-0.412C21.416,21.331,21.046,21.702,20.591,21.702z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="17.6631" x2="17.6631" y1="18.7876" y2="21.3508">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M21.004,20.876c0,0.229-0.184,0.412-0.413,0.412h-5.856c-0.229,0-0.412-0.184-0.412-0.412V19.23 c0-0.228,0.184-0.412,0.412-0.412h5.856c0.229,0,0.413,0.185,0.413,0.412V20.876z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="7.77" x2="7.77" y1="18.374" y2="21.7321">
- <stop offset="0" style="stop-color:#646263"/>
- <stop offset="0.2" style="stop-color:#4D4D4D"/>
- <stop offset="0.7212" style="stop-color:#242424"/>
- <stop offset="1" style="stop-color:#373737"/>
+<stop offset="0" style="stop-color:#646263"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M4.842,21.702c-0.452,0-0.823-0.371-0.823-0.826V19.23 c0-0.454,0.371-0.824,0.823-0.824h5.857c0.455,0,0.822,0.37,0.822,0.824v1.646c0,0.455-0.367,0.826-0.822,0.826H4.842z" fill="url(#SVGID_9_)" opacity="0.8"/>
-<path d="M10.699,21.702H4.842c-0.452,0-0.823-0.371-0.823-0.826v0.412 c0,0.454,0.371,0.823,0.823,0.823h5.857c0.455,0,0.822-0.369,0.822-0.823v-0.412C11.521,21.331,11.154,21.702,10.699,21.702z" fill="#231F20" opacity="0.4"/>
+<path d="M4.842,21.702c-0.452,0-0.823-0.371-0.823-0.826V19.23 c0-0.454,0.371-0.824,0.823-0.824h5.857c0.455,0,0.822,0.37,0.822,0.824v1.646c0,0.455-0.367,0.826-0.822,0.826H4.842z" fill="url(#SVGID_9_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M10.699,21.702H4.842c-0.452,0-0.823-0.371-0.823-0.826v0.412 c0,0.454,0.371,0.823,0.823,0.823h5.857c0.455,0,0.822-0.369,0.822-0.823v-0.412C11.521,21.331,11.154,21.702,10.699,21.702z" fill="#231F20" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="7.772" x2="7.772" y1="18.7876" y2="21.3508">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.1333" style="stop-color:#838688"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.6606" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.1333" style="stop-color:#838688"/>
+<stop offset="0.2606" style="stop-color:#7B7E80"/>
+<stop offset="0.6606" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M11.112,20.876c0,0.229-0.185,0.412-0.413,0.412H4.842c-0.227,0-0.41-0.184-0.41-0.412V19.23 c0-0.228,0.184-0.412,0.41-0.412h5.857c0.229,0,0.413,0.185,0.413,0.412V20.876z" fill="url(#SVGID_10_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_service.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_service.svg Thu May 27 13:10:59 2010 +0300
@@ -1,75 +1,73 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" enable-background="new " opacity="0.35"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
-<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" enable-background="new " opacity="0.3"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" enable-background="new " fill="url(#SVGID_2__)" opacity="0.3"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_voip.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_voip.svg Thu May 27 13:10:59 2010 +0300
@@ -1,105 +1,112 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2162.3384" x2="-2162.3384" y1="3603.7246" y2="3654.8755">
- <stop offset="0" style="stop-color:#004E8C"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#004E8C"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<circle cx="31.662" cy="27.76" fill="url(#SVGID_1_)" r="25.76"/>
<radialGradient cx="-2106.918" cy="3745.7734" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="32.2687">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<path d="M56.761,27.759c0,13.864-11.234,25.097-25.099,25.097c-13.863,0-25.101-11.232-25.101-25.097 c0-13.859,11.239-25.099,25.101-25.099C45.53,2.66,56.761,13.899,56.761,27.759z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2162.3384" x2="-2162.3384" y1="3654.5078" y2="3603.9641">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#88D6EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#88D6EB"/>
</linearGradient>
-<path d="M31.663,2.66c-13.863,0-25.101,11.239-25.101,25.099 c0,13.864,11.239,25.097,25.101,25.097c13.864,0,25.099-11.232,25.099-25.097C56.761,13.899,45.53,2.66,31.663,2.66z M31.663,50.659 c-13.033,0-23.638-10.598-23.638-23.63c0-13.034,10.603-23.637,23.638-23.637c13.033,0,23.634,10.603,23.634,23.637 C55.296,40.06,44.696,50.659,31.663,50.659z" enable-background="new " fill="url(#SVGID_3_)" opacity="0.3"/>
+<path d="M31.663,2.66c-13.863,0-25.101,11.239-25.101,25.099 c0,13.864,11.239,25.097,25.101,25.097c13.864,0,25.099-11.232,25.099-25.097C56.761,13.899,45.53,2.66,31.663,2.66z M31.663,50.659 c-13.033,0-23.638-10.598-23.638-23.63c0-13.034,10.603-23.637,23.638-23.637c13.033,0,23.634,10.603,23.634,23.637 C55.296,40.06,44.696,50.659,31.663,50.659z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2187.0283" x2="-2183.0366" y1="3625.7734" y2="3625.7734">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M8.918,27.351c-0.268-0.357-0.871-0.357-1.137-0.357 c-0.525,0-0.804,0.376-0.809,0.742v0.023l0.001,0.038c-0.001,0.646,0.035,1.37,0.113,2.251c0.016,0.164,0.036,0.331,0.057,0.498 l0.028,0.241c0.067,0.521,0.145,1.033,0.235,1.531l0.041,0.218c0.038,0.198,0.075,0.391,0.117,0.583 c0.107,0.488,0.238,0.993,0.399,1.552c0.023,0.08,0.044,0.159,0.065,0.239c0.036,0.132,0.07,0.261,0.11,0.388l0.006,0.017 l0.014,0.04c-0.003-0.012-0.009-0.028-0.012-0.045l1.44-0.097c0.022-0.227,0.028-0.46,0.022-0.691 c-0.012-0.364-0.025-0.813-0.129-1.191l1.337-1.796l0.145-0.194v-0.244v-1.4v-0.303l-0.215-0.215L8.918,27.351z" enable-background="new " fill="url(#SVGID_4_)" opacity="0.3"/>
+<path d="M8.918,27.351c-0.268-0.357-0.871-0.357-1.137-0.357 c-0.525,0-0.804,0.376-0.809,0.742v0.023l0.001,0.038c-0.001,0.646,0.035,1.37,0.113,2.251c0.016,0.164,0.036,0.331,0.057,0.498 l0.028,0.241c0.067,0.521,0.145,1.033,0.235,1.531l0.041,0.218c0.038,0.198,0.075,0.391,0.117,0.583 c0.107,0.488,0.238,0.993,0.399,1.552c0.023,0.08,0.044,0.159,0.065,0.239c0.036,0.132,0.07,0.261,0.11,0.388l0.006,0.017 l0.014,0.04c-0.003-0.012-0.009-0.028-0.012-0.045l1.44-0.097c0.022-0.227,0.028-0.46,0.022-0.691 c-0.012-0.364-0.025-0.813-0.129-1.191l1.337-1.796l0.145-0.194v-0.244v-1.4v-0.303l-0.215-0.215L8.918,27.351z" fill="url(#SVGID_4_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2179.3354" x2="-2137.5874" y1="3633.083" y2="3633.083">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M56.406,22.84c-0.019-0.094-0.034-0.161-0.052-0.229 c-0.013-0.051-0.024-0.101-0.034-0.15c-0.128-0.595-0.285-1.208-0.472-1.832l-0.02-0.071c-0.041-0.14-0.082-0.281-0.127-0.42 c-0.227-0.706-0.473-1.38-0.732-2.003c-0.031-0.078-0.066-0.149-0.1-0.226l-0.055-0.119c-0.246-0.57-0.523-1.139-0.813-1.688 l-0.036-0.071c-0.057-0.107-0.111-0.216-0.17-0.321c-0.354-0.642-0.728-1.251-1.103-1.819c-0.04-0.06-0.085-0.122-0.13-0.184 c-0.027-0.038-0.054-0.075-0.078-0.111c-0.363-0.525-0.743-1.037-1.138-1.525l-0.076-0.099c-0.053-0.065-0.106-0.133-0.161-0.199 c-0.459-0.55-0.941-1.08-1.441-1.583c-0.068-0.067-0.139-0.138-0.211-0.209l-0.061-0.057c-0.45-0.44-0.93-0.878-1.422-1.289 l-0.097-0.083c-0.05-0.046-0.101-0.087-0.15-0.128c-0.536-0.441-1.118-0.875-1.725-1.291c-0.075-0.052-0.153-0.101-0.229-0.15 l-0.092-0.061c-0.546-0.362-1.115-0.709-1.688-1.023l-0.085-0.052c-0.049-0.028-0.096-0.054-0.144-0.082 c-0.636-0.341-1.3-0.66-1.976-0.951l-0.17-0.068l-0.186-0.077c-0.177-0.073-0.355-0.136-0.531-0.197 c-0.093-0.03-0.182-0.063-0.275-0.097l-0.339-0.127l-0.308,0.195c-0.203,0.129-1.01,0.589-1.484,0.859 c-0.526-0.07-1.801-0.23-3.089-0.355c0.396-0.036,0.946-0.082,1.719-0.133l0.108-1.446l-0.059-0.017 c-0.047-0.012-0.092-0.024-0.139-0.035l-0.111-0.021l-0.088-0.017c-0.789-0.159-1.529-0.273-2.264-0.351L34.57,2.925l-0.103-0.011 c-0.84-0.083-1.693-0.127-2.539-0.127c-0.744,0-1.517,0.04-2.361,0.122c-0.13,0.013-0.256,0.025-0.385,0.038 C28.35,3.041,27.62,3.151,26.93,3.292l-0.024,0.002l-0.017,0.003c-0.727,0.149-1.457,0.338-2.232,0.573 c-0.068,0.022-0.139,0.044-0.207,0.067l-0.156,0.052c-0.658,0.212-1.303,0.444-1.92,0.7c-0.051,0.021-0.086,0.032-0.121,0.046 l-0.094,0.038c-0.678,0.288-1.354,0.615-2.028,0.977c-0.073,0.037-0.142,0.079-0.212,0.118l-0.084,0.054 c-0.189,0.103-0.381,0.223-0.569,0.34l-0.244,0.153l-1.345,0.821l1.494,0.499c0.223,0.076,0.463,0.111,0.711,0.111 c0.805,0,1.582-0.395,2.209-0.713c0.252-0.125,0.627-0.317,0.779-0.346c0.182,0.054,0.369,0.082,0.55,0.082 c0.685,0,1.244-0.368,1.739-0.694l0.135-0.087c0.16-0.052,0.434-0.154,0.98-0.359c0.561-0.209,1.58-0.593,1.854-0.658 c0.527-0.005,1.16-0.079,1.609-0.359c0.422,0.07,1.174,0.188,1.945,0.289c-0.057,0.034-0.112,0.07-0.158,0.115 c-0.251,0.232-1.605,0.642-2.02,0.695c-0.779,0.098-1.092,0.49-1.217,0.801c-0.163,0.403-0.064,0.808,0.094,1.139 c-0.295,0.194-0.656,0.41-0.966,0.575c0,0,0.003-0.015,0.005-0.023c0.111-0.622,0.191-1.071-0.11-1.431 c-0.153-0.184-0.38-0.289-0.624-0.289c-0.354,0-0.631,0.22-0.854,0.436c-0.626,0.604-1.004,1.356-1.145,1.641l-0.026,0.052 l-0.023,0.042c-0.271,0.519-0.382,0.887-0.231,2.028c-0.064,0.05-0.264,0.124-0.534,0.124c-0.036,0-0.07-0.001-0.095-0.004 c-0.176-0.189-0.42-0.298-0.693-0.298l0,0c-0.63,0-1.488,0.709-2.551,2.107l-0.342,0.451l0.347,0.446l0.323,0.411 c-5.066,3.918-5.104,4.14-5.157,4.468c-0.009,0.03-0.054,0.165-0.115,0.352c-0.754,2.348-1.174,4.104-0.765,5.044 c0.942,2.179,2.006,4.212,3.383,4.325c0.122,0.01,0.256,0.015,0.398,0.015c1.265,0,3.311-0.382,4.295-0.584 c0.182,0.341,0.402,0.738,0.527,0.956l0.217,0.39l0.445-0.015c0.004,0,0.239-0.009,0.539-0.009c0.342,0,0.573,0.011,0.723,0.021 c0.536,1.571,1.563,5.189,1.373,5.943l-0.004,0.002c-1.732,2.597,0.368,5.982,1.377,7.607c0.078,0.129,0.15,0.244,0.213,0.345 c0.389,1.108,0.861,1.841,1.856,1.841c0.075,0,0.149-0.004,0.227-0.01c0.058-0.002,0.115-0.004,0.175-0.004 c0.109,0,0.189,0.012,0.271,0.042l0.09,0.032l0.097,0.008c0.187,0.016,0.368,0.042,0.544,0.068c0.309,0.042,0.625,0.084,0.947,0.084 c0.868,0,1.555-0.327,2.148-1.028c0.023-0.003,0.044-0.005,0.067-0.008c0.622-0.086,0.854-0.398,0.935-0.678 c0.045-0.047,0.107-0.104,0.157-0.15c0.245-0.226,0.538-0.493,0.739-0.811c0.091-0.054,0.193-0.114,0.311-0.183 c0.2-0.124,0.428-0.26,0.605-0.352c0.157-0.05,0.297-0.142,0.401-0.271c0.251-0.31,0.2-0.659,0.157-0.941 c-0.041-0.291-0.084-0.592,0.072-0.911c0.889-0.428,2.466-1.479,2.721-1.652l-0.002,0.021c-0.016,0.141-0.057,0.517-0.119,0.757 c-0.336,0.335-0.617,0.845-0.704,1.018l-0.06,0.113l-0.018,0.125c-0.023,0.164-0.113,1.021,0.367,1.575 c0.242,0.277,0.59,0.432,0.978,0.432c0.124,0,0.253-0.016,0.384-0.047c1.234-0.279,3.426-3.249,3.604-4.888 c0.086-0.789-0.223-1.409-0.846-1.703l-0.465-0.221l-0.367,0.364l-1.352,1.353c-0.457,0.043-0.814,0.179-1.057,0.393 c0.014-0.578-0.043-1.17-0.104-1.745c-0.186-1.74-0.222-2.848,0.846-3.602l0.054-0.04l0.046-0.047 c0.387-0.392,0.813-0.734,1.264-1.099c1.059-0.85,2.152-1.729,2.804-3.315l0.027-0.067c0.209-0.543,0.524-1.361,0.097-1.984 c-0.107-0.155-0.33-0.395-0.75-0.478c0.556-0.225,0.98-0.399,1.023-0.417l0.129-0.052l0.1-0.097l2.281-2.19l0.334-0.321 l-0.146-0.441c-0.021-0.057-0.144-0.401-0.494-0.897c0.666,0.09,1.236,0.251,1.424,0.393c0.069,0.147,0.207,0.477,0.352,0.822 c2.512,5.918,2.863,6.224,3.518,6.233c0.025,0,0.045,0.002,0.061,0.005c0.055,0.002,0.101,0.004,0.145,0.004 c0.371,0,0.584-0.188,0.677-0.303c0.273-0.328,0.196-0.73,0.169-0.88l-0.01-0.052c-0.031-0.354-0.012-1.946,0.039-3.254 c0.004,0.002,0.004,0.006,0.008,0.011l1.346-0.534L56.406,22.84z M36.622,15.6c-0.104,0.004-0.217,0.009-0.338,0.014 c-0.388,0.02-0.828,0.038-1.268,0.038c-1.147,0-1.409-0.142-1.438-0.157c-0.135-0.1-0.275-0.174-0.42-0.226 c0.26-0.059,0.557-0.259,0.863-0.853c0.303,0.586,0.712,1.104,1.342,1.104c0.171,0,0.332-0.043,0.488-0.122 C36.063,15.401,36.413,15.522,36.622,15.6z M36.17,12.397c-0.086,0-0.156-0.004-0.211-0.009c0.059-0.153,0.129-0.243,0.186-0.293 c0.071,0.111,0.169,0.209,0.277,0.294C36.334,12.395,36.252,12.397,36.17,12.397z M31.6,13.933c0.394,0.771,0.686,1.103,0.916,1.246 c-0.57,0.047-1.001,0.409-1.354,0.752c-0.248-0.081-0.678-0.343-0.808-0.526c-0.075-0.106-0.165-0.199-0.265-0.279 C30.713,14.948,31.262,14.369,31.6,13.933z M29.428,13.366l-0.817-0.039l-2.737-0.134c0.332-0.275,0.65-0.534,0.837-0.686 c0.05-0.018,0.246-0.073,0.728-0.073c0.291,0,0.569,0.021,0.746,0.035L29.428,13.366z" enable-background="new " fill="url(#SVGID_5_)" opacity="0.3"/>
+<path d="M56.406,22.84c-0.019-0.094-0.034-0.161-0.052-0.229 c-0.013-0.051-0.024-0.101-0.034-0.15c-0.128-0.595-0.285-1.208-0.472-1.832l-0.02-0.071c-0.041-0.14-0.082-0.281-0.127-0.42 c-0.227-0.706-0.473-1.38-0.732-2.003c-0.031-0.078-0.066-0.149-0.1-0.226l-0.055-0.119c-0.246-0.57-0.523-1.139-0.813-1.688 l-0.036-0.071c-0.057-0.107-0.111-0.216-0.17-0.321c-0.354-0.642-0.728-1.251-1.103-1.819c-0.04-0.06-0.085-0.122-0.13-0.184 c-0.027-0.038-0.054-0.075-0.078-0.111c-0.363-0.525-0.743-1.037-1.138-1.525l-0.076-0.099c-0.053-0.065-0.106-0.133-0.161-0.199 c-0.459-0.55-0.941-1.08-1.441-1.583c-0.068-0.067-0.139-0.138-0.211-0.209l-0.061-0.057c-0.45-0.44-0.93-0.878-1.422-1.289 l-0.097-0.083c-0.05-0.046-0.101-0.087-0.15-0.128c-0.536-0.441-1.118-0.875-1.725-1.291c-0.075-0.052-0.153-0.101-0.229-0.15 l-0.092-0.061c-0.546-0.362-1.115-0.709-1.688-1.023l-0.085-0.052c-0.049-0.028-0.096-0.054-0.144-0.082 c-0.636-0.341-1.3-0.66-1.976-0.951l-0.17-0.068l-0.186-0.077c-0.177-0.073-0.355-0.136-0.531-0.197 c-0.093-0.03-0.182-0.063-0.275-0.097l-0.339-0.127l-0.308,0.195c-0.203,0.129-1.01,0.589-1.484,0.859 c-0.526-0.07-1.801-0.23-3.089-0.355c0.396-0.036,0.946-0.082,1.719-0.133l0.108-1.446l-0.059-0.017 c-0.047-0.012-0.092-0.024-0.139-0.035l-0.111-0.021l-0.088-0.017c-0.789-0.159-1.529-0.273-2.264-0.351L34.57,2.925l-0.103-0.011 c-0.84-0.083-1.693-0.127-2.539-0.127c-0.744,0-1.517,0.04-2.361,0.122c-0.13,0.013-0.256,0.025-0.385,0.038 C28.35,3.041,27.62,3.151,26.93,3.292l-0.024,0.002l-0.017,0.003c-0.727,0.149-1.457,0.338-2.232,0.573 c-0.068,0.022-0.139,0.044-0.207,0.067l-0.156,0.052c-0.658,0.212-1.303,0.444-1.92,0.7c-0.051,0.021-0.086,0.032-0.121,0.046 l-0.094,0.038c-0.678,0.288-1.354,0.615-2.028,0.977c-0.073,0.037-0.142,0.079-0.212,0.118l-0.084,0.054 c-0.189,0.103-0.381,0.223-0.569,0.34l-0.244,0.153l-1.345,0.821l1.494,0.499c0.223,0.076,0.463,0.111,0.711,0.111 c0.805,0,1.582-0.395,2.209-0.713c0.252-0.125,0.627-0.317,0.779-0.346c0.182,0.054,0.369,0.082,0.55,0.082 c0.685,0,1.244-0.368,1.739-0.694l0.135-0.087c0.16-0.052,0.434-0.154,0.98-0.359c0.561-0.209,1.58-0.593,1.854-0.658 c0.527-0.005,1.16-0.079,1.609-0.359c0.422,0.07,1.174,0.188,1.945,0.289c-0.057,0.034-0.112,0.07-0.158,0.115 c-0.251,0.232-1.605,0.642-2.02,0.695c-0.779,0.098-1.092,0.49-1.217,0.801c-0.163,0.403-0.064,0.808,0.094,1.139 c-0.295,0.194-0.656,0.41-0.966,0.575c0,0,0.003-0.015,0.005-0.023c0.111-0.622,0.191-1.071-0.11-1.431 c-0.153-0.184-0.38-0.289-0.624-0.289c-0.354,0-0.631,0.22-0.854,0.436c-0.626,0.604-1.004,1.356-1.145,1.641l-0.026,0.052 l-0.023,0.042c-0.271,0.519-0.382,0.887-0.231,2.028c-0.064,0.05-0.264,0.124-0.534,0.124c-0.036,0-0.07-0.001-0.095-0.004 c-0.176-0.189-0.42-0.298-0.693-0.298l0,0c-0.63,0-1.488,0.709-2.551,2.107l-0.342,0.451l0.347,0.446l0.323,0.411 c-5.066,3.918-5.104,4.14-5.157,4.468c-0.009,0.03-0.054,0.165-0.115,0.352c-0.754,2.348-1.174,4.104-0.765,5.044 c0.942,2.179,2.006,4.212,3.383,4.325c0.122,0.01,0.256,0.015,0.398,0.015c1.265,0,3.311-0.382,4.295-0.584 c0.182,0.341,0.402,0.738,0.527,0.956l0.217,0.39l0.445-0.015c0.004,0,0.239-0.009,0.539-0.009c0.342,0,0.573,0.011,0.723,0.021 c0.536,1.571,1.563,5.189,1.373,5.943l-0.004,0.002c-1.732,2.597,0.368,5.982,1.377,7.607c0.078,0.129,0.15,0.244,0.213,0.345 c0.389,1.108,0.861,1.841,1.856,1.841c0.075,0,0.149-0.004,0.227-0.01c0.058-0.002,0.115-0.004,0.175-0.004 c0.109,0,0.189,0.012,0.271,0.042l0.09,0.032l0.097,0.008c0.187,0.016,0.368,0.042,0.544,0.068c0.309,0.042,0.625,0.084,0.947,0.084 c0.868,0,1.555-0.327,2.148-1.028c0.023-0.003,0.044-0.005,0.067-0.008c0.622-0.086,0.854-0.398,0.935-0.678 c0.045-0.047,0.107-0.104,0.157-0.15c0.245-0.226,0.538-0.493,0.739-0.811c0.091-0.054,0.193-0.114,0.311-0.183 c0.2-0.124,0.428-0.26,0.605-0.352c0.157-0.05,0.297-0.142,0.401-0.271c0.251-0.31,0.2-0.659,0.157-0.941 c-0.041-0.291-0.084-0.592,0.072-0.911c0.889-0.428,2.466-1.479,2.721-1.652l-0.002,0.021c-0.016,0.141-0.057,0.517-0.119,0.757 c-0.336,0.335-0.617,0.845-0.704,1.018l-0.06,0.113l-0.018,0.125c-0.023,0.164-0.113,1.021,0.367,1.575 c0.242,0.277,0.59,0.432,0.978,0.432c0.124,0,0.253-0.016,0.384-0.047c1.234-0.279,3.426-3.249,3.604-4.888 c0.086-0.789-0.223-1.409-0.846-1.703l-0.465-0.221l-0.367,0.364l-1.352,1.353c-0.457,0.043-0.814,0.179-1.057,0.393 c0.014-0.578-0.043-1.17-0.104-1.745c-0.186-1.74-0.222-2.848,0.846-3.602l0.054-0.04l0.046-0.047 c0.387-0.392,0.813-0.734,1.264-1.099c1.059-0.85,2.152-1.729,2.804-3.315l0.027-0.067c0.209-0.543,0.524-1.361,0.097-1.984 c-0.107-0.155-0.33-0.395-0.75-0.478c0.556-0.225,0.98-0.399,1.023-0.417l0.129-0.052l0.1-0.097l2.281-2.19l0.334-0.321 l-0.146-0.441c-0.021-0.057-0.144-0.401-0.494-0.897c0.666,0.09,1.236,0.251,1.424,0.393c0.069,0.147,0.207,0.477,0.352,0.822 c2.512,5.918,2.863,6.224,3.518,6.233c0.025,0,0.045,0.002,0.061,0.005c0.055,0.002,0.101,0.004,0.145,0.004 c0.371,0,0.584-0.188,0.677-0.303c0.273-0.328,0.196-0.73,0.169-0.88l-0.01-0.052c-0.031-0.354-0.012-1.946,0.039-3.254 c0.004,0.002,0.004,0.006,0.008,0.011l1.346-0.534L56.406,22.84z M36.622,15.6c-0.104,0.004-0.217,0.009-0.338,0.014 c-0.388,0.02-0.828,0.038-1.268,0.038c-1.147,0-1.409-0.142-1.438-0.157c-0.135-0.1-0.275-0.174-0.42-0.226 c0.26-0.059,0.557-0.259,0.863-0.853c0.303,0.586,0.712,1.104,1.342,1.104c0.171,0,0.332-0.043,0.488-0.122 C36.063,15.401,36.413,15.522,36.622,15.6z M36.17,12.397c-0.086,0-0.156-0.004-0.211-0.009c0.059-0.153,0.129-0.243,0.186-0.293 c0.071,0.111,0.169,0.209,0.277,0.294C36.334,12.395,36.252,12.397,36.17,12.397z M31.6,13.933c0.394,0.771,0.686,1.103,0.916,1.246 c-0.57,0.047-1.001,0.409-1.354,0.752c-0.248-0.081-0.678-0.343-0.808-0.526c-0.075-0.106-0.165-0.199-0.265-0.279 C30.713,14.948,31.262,14.369,31.6,13.933z M29.428,13.366l-0.817-0.039l-2.737-0.134c0.332-0.275,0.65-0.534,0.837-0.686 c0.05-0.018,0.246-0.073,0.728-0.073c0.291,0,0.569,0.021,0.746,0.035L29.428,13.366z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="-2106.0845" cy="3754.9141" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="29.4754">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
<path d="M7.703,27.745L7.703,27.745c0,0.009,0.001,0.014,0.001,0.022c0,0.747,0.047,1.484,0.112,2.218 c0.021,0.236,0.056,0.476,0.083,0.718c0.065,0.5,0.14,0.998,0.228,1.488c0.051,0.258,0.097,0.521,0.152,0.774 c0.114,0.508,0.244,1.008,0.386,1.501c0.06,0.204,0.107,0.411,0.169,0.61c0.009,0.023,0.019,0.04,0.023,0.061 c0.02-0.189,0.026-0.39,0.02-0.594C8.83,33.103,8.6,33.288,8.6,33.288l1.629-2.19v-1.402l-1.91-1.908 C8.319,27.787,7.704,27.69,7.703,27.745z" fill="url(#SVGID_6_)"/>
<radialGradient cx="-2106.0928" cy="3754.918" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="29.4765">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
<path d="M23.042,6.076c0.706,0.233,1.282-0.24,1.939-0.66c0.231-0.049,2.81-1.076,3.089-1.076 s1.216-0.036,1.448-0.409c0,0,4.035,0.702,4.644,0.468c0.33-0.13,1.723-0.24,2.914-0.317c-0.066-0.014-0.127-0.036-0.195-0.05 c-0.064-0.015-0.125-0.023-0.191-0.035c-0.75-0.152-1.505-0.272-2.277-0.35c-0.008,0-0.012,0-0.02-0.003 c-0.81-0.082-1.633-0.124-2.467-0.124c-0.773,0-1.535,0.045-2.291,0.117c-0.133,0.015-0.266,0.025-0.397,0.043 c-0.731,0.079-1.456,0.186-2.165,0.328c-0.013,0.005-0.025,0.005-0.037,0.008c-0.736,0.152-1.459,0.34-2.168,0.559 c-0.121,0.035-0.238,0.077-0.362,0.115c-0.626,0.202-1.248,0.427-1.856,0.678c-0.071,0.031-0.145,0.057-0.215,0.087 c-0.67,0.286-1.322,0.602-1.96,0.941c-0.097,0.053-0.188,0.108-0.282,0.163c-0.271,0.149-0.527,0.32-0.793,0.481 C20.713,7.479,22.349,5.842,23.042,6.076z" fill="url(#SVGID_7_)"/>
<radialGradient cx="-2106.0928" cy="3754.9209" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="29.4743">
- <stop offset="0.3152" style="stop-color:#B2F56E"/>
- <stop offset="0.7273" style="stop-color:#5CBF1B"/>
- <stop offset="1" style="stop-color:#227A00"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.3152" style="stop-color:#B2F56E"/>
+<stop offset="0.7273" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
<path d="M55.685,22.962c-0.026-0.122-0.06-0.237-0.083-0.356c-0.127-0.601-0.28-1.19-0.455-1.773 c-0.045-0.154-0.092-0.316-0.143-0.474c-0.211-0.659-0.445-1.31-0.709-1.941c-0.047-0.112-0.1-0.223-0.15-0.331 c-0.242-0.56-0.504-1.104-0.789-1.639c-0.066-0.128-0.131-0.259-0.199-0.383c-0.336-0.604-0.691-1.194-1.074-1.768 c-0.064-0.1-0.137-0.192-0.203-0.292c-0.35-0.507-0.717-0.997-1.102-1.477c-0.078-0.094-0.152-0.192-0.233-0.287 c-0.442-0.532-0.909-1.044-1.396-1.534c-0.082-0.085-0.172-0.17-0.259-0.252c-0.444-0.437-0.907-0.857-1.387-1.258 c-0.079-0.069-0.157-0.139-0.237-0.206c-0.537-0.439-1.1-0.857-1.678-1.254c-0.1-0.069-0.203-0.135-0.307-0.2 c-0.531-0.354-1.079-0.686-1.643-0.998c-0.074-0.042-0.148-0.087-0.225-0.129c-0.625-0.336-1.262-0.642-1.916-0.924 c-0.117-0.049-0.232-0.096-0.348-0.145c-0.254-0.104-0.521-0.188-0.777-0.282c-0.306,0.195-1.729,1.001-1.729,1.001 s-6.18-0.846-6.602-0.426c-0.423,0.426-2.068,0.854-2.441,0.903c-0.376,0.049-1.151,0.247-0.221,1.396 c-0.139,0.141-2.795,1.99-2.795,1.15s0.594-2.348-0.24-1.54c-0.599,0.577-0.957,1.364-1.034,1.51 c-0.195,0.375-0.315,0.554-0.174,1.632c0.142,1.077-1.719,1.07-1.845,0.791c-0.332-0.746-2.174,1.676-2.174,1.676l0.776,0.996 c0,0-5.421,4.177-5.468,4.456c-0.048,0.282-1.399,3.907-0.93,4.984c0.468,1.079,1.652,3.797,2.771,3.888 c1.47,0.12,5.032-0.673,5.032-0.673c0.097,0.236,0.768,1.43,0.768,1.43s1.747-0.058,1.843,0.133 c0.033,0.063,2.104,6.157,1.422,6.965c-1.632,2.444,0.932,6.024,1.645,7.235c0.715,2.08,1.176,1.148,2.115,1.489 c1.155,0.101,2.129,0.528,3.111-0.735c0.285-0.235,0.77-0.049,0.77-0.376c0-0.183,0.84-0.718,1.057-1.223 c0.226-0.105,0.811-0.498,1.205-0.688c0.36-0.023-0.34-0.986,0.372-2.002c0.769-0.303,2.842-1.7,2.842-1.7 c0.095-2.05-1.01-4.581,1.05-6.033c1.326-1.355,3.068-2.126,3.912-4.183c0.232-0.61,0.756-1.854-0.744-1.48 c-1.41,0.354-2.981,0.435-2.236-0.187c-0.086-0.761-1.022-1.12-1.863-1.863c-0.436-1.028-1.118-2.86-1.118-2.86l-1.491-2.266 l0.186-0.468l1.773,2.609l1.771,2.142c0.65,2.143,1.209,2.33,1.209,2.33c0.98-0.345,3.311-1.305,3.311-1.305l2.281-2.19 c0,0-0.233-0.697-1.16-1.583l-0.703-0.418c-0.152,0.43-0.965,0.59-0.965,0.59l-1.973-2.361l0.733-0.147l0.565,1.076l1.356,0.47 c0,0,0.377-0.274,1.073,0.446c0.568-0.047,2.788,0.108,3.306,0.765c0.102,0.13,2.748,6.739,3.271,6.749 c0.229,0.002,0.395,0.091,0.32-0.309c-0.094-0.188,0-4.338,0.14-5.229c0.354-0.753,0.412-0.002,1.25,1.428 C55.696,23.033,55.692,22.997,55.685,22.962z M32.397,6.947c0.184-0.552,1.258-0.739,1.258-0.739s-0.308,0.568-0.236,0.859 c0.072,0.298-0.49,0.483-0.554,1.182c-0.061,0.694-1.343,0.287-1.447,0.043C31.311,8.049,32.208,7.497,32.397,6.947z M36.993,16.324 c-0.795,0-3.18,0.235-3.834-0.234c-0.658-0.467-1.168,0.05-1.639,0.52c-0.311,0.303-1.434-0.314-1.765-0.782 c-0.325-0.467-1.429-0.434-1.429-0.434l0.251-1.335l-3.171-0.154l-1.802,0.528l-1.694,0.05l0.95-0.454l1.181-0.278 c0,0,1.721-1.414,2.235-1.834c0.435-0.356,2.177-0.155,2.177-0.155l1.91,1.378c0,0-0.424,1.08-0.611,1.312 c0.701-0.047,1.525-1.321,1.525-1.321c-1.488-1.368-1.428-1.832-1.428-1.832l1.963,1.377l0.02,0.012c0,0,0.795,1.874,1.127,1.874 c0.326,0,0.744-1.289,0.744-1.289l0.559-0.142c0.248,0.593,0.715,1.929,1.272,1.614c0.323-0.177,0.854-0.015,1.462,0.218 c0.611,0.235,1.025-0.124,1.521,0.31C38.452,17.195,37.321,16.419,36.993,16.324z M38.239,13.102 c-0.818-0.311-3.587,0.704-2.969-0.957c0.33-0.896,1.179-1.083,1.469-0.487c0.076,0.247,0.998,0.625,0.99,0.108 c-0.006-0.518,0.928-0.791,1.063-0.406C38.293,11.716,40.737,13.58,38.239,13.102z M43.454,14.675 c-0.453-0.364,0.205-0.679-0.465-1.252c-0.959-0.822-1.708-1.176-0.401-1.841c1.612-0.202,0.263,0.515,0.529,0.943 c0.144,0.23,0.956,0.996,1.593,1.938C45.238,15.244,43.905,15.038,43.454,14.675z" fill="url(#SVGID_8_)"/>
<radialGradient cx="-2106.0933" cy="3754.916" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="29.4698">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
<path d="M44.104,36.019l-1.555,1.552c0,0-0.934,0-0.979,0.378c-0.021,0.159-0.075,0.853-0.23,1.209 c-0.311,0.217-0.684,0.931-0.684,0.931s-0.191,1.382,0.839,1.146C42.526,41.001,45.698,36.77,44.104,36.019z" fill="url(#SVGID_9_)"/>
-<path d="M32.02,52.439c1.859,0,3.664-0.209,5.408-0.589 c-0.047-0.059-0.086-0.12-0.137-0.174l-9.057-9.324c-0.522-0.537-1.239-0.847-1.97-0.847c-0.685,0-1.324,0.265-1.804,0.751 l-1.373,1.418l-0.568,0.573l-0.524,0.537c-1.987-1.927-3.765-4.139-5.697-7.06c-1.067-1.62-1.986-3.592-2.57-4.956l-0.213-0.51 c0,0-0.291-0.718-0.39-0.975l-0.032-0.082c-0.081-0.211-0.153-0.408-0.221-0.601l-0.031-0.083l2.215-0.77 c1.222-0.414,1.915-1.688,1.638-3.071l-0.009-0.045l-1.386-4.235l-2.734-8.158c-0.193-0.582-0.564-1.064-1.032-1.394 c-2.904,4.096-4.617,9.095-4.617,14.496C6.917,41.205,18.155,52.439,32.02,52.439z" enable-background="new " fill="#020202" opacity="0.1"/>
-<path d="M32.02,52.439c1.563,0,3.09-0.15,4.576-0.422l-8.889-9.153 c-0.386-0.396-0.912-0.624-1.442-0.624c-0.485,0-0.936,0.188-1.274,0.531l-1.381,1.42l-0.561,0.568l-0.51,0.523l0.004,0.005 l-0.523,0.535c-2.243-2.087-4.219-4.489-6.334-7.693c-1.095-1.661-2.036-3.678-2.634-5.074l-0.19-0.45l-0.029-0.071 c0,0-0.292-0.723-0.393-0.981l-0.035-0.087c-0.082-0.216-0.156-0.415-0.229-0.614c0,0-0.144-0.406-0.174-0.493l0.085-0.354 l2.731-0.951c0.866-0.294,1.355-1.214,1.161-2.187l-0.008-0.044l-1.373-4.188l-2.734-8.161c-0.144-0.43-0.412-0.781-0.752-1.024 c-2.648,3.98-4.198,8.756-4.198,13.893C6.917,41.205,18.155,52.439,32.02,52.439z" enable-background="new " fill="#020202" opacity="0.2"/>
+<path d="M32.02,52.439c1.859,0,3.664-0.209,5.408-0.589 c-0.047-0.059-0.086-0.12-0.137-0.174l-9.057-9.324c-0.522-0.537-1.239-0.847-1.97-0.847c-0.685,0-1.324,0.265-1.804,0.751 l-1.373,1.418l-0.568,0.573l-0.524,0.537c-1.987-1.927-3.765-4.139-5.697-7.06c-1.067-1.62-1.986-3.592-2.57-4.956l-0.213-0.51 c0,0-0.291-0.718-0.39-0.975l-0.032-0.082c-0.081-0.211-0.153-0.408-0.221-0.601l-0.031-0.083l2.215-0.77 c1.222-0.414,1.915-1.688,1.638-3.071l-0.009-0.045l-1.386-4.235l-2.734-8.158c-0.193-0.582-0.564-1.064-1.032-1.394 c-2.904,4.096-4.617,9.095-4.617,14.496C6.917,41.205,18.155,52.439,32.02,52.439z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M32.02,52.439c1.563,0,3.09-0.15,4.576-0.422l-8.889-9.153 c-0.386-0.396-0.912-0.624-1.442-0.624c-0.485,0-0.936,0.188-1.274,0.531l-1.381,1.42l-0.561,0.568l-0.51,0.523l0.004,0.005 l-0.523,0.535c-2.243-2.087-4.219-4.489-6.334-7.693c-1.095-1.661-2.036-3.678-2.634-5.074l-0.19-0.45l-0.029-0.071 c0,0-0.292-0.723-0.393-0.981l-0.035-0.087c-0.082-0.216-0.156-0.415-0.229-0.614c0,0-0.144-0.406-0.174-0.493l0.085-0.354 l2.731-0.951c0.866-0.294,1.355-1.214,1.161-2.187l-0.008-0.044l-1.373-4.188l-2.734-8.161c-0.144-0.43-0.412-0.781-0.752-1.024 c-2.648,3.98-4.198,8.756-4.198,13.893C6.917,41.205,18.155,52.439,32.02,52.439z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<radialGradient cx="-2983.5728" cy="4023.543" gradientTransform="matrix(0.9654 -0.0107 -0.0107 -0.9654 2968.4299 3872.1846)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="42.6078">
- <stop offset="0.8364" style="stop-color:#E9F0F2"/>
- <stop offset="0.8909" style="stop-color:#AAB1B5"/>
- <stop offset="0.9515" style="stop-color:#7C878C"/>
- <stop offset="1" style="stop-color:#838F94"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.8364" style="stop-color:#E9F0F2"/>
+<stop offset="0.8909" style="stop-color:#AAB1B5"/>
+<stop offset="0.9515" style="stop-color:#7C878C"/>
+<stop offset="1" style="stop-color:#838F94"/>
</radialGradient>
<path d="M22.051,46.847c-2.873-2.563-5.037-5.372-6.979-8.311c-1.865-2.832-3.556-7.079-4.079-8.93 l-7.54-10.621c-0.429,0.711-1.107,3.264-0.794,6.717c0.316,3.454,3.534,11.814,7.313,17.545c3.782,5.731,9.389,11.118,11.269,12.311 c2.959,1.878,6.523,2.493,7.608,2.439c0,0,1.002-0.118,2.367-0.597C31.803,57.196,22.051,46.847,22.051,46.847z" fill="url(#SVGID_10_)"/>
-<path d="M12.413,33.434c-0.661-1.542-1.174-2.953-1.418-3.827L3.658,19.27 c-0.077,0.108-0.12,0.173-0.12,0.173c-0.126,0.207-0.266,0.55-0.406,0.977c-0.142,0.722-0.214,1.466-0.202,2.229 C3.002,28.046,7.083,32.497,12.413,33.434z" enable-background="new " opacity="0.05"/>
-<path d="M12.099,32.685c-0.507-1.242-0.899-2.348-1.104-3.078l-7.363-10.37 C3.548,19.356,3.5,19.429,3.5,19.429c-0.118,0.195-0.25,0.522-0.383,0.925c-0.134,0.682-0.202,1.383-0.19,2.105 C2.997,27.635,6.961,31.889,12.099,32.685z" enable-background="new " opacity="0.05"/>
-<path d="M3.443,19.407c-0.105,0.177-0.226,0.472-0.348,0.839 c-0.123,0.617-0.183,1.256-0.172,1.911c0.064,4.82,3.858,8.755,8.702,9.323c-0.278-0.742-0.495-1.39-0.632-1.874L3.596,19.185 C3.496,19.325,3.443,19.407,3.443,19.407z" enable-background="new " opacity="0.1"/>
+<path d="M12.413,33.434c-0.661-1.542-1.174-2.953-1.418-3.827L3.658,19.27 c-0.077,0.108-0.12,0.173-0.12,0.173c-0.126,0.207-0.266,0.55-0.406,0.977c-0.142,0.722-0.214,1.466-0.202,2.229 C3.002,28.046,7.083,32.497,12.413,33.434z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M12.099,32.685c-0.507-1.242-0.899-2.348-1.104-3.078l-7.363-10.37 C3.548,19.356,3.5,19.429,3.5,19.429c-0.118,0.195-0.25,0.522-0.383,0.925c-0.134,0.682-0.202,1.383-0.19,2.105 C2.997,27.635,6.961,31.889,12.099,32.685z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M3.443,19.407c-0.105,0.177-0.226,0.472-0.348,0.839 c-0.123,0.617-0.183,1.256-0.172,1.911c0.064,4.82,3.858,8.755,8.702,9.323c-0.278-0.742-0.495-1.39-0.632-1.874L3.596,19.185 C3.496,19.325,3.443,19.407,3.443,19.407z" fill-opacity="0.1" stroke-opacity="0.1"/>
<radialGradient cx="-3022.0488" cy="4026.5146" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="14.7389">
- <stop offset="0.0424" style="stop-color:#D1D8D9"/>
- <stop offset="0.4" style="stop-color:#BBC0C2"/>
- <stop offset="0.7333" style="stop-color:#7C8C91"/>
- <stop offset="1" style="stop-color:#A7B3B7"/>
+<stop offset="0" style="stop-color:#D1D8D9"/>
+<stop offset="0.0424" style="stop-color:#D1D8D9"/>
+<stop offset="0.4" style="stop-color:#BBC0C2"/>
+<stop offset="0.7333" style="stop-color:#7C8C91"/>
+<stop offset="1" style="stop-color:#A7B3B7"/>
</radialGradient>
<path d="M10.993,29.606l1.577-0.554c0,0-3.343-14.954-4.669-14.266c-0.667,0.348-0.66,0.538-1.335,1.026 c-2.014,1.464-3.112,3.174-3.112,3.174c-0.092,0.155-0.197,0.415-0.303,0.737c-0.105,0.54-0.161,1.102-0.153,1.672 c0.06,4.353,3.581,7.891,8.007,8.225C11,29.616,10.995,29.611,10.993,29.606z" fill="url(#SVGID_11_)"/>
-<path d="M21.933,48.33c-0.311,0.874-0.481,1.802-0.47,2.769 c0.031,2.291,1.062,4.354,2.695,5.889c2.064,0.771,3.951,1.047,4.689,1.01c0,0,1.002-0.118,2.367-0.597 c0.492-0.171-6.277-7.469-8.48-9.823L21.933,48.33z" enable-background="new " opacity="0.05"/>
-<path d="M22.125,47.537c-0.313,0.871-0.481,1.799-0.47,2.766 c0.043,3.142,1.947,5.86,4.748,7.363c0.927,0.218,1.705,0.318,2.198,0.331c0.013,0,0.032,0.002,0.045,0c0,0,1-0.115,2.37-0.594 c0.508-0.179-6.761-7.982-8.693-10.055L22.125,47.537z" enable-background="new " opacity="0.1"/>
+<path d="M21.933,48.33c-0.311,0.874-0.481,1.802-0.47,2.769 c0.031,2.291,1.062,4.354,2.695,5.889c2.064,0.771,3.951,1.047,4.689,1.01c0,0,1.002-0.118,2.367-0.597 c0.492-0.171-6.277-7.469-8.48-9.823L21.933,48.33z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M22.125,47.537c-0.313,0.871-0.481,1.799-0.47,2.766 c0.043,3.142,1.947,5.86,4.748,7.363c0.927,0.218,1.705,0.318,2.198,0.331c0.013,0,0.032,0.002,0.045,0c0,0,1-0.115,2.37-0.594 c0.508-0.179-6.761-7.982-8.693-10.055L22.125,47.537z" fill-opacity="0.1" stroke-opacity="0.1"/>
<radialGradient cx="-3005.0166" cy="3996.4961" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="14.9991">
- <stop offset="0.0424" style="stop-color:#D1D8D9"/>
- <stop offset="0.4" style="stop-color:#BBC0C2"/>
- <stop offset="0.7333" style="stop-color:#7C8C91"/>
- <stop offset="1" style="stop-color:#A7B3B7"/>
+<stop offset="0" style="stop-color:#D1D8D9"/>
+<stop offset="0.0424" style="stop-color:#D1D8D9"/>
+<stop offset="0.4" style="stop-color:#BBC0C2"/>
+<stop offset="0.7333" style="stop-color:#7C8C91"/>
+<stop offset="1" style="stop-color:#A7B3B7"/>
</radialGradient>
<path d="M33.125,56.564c0.785-0.42,0.984-0.408,1.625-0.887c1.178-0.891-10.615-10.968-10.615-10.968 l-2.057,2.111c-0.277,0.833-0.428,1.724-0.415,2.648c0.062,4.526,3.869,8.17,8.542,8.24C30.997,57.499,32.036,57.146,33.125,56.564z " fill="url(#SVGID_12_)"/>
-<path d="M11.808,29.311l0.762-0.258c0,0-3.343-14.954-4.669-14.266 c-0.35,0.181-0.515,0.322-0.688,0.481L11.808,29.311z" enable-background="new " fill="#020202" opacity="0.1"/>
+<path d="M11.808,29.311l0.762-0.258c0,0-3.343-14.954-4.669-14.266 c-0.35,0.181-0.515,0.322-0.688,0.481L11.808,29.311z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-3082.8984" x2="-3077.6428" y1="3928.3984" y2="3911.7034">
- <stop offset="0.0424" style="stop-color:#E9F0F2"/>
- <stop offset="0.4" style="stop-color:#D4D9DB"/>
- <stop offset="0.7333" style="stop-color:#98AAAD"/>
- <stop offset="1" style="stop-color:#D0DADE"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.0424" style="stop-color:#E9F0F2"/>
+<stop offset="0.4" style="stop-color:#D4D9DB"/>
+<stop offset="0.7333" style="stop-color:#98AAAD"/>
+<stop offset="1" style="stop-color:#D0DADE"/>
</linearGradient>
<path d="M12.57,29.056l2.016-0.703c0.523-0.176,0.792-0.756,0.676-1.346l-1.356-4.141l-2.734-8.162 c-0.214-0.641-0.854-1.006-1.43-0.813c0,0-0.515,0.211-1.837,0.898L12.57,29.056z" fill="url(#SVGID_13_)"/>
-<path d="M24.135,44.708l-0.563,0.568l10.516,10.866 c0.227-0.158,0.457-0.313,0.662-0.468C35.928,54.784,24.135,44.708,24.135,44.708z" enable-background="new " fill="#020202" opacity="0.1"/>
+<path d="M24.135,44.708l-0.563,0.568l10.516,10.866 c0.227-0.158,0.457-0.313,0.662-0.468C35.928,54.784,24.135,44.708,24.135,44.708z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-3066.7827" x2="-3055.8347" y1="3897.6836" y2="3885.627">
- <stop offset="0.0424" style="stop-color:#E9F0F2"/>
- <stop offset="0.4" style="stop-color:#D4D9DB"/>
- <stop offset="0.7333" style="stop-color:#98AAAD"/>
- <stop offset="1" style="stop-color:#D0DADE"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.0424" style="stop-color:#E9F0F2"/>
+<stop offset="0.4" style="stop-color:#D4D9DB"/>
+<stop offset="0.7333" style="stop-color:#98AAAD"/>
+<stop offset="1" style="stop-color:#D0DADE"/>
</linearGradient>
<path d="M34.749,55.673c1.176-0.889,1.558-1.273,1.558-1.273c0.438-0.448,0.407-1.204-0.071-1.697 l-9.057-9.322c-0.478-0.496-1.222-0.544-1.66-0.097l-1.383,1.425L34.749,55.673z" fill="url(#SVGID_14_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_voip_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_voip_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,148 +1,153 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2162.3384" x2="-2162.3384" y1="3603.7246" y2="3654.8755">
- <stop offset="0" style="stop-color:#004E8C"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#004E8C"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<circle cx="31.662" cy="27.76" fill="url(#SVGID_1_)" r="25.76"/>
<radialGradient cx="-2106.918" cy="3745.7734" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="32.2687">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<path d="M56.761,27.759c0,13.864-11.234,25.097-25.099,25.097c-13.863,0-25.101-11.232-25.101-25.097 c0-13.859,11.239-25.099,25.101-25.099C45.53,2.66,56.761,13.899,56.761,27.759z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2162.3384" x2="-2162.3384" y1="3654.5078" y2="3603.9641">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#88D6EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#88D6EB"/>
</linearGradient>
-<path d="M31.663,2.66c-13.863,0-25.101,11.239-25.101,25.099 c0,13.864,11.239,25.097,25.101,25.097c13.864,0,25.099-11.232,25.099-25.097C56.761,13.899,45.53,2.66,31.663,2.66z M31.663,50.659 c-13.033,0-23.638-10.598-23.638-23.63c0-13.034,10.603-23.637,23.638-23.637c13.033,0,23.634,10.603,23.634,23.637 C55.296,40.06,44.696,50.659,31.663,50.659z" enable-background="new " fill="url(#SVGID_3_)" opacity="0.3"/>
+<path d="M31.663,2.66c-13.863,0-25.101,11.239-25.101,25.099 c0,13.864,11.239,25.097,25.101,25.097c13.864,0,25.099-11.232,25.099-25.097C56.761,13.899,45.53,2.66,31.663,2.66z M31.663,50.659 c-13.033,0-23.638-10.598-23.638-23.63c0-13.034,10.603-23.637,23.638-23.637c13.033,0,23.634,10.603,23.634,23.637 C55.296,40.06,44.696,50.659,31.663,50.659z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2187.0283" x2="-2183.0366" y1="3625.7734" y2="3625.7734">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M8.918,27.351c-0.268-0.357-0.871-0.357-1.137-0.357 c-0.525,0-0.804,0.376-0.809,0.742v0.023l0.001,0.038c-0.001,0.646,0.035,1.37,0.113,2.251c0.016,0.164,0.036,0.331,0.057,0.498 l0.028,0.241c0.067,0.521,0.145,1.033,0.235,1.531l0.041,0.218c0.038,0.198,0.075,0.391,0.117,0.583 c0.107,0.488,0.238,0.993,0.399,1.552c0.023,0.08,0.044,0.159,0.065,0.239c0.036,0.132,0.07,0.261,0.11,0.388l0.006,0.017 l0.014,0.04c-0.003-0.012-0.009-0.028-0.012-0.045l1.44-0.097c0.022-0.227,0.028-0.46,0.022-0.691 c-0.012-0.364-0.025-0.813-0.129-1.191l1.337-1.796l0.145-0.194v-0.244v-1.4v-0.303l-0.215-0.215L8.918,27.351z" enable-background="new " fill="url(#SVGID_4_)" opacity="0.3"/>
+<path d="M8.918,27.351c-0.268-0.357-0.871-0.357-1.137-0.357 c-0.525,0-0.804,0.376-0.809,0.742v0.023l0.001,0.038c-0.001,0.646,0.035,1.37,0.113,2.251c0.016,0.164,0.036,0.331,0.057,0.498 l0.028,0.241c0.067,0.521,0.145,1.033,0.235,1.531l0.041,0.218c0.038,0.198,0.075,0.391,0.117,0.583 c0.107,0.488,0.238,0.993,0.399,1.552c0.023,0.08,0.044,0.159,0.065,0.239c0.036,0.132,0.07,0.261,0.11,0.388l0.006,0.017 l0.014,0.04c-0.003-0.012-0.009-0.028-0.012-0.045l1.44-0.097c0.022-0.227,0.028-0.46,0.022-0.691 c-0.012-0.364-0.025-0.813-0.129-1.191l1.337-1.796l0.145-0.194v-0.244v-1.4v-0.303l-0.215-0.215L8.918,27.351z" fill="url(#SVGID_4_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2179.3354" x2="-2137.5874" y1="3633.083" y2="3633.083">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M56.406,22.84c-0.019-0.094-0.034-0.161-0.052-0.229 c-0.013-0.051-0.024-0.101-0.034-0.15c-0.128-0.595-0.285-1.208-0.472-1.832l-0.02-0.071c-0.041-0.14-0.082-0.281-0.127-0.42 c-0.227-0.706-0.473-1.38-0.732-2.003c-0.031-0.078-0.066-0.149-0.1-0.226l-0.055-0.119c-0.246-0.57-0.523-1.139-0.813-1.688 l-0.036-0.071c-0.057-0.107-0.111-0.216-0.17-0.321c-0.354-0.642-0.728-1.251-1.103-1.819c-0.04-0.06-0.085-0.122-0.13-0.184 c-0.027-0.038-0.054-0.075-0.078-0.111c-0.363-0.525-0.743-1.037-1.138-1.525l-0.076-0.099c-0.053-0.065-0.106-0.133-0.161-0.199 c-0.459-0.55-0.941-1.08-1.441-1.583c-0.068-0.067-0.139-0.138-0.211-0.209l-0.061-0.057c-0.45-0.44-0.93-0.878-1.422-1.289 l-0.097-0.083c-0.05-0.046-0.101-0.087-0.15-0.128c-0.536-0.441-1.118-0.875-1.725-1.291c-0.075-0.052-0.153-0.101-0.229-0.15 l-0.092-0.061c-0.546-0.362-1.115-0.709-1.688-1.023l-0.085-0.052c-0.049-0.028-0.096-0.054-0.144-0.082 c-0.636-0.341-1.3-0.66-1.976-0.951l-0.17-0.068l-0.186-0.077c-0.177-0.073-0.355-0.136-0.531-0.197 c-0.093-0.03-0.182-0.063-0.275-0.097l-0.339-0.127l-0.308,0.195c-0.203,0.129-1.01,0.589-1.484,0.859 c-0.526-0.07-1.801-0.23-3.089-0.355c0.396-0.036,0.946-0.082,1.719-0.133l0.108-1.446l-0.059-0.017 c-0.047-0.012-0.092-0.024-0.139-0.035l-0.111-0.021l-0.088-0.017c-0.789-0.159-1.529-0.273-2.264-0.351L34.57,2.925l-0.103-0.011 c-0.84-0.083-1.693-0.127-2.539-0.127c-0.744,0-1.517,0.04-2.361,0.122c-0.13,0.013-0.256,0.025-0.385,0.038 C28.35,3.041,27.62,3.151,26.93,3.292l-0.024,0.002l-0.017,0.003c-0.727,0.149-1.457,0.338-2.232,0.573 c-0.068,0.022-0.139,0.044-0.207,0.067l-0.156,0.052c-0.658,0.212-1.303,0.444-1.92,0.7c-0.051,0.021-0.086,0.032-0.121,0.046 l-0.094,0.038c-0.678,0.288-1.354,0.615-2.028,0.977c-0.073,0.037-0.142,0.079-0.212,0.118l-0.084,0.054 c-0.189,0.103-0.381,0.223-0.569,0.34l-0.244,0.153l-1.345,0.821l1.494,0.499c0.223,0.076,0.463,0.111,0.711,0.111 c0.805,0,1.582-0.395,2.209-0.713c0.252-0.125,0.627-0.317,0.779-0.346c0.182,0.054,0.369,0.082,0.55,0.082 c0.685,0,1.244-0.368,1.739-0.694l0.135-0.087c0.16-0.052,0.434-0.154,0.98-0.359c0.561-0.209,1.58-0.593,1.854-0.658 c0.527-0.005,1.16-0.079,1.609-0.359c0.422,0.07,1.174,0.188,1.945,0.289c-0.057,0.034-0.112,0.07-0.158,0.115 c-0.251,0.232-1.605,0.642-2.02,0.695c-0.779,0.098-1.092,0.49-1.217,0.801c-0.163,0.403-0.064,0.808,0.094,1.139 c-0.295,0.194-0.656,0.41-0.966,0.575c0,0,0.003-0.015,0.005-0.023c0.111-0.622,0.191-1.071-0.11-1.431 c-0.153-0.184-0.38-0.289-0.624-0.289c-0.354,0-0.631,0.22-0.854,0.436c-0.626,0.604-1.004,1.356-1.145,1.641l-0.026,0.052 l-0.023,0.042c-0.271,0.519-0.382,0.887-0.231,2.028c-0.064,0.05-0.264,0.124-0.534,0.124c-0.036,0-0.07-0.001-0.095-0.004 c-0.176-0.189-0.42-0.298-0.693-0.298l0,0c-0.63,0-1.488,0.709-2.551,2.107l-0.342,0.451l0.347,0.446l0.323,0.411 c-5.066,3.918-5.104,4.14-5.157,4.468c-0.009,0.03-0.054,0.165-0.115,0.352c-0.754,2.348-1.174,4.104-0.765,5.044 c0.942,2.179,2.006,4.212,3.383,4.325c0.122,0.01,0.256,0.015,0.398,0.015c1.265,0,3.311-0.382,4.295-0.584 c0.182,0.341,0.402,0.738,0.527,0.956l0.217,0.39l0.445-0.015c0.004,0,0.239-0.009,0.539-0.009c0.342,0,0.573,0.011,0.723,0.021 c0.536,1.571,1.563,5.189,1.373,5.943l-0.004,0.002c-1.732,2.597,0.368,5.982,1.377,7.607c0.078,0.129,0.15,0.244,0.213,0.345 c0.389,1.108,0.861,1.841,1.856,1.841c0.075,0,0.149-0.004,0.227-0.01c0.058-0.002,0.115-0.004,0.175-0.004 c0.109,0,0.189,0.012,0.271,0.042l0.09,0.032l0.097,0.008c0.187,0.016,0.368,0.042,0.544,0.068c0.309,0.042,0.625,0.084,0.947,0.084 c0.868,0,1.555-0.327,2.148-1.028c0.023-0.003,0.044-0.005,0.067-0.008c0.622-0.086,0.854-0.398,0.935-0.678 c0.045-0.047,0.107-0.104,0.157-0.15c0.245-0.226,0.538-0.493,0.739-0.811c0.091-0.054,0.193-0.114,0.311-0.183 c0.2-0.124,0.428-0.26,0.605-0.352c0.157-0.05,0.297-0.142,0.401-0.271c0.251-0.31,0.2-0.659,0.157-0.941 c-0.041-0.291-0.084-0.592,0.072-0.911c0.889-0.428,2.466-1.479,2.721-1.652l-0.002,0.021c-0.016,0.141-0.057,0.517-0.119,0.757 c-0.336,0.335-0.617,0.845-0.704,1.018l-0.06,0.113l-0.018,0.125c-0.023,0.164-0.113,1.021,0.367,1.575 c0.242,0.277,0.59,0.432,0.978,0.432c0.124,0,0.253-0.016,0.384-0.047c1.234-0.279,3.426-3.249,3.604-4.888 c0.086-0.789-0.223-1.409-0.846-1.703l-0.465-0.221l-0.367,0.364l-1.352,1.353c-0.457,0.043-0.814,0.179-1.057,0.393 c0.014-0.578-0.043-1.17-0.104-1.745c-0.186-1.74-0.222-2.848,0.846-3.602l0.054-0.04l0.046-0.047 c0.387-0.392,0.813-0.734,1.264-1.099c1.059-0.85,2.152-1.729,2.804-3.315l0.027-0.067c0.209-0.543,0.524-1.361,0.097-1.984 c-0.107-0.155-0.33-0.395-0.75-0.478c0.556-0.225,0.98-0.399,1.023-0.417l0.129-0.052l0.1-0.097l2.281-2.19l0.334-0.321 l-0.146-0.441c-0.021-0.057-0.144-0.401-0.494-0.897c0.666,0.09,1.236,0.251,1.424,0.393c0.069,0.147,0.207,0.477,0.352,0.822 c2.512,5.918,2.863,6.224,3.518,6.233c0.025,0,0.045,0.002,0.061,0.005c0.055,0.002,0.101,0.004,0.145,0.004 c0.371,0,0.584-0.188,0.677-0.303c0.273-0.328,0.196-0.73,0.169-0.88l-0.01-0.052c-0.031-0.354-0.012-1.946,0.039-3.254 c0.004,0.002,0.004,0.006,0.008,0.011l1.346-0.534L56.406,22.84z M36.622,15.6c-0.104,0.004-0.217,0.009-0.338,0.014 c-0.388,0.02-0.828,0.038-1.268,0.038c-1.147,0-1.409-0.142-1.438-0.157c-0.135-0.1-0.275-0.174-0.42-0.226 c0.26-0.059,0.557-0.259,0.863-0.853c0.303,0.586,0.712,1.104,1.342,1.104c0.171,0,0.332-0.043,0.488-0.122 C36.063,15.401,36.413,15.522,36.622,15.6z M36.17,12.397c-0.086,0-0.156-0.004-0.211-0.009c0.059-0.153,0.129-0.243,0.186-0.293 c0.071,0.111,0.169,0.209,0.277,0.294C36.334,12.395,36.252,12.397,36.17,12.397z M31.6,13.933c0.394,0.771,0.686,1.103,0.916,1.246 c-0.57,0.047-1.001,0.409-1.354,0.752c-0.248-0.081-0.678-0.343-0.808-0.526c-0.075-0.106-0.165-0.199-0.265-0.279 C30.713,14.948,31.262,14.369,31.6,13.933z M29.428,13.366l-0.817-0.039l-2.737-0.134c0.332-0.275,0.65-0.534,0.837-0.686 c0.05-0.018,0.246-0.073,0.728-0.073c0.291,0,0.569,0.021,0.746,0.035L29.428,13.366z" enable-background="new " fill="url(#SVGID_5_)" opacity="0.3"/>
+<path d="M56.406,22.84c-0.019-0.094-0.034-0.161-0.052-0.229 c-0.013-0.051-0.024-0.101-0.034-0.15c-0.128-0.595-0.285-1.208-0.472-1.832l-0.02-0.071c-0.041-0.14-0.082-0.281-0.127-0.42 c-0.227-0.706-0.473-1.38-0.732-2.003c-0.031-0.078-0.066-0.149-0.1-0.226l-0.055-0.119c-0.246-0.57-0.523-1.139-0.813-1.688 l-0.036-0.071c-0.057-0.107-0.111-0.216-0.17-0.321c-0.354-0.642-0.728-1.251-1.103-1.819c-0.04-0.06-0.085-0.122-0.13-0.184 c-0.027-0.038-0.054-0.075-0.078-0.111c-0.363-0.525-0.743-1.037-1.138-1.525l-0.076-0.099c-0.053-0.065-0.106-0.133-0.161-0.199 c-0.459-0.55-0.941-1.08-1.441-1.583c-0.068-0.067-0.139-0.138-0.211-0.209l-0.061-0.057c-0.45-0.44-0.93-0.878-1.422-1.289 l-0.097-0.083c-0.05-0.046-0.101-0.087-0.15-0.128c-0.536-0.441-1.118-0.875-1.725-1.291c-0.075-0.052-0.153-0.101-0.229-0.15 l-0.092-0.061c-0.546-0.362-1.115-0.709-1.688-1.023l-0.085-0.052c-0.049-0.028-0.096-0.054-0.144-0.082 c-0.636-0.341-1.3-0.66-1.976-0.951l-0.17-0.068l-0.186-0.077c-0.177-0.073-0.355-0.136-0.531-0.197 c-0.093-0.03-0.182-0.063-0.275-0.097l-0.339-0.127l-0.308,0.195c-0.203,0.129-1.01,0.589-1.484,0.859 c-0.526-0.07-1.801-0.23-3.089-0.355c0.396-0.036,0.946-0.082,1.719-0.133l0.108-1.446l-0.059-0.017 c-0.047-0.012-0.092-0.024-0.139-0.035l-0.111-0.021l-0.088-0.017c-0.789-0.159-1.529-0.273-2.264-0.351L34.57,2.925l-0.103-0.011 c-0.84-0.083-1.693-0.127-2.539-0.127c-0.744,0-1.517,0.04-2.361,0.122c-0.13,0.013-0.256,0.025-0.385,0.038 C28.35,3.041,27.62,3.151,26.93,3.292l-0.024,0.002l-0.017,0.003c-0.727,0.149-1.457,0.338-2.232,0.573 c-0.068,0.022-0.139,0.044-0.207,0.067l-0.156,0.052c-0.658,0.212-1.303,0.444-1.92,0.7c-0.051,0.021-0.086,0.032-0.121,0.046 l-0.094,0.038c-0.678,0.288-1.354,0.615-2.028,0.977c-0.073,0.037-0.142,0.079-0.212,0.118l-0.084,0.054 c-0.189,0.103-0.381,0.223-0.569,0.34l-0.244,0.153l-1.345,0.821l1.494,0.499c0.223,0.076,0.463,0.111,0.711,0.111 c0.805,0,1.582-0.395,2.209-0.713c0.252-0.125,0.627-0.317,0.779-0.346c0.182,0.054,0.369,0.082,0.55,0.082 c0.685,0,1.244-0.368,1.739-0.694l0.135-0.087c0.16-0.052,0.434-0.154,0.98-0.359c0.561-0.209,1.58-0.593,1.854-0.658 c0.527-0.005,1.16-0.079,1.609-0.359c0.422,0.07,1.174,0.188,1.945,0.289c-0.057,0.034-0.112,0.07-0.158,0.115 c-0.251,0.232-1.605,0.642-2.02,0.695c-0.779,0.098-1.092,0.49-1.217,0.801c-0.163,0.403-0.064,0.808,0.094,1.139 c-0.295,0.194-0.656,0.41-0.966,0.575c0,0,0.003-0.015,0.005-0.023c0.111-0.622,0.191-1.071-0.11-1.431 c-0.153-0.184-0.38-0.289-0.624-0.289c-0.354,0-0.631,0.22-0.854,0.436c-0.626,0.604-1.004,1.356-1.145,1.641l-0.026,0.052 l-0.023,0.042c-0.271,0.519-0.382,0.887-0.231,2.028c-0.064,0.05-0.264,0.124-0.534,0.124c-0.036,0-0.07-0.001-0.095-0.004 c-0.176-0.189-0.42-0.298-0.693-0.298l0,0c-0.63,0-1.488,0.709-2.551,2.107l-0.342,0.451l0.347,0.446l0.323,0.411 c-5.066,3.918-5.104,4.14-5.157,4.468c-0.009,0.03-0.054,0.165-0.115,0.352c-0.754,2.348-1.174,4.104-0.765,5.044 c0.942,2.179,2.006,4.212,3.383,4.325c0.122,0.01,0.256,0.015,0.398,0.015c1.265,0,3.311-0.382,4.295-0.584 c0.182,0.341,0.402,0.738,0.527,0.956l0.217,0.39l0.445-0.015c0.004,0,0.239-0.009,0.539-0.009c0.342,0,0.573,0.011,0.723,0.021 c0.536,1.571,1.563,5.189,1.373,5.943l-0.004,0.002c-1.732,2.597,0.368,5.982,1.377,7.607c0.078,0.129,0.15,0.244,0.213,0.345 c0.389,1.108,0.861,1.841,1.856,1.841c0.075,0,0.149-0.004,0.227-0.01c0.058-0.002,0.115-0.004,0.175-0.004 c0.109,0,0.189,0.012,0.271,0.042l0.09,0.032l0.097,0.008c0.187,0.016,0.368,0.042,0.544,0.068c0.309,0.042,0.625,0.084,0.947,0.084 c0.868,0,1.555-0.327,2.148-1.028c0.023-0.003,0.044-0.005,0.067-0.008c0.622-0.086,0.854-0.398,0.935-0.678 c0.045-0.047,0.107-0.104,0.157-0.15c0.245-0.226,0.538-0.493,0.739-0.811c0.091-0.054,0.193-0.114,0.311-0.183 c0.2-0.124,0.428-0.26,0.605-0.352c0.157-0.05,0.297-0.142,0.401-0.271c0.251-0.31,0.2-0.659,0.157-0.941 c-0.041-0.291-0.084-0.592,0.072-0.911c0.889-0.428,2.466-1.479,2.721-1.652l-0.002,0.021c-0.016,0.141-0.057,0.517-0.119,0.757 c-0.336,0.335-0.617,0.845-0.704,1.018l-0.06,0.113l-0.018,0.125c-0.023,0.164-0.113,1.021,0.367,1.575 c0.242,0.277,0.59,0.432,0.978,0.432c0.124,0,0.253-0.016,0.384-0.047c1.234-0.279,3.426-3.249,3.604-4.888 c0.086-0.789-0.223-1.409-0.846-1.703l-0.465-0.221l-0.367,0.364l-1.352,1.353c-0.457,0.043-0.814,0.179-1.057,0.393 c0.014-0.578-0.043-1.17-0.104-1.745c-0.186-1.74-0.222-2.848,0.846-3.602l0.054-0.04l0.046-0.047 c0.387-0.392,0.813-0.734,1.264-1.099c1.059-0.85,2.152-1.729,2.804-3.315l0.027-0.067c0.209-0.543,0.524-1.361,0.097-1.984 c-0.107-0.155-0.33-0.395-0.75-0.478c0.556-0.225,0.98-0.399,1.023-0.417l0.129-0.052l0.1-0.097l2.281-2.19l0.334-0.321 l-0.146-0.441c-0.021-0.057-0.144-0.401-0.494-0.897c0.666,0.09,1.236,0.251,1.424,0.393c0.069,0.147,0.207,0.477,0.352,0.822 c2.512,5.918,2.863,6.224,3.518,6.233c0.025,0,0.045,0.002,0.061,0.005c0.055,0.002,0.101,0.004,0.145,0.004 c0.371,0,0.584-0.188,0.677-0.303c0.273-0.328,0.196-0.73,0.169-0.88l-0.01-0.052c-0.031-0.354-0.012-1.946,0.039-3.254 c0.004,0.002,0.004,0.006,0.008,0.011l1.346-0.534L56.406,22.84z M36.622,15.6c-0.104,0.004-0.217,0.009-0.338,0.014 c-0.388,0.02-0.828,0.038-1.268,0.038c-1.147,0-1.409-0.142-1.438-0.157c-0.135-0.1-0.275-0.174-0.42-0.226 c0.26-0.059,0.557-0.259,0.863-0.853c0.303,0.586,0.712,1.104,1.342,1.104c0.171,0,0.332-0.043,0.488-0.122 C36.063,15.401,36.413,15.522,36.622,15.6z M36.17,12.397c-0.086,0-0.156-0.004-0.211-0.009c0.059-0.153,0.129-0.243,0.186-0.293 c0.071,0.111,0.169,0.209,0.277,0.294C36.334,12.395,36.252,12.397,36.17,12.397z M31.6,13.933c0.394,0.771,0.686,1.103,0.916,1.246 c-0.57,0.047-1.001,0.409-1.354,0.752c-0.248-0.081-0.678-0.343-0.808-0.526c-0.075-0.106-0.165-0.199-0.265-0.279 C30.713,14.948,31.262,14.369,31.6,13.933z M29.428,13.366l-0.817-0.039l-2.737-0.134c0.332-0.275,0.65-0.534,0.837-0.686 c0.05-0.018,0.246-0.073,0.728-0.073c0.291,0,0.569,0.021,0.746,0.035L29.428,13.366z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="-2106.0845" cy="3754.9141" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="29.4754">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
<path d="M7.703,27.745L7.703,27.745c0,0.009,0.001,0.014,0.001,0.022c0,0.747,0.047,1.484,0.112,2.218 c0.021,0.236,0.056,0.476,0.083,0.718c0.065,0.5,0.14,0.998,0.228,1.488c0.051,0.258,0.097,0.521,0.152,0.774 c0.114,0.508,0.244,1.008,0.386,1.501c0.06,0.204,0.107,0.411,0.169,0.61c0.009,0.023,0.019,0.04,0.023,0.061 c0.02-0.189,0.026-0.39,0.02-0.594C8.83,33.103,8.6,33.288,8.6,33.288l1.629-2.19v-1.402l-1.91-1.908 C8.319,27.787,7.704,27.69,7.703,27.745z" fill="url(#SVGID_6_)"/>
<radialGradient cx="-2106.0928" cy="3754.918" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="29.4765">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
<path d="M23.042,6.076c0.706,0.233,1.282-0.24,1.939-0.66c0.231-0.049,2.81-1.076,3.089-1.076 s1.216-0.036,1.448-0.409c0,0,4.035,0.702,4.644,0.468c0.33-0.13,1.723-0.24,2.914-0.317c-0.066-0.014-0.127-0.036-0.195-0.05 c-0.064-0.015-0.125-0.023-0.191-0.035c-0.75-0.152-1.505-0.272-2.277-0.35c-0.008,0-0.012,0-0.02-0.003 c-0.81-0.082-1.633-0.124-2.467-0.124c-0.773,0-1.535,0.045-2.291,0.117c-0.133,0.015-0.266,0.025-0.397,0.043 c-0.731,0.079-1.456,0.186-2.165,0.328c-0.013,0.005-0.025,0.005-0.037,0.008c-0.736,0.152-1.459,0.34-2.168,0.559 c-0.121,0.035-0.238,0.077-0.362,0.115c-0.626,0.202-1.248,0.427-1.856,0.678c-0.071,0.031-0.145,0.057-0.215,0.087 c-0.67,0.286-1.322,0.602-1.96,0.941c-0.097,0.053-0.188,0.108-0.282,0.163c-0.271,0.149-0.527,0.32-0.793,0.481 C20.713,7.479,22.349,5.842,23.042,6.076z" fill="url(#SVGID_7_)"/>
<radialGradient cx="-2106.0928" cy="3754.9209" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="29.4743">
- <stop offset="0.3152" style="stop-color:#B2F56E"/>
- <stop offset="0.7273" style="stop-color:#5CBF1B"/>
- <stop offset="1" style="stop-color:#227A00"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.3152" style="stop-color:#B2F56E"/>
+<stop offset="0.7273" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
<path d="M55.685,22.962c-0.026-0.122-0.06-0.237-0.083-0.356c-0.127-0.601-0.28-1.19-0.455-1.773 c-0.045-0.154-0.092-0.316-0.143-0.474c-0.211-0.659-0.445-1.31-0.709-1.941c-0.047-0.112-0.1-0.223-0.15-0.331 c-0.242-0.56-0.504-1.104-0.789-1.639c-0.066-0.128-0.131-0.259-0.199-0.383c-0.336-0.604-0.691-1.194-1.074-1.768 c-0.064-0.1-0.137-0.192-0.203-0.292c-0.35-0.507-0.717-0.997-1.102-1.477c-0.078-0.094-0.152-0.192-0.233-0.287 c-0.442-0.532-0.909-1.044-1.396-1.534c-0.082-0.085-0.172-0.17-0.259-0.252c-0.444-0.437-0.907-0.857-1.387-1.258 c-0.079-0.069-0.157-0.139-0.237-0.206c-0.537-0.439-1.1-0.857-1.678-1.254c-0.1-0.069-0.203-0.135-0.307-0.2 c-0.531-0.354-1.079-0.686-1.643-0.998c-0.074-0.042-0.148-0.087-0.225-0.129c-0.625-0.336-1.262-0.642-1.916-0.924 c-0.117-0.049-0.232-0.096-0.348-0.145c-0.254-0.104-0.521-0.188-0.777-0.282c-0.306,0.195-1.729,1.001-1.729,1.001 s-6.18-0.846-6.602-0.426c-0.423,0.426-2.068,0.854-2.441,0.903c-0.376,0.049-1.151,0.247-0.221,1.396 c-0.139,0.141-2.795,1.99-2.795,1.15s0.594-2.348-0.24-1.54c-0.599,0.577-0.957,1.364-1.034,1.51 c-0.195,0.375-0.315,0.554-0.174,1.632c0.142,1.077-1.719,1.07-1.845,0.791c-0.332-0.746-2.174,1.676-2.174,1.676l0.776,0.996 c0,0-5.421,4.177-5.468,4.456c-0.048,0.282-1.399,3.907-0.93,4.984c0.468,1.079,1.652,3.797,2.771,3.888 c1.47,0.12,5.032-0.673,5.032-0.673c0.097,0.236,0.768,1.43,0.768,1.43s1.747-0.058,1.843,0.133 c0.033,0.063,2.104,6.157,1.422,6.965c-1.632,2.444,0.932,6.024,1.645,7.235c0.715,2.08,1.176,1.148,2.115,1.489 c1.155,0.101,2.129,0.528,3.111-0.735c0.285-0.235,0.77-0.049,0.77-0.376c0-0.183,0.84-0.718,1.057-1.223 c0.226-0.105,0.811-0.498,1.205-0.688c0.36-0.023-0.34-0.986,0.372-2.002c0.769-0.303,2.842-1.7,2.842-1.7 c0.095-2.05-1.01-4.581,1.05-6.033c1.326-1.355,3.068-2.126,3.912-4.183c0.232-0.61,0.756-1.854-0.744-1.48 c-1.41,0.354-2.981,0.435-2.236-0.187c-0.086-0.761-1.022-1.12-1.863-1.863c-0.436-1.028-1.118-2.86-1.118-2.86l-1.491-2.266 l0.186-0.468l1.773,2.609l1.771,2.142c0.65,2.143,1.209,2.33,1.209,2.33c0.98-0.345,3.311-1.305,3.311-1.305l2.281-2.19 c0,0-0.233-0.697-1.16-1.583l-0.703-0.418c-0.152,0.43-0.965,0.59-0.965,0.59l-1.973-2.361l0.733-0.147l0.565,1.076l1.356,0.47 c0,0,0.377-0.274,1.073,0.446c0.568-0.047,2.788,0.108,3.306,0.765c0.102,0.13,2.748,6.739,3.271,6.749 c0.229,0.002,0.395,0.091,0.32-0.309c-0.094-0.188,0-4.338,0.14-5.229c0.354-0.753,0.412-0.002,1.25,1.428 C55.696,23.033,55.692,22.997,55.685,22.962z M32.397,6.947c0.184-0.552,1.258-0.739,1.258-0.739s-0.308,0.568-0.236,0.859 c0.072,0.298-0.49,0.483-0.554,1.182c-0.061,0.694-1.343,0.287-1.447,0.043C31.311,8.049,32.208,7.497,32.397,6.947z M36.993,16.324 c-0.795,0-3.18,0.235-3.834-0.234c-0.658-0.467-1.168,0.05-1.639,0.52c-0.311,0.303-1.434-0.314-1.765-0.782 c-0.325-0.467-1.429-0.434-1.429-0.434l0.251-1.335l-3.171-0.154l-1.802,0.528l-1.694,0.05l0.95-0.454l1.181-0.278 c0,0,1.721-1.414,2.235-1.834c0.435-0.356,2.177-0.155,2.177-0.155l1.91,1.378c0,0-0.424,1.08-0.611,1.312 c0.701-0.047,1.525-1.321,1.525-1.321c-1.488-1.368-1.428-1.832-1.428-1.832l1.963,1.377l0.02,0.012c0,0,0.795,1.874,1.127,1.874 c0.326,0,0.744-1.289,0.744-1.289l0.559-0.142c0.248,0.593,0.715,1.929,1.272,1.614c0.323-0.177,0.854-0.015,1.462,0.218 c0.611,0.235,1.025-0.124,1.521,0.31C38.452,17.195,37.321,16.419,36.993,16.324z M38.239,13.102 c-0.818-0.311-3.587,0.704-2.969-0.957c0.33-0.896,1.179-1.083,1.469-0.487c0.076,0.247,0.998,0.625,0.99,0.108 c-0.006-0.518,0.928-0.791,1.063-0.406C38.293,11.716,40.737,13.58,38.239,13.102z M43.454,14.675 c-0.453-0.364,0.205-0.679-0.465-1.252c-0.959-0.822-1.708-1.176-0.401-1.841c1.612-0.202,0.263,0.515,0.529,0.943 c0.144,0.23,0.956,0.996,1.593,1.938C45.238,15.244,43.905,15.038,43.454,14.675z" fill="url(#SVGID_8_)"/>
<radialGradient cx="-2106.0933" cy="3754.916" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="29.4698">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
<path d="M44.104,36.019l-1.555,1.552c0,0-0.934,0-0.979,0.378c-0.021,0.159-0.075,0.853-0.23,1.209 c-0.311,0.217-0.684,0.931-0.684,0.931s-0.191,1.382,0.839,1.146C42.526,41.001,45.698,36.77,44.104,36.019z" fill="url(#SVGID_9_)"/>
-<path d="M32.02,52.439c1.859,0,3.664-0.209,5.408-0.589 c-0.047-0.059-0.086-0.12-0.137-0.174l-9.057-9.324c-0.522-0.537-1.239-0.847-1.97-0.847c-0.685,0-1.324,0.265-1.804,0.751 l-1.373,1.418l-0.568,0.573l-0.524,0.537c-1.987-1.927-3.765-4.139-5.697-7.06c-1.067-1.62-1.986-3.592-2.57-4.956l-0.213-0.51 c0,0-0.291-0.718-0.39-0.975l-0.032-0.082c-0.081-0.211-0.153-0.408-0.221-0.601l-0.031-0.083l2.215-0.77 c1.222-0.414,1.915-1.688,1.638-3.071l-0.009-0.045l-1.386-4.235l-2.734-8.158c-0.193-0.582-0.564-1.064-1.032-1.394 c-2.904,4.096-4.617,9.095-4.617,14.496C6.917,41.205,18.155,52.439,32.02,52.439z" enable-background="new " fill="#020202" opacity="0.1"/>
-<path d="M32.02,52.439c1.563,0,3.09-0.15,4.576-0.422l-8.889-9.153 c-0.386-0.396-0.912-0.624-1.442-0.624c-0.485,0-0.936,0.188-1.274,0.531l-1.381,1.42l-0.561,0.568l-0.51,0.523l0.004,0.005 l-0.523,0.535c-2.243-2.087-4.219-4.489-6.334-7.693c-1.095-1.661-2.036-3.678-2.634-5.074l-0.19-0.45l-0.029-0.071 c0,0-0.292-0.723-0.393-0.981l-0.035-0.087c-0.082-0.216-0.156-0.415-0.229-0.614c0,0-0.144-0.406-0.174-0.493l0.085-0.354 l2.731-0.951c0.866-0.294,1.355-1.214,1.161-2.187l-0.008-0.044l-1.373-4.188l-2.734-8.161c-0.144-0.43-0.412-0.781-0.752-1.024 c-2.648,3.98-4.198,8.756-4.198,13.893C6.917,41.205,18.155,52.439,32.02,52.439z" enable-background="new " fill="#020202" opacity="0.2"/>
+<path d="M32.02,52.439c1.859,0,3.664-0.209,5.408-0.589 c-0.047-0.059-0.086-0.12-0.137-0.174l-9.057-9.324c-0.522-0.537-1.239-0.847-1.97-0.847c-0.685,0-1.324,0.265-1.804,0.751 l-1.373,1.418l-0.568,0.573l-0.524,0.537c-1.987-1.927-3.765-4.139-5.697-7.06c-1.067-1.62-1.986-3.592-2.57-4.956l-0.213-0.51 c0,0-0.291-0.718-0.39-0.975l-0.032-0.082c-0.081-0.211-0.153-0.408-0.221-0.601l-0.031-0.083l2.215-0.77 c1.222-0.414,1.915-1.688,1.638-3.071l-0.009-0.045l-1.386-4.235l-2.734-8.158c-0.193-0.582-0.564-1.064-1.032-1.394 c-2.904,4.096-4.617,9.095-4.617,14.496C6.917,41.205,18.155,52.439,32.02,52.439z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M32.02,52.439c1.563,0,3.09-0.15,4.576-0.422l-8.889-9.153 c-0.386-0.396-0.912-0.624-1.442-0.624c-0.485,0-0.936,0.188-1.274,0.531l-1.381,1.42l-0.561,0.568l-0.51,0.523l0.004,0.005 l-0.523,0.535c-2.243-2.087-4.219-4.489-6.334-7.693c-1.095-1.661-2.036-3.678-2.634-5.074l-0.19-0.45l-0.029-0.071 c0,0-0.292-0.723-0.393-0.981l-0.035-0.087c-0.082-0.216-0.156-0.415-0.229-0.614c0,0-0.144-0.406-0.174-0.493l0.085-0.354 l2.731-0.951c0.866-0.294,1.355-1.214,1.161-2.187l-0.008-0.044l-1.373-4.188l-2.734-8.161c-0.144-0.43-0.412-0.781-0.752-1.024 c-2.648,3.98-4.198,8.756-4.198,13.893C6.917,41.205,18.155,52.439,32.02,52.439z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<radialGradient cx="-2983.5728" cy="4023.543" gradientTransform="matrix(0.9654 -0.0107 -0.0107 -0.9654 2968.4299 3872.1846)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="42.6078">
- <stop offset="0.8364" style="stop-color:#E9F0F2"/>
- <stop offset="0.8909" style="stop-color:#AAB1B5"/>
- <stop offset="0.9515" style="stop-color:#7C878C"/>
- <stop offset="1" style="stop-color:#838F94"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.8364" style="stop-color:#E9F0F2"/>
+<stop offset="0.8909" style="stop-color:#AAB1B5"/>
+<stop offset="0.9515" style="stop-color:#7C878C"/>
+<stop offset="1" style="stop-color:#838F94"/>
</radialGradient>
<path d="M22.051,46.847c-2.873-2.563-5.037-5.372-6.979-8.311c-1.865-2.832-3.556-7.079-4.079-8.93 l-7.54-10.621c-0.429,0.711-1.107,3.264-0.794,6.717c0.316,3.454,3.534,11.814,7.313,17.545c3.782,5.731,9.389,11.118,11.269,12.311 c2.959,1.878,6.523,2.493,7.608,2.439c0,0,1.002-0.118,2.367-0.597C31.803,57.196,22.051,46.847,22.051,46.847z" fill="url(#SVGID_10_)"/>
-<path d="M12.413,33.434c-0.661-1.542-1.174-2.953-1.418-3.827L3.658,19.27 c-0.077,0.108-0.12,0.173-0.12,0.173c-0.126,0.207-0.266,0.55-0.406,0.977c-0.142,0.722-0.214,1.466-0.202,2.229 C3.002,28.046,7.083,32.497,12.413,33.434z" enable-background="new " opacity="0.05"/>
-<path d="M12.099,32.685c-0.507-1.242-0.899-2.348-1.104-3.078l-7.363-10.37 C3.548,19.356,3.5,19.429,3.5,19.429c-0.118,0.195-0.25,0.522-0.383,0.925c-0.134,0.682-0.202,1.383-0.19,2.105 C2.997,27.635,6.961,31.889,12.099,32.685z" enable-background="new " opacity="0.05"/>
-<path d="M3.443,19.407c-0.105,0.177-0.226,0.472-0.348,0.839 c-0.123,0.617-0.183,1.256-0.172,1.911c0.064,4.82,3.858,8.755,8.702,9.323c-0.278-0.742-0.495-1.39-0.632-1.874L3.596,19.185 C3.496,19.325,3.443,19.407,3.443,19.407z" enable-background="new " opacity="0.1"/>
+<path d="M12.413,33.434c-0.661-1.542-1.174-2.953-1.418-3.827L3.658,19.27 c-0.077,0.108-0.12,0.173-0.12,0.173c-0.126,0.207-0.266,0.55-0.406,0.977c-0.142,0.722-0.214,1.466-0.202,2.229 C3.002,28.046,7.083,32.497,12.413,33.434z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M12.099,32.685c-0.507-1.242-0.899-2.348-1.104-3.078l-7.363-10.37 C3.548,19.356,3.5,19.429,3.5,19.429c-0.118,0.195-0.25,0.522-0.383,0.925c-0.134,0.682-0.202,1.383-0.19,2.105 C2.997,27.635,6.961,31.889,12.099,32.685z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M3.443,19.407c-0.105,0.177-0.226,0.472-0.348,0.839 c-0.123,0.617-0.183,1.256-0.172,1.911c0.064,4.82,3.858,8.755,8.702,9.323c-0.278-0.742-0.495-1.39-0.632-1.874L3.596,19.185 C3.496,19.325,3.443,19.407,3.443,19.407z" fill-opacity="0.1" stroke-opacity="0.1"/>
<radialGradient cx="-3022.0488" cy="4026.5146" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="14.7389">
- <stop offset="0.0424" style="stop-color:#D1D8D9"/>
- <stop offset="0.4" style="stop-color:#BBC0C2"/>
- <stop offset="0.7333" style="stop-color:#7C8C91"/>
- <stop offset="1" style="stop-color:#A7B3B7"/>
+<stop offset="0" style="stop-color:#D1D8D9"/>
+<stop offset="0.0424" style="stop-color:#D1D8D9"/>
+<stop offset="0.4" style="stop-color:#BBC0C2"/>
+<stop offset="0.7333" style="stop-color:#7C8C91"/>
+<stop offset="1" style="stop-color:#A7B3B7"/>
</radialGradient>
<path d="M10.993,29.606l1.577-0.554c0,0-3.343-14.954-4.669-14.266c-0.667,0.348-0.66,0.538-1.335,1.026 c-2.014,1.464-3.112,3.174-3.112,3.174c-0.092,0.155-0.197,0.415-0.303,0.737c-0.105,0.54-0.161,1.102-0.153,1.672 c0.06,4.353,3.581,7.891,8.007,8.225C11,29.616,10.995,29.611,10.993,29.606z" fill="url(#SVGID_11_)"/>
-<path d="M21.933,48.33c-0.311,0.874-0.481,1.802-0.47,2.769 c0.031,2.291,1.062,4.354,2.695,5.889c2.064,0.771,3.951,1.047,4.689,1.01c0,0,1.002-0.118,2.367-0.597 c0.492-0.171-6.277-7.469-8.48-9.823L21.933,48.33z" enable-background="new " opacity="0.05"/>
-<path d="M22.125,47.537c-0.313,0.871-0.481,1.799-0.47,2.766 c0.043,3.142,1.947,5.86,4.748,7.363c0.927,0.218,1.705,0.318,2.198,0.331c0.013,0,0.032,0.002,0.045,0c0,0,1-0.115,2.37-0.594 c0.508-0.179-6.761-7.982-8.693-10.055L22.125,47.537z" enable-background="new " opacity="0.1"/>
+<path d="M21.933,48.33c-0.311,0.874-0.481,1.802-0.47,2.769 c0.031,2.291,1.062,4.354,2.695,5.889c2.064,0.771,3.951,1.047,4.689,1.01c0,0,1.002-0.118,2.367-0.597 c0.492-0.171-6.277-7.469-8.48-9.823L21.933,48.33z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M22.125,47.537c-0.313,0.871-0.481,1.799-0.47,2.766 c0.043,3.142,1.947,5.86,4.748,7.363c0.927,0.218,1.705,0.318,2.198,0.331c0.013,0,0.032,0.002,0.045,0c0,0,1-0.115,2.37-0.594 c0.508-0.179-6.761-7.982-8.693-10.055L22.125,47.537z" fill-opacity="0.1" stroke-opacity="0.1"/>
<radialGradient cx="-3005.0166" cy="3996.4961" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="14.9991">
- <stop offset="0.0424" style="stop-color:#D1D8D9"/>
- <stop offset="0.4" style="stop-color:#BBC0C2"/>
- <stop offset="0.7333" style="stop-color:#7C8C91"/>
- <stop offset="1" style="stop-color:#A7B3B7"/>
+<stop offset="0" style="stop-color:#D1D8D9"/>
+<stop offset="0.0424" style="stop-color:#D1D8D9"/>
+<stop offset="0.4" style="stop-color:#BBC0C2"/>
+<stop offset="0.7333" style="stop-color:#7C8C91"/>
+<stop offset="1" style="stop-color:#A7B3B7"/>
</radialGradient>
<path d="M33.125,56.564c0.785-0.42,0.984-0.408,1.625-0.887c1.178-0.891-10.615-10.968-10.615-10.968 l-2.057,2.111c-0.277,0.833-0.428,1.724-0.415,2.648c0.062,4.526,3.869,8.17,8.542,8.24C30.997,57.499,32.036,57.146,33.125,56.564z " fill="url(#SVGID_12_)"/>
-<path d="M11.808,29.311l0.762-0.258c0,0-3.343-14.954-4.669-14.266 c-0.35,0.181-0.515,0.322-0.688,0.481L11.808,29.311z" enable-background="new " fill="#020202" opacity="0.1"/>
+<path d="M11.808,29.311l0.762-0.258c0,0-3.343-14.954-4.669-14.266 c-0.35,0.181-0.515,0.322-0.688,0.481L11.808,29.311z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-3082.8984" x2="-3077.6428" y1="3928.3984" y2="3911.7034">
- <stop offset="0.0424" style="stop-color:#E9F0F2"/>
- <stop offset="0.4" style="stop-color:#D4D9DB"/>
- <stop offset="0.7333" style="stop-color:#98AAAD"/>
- <stop offset="1" style="stop-color:#D0DADE"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.0424" style="stop-color:#E9F0F2"/>
+<stop offset="0.4" style="stop-color:#D4D9DB"/>
+<stop offset="0.7333" style="stop-color:#98AAAD"/>
+<stop offset="1" style="stop-color:#D0DADE"/>
</linearGradient>
<path d="M12.57,29.056l2.016-0.703c0.523-0.176,0.792-0.756,0.676-1.346l-1.356-4.141l-2.734-8.162 c-0.214-0.641-0.854-1.006-1.43-0.813c0,0-0.515,0.211-1.837,0.898L12.57,29.056z" fill="url(#SVGID_13_)"/>
-<path d="M24.135,44.708l-0.563,0.568l10.516,10.866 c0.227-0.158,0.457-0.313,0.662-0.468C35.928,54.784,24.135,44.708,24.135,44.708z" enable-background="new " fill="#020202" opacity="0.1"/>
+<path d="M24.135,44.708l-0.563,0.568l10.516,10.866 c0.227-0.158,0.457-0.313,0.662-0.468C35.928,54.784,24.135,44.708,24.135,44.708z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-3066.7827" x2="-3055.8347" y1="3897.6836" y2="3885.627">
- <stop offset="0.0424" style="stop-color:#E9F0F2"/>
- <stop offset="0.4" style="stop-color:#D4D9DB"/>
- <stop offset="0.7333" style="stop-color:#98AAAD"/>
- <stop offset="1" style="stop-color:#D0DADE"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.0424" style="stop-color:#E9F0F2"/>
+<stop offset="0.4" style="stop-color:#D4D9DB"/>
+<stop offset="0.7333" style="stop-color:#98AAAD"/>
+<stop offset="1" style="stop-color:#D0DADE"/>
</linearGradient>
<path d="M34.749,55.673c1.176-0.889,1.558-1.273,1.558-1.273c0.438-0.448,0.407-1.204-0.071-1.697 l-9.057-9.322c-0.478-0.496-1.222-0.544-1.66-0.097l-1.383,1.425L34.749,55.673z" fill="url(#SVGID_14_)"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="30.414,14.408 30.414,0 0.414,0 0.414,14.41 0,14.824 0.414,15.237 0.414,30 30.414,30 30.414,15.236 30.828,14.821 "/>
-<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" opacity="0.35"/>
+<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.415" x2="15.415" y1="28.6694" y2="12.5688">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.6606" style="stop-color:#E0E1E2"/>
- <stop offset="1" style="stop-color:#B9BCBD"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E0E1E2"/>
+<stop offset="1" style="stop-color:#B9BCBD"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="27.081,28.823 3.749,28.823 3.749,14.473 15.414,5.489 27.081,14.473 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.415" x2="15.415" y1="17.313" y2="28.6013">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.6606" style="stop-color:#E0E1E2"/>
- <stop offset="1" style="stop-color:#B9BCBD"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E0E1E2"/>
+<stop offset="1" style="stop-color:#B9BCBD"/>
</linearGradient>
<path d="M15.414,6.668l10.736,8.264V27.89H4.682V14.932L15.414,6.668 M15.414,5.489L3.749,14.473v14.351 h23.333V14.473L15.414,5.489L15.414,5.489z" fill="url(#SVGID_2__)"/>
-<polygon opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 "/>
+<polygon fill-opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 " stroke-opacity="0.2"/>
<polygon fill="#727272" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,6.655 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.416" x2="15.416" y1="17.9946" y2="29.1519">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<rect fill="url(#SVGID_3__)" height="10.501" width="7.001" x="11.916" y="18.322"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.416" x2="15.416" y1="28.7466" y2="18.3602">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<path d="M17.98,19.257v8.633h-5.133v-8.633H17.98 M18.917,18.322h-7.001v10.501h7.001V18.322L18.917,18.322z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.4136" x2="15.4136" y1="0.0352" y2="17.7271">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="0.2606" style="stop-color:#DE4E29"/>
- <stop offset="1" style="stop-color:#D82E09"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="0.2606" style="stop-color:#DE4E29"/>
+<stop offset="1" style="stop-color:#D82E09"/>
</linearGradient>
<path d="M15.414,5.489l11.667,11.667l2.333-2.333c0,0-12.586-12.554-13.171-13.175 c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333L15.414,5.489z" fill="url(#SVGID_5__)"/>
<radialGradient cx="15.2969" cy="1.7559" gradientUnits="userSpaceOnUse" id="SVGID_6__" r="18.6679">
- <stop offset="0" style="stop-color:#F7D481"/>
- <stop offset="1" style="stop-color:#F5340A"/>
+<stop offset="0" style="stop-color:#F7D481"/>
+<stop offset="1" style="stop-color:#F5340A"/>
</radialGradient>
<path d="M14.553,2.616c0.724-0.688,1.102-0.653,1.689-0.034c0.516,0.549,10.433,10.442,12.705,12.709 l0.467-0.468c0,0-12.586-12.554-13.171-13.175c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14 l0.467,0.465C4.134,13.029,13.917,3.225,14.553,2.616z" fill="url(#SVGID_6__)"/>
-<rect height="1.168" opacity="0.2" width="7.001" x="11.916" y="18.322"/>
+<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.916" y="18.322"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_voip_work.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_voip_work.svg Thu May 27 13:10:59 2010 +0300
@@ -1,104 +1,111 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2162.3384" x2="-2162.3384" y1="3603.7246" y2="3654.8755">
- <stop offset="0" style="stop-color:#004E8C"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#004E8C"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<circle cx="31.662" cy="27.76" fill="url(#SVGID_1_)" r="25.76"/>
<radialGradient cx="-2106.918" cy="3745.7734" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="32.2687">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<path d="M56.761,27.759c0,13.864-11.234,25.097-25.099,25.097c-13.863,0-25.101-11.232-25.101-25.097 c0-13.859,11.239-25.099,25.101-25.099C45.53,2.66,56.761,13.899,56.761,27.759z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2162.3384" x2="-2162.3384" y1="3654.5078" y2="3603.9641">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#88D6EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#88D6EB"/>
</linearGradient>
-<path d="M31.663,2.66c-13.863,0-25.101,11.239-25.101,25.099 c0,13.864,11.239,25.097,25.101,25.097c13.864,0,25.099-11.232,25.099-25.097C56.761,13.899,45.53,2.66,31.663,2.66z M31.663,50.659 c-13.033,0-23.638-10.598-23.638-23.63c0-13.034,10.603-23.637,23.638-23.637c13.033,0,23.634,10.603,23.634,23.637 C55.296,40.06,44.696,50.659,31.663,50.659z" enable-background="new " fill="url(#SVGID_3_)" opacity="0.3"/>
+<path d="M31.663,2.66c-13.863,0-25.101,11.239-25.101,25.099 c0,13.864,11.239,25.097,25.101,25.097c13.864,0,25.099-11.232,25.099-25.097C56.761,13.899,45.53,2.66,31.663,2.66z M31.663,50.659 c-13.033,0-23.638-10.598-23.638-23.63c0-13.034,10.603-23.637,23.638-23.637c13.033,0,23.634,10.603,23.634,23.637 C55.296,40.06,44.696,50.659,31.663,50.659z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2187.0283" x2="-2183.0366" y1="3625.7734" y2="3625.7734">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M8.918,27.351c-0.268-0.357-0.871-0.357-1.137-0.357 c-0.525,0-0.804,0.376-0.809,0.742v0.023l0.001,0.038c-0.001,0.646,0.035,1.37,0.113,2.251c0.016,0.164,0.036,0.331,0.057,0.498 l0.028,0.241c0.067,0.521,0.145,1.033,0.235,1.531l0.041,0.218c0.038,0.198,0.075,0.391,0.117,0.583 c0.107,0.488,0.238,0.993,0.399,1.552c0.023,0.08,0.044,0.159,0.065,0.239c0.036,0.132,0.07,0.261,0.11,0.388l0.006,0.017 l0.014,0.04c-0.003-0.012-0.009-0.028-0.012-0.045l1.44-0.097c0.022-0.227,0.028-0.46,0.022-0.691 c-0.012-0.364-0.025-0.813-0.129-1.191l1.337-1.796l0.145-0.194v-0.244v-1.4v-0.303l-0.215-0.215L8.918,27.351z" enable-background="new " fill="url(#SVGID_4_)" opacity="0.3"/>
+<path d="M8.918,27.351c-0.268-0.357-0.871-0.357-1.137-0.357 c-0.525,0-0.804,0.376-0.809,0.742v0.023l0.001,0.038c-0.001,0.646,0.035,1.37,0.113,2.251c0.016,0.164,0.036,0.331,0.057,0.498 l0.028,0.241c0.067,0.521,0.145,1.033,0.235,1.531l0.041,0.218c0.038,0.198,0.075,0.391,0.117,0.583 c0.107,0.488,0.238,0.993,0.399,1.552c0.023,0.08,0.044,0.159,0.065,0.239c0.036,0.132,0.07,0.261,0.11,0.388l0.006,0.017 l0.014,0.04c-0.003-0.012-0.009-0.028-0.012-0.045l1.44-0.097c0.022-0.227,0.028-0.46,0.022-0.691 c-0.012-0.364-0.025-0.813-0.129-1.191l1.337-1.796l0.145-0.194v-0.244v-1.4v-0.303l-0.215-0.215L8.918,27.351z" fill="url(#SVGID_4_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2179.3354" x2="-2137.5874" y1="3633.083" y2="3633.083">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M56.406,22.84c-0.019-0.094-0.034-0.161-0.052-0.229 c-0.013-0.051-0.024-0.101-0.034-0.15c-0.128-0.595-0.285-1.208-0.472-1.832l-0.02-0.071c-0.041-0.14-0.082-0.281-0.127-0.42 c-0.227-0.706-0.473-1.38-0.732-2.003c-0.031-0.078-0.066-0.149-0.1-0.226l-0.055-0.119c-0.246-0.57-0.523-1.139-0.813-1.688 l-0.036-0.071c-0.057-0.107-0.111-0.216-0.17-0.321c-0.354-0.642-0.728-1.251-1.103-1.819c-0.04-0.06-0.085-0.122-0.13-0.184 c-0.027-0.038-0.054-0.075-0.078-0.111c-0.363-0.525-0.743-1.037-1.138-1.525l-0.076-0.099c-0.053-0.065-0.106-0.133-0.161-0.199 c-0.459-0.55-0.941-1.08-1.441-1.583c-0.068-0.067-0.139-0.138-0.211-0.209l-0.061-0.057c-0.45-0.44-0.93-0.878-1.422-1.289 l-0.097-0.083c-0.05-0.046-0.101-0.087-0.15-0.128c-0.536-0.441-1.118-0.875-1.725-1.291c-0.075-0.052-0.153-0.101-0.229-0.15 l-0.092-0.061c-0.546-0.362-1.115-0.709-1.688-1.023l-0.085-0.052c-0.049-0.028-0.096-0.054-0.144-0.082 c-0.636-0.341-1.3-0.66-1.976-0.951l-0.17-0.068l-0.186-0.077c-0.177-0.073-0.355-0.136-0.531-0.197 c-0.093-0.03-0.182-0.063-0.275-0.097l-0.339-0.127l-0.308,0.195c-0.203,0.129-1.01,0.589-1.484,0.859 c-0.526-0.07-1.801-0.23-3.089-0.355c0.396-0.036,0.946-0.082,1.719-0.133l0.108-1.446l-0.059-0.017 c-0.047-0.012-0.092-0.024-0.139-0.035l-0.111-0.021l-0.088-0.017c-0.789-0.159-1.529-0.273-2.264-0.351L34.57,2.925l-0.103-0.011 c-0.84-0.083-1.693-0.127-2.539-0.127c-0.744,0-1.517,0.04-2.361,0.122c-0.13,0.013-0.256,0.025-0.385,0.038 C28.35,3.041,27.62,3.151,26.93,3.292l-0.024,0.002l-0.017,0.003c-0.727,0.149-1.457,0.338-2.232,0.573 c-0.068,0.022-0.139,0.044-0.207,0.067l-0.156,0.052c-0.658,0.212-1.303,0.444-1.92,0.7c-0.051,0.021-0.086,0.032-0.121,0.046 l-0.094,0.038c-0.678,0.288-1.354,0.615-2.028,0.977c-0.073,0.037-0.142,0.079-0.212,0.118l-0.084,0.054 c-0.189,0.103-0.381,0.223-0.569,0.34l-0.244,0.153l-1.345,0.821l1.494,0.499c0.223,0.076,0.463,0.111,0.711,0.111 c0.805,0,1.582-0.395,2.209-0.713c0.252-0.125,0.627-0.317,0.779-0.346c0.182,0.054,0.369,0.082,0.55,0.082 c0.685,0,1.244-0.368,1.739-0.694l0.135-0.087c0.16-0.052,0.434-0.154,0.98-0.359c0.561-0.209,1.58-0.593,1.854-0.658 c0.527-0.005,1.16-0.079,1.609-0.359c0.422,0.07,1.174,0.188,1.945,0.289c-0.057,0.034-0.112,0.07-0.158,0.115 c-0.251,0.232-1.605,0.642-2.02,0.695c-0.779,0.098-1.092,0.49-1.217,0.801c-0.163,0.403-0.064,0.808,0.094,1.139 c-0.295,0.194-0.656,0.41-0.966,0.575c0,0,0.003-0.015,0.005-0.023c0.111-0.622,0.191-1.071-0.11-1.431 c-0.153-0.184-0.38-0.289-0.624-0.289c-0.354,0-0.631,0.22-0.854,0.436c-0.626,0.604-1.004,1.356-1.145,1.641l-0.026,0.052 l-0.023,0.042c-0.271,0.519-0.382,0.887-0.231,2.028c-0.064,0.05-0.264,0.124-0.534,0.124c-0.036,0-0.07-0.001-0.095-0.004 c-0.176-0.189-0.42-0.298-0.693-0.298l0,0c-0.63,0-1.488,0.709-2.551,2.107l-0.342,0.451l0.347,0.446l0.323,0.411 c-5.066,3.918-5.104,4.14-5.157,4.468c-0.009,0.03-0.054,0.165-0.115,0.352c-0.754,2.348-1.174,4.104-0.765,5.044 c0.942,2.179,2.006,4.212,3.383,4.325c0.122,0.01,0.256,0.015,0.398,0.015c1.265,0,3.311-0.382,4.295-0.584 c0.182,0.341,0.402,0.738,0.527,0.956l0.217,0.39l0.445-0.015c0.004,0,0.239-0.009,0.539-0.009c0.342,0,0.573,0.011,0.723,0.021 c0.536,1.571,1.563,5.189,1.373,5.943l-0.004,0.002c-1.732,2.597,0.368,5.982,1.377,7.607c0.078,0.129,0.15,0.244,0.213,0.345 c0.389,1.108,0.861,1.841,1.856,1.841c0.075,0,0.149-0.004,0.227-0.01c0.058-0.002,0.115-0.004,0.175-0.004 c0.109,0,0.189,0.012,0.271,0.042l0.09,0.032l0.097,0.008c0.187,0.016,0.368,0.042,0.544,0.068c0.309,0.042,0.625,0.084,0.947,0.084 c0.868,0,1.555-0.327,2.148-1.028c0.023-0.003,0.044-0.005,0.067-0.008c0.622-0.086,0.854-0.398,0.935-0.678 c0.045-0.047,0.107-0.104,0.157-0.15c0.245-0.226,0.538-0.493,0.739-0.811c0.091-0.054,0.193-0.114,0.311-0.183 c0.2-0.124,0.428-0.26,0.605-0.352c0.157-0.05,0.297-0.142,0.401-0.271c0.251-0.31,0.2-0.659,0.157-0.941 c-0.041-0.291-0.084-0.592,0.072-0.911c0.889-0.428,2.466-1.479,2.721-1.652l-0.002,0.021c-0.016,0.141-0.057,0.517-0.119,0.757 c-0.336,0.335-0.617,0.845-0.704,1.018l-0.06,0.113l-0.018,0.125c-0.023,0.164-0.113,1.021,0.367,1.575 c0.242,0.277,0.59,0.432,0.978,0.432c0.124,0,0.253-0.016,0.384-0.047c1.234-0.279,3.426-3.249,3.604-4.888 c0.086-0.789-0.223-1.409-0.846-1.703l-0.465-0.221l-0.367,0.364l-1.352,1.353c-0.457,0.043-0.814,0.179-1.057,0.393 c0.014-0.578-0.043-1.17-0.104-1.745c-0.186-1.74-0.222-2.848,0.846-3.602l0.054-0.04l0.046-0.047 c0.387-0.392,0.813-0.734,1.264-1.099c1.059-0.85,2.152-1.729,2.804-3.315l0.027-0.067c0.209-0.543,0.524-1.361,0.097-1.984 c-0.107-0.155-0.33-0.395-0.75-0.478c0.556-0.225,0.98-0.399,1.023-0.417l0.129-0.052l0.1-0.097l2.281-2.19l0.334-0.321 l-0.146-0.441c-0.021-0.057-0.144-0.401-0.494-0.897c0.666,0.09,1.236,0.251,1.424,0.393c0.069,0.147,0.207,0.477,0.352,0.822 c2.512,5.918,2.863,6.224,3.518,6.233c0.025,0,0.045,0.002,0.061,0.005c0.055,0.002,0.101,0.004,0.145,0.004 c0.371,0,0.584-0.188,0.677-0.303c0.273-0.328,0.196-0.73,0.169-0.88l-0.01-0.052c-0.031-0.354-0.012-1.946,0.039-3.254 c0.004,0.002,0.004,0.006,0.008,0.011l1.346-0.534L56.406,22.84z M36.622,15.6c-0.104,0.004-0.217,0.009-0.338,0.014 c-0.388,0.02-0.828,0.038-1.268,0.038c-1.147,0-1.409-0.142-1.438-0.157c-0.135-0.1-0.275-0.174-0.42-0.226 c0.26-0.059,0.557-0.259,0.863-0.853c0.303,0.586,0.712,1.104,1.342,1.104c0.171,0,0.332-0.043,0.488-0.122 C36.063,15.401,36.413,15.522,36.622,15.6z M36.17,12.397c-0.086,0-0.156-0.004-0.211-0.009c0.059-0.153,0.129-0.243,0.186-0.293 c0.071,0.111,0.169,0.209,0.277,0.294C36.334,12.395,36.252,12.397,36.17,12.397z M31.6,13.933c0.394,0.771,0.686,1.103,0.916,1.246 c-0.57,0.047-1.001,0.409-1.354,0.752c-0.248-0.081-0.678-0.343-0.808-0.526c-0.075-0.106-0.165-0.199-0.265-0.279 C30.713,14.948,31.262,14.369,31.6,13.933z M29.428,13.366l-0.817-0.039l-2.737-0.134c0.332-0.275,0.65-0.534,0.837-0.686 c0.05-0.018,0.246-0.073,0.728-0.073c0.291,0,0.569,0.021,0.746,0.035L29.428,13.366z" enable-background="new " fill="url(#SVGID_5_)" opacity="0.3"/>
+<path d="M56.406,22.84c-0.019-0.094-0.034-0.161-0.052-0.229 c-0.013-0.051-0.024-0.101-0.034-0.15c-0.128-0.595-0.285-1.208-0.472-1.832l-0.02-0.071c-0.041-0.14-0.082-0.281-0.127-0.42 c-0.227-0.706-0.473-1.38-0.732-2.003c-0.031-0.078-0.066-0.149-0.1-0.226l-0.055-0.119c-0.246-0.57-0.523-1.139-0.813-1.688 l-0.036-0.071c-0.057-0.107-0.111-0.216-0.17-0.321c-0.354-0.642-0.728-1.251-1.103-1.819c-0.04-0.06-0.085-0.122-0.13-0.184 c-0.027-0.038-0.054-0.075-0.078-0.111c-0.363-0.525-0.743-1.037-1.138-1.525l-0.076-0.099c-0.053-0.065-0.106-0.133-0.161-0.199 c-0.459-0.55-0.941-1.08-1.441-1.583c-0.068-0.067-0.139-0.138-0.211-0.209l-0.061-0.057c-0.45-0.44-0.93-0.878-1.422-1.289 l-0.097-0.083c-0.05-0.046-0.101-0.087-0.15-0.128c-0.536-0.441-1.118-0.875-1.725-1.291c-0.075-0.052-0.153-0.101-0.229-0.15 l-0.092-0.061c-0.546-0.362-1.115-0.709-1.688-1.023l-0.085-0.052c-0.049-0.028-0.096-0.054-0.144-0.082 c-0.636-0.341-1.3-0.66-1.976-0.951l-0.17-0.068l-0.186-0.077c-0.177-0.073-0.355-0.136-0.531-0.197 c-0.093-0.03-0.182-0.063-0.275-0.097l-0.339-0.127l-0.308,0.195c-0.203,0.129-1.01,0.589-1.484,0.859 c-0.526-0.07-1.801-0.23-3.089-0.355c0.396-0.036,0.946-0.082,1.719-0.133l0.108-1.446l-0.059-0.017 c-0.047-0.012-0.092-0.024-0.139-0.035l-0.111-0.021l-0.088-0.017c-0.789-0.159-1.529-0.273-2.264-0.351L34.57,2.925l-0.103-0.011 c-0.84-0.083-1.693-0.127-2.539-0.127c-0.744,0-1.517,0.04-2.361,0.122c-0.13,0.013-0.256,0.025-0.385,0.038 C28.35,3.041,27.62,3.151,26.93,3.292l-0.024,0.002l-0.017,0.003c-0.727,0.149-1.457,0.338-2.232,0.573 c-0.068,0.022-0.139,0.044-0.207,0.067l-0.156,0.052c-0.658,0.212-1.303,0.444-1.92,0.7c-0.051,0.021-0.086,0.032-0.121,0.046 l-0.094,0.038c-0.678,0.288-1.354,0.615-2.028,0.977c-0.073,0.037-0.142,0.079-0.212,0.118l-0.084,0.054 c-0.189,0.103-0.381,0.223-0.569,0.34l-0.244,0.153l-1.345,0.821l1.494,0.499c0.223,0.076,0.463,0.111,0.711,0.111 c0.805,0,1.582-0.395,2.209-0.713c0.252-0.125,0.627-0.317,0.779-0.346c0.182,0.054,0.369,0.082,0.55,0.082 c0.685,0,1.244-0.368,1.739-0.694l0.135-0.087c0.16-0.052,0.434-0.154,0.98-0.359c0.561-0.209,1.58-0.593,1.854-0.658 c0.527-0.005,1.16-0.079,1.609-0.359c0.422,0.07,1.174,0.188,1.945,0.289c-0.057,0.034-0.112,0.07-0.158,0.115 c-0.251,0.232-1.605,0.642-2.02,0.695c-0.779,0.098-1.092,0.49-1.217,0.801c-0.163,0.403-0.064,0.808,0.094,1.139 c-0.295,0.194-0.656,0.41-0.966,0.575c0,0,0.003-0.015,0.005-0.023c0.111-0.622,0.191-1.071-0.11-1.431 c-0.153-0.184-0.38-0.289-0.624-0.289c-0.354,0-0.631,0.22-0.854,0.436c-0.626,0.604-1.004,1.356-1.145,1.641l-0.026,0.052 l-0.023,0.042c-0.271,0.519-0.382,0.887-0.231,2.028c-0.064,0.05-0.264,0.124-0.534,0.124c-0.036,0-0.07-0.001-0.095-0.004 c-0.176-0.189-0.42-0.298-0.693-0.298l0,0c-0.63,0-1.488,0.709-2.551,2.107l-0.342,0.451l0.347,0.446l0.323,0.411 c-5.066,3.918-5.104,4.14-5.157,4.468c-0.009,0.03-0.054,0.165-0.115,0.352c-0.754,2.348-1.174,4.104-0.765,5.044 c0.942,2.179,2.006,4.212,3.383,4.325c0.122,0.01,0.256,0.015,0.398,0.015c1.265,0,3.311-0.382,4.295-0.584 c0.182,0.341,0.402,0.738,0.527,0.956l0.217,0.39l0.445-0.015c0.004,0,0.239-0.009,0.539-0.009c0.342,0,0.573,0.011,0.723,0.021 c0.536,1.571,1.563,5.189,1.373,5.943l-0.004,0.002c-1.732,2.597,0.368,5.982,1.377,7.607c0.078,0.129,0.15,0.244,0.213,0.345 c0.389,1.108,0.861,1.841,1.856,1.841c0.075,0,0.149-0.004,0.227-0.01c0.058-0.002,0.115-0.004,0.175-0.004 c0.109,0,0.189,0.012,0.271,0.042l0.09,0.032l0.097,0.008c0.187,0.016,0.368,0.042,0.544,0.068c0.309,0.042,0.625,0.084,0.947,0.084 c0.868,0,1.555-0.327,2.148-1.028c0.023-0.003,0.044-0.005,0.067-0.008c0.622-0.086,0.854-0.398,0.935-0.678 c0.045-0.047,0.107-0.104,0.157-0.15c0.245-0.226,0.538-0.493,0.739-0.811c0.091-0.054,0.193-0.114,0.311-0.183 c0.2-0.124,0.428-0.26,0.605-0.352c0.157-0.05,0.297-0.142,0.401-0.271c0.251-0.31,0.2-0.659,0.157-0.941 c-0.041-0.291-0.084-0.592,0.072-0.911c0.889-0.428,2.466-1.479,2.721-1.652l-0.002,0.021c-0.016,0.141-0.057,0.517-0.119,0.757 c-0.336,0.335-0.617,0.845-0.704,1.018l-0.06,0.113l-0.018,0.125c-0.023,0.164-0.113,1.021,0.367,1.575 c0.242,0.277,0.59,0.432,0.978,0.432c0.124,0,0.253-0.016,0.384-0.047c1.234-0.279,3.426-3.249,3.604-4.888 c0.086-0.789-0.223-1.409-0.846-1.703l-0.465-0.221l-0.367,0.364l-1.352,1.353c-0.457,0.043-0.814,0.179-1.057,0.393 c0.014-0.578-0.043-1.17-0.104-1.745c-0.186-1.74-0.222-2.848,0.846-3.602l0.054-0.04l0.046-0.047 c0.387-0.392,0.813-0.734,1.264-1.099c1.059-0.85,2.152-1.729,2.804-3.315l0.027-0.067c0.209-0.543,0.524-1.361,0.097-1.984 c-0.107-0.155-0.33-0.395-0.75-0.478c0.556-0.225,0.98-0.399,1.023-0.417l0.129-0.052l0.1-0.097l2.281-2.19l0.334-0.321 l-0.146-0.441c-0.021-0.057-0.144-0.401-0.494-0.897c0.666,0.09,1.236,0.251,1.424,0.393c0.069,0.147,0.207,0.477,0.352,0.822 c2.512,5.918,2.863,6.224,3.518,6.233c0.025,0,0.045,0.002,0.061,0.005c0.055,0.002,0.101,0.004,0.145,0.004 c0.371,0,0.584-0.188,0.677-0.303c0.273-0.328,0.196-0.73,0.169-0.88l-0.01-0.052c-0.031-0.354-0.012-1.946,0.039-3.254 c0.004,0.002,0.004,0.006,0.008,0.011l1.346-0.534L56.406,22.84z M36.622,15.6c-0.104,0.004-0.217,0.009-0.338,0.014 c-0.388,0.02-0.828,0.038-1.268,0.038c-1.147,0-1.409-0.142-1.438-0.157c-0.135-0.1-0.275-0.174-0.42-0.226 c0.26-0.059,0.557-0.259,0.863-0.853c0.303,0.586,0.712,1.104,1.342,1.104c0.171,0,0.332-0.043,0.488-0.122 C36.063,15.401,36.413,15.522,36.622,15.6z M36.17,12.397c-0.086,0-0.156-0.004-0.211-0.009c0.059-0.153,0.129-0.243,0.186-0.293 c0.071,0.111,0.169,0.209,0.277,0.294C36.334,12.395,36.252,12.397,36.17,12.397z M31.6,13.933c0.394,0.771,0.686,1.103,0.916,1.246 c-0.57,0.047-1.001,0.409-1.354,0.752c-0.248-0.081-0.678-0.343-0.808-0.526c-0.075-0.106-0.165-0.199-0.265-0.279 C30.713,14.948,31.262,14.369,31.6,13.933z M29.428,13.366l-0.817-0.039l-2.737-0.134c0.332-0.275,0.65-0.534,0.837-0.686 c0.05-0.018,0.246-0.073,0.728-0.073c0.291,0,0.569,0.021,0.746,0.035L29.428,13.366z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="-2106.0845" cy="3754.9141" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="29.4754">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
<path d="M7.703,27.745L7.703,27.745c0,0.009,0.001,0.014,0.001,0.022c0,0.747,0.047,1.484,0.112,2.218 c0.021,0.236,0.056,0.476,0.083,0.718c0.065,0.5,0.14,0.998,0.228,1.488c0.051,0.258,0.097,0.521,0.152,0.774 c0.114,0.508,0.244,1.008,0.386,1.501c0.06,0.204,0.107,0.411,0.169,0.61c0.009,0.023,0.019,0.04,0.023,0.061 c0.02-0.189,0.026-0.39,0.02-0.594C8.83,33.103,8.6,33.288,8.6,33.288l1.629-2.19v-1.402l-1.91-1.908 C8.319,27.787,7.704,27.69,7.703,27.745z" fill="url(#SVGID_6_)"/>
<radialGradient cx="-2106.0928" cy="3754.918" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="29.4765">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
<path d="M23.042,6.076c0.706,0.233,1.282-0.24,1.939-0.66c0.231-0.049,2.81-1.076,3.089-1.076 s1.216-0.036,1.448-0.409c0,0,4.035,0.702,4.644,0.468c0.33-0.13,1.723-0.24,2.914-0.317c-0.066-0.014-0.127-0.036-0.195-0.05 c-0.064-0.015-0.125-0.023-0.191-0.035c-0.75-0.152-1.505-0.272-2.277-0.35c-0.008,0-0.012,0-0.02-0.003 c-0.81-0.082-1.633-0.124-2.467-0.124c-0.773,0-1.535,0.045-2.291,0.117c-0.133,0.015-0.266,0.025-0.397,0.043 c-0.731,0.079-1.456,0.186-2.165,0.328c-0.013,0.005-0.025,0.005-0.037,0.008c-0.736,0.152-1.459,0.34-2.168,0.559 c-0.121,0.035-0.238,0.077-0.362,0.115c-0.626,0.202-1.248,0.427-1.856,0.678c-0.071,0.031-0.145,0.057-0.215,0.087 c-0.67,0.286-1.322,0.602-1.96,0.941c-0.097,0.053-0.188,0.108-0.282,0.163c-0.271,0.149-0.527,0.32-0.793,0.481 C20.713,7.479,22.349,5.842,23.042,6.076z" fill="url(#SVGID_7_)"/>
<radialGradient cx="-2106.0928" cy="3754.9209" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="29.4743">
- <stop offset="0.3152" style="stop-color:#B2F56E"/>
- <stop offset="0.7273" style="stop-color:#5CBF1B"/>
- <stop offset="1" style="stop-color:#227A00"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.3152" style="stop-color:#B2F56E"/>
+<stop offset="0.7273" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
<path d="M55.685,22.962c-0.026-0.122-0.06-0.237-0.083-0.356c-0.127-0.601-0.28-1.19-0.455-1.773 c-0.045-0.154-0.092-0.316-0.143-0.474c-0.211-0.659-0.445-1.31-0.709-1.941c-0.047-0.112-0.1-0.223-0.15-0.331 c-0.242-0.56-0.504-1.104-0.789-1.639c-0.066-0.128-0.131-0.259-0.199-0.383c-0.336-0.604-0.691-1.194-1.074-1.768 c-0.064-0.1-0.137-0.192-0.203-0.292c-0.35-0.507-0.717-0.997-1.102-1.477c-0.078-0.094-0.152-0.192-0.233-0.287 c-0.442-0.532-0.909-1.044-1.396-1.534c-0.082-0.085-0.172-0.17-0.259-0.252c-0.444-0.437-0.907-0.857-1.387-1.258 c-0.079-0.069-0.157-0.139-0.237-0.206c-0.537-0.439-1.1-0.857-1.678-1.254c-0.1-0.069-0.203-0.135-0.307-0.2 c-0.531-0.354-1.079-0.686-1.643-0.998c-0.074-0.042-0.148-0.087-0.225-0.129c-0.625-0.336-1.262-0.642-1.916-0.924 c-0.117-0.049-0.232-0.096-0.348-0.145c-0.254-0.104-0.521-0.188-0.777-0.282c-0.306,0.195-1.729,1.001-1.729,1.001 s-6.18-0.846-6.602-0.426c-0.423,0.426-2.068,0.854-2.441,0.903c-0.376,0.049-1.151,0.247-0.221,1.396 c-0.139,0.141-2.795,1.99-2.795,1.15s0.594-2.348-0.24-1.54c-0.599,0.577-0.957,1.364-1.034,1.51 c-0.195,0.375-0.315,0.554-0.174,1.632c0.142,1.077-1.719,1.07-1.845,0.791c-0.332-0.746-2.174,1.676-2.174,1.676l0.776,0.996 c0,0-5.421,4.177-5.468,4.456c-0.048,0.282-1.399,3.907-0.93,4.984c0.468,1.079,1.652,3.797,2.771,3.888 c1.47,0.12,5.032-0.673,5.032-0.673c0.097,0.236,0.768,1.43,0.768,1.43s1.747-0.058,1.843,0.133 c0.033,0.063,2.104,6.157,1.422,6.965c-1.632,2.444,0.932,6.024,1.645,7.235c0.715,2.08,1.176,1.148,2.115,1.489 c1.155,0.101,2.129,0.528,3.111-0.735c0.285-0.235,0.77-0.049,0.77-0.376c0-0.183,0.84-0.718,1.057-1.223 c0.226-0.105,0.811-0.498,1.205-0.688c0.36-0.023-0.34-0.986,0.372-2.002c0.769-0.303,2.842-1.7,2.842-1.7 c0.095-2.05-1.01-4.581,1.05-6.033c1.326-1.355,3.068-2.126,3.912-4.183c0.232-0.61,0.756-1.854-0.744-1.48 c-1.41,0.354-2.981,0.435-2.236-0.187c-0.086-0.761-1.022-1.12-1.863-1.863c-0.436-1.028-1.118-2.86-1.118-2.86l-1.491-2.266 l0.186-0.468l1.773,2.609l1.771,2.142c0.65,2.143,1.209,2.33,1.209,2.33c0.98-0.345,3.311-1.305,3.311-1.305l2.281-2.19 c0,0-0.233-0.697-1.16-1.583l-0.703-0.418c-0.152,0.43-0.965,0.59-0.965,0.59l-1.973-2.361l0.733-0.147l0.565,1.076l1.356,0.47 c0,0,0.377-0.274,1.073,0.446c0.568-0.047,2.788,0.108,3.306,0.765c0.102,0.13,2.748,6.739,3.271,6.749 c0.229,0.002,0.395,0.091,0.32-0.309c-0.094-0.188,0-4.338,0.14-5.229c0.354-0.753,0.412-0.002,1.25,1.428 C55.696,23.033,55.692,22.997,55.685,22.962z M32.397,6.947c0.184-0.552,1.258-0.739,1.258-0.739s-0.308,0.568-0.236,0.859 c0.072,0.298-0.49,0.483-0.554,1.182c-0.061,0.694-1.343,0.287-1.447,0.043C31.311,8.049,32.208,7.497,32.397,6.947z M36.993,16.324 c-0.795,0-3.18,0.235-3.834-0.234c-0.658-0.467-1.168,0.05-1.639,0.52c-0.311,0.303-1.434-0.314-1.765-0.782 c-0.325-0.467-1.429-0.434-1.429-0.434l0.251-1.335l-3.171-0.154l-1.802,0.528l-1.694,0.05l0.95-0.454l1.181-0.278 c0,0,1.721-1.414,2.235-1.834c0.435-0.356,2.177-0.155,2.177-0.155l1.91,1.378c0,0-0.424,1.08-0.611,1.312 c0.701-0.047,1.525-1.321,1.525-1.321c-1.488-1.368-1.428-1.832-1.428-1.832l1.963,1.377l0.02,0.012c0,0,0.795,1.874,1.127,1.874 c0.326,0,0.744-1.289,0.744-1.289l0.559-0.142c0.248,0.593,0.715,1.929,1.272,1.614c0.323-0.177,0.854-0.015,1.462,0.218 c0.611,0.235,1.025-0.124,1.521,0.31C38.452,17.195,37.321,16.419,36.993,16.324z M38.239,13.102 c-0.818-0.311-3.587,0.704-2.969-0.957c0.33-0.896,1.179-1.083,1.469-0.487c0.076,0.247,0.998,0.625,0.99,0.108 c-0.006-0.518,0.928-0.791,1.063-0.406C38.293,11.716,40.737,13.58,38.239,13.102z M43.454,14.675 c-0.453-0.364,0.205-0.679-0.465-1.252c-0.959-0.822-1.708-1.176-0.401-1.841c1.612-0.202,0.263,0.515,0.529,0.943 c0.144,0.23,0.956,0.996,1.593,1.938C45.238,15.244,43.905,15.038,43.454,14.675z" fill="url(#SVGID_8_)"/>
<radialGradient cx="-2106.0933" cy="3754.916" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="29.4698">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
<path d="M44.104,36.019l-1.555,1.552c0,0-0.934,0-0.979,0.378c-0.021,0.159-0.075,0.853-0.23,1.209 c-0.311,0.217-0.684,0.931-0.684,0.931s-0.191,1.382,0.839,1.146C42.526,41.001,45.698,36.77,44.104,36.019z" fill="url(#SVGID_9_)"/>
-<path d="M32.02,52.439c1.859,0,3.664-0.209,5.408-0.589 c-0.047-0.059-0.086-0.12-0.137-0.174l-9.057-9.324c-0.522-0.537-1.239-0.847-1.97-0.847c-0.685,0-1.324,0.265-1.804,0.751 l-1.373,1.418l-0.568,0.573l-0.524,0.537c-1.987-1.927-3.765-4.139-5.697-7.06c-1.067-1.62-1.986-3.592-2.57-4.956l-0.213-0.51 c0,0-0.291-0.718-0.39-0.975l-0.032-0.082c-0.081-0.211-0.153-0.408-0.221-0.601l-0.031-0.083l2.215-0.77 c1.222-0.414,1.915-1.688,1.638-3.071l-0.009-0.045l-1.386-4.235l-2.734-8.158c-0.193-0.582-0.564-1.064-1.032-1.394 c-2.904,4.096-4.617,9.095-4.617,14.496C6.917,41.205,18.155,52.439,32.02,52.439z" enable-background="new " fill="#020202" opacity="0.1"/>
-<path d="M32.02,52.439c1.563,0,3.09-0.15,4.576-0.422l-8.889-9.153 c-0.386-0.396-0.912-0.624-1.442-0.624c-0.485,0-0.936,0.188-1.274,0.531l-1.381,1.42l-0.561,0.568l-0.51,0.523l0.004,0.005 l-0.523,0.535c-2.243-2.087-4.219-4.489-6.334-7.693c-1.095-1.661-2.036-3.678-2.634-5.074l-0.19-0.45l-0.029-0.071 c0,0-0.292-0.723-0.393-0.981l-0.035-0.087c-0.082-0.216-0.156-0.415-0.229-0.614c0,0-0.144-0.406-0.174-0.493l0.085-0.354 l2.731-0.951c0.866-0.294,1.355-1.214,1.161-2.187l-0.008-0.044l-1.373-4.188l-2.734-8.161c-0.144-0.43-0.412-0.781-0.752-1.024 c-2.648,3.98-4.198,8.756-4.198,13.893C6.917,41.205,18.155,52.439,32.02,52.439z" enable-background="new " fill="#020202" opacity="0.2"/>
+<path d="M32.02,52.439c1.859,0,3.664-0.209,5.408-0.589 c-0.047-0.059-0.086-0.12-0.137-0.174l-9.057-9.324c-0.522-0.537-1.239-0.847-1.97-0.847c-0.685,0-1.324,0.265-1.804,0.751 l-1.373,1.418l-0.568,0.573l-0.524,0.537c-1.987-1.927-3.765-4.139-5.697-7.06c-1.067-1.62-1.986-3.592-2.57-4.956l-0.213-0.51 c0,0-0.291-0.718-0.39-0.975l-0.032-0.082c-0.081-0.211-0.153-0.408-0.221-0.601l-0.031-0.083l2.215-0.77 c1.222-0.414,1.915-1.688,1.638-3.071l-0.009-0.045l-1.386-4.235l-2.734-8.158c-0.193-0.582-0.564-1.064-1.032-1.394 c-2.904,4.096-4.617,9.095-4.617,14.496C6.917,41.205,18.155,52.439,32.02,52.439z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M32.02,52.439c1.563,0,3.09-0.15,4.576-0.422l-8.889-9.153 c-0.386-0.396-0.912-0.624-1.442-0.624c-0.485,0-0.936,0.188-1.274,0.531l-1.381,1.42l-0.561,0.568l-0.51,0.523l0.004,0.005 l-0.523,0.535c-2.243-2.087-4.219-4.489-6.334-7.693c-1.095-1.661-2.036-3.678-2.634-5.074l-0.19-0.45l-0.029-0.071 c0,0-0.292-0.723-0.393-0.981l-0.035-0.087c-0.082-0.216-0.156-0.415-0.229-0.614c0,0-0.144-0.406-0.174-0.493l0.085-0.354 l2.731-0.951c0.866-0.294,1.355-1.214,1.161-2.187l-0.008-0.044l-1.373-4.188l-2.734-8.161c-0.144-0.43-0.412-0.781-0.752-1.024 c-2.648,3.98-4.198,8.756-4.198,13.893C6.917,41.205,18.155,52.439,32.02,52.439z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<radialGradient cx="-2983.5728" cy="4023.543" gradientTransform="matrix(0.9654 -0.0107 -0.0107 -0.9654 2968.4299 3872.1846)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="42.6078">
- <stop offset="0.8364" style="stop-color:#E9F0F2"/>
- <stop offset="0.8909" style="stop-color:#AAB1B5"/>
- <stop offset="0.9515" style="stop-color:#7C878C"/>
- <stop offset="1" style="stop-color:#838F94"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.8364" style="stop-color:#E9F0F2"/>
+<stop offset="0.8909" style="stop-color:#AAB1B5"/>
+<stop offset="0.9515" style="stop-color:#7C878C"/>
+<stop offset="1" style="stop-color:#838F94"/>
</radialGradient>
<path d="M22.051,46.847c-2.873-2.563-5.037-5.372-6.979-8.311c-1.865-2.832-3.556-7.079-4.079-8.93 l-7.54-10.621c-0.429,0.711-1.107,3.264-0.794,6.717c0.316,3.454,3.534,11.814,7.313,17.545c3.782,5.731,9.389,11.118,11.269,12.311 c2.959,1.878,6.523,2.493,7.608,2.439c0,0,1.002-0.118,2.367-0.597C31.803,57.196,22.051,46.847,22.051,46.847z" fill="url(#SVGID_10_)"/>
-<path d="M12.413,33.434c-0.661-1.542-1.174-2.953-1.418-3.827L3.658,19.27 c-0.077,0.108-0.12,0.173-0.12,0.173c-0.126,0.207-0.266,0.55-0.406,0.977c-0.142,0.722-0.214,1.466-0.202,2.229 C3.002,28.046,7.083,32.497,12.413,33.434z" enable-background="new " opacity="0.05"/>
-<path d="M12.099,32.685c-0.507-1.242-0.899-2.348-1.104-3.078l-7.363-10.37 C3.548,19.356,3.5,19.429,3.5,19.429c-0.118,0.195-0.25,0.522-0.383,0.925c-0.134,0.682-0.202,1.383-0.19,2.105 C2.997,27.635,6.961,31.889,12.099,32.685z" enable-background="new " opacity="0.05"/>
-<path d="M3.443,19.407c-0.105,0.177-0.226,0.472-0.348,0.839 c-0.123,0.617-0.183,1.256-0.172,1.911c0.064,4.82,3.858,8.755,8.702,9.323c-0.278-0.742-0.495-1.39-0.632-1.874L3.596,19.185 C3.496,19.325,3.443,19.407,3.443,19.407z" enable-background="new " opacity="0.1"/>
+<path d="M12.413,33.434c-0.661-1.542-1.174-2.953-1.418-3.827L3.658,19.27 c-0.077,0.108-0.12,0.173-0.12,0.173c-0.126,0.207-0.266,0.55-0.406,0.977c-0.142,0.722-0.214,1.466-0.202,2.229 C3.002,28.046,7.083,32.497,12.413,33.434z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M12.099,32.685c-0.507-1.242-0.899-2.348-1.104-3.078l-7.363-10.37 C3.548,19.356,3.5,19.429,3.5,19.429c-0.118,0.195-0.25,0.522-0.383,0.925c-0.134,0.682-0.202,1.383-0.19,2.105 C2.997,27.635,6.961,31.889,12.099,32.685z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M3.443,19.407c-0.105,0.177-0.226,0.472-0.348,0.839 c-0.123,0.617-0.183,1.256-0.172,1.911c0.064,4.82,3.858,8.755,8.702,9.323c-0.278-0.742-0.495-1.39-0.632-1.874L3.596,19.185 C3.496,19.325,3.443,19.407,3.443,19.407z" fill-opacity="0.1" stroke-opacity="0.1"/>
<radialGradient cx="-3022.0488" cy="4026.5146" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="14.7389">
- <stop offset="0.0424" style="stop-color:#D1D8D9"/>
- <stop offset="0.4" style="stop-color:#BBC0C2"/>
- <stop offset="0.7333" style="stop-color:#7C8C91"/>
- <stop offset="1" style="stop-color:#A7B3B7"/>
+<stop offset="0" style="stop-color:#D1D8D9"/>
+<stop offset="0.0424" style="stop-color:#D1D8D9"/>
+<stop offset="0.4" style="stop-color:#BBC0C2"/>
+<stop offset="0.7333" style="stop-color:#7C8C91"/>
+<stop offset="1" style="stop-color:#A7B3B7"/>
</radialGradient>
<path d="M10.993,29.606l1.577-0.554c0,0-3.343-14.954-4.669-14.266c-0.667,0.348-0.66,0.538-1.335,1.026 c-2.014,1.464-3.112,3.174-3.112,3.174c-0.092,0.155-0.197,0.415-0.303,0.737c-0.105,0.54-0.161,1.102-0.153,1.672 c0.06,4.353,3.581,7.891,8.007,8.225C11,29.616,10.995,29.611,10.993,29.606z" fill="url(#SVGID_11_)"/>
-<path d="M21.933,48.33c-0.311,0.874-0.481,1.802-0.47,2.769 c0.031,2.291,1.062,4.354,2.695,5.889c2.064,0.771,3.951,1.047,4.689,1.01c0,0,1.002-0.118,2.367-0.597 c0.492-0.171-6.277-7.469-8.48-9.823L21.933,48.33z" enable-background="new " opacity="0.05"/>
-<path d="M22.125,47.537c-0.313,0.871-0.481,1.799-0.47,2.766 c0.043,3.142,1.947,5.86,4.748,7.363c0.927,0.218,1.705,0.318,2.198,0.331c0.013,0,0.032,0.002,0.045,0c0,0,1-0.115,2.37-0.594 c0.508-0.179-6.761-7.982-8.693-10.055L22.125,47.537z" enable-background="new " opacity="0.1"/>
+<path d="M21.933,48.33c-0.311,0.874-0.481,1.802-0.47,2.769 c0.031,2.291,1.062,4.354,2.695,5.889c2.064,0.771,3.951,1.047,4.689,1.01c0,0,1.002-0.118,2.367-0.597 c0.492-0.171-6.277-7.469-8.48-9.823L21.933,48.33z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M22.125,47.537c-0.313,0.871-0.481,1.799-0.47,2.766 c0.043,3.142,1.947,5.86,4.748,7.363c0.927,0.218,1.705,0.318,2.198,0.331c0.013,0,0.032,0.002,0.045,0c0,0,1-0.115,2.37-0.594 c0.508-0.179-6.761-7.982-8.693-10.055L22.125,47.537z" fill-opacity="0.1" stroke-opacity="0.1"/>
<radialGradient cx="-3005.0166" cy="3996.4961" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="14.9991">
- <stop offset="0.0424" style="stop-color:#D1D8D9"/>
- <stop offset="0.4" style="stop-color:#BBC0C2"/>
- <stop offset="0.7333" style="stop-color:#7C8C91"/>
- <stop offset="1" style="stop-color:#A7B3B7"/>
+<stop offset="0" style="stop-color:#D1D8D9"/>
+<stop offset="0.0424" style="stop-color:#D1D8D9"/>
+<stop offset="0.4" style="stop-color:#BBC0C2"/>
+<stop offset="0.7333" style="stop-color:#7C8C91"/>
+<stop offset="1" style="stop-color:#A7B3B7"/>
</radialGradient>
<path d="M33.125,56.564c0.785-0.42,0.984-0.408,1.625-0.887c1.178-0.891-10.615-10.968-10.615-10.968 l-2.057,2.111c-0.277,0.833-0.428,1.724-0.415,2.648c0.062,4.526,3.869,8.17,8.542,8.24C30.997,57.499,32.036,57.146,33.125,56.564z " fill="url(#SVGID_12_)"/>
-<path d="M11.808,29.311l0.762-0.258c0,0-3.343-14.954-4.669-14.266 c-0.35,0.181-0.515,0.322-0.688,0.481L11.808,29.311z" enable-background="new " fill="#020202" opacity="0.1"/>
+<path d="M11.808,29.311l0.762-0.258c0,0-3.343-14.954-4.669-14.266 c-0.35,0.181-0.515,0.322-0.688,0.481L11.808,29.311z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-3082.8984" x2="-3077.6428" y1="3928.3984" y2="3911.7034">
- <stop offset="0.0424" style="stop-color:#E9F0F2"/>
- <stop offset="0.4" style="stop-color:#D4D9DB"/>
- <stop offset="0.7333" style="stop-color:#98AAAD"/>
- <stop offset="1" style="stop-color:#D0DADE"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.0424" style="stop-color:#E9F0F2"/>
+<stop offset="0.4" style="stop-color:#D4D9DB"/>
+<stop offset="0.7333" style="stop-color:#98AAAD"/>
+<stop offset="1" style="stop-color:#D0DADE"/>
</linearGradient>
<path d="M12.57,29.056l2.016-0.703c0.523-0.176,0.792-0.756,0.676-1.346l-1.356-4.141l-2.734-8.162 c-0.214-0.641-0.854-1.006-1.43-0.813c0,0-0.515,0.211-1.837,0.898L12.57,29.056z" fill="url(#SVGID_13_)"/>
-<path d="M24.135,44.708l-0.563,0.568l10.516,10.866 c0.227-0.158,0.457-0.313,0.662-0.468C35.928,54.784,24.135,44.708,24.135,44.708z" enable-background="new " fill="#020202" opacity="0.1"/>
+<path d="M24.135,44.708l-0.563,0.568l10.516,10.866 c0.227-0.158,0.457-0.313,0.662-0.468C35.928,54.784,24.135,44.708,24.135,44.708z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-3066.7827" x2="-3055.8347" y1="3897.6836" y2="3885.627">
- <stop offset="0.0424" style="stop-color:#E9F0F2"/>
- <stop offset="0.4" style="stop-color:#D4D9DB"/>
- <stop offset="0.7333" style="stop-color:#98AAAD"/>
- <stop offset="1" style="stop-color:#D0DADE"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.0424" style="stop-color:#E9F0F2"/>
+<stop offset="0.4" style="stop-color:#D4D9DB"/>
+<stop offset="0.7333" style="stop-color:#98AAAD"/>
+<stop offset="1" style="stop-color:#D0DADE"/>
</linearGradient>
<path d="M34.749,55.673c1.176-0.889,1.558-1.273,1.558-1.273c0.438-0.448,0.407-1.204-0.071-1.697 l-9.057-9.322c-0.478-0.496-1.222-0.544-1.66-0.097l-1.383,1.425L34.749,55.673z" fill="url(#SVGID_14_)"/>
</g>
@@ -106,165 +113,105 @@
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="654.6" x2="654.6" y1="-558.3" y2="-601.7">
-
<stop offset="0" stop-color="#DFE1E6"/>
-
<stop offset="1" stop-color="#BDBEC3"/>
-
</linearGradient>
<rect fill="url(#SVGID_1__)" height="21.5" width="17.33" x="5.158" y="3.499"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="654.6" x2="654.6" y1="-558.9" y2="-602.2">
-
<stop offset="0" stop-color="#E7E9EF"/>
-
<stop offset="1" stop-color="#C8C9CE"/>
-
</linearGradient>
<path d="M21.99,3.999v20.5h-16.33v-20.5h16.33m0.5-0.501h-17.33v21.5h17.33v-21.5z" fill="url(#SVGID_2__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="642.6" x2="642.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_3__)" height="3" width="3" x="6.324" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="650.6" x2="650.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_4__)" height="3" width="3" x="10.32" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="666.6" x2="666.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_5__)" height="3" width="3" x="18.32" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="658.6" x2="658.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_6__)" height="3" width="3" x="14.32" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_7__" x1="642.6" x2="642.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_7__)" height="3" width="3" x="6.324" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_8__" x1="650.6" x2="650.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_8__)" height="3" width="3" x="10.32" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_9__" x1="666.6" x2="666.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_9__)" height="3" width="3" x="18.32" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_10__" x1="658.6" x2="658.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_10__)" height="3" width="3" x="14.32" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_11__" x1="642.6" x2="642.6" y1="-594.5" y2="-588.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_11__)" height="3" width="3" x="6.324" y="18.46"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_12__" x1="650.6" x2="650.6" y1="-594.5" y2="-588.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_12__)" height="3" width="3" x="10.32" y="18.46"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_13__" x1="666.6" x2="666.6" y1="-594.5" y2="-588.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_13__)" height="3" width="3" x="18.32" y="18.46"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_14__" x1="658.6" x2="658.6" y1="-594.5" y2="-588.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_14__)" height="3" width="3" x="14.32" y="18.46"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="642.6" x2="642.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_15_)" height="3" width="3" x="6.324" y="13.96"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="650.6" x2="650.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_16_)" height="3" width="3" x="10.32" y="13.96"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="666.6" x2="666.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_17_)" height="3" width="3" x="18.32" y="13.96"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="658.6" x2="658.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_18_)" height="3" width="3" x="14.32" y="13.96"/>
-<polygon opacity="0.3" points="22.49,25,22.49,14.85,12.51,11.92,12.51,25" style="enable-background:new;"/>
+<polygon fill-opacity="0.3" points="22.49,25,22.49,14.85,12.51,11.92,12.51,25" stroke-opacity="0.3" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="665.4" x2="665.4" y1="-582.2" y2="-604.8">
-
<stop offset="0" stop-color="#CCCCCC"/>
-
<stop offset="1" stop-color="#949494"/>
-
</linearGradient>
<polygon fill="url(#SVGID_19_)" points="24.84,16.25,13.51,12.92,13.51,26.5,24.84,26.5"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="665.4" x2="665.4" y1="-582" y2="-605.1">
-
<stop offset="0" stop-color="#DBDDE2"/>
-
<stop offset="1" stop-color="#B5B6BA"/>
-
</linearGradient>
<path d="M14.01,13.58l10.33,3.039v9.38h-10.33v-12.42m-0.5-0.665v13.58h11.33v-10.25l-11.33-3.33z" fill="url(#SVGID_20_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_camera.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_camera.svg Thu May 27 13:10:59 2010 +0300
@@ -1,121 +1,116 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<rect fill="none" height="60" width="60"/>
<g>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-95.8955" x2="-86.1685" y1="26.209" y2="26.209">
- <stop offset="0" style="stop-color:#F0F0F0"/>
- <stop offset="0.4788" style="stop-color:#7C8284"/>
- <stop offset="1" style="stop-color:#E6E6E6"/>
- </linearGradient>
- <path d="M16.419,15.417v-3.748c0-0.885-0.653-1.544-1.453-1.544H8.124c-0.799,0-1.456,0.659-1.456,1.544 v3.748H16.419z" fill="url(#SVGID_1_)"/>
-
- <radialGradient cx="-92.3433" cy="12.1729" gradientTransform="matrix(0.931 0 0 -0.9385 97.5175 22.6984)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="3.803">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#D9D9D9"/>
- </radialGradient>
- <path d="M14.967,10.125H8.124c-0.799,0-1.456,0.659-1.456,1.544v0.756c0-0.885,0.657-1.544,1.456-1.544 h6.843c0.8,0,1.453,0.659,1.453,1.544v-0.756C16.419,10.785,15.766,10.125,14.967,10.125z" fill="url(#SVGID_2_)"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-72.52" x2="-72.52" y1="28.4741" y2="-10.9595">
- <stop offset="0.1212" style="stop-color:#D0D4D5"/>
- <stop offset="0.4182" style="stop-color:#B0B6B8"/>
- <stop offset="0.4182" style="stop-color:#9FA6A8"/>
- <stop offset="0.6606" style="stop-color:#7D8588"/>
- <stop offset="0.9697" style="stop-color:#ADB3B5"/>
- <stop offset="0.9697" style="stop-color:#595C5E"/>
- </linearGradient>
- <path d="M55.499,10.563H20.561c-0.824,0-1.499,0.687-1.499,1.528v1.896H4.5C3.676,13.986,3,14.674,3,15.514 v32.833c0,0.841,0.676,1.528,1.499,1.528h51c0.824,0,1.501-0.688,1.501-1.528V12.09C57,11.248,56.323,10.563,55.499,10.563z" fill="url(#SVGID_3_)"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-53.6201" x2="-53.6201" y1="25.9531" y2="19.4839">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#E6E6E6"/>
- </linearGradient>
- <polygon fill="url(#SVGID_4_)" points="53.955,19.492 43.843,19.491 43.847,12.998 53.957,12.999 "/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-53.6196" x2="-53.6196" y1="20.0713" y2="25.4231">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#3B3B3B"/>
- </linearGradient>
- <rect fill="url(#SVGID_5_)" height="5.401" width="8.838" x="44.481" y="13.544"/>
- <path d="M45.764,31.913c-0.004,8.315-6.746,16.519-15.062,16.514 c-8.314-0.003-15.053-8.207-15.053-16.522c0.004-8.318,6.746-15.053,15.063-15.052C39.028,16.856,45.766,23.597,45.764,31.913z" enable-background="new " fill="#231F20" opacity="0.5"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-71.814" x2="-71.814" y1="22.7822" y2="-7.386">
- <stop offset="0.1091" style="stop-color:#CFCFCF"/>
- <stop offset="0.6848" style="stop-color:#121212"/>
- <stop offset="1" style="stop-color:#A6A6A6"/>
- </linearGradient>
- <path d="M45.706,31.304c-0.001,8.285-6.718,14.998-15.004,14.994c-8.283-0.002-14.997-6.721-14.996-15.003 c0.004-8.286,6.722-14.998,15.007-14.996C38.996,16.304,45.708,23.02,45.706,31.304z" fill="url(#SVGID_6_)"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-71.813" x2="-71.813" y1="22.1294" y2="-6.4378">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#606769"/>
- </linearGradient>
- <path d="M44.956,31.308c-0.003,7.868-6.385,14.245-14.254,14.241c-7.874-0.003-14.252-6.382-14.245-14.254 c0-7.87,6.381-14.248,14.253-14.246C38.583,17.054,44.96,23.437,44.956,31.308z" fill="url(#SVGID_7_)"/>
-
- <linearGradient gradientTransform="matrix(1 3.000000e-004 3.000000e-004 -1 101.8093 38.1828)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-79.3252" x2="-62.8855" y1="15.0825" y2="-1.3573">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.503" style="stop-color:#343434"/>
- <stop offset="0.7515" style="stop-color:#9E9E9E"/>
- <stop offset="1" style="stop-color:#CFCFCF"/>
- </linearGradient>
- <path d="M42.332,31.304c-0.003,6.42-5.213,11.621-11.63,11.62c-6.42-0.001-11.623-5.209-11.62-11.627 c0.002-6.423,5.208-11.626,11.624-11.623C37.13,19.677,42.332,24.881,42.332,31.304z" fill="url(#SVGID_8_)"/>
-
- <radialGradient cx="-71.3799" cy="23.7412" gradientTransform="matrix(0.9226 2.793056e-004 2.793056e-004 -0.9226 97.7313 54.1515)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="13.5274">
- <stop offset="0.5917" style="stop-color:#000000"/>
- <stop offset="0.627" style="stop-color:#050505"/>
- <stop offset="0.7652" style="stop-color:#121212"/>
- <stop offset="0.8876" style="stop-color:#171717"/>
- </radialGradient>
- <circle cx="30.706" cy="31.3" fill="url(#SVGID_9_)" r="10.874"/>
-
- <radialGradient cx="-77.2124" cy="16.4063" gradientTransform="matrix(0.9306 0 0 -0.9306 97.6075 39.1861)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.5485">
- <stop offset="0.4303" style="stop-color:#242424"/>
- <stop offset="0.7818" style="stop-color:#000000"/>
- </radialGradient>
- <circle cx="30.706" cy="31.299" fill="url(#SVGID_10_)" r="9"/>
-
- <radialGradient cx="-77.0063" cy="63.8779" gradientTransform="matrix(0.911 2.793056e-004 2.793056e-004 -0.9111 98.5755 77.6866)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="23.6394">
- <stop offset="0.3091" style="stop-color:#A700F5"/>
- <stop offset="0.4364" style="stop-color:#5E008A"/>
- <stop offset="0.8061" style="stop-color:#0E1402"/>
- </radialGradient>
- <path d="M38.581,31.3c-0.001,4.35-3.529,7.876-7.879,7.874c-4.345-0.002-7.872-3.529-7.872-7.877 c0.005-4.351,3.531-7.872,7.875-7.872C35.059,23.427,38.583,26.952,38.581,31.3z" fill="url(#SVGID_11_)"/>
-
- <radialGradient cx="-74.5239" cy="146.7813" gradientTransform="matrix(0.911 2.793056e-004 2.793056e-004 -0.8674 98.575 165.1664)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="9.5976">
- <stop offset="0" style="stop-color:#48630C"/>
- <stop offset="0.7879" style="stop-color:#000000"/>
- </radialGradient>
- <path d="M38.581,31.575c-0.001,4.14-3.529,7.498-7.879,7.496c-4.345-0.001-7.872-3.36-7.872-7.5 c0,0,2.698,4.573,7.872,4.573C35.879,36.146,38.581,31.575,38.581,31.575z" fill="url(#SVGID_12_)"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-90.6953" x2="-90.6953" y1="20.1304" y2="14.8813">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#E6E6E6"/>
- </linearGradient>
- <circle cx="11.825" cy="21.428" fill="url(#SVGID_13_)" r="2.625"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-90.6958" x2="-90.6958" y1="15.1157" y2="19.8095">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#3B3B3B"/>
- </linearGradient>
- <circle cx="11.824" cy="21.428" fill="url(#SVGID_14_)" r="2.25"/>
- <path d="M11.825,21.659c0.774,0,1.459-0.348,1.931-0.889 c-0.285-0.796-1.038-1.37-1.931-1.37c-0.894,0-1.647,0.573-1.933,1.37C10.364,21.311,11.05,21.659,11.825,21.659z" enable-background="new " fill="#FFFFFF" opacity="0.25"/>
- <polygon enable-background="new " fill="#F1F1F2" opacity="0.2" points="44.699,15.053 53.168,15.085 53.168,13.772 44.699,13.772 "/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-71.854" x2="-71.854" y1="17.3643" y2="7.7548">
- <stop offset="0" style="stop-color:#F8FBFF"/>
- <stop offset="1" style="stop-color:#808080"/>
- </linearGradient>
- <path d="M30.668,31.179c3.489,0,6.777-0.529,9.679-1.461 c-0.823-4.604-4.839-8.102-9.679-8.102c-4.843,0-8.856,3.498-9.682,8.101C23.889,30.649,27.178,31.179,30.668,31.179z" enable-background="new " fill="url(#SVGID_15_)" opacity="0.35"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-72.52" x2="-72.52" y1="28.5479" y2="-10.8621">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.3212" style="stop-color:#E6E6E6"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <path d="M55.499,10.563H20.561c-0.824,0-1.499,0.687-1.499,1.528v1.896H4.5C3.676,13.986,3,14.674,3,15.514 v32.833c0,0.841,0.676,1.528,1.499,1.528c0,0-0.749-0.414-0.749-1.528V15.514c0-0.426,0.337-0.772,0.749-0.772h14.564h0.749v-0.756 v-1.897c0-0.426,0.337-0.772,0.75-0.772h34.939c0.413,0,0.749,0.346,0.749,0.772v36.256c0,1.208-0.749,1.527-0.749,1.527 c0.824,0,1.499-0.688,1.499-1.527V12.09C57,11.248,56.323,10.563,55.499,10.563z" fill="url(#SVGID_16_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-95.8955" x2="-86.1685" y1="26.209" y2="26.209">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="0.4788" style="stop-color:#7C8284"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
+</linearGradient>
+<path d="M16.419,15.417v-3.748c0-0.885-0.653-1.544-1.453-1.544H8.124c-0.799,0-1.456,0.659-1.456,1.544 v3.748H16.419z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="-92.3433" cy="12.1729" gradientTransform="matrix(0.931 0 0 -0.9385 97.5175 22.6984)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="3.803">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
+</radialGradient>
+<path d="M14.967,10.125H8.124c-0.799,0-1.456,0.659-1.456,1.544v0.756c0-0.885,0.657-1.544,1.456-1.544 h6.843c0.8,0,1.453,0.659,1.453,1.544v-0.756C16.419,10.785,15.766,10.125,14.967,10.125z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-72.52" x2="-72.52" y1="28.4741" y2="-10.9595">
+<stop offset="0" style="stop-color:#D0D4D5"/>
+<stop offset="0.1212" style="stop-color:#D0D4D5"/>
+<stop offset="0.4182" style="stop-color:#B0B6B8"/>
+<stop offset="0.4182" style="stop-color:#9FA6A8"/>
+<stop offset="0.6606" style="stop-color:#7D8588"/>
+<stop offset="0.9697" style="stop-color:#ADB3B5"/>
+<stop offset="0.9697" style="stop-color:#595C5E"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
+</linearGradient>
+<path d="M55.499,10.563H20.561c-0.824,0-1.499,0.687-1.499,1.528v1.896H4.5C3.676,13.986,3,14.674,3,15.514 v32.833c0,0.841,0.676,1.528,1.499,1.528h51c0.824,0,1.501-0.688,1.501-1.528V12.09C57,11.248,56.323,10.563,55.499,10.563z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-53.6201" x2="-53.6201" y1="25.9531" y2="19.4839">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
+</linearGradient>
+<polygon fill="url(#SVGID_4_)" points="53.955,19.492 43.843,19.491 43.847,12.998 53.957,12.999 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-53.6196" x2="-53.6196" y1="20.0713" y2="25.4231">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
+</linearGradient>
+<rect fill="url(#SVGID_5_)" height="5.401" width="8.838" x="44.481" y="13.544"/>
+<path d="M45.764,31.913c-0.004,8.315-6.746,16.519-15.062,16.514 c-8.314-0.003-15.053-8.207-15.053-16.522c0.004-8.318,6.746-15.053,15.063-15.052C39.028,16.856,45.766,23.597,45.764,31.913z" fill="#231F20" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-71.814" x2="-71.814" y1="22.7822" y2="-7.386">
+<stop offset="0" style="stop-color:#CFCFCF"/>
+<stop offset="0.1091" style="stop-color:#CFCFCF"/>
+<stop offset="0.6848" style="stop-color:#121212"/>
+<stop offset="1" style="stop-color:#A6A6A6"/>
+</linearGradient>
+<path d="M45.706,31.304c-0.001,8.285-6.718,14.998-15.004,14.994c-8.283-0.002-14.997-6.721-14.996-15.003 c0.004-8.286,6.722-14.998,15.007-14.996C38.996,16.304,45.708,23.02,45.706,31.304z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-71.813" x2="-71.813" y1="22.1294" y2="-6.4378">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#606769"/>
+</linearGradient>
+<path d="M44.956,31.308c-0.003,7.868-6.385,14.245-14.254,14.241c-7.874-0.003-14.252-6.382-14.245-14.254 c0-7.87,6.381-14.248,14.253-14.246C38.583,17.054,44.96,23.437,44.956,31.308z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 3.000000e-004 3.000000e-004 -1 101.8093 38.1828)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-79.3252" x2="-62.8855" y1="15.0825" y2="-1.3573">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.503" style="stop-color:#343434"/>
+<stop offset="0.7515" style="stop-color:#9E9E9E"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
+</linearGradient>
+<path d="M42.332,31.304c-0.003,6.42-5.213,11.621-11.63,11.62c-6.42-0.001-11.623-5.209-11.62-11.627 c0.002-6.423,5.208-11.626,11.624-11.623C37.13,19.677,42.332,24.881,42.332,31.304z" fill="url(#SVGID_8_)"/>
+<radialGradient cx="-71.3799" cy="23.7412" gradientTransform="matrix(0.9226 2.793056e-004 2.793056e-004 -0.9226 97.7313 54.1515)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="13.5274">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5917" style="stop-color:#000000"/>
+<stop offset="0.627" style="stop-color:#050505"/>
+<stop offset="0.7652" style="stop-color:#121212"/>
+<stop offset="0.8876" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#171717"/>
+</radialGradient>
+<circle cx="30.706" cy="31.3" fill="url(#SVGID_9_)" r="10.874"/>
+<radialGradient cx="-77.2124" cy="16.4063" gradientTransform="matrix(0.9306 0 0 -0.9306 97.6075 39.1861)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.5485">
+<stop offset="0" style="stop-color:#242424"/>
+<stop offset="0.4303" style="stop-color:#242424"/>
+<stop offset="0.7818" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
+</radialGradient>
+<circle cx="30.706" cy="31.299" fill="url(#SVGID_10_)" r="9"/>
+<radialGradient cx="-77.0063" cy="63.8779" gradientTransform="matrix(0.911 2.793056e-004 2.793056e-004 -0.9111 98.5755 77.6866)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="23.6394">
+<stop offset="0" style="stop-color:#A700F5"/>
+<stop offset="0.3091" style="stop-color:#A700F5"/>
+<stop offset="0.4364" style="stop-color:#5E008A"/>
+<stop offset="0.8061" style="stop-color:#0E1402"/>
+<stop offset="1" style="stop-color:#0E1402"/>
+</radialGradient>
+<path d="M38.581,31.3c-0.001,4.35-3.529,7.876-7.879,7.874c-4.345-0.002-7.872-3.529-7.872-7.877 c0.005-4.351,3.531-7.872,7.875-7.872C35.059,23.427,38.583,26.952,38.581,31.3z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="-74.5239" cy="146.7813" gradientTransform="matrix(0.911 2.793056e-004 2.793056e-004 -0.8674 98.575 165.1664)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="9.5976">
+<stop offset="0" style="stop-color:#48630C"/>
+<stop offset="0.7879" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
+</radialGradient>
+<path d="M38.581,31.575c-0.001,4.14-3.529,7.498-7.879,7.496c-4.345-0.001-7.872-3.36-7.872-7.5 c0,0,2.698,4.573,7.872,4.573C35.879,36.146,38.581,31.575,38.581,31.575z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-90.6953" x2="-90.6953" y1="20.1304" y2="14.8813">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
+</linearGradient>
+<circle cx="11.825" cy="21.428" fill="url(#SVGID_13_)" r="2.625"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-90.6958" x2="-90.6958" y1="15.1157" y2="19.8095">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
+</linearGradient>
+<circle cx="11.824" cy="21.428" fill="url(#SVGID_14_)" r="2.25"/>
+<path d="M11.825,21.659c0.774,0,1.459-0.348,1.931-0.889 c-0.285-0.796-1.038-1.37-1.931-1.37c-0.894,0-1.647,0.573-1.933,1.37C10.364,21.311,11.05,21.659,11.825,21.659z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
+<polygon fill="#F1F1F2" fill-opacity="0.2" points="44.699,15.053 53.168,15.085 53.168,13.772 44.699,13.772 " stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-71.854" x2="-71.854" y1="17.3643" y2="7.7548">
+<stop offset="0" style="stop-color:#F8FBFF"/>
+<stop offset="1" style="stop-color:#808080"/>
+</linearGradient>
+<path d="M30.668,31.179c3.489,0,6.777-0.529,9.679-1.461 c-0.823-4.604-4.839-8.102-9.679-8.102c-4.843,0-8.856,3.498-9.682,8.101C23.889,30.649,27.178,31.179,30.668,31.179z" fill="url(#SVGID_15_)" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-72.52" x2="-72.52" y1="28.5479" y2="-10.8621">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.3212" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#666666"/>
+</linearGradient>
+<path d="M55.499,10.563H20.561c-0.824,0-1.499,0.687-1.499,1.528v1.896H4.5C3.676,13.986,3,14.674,3,15.514 v32.833c0,0.841,0.676,1.528,1.499,1.528c0,0-0.749-0.414-0.749-1.528V15.514c0-0.426,0.337-0.772,0.749-0.772h14.564h0.749v-0.756 v-1.897c0-0.426,0.337-0.772,0.75-0.772h34.939c0.413,0,0.749,0.346,0.749,0.772v36.256c0,1.208-0.749,1.527-0.749,1.527 c0.824,0,1.499-0.688,1.499-1.527V12.09C57,11.248,56.323,10.563,55.499,10.563z" fill="url(#SVGID_16_)"/>
</g>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_car.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_car.svg Thu May 27 13:10:59 2010 +0300
@@ -1,155 +1,79 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.8" x2="12.8" y1="35.35" y2="50.07">
-
<stop offset="0" stop-color="#7B7B7B"/>
-
<stop offset="0.1455" stop-color="#565656"/>
-
<stop offset="0.3091" stop-color="#8C8C8C"/>
-
<stop offset="0.6848" stop-color="#000000"/>
-
<stop offset="1" stop-color="#646464"/>
-
</linearGradient>
-
<path d="M16.68,48.77c0,0.746-0.605,1.352-1.351,1.352h-5.06c-0.747,0-1.352-0.605-1.352-1.352v-12.07c0-0.746,0.604-1.352,1.352-1.352h5.063c0.745,0,1.351,0.605,1.351,1.352v12.07z" fill="url(#SVGID_1_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="47.33" x2="47.33" y1="35.35" y2="50.12">
-
<stop offset="0" stop-color="#7B7B7B"/>
-
<stop offset="0.1455" stop-color="#565656"/>
-
<stop offset="0.3091" stop-color="#8C8C8C"/>
-
<stop offset="0.6848" stop-color="#000000"/>
-
<stop offset="1" stop-color="#646464"/>
-
</linearGradient>
-
<path d="M51.21,48.77c0,0.746-0.604,1.352-1.352,1.352h-5.063c-0.746,0-1.351-0.605-1.351-1.352v-12.07c0-0.746,0.604-1.352,1.351-1.352h5.063c0.747,0,1.352,0.605,1.352,1.352v12.07z" fill="url(#SVGID_2_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="9.878" y2="33.23">
-
<stop offset="0" stop-color="#FEE377"/>
-
<stop offset="0.511" stop-color="#FFC501"/>
-
<stop offset="1" stop-color="#FF8800"/>
-
</linearGradient>
-
<path d="M45.96,12.92c-0.27-0.631-0.71-1.577-2.432-1.892-1.956-0.358-5.486-1.15-13.37-1.15-7.882,0-11.74,0.76-13.69,1.15-1.576,0.314-2.163,1.261-2.433,1.892-0.271,0.631-4.412,9.908-4.774,14.77l2.342,5.314h36.79l2.342-5.314c-0.36-4.86-4.51-14.14-4.78-14.77z" fill="url(#SVGID_3_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="7.499" x2="52.5" y1="35.35" y2="35.35">
-
<stop offset="0" stop-color="#DA8C00"/>
-
<stop offset="0.25" stop-color="#F7B901"/>
-
<stop offset="0.75" stop-color="#FFC501"/>
-
<stop offset="1" stop-color="#DA8C00"/>
-
</linearGradient>
-
<path d="M52.45,30.84c-0.067-0.902-0.405-3.941-4.505-4.662-4.098-0.721-4.746,2.434-7.296,4.527-2.938,2.414-6.791,2.117-10.48,2.117-3.692,0-7.869,0.297-10.81-2.117-2.55-2.094-3.198-5.248-7.296-4.527-4.099,0.721-4.438,3.76-4.504,4.662-0.361,4.863,1.222,10.61,1.892,12.43,0.444,1.211,2.161,1.352,2.161,1.352h36.79s1.675-0.006,2.161-1.352c0.66-1.82,2.26-7.56,1.9-12.43z" fill="url(#SVGID_4_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="12.06" x2="47.95" y1="21.09" y2="21.09">
-
<stop offset="0" stop-color="#FF9000"/>
-
<stop offset="0.511" stop-color="#FFC501"/>
-
<stop offset="1" stop-color="#FF8800"/>
-
</linearGradient>
-
<path d="M43.53,11.03c-1.956-0.358-5.486-1.15-13.37-1.15-7.882,0-11.74,0.76-13.69,1.15-0.256,0.051-0.48,0.119-0.687,0.199-1.815,3.072-4.801,14.6-3.728,14.42,4.098-0.721,4.746,2.432,7.296,4.525,2.94,2.414,7.117,2.117,10.81,2.117s7.546,0.297,10.48-2.117c2.55-2.094,3.198-5.246,7.296-4.525,1.073,0.188-1.803-11.35-3.688-14.42-0.21-0.09-0.45-0.16-0.72-0.21z" fill="url(#SVGID_5_)"/>
-
<path d="M12.06,26.18c4.098-0.721,4.746,2.434,7.296,4.527,2.94,2.414,7.117,2.117,10.81,2.117s7.546,0.297,10.48-2.117c2.55-2.094,3.198-5.248,7.296-4.527,1.225,0.216,2.107,0.64,2.753,1.149-0.04-0.358-0.093-0.73-0.163-1.121-0.631-0.454-1.465-0.83-2.59-1.028-4.098-0.721-4.746,2.434-7.296,4.527-2.938,2.414-6.791,2.287-10.48,2.287-3.692,0-7.869,0.127-10.81-2.287-2.55-2.094-3.198-5.248-7.296-4.527-1.125,0.198-1.959,0.574-2.589,1.028-0.07,0.391-0.124,0.763-0.164,1.12,0.642-0.51,1.523-0.93,2.753-1.15z" fill="#191919" fill-opacity="0.2" stroke-opacity="0.2"/>
-
<path d="M15.36,12.64c2.108-0.423,6.285-1.245,14.81-1.245s12.34,0.857,14.46,1.245c0.126,0.023,0.243,0.051,0.356,0.08-0.255-0.603-0.504-1.113-0.738-1.494-0.212-0.078-0.451-0.146-0.725-0.195-1.956-0.358-5.486-1.15-13.37-1.15-7.882,0-11.74,0.76-13.69,1.15-0.256,0.051-0.48,0.119-0.687,0.199-0.224,0.378-0.465,0.885-0.714,1.481,0.1-0.04,0.2-0.06,0.3-0.08z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
-
<path d="M10.92,27.73c0.374-0.066,0.729-0.1,1.053-0.1,1.844,0,2.712,1.051,3.914,2.506,0.601,0.725,1.28,1.545,2.15,2.26,2.786,2.287,6.491,2.479,9.747,2.479,0.408,0,0.816-0.002,1.22-0.006,0.393-0.004,0.783-0.006,1.167-0.006,0.388,0,0.777,0.002,1.166,0.006,0.395,0.004,0.791,0.006,1.186,0.006,3.247,0,6.649-0.191,9.437-2.479,0.869-0.715,1.55-1.537,2.149-2.262,1.202-1.453,2.07-2.504,3.913-2.504,0.325,0,0.681,0.033,1.055,0.1,1.315,0.23,2.316,0.721,3.007,1.457-0.471-1.18-1.56-2.553-4.143-3.008-4.098-0.721-4.746,2.434-7.296,4.527-2.938,2.414-6.791,2.117-10.48,2.117-3.692,0-7.869,0.297-10.81-2.117-2.55-2.094-3.198-5.248-7.296-4.527-2.581,0.455-3.67,1.826-4.14,3.006,0.684-0.75,1.685-1.24,3-1.47z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="44.67" y2="40.16">
-
<stop offset="0" stop-color="#565656"/>
-
<stop offset="1" stop-color="#212121"/>
-
</linearGradient>
-
<path d="M43.28,39.76h-26.56c-1.493,0-2.702,1.209-2.702,2.701v2.162h31.97v-2.162c-0.01-1.49-1.22-2.7-2.71-2.7z" fill="url(#SVGID_6_)"/>
-
<path d="M43.28,39.76h-26.56c-1.493,0-2.702,1.209-2.702,2.701v0.811c0-1.492,1.209-2.701,2.702-2.701h26.56c1.492,0,2.702,1.209,2.702,2.701v-0.811c0-1.49-1.21-2.7-2.7-2.7z" fill="#1A1A1A"/>
-
<ellipse cx="12.55" cy="31.72" fill="#191919" fill-opacity="0.2" rx="3.535" ry="3.172" stroke-opacity="0.2" transform="matrix(-0.9635 0.2678 -0.2678 -0.9635 33.1405 58.9116)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="9.062" x2="15.88" y1="32.08" y2="30.19">
-
<stop offset="0" stop-color="#565656"/>
-
<stop offset="0.489" stop-color="#000000"/>
-
<stop offset="1" stop-color="#646464"/>
-
</linearGradient>
-
<path d="M9.063,32.08c0.47,1.688,2.374,2.631,4.255,2.109,1.882-0.523,3.026-2.314,2.558-4.004-0.47-1.688-2.375-2.631-4.256-2.107-1.883,0.52-3.028,2.31-2.557,4z" fill="url(#SVGID_7_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="12.2" x2="12.2" y1="28.05" y2="32.98">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="1" stop-color="#949DA1"/>
-
</linearGradient>
-
<path d="M12,32.98c-1.176,0-2.15-0.668-2.427-1.66-0.165-0.592-0.059-1.225,0.299-1.785,0.376-0.588,0.977-1.02,1.693-1.219,0.274-0.076,0.554-0.115,0.83-0.115,1.177,0,2.151,0.668,2.428,1.66,0.349,1.254-0.546,2.602-1.994,3.004-0.27,0.08-0.55,0.12-0.83,0.12z" fill="url(#SVGID_8_)"/>
-
<ellipse cx="47.4" cy="31.72" fill="#191919" fill-opacity="0.2" rx="3.535" ry="3.172" stroke-opacity="0.2" transform="matrix(0.9635 0.2678 -0.2678 0.9635 10.2266 -11.5377)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="44.02" x2="51.04" y1="31.13" y2="31.13">
-
<stop offset="0" stop-color="#565656"/>
-
<stop offset="0.489" stop-color="#000000"/>
-
<stop offset="1" stop-color="#646464"/>
-
</linearGradient>
-
<path d="M50.94,32.08c-0.469,1.688-2.374,2.631-4.254,2.109-1.882-0.523-3.027-2.314-2.558-4.004,0.47-1.688,2.375-2.631,4.255-2.107,1.88,0.52,3.02,2.31,2.56,4z" fill="url(#SVGID_9_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="47.8" x2="47.8" y1="28.09" y2="33.05">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="1" stop-color="#949DA1"/>
-
</linearGradient>
-
<path d="M48,32.98c-0.279,0-0.558-0.039-0.83-0.115-1.448-0.402-2.343-1.75-1.994-3.004,0.276-0.992,1.251-1.66,2.428-1.66,0.277,0,0.557,0.039,0.83,0.115,0.717,0.199,1.318,0.633,1.693,1.219,0.358,0.561,0.464,1.193,0.299,1.785-0.28,0.99-1.26,1.66-2.43,1.66z" fill="url(#SVGID_10_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="30" x2="30" y1="12.81" y2="24.63">
-
<stop offset="0" stop-color="#4D4D4D"/>
-
<stop offset="1" stop-color="#000000"/>
-
</linearGradient>
-
<path d="M47.27,23.35c-0.226-0.722-2.567-8.243-2.567-8.243s-0.067-0.812-1.081-1.014c-0.992-0.198-5.62-1.284-13.73-1.284-8.106,0-12.52,1.086-13.51,1.284-1.014,0.202-1.081,1.014-1.081,1.014s-2.341,7.521-2.566,8.243c-0.169,0.539,0.473,0.473,0.473,0.473s5.519,0.811,16.6,0.811,16.99-0.811,16.99-0.811,0.65,0.07,0.48-0.47z" fill="url(#SVGID_11_)"/>
-
<path d="M43.51,14.62l-0.249-0.052c-3.887-0.811-8.385-1.222-13.37-1.222-7.414,0-11.7,0.91-13.1,1.21-0.123,0.025-0.224,0.047-0.304,0.063-0.563,0.112-0.641,0.47-0.649,0.541l-0.009,0.06-0.013,0.043s-0.959,3.078-1.71,5.489l30.53-4.027c-0.271-0.868-0.456-1.462-0.456-1.462l-0.015-0.059-0.006-0.044c0-0.07-0.07-0.43-0.64-0.54z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
-
<rect fill="none" height="60" width="60"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_cellinfo.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_cellinfo.svg Thu May 27 13:10:59 2010 +0300
@@ -1,99 +1,97 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g transform="matrix(1 0 0 1 -0.001 0)">
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="42.8398" x2="42.8398" y1="14.1646" y2="45.8403">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</linearGradient>
<path d="M36.798,40.658l0.643-0.473c3.23-2.377,5.16-6.169,5.16-10.144c0-4.03-1.969-7.854-5.27-10.226 l-0.652-0.472l3.785-5.18l0.645,0.466c4.941,3.569,7.893,9.329,7.893,15.412c0,6.022-2.906,11.752-7.771,15.324l-0.646,0.474 L36.798,40.658z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="43" x2="43" y1="15.2793" y2="44.7212">
- <stop offset="0" style="stop-color:#F3FFA8"/>
- <stop offset="0.7455" style="stop-color:#529E24"/>
- <stop offset="1" style="stop-color:#B2D872"/>
+<stop offset="0" style="stop-color:#F3FFA8"/>
+<stop offset="0.7455" style="stop-color:#529E24"/>
+<stop offset="1" style="stop-color:#B2D872"/>
</linearGradient>
<path d="M43.399,30.042c0,4.425-2.166,8.347-5.486,10.788l2.844,3.891c4.512-3.313,7.443-8.652,7.443-14.679 c0-6.079-2.982-11.459-7.561-14.763l-2.84,3.887C41.185,21.601,43.399,25.563,43.399,30.042z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="43.1543" x2="43.1543" y1="16.4082" y2="43.5854">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</linearGradient>
<path d="M39.017,40.984c3.26-2.692,5.184-6.725,5.184-10.942c0-4.278-1.965-8.344-5.293-11.036l1.898-2.598 c4.145,3.291,6.596,8.328,6.596,13.634c0,5.25-2.41,10.253-6.482,13.543L39.017,40.984z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="17.1611" x2="17.1611" y1="14.1646" y2="45.8403">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</linearGradient>
<path d="M18.77,45.366C13.904,41.794,11,36.064,11,30.042c0-6.083,2.95-11.843,7.892-15.412l0.646-0.466 l3.785,5.18l-0.655,0.472c-3.298,2.372-5.267,6.195-5.267,10.226c0,3.975,1.929,7.767,5.16,10.144l0.642,0.473l-3.785,5.182 L18.77,45.366z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="17.0005" x2="17.0005" y1="15.2793" y2="44.7212">
- <stop offset="0" style="stop-color:#F3FFA8"/>
- <stop offset="0.7455" style="stop-color:#529E24"/>
- <stop offset="1" style="stop-color:#B2D872"/>
+<stop offset="0" style="stop-color:#F3FFA8"/>
+<stop offset="0.7455" style="stop-color:#529E24"/>
+<stop offset="1" style="stop-color:#B2D872"/>
</linearGradient>
<path d="M19.243,44.721l2.842-3.891c-3.318-2.441-5.485-6.363-5.485-10.788c0-4.479,2.216-8.441,5.601-10.876 l-2.84-3.887c-4.579,3.304-7.561,8.684-7.561,14.763C11.8,36.068,14.731,41.408,19.243,44.721z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="16.8462" x2="16.8462" y1="16.4082" y2="43.5854">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</linearGradient>
<path d="M19.081,43.585c-4.072-3.29-6.481-8.293-6.481-13.543c0-5.306,2.451-10.343,6.595-13.634l1.898,2.598 c-3.328,2.691-5.293,6.758-5.293,11.036c0,4.218,1.923,8.25,5.183,10.942L19.081,43.585z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="49.9961" x2="49.9961" y1="6.896" y2="53.105">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</linearGradient>
<path d="M42.112,47.93l0.643-0.472c5.539-4.067,8.846-10.577,8.846-17.417c0-6.893-3.35-13.435-8.959-17.499 l-0.65-0.47l3.781-5.176l0.645,0.468c7.254,5.261,11.584,13.737,11.584,22.677c0,8.881-4.285,17.326-11.463,22.59l-0.646,0.474 L42.112,47.93z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="50.1563" x2="50.1562" y1="8.0127" y2="51.9849">
- <stop offset="0" style="stop-color:#F3FFA8"/>
- <stop offset="0.7455" style="stop-color:#529E24"/>
- <stop offset="1" style="stop-color:#B2D872"/>
+<stop offset="0" style="stop-color:#F3FFA8"/>
+<stop offset="0.7455" style="stop-color:#529E24"/>
+<stop offset="1" style="stop-color:#B2D872"/>
</linearGradient>
<path d="M52.399,30.041c0,7.406-3.615,13.98-9.172,18.063l2.838,3.881C52.815,47.035,57.2,39.051,57.2,30.041 c0-9.063-4.436-17.086-11.252-22.028l-2.836,3.883C48.733,15.969,52.399,22.583,52.399,30.041z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="50.3115" x2="50.3115" y1="9.1377" y2="50.856">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</linearGradient>
<path d="M44.337,48.264c5.564-4.389,8.863-11.143,8.863-18.223c0-7.138-3.342-13.922-8.977-18.312 l1.893-2.592c6.455,4.986,10.283,12.739,10.283,20.903c0,8.107-3.785,15.828-10.168,20.814L44.337,48.264z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.0039" x2="10.0039" y1="6.896" y2="53.105">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</linearGradient>
<path d="M13.461,52.631C6.285,47.367,2,38.922,2,30.041c0-8.94,4.33-17.416,11.582-22.677l0.646-0.468 l3.781,5.176l-0.65,0.47C11.749,16.606,8.4,23.148,8.4,30.041c0,6.84,3.307,13.35,8.845,17.417l0.643,0.472l-3.781,5.175 L13.461,52.631z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="9.8442" x2="9.8442" y1="8.0127" y2="51.9849">
- <stop offset="0" style="stop-color:#F3FFA8"/>
- <stop offset="0.7455" style="stop-color:#529E24"/>
- <stop offset="1" style="stop-color:#B2D872"/>
+<stop offset="0" style="stop-color:#F3FFA8"/>
+<stop offset="0.7455" style="stop-color:#529E24"/>
+<stop offset="1" style="stop-color:#B2D872"/>
</linearGradient>
<path d="M13.935,51.984l2.836-3.881C11.215,44.021,7.6,37.447,7.6,30.041c0-7.458,3.667-14.072,9.289-18.145 l-2.837-3.883C7.236,12.955,2.8,20.979,2.8,30.041C2.8,39.051,7.185,47.035,13.935,51.984z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="9.688" x2="9.688" y1="9.1377" y2="50.856">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</linearGradient>
<path d="M13.769,50.855C7.386,45.869,3.6,38.148,3.6,30.041c0-8.164,3.83-15.917,10.283-20.903l1.894,2.592 C10.141,16.119,6.8,22.903,6.8,30.041c0,7.08,3.299,13.834,8.863,18.223L13.769,50.855z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="29.9995" x2="29.9995" y1="21.2617" y2="38.6788">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</linearGradient>
<path d="M29.999,38.799c-4.852,0-8.799-3.947-8.799-8.799c0-4.854,3.948-8.801,8.799-8.801 c4.854,0,8.801,3.947,8.801,8.801C38.8,34.852,34.853,38.799,29.999,38.799L29.999,38.799z" fill="url(#SVGID_13_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="30" x2="30" y1="22.0557" y2="37.8893">
- <stop offset="0" style="stop-color:#F3FFA8"/>
- <stop offset="0.7455" style="stop-color:#529E24"/>
- <stop offset="1" style="stop-color:#B2D872"/>
+<stop offset="0" style="stop-color:#F3FFA8"/>
+<stop offset="0.7455" style="stop-color:#529E24"/>
+<stop offset="1" style="stop-color:#B2D872"/>
</linearGradient>
<path d="M29.999,37.998c-4.411,0-8-3.588-8-7.998c0-4.414,3.588-8.001,8-8.001 c4.412,0,8.002,3.587,8.002,8.001C38.001,34.41,34.411,37.998,29.999,37.998L29.999,37.998z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="29.9995" x2="29.9995" y1="22.8486" y2="37.1012">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</linearGradient>
<path d="M29.999,37.199c-3.969,0-7.2-3.23-7.2-7.199c0-3.971,3.23-7.203,7.2-7.203 c3.971,0,7.201,3.232,7.201,7.203C37.2,33.969,33.97,37.199,29.999,37.199L29.999,37.199z" fill="url(#SVGID_15_)"/>
<rect fill="none" height="60" width="60.001"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_clock.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_clock.svg Thu May 27 13:10:59 2010 +0300
@@ -1,40 +1,39 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.3896" y2="57.7417">
- <stop offset="0" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#454B4D"/>
+<stop offset="0" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#454B4D"/>
</linearGradient>
<path d="M29.999,58C14.56,58,2,45.44,2,30C2,14.562,14.56,2,29.999,2C45.44,2,58,14.562,58,30 C58,45.44,45.44,58,29.999,58L29.999,58z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="3.1675" y2="57.1007">
- <stop offset="0" style="stop-color:#D1D7D9"/>
- <stop offset="0.2364" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#697173"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.2364" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#697173"/>
</linearGradient>
<circle cx="29.999" cy="30" fill="url(#SVGID_2_)" r="27.222"/>
-<path d="M30.948,30.95c9.117,0,17.921-0.57,26.256-1.616C56.849,14.609,44.81,2.778,29.999,2.778 C15.274,2.778,3.286,14.472,2.8,29.08C11.691,30.286,21.138,30.95,30.948,30.95z" fill="#F1F1F2" opacity="0.35"/>
+<path d="M30.948,30.95c9.117,0,17.921-0.57,26.256-1.616C56.849,14.609,44.81,2.778,29.999,2.778 C15.274,2.778,3.286,14.472,2.8,29.08C11.691,30.286,21.138,30.95,30.948,30.95z" fill="#F1F1F2" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="3.0361" x2="57.3516" y1="16.5835" y2="16.5835">
- <stop offset="0" style="stop-color:#C0C5C7"/>
- <stop offset="0.2" style="stop-color:#F7FDFF"/>
- <stop offset="0.8" style="stop-color:#F7FDFF"/>
- <stop offset="1" style="stop-color:#CDD3D5"/>
+<stop offset="0" style="stop-color:#C0C5C7"/>
+<stop offset="0.2" style="stop-color:#F7FDFF"/>
+<stop offset="0.8" style="stop-color:#F7FDFF"/>
+<stop offset="1" style="stop-color:#CDD3D5"/>
</linearGradient>
<path d="M29.999,3.556c14.902,0,27.004,11.979,27.212,26.833c0.003-0.129,0.01-0.258,0.01-0.389 c0-15.034-12.188-27.222-27.222-27.222C14.964,2.778,2.776,14.966,2.776,30c0,0.131,0.009,0.26,0.01,0.389 C2.996,15.536,15.097,3.556,29.999,3.556z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="54.4995" y2="5.9818">
- <stop offset="0" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#454B4D"/>
+<stop offset="0" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#454B4D"/>
</linearGradient>
<path d="M29.999,54.111C16.704,54.111,5.888,43.295,5.888,30S16.704,5.89,29.999,5.89 S54.109,16.705,54.109,30S43.294,54.111,29.999,54.111L29.999,54.111z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="52.6606" y2="6.0737">
- <stop offset="0.4" style="stop-color:#FAF9F9"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#FAF9F9"/>
+<stop offset="0.4" style="stop-color:#FAF9F9"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M29.999,53.333C17.133,53.333,6.667,42.867,6.667,30c0-12.865,10.466-23.333,23.332-23.333 c12.865,0,23.334,10.468,23.334,23.333C53.333,42.867,42.864,53.333,29.999,53.333L29.999,53.333z" fill="url(#SVGID_5_)"/>
-<path d="M29.999,31.667c7.696,0,15.042-0.647,21.777-1.814c-0.084-11.94-9.816-21.63-21.777-21.63 c-11.959,0-21.694,9.69-21.773,21.63C14.959,31.02,22.304,31.667,29.999,31.667z" fill="#FFFFFF" opacity="0.7"/>
+<path d="M29.999,31.667c7.696,0,15.042-0.647,21.777-1.814c-0.084-11.94-9.816-21.63-21.777-21.63 c-11.959,0-21.694,9.69-21.773,21.63C14.959,31.02,22.304,31.667,29.999,31.667z" fill="#FFFFFF" fill-opacity="0.7" stroke-opacity="0.7"/>
<rect fill="#404041" height="4.667" width="1.556" x="29.221" y="8.795"/>
<rect fill="#404041" height="4.667" width="1.556" x="29.221" y="47.684"/>
<rect fill="#404041" height="1.556" width="4.667" x="47.11" y="29.795"/>
@@ -47,27 +46,27 @@
<rect fill="#404041" height="3.766" transform="matrix(0.8661 -0.4999 0.4999 0.8661 -18.3816 26.2067)" width="1.256" x="39.095" y="45.529"/>
<rect fill="#404041" height="3.767" transform="matrix(0.4993 -0.8664 0.8664 0.4993 -11.4765 21.8413)" width="1.256" x="12.532" y="18.967"/>
<rect fill="#404041" height="3.765" transform="matrix(0.4992 -0.8665 0.8665 0.4992 -11.4567 60.7682)" width="1.256" x="46.211" y="38.412"/>
-<path d="M31.904,31.103c-0.075-0.374-0.265-0.705-0.521-0.966l2.68-8.833l-2.232-0.678l-2.783,9.17 c-0.484,0.274-0.84,0.745-0.953,1.307h-5.096v0.777h5.096c0.021,0.103,0.052,0.203,0.088,0.298L16.18,44.181l1.011,1.011 l11.957-11.959c0.257,0.126,0.545,0.204,0.853,0.204c0.94,0,1.725-0.667,1.904-1.556h18.317v-0.777H31.904z" fill="#231F20" opacity="0.2"/>
+<path d="M31.904,31.103c-0.075-0.374-0.265-0.705-0.521-0.966l2.68-8.833l-2.232-0.678l-2.783,9.17 c-0.484,0.274-0.84,0.745-0.953,1.307h-5.096v0.777h5.096c0.021,0.103,0.052,0.203,0.088,0.298L16.18,44.181l1.011,1.011 l11.957-11.959c0.257,0.126,0.545,0.204,0.853,0.204c0.94,0,1.725-0.667,1.904-1.556h18.317v-0.777H31.904z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(0.9569 0.2903 -0.2903 0.9569 665.0903 147.1071)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-641.8813" x2="-641.8813" y1="61.4336" y2="73.4297">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="34.063,20.202 31.831,19.525 28.442,30.688 30.677,31.366 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="16.7598" x2="30.4403" y1="43.5093" y2="29.8287">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<polygon fill="url(#SVGID_7_)" points="30.958,30.321 29.948,29.311 16.18,43.078 17.19,44.088 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="36.6104" x2="36.6104" y1="29.8896" y2="31.0254">
- <stop offset="0" style="stop-color:#FF0000"/>
- <stop offset="1" style="stop-color:#A8000B"/>
+<stop offset="0" style="stop-color:#FF0000"/>
+<stop offset="1" style="stop-color:#A8000B"/>
</linearGradient>
<path d="M50.222,30H31.904c-0.18-0.887-0.964-1.556-1.904-1.556c-0.942,0-1.726,0.669-1.905,1.556h-5.096 v0.778h5.096c0.18,0.889,0.963,1.556,1.905,1.556c0.94,0,1.725-0.667,1.904-1.556h18.317V30z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.999" x2="29.999" y1="29.1577" y2="31.5575">
- <stop offset="0" style="stop-color:#FFE2D9"/>
- <stop offset="1" style="stop-color:#F23D3D"/>
+<stop offset="0" style="stop-color:#FFE2D9"/>
+<stop offset="1" style="stop-color:#F23D3D"/>
</linearGradient>
<circle cx="30" cy="30.389" fill="url(#SVGID_9_)" r="1.167"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_clock_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_clock_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,40 +1,39 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.3896" y2="57.7417">
- <stop offset="0" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#454B4D"/>
+<stop offset="0" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#454B4D"/>
</linearGradient>
<path d="M29.999,58C14.56,58,2,45.44,2,30C2,14.562,14.56,2,29.999,2C45.44,2,58,14.562,58,30 C58,45.44,45.44,58,29.999,58L29.999,58z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="3.1675" y2="57.1007">
- <stop offset="0" style="stop-color:#D1D7D9"/>
- <stop offset="0.2364" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#697173"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.2364" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#697173"/>
</linearGradient>
<circle cx="29.999" cy="30" fill="url(#SVGID_2_)" r="27.222"/>
-<path d="M30.948,30.95c9.117,0,17.921-0.57,26.256-1.616C56.849,14.609,44.81,2.778,29.999,2.778 C15.274,2.778,3.286,14.472,2.8,29.08C11.691,30.286,21.138,30.95,30.948,30.95z" fill="#F1F1F2" opacity="0.35"/>
+<path d="M30.948,30.95c9.117,0,17.921-0.57,26.256-1.616C56.849,14.609,44.81,2.778,29.999,2.778 C15.274,2.778,3.286,14.472,2.8,29.08C11.691,30.286,21.138,30.95,30.948,30.95z" fill="#F1F1F2" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="3.0361" x2="57.3516" y1="16.5835" y2="16.5835">
- <stop offset="0" style="stop-color:#C0C5C7"/>
- <stop offset="0.2" style="stop-color:#F7FDFF"/>
- <stop offset="0.8" style="stop-color:#F7FDFF"/>
- <stop offset="1" style="stop-color:#CDD3D5"/>
+<stop offset="0" style="stop-color:#C0C5C7"/>
+<stop offset="0.2" style="stop-color:#F7FDFF"/>
+<stop offset="0.8" style="stop-color:#F7FDFF"/>
+<stop offset="1" style="stop-color:#CDD3D5"/>
</linearGradient>
<path d="M29.999,3.556c14.902,0,27.004,11.979,27.212,26.833c0.003-0.129,0.01-0.258,0.01-0.389 c0-15.034-12.188-27.222-27.222-27.222C14.964,2.778,2.776,14.966,2.776,30c0,0.131,0.009,0.26,0.01,0.389 C2.996,15.536,15.097,3.556,29.999,3.556z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="54.4995" y2="5.9818">
- <stop offset="0" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#454B4D"/>
+<stop offset="0" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#454B4D"/>
</linearGradient>
<path d="M29.999,54.111C16.704,54.111,5.888,43.295,5.888,30S16.704,5.89,29.999,5.89 S54.109,16.705,54.109,30S43.294,54.111,29.999,54.111L29.999,54.111z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="52.6606" y2="6.0737">
- <stop offset="0.4" style="stop-color:#FAF9F9"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#FAF9F9"/>
+<stop offset="0.4" style="stop-color:#FAF9F9"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M29.999,53.333C17.133,53.333,6.667,42.867,6.667,30c0-12.865,10.466-23.333,23.332-23.333 c12.865,0,23.334,10.468,23.334,23.333C53.333,42.867,42.864,53.333,29.999,53.333L29.999,53.333z" fill="url(#SVGID_5_)"/>
-<path d="M29.999,31.667c7.696,0,15.042-0.647,21.777-1.814c-0.084-11.94-9.816-21.63-21.777-21.63 c-11.959,0-21.694,9.69-21.773,21.63C14.959,31.02,22.304,31.667,29.999,31.667z" fill="#FFFFFF" opacity="0.7"/>
+<path d="M29.999,31.667c7.696,0,15.042-0.647,21.777-1.814c-0.084-11.94-9.816-21.63-21.777-21.63 c-11.959,0-21.694,9.69-21.773,21.63C14.959,31.02,22.304,31.667,29.999,31.667z" fill="#FFFFFF" fill-opacity="0.7" stroke-opacity="0.7"/>
<rect fill="#404041" height="4.667" width="1.556" x="29.221" y="8.795"/>
<rect fill="#404041" height="4.667" width="1.556" x="29.221" y="47.684"/>
<rect fill="#404041" height="1.556" width="4.667" x="47.11" y="29.795"/>
@@ -47,70 +46,68 @@
<rect fill="#404041" height="3.766" transform="matrix(0.8661 -0.4999 0.4999 0.8661 -18.3816 26.2067)" width="1.256" x="39.095" y="45.529"/>
<rect fill="#404041" height="3.767" transform="matrix(0.4993 -0.8664 0.8664 0.4993 -11.4765 21.8413)" width="1.256" x="12.532" y="18.967"/>
<rect fill="#404041" height="3.765" transform="matrix(0.4992 -0.8665 0.8665 0.4992 -11.4567 60.7682)" width="1.256" x="46.211" y="38.412"/>
-<path d="M31.904,31.103c-0.075-0.374-0.265-0.705-0.521-0.966l2.68-8.833l-2.232-0.678l-2.783,9.17 c-0.484,0.274-0.84,0.745-0.953,1.307h-5.096v0.777h5.096c0.021,0.103,0.052,0.203,0.088,0.298L16.18,44.181l1.011,1.011 l11.957-11.959c0.257,0.126,0.545,0.204,0.853,0.204c0.94,0,1.725-0.667,1.904-1.556h18.317v-0.777H31.904z" fill="#231F20" opacity="0.2"/>
+<path d="M31.904,31.103c-0.075-0.374-0.265-0.705-0.521-0.966l2.68-8.833l-2.232-0.678l-2.783,9.17 c-0.484,0.274-0.84,0.745-0.953,1.307h-5.096v0.777h5.096c0.021,0.103,0.052,0.203,0.088,0.298L16.18,44.181l1.011,1.011 l11.957-11.959c0.257,0.126,0.545,0.204,0.853,0.204c0.94,0,1.725-0.667,1.904-1.556h18.317v-0.777H31.904z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(0.9569 0.2903 -0.2903 0.9569 665.0903 147.1071)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-641.8813" x2="-641.8813" y1="61.4336" y2="73.4297">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="34.063,20.202 31.831,19.525 28.442,30.688 30.677,31.366 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="16.7598" x2="30.4403" y1="43.5093" y2="29.8287">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<polygon fill="url(#SVGID_7_)" points="30.958,30.321 29.948,29.311 16.18,43.078 17.19,44.088 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="36.6104" x2="36.6104" y1="29.8896" y2="31.0254">
- <stop offset="0" style="stop-color:#FF0000"/>
- <stop offset="1" style="stop-color:#A8000B"/>
+<stop offset="0" style="stop-color:#FF0000"/>
+<stop offset="1" style="stop-color:#A8000B"/>
</linearGradient>
<path d="M50.222,30H31.904c-0.18-0.887-0.964-1.556-1.904-1.556c-0.942,0-1.726,0.669-1.905,1.556h-5.096 v0.778h5.096c0.18,0.889,0.963,1.556,1.905,1.556c0.94,0,1.725-0.667,1.904-1.556h18.317V30z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.999" x2="29.999" y1="29.1577" y2="31.5575">
- <stop offset="0" style="stop-color:#FFE2D9"/>
- <stop offset="1" style="stop-color:#F23D3D"/>
+<stop offset="0" style="stop-color:#FFE2D9"/>
+<stop offset="1" style="stop-color:#F23D3D"/>
</linearGradient>
<circle cx="30" cy="30.389" fill="url(#SVGID_9_)" r="1.167"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="30.414,14.408 30.414,0 0.414,0 0.414,14.41 0,14.824 0.414,15.237 0.414,30 30.414,30 30.414,15.236 30.828,14.821 "/>
-<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" opacity="0.35"/>
+<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.415" x2="15.415" y1="28.6694" y2="12.5688">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.6606" style="stop-color:#E0E1E2"/>
- <stop offset="1" style="stop-color:#B9BCBD"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E0E1E2"/>
+<stop offset="1" style="stop-color:#B9BCBD"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="27.081,28.823 3.749,28.823 3.749,14.473 15.414,5.489 27.081,14.473 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.415" x2="15.415" y1="17.313" y2="28.6013">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.6606" style="stop-color:#E0E1E2"/>
- <stop offset="1" style="stop-color:#B9BCBD"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E0E1E2"/>
+<stop offset="1" style="stop-color:#B9BCBD"/>
</linearGradient>
<path d="M15.414,6.668l10.736,8.264V27.89H4.682V14.932L15.414,6.668 M15.414,5.489L3.749,14.473v14.351 h23.333V14.473L15.414,5.489L15.414,5.489z" fill="url(#SVGID_2__)"/>
-<polygon opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 "/>
+<polygon fill-opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 " stroke-opacity="0.2"/>
<polygon fill="#727272" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,6.655 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.416" x2="15.416" y1="17.9946" y2="29.1519">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<rect fill="url(#SVGID_3__)" height="10.501" width="7.001" x="11.916" y="18.322"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.416" x2="15.416" y1="28.7466" y2="18.3602">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<path d="M17.98,19.257v8.633h-5.133v-8.633H17.98 M18.917,18.322h-7.001v10.501h7.001V18.322L18.917,18.322z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.4136" x2="15.4136" y1="0.0352" y2="17.7271">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="0.2606" style="stop-color:#DE4E29"/>
- <stop offset="1" style="stop-color:#D82E09"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="0.2606" style="stop-color:#DE4E29"/>
+<stop offset="1" style="stop-color:#D82E09"/>
</linearGradient>
<path d="M15.414,5.489l11.667,11.667l2.333-2.333c0,0-12.586-12.554-13.171-13.175 c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333L15.414,5.489z" fill="url(#SVGID_5__)"/>
<radialGradient cx="15.2969" cy="1.7559" gradientUnits="userSpaceOnUse" id="SVGID_6__" r="18.6679">
- <stop offset="0" style="stop-color:#F7D481"/>
- <stop offset="1" style="stop-color:#F5340A"/>
+<stop offset="0" style="stop-color:#F7D481"/>
+<stop offset="1" style="stop-color:#F5340A"/>
</radialGradient>
<path d="M14.553,2.616c0.724-0.688,1.102-0.653,1.689-0.034c0.516,0.549,10.433,10.442,12.705,12.709 l0.467-0.468c0,0-12.586-12.554-13.171-13.175c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14 l0.467,0.465C4.134,13.029,13.917,3.225,14.553,2.616z" fill="url(#SVGID_6__)"/>
-<rect height="1.168" opacity="0.2" width="7.001" x="11.916" y="18.322"/>
+<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.916" y="18.322"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_clock_night.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
+<g>
+<rect fill="none" height="60" width="59.999"/>
+<path d="M29.998,57.387c-15.439,0-28.001-12.561-28.001-28c0-15.438,12.562-28.001,28.001-28.001 c15.44,0,27.999,12.561,27.999,28.001C57.997,44.826,45.438,57.387,29.998,57.387L29.998,57.387z" fill="#343433"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="174.0137" x2="174.0137" y1="218.3223" y2="272.2545">
+<stop offset="0" style="stop-color:#989897"/>
+<stop offset="0.24" style="stop-color:#676767"/>
+<stop offset="1" style="stop-color:#4E4E4E"/>
+</linearGradient>
+<circle cx="29.998" cy="29.385" fill="url(#SVGID_1_)" r="27.222"/>
+<path d="M30.948,30.335c9.117,0,17.92-0.568,26.256-1.615 C56.847,13.996,44.81,2.165,29.998,2.165c-14.724,0-26.712,11.695-27.2,26.301C11.689,29.67,21.137,30.335,30.948,30.335z" fill="#4E4E4E" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M29.998,2.941c14.903,0,27.005,11.98,27.212,26.833c0-0.129,0.01-0.258,0.01-0.388 c0-15.035-12.188-27.222-27.222-27.222S2.776,14.352,2.776,29.386c0,0.131,0.008,0.259,0.009,0.388 C2.995,14.92,15.095,2.941,29.998,2.941z" fill="#B3B2B3"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="174.0137" x2="174.0137" y1="269.6514" y2="221.1329">
+<stop offset="0" style="stop-color:#BCC1C2"/>
+<stop offset="1" style="stop-color:#474C4D"/>
+</linearGradient>
+<path d="M29.998,53.496c-13.295,0-24.111-10.816-24.111-24.111c0-13.296,10.815-24.113,24.111-24.113 c13.294,0,24.114,10.817,24.114,24.113C54.112,42.68,43.292,53.496,29.998,53.496L29.998,53.496z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="174.0127" cy="287.1436" gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="84.7752">
+<stop offset="0" style="stop-color:#343433"/>
+<stop offset="0.4" style="stop-color:#343433"/>
+<stop offset="1" style="stop-color:#4E4E4E"/>
+</radialGradient>
+<path d="M29.998,52.719c-12.864,0-23.332-10.466-23.332-23.333c0-12.865,10.468-23.333,23.332-23.333 c12.866,0,23.331,10.469,23.331,23.333C53.329,42.253,42.864,52.719,29.998,52.719L29.998,52.719z" fill="url(#SVGID_3_)"/>
+<path d="M29.998,31.052c7.696,0,15.042-0.647,21.776-1.813 C51.692,17.3,41.958,7.609,29.998,7.609c-11.958,0-21.694,9.689-21.775,21.629C14.958,30.405,22.302,31.052,29.998,31.052z" fill="#676767" fill-opacity="0.7" stroke-opacity="0.7"/>
+<rect fill="#F3F2F2" height="4.668" width="1.554" x="29.223" y="8.179"/>
+<rect fill="#F3F2F2" height="4.667" width="1.554" x="29.223" y="47.069"/>
+<rect fill="#F3F2F2" height="1.555" width="4.668" x="47.108" y="29.182"/>
+<rect fill="#F3F2F2" height="1.555" width="4.667" x="8.22" y="29.182"/>
+<rect fill="#F3F2F2" height="3.766" transform="matrix(-0.4992 -0.8665 0.8665 -0.4992 52.6823 70.936)" width="1.256" x="46.214" y="18.36"/>
+<rect fill="#F3F2F2" height="3.767" transform="matrix(-0.4991 -0.8666 0.8666 -0.4991 -14.667 70.8857)" width="1.254" x="12.528" y="37.799"/>
+<rect fill="#F3F2F2" height="3.767" transform="matrix(-0.8657 -0.5006 0.5006 -0.8657 67.5346 44.3631)" width="1.254" x="39.092" y="11.238"/>
+<rect fill="#F3F2F2" height="3.764" transform="matrix(-0.8659 -0.5002 0.5002 -0.8659 14.4172 97.4599)" width="1.255" x="19.645" y="44.915"/>
+<rect fill="#F3F2F2" height="3.767" transform="matrix(-0.8662 0.4997 -0.4997 -0.8662 44.4025 14.3518)" width="1.254" x="19.653" y="11.237"/>
+<rect fill="#F3F2F2" height="3.763" transform="matrix(-0.8665 0.4992 -0.4992 -0.8665 97.4898 67.514)" width="1.258" x="39.087" y="44.913"/>
+<rect fill="#F3F2F2" height="3.765" transform="matrix(-0.5002 0.8659 -0.8659 -0.5002 37.2642 18.9665)" width="1.255" x="12.531" y="18.355"/>
+<rect fill="#F3F2F2" height="3.765" transform="matrix(-0.5008 0.8656 -0.8656 -0.5008 104.6477 19.0248)" width="1.256" x="46.21" y="37.806"/>
+<path d="M31.903,30.489c-0.078-0.374-0.264-0.705-0.521-0.967l2.68-8.833 l-2.234-0.677l-2.781,9.17c-0.484,0.275-0.84,0.744-0.954,1.307h-5.095v0.779h5.096c0.023,0.102,0.052,0.201,0.088,0.298 L16.178,43.564l1.008,1.01l11.961-11.957c0.257,0.127,0.543,0.203,0.851,0.203c0.941,0,1.725-0.667,1.906-1.558h18.318v-0.775 L31.903,30.489L31.903,30.489z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="177.0596" x2="173.5786" y1="234.6855" y2="246.1574">
+<stop offset="0" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#989897"/>
+</linearGradient>
+<polygon fill="url(#SVGID_4_)" points="34.062,19.587 31.829,18.911 28.442,30.074 30.675,30.75 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="160.7793" x2="174.448" y1="258.6592" y2="244.9778">
+<stop offset="0" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#989897"/>
+</linearGradient>
+<polygon fill="url(#SVGID_5_)" points="30.956,29.708 29.947,28.696 16.179,42.464 17.188,43.474 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="180.625" x2="180.625" y1="245.041" y2="246.1719">
+<stop offset="0" style="stop-color:#EC2224"/>
+<stop offset="1" style="stop-color:#A71E22"/>
+</linearGradient>
+<path d="M50.222,29.386H31.903c-0.182-0.887-0.965-1.556-1.906-1.556c-0.942,0-1.725,0.668-1.905,1.556 h-5.096v0.777h5.096c0.181,0.888,0.963,1.556,1.905,1.556c0.941,0,1.725-0.668,1.906-1.556h18.318V29.386z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="174.0137" x2="174.0137" y1="244.3047" y2="246.7054">
+<stop offset="0" style="stop-color:#FCE1D8"/>
+<stop offset="1" style="stop-color:#EE3F3F"/>
+</linearGradient>
+<circle cx="29.998" cy="29.774" fill="url(#SVGID_7_)" r="1.166"/>
+<rect fill="none" height="59.996" width="59.995"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_clock_night_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_clock_night_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,30 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="59.999"/>
<path d="M29.998,57.387c-15.439,0-28.001-12.561-28.001-28c0-15.438,12.562-28.001,28.001-28.001 c15.44,0,27.999,12.561,27.999,28.001C57.997,44.826,45.438,57.387,29.998,57.387L29.998,57.387z" fill="#343433"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="174.0137" x2="174.0137" y1="218.3223" y2="272.2545">
- <stop offset="0" style="stop-color:#989897"/>
- <stop offset="0.24" style="stop-color:#676767"/>
- <stop offset="1" style="stop-color:#4E4E4E"/>
+<stop offset="0" style="stop-color:#989897"/>
+<stop offset="0.24" style="stop-color:#676767"/>
+<stop offset="1" style="stop-color:#4E4E4E"/>
</linearGradient>
<circle cx="29.998" cy="29.385" fill="url(#SVGID_1_)" r="27.222"/>
-<path d="M30.948,30.335c9.117,0,17.92-0.568,26.256-1.615 C56.847,13.996,44.81,2.165,29.998,2.165c-14.724,0-26.712,11.695-27.2,26.301C11.689,29.67,21.137,30.335,30.948,30.335z" enable-background="new " fill="#4E4E4E" opacity="0.35"/>
+<path d="M30.948,30.335c9.117,0,17.92-0.568,26.256-1.615 C56.847,13.996,44.81,2.165,29.998,2.165c-14.724,0-26.712,11.695-27.2,26.301C11.689,29.67,21.137,30.335,30.948,30.335z" fill="#4E4E4E" fill-opacity="0.35" stroke-opacity="0.35"/>
<path d="M29.998,2.941c14.903,0,27.005,11.98,27.212,26.833c0-0.129,0.01-0.258,0.01-0.388 c0-15.035-12.188-27.222-27.222-27.222S2.776,14.352,2.776,29.386c0,0.131,0.008,0.259,0.009,0.388 C2.995,14.92,15.095,2.941,29.998,2.941z" fill="#B3B2B3"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="174.0137" x2="174.0137" y1="269.6514" y2="221.1329">
- <stop offset="0" style="stop-color:#BCC1C2"/>
- <stop offset="1" style="stop-color:#474C4D"/>
+<stop offset="0" style="stop-color:#BCC1C2"/>
+<stop offset="1" style="stop-color:#474C4D"/>
</linearGradient>
<path d="M29.998,53.496c-13.295,0-24.111-10.816-24.111-24.111c0-13.296,10.815-24.113,24.111-24.113 c13.294,0,24.114,10.817,24.114,24.113C54.112,42.68,43.292,53.496,29.998,53.496L29.998,53.496z" fill="url(#SVGID_2_)"/>
<radialGradient cx="174.0127" cy="287.1436" gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="84.7752">
- <stop offset="0.4" style="stop-color:#343433"/>
- <stop offset="1" style="stop-color:#4E4E4E"/>
+<stop offset="0" style="stop-color:#343433"/>
+<stop offset="0.4" style="stop-color:#343433"/>
+<stop offset="1" style="stop-color:#4E4E4E"/>
</radialGradient>
<path d="M29.998,52.719c-12.864,0-23.332-10.466-23.332-23.333c0-12.865,10.468-23.333,23.332-23.333 c12.866,0,23.331,10.469,23.331,23.333C53.329,42.253,42.864,52.719,29.998,52.719L29.998,52.719z" fill="url(#SVGID_3_)"/>
-<path d="M29.998,31.052c7.696,0,15.042-0.647,21.776-1.813 C51.692,17.3,41.958,7.609,29.998,7.609c-11.958,0-21.694,9.689-21.775,21.629C14.958,30.405,22.302,31.052,29.998,31.052z" enable-background="new " fill="#676767" opacity="0.7"/>
+<path d="M29.998,31.052c7.696,0,15.042-0.647,21.776-1.813 C51.692,17.3,41.958,7.609,29.998,7.609c-11.958,0-21.694,9.689-21.775,21.629C14.958,30.405,22.302,31.052,29.998,31.052z" fill="#676767" fill-opacity="0.7" stroke-opacity="0.7"/>
<rect fill="#F3F2F2" height="4.668" width="1.554" x="29.223" y="8.179"/>
<rect fill="#F3F2F2" height="4.667" width="1.554" x="29.223" y="47.069"/>
<rect fill="#F3F2F2" height="1.555" width="4.668" x="47.108" y="29.182"/>
@@ -37,70 +36,68 @@
<rect fill="#F3F2F2" height="3.763" transform="matrix(-0.8665 0.4992 -0.4992 -0.8665 97.4898 67.514)" width="1.258" x="39.087" y="44.913"/>
<rect fill="#F3F2F2" height="3.765" transform="matrix(-0.5002 0.8659 -0.8659 -0.5002 37.2642 18.9665)" width="1.255" x="12.531" y="18.355"/>
<rect fill="#F3F2F2" height="3.765" transform="matrix(-0.5008 0.8656 -0.8656 -0.5008 104.6477 19.0248)" width="1.256" x="46.21" y="37.806"/>
-<path d="M31.903,30.489c-0.078-0.374-0.264-0.705-0.521-0.967l2.68-8.833 l-2.234-0.677l-2.781,9.17c-0.484,0.275-0.84,0.744-0.954,1.307h-5.095v0.779h5.096c0.023,0.102,0.052,0.201,0.088,0.298 L16.178,43.564l1.008,1.01l11.961-11.957c0.257,0.127,0.543,0.203,0.851,0.203c0.941,0,1.725-0.667,1.906-1.558h18.318v-0.775 L31.903,30.489L31.903,30.489z" enable-background="new " fill="#231F20" opacity="0.2"/>
+<path d="M31.903,30.489c-0.078-0.374-0.264-0.705-0.521-0.967l2.68-8.833 l-2.234-0.677l-2.781,9.17c-0.484,0.275-0.84,0.744-0.954,1.307h-5.095v0.779h5.096c0.023,0.102,0.052,0.201,0.088,0.298 L16.178,43.564l1.008,1.01l11.961-11.957c0.257,0.127,0.543,0.203,0.851,0.203c0.941,0,1.725-0.667,1.906-1.558h18.318v-0.775 L31.903,30.489L31.903,30.489z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="177.0596" x2="173.5786" y1="234.6855" y2="246.1574">
- <stop offset="0" style="stop-color:#E5E5E5"/>
- <stop offset="1" style="stop-color:#989897"/>
+<stop offset="0" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#989897"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="34.062,19.587 31.829,18.911 28.442,30.074 30.675,30.75 "/>
<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="160.7793" x2="174.448" y1="258.6592" y2="244.9778">
- <stop offset="0" style="stop-color:#E5E5E5"/>
- <stop offset="1" style="stop-color:#989897"/>
+<stop offset="0" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#989897"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="30.956,29.708 29.947,28.696 16.179,42.464 17.188,43.474 "/>
<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="180.625" x2="180.625" y1="245.041" y2="246.1719">
- <stop offset="0" style="stop-color:#EC2224"/>
- <stop offset="1" style="stop-color:#A71E22"/>
+<stop offset="0" style="stop-color:#EC2224"/>
+<stop offset="1" style="stop-color:#A71E22"/>
</linearGradient>
<path d="M50.222,29.386H31.903c-0.182-0.887-0.965-1.556-1.906-1.556c-0.942,0-1.725,0.668-1.905,1.556 h-5.096v0.777h5.096c0.181,0.888,0.963,1.556,1.905,1.556c0.941,0,1.725-0.668,1.906-1.556h18.318V29.386z" fill="url(#SVGID_6_)"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="174.0137" x2="174.0137" y1="244.3047" y2="246.7054">
- <stop offset="0" style="stop-color:#FCE1D8"/>
- <stop offset="1" style="stop-color:#EE3F3F"/>
+<stop offset="0" style="stop-color:#FCE1D8"/>
+<stop offset="1" style="stop-color:#EE3F3F"/>
</linearGradient>
<circle cx="29.998" cy="29.774" fill="url(#SVGID_7_)" r="1.166"/>
<rect fill="none" height="59.996" width="59.995"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="30.414,14.408 30.414,0 0.414,0 0.414,14.41 0,14.824 0.414,15.237 0.414,30 30.414,30 30.414,15.236 30.828,14.821 "/>
-<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" opacity="0.35"/>
+<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.415" x2="15.415" y1="28.6694" y2="12.5688">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.6606" style="stop-color:#E0E1E2"/>
- <stop offset="1" style="stop-color:#B9BCBD"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E0E1E2"/>
+<stop offset="1" style="stop-color:#B9BCBD"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="27.081,28.823 3.749,28.823 3.749,14.473 15.414,5.489 27.081,14.473 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.415" x2="15.415" y1="17.313" y2="28.6013">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.6606" style="stop-color:#E0E1E2"/>
- <stop offset="1" style="stop-color:#B9BCBD"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E0E1E2"/>
+<stop offset="1" style="stop-color:#B9BCBD"/>
</linearGradient>
<path d="M15.414,6.668l10.736,8.264V27.89H4.682V14.932L15.414,6.668 M15.414,5.489L3.749,14.473v14.351 h23.333V14.473L15.414,5.489L15.414,5.489z" fill="url(#SVGID_2__)"/>
-<polygon opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 "/>
+<polygon fill-opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 " stroke-opacity="0.2"/>
<polygon fill="#727272" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,6.655 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.416" x2="15.416" y1="17.9946" y2="29.1519">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<rect fill="url(#SVGID_3__)" height="10.501" width="7.001" x="11.916" y="18.322"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.416" x2="15.416" y1="28.7466" y2="18.3602">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<path d="M17.98,19.257v8.633h-5.133v-8.633H17.98 M18.917,18.322h-7.001v10.501h7.001V18.322L18.917,18.322z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.4136" x2="15.4136" y1="0.0352" y2="17.7271">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="0.2606" style="stop-color:#DE4E29"/>
- <stop offset="1" style="stop-color:#D82E09"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="0.2606" style="stop-color:#DE4E29"/>
+<stop offset="1" style="stop-color:#D82E09"/>
</linearGradient>
<path d="M15.414,5.489l11.667,11.667l2.333-2.333c0,0-12.586-12.554-13.171-13.175 c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333L15.414,5.489z" fill="url(#SVGID_5__)"/>
<radialGradient cx="15.2969" cy="1.7559" gradientUnits="userSpaceOnUse" id="SVGID_6__" r="18.6679">
- <stop offset="0" style="stop-color:#F7D481"/>
- <stop offset="1" style="stop-color:#F5340A"/>
+<stop offset="0" style="stop-color:#F7D481"/>
+<stop offset="1" style="stop-color:#F5340A"/>
</radialGradient>
<path d="M14.553,2.616c0.724-0.688,1.102-0.653,1.689-0.034c0.516,0.549,10.433,10.442,12.705,12.709 l0.467-0.468c0,0-12.586-12.554-13.171-13.175c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14 l0.467,0.465C4.134,13.029,13.917,3.225,14.553,2.616z" fill="url(#SVGID_6__)"/>
-<rect height="1.168" opacity="0.2" width="7.001" x="11.916" y="18.322"/>
+<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.916" y="18.322"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_computer.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_computer.svg Thu May 27 13:10:59 2010 +0300
@@ -1,71 +1,69 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.9121" x2="50.0859" y1="30" y2="30">
- <stop offset="0" style="stop-color:#B4BDBF"/>
- <stop offset="0.2667" style="stop-color:#E5EBED"/>
- <stop offset="0.703" style="stop-color:#8D9699"/>
- <stop offset="1" style="stop-color:#B7BDBF"/>
+<stop offset="0" style="stop-color:#B4BDBF"/>
+<stop offset="0.2667" style="stop-color:#E5EBED"/>
+<stop offset="0.703" style="stop-color:#8D9699"/>
+<stop offset="1" style="stop-color:#B7BDBF"/>
</linearGradient>
<path d="M48.539,2H11.463c-0.854,0-1.551,0.69-1.551,1.536V58h40.174V3.536C50.086,2.69,49.39,2,48.539,2z" fill="url(#SVGID_1_)"/>
-<path d="M48.539,2c0.851,0,1.547,0.69,1.547,1.536V58H9.912V3.536C9.912,2.69,10.609,2,11.463,2 H48.539 M48.539,3.218H11.463c-0.181,0-0.333,0.146-0.333,0.318v53.246h37.739V3.536C48.869,3.364,48.717,3.218,48.539,3.218 L48.539,3.218z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M48.539,2c0.851,0,1.547,0.69,1.547,1.536V58H9.912V3.536C9.912,2.69,10.609,2,11.463,2 H48.539 M48.539,3.218H11.463c-0.181,0-0.333,0.146-0.333,0.318v53.246h37.739V3.536C48.869,3.364,48.717,3.218,48.539,3.218 L48.539,3.218z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="19.0908" y2="9.5508">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#303030"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="9.738" width="33.269" x="13.365" y="9.353"/>
-<rect fill="#FFFFFF" height="1.218" opacity="0.25" width="33.269" x="13.365" y="19.091"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.218" stroke-opacity="0.25" width="33.269" x="13.365" y="19.091"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="10.6196" y2="17.8277">
- <stop offset="0" style="stop-color:#8B8B8B"/>
- <stop offset="1" style="stop-color:#454545"/>
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="7.305" width="30.831" x="14.585" y="10.569"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="11.542" y2="16.6561">
- <stop offset="0" style="stop-color:#525252"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="4.869" width="28.397" x="15.802" y="11.787"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="20.0391" x2="20.0391" y1="12.8813" y2="15.4384">
- <stop offset="0" style="stop-color:#17BFFF"/>
- <stop offset="1" style="stop-color:#0D5186"/>
+<stop offset="0" style="stop-color:#17BFFF"/>
+<stop offset="1" style="stop-color:#0D5186"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="2.435" width="6.125" x="16.977" y="13.004"/>
-<rect fill="#FFFFFF" height="1.218" opacity="0.25" width="6.125" x="16.977" y="13.004"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.218" stroke-opacity="0.25" width="6.125" x="16.977" y="13.004"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="42.9824" x2="42.9824" y1="25.0635" y2="32.5999">
- <stop offset="0" style="stop-color:#576266"/>
- <stop offset="1" style="stop-color:#C4C4C4"/>
+<stop offset="0" style="stop-color:#576266"/>
+<stop offset="1" style="stop-color:#C4C4C4"/>
</linearGradient>
<path d="M42.981,32.482c-2.014,0-3.651-1.638-3.651-3.652c0-2.014,1.638-3.652,3.651-3.652 c2.015,0,3.652,1.639,3.652,3.652C46.634,30.845,44.996,32.482,42.981,32.482L42.981,32.482z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="42.9814" x2="42.9814" y1="26.3193" y2="31.3429">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<circle cx="42.981" cy="28.83" fill="url(#SVGID_7_)" r="2.435"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="53.2866" y2="48.5696">
- <stop offset="0" style="stop-color:#8B8B8B"/>
- <stop offset="1" style="stop-color:#454545"/>
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="4.869" width="25.565" x="17.217" y="48.544"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="22.6953" x2="22.6953" y1="52.1328" y2="49.7734">
- <stop offset="0" style="stop-color:#525252"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="2.436" width="6.087" x="19.651" y="49.761"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="30" x2="30" y1="52.1328" y2="49.7734">
- <stop offset="0" style="stop-color:#525252"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="2.436" width="6.087" x="26.956" y="49.761"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="37.3037" x2="37.3037" y1="52.2217" y2="49.7861">
- <stop offset="0" style="stop-color:#525252"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
<rect fill="url(#SVGID_11_)" height="2.436" width="6.088" x="34.26" y="49.761"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_corrupted.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_corrupted.svg Thu May 27 13:10:59 2010 +0300
@@ -1,126 +1,90 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="18.3677" x2="18.3677" y1="9.4238" y2="48.3162">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.8727" style="stop-color:#A9ADAD"/>
- <stop offset="1" style="stop-color:#DBDCDD"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.3203" x2="54.7099" y1="29.5493" y2="29.5493">
+<stop offset="0" style="stop-color:#8C3720"/>
+<stop offset="1" style="stop-color:#D35B2E"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="26.794,34.85 31.693,28.114 26.642,21.226 30.979,15.053 28.232,9.424 5.042,9.424 5.042,43.791 29.68,43.791 31.283,41.176 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="42.4102" x2="42.4102" y1="10.6484" y2="45.1921">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.6121" style="stop-color:#D4DADE"/>
- <stop offset="0.9152" style="stop-color:#E3E8E8"/>
- <stop offset="0.9818" style="stop-color:#FCFFFE"/>
+<polygon fill="url(#SVGID_1_)" points="28.186,3.899 5.25,3.899 5.25,55.199 26.68,55.199 27.065,54.275 12.431,21.137 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5.3193" x2="54.7103" y1="31.3496" y2="31.3496">
+<stop offset="0" style="stop-color:#8C3720"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="52.303,10.648 32.518,10.648 32.791,11.21 51.746,11.21 51.746,44.455 34.309,44.455 33.965,45.016 52.303,45.016 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="42.2686" x2="42.2686" y1="11.21" y2="44.6258">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.8727" style="stop-color:#A9ADAD"/>
- <stop offset="1" style="stop-color:#DBDCDD"/>
-</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="35.658,16.366 32.791,11.21 51.746,11.21 51.746,44.455 38.49,44.455 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="17.5327" x2="17.5327" y1="9.4238" y2="48.3162">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.6121" style="stop-color:#D4DADE"/>
- <stop offset="0.9152" style="stop-color:#E3E8E8"/>
- <stop offset="0.9818" style="stop-color:#FCFFFE"/>
+<polygon fill="url(#SVGID_2_)" points="54.751,5.7 31.786,5.7 49.331,43.654 30.653,56.1 30.28,57 54.751,57 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="44.5938" x2="5.4859" y1="28.6494" y2="28.6494">
+<stop offset="0" style="stop-color:#8C3720"/>
+<stop offset="0.4909" style="stop-color:#8C3720"/>
+<stop offset="1" style="stop-color:#D55C2E"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="5.598,43.23 5.598,9.985 28.506,9.985 28.232,9.424 5.042,9.424 5.042,43.791 29.68,43.791 30.023,43.23 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="40.4873" x2="40.4873" y1="13.4229" y2="41.8574">
- <stop offset="0" style="stop-color:#B3B3B3"/>
- <stop offset="1" style="stop-color:#666666"/>
+<polygon fill="url(#SVGID_3_)" points="17.082,11.556 28.539,3 5.25,3 5.25,54.299 27.055,54.299 27.429,53.4 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="54.4551" x2="12.414" y1="30.4497" y2="30.4497">
+<stop offset="0" style="stop-color:#8C3720"/>
+<stop offset="0.4909" style="stop-color:#8C3720"/>
+<stop offset="1" style="stop-color:#D55C2E"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="50.047,13.577 33.947,13.577 35.264,16.277 30.928,22.45 35.979,29.337 31.08,36.074 34.701,41.176 50.047,41.176 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.5796" x2="19.5796" y1="9.4399" y2="48.3313">
- <stop offset="0" style="stop-color:#B3B3B3"/>
- <stop offset="1" style="stop-color:#666666"/>
-</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="31.693,28.114 26.642,21.226 30.979,15.053 29.661,12.353 7.466,12.353 7.466,39.951 30.415,39.951 26.794,34.85 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="40.1436" x2="40.1436" y1="15.1265" y2="40.1341">
- <stop offset="0" style="stop-color:#41ACFA"/>
- <stop offset="1" style="stop-color:#8DC8E1"/>
+<polygon fill="url(#SVGID_4_)" points="54.751,4.8 32.14,4.8 46.632,43.654 31.029,55.199 30.654,56.1 54.751,56.1 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="5.3633" x2="44.7708" y1="28.2002" y2="28.2002">
+<stop offset="0" style="stop-color:#8C3720"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
-<polygon fill="url(#SVGID_7_)" points="49.359,14.213 34.256,14.213 35.264,16.277 30.928,22.45 35.979,29.337 31.08,36.074 34.348,40.678 49.359,40.678 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="33.7588" x2="33.7588" y1="11.124" y2="23.6764">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="0.8061" style="stop-color:#37749E"/>
- <stop offset="1" style="stop-color:#D6D6D6"/>
+<polygon fill="url(#SVGID_5_)" points="16.182,11.556 28.539,3 5.25,3 5.25,53.4 27.429,53.4 27.815,52.47 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="12.9429" x2="54.6475" y1="29.9995" y2="29.9995">
+<stop offset="0" style="stop-color:#8C3720"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
-<polygon fill="url(#SVGID_8_)" points="31.691,36.074 36.59,29.337 31.539,22.45 35.875,16.277 33.131,10.648 32.518,10.648 35.264,16.277 30.928,22.45 35.979,29.337 31.08,36.074 35.57,42.4 33.965,45.016 34.578,45.016 36.182,42.4 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="19.5513" x2="19.5513" y1="9.4399" y2="48.3321">
- <stop offset="0" style="stop-color:#41ACFA"/>
- <stop offset="1" style="stop-color:#8DC8E1"/>
-</linearGradient>
-<polygon fill="url(#SVGID_9_)" points="26.642,21.226 30.979,15.053 29.971,12.989 8.124,12.989 8.124,39.453 26.794,34.85 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="28.8608" x2="28.8608" y1="9.2871" y2="21.281">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="0.8061" style="stop-color:#37749E"/>
- <stop offset="1" style="stop-color:#D6D6D6"/>
+<polygon fill="url(#SVGID_6_)" points="54.751,4.8 32.14,4.8 47.53,43.654 31.413,54.277 31.029,55.199 54.751,55.199 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="11.252" x2="1.3518" y1="32.4648" y2="41.3147">
+<stop offset="0" style="stop-color:#8C3720"/>
+<stop offset="0.4909" style="stop-color:#8C3720"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
-<polygon fill="url(#SVGID_10_)" points="31.693,28.114 26.642,21.226 30.979,15.053 28.232,9.424 27.621,9.424 30.365,15.053 26.029,21.226 31.08,28.114 26.182,34.85 30.672,41.176 29.067,43.791 29.68,43.791 31.283,41.176 26.794,34.85 "/>
-<polygon fill="#FFFFFF" opacity="0.05" points="50.047,39.947 33.828,39.947 34.701,41.176 50.047,41.176 "/>
-<polygon fill="#FFFFFF" opacity="0.05" points="7.466,38.723 7.466,39.951 30.415,39.951 29.543,38.723 "/>
-<polygon fill="#FFFFFF" opacity="0.05" points="50.047,39.234 33.322,39.234 34.701,41.176 50.047,41.176 "/>
-<polygon fill="#FFFFFF" opacity="0.05" points="7.466,38.01 7.466,39.951 30.415,39.951 29.037,38.01 "/>
-<polygon fill="#FFFFFF" opacity="0.05" points="50.047,38.521 32.816,38.521 34.701,41.176 50.047,41.176 "/>
-<polygon fill="#FFFFFF" opacity="0.05" points="7.466,37.297 7.466,39.951 30.415,39.951 28.531,37.297 "/>
-<polygon fill="#FFFFFF" opacity="0.05" points="50.047,37.811 32.311,37.811 34.701,41.176 50.047,41.176 "/>
-<polygon fill="#FFFFFF" opacity="0.05" points="7.466,36.586 7.466,39.951 30.415,39.951 28.025,36.586 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="25.2661" x2="25.2661" y1="9.439" y2="48.3326">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#0071BB"/>
+<polygon fill="url(#SVGID_7_)" points="16.182,11.556 28.539,3 5.25,3 5.25,52.5 27.804,52.5 28.178,51.6 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="25.209" x2="15.3089" y1="45.8506" y2="54.7004">
+<stop offset="0" style="stop-color:#6B3720"/>
+<stop offset="0.4909" style="stop-color:#6B3720"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
-<polygon fill="url(#SVGID_11_)" points="19.229,39.453 30.062,39.453 26.794,34.85 31.305,28.647 28.423,24.149 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="19.5298" x2="19.5298" y1="9.4395" y2="48.3322">
- <stop offset="0" style="stop-color:#146BAF"/>
- <stop offset="1" style="stop-color:#013B77"/>
+<polygon fill="url(#SVGID_8_)" points="54.751,4.8 32.14,4.8 43.03,43.654 31.788,53.373 31.403,54.299 54.751,54.299 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="18.7407" x2="18.7407" y1="2.5547" y2="51.3336">
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="1" style="stop-color:#AF2B1C"/>
</linearGradient>
-<polygon fill="url(#SVGID_12_)" points="8.999,39.453 30.062,39.453 22.98,34.85 28.856,32.014 21.617,19.762 "/>
-<radialGradient cx="47.2637" cy="23.0933" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="7.9973">
- <stop offset="0" style="stop-color:#3FA8F4"/>
- <stop offset="1" style="stop-color:#CDDBE1"/>
-</radialGradient>
-<circle cx="43.64" cy="19.906" fill="url(#SVGID_13_)" r="3.29"/>
-<polygon fill="#FFFFFF" opacity="0.3" points="31.246,21.997 52.303,19.411 52.303,10.648 32.518,10.648 35.264,16.277 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="5.042,23.459 26.961,20.772 30.979,15.053 28.232,9.424 5.042,9.424 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="20.458" x2="54.9136" y1="49.8662" y2="49.8662">
- <stop offset="0" style="stop-color:#C6C6C6"/>
- <stop offset="1" style="stop-color:#8C8C8C"/>
+<path d="M25.181,31.955l7.051-11.1l-7.051-9.3L28.539,3H5.25V35.4c0,0.989,0.571,2.373,1.273,3.072 l11.854,11.854c0.7,0.699,2.081,1.272,3.072,1.272h6.728l4.053-9.744L25.181,31.955z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="41.7666" x2="41.7666" y1="4.355" y2="53.1344">
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="1" style="stop-color:#AF2B1C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_10_)" points="54.751,4.8 32.14,4.8 28.781,13.355 35.831,22.656 28.781,33.755 35.831,43.654 31.778,53.4 54.751,53.4 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="16.9014" x2="16.9014" y1="2.9995" y2="51.4486">
+<stop offset="0" style="stop-color:#F0AD93"/>
+<stop offset="1" style="stop-color:#B6593F"/>
</linearGradient>
-<polygon fill="url(#SVGID_14_)" points="54.957,49.154 31.426,49.154 30.553,50.578 54.957,50.578 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="15.2666" x2="52.9591" y1="48.6416" y2="48.6416">
- <stop offset="0" style="stop-color:#C6C6C6"/>
- <stop offset="1" style="stop-color:#8C8C8C"/>
+<path d="M21.45,50.699c-0.747,0-1.91-0.479-2.437-1.008L7.159,37.836C6.63,37.309,6.15,36.146,6.15,35.4 V3.899h22.036L28.539,3H5.25V35.4c0,0.989,0.571,2.373,1.273,3.072l11.854,11.854c0.7,0.699,2.081,1.272,3.072,1.272h6.728 l0.375-0.9H21.45z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="43.2646" x2="43.2646" y1="4.6558" y2="53.0455">
+<stop offset="0" style="stop-color:#F0AD93"/>
+<stop offset="1" style="stop-color:#B6593F"/>
</linearGradient>
-<polygon fill="url(#SVGID_15_)" points="15.308,47.93 15.308,49.354 26.267,49.354 27.14,47.93 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="42.9424" x2="42.9424" y1="22.2153" y2="49.467">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="0.8061" style="stop-color:#929497"/>
- <stop offset="1" style="stop-color:#D6D6D6"/>
-</linearGradient>
-<polygon fill="url(#SVGID_16_)" points="54.957,22.215 31.092,22.215 30.928,22.45 35.979,29.337 31.08,36.074 35.57,42.4 31.303,49.354 54.957,49.354 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="23.5005" x2="23.5005" y1="21.022" y2="48.1933">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="0.8061" style="stop-color:#929497"/>
- <stop offset="1" style="stop-color:#D6D6D6"/>
+<polygon fill="url(#SVGID_12_)" points="54.751,4.8 32.14,4.8 31.786,5.7 53.851,5.7 53.851,52.5 32.153,52.5 31.778,53.4 54.751,53.4 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="276.2168" x2="269.5453" y1="-324.1143" y2="-330.7858">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.2" style="stop-color:#FFFFFF"/>
+<stop offset="0.4242" style="stop-color:#E6E6E6"/>
+<stop offset="0.7152" style="stop-color:#BCBCBC"/>
+<stop offset="0.9515" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
</linearGradient>
-<polygon fill="url(#SVGID_17_)" points="26.794,34.85 31.693,28.114 26.642,21.226 26.807,20.991 15.308,20.991 15.308,48.129 27.018,48.129 31.283,41.176 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="30.7891" x2="49.1836" y1="23.6563" y2="41.4616">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
+<path d="M6.909,38.859c-0.373-0.414-1.068-0.83-1.547-2.609c0,0,0.788,3.649,11.588,0.05 c0,15.3,4.5,15.3,4.5,15.3c-0.992,0-2.373-0.573-3.072-1.272L6.909,38.859z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="32.7568" x2="32.7568" y1="4.355" y2="53.1344">
+<stop offset="0" style="stop-color:#F0AD93"/>
+<stop offset="1" style="stop-color:#B6593F"/>
</linearGradient>
-<polygon fill="url(#SVGID_18_)" points="36.59,29.337 31.691,36.074 36.182,42.4 32.291,48.74 54.346,48.74 54.346,22.828 31.816,22.828 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="23.4995" x2="23.4995" y1="21.7104" y2="47.4548">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
+<polygon fill="url(#SVGID_14_)" points="29.681,33.755 36.731,22.656 29.681,13.355 33.038,4.8 32.14,4.8 28.781,13.355 35.831,22.656 28.781,33.755 35.831,43.654 31.778,53.4 32.679,53.4 36.731,43.654 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="28.2559" x2="28.2559" y1="2.5547" y2="51.3336">
+<stop offset="0" style="stop-color:#F0AD93"/>
+<stop offset="1" style="stop-color:#B6593F"/>
</linearGradient>
-<polygon fill="url(#SVGID_19_)" points="30.672,41.176 26.182,34.85 31.08,28.114 26.306,21.603 15.92,21.603 15.92,47.516 26.781,47.516 "/>
-<polygon opacity="0.3" points="52.324,22.221 31.258,22.221 31.641,21.608 52.324,21.608 "/>
-<polygon opacity="0.3" points="14.709,20.327 14.709,43.811 15.321,43.811 15.321,20.939 26.857,20.939 27.287,20.327 "/>
-<rect fill="none" height="60" width="60"/>
+<polygon fill="url(#SVGID_15_)" points="32.231,20.855 25.181,11.556 28.539,3 27.639,3 24.281,11.556 31.331,20.855 24.281,31.955 31.331,41.855 27.278,51.6 28.178,51.6 32.231,41.855 25.181,31.955 "/>
+<rect fill="none" height="60" width="60.001"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_custom.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_custom.svg Thu May 27 13:10:59 2010 +0300
@@ -1,71 +1,39 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
+<g>
<rect fill="none" height="60" width="60"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="24.88" x2="24.88" y1="7.58" y2="43.1">
-
<stop offset="0" stop-color="#FFE6DE"/>
-
<stop offset="1" stop-color="#DB7250"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_1)" points="30.74,19.22,42.88,25.07,30.74,30.93,24.88,43.07,19.03,30.93,6.883,25.07,19.03,19.22,24.88,7.074"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="24.88" x2="24.88" y1="10.64" y2="39.11">
-
<stop offset="0" stop-color="#FF7236"/>
-
<stop offset="0.79" stop-color="#D11414"/>
-
<stop offset="1" stop-color="#E8522A"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_2)" points="39.82,25.07,29.74,29.93,24.88,40.01,20.02,29.93,9.949,25.07,20.02,20.22,24.88,10.14,29.74,20.22"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3" x1="24.88" x2="24.88" y1="4.76" y2="45.29">
-
<stop offset="0" stop-color="#FF3030"/>
-
<stop offset="1" stop-color="#9C2D31"/>
-
</linearGradient>
-
<path d="M24.88,7.474l5.549,11.51,0.176,0.364,0.363,0.177,11.51,5.549-11.51,5.548-0.363,0.177-0.176,0.364-5.549,11.51-5.551-11.51-0.176-0.364-0.363-0.177-11.51-5.55,11.51-5.549,0.363-0.177,0.176-0.364,5.55-11.51m0-2.666l-6.59,13.67-13.68,6.59,13.68,6.591,6.592,13.68,6.592-13.68,13.67-6.591-13.67-6.59-6.6-13.67z" fill="url(#SVGID_3)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4" x1="42.73" x2="42.73" y1="31.3" y2="53.78">
-
<stop offset="0" stop-color="#FFE6DE"/>
-
<stop offset="1" stop-color="#DB7250"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_4)" points="46.38,38.88,53.97,42.54,46.38,46.19,42.73,53.78,39.07,46.19,31.49,42.54,39.07,38.88,42.73,31.3"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5" x1="42.73" x2="42.73" y1="33.21" y2="51.86">
-
<stop offset="0" stop-color="#FF7236"/>
-
<stop offset="0.79" stop-color="#D11414"/>
-
<stop offset="1" stop-color="#E8522A"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_5)" points="52.06,42.54,45.76,45.57,42.73,51.86,39.7,45.57,33.4,42.54,39.7,39.5,42.73,33.21,45.76,39.5"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6" x1="42.73" x2="42.73" y1="29.85" y2="55.16">
-
<stop offset="0" stop-color="#FF3030"/>
-
<stop offset="1" stop-color="#9C2D31"/>
-
</linearGradient>
-
<path d="M42.73,31.54l3.465,7.188,0.109,0.227,0.229,0.11,7.188,3.466-7.2,3.46-0.229,0.11-0.109,0.227-3.465,7.187-3.465-7.187-0.109-0.227-0.22-0.11-7.188-3.465,7.188-3.466,0.229-0.11,0.109-0.227,3.46-7.19m0-1.66l-4.117,8.54-8.539,4.116,8.539,4.115,4.117,8.541,4.115-8.541,8.539-4.115-8.539-4.116-4.11-8.54z" fill="url(#SVGID_6)"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_data_import.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_data_import.svg Thu May 27 13:10:59 2010 +0300
@@ -1,393 +1,200 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
+<g>
<rect fill="none" height="60" width="60"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="18.98" x2="18.98" y1="7.81" y2="45.46">
-
<stop offset="0" stop-color="#D1D7D9"/>
-
<stop offset="0.07" stop-color="#D1D7D9"/>
-
<stop offset="0.26" stop-color="#BDC2C4"/>
-
<stop offset="0.66" stop-color="#949DA1"/>
-
<stop offset="0.96" stop-color="#ADB3B5"/>
-
<stop offset="1" stop-color="#595C5E"/>
-
</linearGradient>
-
<path d="M31.22,42.85c0,1.354-1.097,2.449-2.449,2.449h-19.59c-1.353,0-2.449-1.096-2.449-2.449v-33.06c0-1.353,1.096-2.449,2.449-2.449h19.59c1.353,0,2.449,1.097,2.449,2.449v33.06z" fill="url(#SVGID_1)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="18.98" x2="18.98" y1="7.35" y2="44.44">
-
<stop offset="0" stop-color="#D5D7DB"/>
-
<stop offset="0.67" stop-color="#85878A"/>
-
<stop offset="1" stop-color="#808184"/>
-
</linearGradient>
-
<path d="M28.77,7.346h-19.59c-1.353,0-2.449,1.097-2.449,2.449v33.06c0,0.654,0.26,1.244,0.677,1.684-0.038-0.147-0.065-0.299-0.065-0.459v-34.26c0-1.013,0.824-1.837,1.837-1.837h19.59c1.013,0,1.836,0.824,1.836,1.837v34.28c0,0.16-0.026,0.312-0.064,0.459,0.417-0.439,0.678-1.029,0.678-1.684v-33.06c-0.01-1.352-1.1-2.449-2.46-2.449z" fill="url(#SVGID_2)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3" x1="18.98" x2="18.98" y1="10.44" y2="34.29">
-
<stop offset="0" stop-color="#878B8C"/>
-
<stop offset="1" stop-color="#B1BABD"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_3)" fill-opacity="0.6" height="23.88" stroke-opacity="0.6" width="20.82" x="8.571" y="10.41"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4" x1="18.98" x2="18.98" y1="11.05" y2="33.67">
-
<stop offset="0" stop-color="#3D3D3D"/>
-
<stop offset="1" stop-color="#1A1A1A"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_4)" height="22.65" width="19.59" x="9.183" y="11.02"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5" x1="18.98" x2="18.98" y1="11.66" y2="33.06">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="0.39" stop-color="#2D9BD2"/>
-
<stop offset="0.89" stop-color="#1347BA"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_5)" height="21.43" width="18.37" x="9.795" y="11.63"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6" x1="18.98" x2="18.98" y1="12.14" y2="20.78">
-
<stop offset="0" stop-color="#85EFFF"/>
-
<stop offset="1" stop-color="#3BA1D9"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_6)" points="28.16,18.98,9.795,21.43,9.795,12.24,28.16,12.24"/>
-
<rect fill="#9FE4FF" height="0.612" width="18.37" x="9.795" y="11.63"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7" x1="19.3" x2="19.3" y1="10.44" y2="7.99">
-
<stop offset="0" stop-color="#CFCFCF"/>
-
<stop offset="1" stop-color="#808385"/>
-
</linearGradient>
-
<path d="M17.11,10.41c-0.686,0-1.224-0.448-1.224-1.021v-0.41c0-0.572,0.538-1.021,1.224-1.021h4.37c0.686,0,1.224,0.448,1.224,1.021v0.408c0,0.573-0.538,1.021-1.224,1.021h-4.367z" fill="url(#SVGID_7)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8" x1="19.3" x2="19.3" y1="8.32" y2="9.9">
-
<stop offset="0" stop-color="#343838"/>
-
<stop offset="1" stop-color="#7D8182"/>
-
</linearGradient>
-
<path d="M22.1,9.387c0,0.226-0.273,0.409-0.612,0.409h-4.37c-0.338,0-0.612-0.183-0.612-0.409v-0.408c0-0.226,0.274-0.408,0.612-0.408h4.37c0.338,0,0.612,0.183,0.612,0.408v0.408z" fill="url(#SVGID_8)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9" x1="18.98" x2="18.98" y1="34.92" y2="43.41">
-
<stop offset="0" stop-color="#878B8C"/>
-
<stop offset="1" stop-color="#B1BABD"/>
-
</linearGradient>
-
<path d="M17.07,43.47c-1.312,0-2.379-1.057-2.379-2.355v-3.87c0-1.298,1.067-2.354,2.379-2.354h3.813c1.311,0,2.378,1.057,2.378,2.354v3.862c0,1.298-1.067,2.354-2.379,2.354h-3.808z" fill="url(#SVGID_9)" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<path d="M17.07,42.85c-0.972,0-1.763-0.781-1.763-1.742v-3.86c0-0.961,0.791-1.742,1.763-1.742h3.82c0.972,0,1.763,0.781,1.763,1.742v3.862c0,0.96-0.791,1.741-1.763,1.741h-3.822z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10" x1="18.98" x2="18.98" y1="36.09" y2="42.25">
-
<stop offset="0" stop-color="#D1D7D9"/>
-
<stop offset="0.07" stop-color="#D1D7D9"/>
-
<stop offset="0.26" stop-color="#BDC2C4"/>
-
<stop offset="0.66" stop-color="#949DA1"/>
-
<stop offset="0.96" stop-color="#ADB3B5"/>
-
<stop offset="1" stop-color="#595C5E"/>
-
</linearGradient>
-
<path d="M22.04,41.11c0,0.625-0.514,1.131-1.146,1.131h-3.83c-0.633,0-1.146-0.506-1.146-1.131v-3.86c0-0.625,0.514-1.131,1.146-1.131h3.83c0.632,0,1.146,0.506,1.146,1.131v3.861z" fill="url(#SVGID_10)"/>
-
<path d="M18.37,41.02c-0.675,0-1.225-0.549-1.225-1.225v-1.225c0-0.676,0.549-1.225,1.225-1.225h1.224c0.675,0,1.225,0.549,1.225,1.225v1.225c0,0.676-0.549,1.225-1.225,1.225h-1.214z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11" x1="18.98" x2="18.98" y1="37.95" y2="40.41">
-
<stop offset="0" stop-color="#A6A8AB"/>
-
<stop offset="0.7" stop-color="#58595B"/>
-
<stop offset="1" stop-color="#808184"/>
-
</linearGradient>
-
<path d="M18.37,40.4c-0.337,0-0.612-0.275-0.612-0.612v-1.225c0-0.336,0.275-0.611,0.612-0.611h1.224c0.337,0,0.612,0.275,0.612,0.611v1.225c0,0.337-0.275,0.612-0.612,0.612h-1.224z" fill="url(#SVGID_11)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12" x1="11.02" x2="11.02" y1="35.48" y2="42.25">
-
<stop offset="0" stop-color="#878B8C"/>
-
<stop offset="1" stop-color="#B1BABD"/>
-
</linearGradient>
-
<path d="M11.02,42.24c-1.35,0-2.449-1.057-2.449-2.355v-2.025c0-1.297,1.099-2.354,2.449-2.354s2.449,1.057,2.449,2.354v2.025c0,1.31-1.1,2.36-2.45,2.36z" fill="url(#SVGID_12)" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13" x1="11.02" x2="11.02" y1="36.09" y2="41.64">
-
<stop offset="0" stop-color="#231F20"/>
-
<stop offset="1" stop-color="#6D6E70"/>
-
</linearGradient>
-
<path d="M11.02,41.63c-1,0-1.812-0.78-1.812-1.742v-2.025c0-0.961,0.813-1.742,1.812-1.742,1,0,1.812,0.781,1.812,1.743v2.025c0,0.97-0.81,1.75-1.81,1.75z" fill="url(#SVGID_13)" fill-opacity="0.7" stroke-opacity="0.7"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14" x1="11.02" x2="11.02" y1="36.71" y2="41.02">
-
<stop offset="0" stop-color="#C6FF45"/>
-
<stop offset="0.73" stop-color="#66A00E"/>
-
<stop offset="1" stop-color="#387300"/>
-
</linearGradient>
-
<path d="M12.2,39.89c0,0.625-0.526,1.131-1.175,1.131s-1.175-0.506-1.175-1.131v-2.025c0-0.623,0.526-1.129,1.175-1.129s1.175,0.506,1.175,1.13v2.027z" fill="url(#SVGID_14)"/>
-
<path d="M26.98,42.24c-1.374,0-2.493-1.057-2.493-2.355v-2.025c0-1.297,1.119-2.354,2.493-2.354h-0.089c1.375,0,2.494,1.057,2.494,2.354v2.025c0,1.298-1.119,2.354-2.493,2.354h0.091z" fill="url(#SVGID_12)" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<path d="M26.98,41.63c-1.018,0-1.845-0.78-1.845-1.742v-2.025c0-0.961,0.828-1.742,1.845-1.742h-0.089c1.018,0,1.845,0.781,1.845,1.742v2.025c0,0.961-0.828,1.742-1.845,1.742h0.081z" fill="url(#SVGID_13)" fill-opacity="0.7" stroke-opacity="0.7"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17" x1="26.94" x2="26.94" y1="36.71" y2="41.02">
-
<stop offset="0" stop-color="#FFC142"/>
-
<stop offset="0.75" stop-color="#CF4E18"/>
-
<stop offset="1" stop-color="#B52100"/>
-
</linearGradient>
-
<path d="M28.09,39.89c0,0.625-0.536,1.131-1.196,1.131h0.089c-0.66,0-1.196-0.506-1.196-1.131v-2.025c0-0.624,0.536-1.13,1.196-1.13h-0.089c0.66,0,1.196,0.506,1.196,1.13v2.027z" fill="url(#SVGID_17)"/>
-
<rect fill="#020202" fill-opacity="0.2" height="37.96" stroke-opacity="0.2" width="1.225" x="21.43" y="7.346"/>
-
<rect fill="#020202" fill-opacity="0.1" height="37.96" stroke-opacity="0.1" width="2.449" x="22.04" y="7.346"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18" x1="37.04" x2="37.04" y1="7.35" y2="51.31">
-
<stop offset="0" stop-color="#D1D7D9"/>
-
<stop offset="0.07" stop-color="#D1D7D9"/>
-
<stop offset="0.26" stop-color="#BDC2C4"/>
-
<stop offset="0.66" stop-color="#949DA1"/>
-
<stop offset="0.96" stop-color="#ADB3B5"/>
-
<stop offset="1" stop-color="#595C5E"/>
-
</linearGradient>
-
<path d="M51.42,48.98c0,1.352-1.097,2.448-2.448,2.448h-23.87c-1.352,0-2.449-1.097-2.449-2.448v-39.18c0-1.353,1.097-2.449,2.449-2.449h23.88c1.352,0,2.448,1.097,2.448,2.449v39.18z" fill="url(#SVGID_18)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19" x1="37.04" x2="37.04" y1="7.35" y2="50.55">
-
<stop offset="0" stop-color="#E4EBED"/>
-
<stop offset="0.07" stop-color="#E4EBED"/>
-
<stop offset="0.26" stop-color="#D6DCDE"/>
-
<stop offset="0.66" stop-color="#B2BEC2"/>
-
<stop offset="1" stop-color="#ADB3B5"/>
-
</linearGradient>
-
<path d="M48.98,7.346h-23.88c-1.352,0-2.449,1.097-2.449,2.449v39.18c0,0.652,0.26,1.242,0.677,1.683-0.038-0.147-0.065-0.3-0.065-0.459v-40.4c0-1.013,0.824-1.837,1.836-1.837h23.88c1.012,0,1.836,0.824,1.836,1.837v40.4c0,0.159-0.027,0.312-0.064,0.459,0.416-0.44,0.677-1.03,0.677-1.683v-39.18c-0.02-1.352-1.11-2.449-2.46-2.449z" fill="url(#SVGID_19)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20" x1="37.04" x2="37.04" y1="10.45" y2="39.8">
-
<stop offset="0" stop-color="#B6BBBD"/>
-
<stop offset="1" stop-color="#F0FBFF"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_20)" fill-opacity="0.6" height="29.39" stroke-opacity="0.6" width="25.1" x="24.49" y="10.41"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21" x1="37.04" x2="37.04" y1="11.06" y2="39.18">
-
<stop offset="0" stop-color="#6E6E6E"/>
-
<stop offset="1" stop-color="#333333"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_21)" height="28.16" width="23.88" x="25.1" y="11.02"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22" x1="37.04" x2="37.04" y1="11.67" y2="38.57">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="0.39" stop-color="#2D9BD2"/>
-
<stop offset="0.89" stop-color="#1347BA"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_22)" height="26.94" width="22.65" x="25.71" y="11.63"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23" x1="37.04" x2="37.04" y1="12.12" y2="22.49">
-
<stop offset="0" stop-color="#85EFFF"/>
-
<stop offset="1" stop-color="#3BA1D9"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_23)" points="48.36,20.82,25.71,23.26,25.71,12.24,48.36,12.24"/>
-
<rect fill="#9FE4FF" height="0.612" width="22.65" x="25.71" y="11.63"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24" x1="36.94" x2="36.94" y1="40.43" y2="49.53">
-
<stop offset="0" stop-color="#B6BBBD"/>
-
<stop offset="1" stop-color="#FFFFFF"/>
-
</linearGradient>
-
<path d="M34.73,49.59c-1.312,0-2.379-1.057-2.379-2.354v-4.48c0-1.299,1.067-2.355,2.379-2.355h4.426c1.313,0,2.379,1.057,2.379,2.355v4.475c0,1.297-1.066,2.354-2.379,2.354h-4.43z" fill="url(#SVGID_24)" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<path d="M34.73,48.98c-0.972,0-1.763-0.781-1.763-1.742v-4.48c0-0.961,0.791-1.743,1.763-1.743h4.433c0.973,0,1.764,0.781,1.764,1.743v4.475c0,0.96-0.791,1.742-1.764,1.742h-4.432z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25" x1="36.94" x2="36.94" y1="41.6" y2="48.37">
-
<stop offset="0" stop-color="#A6A8AB"/>
-
<stop offset="0.7" stop-color="#58595B"/>
-
<stop offset="1" stop-color="#808184"/>
-
</linearGradient>
-
<path d="M40.31,47.23c0,0.623-0.514,1.129-1.146,1.129h-4.442c-0.633,0-1.146-0.506-1.146-1.129v-4.47c0-0.625,0.514-1.131,1.146-1.131h4.442c0.632,0,1.146,0.506,1.146,1.131v4.474z" fill="url(#SVGID_25)"/>
-
<path d="M36.02,47.14c-0.676,0-1.225-0.549-1.225-1.225v-1.837c0-0.676,0.549-1.225,1.225-1.225h1.837c0.675,0,1.224,0.549,1.224,1.225v1.837c0,0.676-0.549,1.225-1.224,1.225h-1.835z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26" x1="36.94" x2="36.94" y1="43.45" y2="46.53">
-
<stop offset="0" stop-color="#D1D7D9"/>
-
<stop offset="0.07" stop-color="#D1D7D9"/>
-
<stop offset="0.26" stop-color="#BDC2C4"/>
-
<stop offset="0.66" stop-color="#949DA1"/>
-
<stop offset="0.96" stop-color="#ADB3B5"/>
-
<stop offset="1" stop-color="#595C5E"/>
-
</linearGradient>
-
<path d="M36.02,46.53c-0.336,0-0.612-0.275-0.612-0.612v-1.837c0-0.336,0.276-0.611,0.612-0.611h1.837c0.337,0,0.612,0.275,0.612,0.611v1.837c0,0.337-0.275,0.612-0.612,0.612h-1.835z" fill="url(#SVGID_26)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27" x1="27.2" x2="27.2" y1="40.98" y2="48.38">
-
<stop offset="0" stop-color="#B6BBBD"/>
-
<stop offset="1" stop-color="#F0FBFF"/>
-
</linearGradient>
-
<path d="M26.84,48.36c-1.298,0-2.355-1.057-2.355-2.354v-2.639c0-1.297,1.057-2.354,2.355-2.354h0.706c1.298,0,2.354,1.057,2.354,2.354v2.638c0,1.297-1.057,2.354-2.354,2.354h-0.707z" fill="url(#SVGID_27)" fill-opacity="0.4" stroke-opacity="0.4"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28" x1="27.2" x2="27.2" y1="41.6" y2="47.76">
-
<stop offset="0" stop-color="#231F20"/>
-
<stop offset="1" stop-color="#6D6E70"/>
-
</linearGradient>
-
<path d="M26.84,47.75c-0.961,0-1.743-0.781-1.743-1.742v-2.639c0-0.961,0.781-1.742,1.743-1.742h0.706c0.961,0,1.743,0.781,1.743,1.743v2.638c0,0.961-0.782,1.742-1.743,1.742h-0.707z" fill="url(#SVGID_28)" fill-opacity="0.7" stroke-opacity="0.7"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29" x1="27.2" x2="27.2" y1="42.22" y2="47.15">
-
<stop offset="0" stop-color="#C6FF45"/>
-
<stop offset="0.73" stop-color="#66A00E"/>
-
<stop offset="1" stop-color="#387300"/>
-
</linearGradient>
-
<path d="M28.68,46.01c0,0.624-0.506,1.13-1.13,1.13h-0.706c-0.624,0-1.13-0.506-1.13-1.13v-2.639c0-0.623,0.506-1.129,1.13-1.129h0.706c0.624,0,1.13,0.506,1.13,1.13v2.64z" fill="url(#SVGID_29)"/>
-
<path d="M46,48.36c-1.299,0-2.355-1.057-2.355-2.354v-2.639c0-1.298,1.057-2.354,2.355-2.354h0.706c1.298,0,2.354,1.057,2.354,2.354v2.639c0,1.297-1.057,2.354-2.354,2.354h-0.71z" fill="url(#SVGID_27)" fill-opacity="0.4" stroke-opacity="0.4"/>
-
<path d="M46,47.75c-0.961,0-1.742-0.781-1.742-1.742v-2.639c0-0.961,0.78-1.742,1.742-1.742h0.706c0.96,0,1.742,0.781,1.742,1.742v2.639c0,0.96-0.781,1.742-1.742,1.742h-0.71z" fill="url(#SVGID_28)" fill-opacity="0.7" stroke-opacity="0.7"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32" x1="46.35" x2="46.35" y1="42.22" y2="47.15">
-
<stop offset="0" stop-color="#FFC142"/>
-
<stop offset="0.75" stop-color="#CF4E18"/>
-
<stop offset="1" stop-color="#B52100"/>
-
</linearGradient>
-
<path d="M47.84,46.01c0,0.624-0.506,1.13-1.13,1.13h-0.71c-0.625,0-1.131-0.506-1.131-1.13v-2.639c0-0.624,0.506-1.13,1.131-1.13h0.706c0.624,0,1.13,0.506,1.13,1.13v2.64z" fill="url(#SVGID_32)"/>
-
<rect fill="none" height="60" width="60"/>
-
<polygon fill-opacity="0.1" points="24.28,35.94,16.11,35.94,16.11,26.48,24.28,26.48,24.28,20.36,35.76,31.51,24.28,41.94" stroke-opacity="0.1"/>
-
<polygon fill-opacity="0.2" points="24.89,35.32,16.72,35.32,16.73,27.09,24.89,27.09,24.89,21.8,34.88,31.51,24.9,40.5" stroke-opacity="0.2"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33" x1="25.67" x2="25.67" y1="22.7" y2="38.5">
-
<stop offset="0" stop-color="#C6FF45"/>
-
<stop offset="0.73" stop-color="#66A00E"/>
-
<stop offset="1" stop-color="#387300"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_33)" points="25.51,39.07,34,30.89,25.5,22.64,25.5,27.09,17.34,27.09,17.34,34.71,25.5,34.71"/>
-
<polygon fill="#FFFFFF" points="34,30.89,25.5,22.64,25.5,23.25,33.68,31.2"/>
-
<polygon fill="#FFFFFF" points="17.34,27.7,25.5,27.7,25.5,27.09,17.34,27.09,17.34,34.71,17.34,34.71"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_default_server.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_default_server.svg Thu May 27 13:10:59 2010 +0300
@@ -1,180 +1,176 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.3877" x2="29.3877" y1="52.6611" y2="57.6064">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.7091" style="stop-color:#686E70"/>
- <stop offset="1" style="stop-color:#A6B0B3"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#686E70"/>
+<stop offset="1" style="stop-color:#A6B0B3"/>
</linearGradient>
<path d="M52.041,56.938c0,0.339-0.274,0.612-0.612,0.612H7.347c-0.338,0-0.612-0.273-0.612-0.612v-3.673 c0-0.339,0.274-0.612,0.612-0.612h44.082c0.338,0,0.612,0.273,0.612,0.612V56.938z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="10.4082" x2="49.5918" y1="22.6533" y2="22.6533">
- <stop offset="0" style="stop-color:#B4BDBF"/>
- <stop offset="0.2667" style="stop-color:#E5EBED"/>
- <stop offset="0.703" style="stop-color:#8D9699"/>
- <stop offset="1" style="stop-color:#B7BDBF"/>
+<stop offset="0" style="stop-color:#B4BDBF"/>
+<stop offset="0.2667" style="stop-color:#E5EBED"/>
+<stop offset="0.703" style="stop-color:#8D9699"/>
+<stop offset="1" style="stop-color:#B7BDBF"/>
</linearGradient>
<path d="M48.113,2.449H11.889c-0.815,0-1.48,0.668-1.48,1.485v38.923h39.184V3.935 C49.592,3.117,48.926,2.449,48.113,2.449z" fill="url(#SVGID_2_)"/>
<path d="M48.113,2.449c0.813,0,1.479,0.668,1.479,1.485v38.923H10.408V3.935c0-0.817,0.666-1.485,1.48-1.485H48.113 M48.113,3.626H11.889c-0.173,0-0.318,0.142-0.318,0.309v37.747H48.43V3.935C48.43,3.768,48.285,3.626,48.113,3.626L48.113,3.626z" fill="#FFFFFF"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="15.5947" y2="6.3742">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#303030"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="9.412" width="32.59" x="13.705" y="6.183"/>
-<rect fill="#FFFFFF" height="1.177" opacity="0.25" width="32.59" x="13.705" y="15.595"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.177" stroke-opacity="0.25" width="32.59" x="13.705" y="15.595"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30.0015" x2="30.0015" y1="7.4082" y2="14.3725">
- <stop offset="0" style="stop-color:#8B8B8B"/>
- <stop offset="1" style="stop-color:#454545"/>
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="7.058" width="30.263" x="14.87" y="7.359"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30.0005" x2="30.0005" y1="8.2974" y2="13.2402">
- <stop offset="0" style="stop-color:#525252"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="4.706" width="27.939" x="16.031" y="8.534"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20.0767" x2="20.0767" y1="9.5928" y2="12.0647">
- <stop offset="0" style="stop-color:#17BFFF"/>
- <stop offset="1" style="stop-color:#0D5186"/>
+<stop offset="0" style="stop-color:#17BFFF"/>
+<stop offset="1" style="stop-color:#0D5186"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="2.354" width="5.848" x="17.153" y="9.711"/>
-<rect fill="#FFFFFF" height="1.176" opacity="0.25" width="5.848" x="17.153" y="9.711"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="5.848" x="17.153" y="9.711"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="28.0029" y2="18.7824">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#303030"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="9.412" width="32.59" x="13.705" y="18.591"/>
-<rect fill="#FFFFFF" height="1.176" opacity="0.25" width="32.59" x="13.705" y="28.003"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="32.59" x="13.705" y="28.003"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.0015" x2="30.0015" y1="19.8154" y2="26.7816">
- <stop offset="0" style="stop-color:#8B8B8B"/>
- <stop offset="1" style="stop-color:#454545"/>
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="7.06" width="30.263" x="14.87" y="19.767"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.0005" x2="30.0005" y1="20.7056" y2="25.6484">
- <stop offset="0" style="stop-color:#525252"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="4.706" width="27.939" x="16.031" y="20.942"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="26.957" x2="31.9189" y1="50.5098" y2="50.5098">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.3212" style="stop-color:#C7C7C7"/>
- <stop offset="0.6848" style="stop-color:#4D4D4D"/>
- <stop offset="0.8545" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<path d="M26.939,48.367v3.674c0,0.338,0.274,0.612,0.612,0.612h3.674c0.338,0,0.612-0.274,0.612-0.612 v-3.674H26.939z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="26.9565" x2="31.918" y1="48.6738" y2="48.6738">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.3212" style="stop-color:#C7C7C7"/>
- <stop offset="0.6848" style="stop-color:#4D4D4D"/>
- <stop offset="0.8545" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<rect fill="url(#SVGID_11_)" height="0.612" width="4.897" x="26.938" y="48.367"/>
<g>
- <rect fill="none" height="60" width="60"/>
+<rect fill="none" height="60" width="60"/>
</g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30.0005" x2="30.0005" y1="48.9316" y2="42.9805">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#303030"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
<rect fill="url(#SVGID_12_)" height="6.122" width="37.996" x="11.002" y="42.857"/>
-<rect height="0.612" opacity="0.5" width="37.996" x="11.002" y="42.857"/>
-<rect height="0.612" opacity="0.2" width="37.996" x="11.002" y="43.47"/>
+<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="42.857"/>
+<rect fill-opacity="0.2" height="0.612" stroke-opacity="0.2" width="37.996" x="11.002" y="43.47"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="12.8589" x2="12.8589" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_13_)" height="4.897" width="2.476" x="11.621" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.8115" x2="17.8115" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_14_)" height="4.897" width="2.476" x="16.574" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.7642" x2="22.7642" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_15_)" height="4.897" width="2.476" x="21.526" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="27.7158" x2="27.7158" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_16_)" height="4.897" width="2.476" x="26.478" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="32.668" x2="32.668" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_17_)" height="4.897" width="2.477" x="31.43" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="37.6211" x2="37.6211" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_18_)" height="4.897" width="2.477" x="36.383" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="42.5723" x2="42.5723" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_19_)" height="4.897" width="2.477" x="41.334" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="47.5254" x2="47.5254" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_20_)" height="4.897" width="2.477" x="46.287" y="44.082"/>
-<rect height="0.612" opacity="0.5" width="37.996" x="11.002" y="48.367"/>
-<rect fill="#CCCCCC" height="0.612" opacity="0.5" width="37.996" x="11.002" y="47.755"/>
-<rect height="0.612" opacity="0.3" width="4.897" x="26.938" y="48.979"/>
-<rect height="0.612" opacity="0.1" width="4.897" x="26.938" y="49.592"/>
-<rect height="4.897" opacity="0.3" width="0.612" x="18.979" y="52.653"/>
-<rect height="4.897" opacity="0.3" width="0.612" x="39.184" y="52.653"/>
-<rect height="4.897" opacity="0.1" width="0.612" x="18.367" y="52.653"/>
-<rect height="4.897" opacity="0.1" width="0.612" x="39.796" y="52.653"/>
+<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="48.367"/>
+<rect fill="#CCCCCC" fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="47.755"/>
+<rect fill-opacity="0.3" height="0.612" stroke-opacity="0.3" width="4.897" x="26.938" y="48.979"/>
+<rect fill-opacity="0.1" height="0.612" stroke-opacity="0.1" width="4.897" x="26.938" y="49.592"/>
+<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="18.979" y="52.653"/>
+<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="39.184" y="52.653"/>
+<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="18.367" y="52.653"/>
+<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="39.796" y="52.653"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="29.3872" x2="29.3872" y1="52.1279" y2="57.9301">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.3212" style="stop-color:#C7C7C7"/>
- <stop offset="0.6848" style="stop-color:#4D4D4D"/>
- <stop offset="0.8545" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<rect fill="url(#SVGID_21_)" height="6.122" width="18.367" x="20.204" y="52.041"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.8979" x2="19.8979" y1="52.1279" y2="57.9301">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.3212" style="stop-color:#C7C7C7"/>
- <stop offset="0.6848" style="stop-color:#4D4D4D"/>
- <stop offset="0.8545" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<path d="M19.592,52.653v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122 C19.866,52.041,19.592,52.314,19.592,52.653z" fill="url(#SVGID_22_)"/>
-<path d="M19.592,52.653v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122C19.866,52.041,19.592,52.314,19.592,52.653z" opacity="0.3"/>
+<path d="M19.592,52.653v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122C19.866,52.041,19.592,52.314,19.592,52.653z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="38.877" x2="38.877" y1="52.1279" y2="57.9301">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.3212" style="stop-color:#C7C7C7"/>
- <stop offset="0.6848" style="stop-color:#4D4D4D"/>
- <stop offset="0.8545" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<path d="M38.571,52.041v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897 C39.184,52.314,38.91,52.041,38.571,52.041z" fill="url(#SVGID_23_)"/>
-<path d="M38.571,52.041v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897C39.184,52.314,38.91,52.041,38.571,52.041z" opacity="0.3"/>
+<path d="M38.571,52.041v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897C39.184,52.314,38.91,52.041,38.571,52.041z" fill-opacity="0.3" stroke-opacity="0.3"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<polygon opacity="0.35" points="0.175,15.934 5.351,10.756 11.164,16.568 24.647,3.086 29.824,8.264 11.154,26.914 "/>
+<polygon fill-opacity="0.35" points="0.175,15.934 5.351,10.756 11.164,16.568 24.647,3.086 29.824,8.264 11.154,26.914 " stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="3.0845" y2="22.1505">
- <stop offset="0" style="stop-color:#E3FFA3"/>
- <stop offset="0.7758" style="stop-color:#73B542"/>
- <stop offset="1" style="stop-color:#AFDD76"/>
+<stop offset="0" style="stop-color:#E3FFA3"/>
+<stop offset="0.7758" style="stop-color:#73B542"/>
+<stop offset="1" style="stop-color:#AFDD76"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="28.41,8.264 24.647,4.5 11.164,17.982 5.351,12.17 1.589,15.934 11.154,25.5 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="14.999" x2="14.999" y1="4.6216" y2="21.2281">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="2.943,15.934 5.351,13.524 11.164,19.337 24.647,5.854 27.055,8.263 11.154,24.146 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_device_lock.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_device_lock.svg Thu May 27 13:10:59 2010 +0300
@@ -1,108 +1,110 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="37.589" opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
- <stop offset="0" style="stop-color:#85EFFF"/>
- <stop offset="1" style="stop-color:#3BA1D9"/>
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
<rect fill="#9FE4FF" height="0.767" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D1D7D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D1D7D9"/>
</linearGradient>
<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
- <stop offset="0" style="stop-color:#6C7375"/>
- <stop offset="1" style="stop-color:#BDC2C4"/>
+<stop offset="0" style="stop-color:#6C7375"/>
+<stop offset="1" style="stop-color:#BDC2C4"/>
</linearGradient>
<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" opacity="0.6"/>
-<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" opacity="0.5"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" opacity="0.2"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" opacity="0.4"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" opacity="0.7"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" opacity="0.4"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" opacity="0.7"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
@@ -110,42 +112,42 @@
<g transform="matrix(1 0 0 1 30 30)">
<polygon fill="none" points="0,0 0,30 4.358,30 25.643,30 30,30 30,0 "/>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M4.358,30c-0.942,0-1.709-0.768-1.709-1.71V13.747 c0-0.943,0.767-1.711,1.709-1.711h0.663V9.979C5.099,4.471,9.63,0,15.122,0c5.491,0,10.022,4.471,10.101,9.966v2.07h0.42 c0.941,0,1.709,0.768,1.709,1.711V28.29c0,0.942-0.768,1.71-1.709,1.71H4.358z M20.145,12.036V9.979 c-0.058-2.692-2.312-4.9-5.021-4.9s-4.965,2.208-5.021,4.922v2.035H20.145z" enable-background="new " opacity="0.35"/>
+<path d="M4.358,30c-0.942,0-1.709-0.768-1.709-1.71V13.747 c0-0.943,0.767-1.711,1.709-1.711h0.663V9.979C5.099,4.471,9.63,0,15.122,0c5.491,0,10.022,4.471,10.101,9.966v2.07h0.42 c0.941,0,1.709,0.768,1.709,1.711V28.29c0,0.942-0.768,1.71-1.709,1.71H4.358z M20.145,12.036V9.979 c-0.058-2.692-2.312-4.9-5.021-4.9s-4.965,2.208-5.021,4.922v2.035H20.145z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="273.6377" x2="291.5699" y1="-368.7476" y2="-368.7476">
- <stop offset="0" style="stop-color:#8C8C8C"/>
- <stop offset="0.5333" style="stop-color:#B3B3B3"/>
- <stop offset="1" style="stop-color:#808080"/>
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="0.5333" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
<path d="M15.122,1c-4.984,0-9.03,4.009-9.101,8.979v3.338H9.1V9.979c0.069-3.266,2.74-5.9,6.021-5.9 s5.951,2.635,6.021,5.9v4.477h3.078V9.979C24.152,5.009,20.107,1,15.122,1z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="274.1973" x2="291.0081" y1="-369.0322" y2="-369.0322">
- <stop offset="0" style="stop-color:#CCCCCC"/>
- <stop offset="0.5152" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.5152" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
<path d="M21.714,13.888V9.979c-0.077-3.574-3.032-6.469-6.592-6.469c-3.559,0-6.514,2.895-6.592,6.458v4.488 H6.591V9.979c0.065-4.636,3.893-8.41,8.531-8.41c4.64,0,8.465,3.774,8.53,8.418v3.9L21.714,13.888L21.714,13.888z" fill="url(#SVGID_2__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="274.5469" x2="290.6592" y1="-369.0322" y2="-369.0322">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.5" style="stop-color:#B3B3B3"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path d="M6.945,14.102V9.979c0.063-4.44,3.731-8.055,8.177-8.055S23.234,5.542,23.3,9.99v3.541h-1.231V9.979 c-0.08-3.767-3.196-6.824-6.945-6.824c-3.75,0-6.865,3.053-6.946,6.805v4.142H6.945z" fill="url(#SVGID_3__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="271.1289" x2="293.832" y1="-382.0376" y2="-382.0376">
- <stop offset="0" style="stop-color:#ED8C0D"/>
- <stop offset="0.24" style="stop-color:#FFE692"/>
- <stop offset="0.75" style="stop-color:#ED8C0D"/>
- <stop offset="0.8667" style="stop-color:#FFB81F"/>
- <stop offset="1" style="stop-color:#ED8C0D"/>
+<stop offset="0" style="stop-color:#ED8C0D"/>
+<stop offset="0.24" style="stop-color:#FFE692"/>
+<stop offset="0.75" style="stop-color:#ED8C0D"/>
+<stop offset="0.8667" style="stop-color:#FFB81F"/>
+<stop offset="1" style="stop-color:#ED8C0D"/>
</linearGradient>
<path d="M26.352,28.29c0,0.392-0.317,0.71-0.709,0.71H4.358c-0.392,0-0.709-0.318-0.709-0.71V13.747 c0-0.392,0.317-0.711,0.709-0.711h21.283c0.393,0,0.709,0.319,0.709,0.711V28.29H26.352z" fill="url(#SVGID_4__)"/>
-<path d="M25.643,13.036H4.358c-0.392,0-0.709,0.319-0.709,0.711v0.709 c0-0.392,0.317-0.709,0.709-0.709h21.283c0.393,0,0.709,0.317,0.709,0.709v-0.709C26.352,13.355,26.033,13.036,25.643,13.036z" enable-background="new " fill="#FFFFFF" opacity="0.4"/>
-<path d="M25.643,29H4.358c-0.392,0-0.709-0.318-0.709-0.71v-0.709 c0,0.392,0.317,0.709,0.709,0.709h21.283c0.393,0,0.709-0.317,0.709-0.709v0.709C26.352,28.682,26.033,29,25.643,29z" enable-background="new " opacity="0.25"/>
-<path d="M15,25.82c-0.689,0-1.25-0.562-1.25-1.25v-1.838 c-0.769-0.441-1.25-1.256-1.25-2.162c0-1.379,1.122-2.5,2.5-2.5c1.379,0,2.5,1.121,2.5,2.5c0,0.904-0.48,1.721-1.25,2.162v1.838 C16.25,25.26,15.689,25.82,15,25.82L15,25.82z" enable-background="new " fill="#FFE591" opacity="0.25"/>
+<path d="M25.643,13.036H4.358c-0.392,0-0.709,0.319-0.709,0.711v0.709 c0-0.392,0.317-0.709,0.709-0.709h21.283c0.393,0,0.709,0.317,0.709,0.709v-0.709C26.352,13.355,26.033,13.036,25.643,13.036z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M25.643,29H4.358c-0.392,0-0.709-0.318-0.709-0.71v-0.709 c0,0.392,0.317,0.709,0.709,0.709h21.283c0.393,0,0.709-0.317,0.709-0.709v0.709C26.352,28.682,26.033,29,25.643,29z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<path d="M15,25.82c-0.689,0-1.25-0.562-1.25-1.25v-1.838 c-0.769-0.441-1.25-1.256-1.25-2.162c0-1.379,1.122-2.5,2.5-2.5c1.379,0,2.5,1.121,2.5,2.5c0,0.904-0.48,1.721-1.25,2.162v1.838 C16.25,25.26,15.689,25.82,15,25.82L15,25.82z" fill="#FFE591" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="282.4805" x2="282.4805" y1="-386.0986" y2="-379.7186">
- <stop offset="0" style="stop-color:#A67C52"/>
- <stop offset="1" style="stop-color:#603813"/>
+<stop offset="0" style="stop-color:#A67C52"/>
+<stop offset="1" style="stop-color:#603813"/>
</linearGradient>
<path d="M17,20.57c0-1.104-0.896-2-2-2c-1.104,0-2,0.896-2,2c0,0.839,0.518,1.555,1.25,1.852v2.148 c0,0.414,0.336,0.75,0.75,0.75s0.75-0.336,0.75-0.75v-2.148C16.482,22.125,17,21.409,17,20.57z" fill="url(#SVGID_5__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_device_update.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_device_update.svg Thu May 27 13:10:59 2010 +0300
@@ -1,121 +1,121 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="37.589" opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
- <stop offset="0" style="stop-color:#85EFFF"/>
- <stop offset="1" style="stop-color:#3BA1D9"/>
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
<rect fill="#9FE4FF" height="0.767" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D1D7D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D1D7D9"/>
</linearGradient>
<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
- <stop offset="0" style="stop-color:#6C7375"/>
- <stop offset="1" style="stop-color:#BDC2C4"/>
+<stop offset="0" style="stop-color:#6C7375"/>
+<stop offset="1" style="stop-color:#BDC2C4"/>
</linearGradient>
<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" opacity="0.6"/>
-<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" opacity="0.5"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" opacity="0.2"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" opacity="0.4"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" opacity="0.7"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" opacity="0.4"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" opacity="0.7"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="30.096,0 0.096,0 0.096,14.833 0,14.833 0.096,14.933 0.096,30 14.601,30 15.021,30.438 15.447,30 30.096,30 30.096,14.963 30.215,14.841 30.096,14.841 "/>
-<polygon opacity="0.35" points="0,14.833 3.596,14.828 3.625,14.859 8.375,14.859 8.375,0 21.73,0.001 21.73,14.843 30.215,14.841 15.021,30.438 "/>
+<polygon fill-opacity="0.35" points="0,14.833 3.596,14.828 3.625,14.859 8.375,14.859 8.375,0 21.73,0.001 21.73,14.843 30.215,14.841 15.021,30.438 " stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2176.5142" x2="-2176.5142" y1="2984.646" y2="2957.3247">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="2.846,15.859 15.025,28.575 27.398,15.845 20.732,15.843 20.727,1.292 9.375,1.291 9.375,15.859 "/>
<line fill="none" x1="20.727" x2="9.375" y1="1.297" y2="1.296"/>
@@ -123,10 +123,10 @@
<polygon fill="#E7FFB9" points="20.555,15.867 27.527,15.867 27,16.458 20.555,16.458 "/>
<polygon fill="#E7FFB9" points="2.459,15.859 9.365,15.859 9.365,16.451 3.08,16.451 "/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2165.6621" x2="-2187.9482" y1="2963.2173" y2="2963.2173">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="27.016,15.844 15.025,28.15 3.172,15.829 2.348,15.83 15.025,29 27.842,15.844 "/>
<rect fill="none" height="30" width="30" x="0.096"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_dialer.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_dialer.svg Thu May 27 13:10:59 2010 +0300
@@ -1,89 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<rect fill="none" height="60" width="60"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="17.17" x2="17.17" y1="5.67" y2="54.05">
-
<stop offset="0" stop-color="#96E9FA"/>
-
<stop offset="1" stop-color="#0087D9"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_1)" height="10.42" width="10.42" x="11.96" y="5.674"/>
-
<rect fill="url(#SVGID_1)" height="10.42" width="10.42" x="24.7" y="5.674"/>
-
<rect fill="url(#SVGID_1)" height="10.42" width="10.42" x="37.61" y="5.674"/>
-
<rect fill="url(#SVGID_1)" height="10.42" width="10.42" x="11.96" y="18.25"/>
-
<rect fill="url(#SVGID_1)" height="10.42" width="10.42" x="24.7" y="18.25"/>
-
<rect fill="url(#SVGID_1)" height="10.42" width="10.42" x="37.61" y="18.25"/>
-
<rect fill="url(#SVGID_1)" height="10.42" width="10.42" x="11.96" y="30.99"/>
-
<rect fill="url(#SVGID_1)" height="10.42" width="10.42" x="24.7" y="30.99"/>
-
<rect fill="url(#SVGID_1)" height="10.43" width="10.42" x="24.7" y="43.9"/>
-
<rect fill="url(#SVGID_1)" height="10.42" width="10.42" x="37.61" y="30.99"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11" x1="17.17" x2="17.17" y1="5.67" y2="15.93">
-
<stop offset="0" stop-color="#73E3FF"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
-
<path d="M21.16,6.898v7.976h-7.975v-7.972h7.981m1.229-1.224h-10.43v10.42h10.42v-10.43z" fill="url(#SVGID_11)"/>
-
<path d="M33.9,6.898v7.976h-7.97v-7.972h7.975m1.225-1.224h-10.42v10.42h10.42v-10.43z" fill="url(#SVGID_11)"/>
-
<path d="M46.81,6.898v7.976h-7.976v-7.972h7.98m1.22-1.224h-10.42v10.42h10.42v-10.43z" fill="url(#SVGID_11)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14" x1="17.17" x2="17.17" y1="18.38" y2="28.63">
-
<stop offset="0" stop-color="#73E3FF"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
-
<path d="M21.16,19.48v7.977h-7.975v-7.977h7.981m1.229-1.23h-10.43v10.42h10.42v-10.43z" fill="url(#SVGID_14)"/>
-
<path d="M33.9,19.48v7.977h-7.97v-7.977h7.975m1.225-1.23h-10.42v10.42h10.42v-10.43z" fill="url(#SVGID_14)"/>
-
<path d="M46.81,19.48v7.977h-7.976v-7.977h7.98m1.22-1.23h-10.42v10.42h10.42v-10.43z" fill="url(#SVGID_14)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17" x1="17.17" x2="17.17" y1="31.39" y2="41.49">
-
<stop offset="0" stop-color="#73E3FF"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
-
<path d="M21.16,32.22v7.975h-7.975v-7.975h7.981m1.229-1.23h-10.43v10.42h10.42v-10.42z" fill="url(#SVGID_17)"/>
-
<path d="M33.9,32.22v7.975h-7.97v-7.975h7.975m1.225-1.23h-10.42v10.42h10.42v-10.42z" fill="url(#SVGID_17)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19" x1="29.92" x2="29.92" y1="43.94" y2="54.04">
-
<stop offset="0" stop-color="#73E3FF"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
-
<path d="M33.9,45.12v7.978h-7.97v-7.978h7.975m1.225-1.22h-10.42v10.43h10.42v-10.43z" fill="url(#SVGID_19)"/>
-
<path d="M46.81,32.22v7.975h-7.976v-7.975h7.98m1.22-1.23h-10.42v10.42h10.42v-10.42z" fill="url(#SVGID_17)"/>
-
<rect fill="none" height="60" width="60"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_dialled_voice_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_dialled_voice_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,62 +1,62 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g>
-<defs>
-</defs>
<polygon fill="none" points="30.152,0.436 15.607,0.436 15.186,0 14.762,0.436 0.152,0.436 0.152,15.436 0,15.592 0.152,15.592 0.152,30.436 30.152,30.436 30.152,15.594 30.295,15.594 30.152,15.447 "/>
-<polygon opacity="0.35" points="8.484,30.434 8.48,15.594 0.4,15.594 0,15.592 15.186,0 30.295,15.594 21.907,15.594 21.915,30.436 "/>
+<polygon fill-opacity="0.35" points="8.484,30.434 8.48,15.594 0.4,15.594 0,15.592 15.186,0 30.295,15.594 21.907,15.594 21.915,30.436 " stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8438)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2176.5103" x2="-2176.5103" y1="2985.5796" y2="2956.2766">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#30A4D5"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#30A4D5"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="27.438,14.594 15.184,1.861 2.814,14.594 9.48,14.594 9.484,29.142 20.91,29.145 20.907,14.594 "/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8438)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2176.4844" x2="-2176.4844" y1="2984.1128" y2="2970.6938">
- <stop offset="0.4182" style="stop-color:#B3FCFF"/>
- <stop offset="1" style="stop-color:#5FBAD8"/>
+<stop offset="0" style="stop-color:#B3FCFF"/>
+<stop offset="0.4182" style="stop-color:#B3FCFF"/>
+<stop offset="1" style="stop-color:#5FBAD8"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="3.195,14.592 15.182,2.286 27.108,14.594 27.934,14.594 15.184,1.436 2.37,14.592 "/>
<line fill="none" x1="9.484" x2="20.91" y1="29.138" y2="29.14"/>
<polygon fill="#33AEDB" points="20.912,29.436 9.484,29.434 9.484,28.842 20.912,28.844 "/>
<rect fill="none" height="30" width="30" x="0.152" y="0.436"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email.svg Thu May 27 13:10:59 2010 +0300
@@ -1,28 +1,27 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.4795" x2="312.4795" y1="-347.8892" y2="-403.8838">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.25" style="stop-color:#4F88BD"/>
- <stop offset="0.73" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.25" style="stop-color:#4F88BD"/>
+<stop offset="0.73" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M30,57.997C14.562,57.997,2,45.439,2,30C2,14.564,14.562,2.002,30,2.002 c15.437,0,28,12.561,28,27.998C58,45.439,45.437,57.997,30,57.997L30,57.997z" fill="url(#SVGID_1_)"/>
<radialGradient cx="312.2188" cy="-353.9521" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.3861">
- <stop offset="0.15" style="stop-color:#96E9FA"/>
- <stop offset="0.75" style="stop-color:#005BCC"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="0.15" style="stop-color:#96E9FA"/>
+<stop offset="0.75" style="stop-color:#005BCC"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</radialGradient>
<path d="M57.198,30c0,15.023-12.18,27.198-27.198,27.198C14.979,57.198,2.802,45.023,2.802,30 C2.802,14.982,14.979,2.802,30,2.802C45.019,2.802,57.198,14.982,57.198,30z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.4805" x2="312.4805" y1="-357.0225" y2="-394.2217">
- <stop offset="0" style="stop-color:#0B81FA"/>
- <stop offset="1" style="stop-color:#47DAFA"/>
+<stop offset="0" style="stop-color:#0B81FA"/>
+<stop offset="1" style="stop-color:#47DAFA"/>
</linearGradient>
<path d="M29.998,48.545c-5.093,0-9.503-1.832-13.104-5.451c-3.609-3.623-5.436-8.038-5.436-13.12 c0-5.058,1.832-9.457,5.446-13.076c3.621-3.612,8.026-5.441,13.093-5.441c5.093,0,9.503,1.827,13.109,5.43 c3.604,3.604,5.436,8.005,5.436,13.087c0,2.963-0.612,5.579-1.812,7.774c-1.537,2.821-3.797,4.262-6.723,4.262 c-2.53,0-4.466-1.123-5.768-3.338c-1.409,1.153-3.133,1.736-5.143,1.736c-2.812,0-5.106-1.098-6.817-3.253 c-1.549-1.952-2.334-4.358-2.334-7.156c0-2.812,0.789-5.208,2.345-7.125c1.679-2.096,3.973-3.162,6.806-3.162 c1.447,0,2.702,0.278,3.753,0.827V20.13h5.344v13.714c0,2.966,1.27,2.966,1.813,2.966c0.39,0,1.587,0,2.543-2.438 c0.522-1.359,0.789-2.841,0.789-4.397c0-3.666-1.279-6.715-3.925-9.331c-2.603-2.575-5.772-3.881-9.419-3.881 c-3.71,0-6.776,1.26-9.374,3.85c-2.595,2.592-3.858,5.655-3.858,9.36c0,3.712,1.271,6.78,3.876,9.384 c2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305H29.998L29.998,48.545z M29.1,24.964c-1.16,0-2.03,0.509-2.665,1.547 c-0.594,0.959-0.894,2.133-0.894,3.488c0,4.619,2.029,5.152,3.558,5.152c1.513,0,3.529-0.549,3.529-5.321 C32.629,25.467,30.613,24.964,29.1,24.964L29.1,24.964z" fill="url(#SVGID_3_)"/>
<path d="M47.741,29.974c0,2.843-0.572,5.306-1.715,7.387c-1.39,2.563-3.396,3.846-6.018,3.846 c-2.552,0-4.395-1.282-5.543-3.846c-1.383,1.496-3.175,2.247-5.366,2.247c-2.57,0-4.629-0.982-6.188-2.95 c-1.44-1.818-2.164-4.029-2.164-6.659c0-2.641,0.726-4.844,2.164-6.617c1.539-1.917,3.601-2.871,6.188-2.871 c1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.913c0,2.511,0.868,3.767,2.613,3.767c1.424,0,2.519-0.985,3.287-2.947 c0.562-1.462,0.847-3.022,0.847-4.691c0-3.859-1.388-7.156-4.164-9.899c-2.771-2.744-6.101-4.111-9.982-4.111 c-3.896,0-7.209,1.36-9.939,4.083c-2.726,2.726-4.091,6.03-4.091,9.928c0,3.892,1.366,7.212,4.109,9.95 c2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.538-5.216c-3.468-3.483-5.203-7.674-5.203-12.555 c0-4.87,1.738-9.034,5.214-12.512c3.481-3.467,7.65-5.205,12.527-5.205c4.892,0,9.075,1.728,12.542,5.199 C46.006,20.913,47.741,25.087,47.741,29.974z M33.43,29.832c0-3.78-1.444-5.665-4.33-5.665c-1.443,0-2.563,0.64-3.346,1.932 c-0.68,1.087-1.01,2.386-1.01,3.901c0,3.971,1.449,5.954,4.354,5.954C31.985,35.954,33.43,33.915,33.43,29.832z" fill="#FFFFFF"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_group.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_group.svg Thu May 27 13:10:59 2010 +0300
@@ -1,26 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.4795" x2="312.4795" y1="-347.8892" y2="-403.8838">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.25" style="stop-color:#4F88BD"/>
- <stop offset="0.73" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.25" style="stop-color:#4F88BD"/>
+<stop offset="0.73" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M30,57.997C14.562,57.997,2,45.439,2,30C2,14.564,14.562,2.002,30,2.002 c15.437,0,28,12.561,28,27.998C58,45.439,45.437,57.997,30,57.997L30,57.997z" fill="url(#SVGID_1_)"/>
<radialGradient cx="312.2188" cy="-353.9521" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.3861">
- <stop offset="0.15" style="stop-color:#96E9FA"/>
- <stop offset="0.75" style="stop-color:#005BCC"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="0.15" style="stop-color:#96E9FA"/>
+<stop offset="0.75" style="stop-color:#005BCC"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</radialGradient>
<path d="M57.198,30c0,15.023-12.18,27.198-27.198,27.198C14.979,57.198,2.802,45.023,2.802,30 C2.802,14.982,14.979,2.802,30,2.802C45.019,2.802,57.198,14.982,57.198,30z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.4805" x2="312.4805" y1="-357.0225" y2="-394.2217">
- <stop offset="0" style="stop-color:#0B81FA"/>
- <stop offset="1" style="stop-color:#47DAFA"/>
+<stop offset="0" style="stop-color:#0B81FA"/>
+<stop offset="1" style="stop-color:#47DAFA"/>
</linearGradient>
<path d="M29.998,48.545c-5.093,0-9.503-1.832-13.104-5.451c-3.609-3.623-5.436-8.038-5.436-13.12 c0-5.058,1.832-9.457,5.446-13.076c3.621-3.612,8.026-5.441,13.093-5.441c5.093,0,9.503,1.827,13.109,5.43 c3.604,3.604,5.436,8.005,5.436,13.087c0,2.963-0.612,5.579-1.812,7.774c-1.537,2.821-3.797,4.262-6.723,4.262 c-2.53,0-4.466-1.123-5.768-3.338c-1.409,1.153-3.133,1.736-5.143,1.736c-2.812,0-5.106-1.098-6.817-3.253 c-1.549-1.952-2.334-4.358-2.334-7.156c0-2.812,0.789-5.208,2.345-7.125c1.679-2.096,3.973-3.162,6.806-3.162 c1.447,0,2.702,0.278,3.753,0.827V20.13h5.344v13.714c0,2.966,1.27,2.966,1.813,2.966c0.39,0,1.587,0,2.543-2.438 c0.522-1.359,0.789-2.841,0.789-4.397c0-3.666-1.279-6.715-3.925-9.331c-2.603-2.575-5.772-3.881-9.419-3.881 c-3.71,0-6.776,1.26-9.374,3.85c-2.595,2.592-3.858,5.655-3.858,9.36c0,3.712,1.271,6.78,3.876,9.384 c2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305H29.998L29.998,48.545z M29.1,24.964c-1.16,0-2.03,0.509-2.665,1.547 c-0.594,0.959-0.894,2.133-0.894,3.488c0,4.619,2.029,5.152,3.558,5.152c1.513,0,3.529-0.549,3.529-5.321 C32.629,25.467,30.613,24.964,29.1,24.964L29.1,24.964z" fill="url(#SVGID_3_)"/>
<path d="M47.741,29.974c0,2.843-0.572,5.306-1.715,7.387c-1.39,2.563-3.396,3.846-6.018,3.846 c-2.552,0-4.395-1.282-5.543-3.846c-1.383,1.496-3.175,2.247-5.366,2.247c-2.57,0-4.629-0.982-6.188-2.95 c-1.44-1.818-2.164-4.029-2.164-6.659c0-2.641,0.726-4.844,2.164-6.617c1.539-1.917,3.601-2.871,6.188-2.871 c1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.913c0,2.511,0.868,3.767,2.613,3.767c1.424,0,2.519-0.985,3.287-2.947 c0.562-1.462,0.847-3.022,0.847-4.691c0-3.859-1.388-7.156-4.164-9.899c-2.771-2.744-6.101-4.111-9.982-4.111 c-3.896,0-7.209,1.36-9.939,4.083c-2.726,2.726-4.091,6.03-4.091,9.928c0,3.892,1.366,7.212,4.109,9.95 c2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.538-5.216c-3.468-3.483-5.203-7.674-5.203-12.555 c0-4.87,1.738-9.034,5.214-12.512c3.481-3.467,7.65-5.205,12.527-5.205c4.892,0,9.075,1.728,12.542,5.199 C46.006,20.913,47.741,25.087,47.741,29.974z M33.43,29.832c0-3.78-1.444-5.665-4.33-5.665c-1.443,0-2.563,0.64-3.346,1.932 c-0.68,1.087-1.01,2.386-1.01,3.901c0,3.971,1.449,5.954,4.354,5.954C31.985,35.954,33.43,33.915,33.43,29.832z" fill="#FFFFFF"/>
@@ -28,291 +27,181 @@
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<radialGradient cx="669.4" cy="-594.3" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="11.1">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.2" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</radialGradient>
<path d="M23.46,18.68c-0.521-0.226-0.506-1.339-0.291-1.675,0.038-0.059,0.072-0.117,0.107-0.176h-4.365c0.035,0.059,0.069,0.116,0.107,0.176,0.215,0.336,0.23,1.448-0.291,1.675-0.522,0.228,2.428,2.202,2.428,2.202s2.81-1.98,2.29-2.2z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="669.2" x2="669.2" y1="-588.9" y2="-598.1">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="0.39" stop-color="#2D9BD2"/>
-
<stop offset="0.89" stop-color="#1347BA"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
<path d="M26.59,19.84c-0.549-0.286-3.27-1.238-3.322-1.299l-2.078,1.729-2.233-1.795c-0.063,0.092-2.752,1.035-3.374,1.365-0.713,0.377-1.877,1.246-1.877,3.207h14.76c0-1.97-1.33-2.93-1.88-3.21z" fill="url(#SVGID_2__)"/>
-<polygon fill="#020202" opacity="0.3" points="18.45,18.69,21.19,20.88,23.77,18.74,23.27,18.54,21.19,20.27,18.96,18.47" style="enable-background:new;"/>
+<polygon fill="#020202" fill-opacity="0.3" points="18.45,18.69,21.19,20.88,23.77,18.74,23.27,18.54,21.19,20.27,18.96,18.47" stroke-opacity="0.3" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="669.2" x2="669.2" y1="-594.1" y2="-589.1">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="1" stop-color="#2D9BD2"/>
-
</linearGradient>
<polygon fill="url(#SVGID_3__)" points="21.19,20.88,18.45,18.69,18.29,18.76,21.19,21.07,23.93,18.8,23.77,18.74"/>
<radialGradient cx="669.9" cy="-573.8" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="14.9">
-
<stop offset="0" stop-color="#FFE2D9"/>
-
<stop offset="0.51" stop-color="#FFC6B3"/>
-
<stop offset="0.76" stop-color="#FFA98E"/>
-
<stop offset="1" stop-color="#E88160"/>
-
</radialGradient>
<path d="M24.71,13.56c-0.019-0.008-0.04-0.009-0.06-0.015v-0.001c-0.004-0.001-0.006-0.002-0.006-0.002-0.033-0.008-0.063-0.014-0.094-0.016-3.644-0.635-5.317-2.654-5.442-2.119-0.101,0.425-1.122,1.346-1.657,1.805,0.004,0.021,0.008,0.039,0.012,0.06,0,0,0.02,0.094,0.06,0.254-0.042,0.005-0.084,0.014-0.124,0.03-0.341,0.145-0.447,0.702-0.238,1.248,0.209,0.545,0.652,0.871,0.994,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.198,0.445,0.44,0.922,0.739,1.4,0.498,0.594,1.262,1.287,2.105,1.287,1.02,0,1.645-0.559,2.072-1.121,0.012-0.023,0.022-0.047,0.034-0.064,0.317-0.497,0.575-0.996,0.785-1.46,0.333,0.115,0.761-0.194,0.974-0.719,0.23-0.53,0.14-1.09-0.2-1.25z" fill="url(#SVGID_4_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="666.5" x2="672.8" y1="-589.1" y2="-582.8">
-
<stop offset="0" stop-color="#FFC6B3"/>
-
<stop offset="1" stop-color="#FFA98E"/>
-
</linearGradient>
<path d="M20.91,17.9c-0.621,0-1.246-0.289-1.707-0.727,0.486,0.514,1.143,1.012,1.857,1.012,1.02,0,1.645-0.559,2.072-1.121,0.011-0.023,0.021-0.047,0.034-0.064,0.317-0.497,0.575-0.996,0.785-1.46-1.15,2.03-2.01,2.36-3.03,2.36z" fill="url(#SVGID_5_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="669.1" x2="669.1" y1="-569.1" y2="-578.4">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M20.95,8.483c-1.265,0-1.872,0.574-2.341,1.175-0.764,0.117-1.974,0.817-1.119,3.882,0.535-0.459,1.514-1.703,1.614-2.128,0.128-0.54,1.828,1.521,5.542,2.137,0.045-0.172,0.063-0.272,0.063-0.272,0.6-2.62-0.67-4.694-3.75-4.797z" fill="url(#SVGID_6_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="672.2" x2="663.8" y1="-578" y2="-573">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.36" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M19.11,11.16s1.818,2.389,5.512,2.384c0,0-1.73-0.27-5.51-2.38z" fill="url(#SVGID_7_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="663.1" x2="663.1" y1="-572" y2="-577.3">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M18.68,9.836s-1.78,0.106-1.12,3.123c0,0-0.22-2.07,1.12-3.124z" fill="url(#SVGID_8_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="670.2" x2="670" y1="-569.9" y2="-572.3">
-
<stop offset="0" stop-color="#A87C4F"/>
-
<stop offset="1" stop-color="#632F00"/>
-
</linearGradient>
<path d="M21.82,10.25c-0.828-0.118-2.23-0.853-2.779-0.59,0,0,1.799-2.053,4.971,0.284,0,0.004-0.76,0.516-2.19,0.306z" fill="url(#SVGID_9_)"/>
<radialGradient cx="645" cy="-594.3" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="11.1">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.2" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</radialGradient>
<path d="M11.28,18.68c-0.521-0.226-0.505-1.339-0.29-1.675,0.037-0.059,0.072-0.117,0.108-0.176h-4.371c0.035,0.059,0.069,0.116,0.107,0.176,0.215,0.336,0.23,1.448-0.29,1.675-0.523,0.228,2.427,2.202,2.427,2.202s2.827-1.98,2.307-2.2z" fill="url(#SVGID_10_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="644.8" x2="644.8" y1="-588.9" y2="-598.1">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="0.39" stop-color="#2D9BD2"/>
-
<stop offset="0.89" stop-color="#1347BA"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
<path d="M14.42,19.84c-0.549-0.286-3.271-1.238-3.322-1.299l-2.079,1.729-2.233-1.795c-0.063,0.092-2.752,1.035-3.375,1.365-0.712,0.377-1.876,1.246-1.876,3.207h14.76c-0.01-1.97-1.34-2.93-1.88-3.21z" fill="url(#SVGID_11_)"/>
-<polygon fill="#020202" opacity="0.3" points="6.272,18.69,9.015,20.88,11.59,18.74,11.09,18.54,9.015,20.27,6.781,18.47" style="enable-background:new;"/>
+<polygon fill="#020202" fill-opacity="0.3" points="6.272,18.69,9.015,20.88,11.59,18.74,11.09,18.54,9.015,20.27,6.781,18.47" stroke-opacity="0.3" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="644.9" x2="644.9" y1="-594.1" y2="-589.1">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="1" stop-color="#2D9BD2"/>
-
</linearGradient>
<polygon fill="url(#SVGID_12_)" points="9.015,20.88,6.271,18.69,6.113,18.76,9.015,21.07,11.75,18.8,11.59,18.74"/>
<radialGradient cx="645.6" cy="-573.8" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="14.9">
-
<stop offset="0" stop-color="#FFE2D9"/>
-
<stop offset="0.51" stop-color="#FFC6B3"/>
-
<stop offset="0.76" stop-color="#FFA98E"/>
-
<stop offset="1" stop-color="#E88160"/>
-
</radialGradient>
<path d="M12.53,13.56c-0.019-0.008-0.04-0.009-0.059-0.015v-0.001c-0.004-0.001-0.007-0.002-0.012-0.002-0.028-0.008-0.057-0.014-0.087-0.016-3.645-0.635-5.317-2.654-5.443-2.119-0.102,0.425-1.123,1.346-1.658,1.805,0.004,0.021,0.008,0.039,0.012,0.06,0,0,0.02,0.094,0.06,0.254-0.043,0.005-0.085,0.014-0.124,0.03-0.341,0.145-0.447,0.702-0.239,1.248,0.209,0.545,0.653,0.871,0.995,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.198,0.445,0.44,0.922,0.738,1.4,0.499,0.594,1.263,1.287,2.106,1.287,1.02,0,1.645-0.559,2.073-1.121,0.011-0.023,0.022-0.047,0.034-0.064,0.318-0.497,0.576-0.996,0.785-1.46,0.334,0.115,0.761-0.194,0.973-0.719,0.23-0.53,0.14-1.09-0.2-1.25z" fill="url(#SVGID_13_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="642.2" x2="648.5" y1="-589.1" y2="-582.8">
-
<stop offset="0" stop-color="#FFC6B3"/>
-
<stop offset="1" stop-color="#FFA98E"/>
-
</linearGradient>
<path d="M8.729,17.9c-0.621,0-1.247-0.289-1.708-0.727,0.487,0.514,1.144,1.012,1.858,1.012,1.02,0,1.645-0.559,2.073-1.121,0.011-0.023,0.022-0.047,0.034-0.064,0.318-0.497,0.576-0.996,0.785-1.46-1.15,2.03-2.011,2.36-3.031,2.36z" fill="url(#SVGID_14_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="644.7" x2="644.7" y1="-569.1" y2="-578.4">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M8.776,8.483c-1.265,0-1.872,0.574-2.342,1.175-0.763,0.117-1.973,0.817-1.118,3.882,0.535-0.459,1.514-1.703,1.615-2.128,0.127-0.54,1.828,1.521,5.542,2.137,0.043-0.172,0.063-0.272,0.063-0.272,0.59-2.62-0.68-4.694-3.754-4.797z" fill="url(#SVGID_15_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="647.9" x2="639.5" y1="-578" y2="-573">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.36" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M6.936,11.16s1.818,2.389,5.513,2.384c0,0-1.74-0.27-5.514-2.38z" fill="url(#SVGID_16_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="638.7" x2="638.8" y1="-572.3" y2="-577.7">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M6.498,9.836s-1.779,0.106-1.119,3.123c0,0-0.218-2.07,1.119-3.124z" fill="url(#SVGID_17_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="645.9" x2="645.6" y1="-569.9" y2="-572.3">
-
<stop offset="0" stop-color="#A87C4F"/>
-
<stop offset="1" stop-color="#632F00"/>
-
</linearGradient>
<path d="M9.639,10.25c-0.828-0.118-2.23-0.853-2.78-0.59,0,0,1.8-2.053,4.973,0.284,0,0.004-0.76,0.516-2.191,0.306z" fill="url(#SVGID_18_)"/>
-<path d="M23.32,20.43c-0.506-0.264-2.081-0.849-3.348-1.317l-0.711-0.265-0.128-0.053-0.166-0.063-0.317-0.128-0.196,0.086c-0.001,0.002-0.003,0.002-0.004,0.003h-0.001c-0.826,0.323-2.406,0.897-2.865,1.143-0.178,0.095-0.385,0.222-0.596,0.388-0.221-0.183-0.426-0.311-0.573-0.388-0.395-0.205-1.904-0.753-2.746-1.067l-0.078-0.031-0.002,0.001-0.349-0.142-0.317,0.139c-0.311,0.122-0.693,0.268-1.103,0.424l-0.038,0.014c-1.21,0.461-2.582,0.982-3.107,1.262-1.177,0.625-2.025,1.51-2.525,2.609h21.66c-0.77-1.62-2.12-2.41-2.48-2.6z" fill="#231F20" opacity="0.15" style="enable-background:new;"/>
-<path d="M9.052,11.44c-0.561,0.477-0.712,1.432-0.349,2.38,0.342,0.894,1.048,1.494,1.758,1.494h0.002c0.106,0.221,0.217,0.439,0.331,0.654h-0.033l0.271,0.448s0.071,0.115,0.154,0.253c0.226-0.383,0.424-0.765,0.586-1.123,0.334,0.115,0.761-0.194,0.973-0.719,0.22-0.542,0.125-1.106-0.212-1.259-0.019-0.008-0.04-0.009-0.059-0.015v-0.001c-0.004-0.001-0.007-0.002-0.012-0.002-0.028-0.008-0.057-0.014-0.087-0.016-0.007-0.002-0.012-0.003-0.019-0.005-0.015-0.003-0.032-0.007-0.05-0.011,0.057,0.011,0.109,0.023,0.167,0.033,0.043-0.172,0.063-0.272,0.063-0.272,0.583-2.617-0.686-4.69-3.761-4.793-0.006,0-0.01,0.001-0.017,0.001-0.072,0.839,0.021,1.822,0.3,2.962z" fill="#231F20" opacity="0.15" style="enable-background:new;"/>
-<path d="M18.61,9.658c-0.764,0.117-1.973,0.817-1.119,3.879-0.033,0.006-0.064,0.011-0.096,0.023-0.342,0.145-0.447,0.702-0.238,1.248,0.209,0.545,0.652,0.871,0.994,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.165,0.371,0.364,0.766,0.599,1.163,0.263-0.441,0.512-0.897,0.736-1.369,0.646-0.077,1.279-0.639,1.605-1.444,0.371-0.919,0.253-1.873-0.272-2.37,0.235-1.062,0.272-2.073,0.117-2.993-0.015-0.001-0.028-0.003-0.043-0.003-1.26-0.001-1.87,0.574-2.34,1.174zm-1.11,3.882c0.007-0.006,0.015-0.013,0.021-0.019,0,0.005,0.002,0.008,0.002,0.013,0,0-0.01,0.01-0.02,0.01zm1.76-2.21c-0.009-0.002-0.021-0.007-0.029-0.008,0.01,0,0.02,0.01,0.03,0.01z" fill="#231F20" opacity="0.15" style="enable-background:new;"/>
-<path d="M23.19,20.69c-0.49-0.256-2.057-0.836-3.314-1.305l-0.719-0.266-0.123-0.051-0.172-0.065-0.484-0.194c-0.016-0.021-0.027-0.051-0.041-0.073-0.85,0.327-2.31,0.862-2.746,1.097-0.179,0.094-0.386,0.221-0.597,0.387-0.221-0.182-0.426-0.311-0.573-0.387-0.395-0.205-1.904-0.754-2.746-1.068l-0.042-0.018-0.596,0.261c-0.32,0.125-0.719,0.276-1.144,0.438-1.202,0.457-2.565,0.975-3.074,1.244-1.071,0.568-1.857,1.363-2.338,2.35h21.01c-0.76-1.46-1.98-2.18-2.3-2.35z" fill="#231F20" opacity="0.3" style="enable-background:new;"/>
-<path d="M8.979,13.71c0.298,0.78,0.894,1.304,1.481,1.304,0.062,0,0.122-0.005,0.181-0.017,0.202,0.433,0.419,0.854,0.651,1.261h-0.009l0.068,0.113c0.155-0.283,0.3-0.563,0.419-0.829,0.334,0.115,0.761-0.194,0.973-0.719,0.22-0.542,0.125-1.106-0.212-1.259-0.019-0.008-0.04-0.009-0.059-0.015v-0.001c-0.004-0.001-0.007-0.002-0.012-0.002-0.028-0.008-0.057-0.014-0.087-0.016-0.007-0.002-0.012-0.003-0.019-0.005-0.015-0.003-0.032-0.007-0.05-0.011,0.057,0.011,0.109,0.023,0.167,0.033,0.043-0.172,0.063-0.272,0.063-0.272,0.564-2.535-0.613-4.556-3.483-4.772-0.08,0.847,0.026,1.864,0.336,3.057-0.57,0.33-0.751,1.24-0.404,2.15z" fill="#231F20" opacity="0.3" style="enable-background:new;"/>
-<path d="M18.61,9.658c-0.764,0.117-1.973,0.817-1.119,3.879-0.033,0.006-0.064,0.011-0.096,0.023-0.342,0.145-0.447,0.702-0.238,1.248,0.209,0.545,0.652,0.871,0.994,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.124,0.278,0.269,0.569,0.429,0.864,0.256-0.439,0.497-0.891,0.715-1.357,0.014,0.001,0.025,0.001,0.039,0.001,0.58,0,1.177-0.511,1.483-1.27,0.358-0.884,0.21-1.785-0.325-2.144,0.025-0.106,0.036-0.166,0.036-0.166,0.233-1.043,0.267-2.035,0.11-2.931-1.08,0.083-1.64,0.612-2.08,1.169zm-1.11,3.882c0.007-0.006,0.015-0.013,0.021-0.019,0,0.005,0.002,0.008,0.002,0.013,0,0-0.01,0.01-0.02,0.01zm1.76-2.21c-0.009-0.002-0.021-0.007-0.029-0.008,0.01,0,0.02,0.01,0.03,0.01z" fill="#231F20" opacity="0.3" style="enable-background:new;"/>
+<path d="M23.32,20.43c-0.506-0.264-2.081-0.849-3.348-1.317l-0.711-0.265-0.128-0.053-0.166-0.063-0.317-0.128-0.196,0.086c-0.001,0.002-0.003,0.002-0.004,0.003h-0.001c-0.826,0.323-2.406,0.897-2.865,1.143-0.178,0.095-0.385,0.222-0.596,0.388-0.221-0.183-0.426-0.311-0.573-0.388-0.395-0.205-1.904-0.753-2.746-1.067l-0.078-0.031-0.002,0.001-0.349-0.142-0.317,0.139c-0.311,0.122-0.693,0.268-1.103,0.424l-0.038,0.014c-1.21,0.461-2.582,0.982-3.107,1.262-1.177,0.625-2.025,1.51-2.525,2.609h21.66c-0.77-1.62-2.12-2.41-2.48-2.6z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15" style="enable-background:new;"/>
+<path d="M9.052,11.44c-0.561,0.477-0.712,1.432-0.349,2.38,0.342,0.894,1.048,1.494,1.758,1.494h0.002c0.106,0.221,0.217,0.439,0.331,0.654h-0.033l0.271,0.448s0.071,0.115,0.154,0.253c0.226-0.383,0.424-0.765,0.586-1.123,0.334,0.115,0.761-0.194,0.973-0.719,0.22-0.542,0.125-1.106-0.212-1.259-0.019-0.008-0.04-0.009-0.059-0.015v-0.001c-0.004-0.001-0.007-0.002-0.012-0.002-0.028-0.008-0.057-0.014-0.087-0.016-0.007-0.002-0.012-0.003-0.019-0.005-0.015-0.003-0.032-0.007-0.05-0.011,0.057,0.011,0.109,0.023,0.167,0.033,0.043-0.172,0.063-0.272,0.063-0.272,0.583-2.617-0.686-4.69-3.761-4.793-0.006,0-0.01,0.001-0.017,0.001-0.072,0.839,0.021,1.822,0.3,2.962z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15" style="enable-background:new;"/>
+<path d="M18.61,9.658c-0.764,0.117-1.973,0.817-1.119,3.879-0.033,0.006-0.064,0.011-0.096,0.023-0.342,0.145-0.447,0.702-0.238,1.248,0.209,0.545,0.652,0.871,0.994,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.165,0.371,0.364,0.766,0.599,1.163,0.263-0.441,0.512-0.897,0.736-1.369,0.646-0.077,1.279-0.639,1.605-1.444,0.371-0.919,0.253-1.873-0.272-2.37,0.235-1.062,0.272-2.073,0.117-2.993-0.015-0.001-0.028-0.003-0.043-0.003-1.26-0.001-1.87,0.574-2.34,1.174zm-1.11,3.882c0.007-0.006,0.015-0.013,0.021-0.019,0,0.005,0.002,0.008,0.002,0.013,0,0-0.01,0.01-0.02,0.01zm1.76-2.21c-0.009-0.002-0.021-0.007-0.029-0.008,0.01,0,0.02,0.01,0.03,0.01z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15" style="enable-background:new;"/>
+<path d="M23.19,20.69c-0.49-0.256-2.057-0.836-3.314-1.305l-0.719-0.266-0.123-0.051-0.172-0.065-0.484-0.194c-0.016-0.021-0.027-0.051-0.041-0.073-0.85,0.327-2.31,0.862-2.746,1.097-0.179,0.094-0.386,0.221-0.597,0.387-0.221-0.182-0.426-0.311-0.573-0.387-0.395-0.205-1.904-0.754-2.746-1.068l-0.042-0.018-0.596,0.261c-0.32,0.125-0.719,0.276-1.144,0.438-1.202,0.457-2.565,0.975-3.074,1.244-1.071,0.568-1.857,1.363-2.338,2.35h21.01c-0.76-1.46-1.98-2.18-2.3-2.35z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3" style="enable-background:new;"/>
+<path d="M8.979,13.71c0.298,0.78,0.894,1.304,1.481,1.304,0.062,0,0.122-0.005,0.181-0.017,0.202,0.433,0.419,0.854,0.651,1.261h-0.009l0.068,0.113c0.155-0.283,0.3-0.563,0.419-0.829,0.334,0.115,0.761-0.194,0.973-0.719,0.22-0.542,0.125-1.106-0.212-1.259-0.019-0.008-0.04-0.009-0.059-0.015v-0.001c-0.004-0.001-0.007-0.002-0.012-0.002-0.028-0.008-0.057-0.014-0.087-0.016-0.007-0.002-0.012-0.003-0.019-0.005-0.015-0.003-0.032-0.007-0.05-0.011,0.057,0.011,0.109,0.023,0.167,0.033,0.043-0.172,0.063-0.272,0.063-0.272,0.564-2.535-0.613-4.556-3.483-4.772-0.08,0.847,0.026,1.864,0.336,3.057-0.57,0.33-0.751,1.24-0.404,2.15z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3" style="enable-background:new;"/>
+<path d="M18.61,9.658c-0.764,0.117-1.973,0.817-1.119,3.879-0.033,0.006-0.064,0.011-0.096,0.023-0.342,0.145-0.447,0.702-0.238,1.248,0.209,0.545,0.652,0.871,0.994,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.124,0.278,0.269,0.569,0.429,0.864,0.256-0.439,0.497-0.891,0.715-1.357,0.014,0.001,0.025,0.001,0.039,0.001,0.58,0,1.177-0.511,1.483-1.27,0.358-0.884,0.21-1.785-0.325-2.144,0.025-0.106,0.036-0.166,0.036-0.166,0.233-1.043,0.267-2.035,0.11-2.931-1.08,0.083-1.64,0.612-2.08,1.169zm-1.11,3.882c0.007-0.006,0.015-0.013,0.021-0.019,0,0.005,0.002,0.008,0.002,0.013,0,0-0.01,0.01-0.02,0.01zm1.76-2.21c-0.009-0.002-0.021-0.007-0.029-0.008,0.01,0,0.02,0.01,0.03,0.01z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3" style="enable-background:new;"/>
<radialGradient cx="657.3" cy="-597.7" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_19_" r="16.23">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.2" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</radialGradient>
<path d="M18.46,19.26c-0.764-0.332-0.738-1.957-0.424-2.448,0.055-0.086,0.104-0.172,0.156-0.258h-6.385c0.053,0.086,0.103,0.172,0.157,0.258,0.315,0.491,0.34,2.116-0.424,2.448-0.764,0.331,3.549,3.219,3.549,3.219s4.11-2.89,3.35-3.22z" fill="url(#SVGID_19_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="657" x2="657" y1="-589.9" y2="-603.3">
-
<stop offset="0" stop-color="#FF7236"/>
-
<stop offset="1" stop-color="#BA1212"/>
-
</linearGradient>
<path d="M23.05,20.96c-0.803-0.418-4.781-1.811-4.857-1.896l-3.04,2.524-3.266-2.623c-0.09,0.134-4.023,1.512-4.934,1.995-1.042,0.553-2.743,1.822-2.743,4.688h21.59c0-2.87-1.94-4.28-2.74-4.69z" fill="url(#SVGID_20_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="657.1" x2="657.1" y1="-589" y2="-596.9">
-
<stop offset="0" stop-color="#BC1C24"/>
-
<stop offset="1" stop-color="#6B1C24"/>
-
</linearGradient>
<polygon fill="url(#SVGID_21_)" points="11.14,19.28,15.15,22.48,18.92,19.35,18.19,19.06,15.15,21.58,11.89,18.96"/>
<path d="M11.33,19.79s-5.72,1.493-5.72,5.502h-0.823c0-2.46,1.922-4.38,6.543-5.5z" fill="#FF7B56"/>
<path d="M18.6,19.7s5.72,1.494,5.72,5.502h0.824c0-2.47-1.92-4.38-6.54-5.5z" fill="#FF7B56"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="657.1" x2="657.1" y1="-597.5" y2="-590.2">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</linearGradient>
<polygon fill="url(#SVGID_22_)" points="15.15,22.48,11.14,19.28,10.91,19.39,15.15,22.77,19.15,19.44,18.92,19.35"/>
<radialGradient cx="658.1" cy="-567.8" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_23_" r="21.78">
-
<stop offset="0" stop-color="#FFE2D9"/>
-
<stop offset="0.51" stop-color="#FFC6B3"/>
-
<stop offset="0.76" stop-color="#FFA98E"/>
-
<stop offset="1" stop-color="#E88160"/>
-
</radialGradient>
<path d="M20.29,11.79c-0.026-0.013-0.058-0.015-0.086-0.022v-0.002c-0.005-0.001-0.01-0.002-0.017-0.003-0.041-0.011-0.084-0.021-0.127-0.022-5.331-0.928-7.775-3.88-7.959-3.099-0.147,0.622-1.641,1.968-2.424,2.639,0.007,0.03,0.01,0.057,0.018,0.087,0,0,0.027,0.138,0.086,0.372-0.062,0.007-0.123,0.02-0.182,0.045-0.498,0.21-0.654,1.026-0.349,1.823,0.305,0.798,0.956,1.274,1.454,1.065,0.03-0.014,0.057-0.035,0.085-0.054,0.289,0.65,0.645,1.348,1.079,2.047,0.729,0.866,1.846,1.883,3.079,1.883,1.49,0,2.404-0.815,3.031-1.64,0.017-0.033,0.031-0.066,0.053-0.095,0.465-0.728,0.842-1.455,1.145-2.134,0.488,0.168,1.113-0.284,1.424-1.051,0.35-0.81,0.21-1.63-0.29-1.85z" fill="url(#SVGID_23_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="653.2" x2="662.4" y1="-590.1" y2="-580.9">
-
<stop offset="0" stop-color="#FFC6B3"/>
-
<stop offset="1" stop-color="#FFA98E"/>
-
</linearGradient>
<path d="M14.73,18.13c-0.908,0-1.822-0.423-2.496-1.06,0.713,0.748,1.672,1.478,2.716,1.478,1.491,0,2.403-0.815,3.032-1.64,0.016-0.033,0.031-0.066,0.051-0.095,0.465-0.728,0.842-1.455,1.146-2.134-1.7,2.95-2.96,3.44-4.45,3.44z" fill="url(#SVGID_24_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="656.8" x2="656.8" y1="-560.9" y2="-574.5">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M14.8,4.357c-1.847,0-2.736,0.84-3.423,1.718-1.12,0.172-2.884,1.195-1.636,5.675,0.783-0.67,2.214-2.489,2.361-3.111,0.186-0.788,2.672,2.226,8.103,3.124,0.063-0.251,0.093-0.398,0.093-0.398,0.86-3.821-0.99-6.853-5.49-7.003z" fill="url(#SVGID_25_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="661.5" x2="649.2" y1="-573.9" y2="-566.6">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.36" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M12.11,8.272s2.658,3.492,8.059,3.485c0,0-2.54-0.4-8.06-3.488z" fill="url(#SVGID_26_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="648.1" x2="648.2" y1="-565.2" y2="-573">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M11.47,6.335s-2.603,0.155-1.637,4.566c0.003,0-0.315-3.019,1.637-4.565z" fill="url(#SVGID_27_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="658.5" x2="658.2" y1="-562.1" y2="-565.6">
-
<stop offset="0" stop-color="#A87C4F"/>
-
<stop offset="1" stop-color="#632F00"/>
-
</linearGradient>
<path d="M16.06,6.946c-1.212-0.173-3.263-1.247-4.065-0.863,0,0,2.63-3,7.271,0.415,0,0-1.11,0.747-3.21,0.448z" fill="url(#SVGID_28_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,71 +1,68 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.4795" x2="312.4795" y1="-347.8892" y2="-403.8838">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.25" style="stop-color:#4F88BD"/>
- <stop offset="0.73" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.25" style="stop-color:#4F88BD"/>
+<stop offset="0.73" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M30,57.997C14.562,57.997,2,45.439,2,30C2,14.564,14.562,2.002,30,2.002 c15.437,0,28,12.561,28,27.998C58,45.439,45.437,57.997,30,57.997L30,57.997z" fill="url(#SVGID_1_)"/>
<radialGradient cx="312.2188" cy="-353.9521" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.3861">
- <stop offset="0.15" style="stop-color:#96E9FA"/>
- <stop offset="0.75" style="stop-color:#005BCC"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="0.15" style="stop-color:#96E9FA"/>
+<stop offset="0.75" style="stop-color:#005BCC"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</radialGradient>
<path d="M57.198,30c0,15.023-12.18,27.198-27.198,27.198C14.979,57.198,2.802,45.023,2.802,30 C2.802,14.982,14.979,2.802,30,2.802C45.019,2.802,57.198,14.982,57.198,30z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.4805" x2="312.4805" y1="-357.0225" y2="-394.2217">
- <stop offset="0" style="stop-color:#0B81FA"/>
- <stop offset="1" style="stop-color:#47DAFA"/>
+<stop offset="0" style="stop-color:#0B81FA"/>
+<stop offset="1" style="stop-color:#47DAFA"/>
</linearGradient>
<path d="M29.998,48.545c-5.093,0-9.503-1.832-13.104-5.451c-3.609-3.623-5.436-8.038-5.436-13.12 c0-5.058,1.832-9.457,5.446-13.076c3.621-3.612,8.026-5.441,13.093-5.441c5.093,0,9.503,1.827,13.109,5.43 c3.604,3.604,5.436,8.005,5.436,13.087c0,2.963-0.612,5.579-1.812,7.774c-1.537,2.821-3.797,4.262-6.723,4.262 c-2.53,0-4.466-1.123-5.768-3.338c-1.409,1.153-3.133,1.736-5.143,1.736c-2.812,0-5.106-1.098-6.817-3.253 c-1.549-1.952-2.334-4.358-2.334-7.156c0-2.812,0.789-5.208,2.345-7.125c1.679-2.096,3.973-3.162,6.806-3.162 c1.447,0,2.702,0.278,3.753,0.827V20.13h5.344v13.714c0,2.966,1.27,2.966,1.813,2.966c0.39,0,1.587,0,2.543-2.438 c0.522-1.359,0.789-2.841,0.789-4.397c0-3.666-1.279-6.715-3.925-9.331c-2.603-2.575-5.772-3.881-9.419-3.881 c-3.71,0-6.776,1.26-9.374,3.85c-2.595,2.592-3.858,5.655-3.858,9.36c0,3.712,1.271,6.78,3.876,9.384 c2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305H29.998L29.998,48.545z M29.1,24.964c-1.16,0-2.03,0.509-2.665,1.547 c-0.594,0.959-0.894,2.133-0.894,3.488c0,4.619,2.029,5.152,3.558,5.152c1.513,0,3.529-0.549,3.529-5.321 C32.629,25.467,30.613,24.964,29.1,24.964L29.1,24.964z" fill="url(#SVGID_3_)"/>
<path d="M47.741,29.974c0,2.843-0.572,5.306-1.715,7.387c-1.39,2.563-3.396,3.846-6.018,3.846 c-2.552,0-4.395-1.282-5.543-3.846c-1.383,1.496-3.175,2.247-5.366,2.247c-2.57,0-4.629-0.982-6.188-2.95 c-1.44-1.818-2.164-4.029-2.164-6.659c0-2.641,0.726-4.844,2.164-6.617c1.539-1.917,3.601-2.871,6.188-2.871 c1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.913c0,2.511,0.868,3.767,2.613,3.767c1.424,0,2.519-0.985,3.287-2.947 c0.562-1.462,0.847-3.022,0.847-4.691c0-3.859-1.388-7.156-4.164-9.899c-2.771-2.744-6.101-4.111-9.982-4.111 c-3.896,0-7.209,1.36-9.939,4.083c-2.726,2.726-4.091,6.03-4.091,9.928c0,3.892,1.366,7.212,4.109,9.95 c2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.538-5.216c-3.468-3.483-5.203-7.674-5.203-12.555 c0-4.87,1.738-9.034,5.214-12.512c3.481-3.467,7.65-5.205,12.527-5.205c4.892,0,9.075,1.728,12.542,5.199 C46.006,20.913,47.741,25.087,47.741,29.974z M33.43,29.832c0-3.78-1.444-5.665-4.33-5.665c-1.443,0-2.563,0.64-3.346,1.932 c-0.68,1.087-1.01,2.386-1.01,3.901c0,3.971,1.449,5.954,4.354,5.954C31.985,35.954,33.43,33.915,33.43,29.832z" fill="#FFFFFF"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="30.414,14.408 30.414,0 0.414,0 0.414,14.41 0,14.824 0.414,15.237 0.414,30 30.414,30 30.414,15.236 30.828,14.821 "/>
-<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" opacity="0.35"/>
+<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.415" x2="15.415" y1="28.6694" y2="12.5688">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.6606" style="stop-color:#E0E1E2"/>
- <stop offset="1" style="stop-color:#B9BCBD"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E0E1E2"/>
+<stop offset="1" style="stop-color:#B9BCBD"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="27.081,28.823 3.749,28.823 3.749,14.473 15.414,5.489 27.081,14.473 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.415" x2="15.415" y1="17.313" y2="28.6013">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.6606" style="stop-color:#E0E1E2"/>
- <stop offset="1" style="stop-color:#B9BCBD"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E0E1E2"/>
+<stop offset="1" style="stop-color:#B9BCBD"/>
</linearGradient>
<path d="M15.414,6.668l10.736,8.264V27.89H4.682V14.932L15.414,6.668 M15.414,5.489L3.749,14.473v14.351 h23.333V14.473L15.414,5.489L15.414,5.489z" fill="url(#SVGID_2__)"/>
-<polygon opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 "/>
+<polygon fill-opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 " stroke-opacity="0.2"/>
<polygon fill="#727272" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,6.655 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.416" x2="15.416" y1="17.9946" y2="29.1519">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<rect fill="url(#SVGID_3__)" height="10.501" width="7.001" x="11.916" y="18.322"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.416" x2="15.416" y1="28.7466" y2="18.3602">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<path d="M17.98,19.257v8.633h-5.133v-8.633H17.98 M18.917,18.322h-7.001v10.501h7.001V18.322L18.917,18.322z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15.4136" x2="15.4136" y1="0.0352" y2="17.7271">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="0.2606" style="stop-color:#DE4E29"/>
- <stop offset="1" style="stop-color:#D82E09"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="0.2606" style="stop-color:#DE4E29"/>
+<stop offset="1" style="stop-color:#D82E09"/>
</linearGradient>
<path d="M15.414,5.489l11.667,11.667l2.333-2.333c0,0-12.586-12.554-13.171-13.175 c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333L15.414,5.489z" fill="url(#SVGID_5_)"/>
<radialGradient cx="15.2969" cy="1.7559" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="18.6679">
- <stop offset="0" style="stop-color:#F7D481"/>
- <stop offset="1" style="stop-color:#F5340A"/>
+<stop offset="0" style="stop-color:#F7D481"/>
+<stop offset="1" style="stop-color:#F5340A"/>
</radialGradient>
<path d="M14.553,2.616c0.724-0.688,1.102-0.653,1.689-0.034c0.516,0.549,10.433,10.442,12.705,12.709 l0.467-0.468c0,0-12.586-12.554-13.171-13.175c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14 l0.467,0.465C4.134,13.029,13.917,3.225,14.553,2.616z" fill="url(#SVGID_6_)"/>
-<rect height="1.168" opacity="0.2" width="7.001" x="11.916" y="18.322"/>
+<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.916" y="18.322"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_setup.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_setup.svg Thu May 27 13:10:59 2010 +0300
@@ -1,52 +1,50 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.4795" x2="312.4795" y1="-347.8892" y2="-403.8838">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.25" style="stop-color:#4F88BD"/>
- <stop offset="0.73" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.25" style="stop-color:#4F88BD"/>
+<stop offset="0.73" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M30,57.997C14.562,57.997,2,45.439,2,30C2,14.564,14.562,2.002,30,2.002 c15.437,0,28,12.561,28,27.998C58,45.439,45.437,57.997,30,57.997L30,57.997z" fill="url(#SVGID_1_)"/>
<radialGradient cx="312.2188" cy="-353.9521" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.3861">
- <stop offset="0.15" style="stop-color:#96E9FA"/>
- <stop offset="0.75" style="stop-color:#005BCC"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="0.15" style="stop-color:#96E9FA"/>
+<stop offset="0.75" style="stop-color:#005BCC"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</radialGradient>
<path d="M57.198,30c0,15.023-12.18,27.198-27.198,27.198C14.979,57.198,2.802,45.023,2.802,30 C2.802,14.982,14.979,2.802,30,2.802C45.019,2.802,57.198,14.982,57.198,30z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.4805" x2="312.4805" y1="-357.0225" y2="-394.2217">
- <stop offset="0" style="stop-color:#0B81FA"/>
- <stop offset="1" style="stop-color:#47DAFA"/>
+<stop offset="0" style="stop-color:#0B81FA"/>
+<stop offset="1" style="stop-color:#47DAFA"/>
</linearGradient>
<path d="M29.998,48.545c-5.093,0-9.503-1.832-13.104-5.451c-3.609-3.623-5.436-8.038-5.436-13.12 c0-5.058,1.832-9.457,5.446-13.076c3.621-3.612,8.026-5.441,13.093-5.441c5.093,0,9.503,1.827,13.109,5.43 c3.604,3.604,5.436,8.005,5.436,13.087c0,2.963-0.612,5.579-1.812,7.774c-1.537,2.821-3.797,4.262-6.723,4.262 c-2.53,0-4.466-1.123-5.768-3.338c-1.409,1.153-3.133,1.736-5.143,1.736c-2.812,0-5.106-1.098-6.817-3.253 c-1.549-1.952-2.334-4.358-2.334-7.156c0-2.812,0.789-5.208,2.345-7.125c1.679-2.096,3.973-3.162,6.806-3.162 c1.447,0,2.702,0.278,3.753,0.827V20.13h5.344v13.714c0,2.966,1.27,2.966,1.813,2.966c0.39,0,1.587,0,2.543-2.438 c0.522-1.359,0.789-2.841,0.789-4.397c0-3.666-1.279-6.715-3.925-9.331c-2.603-2.575-5.772-3.881-9.419-3.881 c-3.71,0-6.776,1.26-9.374,3.85c-2.595,2.592-3.858,5.655-3.858,9.36c0,3.712,1.271,6.78,3.876,9.384 c2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305H29.998L29.998,48.545z M29.1,24.964c-1.16,0-2.03,0.509-2.665,1.547 c-0.594,0.959-0.894,2.133-0.894,3.488c0,4.619,2.029,5.152,3.558,5.152c1.513,0,3.529-0.549,3.529-5.321 C32.629,25.467,30.613,24.964,29.1,24.964L29.1,24.964z" fill="url(#SVGID_3_)"/>
<path d="M47.741,29.974c0,2.843-0.572,5.306-1.715,7.387c-1.39,2.563-3.396,3.846-6.018,3.846 c-2.552,0-4.395-1.282-5.543-3.846c-1.383,1.496-3.175,2.247-5.366,2.247c-2.57,0-4.629-0.982-6.188-2.95 c-1.44-1.818-2.164-4.029-2.164-6.659c0-2.641,0.726-4.844,2.164-6.617c1.539-1.917,3.601-2.871,6.188-2.871 c1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.913c0,2.511,0.868,3.767,2.613,3.767c1.424,0,2.519-0.985,3.287-2.947 c0.562-1.462,0.847-3.022,0.847-4.691c0-3.859-1.388-7.156-4.164-9.899c-2.771-2.744-6.101-4.111-9.982-4.111 c-3.896,0-7.209,1.36-9.939,4.083c-2.726,2.726-4.091,6.03-4.091,9.928c0,3.892,1.366,7.212,4.109,9.95 c2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.538-5.216c-3.468-3.483-5.203-7.674-5.203-12.555 c0-4.87,1.738-9.034,5.214-12.512c3.481-3.467,7.65-5.205,12.527-5.205c4.892,0,9.075,1.728,12.542,5.199 C46.006,20.913,47.741,25.087,47.741,29.974z M33.43,29.832c0-3.78-1.444-5.665-4.33-5.665c-1.443,0-2.563,0.64-3.346,1.932 c-0.68,1.087-1.01,2.386-1.01,3.901c0,3.971,1.449,5.954,4.354,5.954C31.985,35.954,33.43,33.915,33.43,29.832z" fill="#FFFFFF"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
-<path d="M15,29.505c-0.657,0-1.337-0.048-2.019-0.144l-0.594-0.082l-0.435-1.304c-0.171-0.517-0.3-1.313-0.3-1.854 v-0.687c-0.006-0.031-0.063-0.11-0.102-0.131l-1.339-0.548l-0.099-0.032c-0.06,0-0.112,0.021-0.127,0.031l-0.479,0.479 c-0.383,0.383-1.038,0.855-1.522,1.098l-1.232,0.612l-0.477-0.36c-1.081-0.815-2.042-1.775-2.856-2.854L3.057,23.25l0.616-1.23 c0.246-0.489,0.718-1.144,1.099-1.523l0.484-0.485c0.018-0.026,0.033-0.119,0.021-0.157L4.72,18.511 c-0.041-0.095-0.118-0.151-0.159-0.158l-0.676,0.001c-0.545,0-1.343-0.13-1.855-0.302l-1.303-0.434l-0.083-0.594 C0.548,16.346,0.5,15.666,0.5,15.005s0.048-1.34,0.144-2.02l0.083-0.594l1.305-0.434c0.507-0.171,1.306-0.301,1.853-0.301h0.687 c0.031-0.006,0.108-0.062,0.127-0.099l0.553-1.344c0.04-0.098,0.025-0.19,0-0.224L4.772,9.511C4.387,9.125,3.915,8.47,3.674,7.987 L3.059,6.758L3.42,6.279c0.814-1.079,1.774-2.04,2.855-2.855l0.479-0.362l1.231,0.617c0.486,0.244,1.14,0.715,1.522,1.097 l0.487,0.485c0.008,0.005,0.06,0.025,0.119,0.025l0.034-0.017l0.064-0.014l1.285-0.531c0.094-0.04,0.15-0.118,0.156-0.16l0-0.676 c0-0.543,0.129-1.34,0.301-1.854l0.435-1.304l0.594-0.083c0.676-0.095,1.356-0.143,2.02-0.143c0.662,0,1.342,0.048,2.02,0.143 l0.595,0.083l0.434,1.305c0.17,0.515,0.301,1.312,0.301,1.853v0.687c0.006,0.031,0.063,0.11,0.1,0.129l1.341,0.551l0.098,0.031 c0.061,0,0.113-0.02,0.129-0.031l0.478-0.478c0.385-0.385,1.038-0.856,1.521-1.098l1.233-0.613l0.476,0.36 c1.08,0.813,2.041,1.773,2.856,2.855l0.362,0.479L26.27,8.106c-0.253,0.506-0.391,0.758-1.04,1.407L24.744,10 c-0.017,0.026-0.032,0.119-0.021,0.158l0.557,1.344c0.04,0.093,0.117,0.15,0.158,0.156l0.678,0c0.544,0,1.343,0.13,1.854,0.302 l1.303,0.433l0.083,0.594c0.095,0.677,0.144,1.356,0.144,2.021c0,0.666-0.049,1.345-0.144,2.021l-0.085,0.593l-1.303,0.434 c-0.508,0.172-1.305,0.302-1.853,0.302h-0.688c-0.032,0.006-0.109,0.063-0.131,0.102l-0.547,1.339 c-0.04,0.097-0.026,0.191-0.002,0.226l0.479,0.479c0.383,0.381,0.857,1.038,1.099,1.525l0.613,1.226l-0.36,0.479 c-0.815,1.08-1.774,2.041-2.854,2.855l-0.479,0.361l-1.231-0.615c-0.485-0.244-1.14-0.716-1.521-1.097l-0.487-0.486 c-0.006-0.004-0.059-0.023-0.119-0.023l-0.031,0.017l-0.066,0.015l-1.284,0.529c-0.094,0.04-0.15,0.118-0.156,0.159v0.677 c0,0.54-0.129,1.337-0.301,1.853l-0.434,1.306l-0.595,0.082C16.335,29.457,15.656,29.505,15,29.505L15,29.505z M15,11.208 c-2.094,0-3.798,1.704-3.798,3.798c0,2.094,1.704,3.798,3.798,3.798s3.797-1.704,3.797-3.798C18.797,12.912,17.094,11.208,15,11.208 L15,11.208z" opacity="0.35"/>
+<path d="M15,29.505c-0.657,0-1.337-0.048-2.019-0.144l-0.594-0.082l-0.435-1.304c-0.171-0.517-0.3-1.313-0.3-1.854 v-0.687c-0.006-0.031-0.063-0.11-0.102-0.131l-1.339-0.548l-0.099-0.032c-0.06,0-0.112,0.021-0.127,0.031l-0.479,0.479 c-0.383,0.383-1.038,0.855-1.522,1.098l-1.232,0.612l-0.477-0.36c-1.081-0.815-2.042-1.775-2.856-2.854L3.057,23.25l0.616-1.23 c0.246-0.489,0.718-1.144,1.099-1.523l0.484-0.485c0.018-0.026,0.033-0.119,0.021-0.157L4.72,18.511 c-0.041-0.095-0.118-0.151-0.159-0.158l-0.676,0.001c-0.545,0-1.343-0.13-1.855-0.302l-1.303-0.434l-0.083-0.594 C0.548,16.346,0.5,15.666,0.5,15.005s0.048-1.34,0.144-2.02l0.083-0.594l1.305-0.434c0.507-0.171,1.306-0.301,1.853-0.301h0.687 c0.031-0.006,0.108-0.062,0.127-0.099l0.553-1.344c0.04-0.098,0.025-0.19,0-0.224L4.772,9.511C4.387,9.125,3.915,8.47,3.674,7.987 L3.059,6.758L3.42,6.279c0.814-1.079,1.774-2.04,2.855-2.855l0.479-0.362l1.231,0.617c0.486,0.244,1.14,0.715,1.522,1.097 l0.487,0.485c0.008,0.005,0.06,0.025,0.119,0.025l0.034-0.017l0.064-0.014l1.285-0.531c0.094-0.04,0.15-0.118,0.156-0.16l0-0.676 c0-0.543,0.129-1.34,0.301-1.854l0.435-1.304l0.594-0.083c0.676-0.095,1.356-0.143,2.02-0.143c0.662,0,1.342,0.048,2.02,0.143 l0.595,0.083l0.434,1.305c0.17,0.515,0.301,1.312,0.301,1.853v0.687c0.006,0.031,0.063,0.11,0.1,0.129l1.341,0.551l0.098,0.031 c0.061,0,0.113-0.02,0.129-0.031l0.478-0.478c0.385-0.385,1.038-0.856,1.521-1.098l1.233-0.613l0.476,0.36 c1.08,0.813,2.041,1.773,2.856,2.855l0.362,0.479L26.27,8.106c-0.253,0.506-0.391,0.758-1.04,1.407L24.744,10 c-0.017,0.026-0.032,0.119-0.021,0.158l0.557,1.344c0.04,0.093,0.117,0.15,0.158,0.156l0.678,0c0.544,0,1.343,0.13,1.854,0.302 l1.303,0.433l0.083,0.594c0.095,0.677,0.144,1.356,0.144,2.021c0,0.666-0.049,1.345-0.144,2.021l-0.085,0.593l-1.303,0.434 c-0.508,0.172-1.305,0.302-1.853,0.302h-0.688c-0.032,0.006-0.109,0.063-0.131,0.102l-0.547,1.339 c-0.04,0.097-0.026,0.191-0.002,0.226l0.479,0.479c0.383,0.381,0.857,1.038,1.099,1.525l0.613,1.226l-0.36,0.479 c-0.815,1.08-1.774,2.041-2.854,2.855l-0.479,0.361l-1.231-0.615c-0.485-0.244-1.14-0.716-1.521-1.097l-0.487-0.486 c-0.006-0.004-0.059-0.023-0.119-0.023l-0.031,0.017l-0.066,0.015l-1.284,0.529c-0.094,0.04-0.15,0.118-0.156,0.159v0.677 c0,0.54-0.129,1.337-0.301,1.853l-0.434,1.306l-0.595,0.082C16.335,29.457,15.656,29.505,15,29.505L15,29.505z M15,11.208 c-2.094,0-3.798,1.704-3.798,3.798c0,2.094,1.704,3.798,3.798,3.798s3.797-1.704,3.797-3.798C18.797,12.912,17.094,11.208,15,11.208 L15,11.208z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="282.4795" x2="282.4795" y1="-361.4912" y2="-388.438">
- <stop offset="0.1" style="stop-color:#FFFFFF"/>
- <stop offset="0.74" style="stop-color:#929497"/>
- <stop offset="1" style="stop-color:#C8C8C8"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.1" style="stop-color:#FFFFFF"/>
+<stop offset="0.74" style="stop-color:#929497"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
</linearGradient>
<path d="M26.116,12.624H25.43c-0.437,0-0.906-0.339-1.042-0.754l-0.531-1.285 c-0.196-0.389-0.105-0.96,0.204-1.269l0.485-0.486c0.615-0.615,0.659-0.759,0.916-1.271l0.349-0.695 c-0.761-1.008-1.659-1.906-2.668-2.666l-0.694,0.346c-0.389,0.195-0.961,0.608-1.271,0.917l-0.485,0.486 c-0.31,0.309-0.882,0.401-1.271,0.203L18.138,5.62c-0.417-0.137-0.755-0.608-0.755-1.044V3.889c0-0.437-0.113-1.134-0.251-1.548 l-0.246-0.735C16.269,1.519,15.641,1.472,15,1.472c-0.641,0-1.27,0.047-1.886,0.133L12.869,2.34 c-0.138,0.415-0.251,1.111-0.251,1.548v0.687c0,0.436-0.339,0.906-0.754,1.042l-1.285,0.53C10.19,6.346,9.62,6.254,9.311,5.946 L8.824,5.46C8.515,5.151,7.942,4.739,7.553,4.543L6.858,4.195C5.851,4.956,4.953,5.854,4.192,6.862l0.347,0.694 c0.195,0.391,0.608,0.963,0.917,1.272l0.486,0.486c0.309,0.309,0.4,0.88,0.202,1.269l-0.531,1.286 c-0.136,0.415-0.605,0.754-1.042,0.754H3.884c-0.438,0-1.134,0.112-1.548,0.252l-0.736,0.245c-0.086,0.617-0.134,1.245-0.134,1.886 c0,0.64,0.047,1.269,0.134,1.885l0.736,0.246c0.414,0.139,1.11,0.251,1.548,0.251h0.687c0.438,0,0.906,0.34,1.042,0.755l0.53,1.284 c0.198,0.389,0.106,0.961-0.203,1.269l-0.486,0.486c-0.309,0.308-0.721,0.882-0.917,1.271L4.19,23.146 c0.761,1.008,1.659,1.905,2.667,2.665l0.694-0.345c0.391-0.196,0.963-0.608,1.271-0.917l0.486-0.485 c0.309-0.309,0.881-0.401,1.27-0.203l1.284,0.529c0.416,0.138,0.755,0.608,0.755,1.044v0.687c0,0.438,0.113,1.133,0.251,1.549 l0.245,0.734c0.617,0.086,1.245,0.134,1.886,0.134c0.64,0,1.267-0.048,1.886-0.134l0.244-0.734c0.138-0.416,0.251-1.111,0.251-1.549 v-0.687c0-0.438,0.34-0.906,0.755-1.043l1.284-0.53c0.391-0.197,0.959-0.105,1.269,0.203l0.485,0.485 c0.31,0.309,0.882,0.721,1.272,0.917l0.695,0.347c1.008-0.76,1.904-1.657,2.665-2.666l-0.347-0.693 c-0.194-0.391-0.608-0.964-0.918-1.271l-0.483-0.486c-0.31-0.309-0.4-0.88-0.204-1.27l0.529-1.284 c0.14-0.416,0.607-0.755,1.044-0.755h0.688c0.435,0,1.132-0.111,1.547-0.251l0.736-0.246c0.087-0.615,0.134-1.245,0.134-1.885 c0-0.641-0.047-1.269-0.134-1.886l-0.736-0.245C27.249,12.736,26.553,12.624,26.116,12.624z M15,19.771 c-2.632,0-4.765-2.133-4.765-4.765c0-2.631,2.132-4.765,4.765-4.765c2.63,0,4.764,2.134,4.764,4.765 C19.764,17.638,17.63,19.771,15,19.771z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="277.6816" x2="287.2746" y1="-377.2241" y2="-377.2241">
- <stop offset="0" style="stop-color:#7A7A7A"/>
- <stop offset="0.5" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<path d="M15,19.771c2.63,0,4.764-2.133,4.764-4.765c0-0.125-0.01-0.246-0.018-0.367 c-0.188,2.459-2.239,4.398-4.746,4.398c-2.508,0-4.558-1.939-4.746-4.398c-0.01,0.122-0.019,0.243-0.019,0.367 C10.235,17.638,12.367,19.771,15,19.771z" fill="url(#SVGID_2__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="282.4805" x2="282.4805" y1="-383.0635" y2="-366.7921">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.52" style="stop-color:#C8C8C8"/>
- <stop offset="1" style="stop-color:#929497"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.52" style="stop-color:#C8C8C8"/>
+<stop offset="1" style="stop-color:#929497"/>
</linearGradient>
<path d="M15,6.52c-4.687,0-8.487,3.8-8.487,8.487s3.8,8.486,8.487,8.486s8.487-3.799,8.487-8.486 S19.687,6.52,15,6.52z M15,21.563c-3.621,0-6.559-2.935-6.559-6.557c0-3.622,2.937-6.558,6.559-6.558 c3.62,0,6.557,2.936,6.557,6.558C21.557,18.629,18.619,21.563,15,21.563z" fill="url(#SVGID_3__)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_work.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_work.svg Thu May 27 13:10:59 2010 +0300
@@ -1,26 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.4795" x2="312.4795" y1="-347.8892" y2="-403.8838">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.25" style="stop-color:#4F88BD"/>
- <stop offset="0.73" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.25" style="stop-color:#4F88BD"/>
+<stop offset="0.73" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M30,57.997C14.562,57.997,2,45.439,2,30C2,14.564,14.562,2.002,30,2.002 c15.437,0,28,12.561,28,27.998C58,45.439,45.437,57.997,30,57.997L30,57.997z" fill="url(#SVGID_1_)"/>
<radialGradient cx="312.2188" cy="-353.9521" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.3861">
- <stop offset="0.15" style="stop-color:#96E9FA"/>
- <stop offset="0.75" style="stop-color:#005BCC"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="0.15" style="stop-color:#96E9FA"/>
+<stop offset="0.75" style="stop-color:#005BCC"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</radialGradient>
<path d="M57.198,30c0,15.023-12.18,27.198-27.198,27.198C14.979,57.198,2.802,45.023,2.802,30 C2.802,14.982,14.979,2.802,30,2.802C45.019,2.802,57.198,14.982,57.198,30z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.4805" x2="312.4805" y1="-357.0225" y2="-394.2217">
- <stop offset="0" style="stop-color:#0B81FA"/>
- <stop offset="1" style="stop-color:#47DAFA"/>
+<stop offset="0" style="stop-color:#0B81FA"/>
+<stop offset="1" style="stop-color:#47DAFA"/>
</linearGradient>
<path d="M29.998,48.545c-5.093,0-9.503-1.832-13.104-5.451c-3.609-3.623-5.436-8.038-5.436-13.12 c0-5.058,1.832-9.457,5.446-13.076c3.621-3.612,8.026-5.441,13.093-5.441c5.093,0,9.503,1.827,13.109,5.43 c3.604,3.604,5.436,8.005,5.436,13.087c0,2.963-0.612,5.579-1.812,7.774c-1.537,2.821-3.797,4.262-6.723,4.262 c-2.53,0-4.466-1.123-5.768-3.338c-1.409,1.153-3.133,1.736-5.143,1.736c-2.812,0-5.106-1.098-6.817-3.253 c-1.549-1.952-2.334-4.358-2.334-7.156c0-2.812,0.789-5.208,2.345-7.125c1.679-2.096,3.973-3.162,6.806-3.162 c1.447,0,2.702,0.278,3.753,0.827V20.13h5.344v13.714c0,2.966,1.27,2.966,1.813,2.966c0.39,0,1.587,0,2.543-2.438 c0.522-1.359,0.789-2.841,0.789-4.397c0-3.666-1.279-6.715-3.925-9.331c-2.603-2.575-5.772-3.881-9.419-3.881 c-3.71,0-6.776,1.26-9.374,3.85c-2.595,2.592-3.858,5.655-3.858,9.36c0,3.712,1.271,6.78,3.876,9.384 c2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305H29.998L29.998,48.545z M29.1,24.964c-1.16,0-2.03,0.509-2.665,1.547 c-0.594,0.959-0.894,2.133-0.894,3.488c0,4.619,2.029,5.152,3.558,5.152c1.513,0,3.529-0.549,3.529-5.321 C32.629,25.467,30.613,24.964,29.1,24.964L29.1,24.964z" fill="url(#SVGID_3_)"/>
<path d="M47.741,29.974c0,2.843-0.572,5.306-1.715,7.387c-1.39,2.563-3.396,3.846-6.018,3.846 c-2.552,0-4.395-1.282-5.543-3.846c-1.383,1.496-3.175,2.247-5.366,2.247c-2.57,0-4.629-0.982-6.188-2.95 c-1.44-1.818-2.164-4.029-2.164-6.659c0-2.641,0.726-4.844,2.164-6.617c1.539-1.917,3.601-2.871,6.188-2.871 c1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.913c0,2.511,0.868,3.767,2.613,3.767c1.424,0,2.519-0.985,3.287-2.947 c0.562-1.462,0.847-3.022,0.847-4.691c0-3.859-1.388-7.156-4.164-9.899c-2.771-2.744-6.101-4.111-9.982-4.111 c-3.896,0-7.209,1.36-9.939,4.083c-2.726,2.726-4.091,6.03-4.091,9.928c0,3.892,1.366,7.212,4.109,9.95 c2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.538-5.216c-3.468-3.483-5.203-7.674-5.203-12.555 c0-4.87,1.738-9.034,5.214-12.512c3.481-3.467,7.65-5.205,12.527-5.205c4.892,0,9.075,1.728,12.542,5.199 C46.006,20.913,47.741,25.087,47.741,29.974z M33.43,29.832c0-3.78-1.444-5.665-4.33-5.665c-1.443,0-2.563,0.64-3.346,1.932 c-0.68,1.087-1.01,2.386-1.01,3.901c0,3.971,1.449,5.954,4.354,5.954C31.985,35.954,33.43,33.915,33.43,29.832z" fill="#FFFFFF"/>
@@ -29,165 +28,105 @@
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="654.6" x2="654.6" y1="-558.3" y2="-601.7">
-
<stop offset="0" stop-color="#DFE1E6"/>
-
<stop offset="1" stop-color="#BDBEC3"/>
-
</linearGradient>
<rect fill="url(#SVGID_1__)" height="21.5" width="17.33" x="5.158" y="3.499"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="654.6" x2="654.6" y1="-558.9" y2="-602.2">
-
<stop offset="0" stop-color="#E7E9EF"/>
-
<stop offset="1" stop-color="#C8C9CE"/>
-
</linearGradient>
<path d="M21.99,3.999v20.5h-16.33v-20.5h16.33m0.5-0.501h-17.33v21.5h17.33v-21.5z" fill="url(#SVGID_2__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="642.6" x2="642.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_3__)" height="3" width="3" x="6.324" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="650.6" x2="650.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_4_)" height="3" width="3" x="10.32" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="666.6" x2="666.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_5_)" height="3" width="3" x="18.32" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="658.6" x2="658.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_6_)" height="3" width="3" x="14.32" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="642.6" x2="642.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_7_)" height="3" width="3" x="6.324" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="650.6" x2="650.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_8_)" height="3" width="3" x="10.32" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="666.6" x2="666.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_9_)" height="3" width="3" x="18.32" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="658.6" x2="658.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_10_)" height="3" width="3" x="14.32" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="642.6" x2="642.6" y1="-594.5" y2="-588.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_11_)" height="3" width="3" x="6.324" y="18.46"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="650.6" x2="650.6" y1="-594.5" y2="-588.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_12_)" height="3" width="3" x="10.32" y="18.46"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="666.6" x2="666.6" y1="-594.5" y2="-588.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_13_)" height="3" width="3" x="18.32" y="18.46"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="658.6" x2="658.6" y1="-594.5" y2="-588.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_14_)" height="3" width="3" x="14.32" y="18.46"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="642.6" x2="642.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_15_)" height="3" width="3" x="6.324" y="13.96"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="650.6" x2="650.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_16_)" height="3" width="3" x="10.32" y="13.96"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="666.6" x2="666.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_17_)" height="3" width="3" x="18.32" y="13.96"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="658.6" x2="658.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_18_)" height="3" width="3" x="14.32" y="13.96"/>
-<polygon opacity="0.3" points="22.49,25,22.49,14.85,12.51,11.92,12.51,25" style="enable-background:new;"/>
+<polygon fill-opacity="0.3" points="22.49,25,22.49,14.85,12.51,11.92,12.51,25" stroke-opacity="0.3" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="665.4" x2="665.4" y1="-582.2" y2="-604.8">
-
<stop offset="0" stop-color="#CCCCCC"/>
-
<stop offset="1" stop-color="#949494"/>
-
</linearGradient>
<polygon fill="url(#SVGID_19_)" points="24.84,16.25,13.51,12.92,13.51,26.5,24.84,26.5"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="665.4" x2="665.4" y1="-582" y2="-605.1">
-
<stop offset="0" stop-color="#DBDDE2"/>
-
<stop offset="1" stop-color="#B5B6BA"/>
-
</linearGradient>
<path d="M14.01,13.58l10.33,3.039v9.38h-10.33v-12.42m-0.5-0.665v13.58h11.33v-10.25l-11.33-3.33z" fill="url(#SVGID_20_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_end_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_end_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<rect fill="none" height="60" width="60"/>
<g>
@@ -40,4 +40,4 @@
<path d="M6.355,27.326c2.275-0.843,14.095-2.529,23.646-2.53 c9.552,0,21.371,1.687,23.646,2.53c0.431,0.161,0.804,0.343,1.144,0.531c-0.233-0.341-0.472-0.685-0.733-1.024 c-0.069-0.028-0.127-0.056-0.196-0.082c-2.309-0.856-14.245-2.568-23.858-2.568c-9.616,0-21.553,1.71-23.862,2.566 c-0.07,0.028-0.128,0.058-0.198,0.085c-0.26,0.339-0.5,0.685-0.733,1.023C5.554,27.667,5.924,27.487,6.355,27.326z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
</g>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_fail.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_fail.svg Thu May 27 13:10:59 2010 +0300
@@ -1,27 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="8.9082" y2="51.5718">
- <stop offset="0" style="stop-color:#E6E6E6"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path d="M30,8.67C18.217,8.67,8.666,18.218,8.666,30c0,11.783,9.551,21.334,21.334,21.334 S51.334,41.783,51.334,30C51.334,18.218,41.783,8.67,30,8.67z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.002" y2="57.8059">
- <stop offset="0" style="stop-color:#FFA680"/>
- <stop offset="0.7939" style="stop-color:#7D1212"/>
- <stop offset="1" style="stop-color:#F18769"/>
+<stop offset="0" style="stop-color:#FFA680"/>
+<stop offset="0.7939" style="stop-color:#7D1212"/>
+<stop offset="1" style="stop-color:#F18769"/>
</linearGradient>
<path d="M30,2.002C14.535,2.002,2,14.534,2,30s12.535,28.002,28,28.002S58,45.466,58,30 S45.465,2.002,30,2.002z M30,9.307c3.941,0,7.619,1.127,10.758,3.047L12.355,40.763C10.43,37.623,9.305,33.948,9.305,30 C9.305,18.591,18.588,9.307,30,9.307z M30,50.697c-3.943,0-7.615-1.128-10.756-3.048l28.4-28.408 c1.922,3.141,3.051,6.817,3.051,10.759C50.695,41.413,41.41,50.697,30,50.697z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="2.752" y2="57.0611">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
</linearGradient>
<path d="M30,57.252C14.975,57.252,2.75,45.026,2.75,30C2.75,14.976,14.975,2.752,30,2.752 S57.25,14.976,57.25,30C57.25,45.026,45.025,57.252,30,57.252L30,57.252z M18.039,47.793l0.813,0.496 c3.381,2.066,7.234,3.158,11.148,3.158c11.824,0,21.445-9.621,21.445-21.447c0-3.914-1.094-7.77-3.162-11.15l-0.496-0.812 L18.039,47.793z M30,8.557C18.174,8.557,8.555,18.176,8.555,30c0,3.923,1.094,7.781,3.16,11.155l0.498,0.811l29.748-29.754 l-0.813-0.497C37.771,9.649,33.916,8.557,30,8.557L30,8.557z" fill="url(#SVGID_3_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_favourites.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_favourites.svg Thu May 27 13:10:59 2010 +0300
@@ -1,33 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(0.9999 -0.0125 -0.0125 -0.9999 2215.6172 4551.269)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2128.8872" x2="-2128.8872" y1="4575.7925" y2="4523.3677">
- <stop offset="0.3576" style="stop-color:#F2C352"/>
- <stop offset="0.8909" style="stop-color:#DE7600"/>
- <stop offset="1" style="stop-color:#E79A26"/>
-</linearGradient>
<polygon fill="url(#SVGID_1_)" points="30.299,46.857 13.109,56.171 16.172,36.861 2.002,23.39 21.313,20.336 29.746,2.696 38.617,20.121 58.002,22.689 44.172,36.51 47.719,55.738 "/>
<radialGradient cx="-2195.2817" cy="4635.3013" gradientTransform="matrix(0.9721 0 0 -0.9721 2163.7463 4516.3262)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="45.7877">
- <stop offset="0.1394" style="stop-color:#FEE16E"/>
- <stop offset="0.5515" style="stop-color:#FFC501"/>
- <stop offset="0.7273" style="stop-color:#F6A800"/>
- <stop offset="1" style="stop-color:#FED43A"/>
+<stop offset="0" style="stop-color:#FEE16E"/>
+<stop offset="0.1394" style="stop-color:#FEE16E"/>
+<stop offset="0.5515" style="stop-color:#FFC501"/>
+<stop offset="0.7273" style="stop-color:#F6A800"/>
+<stop offset="1" style="stop-color:#FED43A"/>
</radialGradient>
<polygon fill="url(#SVGID_2_)" points="17.67,36.354 5.021,24.329 22.26,21.604 29.787,5.86 37.705,21.411 55.006,23.705 42.662,36.041 45.828,53.201 30.281,45.274 14.936,53.589 "/>
<radialGradient cx="-2194.7852" cy="4599.8726" gradientTransform="matrix(0.9721 0 0 -0.9721 2163.7463 4516.3262)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="16.3968">
- <stop offset="0" style="stop-color:#FED95A"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FED95A"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<polygon fill="url(#SVGID_3_)" points="30.281,43.875 15.18,52.056 14.936,53.589 30.281,45.274 45.828,53.201 45.543,51.656 "/>
<radialGradient cx="-2194.771" cy="4629.7397" gradientTransform="matrix(0.9721 0 0 -0.9721 2163.7463 4516.3262)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="63.637">
- <stop offset="0" style="stop-color:#FEF4CE"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEF4CE"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<polygon fill="url(#SVGID_4_)" points="22.959,23.005 29.787,8.661 37.006,22.811 53.764,24.945 55.006,23.705 37.705,21.411 29.787,5.86 22.26,21.604 5.021,24.329 6.292,25.537 "/>
<rect fill="none" height="60" width="60"/>
+<defs>
+<linearGradient gradientTransform="matrix(0.9999 -0.0125 -0.0125 -0.9999 2215.6172 4551.269)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2128.8872" x2="-2128.8872" y1="4575.7925" y2="4523.3677">
+<stop offset="0" style="stop-color:#F2C352"/>
+<stop offset="0.3576" style="stop-color:#F2C352"/>
+<stop offset="0.8909" style="stop-color:#DE7600"/>
+<stop offset="1" style="stop-color:#E79A26"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_filemgr.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_filemgr.svg Thu May 27 13:10:59 2010 +0300
@@ -1,100 +1,92 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.9995" y2="57.1831">
- <stop offset="0" style="stop-color:#989C9E"/>
- <stop offset="0.8182" style="stop-color:#44454A"/>
- <stop offset="1" style="stop-color:#5D5F63"/>
+<stop offset="0" style="stop-color:#989C9E"/>
+<stop offset="0.8182" style="stop-color:#44454A"/>
+<stop offset="1" style="stop-color:#5D5F63"/>
</linearGradient>
<path d="M53.578,55.479c0,0.839-0.68,1.521-1.521,1.521H7.943c-0.84,0-1.521-0.681-1.521-1.521V4.521 C6.422,3.68,7.104,3,7.943,3h44.113c0.842,0,1.521,0.681,1.521,1.521V55.479z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.9995" y2="57.1831">
- <stop offset="0" style="stop-color:#D8DDE0"/>
- <stop offset="0.8182" style="stop-color:#5F6169"/>
- <stop offset="1" style="stop-color:#7D7F85"/>
+<stop offset="0" style="stop-color:#D8DDE0"/>
+<stop offset="0.8182" style="stop-color:#5F6169"/>
+<stop offset="1" style="stop-color:#7D7F85"/>
</linearGradient>
<path d="M52.057,3H7.943C7.104,3,6.422,3.68,6.422,4.521v50.958C6.422,56.318,7.104,57,7.943,57h44.113 c0.842,0,1.521-0.681,1.521-1.521V4.521C53.578,3.68,52.898,3,52.057,3z M52.816,55.479c0,0.419-0.34,0.76-0.76,0.76H7.943 c-0.42,0-0.76-0.341-0.76-0.76V4.521c0-0.42,0.34-0.76,0.76-0.76h44.113c0.42,0,0.76,0.34,0.76,0.76V55.479z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="6.8027" y2="28.1705">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.7879" style="stop-color:#A6A6A6"/>
- <stop offset="1" style="stop-color:#B1B1B1"/>
-</linearGradient>
+<path d="M49.773,26.578c0,0.839-0.68,1.521-1.52,1.521H11.746c-0.84,0-1.52-0.682-1.52-1.521V8.323 c0-0.84,0.68-1.521,1.52-1.521h36.508c0.84,0,1.52,0.68,1.52,1.521V26.578z" fill="url(#SVGID_3_)"/>
+<path d="M11.746,28.859c-1.258,0-2.281-1.023-2.281-2.281V8.323c0-1.258,1.023-2.281,2.281-2.281 h36.508c1.258,0,2.281,1.023,2.281,2.281v18.254c0,1.258-1.023,2.281-2.281,2.281H11.746z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M49.773,26.578c0,0.839-0.68,1.521-1.52,1.521H11.746c-0.84,0-1.52-0.682-1.52-1.521V8.323 c0-0.84,0.68-1.521,1.52-1.521h36.508c0.84,0,1.52,0.68,1.52,1.521V26.578z" fill="url(#SVGID_3_)"/>
-<path d="M11.746,28.859c-1.258,0-2.281-1.023-2.281-2.281V8.323c0-1.258,1.023-2.281,2.281-2.281 h36.508c1.258,0,2.281,1.023,2.281,2.281v18.254c0,1.258-1.023,2.281-2.281,2.281H11.746z" fill="#020202" opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="6.8027" y2="28.1705">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.7879" style="stop-color:#A6A6A6"/>
- <stop offset="1" style="stop-color:#B1B1B1"/>
-</linearGradient>
-<path d="M49.773,26.578c0,0.839-0.68,1.521-1.52,1.521H11.746c-0.84,0-1.52-0.682-1.52-1.521V8.323 c0-0.84,0.68-1.521,1.52-1.521h36.508c0.84,0,1.52,0.68,1.52,1.521V26.578z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="14.4082" y2="22.0395">
- <stop offset="0" style="stop-color:#5B5B5B"/>
- <stop offset="1" style="stop-color:#B0B0B0"/>
+<stop offset="0" style="stop-color:#5B5B5B"/>
+<stop offset="1" style="stop-color:#B0B0B0"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="7.605" width="12.168" x="23.916" y="14.408"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="15.1685" y2="21.2736">
- <stop offset="0" style="stop-color:#E8E8E8"/>
- <stop offset="1" style="stop-color:#828282"/>
+<stop offset="0" style="stop-color:#E8E8E8"/>
+<stop offset="1" style="stop-color:#828282"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="6.084" width="10.648" x="24.676" y="15.168"/>
-<path d="M48.254,6.803H11.746c-0.84,0-1.52,0.68-1.52,1.521v18.254c0,0.839,0.68,1.521,1.52,1.521 h36.508c0.84,0,1.52-0.682,1.52-1.521V8.323C49.773,7.483,49.094,6.803,48.254,6.803z M49.014,26.578c0,0.418-0.34,0.761-0.76,0.761 H11.746c-0.42,0-0.76-0.342-0.76-0.761V8.323c0-0.419,0.34-0.76,0.76-0.76h36.508c0.42,0,0.76,0.34,0.76,0.76V26.578z" fill="#FFFFFF" opacity="0.5"/>
-<polygon fill="#FFFFFF" opacity="0.6" points="23.916,22.014 36.084,22.014 35.324,21.253 23.916,21.253 "/>
-<path d="M10.227,36.464v-15.12c0-1.757,1.346-3.133,3.066-3.133h13.936 c2.424,0,2.928,2.088,3.094,2.775l-0.025,0.006c0.133,0.336,0.297,0.863,0.549,1.69c0.023,0.003,0.049,0.005,0.074,0.005 l15.703-0.001c1.738,0,3.15,1.404,3.15,3.131v10.647H10.227z" fill="#020202" opacity="0.2"/>
-<path d="M10.986,35.704v-14.36c0-1.331,1.012-2.373,2.307-2.373h13.936 c1.824,0,2.182,1.479,2.354,2.193c0,0,0.408,1.323,0.633,2.06c0.1,0.144,0.43,0.223,0.705,0.223l15.703-0.002 c1.318,0,2.391,1.064,2.391,2.371v9.887H10.986z" fill="#020202" opacity="0.3"/>
+<path d="M48.254,6.803H11.746c-0.84,0-1.52,0.68-1.52,1.521v18.254c0,0.839,0.68,1.521,1.52,1.521 h36.508c0.84,0,1.52-0.682,1.52-1.521V8.323C49.773,7.483,49.094,6.803,48.254,6.803z M49.014,26.578c0,0.418-0.34,0.761-0.76,0.761 H11.746c-0.42,0-0.76-0.342-0.76-0.761V8.323c0-0.419,0.34-0.76,0.76-0.76h36.508c0.42,0,0.76,0.34,0.76,0.76V26.578z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<polygon fill="#FFFFFF" fill-opacity="0.6" points="23.916,22.014 36.084,22.014 35.324,21.253 23.916,21.253 " stroke-opacity="0.6"/>
+<path d="M10.227,36.464v-15.12c0-1.757,1.346-3.133,3.066-3.133h13.936 c2.424,0,2.928,2.088,3.094,2.775l-0.025,0.006c0.133,0.336,0.297,0.863,0.549,1.69c0.023,0.003,0.049,0.005,0.074,0.005 l15.703-0.001c1.738,0,3.15,1.404,3.15,3.131v10.647H10.227z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10.986,35.704v-14.36c0-1.331,1.012-2.373,2.307-2.373h13.936 c1.824,0,2.182,1.479,2.354,2.193c0,0,0.408,1.323,0.633,2.06c0.1,0.144,0.43,0.223,0.705,0.223l15.703-0.002 c1.318,0,2.391,1.064,2.391,2.371v9.887H10.986z" fill="#020202" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="18.1982" y2="34.3475">
- <stop offset="0" style="stop-color:#FEEFA7"/>
- <stop offset="0.3273" style="stop-color:#FEE570"/>
- <stop offset="0.6485" style="stop-color:#F0C12B"/>
- <stop offset="1" style="stop-color:#E6A501"/>
+<stop offset="0" style="stop-color:#FEEFA7"/>
+<stop offset="0.3273" style="stop-color:#FEE570"/>
+<stop offset="0.6485" style="stop-color:#F0C12B"/>
+<stop offset="1" style="stop-color:#E6A501"/>
</linearGradient>
<path d="M46.623,23.446H30.992c0,0-1.135,0.069-1.484-0.693c-0.221-0.728-0.666-2.17-0.666-2.17 c-0.219-0.919-0.506-1.611-1.613-1.611H13.293c-0.881,0-1.547,0.722-1.547,1.611v13.6h36.508v-9.126 C48.254,24.168,47.502,23.446,46.623,23.446z" fill="url(#SVGID_7_)"/>
-<path d="M46.623,23.446H30.992c0,0-1.135,0.069-1.484-0.693c-0.221-0.728-0.666-2.17-0.666-2.17 c-0.219-0.919-0.506-1.611-1.613-1.611H13.293c-0.881,0-1.547,0.722-1.547,1.611v0.761c0-0.89,0.666-1.612,1.547-1.612h13.936 c1.107,0,1.395,0.693,1.613,1.612c0,0,0.445,1.44,0.666,2.17c0.35,0.76,1.484,0.692,1.484,0.692h15.631 c0.879,0,1.631,0.722,1.631,1.61v-0.761C48.254,24.168,47.502,23.446,46.623,23.446z" fill="#FCF3D0" opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="31.9014" y2="54.0325">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.7879" style="stop-color:#A6A6A6"/>
- <stop offset="1" style="stop-color:#B1B1B1"/>
-</linearGradient>
+<path d="M46.623,23.446H30.992c0,0-1.135,0.069-1.484-0.693c-0.221-0.728-0.666-2.17-0.666-2.17 c-0.219-0.919-0.506-1.611-1.613-1.611H13.293c-0.881,0-1.547,0.722-1.547,1.611v0.761c0-0.89,0.666-1.612,1.547-1.612h13.936 c1.107,0,1.395,0.693,1.613,1.612c0,0,0.445,1.44,0.666,2.17c0.35,0.76,1.484,0.692,1.484,0.692h15.631 c0.879,0,1.631,0.722,1.631,1.61v-0.761C48.254,24.168,47.502,23.446,46.623,23.446z" fill="#FCF3D0" fill-opacity="0.8" stroke-opacity="0.8"/>
<path d="M50.535,52.436c0,0.839-0.682,1.521-1.521,1.521H10.986c-0.84,0-1.521-0.682-1.521-1.521V33.421 c0-0.84,0.682-1.52,1.521-1.52h38.027c0.84,0,1.521,0.68,1.521,1.52V52.436z" fill="url(#SVGID_8_)"/>
-<path d="M10.986,56.239c-1.678,0-3.043-1.365-3.043-3.042V34.183c0-1.678,1.365-3.042,3.043-3.042 h38.027c1.678,0,3.043,1.364,3.043,3.042v19.014c0,1.677-1.365,3.042-3.043,3.042H10.986z" fill="#020202" opacity="0.2"/>
-<path d="M10.986,55.479c-1.26,0-2.283-1.023-2.283-2.282V34.183c0-1.258,1.023-2.281,2.283-2.281 h38.027c1.258,0,2.283,1.023,2.283,2.281v19.014c0,1.259-1.025,2.282-2.283,2.282H10.986z" fill="#020202" opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30" x2="30" y1="31.9014" y2="54.0325">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.7879" style="stop-color:#A6A6A6"/>
- <stop offset="1" style="stop-color:#B1B1B1"/>
-</linearGradient>
-<path d="M50.535,52.436c0,0.839-0.682,1.521-1.521,1.521H10.986c-0.84,0-1.521-0.682-1.521-1.521V33.421 c0-0.84,0.682-1.52,1.521-1.52h38.027c0.84,0,1.521,0.68,1.521,1.52V52.436z" fill="url(#SVGID_9_)"/>
+<path d="M10.986,56.239c-1.678,0-3.043-1.365-3.043-3.042V34.183c0-1.678,1.365-3.042,3.043-3.042 h38.027c1.678,0,3.043,1.364,3.043,3.042v19.014c0,1.677-1.365,3.042-3.043,3.042H10.986z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10.986,55.479c-1.26,0-2.283-1.023-2.283-2.282V34.183c0-1.258,1.023-2.281,2.283-2.281 h38.027c1.258,0,2.283,1.023,2.283,2.281v19.014c0,1.259-1.025,2.282-2.283,2.282H10.986z" fill="#020202" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M50.535,52.436c0,0.839-0.682,1.521-1.521,1.521H10.986c-0.84,0-1.521-0.682-1.521-1.521V33.421 c0-0.84,0.682-1.52,1.521-1.52h38.027c0.84,0,1.521,0.68,1.521,1.52V52.436z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="30" x2="30" y1="40.2671" y2="48.6622">
- <stop offset="0" style="stop-color:#5B5B5B"/>
- <stop offset="1" style="stop-color:#B0B0B0"/>
+<stop offset="0" style="stop-color:#5B5B5B"/>
+<stop offset="1" style="stop-color:#B0B0B0"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="8.367" width="13.691" x="23.154" y="40.267"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="30" x2="30" y1="41.0278" y2="47.8963">
- <stop offset="0" style="stop-color:#E8E8E8"/>
- <stop offset="1" style="stop-color:#828282"/>
+<stop offset="0" style="stop-color:#E8E8E8"/>
+<stop offset="1" style="stop-color:#828282"/>
</linearGradient>
<rect fill="url(#SVGID_11_)" height="6.845" width="12.168" x="23.916" y="41.028"/>
-<path d="M49.014,31.901H10.986c-0.84,0-1.521,0.68-1.521,1.52v19.015c0,0.839,0.682,1.521,1.521,1.521 h38.027c0.84,0,1.521-0.682,1.521-1.521V33.421C50.535,32.581,49.854,31.901,49.014,31.901z M49.773,52.436 c0,0.419-0.34,0.761-0.76,0.761H10.986c-0.42,0-0.76-0.341-0.76-0.761V33.421c0-0.419,0.34-0.759,0.76-0.759h38.027 c0.42,0,0.76,0.34,0.76,0.759V52.436z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M49.014,31.901H10.986c-0.84,0-1.521,0.68-1.521,1.52v19.015c0,0.839,0.682,1.521,1.521,1.521 h38.027c0.84,0,1.521-0.682,1.521-1.521V33.421C50.535,32.581,49.854,31.901,49.014,31.901z M49.773,52.436 c0,0.419-0.34,0.761-0.76,0.761H10.986c-0.42,0-0.76-0.341-0.76-0.761V33.421c0-0.419,0.34-0.759,0.76-0.759h38.027 c0.42,0,0.76,0.34,0.76,0.759V52.436z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<polygon fill="#FFFFFF" points="20.814,31.901 22.639,37.226 37.359,37.226 39.184,31.901 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30" x2="30" y1="31.9014" y2="36.4799">
- <stop offset="0" style="stop-color:#989C9E"/>
- <stop offset="0.8182" style="stop-color:#44454A"/>
- <stop offset="1" style="stop-color:#5D5F63"/>
+<stop offset="0" style="stop-color:#989C9E"/>
+<stop offset="0.8182" style="stop-color:#44454A"/>
+<stop offset="1" style="stop-color:#5D5F63"/>
</linearGradient>
<polygon fill="url(#SVGID_12_)" points="36.846,36.464 23.154,36.464 21.635,31.901 38.365,31.901 "/>
<polygon fill="#FFFFFF" points="21.576,6.803 23.4,11.366 36.6,11.366 38.424,6.803 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="30" x2="30" y1="6.8027" y2="10.6184">
- <stop offset="0" style="stop-color:#989C9E"/>
- <stop offset="0.8182" style="stop-color:#44454A"/>
- <stop offset="1" style="stop-color:#5D5F63"/>
+<stop offset="0" style="stop-color:#989C9E"/>
+<stop offset="0.8182" style="stop-color:#44454A"/>
+<stop offset="1" style="stop-color:#5D5F63"/>
</linearGradient>
<polygon fill="url(#SVGID_13_)" points="36.084,10.605 23.916,10.605 22.395,6.803 37.605,6.803 "/>
-<rect fill="#020202" height="1.522" opacity="0.2" width="36.508" x="11.746" y="30.379"/>
-<rect fill="#020202" height="0.76" opacity="0.1" width="36.508" x="11.746" y="29.62"/>
-<rect fill="#020202" height="0.761" opacity="0.05" width="36.508" x="11.746" y="28.859"/>
-<polygon fill="#FFFFFF" opacity="0.8" points="36.846,48.634 23.154,48.634 23.916,47.873 36.084,47.873 "/>
+<rect fill="#020202" fill-opacity="0.2" height="1.522" stroke-opacity="0.2" width="36.508" x="11.746" y="30.379"/>
+<rect fill="#020202" fill-opacity="0.1" height="0.76" stroke-opacity="0.1" width="36.508" x="11.746" y="29.62"/>
+<rect fill="#020202" fill-opacity="0.05" height="0.761" stroke-opacity="0.05" width="36.508" x="11.746" y="28.859"/>
+<polygon fill="#FFFFFF" fill-opacity="0.8" points="36.846,48.634 23.154,48.634 23.916,47.873 36.084,47.873 " stroke-opacity="0.8"/>
<rect fill="none" height="60" width="60"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="6.8027" y2="28.1705">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.7879" style="stop-color:#A6A6A6"/>
+<stop offset="1" style="stop-color:#B1B1B1"/>
+</linearGradient>
+</defs>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="31.9014" y2="54.0325">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.7879" style="stop-color:#A6A6A6"/>
+<stop offset="1" style="stop-color:#B1B1B1"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_flash.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,39 +0,0 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<g>
-<defs>
-</defs>
-<rect fill="none" height="60" width="60.001"/>
-<radialGradient cx="-2784.4399" cy="950.8906" gradientTransform="matrix(2.2479 0 0 -2.2479 6289.1426 2167.5063)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="11.5664">
- <stop offset="0" style="stop-color:#C7D4E6"/>
- <stop offset="0.2865" style="stop-color:#C7D4E6"/>
- <stop offset="0.6966" style="stop-color:#7288A2"/>
- <stop offset="1" style="stop-color:#2B3842"/>
-</radialGradient>
-<path d="M30.001,4C44.36,4,55.999,15.639,55.999,30c0,14.355-11.639,26-25.998,26 C15.644,56,3.999,44.355,3.999,30C3.999,15.639,15.644,4,30.001,4z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1.1364 0 0 -1.1364 921.2343 225.8096)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-784.1318" x2="-784.1318" y1="179.2046" y2="193.8286">
- <stop offset="0" style="stop-color:#627995"/>
- <stop offset="0.8708" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
-</linearGradient>
-<path d="M10.954,21.855c14.129-24.376,34.65-9.408,38.398,0.283 c0.004,0.043,0.035,0.021,0.021-0.025c-1.256-9.354-9.393-16.57-19.244-16.57c-9.758,0-17.836,7.076-19.209,16.299 C10.909,21.906,10.941,21.922,10.954,21.855z" fill="url(#SVGID_2_)" opacity="0.9"/>
-<radialGradient cx="-2784.6987" cy="972.9805" gradientTransform="matrix(2.2479 0 0 -2.2479 6289.1426 2167.5063)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="20.134">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.4831" style="stop-color:#FFFFFF"/>
- <stop offset="0.8989" style="stop-color:#627995"/>
- <stop offset="1" style="stop-color:#3F607E"/>
-</radialGradient>
-<path d="M30.13,6.475c-9.691,0-17.723,6.912-19.182,15.391c4.369,2.057,7.584-2.965,17.989-2.326 c9.461,0.411,16.292,4.969,20.405,2.609C48.022,13.534,39.923,6.475,30.13,6.475z" fill="url(#SVGID_3_)"/>
-<path d="M40.485,13.187c-9.441,0-13.418,7.935-15.832,14.851c-2.535,7.271-4.158,8.449-7.061,8.449h-0.861 c-0.667,0-1.205,0.537-1.205,1.203v6.673c0,0.671,0.538,1.206,1.205,1.206h0.861c8.631,0,12.34-6.012,14.545-11.559 c1.281,0,6.207,0,6.207,0c0.672,0,1.209-0.538,1.209-1.207v-6.672c0-0.671-0.537-1.207-1.209-1.207c0,0-1.121,0-2.246,0 c1.559-2.259,3.027-2.647,4.387-2.647h0.859c0.666,0,1.205-0.542,1.205-1.21v-6.672c0-0.663-0.539-1.207-1.205-1.207L40.485,13.187 L40.485,13.187z" fill="#1F2430"/>
-<radialGradient cx="-2784.8672" cy="951.167" gradientTransform="matrix(2.2479 0 0 -2.2479 6289.1426 2167.5063)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="6.1">
- <stop offset="0" style="stop-color:#1F2430"/>
- <stop offset="0.1011" style="stop-color:#1F2430"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
-</radialGradient>
-<path d="M40.485,14.391c-8.629,0-12.268,7.097-14.693,14.041l0,0c-2.504,7.183-4.342,9.258-8.199,9.258 h-0.861v6.678h0.861c8.127,0,11.533-5.752,13.721-11.566c0.99,0,7.035,0,7.035,0v-6.67c0,0-2.956,0-4.377,0 c1.818-3.563,3.754-5.064,6.51-5.064h0.863v-6.674h-0.859V14.391z" fill="url(#SVGID_4_)"/>
-<path d="M26.401,28.646L26.401,28.646c-2.291,6.567-4.151,9.69-9.023,9.69v5.38c8.25,0,11.383-5.817,13.486-11.557 c0.284,0,6.827,0,6.827,0v-5.387c0,0-4.159,0-4.751,0c2.047-4.433,4.256-6.352,7.752-6.352v-5.381 C32.188,15.041,28.753,21.918,26.401,28.646z" fill="#FFFFFF"/>
-<path d="M30.13,6.475c-9.691,0-17.723,6.912-19.182,15.391c4.369,2.057,7.584-2.965,17.989-2.326 c9.461,0.411,16.292,4.969,20.405,2.609C48.022,13.534,39.923,6.475,30.13,6.475z" fill="#FFFFFF" fill-opacity="0.3"/>
-<rect fill="none" height="60" width="60.001"/>
-</g>
-</svg>
\ No newline at end of file
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_folder.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_folder.svg Thu May 27 13:10:59 2010 +0300
@@ -1,36 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="59.999" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2163.8232" x2="-2163.8232" y1="4093.1855" y2="4081.4014">
- <stop offset="0" style="stop-color:#D49757"/>
- <stop offset="0.6182" style="stop-color:#8A4117"/>
- <stop offset="1" style="stop-color:#702200"/>
+<stop offset="0" style="stop-color:#D49757"/>
+<stop offset="0.6182" style="stop-color:#8A4117"/>
+<stop offset="1" style="stop-color:#702200"/>
</linearGradient>
<path d="M53.646,12.358c0,0-22.377,0-22.842,0c-0.463,0-1.002-0.202-1.332-1.01 c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697c-0.824,0-1.428,0.7-1.428,1.562v14.438h49.814 v-9.968C55.084,12.989,54.473,12.358,53.646,12.358z" fill="url(#SVGID_1_)"/>
-<path d="M53.646,12.358c0,0-22.377,0-22.842,0 c-0.463,0-1.002-0.202-1.332-1.01c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697 c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.576c0.941,0,1.225,0.584,1.436,1.236 c0,0,0.557,1.591,0.764,2.296c0.33,0.806,0.869,1.011,1.332,1.011c0.465,0,22.842,0,22.842,0c0.826,0,1.439,0.628,1.439,1.489 v-0.728C55.084,12.989,54.473,12.358,53.646,12.358z" enable-background="new " fill="#FFF7F5" opacity="0.5"/>
+<path d="M53.646,12.358c0,0-22.377,0-22.842,0 c-0.463,0-1.002-0.202-1.332-1.01c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697 c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.576c0.941,0,1.225,0.584,1.436,1.236 c0,0,0.557,1.591,0.764,2.296c0.33,0.806,0.869,1.011,1.332,1.011c0.465,0,22.842,0,22.842,0c0.826,0,1.439,0.628,1.439,1.489 v-0.728C55.084,12.989,54.473,12.358,53.646,12.358z" fill="#FFF7F5" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect height="8.728" width="46.906" x="6.73" y="15.817"/>
<rect fill="#F2F2F2" height="7.271" width="45.451" x="7.457" y="16.545"/>
-<polygon enable-background="new " fill="#231F20" opacity="0.4" points="55.084,22.362 5.27,22.362 5.27,21.636 55.084,21.636 "/>
-<polygon enable-background="new " fill="#231F20" opacity="0.15" points="55.084,21.636 5.27,21.636 5.27,20.908 55.084,20.908 "/>
-<polygon enable-background="new " fill="#231F20" opacity="0.05" points="55.084,20.908 5.27,20.908 5.27,20.182 55.084,20.182 "/>
+<polygon fill="#231F20" fill-opacity="0.4" points="55.084,22.362 5.27,22.362 5.27,21.636 55.084,21.636 " stroke-opacity="0.4"/>
+<polygon fill="#231F20" fill-opacity="0.15" points="55.084,21.636 5.27,21.636 5.27,20.908 55.084,20.908 " stroke-opacity="0.15"/>
+<polygon fill="#231F20" fill-opacity="0.05" points="55.084,20.908 5.27,20.908 5.27,20.182 55.084,20.182 " stroke-opacity="0.05"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="4048.7861" y2="4078.6064">
- <stop offset="0.0303" style="stop-color:#C79101"/>
- <stop offset="0.0364" style="stop-color:#FEEFA7"/>
- <stop offset="0.3273" style="stop-color:#FEE570"/>
- <stop offset="0.6727" style="stop-color:#F0C12B"/>
- <stop offset="1" style="stop-color:#E6A501"/>
+<stop offset="0" style="stop-color:#C79101"/>
+<stop offset="0.0303" style="stop-color:#C79101"/>
+<stop offset="0.0364" style="stop-color:#FEEFA7"/>
+<stop offset="0.3273" style="stop-color:#FEE570"/>
+<stop offset="0.6727" style="stop-color:#F0C12B"/>
+<stop offset="1" style="stop-color:#E6A501"/>
</linearGradient>
<path d="M56.273,22.362H3.727C2.191,22.362,2,24.065,2,24.065l2.549,25.934 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184L58,24.065 C58,24.065,57.809,22.362,56.273,22.362z" fill="url(#SVGID_2_)"/>
<path d="M3.727,23.091h52.547c1.178,0,1.563,0.995,1.68,1.464L58,24.065c0,0-0.191-1.703-1.727-1.703H3.727 C2.191,22.362,2,24.065,2,24.065l0.047,0.489C2.164,24.086,2.549,23.091,3.727,23.091z" fill="#FCF3D0"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0166" x2="-2164.0166" y1="4048.7861" y2="4053.1504">
- <stop offset="0" style="stop-color:#FCDA5E"/>
- <stop offset="1" style="stop-color:#FFB418"/>
+<stop offset="0" style="stop-color:#FCDA5E"/>
+<stop offset="1" style="stop-color:#FFB418"/>
</linearGradient>
-<path d="M4.334,47.818l0.215,2.181 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181H4.334z" enable-background="new " fill="url(#SVGID_3_)" opacity="0.25"/>
+<path d="M4.334,47.818l0.215,2.181 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181H4.334z" fill="url(#SVGID_3_)" fill-opacity="0.25" stroke-opacity="0.25"/>
<rect fill="none" height="59.999" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_friend.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_friend.svg Thu May 27 13:10:59 2010 +0300
@@ -1,75 +1,76 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
-<path d="M6.917,52.783v-1.5c0-4.818,2.172-8.519,6.283-10.699 c1.059-0.564,3.787-1.602,6.194-2.518c0.87-0.33,1.66-0.631,2.299-0.881l0.986-0.43c0.268-0.776,0.156-2.01-0.009-2.316l-0.609-0.99 l0.006-0.005c-0.477-0.811-0.928-1.653-1.347-2.516c-1.481-0.104-2.916-1.358-3.614-3.185c-0.731-1.911-0.45-3.901,0.643-4.98 c-0.984-4.118-0.784-7.288,0.595-9.426c0.821-1.273,2.087-2.172,3.585-2.55c1.423-1.708,3.591-3.575,7.675-3.575 c4.679,0.156,8.319,1.761,10.55,4.641c2.173,2.806,2.864,6.706,1.954,11.001c1.044,1.116,1.256,3.072,0.488,4.962 c-0.677,1.671-1.935,2.824-3.292,3.062c-0.272,0.561-0.566,1.127-0.875,1.689c-0.381,0.694-0.74,1.304-1.099,1.863 c-0.177,0.303-0.299,1.717,0.037,2.46l1.25,0.499l1.473,0.547c2.69,0.999,5.678,2.108,6.696,2.639 c1.05,0.547,6.29,3.635,6.289,10.707v1.5H6.917z" enable-background="new " fill="#231F20" opacity="0.15"/>
-<path d="M7.667,52.033v-0.75c0-4.523,2.035-7.994,5.884-10.037 c1.021-0.544,3.739-1.577,6.136-2.489c0.844-0.32,1.638-0.622,2.279-0.873l1.283-0.559c0.522-1,0.371-2.794,0.048-3.299 l-0.151-0.245l-0.104-0.169c0,0-1.311-2.285-1.853-3.443c-0.088,0.012-0.178,0.017-0.268,0.017c-1.243,0-2.495-1.089-3.115-2.71 c-0.702-1.834-0.35-3.688,0.783-4.433c-1.058-4.136-0.93-7.262,0.384-9.298c0.764-1.185,1.954-1.988,3.373-2.283 c1.427-1.767,3.432-3.499,7.257-3.499c4.433,0.148,7.868,1.652,9.958,4.351c2.067,2.669,2.696,6.425,1.771,10.577 c0,0-0.016,0.081-0.049,0.229c1.057,0.794,1.344,2.627,0.617,4.417c-0.635,1.568-1.874,2.625-3.092,2.64 c-0.316,0.673-0.664,1.354-1.037,2.032c-0.373,0.68-0.724,1.274-1.073,1.82c-0.352,0.6-0.471,2.557,0.146,3.464l1.495,0.596 l1.488,0.554c2.507,0.931,5.627,2.088,6.611,2.601s5.887,3.408,5.886,10.042v0.75H7.667z" enable-background="new " fill="#231F20" opacity="0.3"/>
+<path d="M6.917,52.783v-1.5c0-4.818,2.172-8.519,6.283-10.699 c1.059-0.564,3.787-1.602,6.194-2.518c0.87-0.33,1.66-0.631,2.299-0.881l0.986-0.43c0.268-0.776,0.156-2.01-0.009-2.316l-0.609-0.99 l0.006-0.005c-0.477-0.811-0.928-1.653-1.347-2.516c-1.481-0.104-2.916-1.358-3.614-3.185c-0.731-1.911-0.45-3.901,0.643-4.98 c-0.984-4.118-0.784-7.288,0.595-9.426c0.821-1.273,2.087-2.172,3.585-2.55c1.423-1.708,3.591-3.575,7.675-3.575 c4.679,0.156,8.319,1.761,10.55,4.641c2.173,2.806,2.864,6.706,1.954,11.001c1.044,1.116,1.256,3.072,0.488,4.962 c-0.677,1.671-1.935,2.824-3.292,3.062c-0.272,0.561-0.566,1.127-0.875,1.689c-0.381,0.694-0.74,1.304-1.099,1.863 c-0.177,0.303-0.299,1.717,0.037,2.46l1.25,0.499l1.473,0.547c2.69,0.999,5.678,2.108,6.696,2.639 c1.05,0.547,6.29,3.635,6.289,10.707v1.5H6.917z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M7.667,52.033v-0.75c0-4.523,2.035-7.994,5.884-10.037 c1.021-0.544,3.739-1.577,6.136-2.489c0.844-0.32,1.638-0.622,2.279-0.873l1.283-0.559c0.522-1,0.371-2.794,0.048-3.299 l-0.151-0.245l-0.104-0.169c0,0-1.311-2.285-1.853-3.443c-0.088,0.012-0.178,0.017-0.268,0.017c-1.243,0-2.495-1.089-3.115-2.71 c-0.702-1.834-0.35-3.688,0.783-4.433c-1.058-4.136-0.93-7.262,0.384-9.298c0.764-1.185,1.954-1.988,3.373-2.283 c1.427-1.767,3.432-3.499,7.257-3.499c4.433,0.148,7.868,1.652,9.958,4.351c2.067,2.669,2.696,6.425,1.771,10.577 c0,0-0.016,0.081-0.049,0.229c1.057,0.794,1.344,2.627,0.617,4.417c-0.635,1.568-1.874,2.625-3.092,2.64 c-0.316,0.673-0.664,1.354-1.037,2.032c-0.373,0.68-0.724,1.274-1.073,1.82c-0.352,0.6-0.471,2.557,0.146,3.464l1.495,0.596 l1.488,0.554c2.507,0.931,5.627,2.088,6.611,2.601s5.887,3.408,5.886,10.042v0.75H7.667z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
<rect fill="none" height="60" width="60"/>
-<path d="M34.994,27.07c0.014-0.011,0.029-0.026,0.041-0.038 c0.002,0.009,0.005,0.016,0.008,0.026C35.025,27.061,35.012,27.068,34.994,27.07z M38.518,22.661L38.518,22.661 c-0.018-0.003-0.041-0.014-0.061-0.015C38.477,22.646,38.499,22.657,38.518,22.661z" enable-background="new " fill="#231F20" opacity="0.15"/>
+<path d="M34.994,27.07c0.014-0.011,0.029-0.026,0.041-0.038 c0.002,0.009,0.005,0.016,0.008,0.026C35.025,27.061,35.012,27.068,34.994,27.07z M38.518,22.661L38.518,22.661 c-0.018-0.003-0.041-0.014-0.061-0.015C38.477,22.646,38.499,22.657,38.518,22.661z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15"/>
<radialGradient cx="297.79" cy="-375.7397" gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="16.2293">
- <stop offset="0.2" style="stop-color:#FFA98E"/>
- <stop offset="0.96" style="stop-color:#D45D36"/>
+<stop offset="0" style="stop-color:#FFA98E"/>
+<stop offset="0.2" style="stop-color:#FFA98E"/>
+<stop offset="0.96" style="stop-color:#D45D36"/>
+<stop offset="1" style="stop-color:#D45D36"/>
</radialGradient>
<path d="M36.914,38.52c-1.525-0.664-1.477-3.914-0.848-4.897c0.108-0.171,0.209-0.345,0.314-0.515H23.614 c0.105,0.17,0.204,0.344,0.314,0.515c0.63,0.983,0.679,4.233-0.848,4.897c-1.527,0.662,7.098,6.437,7.098,6.437 S38.441,39.182,36.914,38.52z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.4756" x2="297.4756" y1="-367.9355" y2="-381.3027">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.39" style="stop-color:#2D9BD2"/>
- <stop offset="0.89" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.39" style="stop-color:#2D9BD2"/>
+<stop offset="0.89" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M46.094,41.906c-1.605-0.834-9.564-3.621-9.715-3.795L30.3,43.163l-6.531-5.247 c-0.18,0.27-8.046,3.023-9.866,3.992c-2.083,1.105-5.486,3.646-5.486,9.375h43.158C51.576,45.555,47.695,42.742,46.094,41.906z" fill="url(#SVGID_2_)"/>
-<polygon enable-background="new " fill="#020202" opacity="0.3" points="22.282,38.564 30.3,44.955 37.832,38.695 36.379,38.111 30.3,43.163 23.77,37.916 "/>
+<polygon fill="#020202" fill-opacity="0.3" points="22.282,38.564 30.3,44.955 37.832,38.695 36.379,38.111 30.3,43.163 23.77,37.916 " stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.5718" x2="22.6592" y1="45.0781" y2="45.0781">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<path d="M22.659,39.577c0,0-11.44,2.987-11.44,11.002c0,0-1.635,0.001-1.647,0 C9.572,45.65,13.418,41.818,22.659,39.577z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="37.1855" x2="50.2734" y1="44.8936" y2="44.8936">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<path d="M37.186,39.393c0,0,11.441,2.986,11.441,11.002c0,0,1.637,0,1.646,0 C50.273,45.465,46.428,41.633,37.186,39.393z" fill="url(#SVGID_4_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="297.5371" x2="297.5371" y1="-375.5508" y2="-368.1697">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="30.3,44.955 22.281,38.564 21.815,38.77 30.3,45.531 38.3,38.879 37.834,38.691 "/>
<radialGradient cx="298.5801" cy="-345.8398" gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.7801">
- <stop offset="0" style="stop-color:#FFE2D9"/>
- <stop offset="0.51" style="stop-color:#FFC6B3"/>
- <stop offset="0.76" style="stop-color:#FFA98E"/>
- <stop offset="1" style="stop-color:#E88160"/>
+<stop offset="0" style="stop-color:#FFE2D9"/>
+<stop offset="0.51" style="stop-color:#FFC6B3"/>
+<stop offset="0.76" style="stop-color:#FFA98E"/>
+<stop offset="1" style="stop-color:#E88160"/>
</radialGradient>
<path d="M40.584,23.573c-0.055-0.026-0.113-0.03-0.17-0.046c0-0.001,0-0.002,0-0.002 c-0.012-0.002-0.021-0.004-0.033-0.007c-0.084-0.021-0.168-0.041-0.256-0.045c-10.658-1.854-15.548-7.759-15.916-6.195 c-0.294,1.244-3.281,3.935-4.847,5.276c0.013,0.06,0.02,0.114,0.034,0.174c0,0,0.056,0.275,0.174,0.744 c-0.125,0.013-0.246,0.039-0.365,0.089c-0.995,0.42-1.308,2.053-0.698,3.647c0.61,1.594,1.913,2.548,2.909,2.13 c0.061-0.027,0.113-0.071,0.169-0.107c0.579,1.301,1.289,2.697,2.159,4.094c1.458,1.731,3.691,3.766,6.157,3.766 c2.983,0,4.808-1.633,6.063-3.278c0.031-0.068,0.063-0.133,0.103-0.189c0.931-1.453,1.684-2.911,2.293-4.268 c0.975,0.337,2.226-0.569,2.846-2.102C41.85,25.666,41.57,24.017,40.584,23.573z" fill="url(#SVGID_6_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="293.6279" x2="302.8386" y1="-368.1089" y2="-358.9682">
- <stop offset="0" style="stop-color:#FFC6B3"/>
- <stop offset="1" style="stop-color:#FFA98E"/>
+<stop offset="0" style="stop-color:#FFC6B3"/>
+<stop offset="1" style="stop-color:#FFA98E"/>
</linearGradient>
<path d="M29.463,36.254c-1.816,0-3.646-0.846-4.993-2.121c1.425,1.498,3.343,2.957,5.432,2.957 c2.982,0,4.809-1.633,6.064-3.279c0.031-0.067,0.063-0.133,0.101-0.188c0.932-1.453,1.684-2.911,2.295-4.268 C34.967,35.283,32.447,36.254,29.463,36.254z" fill="url(#SVGID_7_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="297.2969" x2="297.2969" y1="-338.9307" y2="-352.4902">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.38" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.38" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M29.603,8.713c-3.695,0-5.473,1.68-6.845,3.436c-2.23,0.345-5.768,2.39-3.27,11.35 c1.565-1.341,4.427-4.978,4.722-6.222c0.371-1.577,5.343,4.451,16.205,6.248c0.127-0.501,0.185-0.797,0.185-0.797 C42.305,15.077,38.594,9.014,29.603,8.713z" fill="url(#SVGID_8_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="301.9326" x2="289.6528" y1="-351.9048" y2="-344.6049">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.36" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.36" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M24.221,16.543c0,0,5.316,6.983,16.117,6.971C40.338,23.514,35.251,22.716,24.221,16.543z" fill="url(#SVGID_9_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="288.5391" x2="288.6491" y1="-343.1895" y2="-350.9899">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.38" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.38" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M22.943,12.668c0,0-5.204,0.312-3.273,9.132C19.67,21.8,19.034,15.76,22.943,12.668z" fill="url(#SVGID_10_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="299.0225" x2="298.6326" y1="-340.0913" y2="-343.6304">
- <stop offset="0" style="stop-color:#A87C4F"/>
- <stop offset="1" style="stop-color:#632F00"/>
+<stop offset="0" style="stop-color:#A87C4F"/>
+<stop offset="1" style="stop-color:#632F00"/>
</linearGradient>
<path d="M32.126,13.891c-2.423-0.346-6.521-2.493-8.129-1.726c0,0,5.26-6,14.538,0.831 C38.535,12.997,36.326,14.489,32.126,13.891z" fill="url(#SVGID_11_)"/>
<rect fill="none" height="59.996" width="59.996"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_friends.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_friends.svg Thu May 27 13:10:59 2010 +0300
@@ -1,197 +1,204 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-70.4854" cy="-5.0225" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="12.778">
- <stop offset="0.2" style="stop-color:#FFA98E"/>
- <stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="0" style="stop-color:#FFA98E"/>
+<stop offset="0.2" style="stop-color:#FFA98E"/>
+<stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="1" style="stop-color:#D45D36"/>
</radialGradient>
<path d="M48.205,37.917c-1.123-0.489-1.088-2.883-0.625-3.606c0.08-0.126,0.152-0.253,0.23-0.381h-9.4 c0.076,0.128,0.148,0.255,0.23,0.381c0.465,0.724,0.5,3.117-0.623,3.606c-1.125,0.487,5.227,4.738,5.227,4.738 S49.328,38.404,48.205,37.917z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="43.1104" x2="43.1104" y1="37.4727" y2="47.3145">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M54.961,40.41c-1.182-0.614-7.041-2.667-7.15-2.795l-4.477,3.722l-4.811-3.864 c-0.133,0.198-5.924,2.227-7.264,2.938c-1.535,0.815-4.039,2.687-4.039,6.904H59C59,43.097,56.145,41.025,54.961,40.41z" fill="url(#SVGID_2_)"/>
-<polygon fill="#020202" opacity="0.3" points="37.43,37.952 43.334,42.655 48.879,38.047 47.811,37.615 43.334,41.337 38.523,37.473 "/>
+<polygon fill="#020202" fill-opacity="0.3" points="37.43,37.952 43.334,42.655 48.879,38.047 47.811,37.615 43.334,41.337 38.523,37.473 " stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="28.0684" x2="37.707" y1="42.7466" y2="42.7466">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<path d="M37.707,38.696c0,0-8.424,2.199-8.424,8.1c0,0-1.205,0.002-1.215,0 C28.068,43.167,30.902,40.347,37.707,38.696z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="48.4043" x2="58.041" y1="42.6099" y2="42.6099">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<path d="M48.404,38.56c0,0,8.424,2.199,8.424,8.101c0,0,1.203,0,1.213,0 C58.041,43.029,55.209,40.211,48.404,38.56z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="43.1553" x2="43.1553" y1="43.0781" y2="37.6438">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="43.334,42.655 37.428,37.952 37.086,38.1 43.334,43.078 49.225,38.182 48.881,38.042 "/>
<radialGradient cx="-69.8633" cy="-28.6533" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="17.154">
- <stop offset="0" style="stop-color:#FFE2D9"/>
- <stop offset="0.5091" style="stop-color:#FFC6B3"/>
- <stop offset="0.7636" style="stop-color:#FFA98E"/>
- <stop offset="1" style="stop-color:#E88160"/>
+<stop offset="0" style="stop-color:#FFE2D9"/>
+<stop offset="0.5091" style="stop-color:#FFC6B3"/>
+<stop offset="0.7636" style="stop-color:#FFA98E"/>
+<stop offset="1" style="stop-color:#E88160"/>
</radialGradient>
<path d="M50.906,26.909c-0.039-0.017-0.084-0.02-0.125-0.033v-0.002c-0.008-0.002-0.014-0.002-0.025-0.005 c-0.061-0.017-0.123-0.029-0.186-0.034c-7.85-1.364-11.451-5.712-11.723-4.563c-0.217,0.918-2.416,2.9-3.568,3.886 c0.008,0.047,0.016,0.086,0.023,0.129c0,0,0.043,0.203,0.129,0.548c-0.092,0.01-0.182,0.029-0.268,0.066 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.428,0.957,0.951,1.985,1.594,3.013c1.074,1.279,2.717,2.775,4.531,2.775c2.197,0,3.541-1.204,4.467-2.413 c0.023-0.053,0.047-0.101,0.074-0.141c0.684-1.071,1.24-2.146,1.689-3.144c0.717,0.248,1.637-0.419,2.094-1.547 C51.838,28.452,51.633,27.236,50.906,26.909z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="40.2764" x2="47.0569" y1="37.6001" y2="30.8725">
- <stop offset="0" style="stop-color:#FFC6B3"/>
- <stop offset="1" style="stop-color:#FFA98E"/>
+<stop offset="0" style="stop-color:#FFC6B3"/>
+<stop offset="1" style="stop-color:#FFA98E"/>
</linearGradient>
<path d="M42.719,36.249c-1.34,0-2.686-0.624-3.68-1.562c1.051,1.103,2.463,2.177,4,2.177 c2.197,0,3.541-1.204,4.467-2.413c0.023-0.053,0.047-0.101,0.074-0.141c0.684-1.071,1.24-2.146,1.689-3.144 C46.77,35.533,44.914,36.249,42.719,36.249z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="42.9766" x2="42.9766" y1="16.1133" y2="26.0988">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M42.818,15.967c-2.721,0-4.029,1.238-5.039,2.53c-1.645,0.254-4.246,1.762-2.408,8.359 c1.152-0.988,3.26-3.666,3.477-4.584c0.273-1.16,3.936,3.278,11.934,4.602c0.094-0.368,0.137-0.587,0.137-0.587 C52.172,20.654,49.439,16.188,42.818,15.967z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="46.3916" x2="37.3443" y1="25.6675" y2="20.2965">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3636" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3636" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M38.855,21.734c0,0,3.916,5.142,11.869,5.133C50.725,26.867,46.98,26.279,38.855,21.734z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="36.5283" x2="36.6077" y1="19.2515" y2="24.9963">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M37.916,18.881c0,0-3.834,0.23-2.412,6.725C35.504,25.605,35.037,21.157,37.916,18.881z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="44.2432" x2="43.9615" y1="16.9707" y2="19.5749">
- <stop offset="0" style="stop-color:#A87C4F"/>
- <stop offset="1" style="stop-color:#632F00"/>
+<stop offset="0" style="stop-color:#A87C4F"/>
+<stop offset="1" style="stop-color:#632F00"/>
</linearGradient>
<path d="M44.678,19.781c-1.785-0.255-4.803-1.836-5.986-1.272c0,0,3.873-4.417,10.705,0.612 C49.396,19.121,47.77,20.221,44.678,19.781z" fill="url(#SVGID_11_)"/>
<radialGradient cx="-98.5264" cy="-5.0225" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="12.778">
- <stop offset="0.2" style="stop-color:#FFA98E"/>
- <stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="0" style="stop-color:#FFA98E"/>
+<stop offset="0.2" style="stop-color:#FFA98E"/>
+<stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="1" style="stop-color:#D45D36"/>
</radialGradient>
<path d="M21.984,37.917c-1.125-0.489-1.088-2.883-0.625-3.606c0.08-0.126,0.154-0.253,0.234-0.381h-9.402 c0.076,0.128,0.15,0.255,0.23,0.381c0.465,0.724,0.498,3.117-0.625,3.606c-1.125,0.487,5.227,4.738,5.227,4.738 S23.109,38.404,21.984,37.917z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="16.8906" x2="16.8906" y1="37.4727" y2="47.3145">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M28.742,40.41c-1.182-0.614-7.041-2.667-7.15-2.795l-4.477,3.722l-4.811-3.864 c-0.133,0.198-5.926,2.227-7.266,2.938C3.506,41.226,1,43.097,1,47.314h31.781C32.781,43.097,29.924,41.025,28.742,40.41z" fill="url(#SVGID_13_)"/>
-<polygon fill="#020202" opacity="0.3" points="11.209,37.952 17.115,42.655 22.66,38.047 21.592,37.615 17.115,41.337 12.305,37.473 "/>
+<polygon fill="#020202" fill-opacity="0.3" points="11.209,37.952 17.115,42.655 22.66,38.047 21.592,37.615 17.115,41.337 12.305,37.473 " stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="1.8496" x2="11.4883" y1="42.7466" y2="42.7466">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<path d="M11.488,38.696c0,0-8.426,2.199-8.426,8.1c0,0-1.203,0.002-1.213,0 C1.85,43.167,4.682,40.347,11.488,38.696z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.1836" x2="31.8223" y1="42.6099" y2="42.6099">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<path d="M22.184,38.56c0,0,8.424,2.199,8.424,8.101c0,0,1.205,0,1.215,0 C31.822,43.029,28.99,40.211,22.184,38.56z" fill="url(#SVGID_15_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="16.9346" x2="16.9346" y1="43.0781" y2="37.6438">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<polygon fill="url(#SVGID_16_)" points="17.115,42.655 11.209,37.952 10.865,38.1 17.115,43.078 23.004,38.182 22.662,38.042 "/>
<radialGradient cx="-97.9023" cy="-28.6533" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_17_" r="17.154">
- <stop offset="0" style="stop-color:#FFE2D9"/>
- <stop offset="0.5091" style="stop-color:#FFC6B3"/>
- <stop offset="0.7636" style="stop-color:#FFA98E"/>
- <stop offset="1" style="stop-color:#E88160"/>
+<stop offset="0" style="stop-color:#FFE2D9"/>
+<stop offset="0.5091" style="stop-color:#FFC6B3"/>
+<stop offset="0.7636" style="stop-color:#FFA98E"/>
+<stop offset="1" style="stop-color:#E88160"/>
</radialGradient>
<path d="M24.686,26.909c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005 c-0.061-0.017-0.123-0.029-0.188-0.034c-7.848-1.364-11.451-5.712-11.721-4.563c-0.217,0.918-2.416,2.9-3.57,3.886 c0.01,0.047,0.016,0.086,0.025,0.129c0,0,0.041,0.203,0.127,0.548c-0.09,0.01-0.18,0.029-0.268,0.066 c-0.73,0.308-0.963,1.511-0.512,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.045-0.019,0.084-0.051,0.123-0.078 c0.428,0.957,0.951,1.985,1.59,3.013c1.076,1.279,2.719,2.775,4.535,2.775c2.197,0,3.541-1.204,4.467-2.413 c0.023-0.053,0.045-0.101,0.072-0.141c0.684-1.071,1.242-2.146,1.689-3.144c0.719,0.248,1.637-0.419,2.096-1.547 C25.617,28.452,25.414,27.236,24.686,26.909z" fill="url(#SVGID_17_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="14.0576" x2="20.8372" y1="37.5996" y2="30.873">
- <stop offset="0" style="stop-color:#FFC6B3"/>
- <stop offset="1" style="stop-color:#FFA98E"/>
+<stop offset="0" style="stop-color:#FFC6B3"/>
+<stop offset="1" style="stop-color:#FFA98E"/>
</linearGradient>
<path d="M16.5,36.249c-1.34,0-2.688-0.624-3.68-1.562c1.051,1.103,2.463,2.177,4,2.177 c2.197,0,3.541-1.204,4.467-2.413c0.023-0.053,0.045-0.101,0.072-0.141c0.684-1.071,1.242-2.146,1.689-3.144 C20.551,35.533,18.695,36.249,16.5,36.249z" fill="url(#SVGID_18_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="16.7578" x2="16.7578" y1="16.1133" y2="26.0988">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M16.6,15.967c-2.721,0-4.031,1.238-5.039,2.53c-1.645,0.254-4.25,1.762-2.408,8.359 c1.15-0.988,3.26-3.666,3.477-4.584c0.273-1.16,3.936,3.278,11.934,4.602c0.092-0.368,0.137-0.587,0.137-0.587 C25.955,20.654,23.221,16.188,16.6,15.967z" fill="url(#SVGID_19_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="20.1719" x2="11.1239" y1="25.6675" y2="20.2961">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3636" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3636" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M12.637,21.734c0,0,3.914,5.142,11.869,5.133C24.506,26.867,20.762,26.279,12.637,21.734z" fill="url(#SVGID_20_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="10.3096" x2="10.389" y1="19.2515" y2="24.9963">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M11.697,18.881c0,0-3.834,0.23-2.412,6.725C9.285,25.605,8.818,21.157,11.697,18.881z" fill="url(#SVGID_21_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="18.0244" x2="17.7427" y1="16.9707" y2="19.5754">
- <stop offset="0" style="stop-color:#A87C4F"/>
- <stop offset="1" style="stop-color:#632F00"/>
+<stop offset="0" style="stop-color:#A87C4F"/>
+<stop offset="1" style="stop-color:#632F00"/>
</linearGradient>
<path d="M18.457,19.781c-1.783-0.255-4.803-1.836-5.984-1.272c0,0,3.873-4.417,10.705,0.612 C23.178,19.121,21.549,20.221,18.457,19.781z" fill="url(#SVGID_22_)"/>
-<path d="M47.916,41.694c-1.092-0.569-4.482-1.827-7.205-2.838l-1.533-0.569l-0.273-0.11l-0.359-0.139 l-0.686-0.275l-0.424,0.186c0,0-0.006,0.002-0.008,0.004h-0.002c-1.777,0.695-5.18,1.935-6.166,2.458 c-0.385,0.206-0.832,0.477-1.283,0.835c-0.475-0.392-0.914-0.667-1.234-0.835c-0.85-0.439-4.098-1.619-5.91-2.299l-0.17-0.069 l-0.004,0.005l-0.752-0.304l-0.684,0.299c-0.668,0.263-1.492,0.576-2.373,0.911l-0.08,0.031c-2.607,0.99-5.561,2.113-6.693,2.715 c-2.535,1.346-4.359,3.248-5.438,5.615h20.582h5.561h20.494C51.592,43.797,48.686,42.094,47.916,41.694z" fill="#231F20" opacity="0.15"/>
-<path d="M17.193,22.325c-1.205,1.026-1.531,3.083-0.748,5.124c0.732,1.925,2.256,3.218,3.783,3.218 h0.002c0.23,0.475,0.467,0.945,0.713,1.408h-0.07l0.584,0.965c0,0,0.15,0.248,0.33,0.545c0.486-0.827,0.914-1.646,1.262-2.418 c0.719,0.248,1.637-0.419,2.096-1.547c0.473-1.168,0.27-2.384-0.459-2.711c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002 c-0.012-0.002-0.016-0.002-0.025-0.005c-0.061-0.017-0.123-0.029-0.188-0.034c-0.014-0.002-0.027-0.006-0.041-0.008 c-0.029-0.006-0.07-0.015-0.105-0.023c0.121,0.023,0.232,0.049,0.359,0.07c0.092-0.368,0.137-0.587,0.137-0.587 c1.256-5.633-1.479-10.1-8.1-10.32c-0.012,0-0.021,0.003-0.033,0.003C16.395,17.765,16.594,19.881,17.193,22.325z" fill="#231F20" opacity="0.15"/>
-<path d="M37.779,18.497c-1.645,0.254-4.246,1.76-2.41,8.354c-0.068,0.01-0.139,0.023-0.205,0.051 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.359,0.799,0.787,1.648,1.289,2.504c0.564-0.949,1.1-1.934,1.586-2.947c1.395-0.166,2.754-1.375,3.457-3.109 c0.801-1.979,0.545-4.035-0.584-5.104c0.504-2.285,0.584-4.463,0.252-6.444c-0.033-0.002-0.063-0.006-0.096-0.009 C40.098,15.967,38.789,17.205,37.779,18.497z M35.381,26.849c0.014-0.014,0.029-0.027,0.043-0.041 c0.002,0.01,0.004,0.018,0.008,0.027C35.414,26.837,35.396,26.845,35.381,26.849z M39.174,22.101L39.174,22.101 c-0.02-0.004-0.047-0.015-0.066-0.018C39.127,22.086,39.152,22.097,39.174,22.101z" fill="#231F20" opacity="0.15"/>
-<path d="M47.621,42.258c-1.053-0.549-4.424-1.8-7.133-2.807l-1.549-0.574l-0.264-0.108l-0.369-0.142 l-1.045-0.418c-0.033-0.047-0.057-0.107-0.088-0.16c-1.826,0.708-4.971,1.86-5.914,2.361c-0.385,0.206-0.832,0.477-1.283,0.835 c-0.475-0.392-0.914-0.667-1.234-0.835c-0.85-0.439-4.098-1.619-5.91-2.299l-0.092-0.037l-1.285,0.56 c-0.689,0.271-1.549,0.597-2.461,0.943c-2.59,0.986-5.525,2.101-6.619,2.681c-2.309,1.226-4,2.936-5.035,5.057h19.881h5.561h19.785 C50.957,44.163,48.33,42.626,47.621,42.258z" fill="#231F20" opacity="0.3"/>
-<path d="M17.037,27.223c0.641,1.68,1.924,2.807,3.191,2.807c0.131,0,0.264-0.012,0.391-0.037 c0.432,0.934,0.9,1.844,1.398,2.719H22l0.146,0.241c0.334-0.609,0.645-1.212,0.902-1.785c0.719,0.248,1.637-0.419,2.096-1.547 c0.473-1.168,0.27-2.384-0.459-2.711c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005 c-0.061-0.017-0.123-0.029-0.188-0.034c-0.014-0.002-0.027-0.006-0.041-0.008c-0.029-0.006-0.07-0.015-0.105-0.023 c0.121,0.023,0.232,0.049,0.359,0.07c0.092-0.368,0.137-0.587,0.137-0.587c1.215-5.457-1.322-9.807-7.5-10.273 c-0.182,1.82,0.049,4.01,0.717,6.578C16.682,23.301,16.289,25.27,17.037,27.223z" fill="#231F20" opacity="0.3"/>
-<path d="M37.779,18.497c-1.645,0.254-4.246,1.76-2.41,8.354c-0.068,0.01-0.139,0.023-0.205,0.051 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.268,0.6,0.576,1.224,0.924,1.861c0.551-0.946,1.072-1.918,1.541-2.922c0.025,0.002,0.055,0.002,0.082,0.002 c1.25,0,2.533-1.101,3.195-2.734c0.773-1.902,0.453-3.844-0.701-4.617c0.053-0.229,0.078-0.355,0.078-0.355 c0.502-2.247,0.574-4.381,0.238-6.312C39.926,16.158,38.717,17.299,37.779,18.497z M35.381,26.849 c0.014-0.014,0.029-0.027,0.043-0.041c0.002,0.01,0.004,0.018,0.008,0.027C35.414,26.837,35.396,26.845,35.381,26.849z M39.174,22.101L39.174,22.101c-0.02-0.004-0.047-0.015-0.066-0.018C39.127,22.086,39.152,22.097,39.174,22.101z" fill="#231F20" opacity="0.3"/>
+<path d="M47.916,41.694c-1.092-0.569-4.482-1.827-7.205-2.838l-1.533-0.569l-0.273-0.11l-0.359-0.139 l-0.686-0.275l-0.424,0.186c0,0-0.006,0.002-0.008,0.004h-0.002c-1.777,0.695-5.18,1.935-6.166,2.458 c-0.385,0.206-0.832,0.477-1.283,0.835c-0.475-0.392-0.914-0.667-1.234-0.835c-0.85-0.439-4.098-1.619-5.91-2.299l-0.17-0.069 l-0.004,0.005l-0.752-0.304l-0.684,0.299c-0.668,0.263-1.492,0.576-2.373,0.911l-0.08,0.031c-2.607,0.99-5.561,2.113-6.693,2.715 c-2.535,1.346-4.359,3.248-5.438,5.615h20.582h5.561h20.494C51.592,43.797,48.686,42.094,47.916,41.694z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M17.193,22.325c-1.205,1.026-1.531,3.083-0.748,5.124c0.732,1.925,2.256,3.218,3.783,3.218 h0.002c0.23,0.475,0.467,0.945,0.713,1.408h-0.07l0.584,0.965c0,0,0.15,0.248,0.33,0.545c0.486-0.827,0.914-1.646,1.262-2.418 c0.719,0.248,1.637-0.419,2.096-1.547c0.473-1.168,0.27-2.384-0.459-2.711c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002 c-0.012-0.002-0.016-0.002-0.025-0.005c-0.061-0.017-0.123-0.029-0.188-0.034c-0.014-0.002-0.027-0.006-0.041-0.008 c-0.029-0.006-0.07-0.015-0.105-0.023c0.121,0.023,0.232,0.049,0.359,0.07c0.092-0.368,0.137-0.587,0.137-0.587 c1.256-5.633-1.479-10.1-8.1-10.32c-0.012,0-0.021,0.003-0.033,0.003C16.395,17.765,16.594,19.881,17.193,22.325z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M37.779,18.497c-1.645,0.254-4.246,1.76-2.41,8.354c-0.068,0.01-0.139,0.023-0.205,0.051 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.359,0.799,0.787,1.648,1.289,2.504c0.564-0.949,1.1-1.934,1.586-2.947c1.395-0.166,2.754-1.375,3.457-3.109 c0.801-1.979,0.545-4.035-0.584-5.104c0.504-2.285,0.584-4.463,0.252-6.444c-0.033-0.002-0.063-0.006-0.096-0.009 C40.098,15.967,38.789,17.205,37.779,18.497z M35.381,26.849c0.014-0.014,0.029-0.027,0.043-0.041 c0.002,0.01,0.004,0.018,0.008,0.027C35.414,26.837,35.396,26.845,35.381,26.849z M39.174,22.101L39.174,22.101 c-0.02-0.004-0.047-0.015-0.066-0.018C39.127,22.086,39.152,22.097,39.174,22.101z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M47.621,42.258c-1.053-0.549-4.424-1.8-7.133-2.807l-1.549-0.574l-0.264-0.108l-0.369-0.142 l-1.045-0.418c-0.033-0.047-0.057-0.107-0.088-0.16c-1.826,0.708-4.971,1.86-5.914,2.361c-0.385,0.206-0.832,0.477-1.283,0.835 c-0.475-0.392-0.914-0.667-1.234-0.835c-0.85-0.439-4.098-1.619-5.91-2.299l-0.092-0.037l-1.285,0.56 c-0.689,0.271-1.549,0.597-2.461,0.943c-2.59,0.986-5.525,2.101-6.619,2.681c-2.309,1.226-4,2.936-5.035,5.057h19.881h5.561h19.785 C50.957,44.163,48.33,42.626,47.621,42.258z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M17.037,27.223c0.641,1.68,1.924,2.807,3.191,2.807c0.131,0,0.264-0.012,0.391-0.037 c0.432,0.934,0.9,1.844,1.398,2.719H22l0.146,0.241c0.334-0.609,0.645-1.212,0.902-1.785c0.719,0.248,1.637-0.419,2.096-1.547 c0.473-1.168,0.27-2.384-0.459-2.711c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005 c-0.061-0.017-0.123-0.029-0.188-0.034c-0.014-0.002-0.027-0.006-0.041-0.008c-0.029-0.006-0.07-0.015-0.105-0.023 c0.121,0.023,0.232,0.049,0.359,0.07c0.092-0.368,0.137-0.587,0.137-0.587c1.215-5.457-1.322-9.807-7.5-10.273 c-0.182,1.82,0.049,4.01,0.717,6.578C16.682,23.301,16.289,25.27,17.037,27.223z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M37.779,18.497c-1.645,0.254-4.246,1.76-2.41,8.354c-0.068,0.01-0.139,0.023-0.205,0.051 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.268,0.6,0.576,1.224,0.924,1.861c0.551-0.946,1.072-1.918,1.541-2.922c0.025,0.002,0.055,0.002,0.082,0.002 c1.25,0,2.533-1.101,3.195-2.734c0.773-1.902,0.453-3.844-0.701-4.617c0.053-0.229,0.078-0.355,0.078-0.355 c0.502-2.247,0.574-4.381,0.238-6.312C39.926,16.158,38.717,17.299,37.779,18.497z M35.381,26.849 c0.014-0.014,0.029-0.027,0.043-0.041c0.002,0.01,0.004,0.018,0.008,0.027C35.414,26.837,35.396,26.845,35.381,26.849z M39.174,22.101L39.174,22.101c-0.02-0.004-0.047-0.015-0.066-0.018C39.127,22.086,39.152,22.097,39.174,22.101z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="-84.3965" cy="-1.04" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_23_" r="18.6813">
- <stop offset="0.2" style="stop-color:#FFA98E"/>
- <stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="0" style="stop-color:#FFA98E"/>
+<stop offset="0.2" style="stop-color:#FFA98E"/>
+<stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="1" style="stop-color:#D45D36"/>
</radialGradient>
<path d="M37.447,39.174c-1.643-0.715-1.59-4.214-0.912-5.273c0.117-0.186,0.225-0.37,0.338-0.554H23.129 c0.113,0.184,0.219,0.368,0.338,0.554c0.678,1.06,0.73,4.559-0.914,5.273c-1.645,0.713,7.641,6.929,7.641,6.929 S39.092,39.887,37.447,39.174z" fill="url(#SVGID_23_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="30.001" x2="30.001" y1="38.5244" y2="52.9141">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="1" style="stop-color:#BA1212"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="1" style="stop-color:#BA1212"/>
</linearGradient>
<path d="M47.33,42.822c-1.729-0.9-10.297-3.901-10.459-4.089l-6.545,5.439l-7.031-5.648 c-0.193,0.289-8.662,3.257-10.621,4.298c-2.242,1.189-5.906,3.925-5.906,10.092h46.467C53.234,46.747,49.057,43.719,47.33,42.822z" fill="url(#SVGID_24_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="30.0654" x2="30.0654" y1="37.5811" y2="45.9985">
- <stop offset="0" style="stop-color:#BC1C24"/>
- <stop offset="1" style="stop-color:#6B1C24"/>
+<stop offset="0" style="stop-color:#BC1C24"/>
+<stop offset="1" style="stop-color:#6B1C24"/>
</linearGradient>
<polygon fill="url(#SVGID_25_)" points="21.695,39.225 30.326,46.103 38.436,39.365 36.871,38.733 30.326,44.173 23.295,38.524 "/>
<path d="M22.1,40.313c0,0-12.316,3.215-12.316,11.844c0,0-1.76,0.002-1.775,0C8.008,46.851,12.15,42.725,22.1,40.313 z" fill="#FF7B56"/>
<path d="M37.74,40.113c0,0,12.316,3.218,12.316,11.844c0,0,1.762,0,1.775,0C51.832,46.65,47.689,42.525,37.74,40.113 z" fill="#FF7B56"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="30.0645" x2="30.0645" y1="46.7217" y2="38.7736">
- <stop offset="0" style="stop-color:#FFA98E"/>
- <stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="0" style="stop-color:#FFA98E"/>
+<stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="1" style="stop-color:#D45D36"/>
</linearGradient>
<polygon fill="url(#SVGID_26_)" points="30.326,46.103 21.691,39.225 21.191,39.445 30.326,46.722 38.938,39.561 38.438,39.358 "/>
<radialGradient cx="-83.4844" cy="-35.5879" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_27_" r="25.0781">
- <stop offset="0" style="stop-color:#FFE2D9"/>
- <stop offset="0.5091" style="stop-color:#FFC6B3"/>
- <stop offset="0.7636" style="stop-color:#FFA98E"/>
- <stop offset="1" style="stop-color:#E88160"/>
+<stop offset="0" style="stop-color:#FFE2D9"/>
+<stop offset="0.5091" style="stop-color:#FFC6B3"/>
+<stop offset="0.7636" style="stop-color:#FFA98E"/>
+<stop offset="1" style="stop-color:#E88160"/>
</radialGradient>
<path d="M41.398,23.083c-0.059-0.027-0.125-0.031-0.184-0.051V23.03c-0.012-0.002-0.023-0.004-0.035-0.006 c-0.092-0.023-0.182-0.045-0.275-0.051c-11.475-1.996-16.738-8.354-17.135-6.67c-0.316,1.34-3.535,4.236-5.219,5.682 c0.014,0.064,0.021,0.121,0.035,0.188c0,0,0.063,0.296,0.188,0.801c-0.135,0.014-0.264,0.041-0.393,0.094 c-1.07,0.454-1.406,2.21-0.75,3.928c0.658,1.716,2.059,2.744,3.131,2.294c0.066-0.029,0.121-0.078,0.182-0.115 c0.625,1.4,1.389,2.901,2.326,4.406c1.568,1.865,3.973,4.055,6.627,4.055c3.213,0,5.18-1.758,6.529-3.53 c0.033-0.074,0.068-0.144,0.109-0.204c1.002-1.564,1.813-3.135,2.471-4.594c1.047,0.361,2.395-0.612,3.063-2.263 C42.76,25.336,42.461,23.561,41.398,23.083z" fill="url(#SVGID_27_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="25.8574" x2="35.7696" y1="38.709" y2="28.8743">
- <stop offset="0" style="stop-color:#FFC6B3"/>
- <stop offset="1" style="stop-color:#FFA98E"/>
+<stop offset="0" style="stop-color:#FFC6B3"/>
+<stop offset="1" style="stop-color:#FFA98E"/>
</linearGradient>
<path d="M29.426,36.734c-1.955,0-3.926-0.91-5.377-2.283c1.535,1.612,3.6,3.184,5.848,3.184 c3.213,0,5.18-1.758,6.529-3.53c0.033-0.074,0.068-0.144,0.109-0.204c1.002-1.564,1.813-3.135,2.471-4.594 C35.352,35.689,32.639,36.734,29.426,36.734z" fill="url(#SVGID_28_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="29.8047" x2="29.8047" y1="7.3003" y2="21.8973">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M29.574,7.086c-3.977,0-5.891,1.809-7.369,3.699c-2.4,0.37-6.209,2.57-3.52,12.218 c1.684-1.444,4.768-5.359,5.084-6.699c0.398-1.697,5.75,4.792,17.445,6.727c0.137-0.541,0.197-0.857,0.197-0.857 C43.25,13.937,39.256,7.407,29.574,7.086z" fill="url(#SVGID_29_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="34.7979" x2="21.5721" y1="21.2656" y2="13.414">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3636" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3636" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M23.783,15.516c0,0,5.723,7.517,17.35,7.504C41.133,23.02,35.656,22.159,23.783,15.516z" fill="url(#SVGID_30_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="20.3789" x2="20.495" y1="11.8853" y2="20.2845">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M22.406,11.344c0,0-5.604,0.334-3.525,9.831C18.881,21.175,18.195,14.67,22.406,11.344z" fill="url(#SVGID_31_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="31.6582" x2="31.2464" y1="8.5503" y2="12.3578">
- <stop offset="0" style="stop-color:#A87C4F"/>
- <stop offset="1" style="stop-color:#632F00"/>
+<stop offset="0" style="stop-color:#A87C4F"/>
+<stop offset="1" style="stop-color:#632F00"/>
</linearGradient>
<path d="M32.291,12.66c-2.609-0.375-7.02-2.686-8.75-1.859c0,0,5.662-6.459,15.65,0.895 C39.191,11.695,36.813,13.303,32.291,12.66z" fill="url(#SVGID_32_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ftu.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ftu.svg Thu May 27 13:10:59 2010 +0300
@@ -1,108 +1,110 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="37.589" opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
- <stop offset="0" style="stop-color:#85EFFF"/>
- <stop offset="1" style="stop-color:#3BA1D9"/>
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
<rect fill="#9FE4FF" height="0.767" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D1D7D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D1D7D9"/>
</linearGradient>
<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
- <stop offset="0" style="stop-color:#6C7375"/>
- <stop offset="1" style="stop-color:#BDC2C4"/>
+<stop offset="0" style="stop-color:#6C7375"/>
+<stop offset="1" style="stop-color:#BDC2C4"/>
</linearGradient>
<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" opacity="0.6"/>
-<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" opacity="0.5"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" opacity="0.2"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" opacity="0.4"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" opacity="0.7"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" opacity="0.4"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" opacity="0.7"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
@@ -110,72 +112,46 @@
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -576.9805 -204.4805)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-595" x2="-595" y1="208" y2="226">
-
<stop offset="0" stop-color="#FFE6DE"/>
-
<stop offset="1" stop-color="#DB7250"/>
-
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="17.98,3.537,20.9,9.609,26.98,12.54,20.9,15.46,17.98,21.54,15.05,15.46,8.977,12.54,15.05,9.609"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -576.9805 -204.4805)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-595" x2="-595" y1="209.5" y2="224.5">
-
<stop offset="0" stop-color="#FF7236"/>
-
<stop offset="0.79" stop-color="#D11414"/>
-
<stop offset="1" stop-color="#E8522A"/>
-
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="15.55,10.11,17.98,5.07,20.4,10.11,25.44,12.54,20.4,14.96,17.98,20,15.55,14.96,10.51,12.54"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -576.9805 -204.4805)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-595" x2="-595" y1="206.9" y2="227.1">
-
<stop offset="0" stop-color="#FF3030"/>
-
<stop offset="1" stop-color="#9C2D31"/>
-
</linearGradient>
<path d="M17.98,3.736l2.773,5.756,0.088,0.182,0.184,0.088,5.754,2.773-5.754,2.775-0.184,0.088-0.088,0.184-2.773,5.752-2.774-5.752-0.088-0.184-0.183-0.088-5.754-2.775,5.754-2.773,0.183-0.088,0.088-0.182,2.77-5.761m0-1.332l-3.3,6.836-6.837,3.295,6.836,3.297,3.295,6.838,3.297-6.838,6.836-3.297-6.85-3.3-3.29-6.836z" fill="url(#SVGID_3__)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -576.9805 -204.4805)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-585.2" x2="-585.2" y1="218.8" y2="226.2">
-
<stop offset="0" stop-color="#A6A8AB"/>
-
<stop offset="1" stop-color="#231F20"/>
-
</linearGradient>
-<path d="M6.725,19.12l-4.832,2.328,0.562,0.271h10.15c0.829,0,1.555-0.416,1.997-1.047l-3.222-1.553-2.329-4.832-2.336,4.83z" fill="url(#SVGID_4__)" opacity="0.2" style="enable-background:new;"/>
+<path d="M6.725,19.12l-4.832,2.328,0.562,0.271h10.15c0.829,0,1.555-0.416,1.997-1.047l-3.222-1.553-2.329-4.832-2.336,4.83z" fill="url(#SVGID_4__)" fill-opacity="0.2" stroke-opacity="0.2" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -576.9805 -204.4805)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="-585.4" x2="-585.4" y1="219.2" y2="226.2">
-
<stop offset="0" stop-color="#A9AAAD"/>
-
<stop offset="1" stop-color="#000000"/>
-
</linearGradient>
-<path d="M6.857,19.25l-4.55,2.193,0.562,0.27h9.735c0.764,0,1.442-0.35,1.891-0.896l-3.251-1.565-2.193-4.551-2.19,4.56z" fill="url(#SVGID_5__)" opacity="0.4" style="enable-background:new;"/>
+<path d="M6.857,19.25l-4.55,2.193,0.562,0.27h9.735c0.764,0,1.442-0.35,1.891-0.896l-3.251-1.565-2.193-4.551-2.19,4.56z" fill="url(#SVGID_5__)" fill-opacity="0.4" stroke-opacity="0.4" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -576.9805 -204.4805)" gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="-586" x2="-586" y1="220.1" y2="231.4">
-
<stop offset="0" stop-color="#FFE6DE"/>
-
<stop offset="1" stop-color="#DB7250"/>
-
</linearGradient>
<polygon fill="url(#SVGID_6__)" points="9.052,15.65,10.88,19.44,14.67,21.27,10.88,23.09,9.052,26.88,7.225,23.09,3.434,21.27,7.225,19.44"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -576.9805 -204.4805)" gradientUnits="userSpaceOnUse" id="SVGID_7__" x1="-586" x2="-586" y1="221.1" y2="230.4">
-
<stop offset="0" stop-color="#FF7236"/>
-
<stop offset="0.79" stop-color="#D11414"/>
-
<stop offset="1" stop-color="#E8522A"/>
-
</linearGradient>
<polygon fill="url(#SVGID_7__)" points="7.536,19.75,9.052,16.6,10.57,19.75,13.71,21.27,10.57,22.78,9.052,25.93,7.536,22.78,4.391,21.27"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -576.9805 -204.4805)" gradientUnits="userSpaceOnUse" id="SVGID_8__" x1="-586" x2="-586" y1="219.4" y2="232.1">
-
<stop offset="0" stop-color="#FF3030"/>
-
<stop offset="1" stop-color="#9C2D31"/>
-
</linearGradient>
<path d="M9.052,15.77l1.732,3.594,0.055,0.115,0.114,0.055,3.594,1.73-3.594,1.731-0.114,0.055-0.055,0.115-1.728,3.58-1.732-3.59-0.055-0.115-0.115-0.06-3.594-1.732,3.594-1.729,0.114-0.056,0.055-0.114,1.733-3.6m0-0.83l-2.058,4.27-4.27,2.057,4.27,2.062,2.058,4.271,2.058-4.271,4.27-2.062-4.27-2.057-2.058-4.27z" fill="url(#SVGID_8__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_games.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_games.svg Thu May 27 13:10:59 2010 +0300
@@ -1,160 +1,159 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.752" x2="37.7069" y1="18.6255" y2="19.3878">
- <stop offset="0" style="stop-color:#333333"/>
- <stop offset="1" style="stop-color:#A7A8A9"/>
+<stop offset="0" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#A7A8A9"/>
</linearGradient>
<path d="M27.656,5.649l5.785,0.394l1.092,2.745L32.23,9.758l2.959,1.516l0.109,5.178l-3.068-0.485 l3.068,2.237c0,0-5.514,8.872-1.639,11.192l-4.416,2.117c0,0-5.463-3.121-1.531-9.217C31.645,16.203,27.656,5.649,27.656,5.649z" fill="url(#SVGID_1_)"/>
-<polygon fill="#FFFFFF" opacity="0.5" points="32.23,11.271 35.189,12.787 35.268,16.447 35.299,16.452 35.189,11.273 33.85,10.588 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="32.23,11.271 35.189,12.787 35.268,16.447 35.299,16.452 35.189,11.273 33.85,10.588 " stroke-opacity="0.5"/>
<path d="M33.441,7.556l0.578,1.448l0.514-0.217l-1.092-2.745l-5.785-0.394c0,0,0.219,0.582,0.504,1.547L33.441,7.556 z" fill="#FFFFFF"/>
<path d="M32.23,17.48l2.457,1.791c0.357-0.659,0.611-1.067,0.611-1.067l-0.42-0.306L32.23,17.48z" fill="#FFFFFF"/>
<path d="M32.33,27.233c-0.115,0.987-0.037,1.904,0.348,2.633l0.982-0.471C32.854,28.914,32.457,28.143,32.33,27.233z " fill="#FFFFFF"/>
-<path d="M33.441,6.936l0.787,1.979l0.305-0.128l-1.092-2.745l-5.785-0.394 c0,0,0.125,0.335,0.309,0.913L33.441,6.936z" fill="#FFFFFF" opacity="0.5"/>
-<polygon fill="#FFFFFF" opacity="0.5" points="32.23,10.651 35.189,12.167 35.279,16.449 35.299,16.452 35.189,11.273 33.186,10.248 "/>
+<path d="M33.441,6.936l0.787,1.979l0.305-0.128l-1.092-2.745l-5.785-0.394 c0,0,0.125,0.335,0.309,0.913L33.441,6.936z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="32.23,10.651 35.189,12.167 35.279,16.449 35.299,16.452 35.189,11.273 33.186,10.248 " stroke-opacity="0.5"/>
<path d="M32.299,26.955c-0.076,1.082,0.098,2.057,0.691,2.762l0.67-0.321C32.773,28.864,32.381,27.989,32.299,26.955 z" fill="#FFFFFF"/>
<path d="M32.23,16.86l2.701,1.97c0.223-0.394,0.367-0.625,0.367-0.625l-1.504-1.098L32.23,16.86z" fill="#FFFFFF"/>
-<path d="M32.883,12.973c0.137-1.023,0.125-1.99-0.025-2.895L32.23,9.758l0.521-0.22 c-0.266-1.135-0.76-2.168-1.496-3.093c-0.164-0.205-0.342-0.4-0.52-0.587l-3.08-0.209c0,0,3.988,10.554,0.057,16.647 c-3.932,6.096,1.531,9.217,1.531,9.217l0.713-0.34c-2.512-3.189-1.322-6.021,0.35-9.96c0.674-1.581,1.402-3.31,1.939-5.234 l-0.016-0.011l0.02,0.002C32.516,15.021,32.74,14.026,32.883,12.973z" fill="#231F20" opacity="0.3"/>
+<path d="M32.883,12.973c0.137-1.023,0.125-1.99-0.025-2.895L32.23,9.758l0.521-0.22 c-0.266-1.135-0.76-2.168-1.496-3.093c-0.164-0.205-0.342-0.4-0.52-0.587l-3.08-0.209c0,0,3.988,10.554,0.057,16.647 c-3.932,6.096,1.531,9.217,1.531,9.217l0.713-0.34c-2.512-3.189-1.322-6.021,0.35-9.96c0.674-1.581,1.402-3.31,1.939-5.234 l-0.016-0.011l0.02,0.002C32.516,15.021,32.74,14.026,32.883,12.973z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="21.6943" x2="27.5643" y1="21.5898" y2="2.1062">
- <stop offset="0" style="stop-color:#2E3030"/>
- <stop offset="0.6545" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#4D5152"/>
+<stop offset="0" style="stop-color:#2E3030"/>
+<stop offset="0.6545" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#4D5152"/>
</linearGradient>
<path d="M32.131,12.872c1.213-8.979-9.904-10.008-9.904-10.008L17.592,2c0,0-0.477,1.282,2.004,2.599 C15.244,7.53,6.963,13.376,6.555,15.737c-0.271,1.542,4.236,7.189,5.402,3.09c0.777-2.747,5.494-1.03,6.773-1.84 c1.045-0.661,2.186,0.291,2.186,0.291c-9.029,8.198-9.834,16.507-9.834,16.507v11.351h20.432V33.785 C23.324,27.117,30.877,22.202,32.131,12.872z" fill="url(#SVGID_2_)"/>
-<path d="M17.922,10.739l3.496-2.382C21.418,8.357,21.248,13.408,17.922,10.739z" fill="#FCFCFC" opacity="0.3"/>
+<path d="M17.922,10.739l3.496-2.382C21.418,8.357,21.248,13.408,17.922,10.739z" fill="#FCFCFC" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="19.6699" x2="19.6699" y1="7.1016" y2="11.1458">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="1" style="stop-color:#4E4E4E"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4E4E4E"/>
</linearGradient>
<path d="M17.922,10.385l3.496-2.243C21.418,8.142,20.67,12.024,17.922,10.385z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9.5703" x2="33.0273" y1="46.6494" y2="46.6494">
- <stop offset="0" style="stop-color:#363636"/>
- <stop offset="0.6545" style="stop-color:#898C8C"/>
- <stop offset="1" style="stop-color:#565C5C"/>
+<stop offset="0" style="stop-color:#363636"/>
+<stop offset="0.6545" style="stop-color:#898C8C"/>
+<stop offset="1" style="stop-color:#565C5C"/>
</linearGradient>
<path d="M33.027,46.647c0,0.838-0.672,1.516-1.514,1.516H10.965c-0.842,0-1.395-0.678-1.395-1.516l0,0 c0-0.835,0.553-1.511,1.395-1.511h20.549C32.355,45.136,33.027,45.812,33.027,46.647L33.027,46.647z" fill="url(#SVGID_4_)"/>
-<path d="M10.965,45.892h20.549c0.709,0,1.293,0.483,1.461,1.135c0.031-0.121,0.053-0.249,0.053-0.379 c0-0.835-0.672-1.511-1.514-1.511H10.965c-0.842,0-1.395,0.676-1.395,1.511c0,0.13,0.016,0.258,0.043,0.379 C9.756,46.375,10.256,45.892,10.965,45.892z" fill="#FFFFFF" opacity="0.2"/>
+<path d="M10.965,45.892h20.549c0.709,0,1.293,0.483,1.461,1.135c0.031-0.121,0.053-0.249,0.053-0.379 c0-0.835-0.672-1.511-1.514-1.511H10.965c-0.842,0-1.395,0.676-1.395,1.511c0,0.13,0.016,0.258,0.043,0.379 C9.756,46.375,10.256,45.892,10.965,45.892z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="17.2041" x2="34.1982" y1="20.5649" y2="5.97">
- <stop offset="0" style="stop-color:#2E3030"/>
- <stop offset="0.6545" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#4D5152"/>
+<stop offset="0" style="stop-color:#2E3030"/>
+<stop offset="0.6545" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#4D5152"/>
</linearGradient>
<path d="M29.066,5.392l-9.162,11.402c0.576,0.123,1.012,0.483,1.012,0.483 c-0.455,0.413-0.875,0.825-1.289,1.238l0.043,0.192l12.477-5.991C32.576,9.154,31.045,6.858,29.066,5.392z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.5635" x2="32.4584" y1="20.1465" y2="24.9896">
- <stop offset="0" style="stop-color:#2E3030"/>
- <stop offset="0.6545" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#4D5152"/>
+<stop offset="0" style="stop-color:#2E3030"/>
+<stop offset="0.6545" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#4D5152"/>
</linearGradient>
<path d="M32.131,12.872c0.129-0.939,0.113-1.786-0.002-2.559c-4.604,1.772-10.771,6.632-11.324,7.071 c-8.918,8.165-9.723,16.401-9.723,16.401v0.008l20.432-0.008C23.324,27.117,30.877,22.202,32.131,12.872z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="11.082" x2="31.5137" y1="39.4644" y2="39.4644">
- <stop offset="0" style="stop-color:#363636"/>
- <stop offset="0.6545" style="stop-color:#898C8C"/>
- <stop offset="1" style="stop-color:#565C5C"/>
+<stop offset="0" style="stop-color:#363636"/>
+<stop offset="0.6545" style="stop-color:#898C8C"/>
+<stop offset="1" style="stop-color:#565C5C"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="11.343" width="20.432" x="11.082" y="33.792"/>
<linearGradient gradientTransform="matrix(1.0123 0 0 1 -4.0079 0)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="13.707" x2="33.2224" y1="33.5234" y2="32.0012">
- <stop offset="0.0545" style="stop-color:#2E3030"/>
- <stop offset="0.7333" style="stop-color:#8F8F8F"/>
- <stop offset="1" style="stop-color:#4D5152"/>
+<stop offset="0" style="stop-color:#2E3030"/>
+<stop offset="0.0545" style="stop-color:#2E3030"/>
+<stop offset="0.7333" style="stop-color:#8F8F8F"/>
+<stop offset="1" style="stop-color:#4D5152"/>
</linearGradient>
<path d="M11.082,33.785h20.432c-2.48-2.008-3.729-3.008-9.955-3.008 C13.785,30.777,11.082,33.785,11.082,33.785z" fill="url(#SVGID_8_)"/>
-<rect fill="#231F20" height="0.758" opacity="0.5" width="20.432" x="11.082" y="44.378"/>
-<rect fill="#FFFFFF" height="0.756" opacity="0.3" width="20.432" x="11.082" y="33.785"/>
-<rect fill="#FFFFFF" height="0.758" opacity="0.2" width="20.432" x="11.082" y="34.541"/>
-<rect fill="#FFFFFF" height="0.755" opacity="0.1" width="20.432" x="11.082" y="35.299"/>
-<rect fill="#231F20" height="0.755" opacity="0.3" width="20.432" x="11.082" y="43.623"/>
-<rect fill="#231F20" height="0.758" opacity="0.1" width="20.432" x="11.082" y="42.864"/>
+<rect fill="#231F20" fill-opacity="0.5" height="0.758" stroke-opacity="0.5" width="20.432" x="11.082" y="44.378"/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="0.756" stroke-opacity="0.3" width="20.432" x="11.082" y="33.785"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="0.758" stroke-opacity="0.2" width="20.432" x="11.082" y="34.541"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" height="0.755" stroke-opacity="0.1" width="20.432" x="11.082" y="35.299"/>
+<rect fill="#231F20" fill-opacity="0.3" height="0.755" stroke-opacity="0.3" width="20.432" x="11.082" y="43.623"/>
+<rect fill="#231F20" fill-opacity="0.1" height="0.758" stroke-opacity="0.1" width="20.432" x="11.082" y="42.864"/>
<path d="M27.799,28.044c-0.25,2.393,0.572,4.693,3.715,7.255v-1.514C29.037,31.77,28.006,29.913,27.799,28.044z" fill="#FFFFFF"/>
-<path d="M22.227,4.377c0,0,9.34,0.87,9.957,7.938c0.684-8.461-9.957-9.451-9.957-9.451L17.592,2 c0,0-0.266,0.718,0.639,1.633L22.227,4.377z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M11.082,33.785v1.514c0,0,0.805-8.31,9.834-16.508c0,0-0.469-0.386-1.078-0.493 C11.826,26.152,11.082,33.785,11.082,33.785z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M19.596,6.112c-0.479-0.254-0.846-0.504-1.127-0.748C13.955,8.452,6.932,13.567,6.555,15.737 c-0.043,0.241,0.033,0.586,0.195,0.978C8.086,14.098,15.545,8.84,19.596,6.112z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M11.082,33.785v0.756c0,0,0.805-8.309,9.834-16.507c0,0-0.195-0.157-0.49-0.297 C11.863,25.782,11.082,33.785,11.082,33.785z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M22.227,3.621c0,0,9.664,0.897,9.984,8.3c0.328-8.1-9.984-9.058-9.984-9.058L17.592,2 c0,0-0.111,0.305,0.061,0.768L22.227,3.621z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M22.227,4.377c0,0,9.34,0.87,9.957,7.938c0.684-8.461-9.957-9.451-9.957-9.451L17.592,2 c0,0-0.266,0.718,0.639,1.633L22.227,4.377z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M11.082,33.785v1.514c0,0,0.805-8.31,9.834-16.508c0,0-0.469-0.386-1.078-0.493 C11.826,26.152,11.082,33.785,11.082,33.785z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M19.596,6.112c-0.479-0.254-0.846-0.504-1.127-0.748C13.955,8.452,6.932,13.567,6.555,15.737 c-0.043,0.241,0.033,0.586,0.195,0.978C8.086,14.098,15.545,8.84,19.596,6.112z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M11.082,33.785v0.756c0,0,0.805-8.309,9.834-16.507c0,0-0.195-0.157-0.49-0.297 C11.863,25.782,11.082,33.785,11.082,33.785z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M22.227,3.621c0,0,9.664,0.897,9.984,8.3c0.328-8.1-9.984-9.058-9.984-9.058L17.592,2 c0,0-0.111,0.305,0.061,0.768L22.227,3.621z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<path d="M27.77,27.689c-0.119,2.25,0.777,4.435,3.744,6.851v-0.756C28.879,31.639,27.881,29.676,27.77,27.689z" fill="#FFFFFF"/>
-<path d="M19.596,5.356c-0.225-0.119-0.416-0.237-0.594-0.355C14.533,8.034,6.945,13.48,6.555,15.737 c-0.027,0.152-0.008,0.343,0.051,0.56C7.404,13.822,15.361,8.208,19.596,5.356z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M19.596,5.356c-0.225-0.119-0.416-0.237-0.594-0.355C14.533,8.034,6.945,13.48,6.555,15.737 c-0.027,0.152-0.008,0.343,0.051,0.56C7.404,13.822,15.361,8.208,19.596,5.356z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="47.9121" x2="55.8671" y1="28.4629" y2="29.2252">
- <stop offset="0" style="stop-color:#888F91"/>
- <stop offset="1" style="stop-color:#C9C9C9"/>
+<stop offset="0" style="stop-color:#888F91"/>
+<stop offset="1" style="stop-color:#C9C9C9"/>
</linearGradient>
<path d="M45.816,15.486l5.787,0.393l1.094,2.745l-2.303,0.97l2.957,1.516l0.107,5.178l-3.064-0.485 l3.064,2.238c0,0-5.514,8.872-1.639,11.192l-4.416,2.117c0,0-5.461-3.122-1.529-9.217C49.805,26.041,45.816,15.486,45.816,15.486z" fill="url(#SVGID_9_)"/>
-<polygon fill="#FFFFFF" opacity="0.5" points="50.395,21.109 53.352,22.625 53.428,26.284 53.459,26.289 53.352,21.111 52.014,20.425 "/>
-<path d="M51.604,17.393l0.576,1.449l0.518-0.217l-1.094-2.745l-5.787-0.393 c0,0,0.221,0.584,0.506,1.547L51.604,17.393z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M50.395,27.317l2.455,1.792c0.355-0.659,0.609-1.067,0.609-1.067l-0.42-0.307L50.395,27.317z" fill="#FFFFFF" opacity="0.5"/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="50.395,21.109 53.352,22.625 53.428,26.284 53.459,26.289 53.352,21.111 52.014,20.425 " stroke-opacity="0.5"/>
+<path d="M51.604,17.393l0.576,1.449l0.518-0.217l-1.094-2.745l-5.787-0.393 c0,0,0.221,0.584,0.506,1.547L51.604,17.393z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M50.395,27.317l2.455,1.792c0.355-0.659,0.609-1.067,0.609-1.067l-0.42-0.307L50.395,27.317z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<path d="M50.492,37.07c-0.115,0.988-0.037,1.905,0.346,2.634l0.982-0.47C51.014,38.75,50.619,37.98,50.492,37.07z" fill="#FFFFFF"/>
-<path d="M51.604,16.773l0.789,1.979l0.305-0.127l-1.094-2.745l-5.787-0.393 c0,0,0.125,0.335,0.313,0.912L51.604,16.773z" fill="#FFFFFF" opacity="0.5"/>
-<polygon fill="#FFFFFF" opacity="0.5" points="50.395,20.488 53.352,22.003 53.441,26.287 53.459,26.289 53.352,21.111 51.35,20.085 "/>
+<path d="M51.604,16.773l0.789,1.979l0.305-0.127l-1.094-2.745l-5.787-0.393 c0,0,0.125,0.335,0.313,0.912L51.604,16.773z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="50.395,20.488 53.352,22.003 53.441,26.287 53.459,26.289 53.352,21.111 51.35,20.085 " stroke-opacity="0.5"/>
<path d="M50.461,36.793c-0.076,1.082,0.1,2.057,0.691,2.762l0.668-0.321C50.934,38.703,50.543,37.826,50.461,36.793z " fill="#FFFFFF"/>
-<path d="M50.395,26.697l2.697,1.97c0.227-0.394,0.367-0.625,0.367-0.625l-1.504-1.099L50.395,26.697z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M51.795,22.912c0.119-0.9,0.127-1.758,0.043-2.579l-1.443-0.739l1.232-0.519 c-0.297-1.192-0.838-2.284-1.617-3.264c-0.012-0.015-0.025-0.029-0.039-0.043l-4.154-0.282c0,0,3.988,10.554,0.059,16.647 c-3.932,6.095,1.529,9.217,1.529,9.217l1.41-0.676c-2.369-2.885-1.332-5.364,0.352-9.328c0.65-1.533,1.355-3.199,1.898-5.053 l-0.67-0.49l0.77,0.121C51.428,24.971,51.652,23.974,51.795,22.912z" fill="#231F20" opacity="0.1"/>
-<path d="M51.043,22.811c0.141-1.024,0.125-1.987-0.023-2.895l-0.625-0.321l0.521-0.22 c-0.27-1.134-0.764-2.168-1.5-3.092c-0.164-0.205-0.338-0.4-0.52-0.586l-3.08-0.21c0,0,3.988,10.554,0.059,16.647 c-3.932,6.095,1.529,9.217,1.529,9.217l0.713-0.341c-2.51-3.188-1.32-6.021,0.354-9.958c0.672-1.584,1.398-3.312,1.939-5.237 l-0.016-0.012l0.018,0.002C50.68,24.857,50.9,23.863,51.043,22.811z" fill="#231F20" opacity="0.2"/>
-<path d="M28.693,31.644c0.158,0,0.375-0.017,0.619-0.072c-0.018-0.021-0.037-0.043-0.055-0.065 l1.316-0.63c0.396-0.384,0.758-0.951,1-1.798c0.039-0.138,0.135-0.432,1.217-0.519c-1.998-3.107,2.508-10.354,2.508-10.354 l-2.74-1.999c-7.863,5.659-9.123,7.896-9.336,9.108c-0.271,1.575,1.242,3.525,1.709,4.085 C25.795,30.422,27.146,31.644,28.693,31.644z" fill="#231F20" opacity="0.1"/>
-<path d="M34.332,11.312c-0.064,0.176-0.518,1.574,0.83,3.061c-0.857,0.591-1.65,1.149-2.391,1.678 l2.527,0.4l-0.109-5.178l-0.707-0.362L34.332,11.312z" fill="#231F20" opacity="0.1"/>
-<path d="M33.027,46.647c0-0.835-0.672-1.511-1.514-1.511V33.785c0,0-0.002-0.004-0.006-0.007 c-3.328,5.372-3.754,9.555-3.777,9.845v4.541h3.783C32.355,48.163,33.027,47.485,33.027,46.647z" fill="#231F20" opacity="0.1"/>
-<path d="M35.229,13.167l-0.039-1.893l-0.027-0.015l-0.119,0.317 C35.002,11.689,34.799,12.333,35.229,13.167z" fill="#231F20" opacity="0.5"/>
-<path d="M28.693,30.888c0.59,0,1.654-0.263,2.152-2.015c0.168-0.599,0.658-0.923,1.613-1.043 c-1.039-3.379,2.84-9.625,2.84-9.625l-2.096-1.528c-5.842,4.191-8.951,7.136-9.234,8.768c-0.174,0.997,0.725,2.489,1.543,3.467 C26.133,29.65,27.371,30.888,28.693,30.888z" fill="#231F20" opacity="0.3"/>
-<path d="M33.027,46.647c0-0.835-0.672-1.511-1.514-1.511v-9.898c-2.627,4.633-3.004,8.114-3.027,8.385 v4.541h3.027C32.355,48.163,33.027,47.485,33.027,46.647z" fill="#231F20" opacity="0.3"/>
-<path d="M35.299,16.452l-0.027-1.233c-0.492,0.34-0.971,0.676-1.432,1.001L35.299,16.452z" fill="#231F20" opacity="0.3"/>
+<path d="M50.395,26.697l2.697,1.97c0.227-0.394,0.367-0.625,0.367-0.625l-1.504-1.099L50.395,26.697z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M51.795,22.912c0.119-0.9,0.127-1.758,0.043-2.579l-1.443-0.739l1.232-0.519 c-0.297-1.192-0.838-2.284-1.617-3.264c-0.012-0.015-0.025-0.029-0.039-0.043l-4.154-0.282c0,0,3.988,10.554,0.059,16.647 c-3.932,6.095,1.529,9.217,1.529,9.217l1.41-0.676c-2.369-2.885-1.332-5.364,0.352-9.328c0.65-1.533,1.355-3.199,1.898-5.053 l-0.67-0.49l0.77,0.121C51.428,24.971,51.652,23.974,51.795,22.912z" fill="#231F20" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M51.043,22.811c0.141-1.024,0.125-1.987-0.023-2.895l-0.625-0.321l0.521-0.22 c-0.27-1.134-0.764-2.168-1.5-3.092c-0.164-0.205-0.338-0.4-0.52-0.586l-3.08-0.21c0,0,3.988,10.554,0.059,16.647 c-3.932,6.095,1.529,9.217,1.529,9.217l0.713-0.341c-2.51-3.188-1.32-6.021,0.354-9.958c0.672-1.584,1.398-3.312,1.939-5.237 l-0.016-0.012l0.018,0.002C50.68,24.857,50.9,23.863,51.043,22.811z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M28.693,31.644c0.158,0,0.375-0.017,0.619-0.072c-0.018-0.021-0.037-0.043-0.055-0.065 l1.316-0.63c0.396-0.384,0.758-0.951,1-1.798c0.039-0.138,0.135-0.432,1.217-0.519c-1.998-3.107,2.508-10.354,2.508-10.354 l-2.74-1.999c-7.863,5.659-9.123,7.896-9.336,9.108c-0.271,1.575,1.242,3.525,1.709,4.085 C25.795,30.422,27.146,31.644,28.693,31.644z" fill="#231F20" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M34.332,11.312c-0.064,0.176-0.518,1.574,0.83,3.061c-0.857,0.591-1.65,1.149-2.391,1.678 l2.527,0.4l-0.109-5.178l-0.707-0.362L34.332,11.312z" fill="#231F20" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M33.027,46.647c0-0.835-0.672-1.511-1.514-1.511V33.785c0,0-0.002-0.004-0.006-0.007 c-3.328,5.372-3.754,9.555-3.777,9.845v4.541h3.783C32.355,48.163,33.027,47.485,33.027,46.647z" fill="#231F20" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M35.229,13.167l-0.039-1.893l-0.027-0.015l-0.119,0.317 C35.002,11.689,34.799,12.333,35.229,13.167z" fill="#231F20" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M28.693,30.888c0.59,0,1.654-0.263,2.152-2.015c0.168-0.599,0.658-0.923,1.613-1.043 c-1.039-3.379,2.84-9.625,2.84-9.625l-2.096-1.528c-5.842,4.191-8.951,7.136-9.234,8.768c-0.174,0.997,0.725,2.489,1.543,3.467 C26.133,29.65,27.371,30.888,28.693,30.888z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M33.027,46.647c0-0.835-0.672-1.511-1.514-1.511v-9.898c-2.627,4.633-3.004,8.114-3.027,8.385 v4.541h3.027C32.355,48.163,33.027,47.485,33.027,46.647z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M35.299,16.452l-0.027-1.233c-0.492,0.34-0.971,0.676-1.432,1.001L35.299,16.452z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="39.8555" x2="45.7253" y1="31.4277" y2="11.9445">
- <stop offset="0" style="stop-color:#8B8E8F"/>
- <stop offset="0.6545" style="stop-color:#C2C2C2"/>
- <stop offset="1" style="stop-color:#A0A9AB"/>
+<stop offset="0" style="stop-color:#8B8E8F"/>
+<stop offset="0.6545" style="stop-color:#C2C2C2"/>
+<stop offset="1" style="stop-color:#A0A9AB"/>
</linearGradient>
<path d="M50.295,22.709c1.209-8.98-9.908-10.006-9.908-10.006l-4.635-0.864c0,0-0.475,1.282,2.004,2.598 c-4.35,2.931-12.631,8.778-13.041,11.138c-0.27,1.543,4.24,7.189,5.402,3.091c0.779-2.748,5.498-1.031,6.777-1.84 c1.043-0.661,2.184,0.289,2.184,0.289c-9.029,8.199-9.834,16.508-9.834,16.508v11.351h20.432V43.623 C41.486,36.955,49.037,32.04,50.295,22.709z" fill="url(#SVGID_10_)"/>
-<path d="M36.086,20.578l3.492-2.383C39.578,18.195,39.412,23.245,36.086,20.578z" fill="#FCFCFC" opacity="0.5"/>
+<path d="M36.086,20.578l3.492-2.383C39.578,18.195,39.412,23.245,36.086,20.578z" fill="#FCFCFC" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="37.832" x2="37.832" y1="16.939" y2="20.9847">
- <stop offset="0" style="stop-color:#292929"/>
- <stop offset="1" style="stop-color:#868686"/>
+<stop offset="0" style="stop-color:#292929"/>
+<stop offset="1" style="stop-color:#868686"/>
</linearGradient>
<path d="M36.086,20.223l3.492-2.243C39.578,17.98,38.832,21.864,36.086,20.223z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="27.7305" x2="51.1914" y1="56.4868" y2="56.4868">
- <stop offset="0" style="stop-color:#8C8E8F"/>
- <stop offset="0.6545" style="stop-color:#D9D9D9"/>
- <stop offset="1" style="stop-color:#AEB2B3"/>
+<stop offset="0" style="stop-color:#8C8E8F"/>
+<stop offset="0.6545" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#AEB2B3"/>
</linearGradient>
<path d="M51.191,56.484c0,0.84-0.674,1.516-1.516,1.516H29.129c-0.846,0-1.398-0.676-1.398-1.516l0,0 c0-0.835,0.553-1.511,1.398-1.511h20.547C50.518,54.973,51.191,55.649,51.191,56.484L51.191,56.484z" fill="url(#SVGID_12_)"/>
-<path d="M29.129,55.729h20.547c0.711,0,1.293,0.482,1.461,1.134c0.029-0.121,0.055-0.246,0.055-0.379 c0-0.835-0.674-1.511-1.516-1.511H29.129c-0.846,0-1.398,0.676-1.398,1.511c0,0.133,0.02,0.258,0.043,0.379 C27.916,56.211,28.416,55.729,29.129,55.729z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M29.129,55.729h20.547c0.711,0,1.293,0.482,1.461,1.134c0.029-0.121,0.055-0.246,0.055-0.379 c0-0.835-0.674-1.511-1.516-1.511H29.129c-0.846,0-1.398,0.676-1.398,1.511c0,0.133,0.02,0.258,0.043,0.379 C27.916,56.211,28.416,55.729,29.129,55.729z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="35.3633" x2="52.3587" y1="30.4033" y2="15.8073">
- <stop offset="0" style="stop-color:#8B8E8F"/>
- <stop offset="0.6545" style="stop-color:#C2C2C2"/>
- <stop offset="1" style="stop-color:#A0A9AB"/>
+<stop offset="0" style="stop-color:#8B8E8F"/>
+<stop offset="0.6545" style="stop-color:#C2C2C2"/>
+<stop offset="1" style="stop-color:#A0A9AB"/>
</linearGradient>
<path d="M47.227,15.23l-9.158,11.404c0.576,0.121,1.01,0.48,1.01,0.48c-0.455,0.413-0.875,0.826-1.287,1.241 l0.039,0.191l12.477-5.992C50.736,18.991,49.209,16.696,47.227,15.23z" fill="url(#SVGID_13_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="32.9014" x2="50.7963" y1="30.0332" y2="34.8763">
- <stop offset="0" style="stop-color:#8B8E8F"/>
- <stop offset="0.6545" style="stop-color:#C2C2C2"/>
- <stop offset="1" style="stop-color:#A0A9AB"/>
+<stop offset="0" style="stop-color:#8B8E8F"/>
+<stop offset="0.6545" style="stop-color:#C2C2C2"/>
+<stop offset="1" style="stop-color:#A0A9AB"/>
</linearGradient>
<path d="M50.295,22.709c0.125-0.939,0.111-1.787-0.006-2.556c-4.604,1.769-10.771,6.629-11.32,7.068 c-8.92,8.164-9.725,16.401-9.725,16.401v0.007l20.432-0.007C41.486,36.955,49.037,32.04,50.295,22.709z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="29.2441" x2="49.6758" y1="49.3013" y2="49.3013">
- <stop offset="0" style="stop-color:#8C8E8F"/>
- <stop offset="0.6545" style="stop-color:#D9D9D9"/>
- <stop offset="1" style="stop-color:#AEB2B3"/>
+<stop offset="0" style="stop-color:#8C8E8F"/>
+<stop offset="0.6545" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#AEB2B3"/>
</linearGradient>
<rect fill="url(#SVGID_15_)" height="11.344" width="20.432" x="29.244" y="43.629"/>
-<rect fill="#231F20" height="0.758" opacity="0.3" width="20.432" x="29.244" y="54.215"/>
-<rect fill="#FFFFFF" height="0.755" opacity="0.5" width="20.432" x="29.244" y="43.623"/>
-<rect fill="#FFFFFF" height="0.758" opacity="0.3" width="20.432" x="29.244" y="44.378"/>
-<rect fill="#FFFFFF" height="0.756" opacity="0.1" width="20.432" x="29.244" y="45.136"/>
-<rect fill="#231F20" height="0.755" opacity="0.2" width="20.432" x="29.244" y="53.459"/>
-<rect fill="#231F20" height="0.758" opacity="0.1" width="20.432" x="29.244" y="52.702"/>
+<rect fill="#231F20" fill-opacity="0.3" height="0.758" stroke-opacity="0.3" width="20.432" x="29.244" y="54.215"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="0.755" stroke-opacity="0.5" width="20.432" x="29.244" y="43.623"/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="0.758" stroke-opacity="0.3" width="20.432" x="29.244" y="44.378"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" height="0.756" stroke-opacity="0.1" width="20.432" x="29.244" y="45.136"/>
+<rect fill="#231F20" fill-opacity="0.2" height="0.755" stroke-opacity="0.2" width="20.432" x="29.244" y="53.459"/>
+<rect fill="#231F20" fill-opacity="0.1" height="0.758" stroke-opacity="0.1" width="20.432" x="29.244" y="52.702"/>
<path d="M45.961,37.882c-0.248,2.392,0.57,4.695,3.715,7.254v-1.513C47.199,41.606,46.166,39.75,45.961,37.882z" fill="#FFFFFF"/>
-<path d="M40.387,14.214c0,0,9.34,0.869,9.961,7.937c0.682-8.461-9.961-9.449-9.961-9.449l-4.635-0.864 c0,0-0.266,0.719,0.643,1.634L40.387,14.214z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M29.244,43.623v1.513c0,0,0.805-8.31,9.834-16.507c0,0-0.467-0.386-1.078-0.492 C29.988,35.989,29.244,43.623,29.244,43.623z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M37.756,15.949c-0.479-0.253-0.842-0.504-1.127-0.748 c-4.512,3.087-11.537,8.203-11.914,10.373c-0.041,0.241,0.035,0.587,0.195,0.978C26.248,23.936,33.705,18.678,37.756,15.949z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M29.244,43.623v0.755c0,0,0.805-8.31,9.834-16.508c0,0-0.195-0.157-0.488-0.296 C30.025,35.62,29.244,43.623,29.244,43.623z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M40.387,13.458c0,0,9.664,0.898,9.988,8.3c0.328-8.099-9.988-9.055-9.988-9.055l-4.635-0.864 c0,0-0.111,0.304,0.061,0.768L40.387,13.458z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M40.387,14.214c0,0,9.34,0.869,9.961,7.937c0.682-8.461-9.961-9.449-9.961-9.449l-4.635-0.864 c0,0-0.266,0.719,0.643,1.634L40.387,14.214z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M29.244,43.623v1.513c0,0,0.805-8.31,9.834-16.507c0,0-0.467-0.386-1.078-0.492 C29.988,35.989,29.244,43.623,29.244,43.623z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M37.756,15.949c-0.479-0.253-0.842-0.504-1.127-0.748 c-4.512,3.087-11.537,8.203-11.914,10.373c-0.041,0.241,0.035,0.587,0.195,0.978C26.248,23.936,33.705,18.678,37.756,15.949z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M29.244,43.623v0.755c0,0,0.805-8.31,9.834-16.508c0,0-0.195-0.157-0.488-0.296 C30.025,35.62,29.244,43.623,29.244,43.623z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M40.387,13.458c0,0,9.664,0.898,9.988,8.3c0.328-8.099-9.988-9.055-9.988-9.055l-4.635-0.864 c0,0-0.111,0.304,0.061,0.768L40.387,13.458z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<path d="M45.93,37.527c-0.115,2.25,0.777,4.435,3.746,6.851v-0.755C47.041,41.477,46.041,39.514,45.93,37.527z" fill="#FFFFFF"/>
-<path d="M37.756,15.194c-0.225-0.118-0.414-0.236-0.594-0.355 c-4.467,3.032-12.057,8.479-12.447,10.735c-0.025,0.153-0.004,0.343,0.051,0.56C25.564,23.66,33.521,18.045,37.756,15.194z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M37.756,15.194c-0.225-0.118-0.414-0.236-0.594-0.355 c-4.467,3.032-12.057,8.479-12.447,10.735c-0.025,0.153-0.004,0.343,0.051,0.56C25.564,23.66,33.521,18.045,37.756,15.194z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1.0123 0 0 1 -4.0079 0)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="33.5625" x2="53.7416" y1="42.9795" y2="41.7184">
- <stop offset="0" style="stop-color:#8B8E8F"/>
- <stop offset="0.6545" style="stop-color:#DEDEDE"/>
- <stop offset="1" style="stop-color:#A0A9AB"/>
+<stop offset="0" style="stop-color:#8B8E8F"/>
+<stop offset="0.6545" style="stop-color:#DEDEDE"/>
+<stop offset="1" style="stop-color:#A0A9AB"/>
</linearGradient>
<path d="M29.244,43.601h20.432c-2.48-2.009-3.729-3.006-9.957-3.006 C31.945,40.595,29.244,43.601,29.244,43.601z" fill="url(#SVGID_16_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_generic_audio.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_generic_audio.svg Thu May 27 13:10:59 2010 +0300
@@ -1,126 +1,128 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="280.6641" x2="306.9727" y1="-333.5469" y2="-333.5469">
- <stop offset="0" style="stop-color:#B4BDBF"/>
- <stop offset="0.2667" style="stop-color:#E5EBED"/>
- <stop offset="0.703" style="stop-color:#8D9699"/>
- <stop offset="1" style="stop-color:#B7BDBF"/>
+<stop offset="0" style="stop-color:#B4BDBF"/>
+<stop offset="0.2667" style="stop-color:#E5EBED"/>
+<stop offset="0.703" style="stop-color:#8D9699"/>
+<stop offset="1" style="stop-color:#B7BDBF"/>
</linearGradient>
<path d="M29.529,6.518H6.109c-0.795,0-1.445,0.643-1.445,1.431v42.626h26.309V7.948 C30.973,7.16,30.324,6.518,29.529,6.518z" fill="url(#SVGID_1_)"/>
-<path d="M29.529,6.518c0.795,0,1.443,0.643,1.443,1.431v42.626H4.664V7.948 c0-0.788,0.65-1.431,1.445-1.431L29.529,6.518 M29.529,7.651H6.109c-0.168,0-0.313,0.136-0.313,0.297v41.489h24.042V7.948 C29.839,7.787,29.696,7.651,29.529,7.651L29.529,7.651z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M29.529,6.518c0.795,0,1.443,0.643,1.443,1.431v42.626H4.664V7.948 c0-0.788,0.65-1.431,1.445-1.431L29.529,6.518 M29.529,7.651H6.109c-0.168,0-0.313,0.136-0.313,0.297v41.489h24.042V7.948 C29.839,7.787,29.696,7.651,29.529,7.651L29.529,7.651z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="278.3945" x2="309.0776" y1="-352.5684" y2="-352.5684">
- <stop offset="0" style="stop-color:#3C94DE"/>
- <stop offset="0.2545" style="stop-color:#96E9FA"/>
- <stop offset="0.7091" style="stop-color:#005BCC"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#3C94DE"/>
+<stop offset="0.2545" style="stop-color:#96E9FA"/>
+<stop offset="0.7091" style="stop-color:#005BCC"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="6.012" width="30.848" x="2.395" y="44.563"/>
-<rect enable-background="new " fill="#FFFFFF" height="1.129" opacity="0.4" width="30.848" x="2.395" y="44.563"/>
-<rect enable-background="new " height="1.129" opacity="0.15" width="26.309" x="4.664" y="43.436"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.129" stroke-opacity="0.4" width="30.848" x="2.395" y="44.563"/>
+<rect fill-opacity="0.15" height="1.129" stroke-opacity="0.15" width="26.309" x="4.664" y="43.436"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="293.8184" x2="293.8184" y1="-341.9766" y2="-320.7682">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#A8A8A8"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A8A8A8"/>
</linearGradient>
<path d="M17.819,36.977c-5.853,0-10.62-4.765-10.62-10.618c0-5.854,4.768-10.618,10.62-10.618 c5.854,0,10.618,4.764,10.618,10.618C28.438,32.212,23.674,36.977,17.819,36.977L17.819,36.977z" fill="url(#SVGID_3_)"/>
<radialGradient cx="903.1143" cy="-142.9111" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="16.3333">
- <stop offset="0" style="stop-color:#636363"/>
- <stop offset="0.3333" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.3333" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</radialGradient>
<circle cx="17.821" cy="26.358" fill="url(#SVGID_4_)" r="9.999"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="293.8193" x2="293.8193" y1="-338.9326" y2="-323.6798">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#313131"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#313131"/>
</linearGradient>
<circle cx="17.819" cy="26.358" fill="url(#SVGID_5_)" r="7.788"/>
<radialGradient cx="903.0488" cy="-143.4668" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="12.2251">
- <stop offset="0" style="stop-color:#B4B4B4"/>
- <stop offset="1" style="stop-color:#696969"/>
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#696969"/>
</radialGradient>
-<path d="M24.088,30.964l-2.57-2.281h-6.926l-2.948,2.406 c1.424,1.854,3.657,3.056,6.176,3.056C20.396,34.145,22.671,32.889,24.088,30.964z" enable-background="new " fill="url(#SVGID_6_)" opacity="0.5"/>
-<path d="M22.866,27.604c0,2.788-2.26,5.048-5.047,5.048 c-2.787,0-5.044-2.26-5.044-5.048c0-2.785,2.257-5.046,5.044-5.046C20.606,22.558,22.866,24.819,22.866,27.604z" enable-background="new " opacity="0.15"/>
+<path d="M24.088,30.964l-2.57-2.281h-6.926l-2.948,2.406 c1.424,1.854,3.657,3.056,6.176,3.056C20.396,34.145,22.671,32.889,24.088,30.964z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M22.866,27.604c0,2.788-2.26,5.048-5.047,5.048 c-2.787,0-5.044-2.26-5.044-5.048c0-2.785,2.257-5.046,5.044-5.046C20.606,22.558,22.866,24.819,22.866,27.604z" fill-opacity="0.15" stroke-opacity="0.15"/>
<radialGradient cx="903.1455" cy="-140.748" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="9.2803">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
<circle cx="17.821" cy="26.358" fill="url(#SVGID_7_)" r="5.045"/>
-<circle cx="17.822" cy="26.358" enable-background="new " fill="none" opacity="0.15" r="4.385" stroke="#EBEBEB"/>
-<path d="M30.973,50.574h2.27v-4.883v-1.129h-2.27v-1.129V12.705h-8.271 c-1.479,0-2.683,1.198-2.683,2.669v35.2H30.973z" enable-background="new " opacity="0.35"/>
+<circle cx="17.822" cy="26.358" fill="none" fill-opacity="0.15" r="4.385" stroke="#EBEBEB" stroke-opacity="0.15"/>
+<path d="M30.973,50.574h2.27v-4.883v-1.129h-2.27v-1.129V12.705h-8.271 c-1.479,0-2.683,1.198-2.683,2.669v35.2H30.973z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="297.2568" x2="323.5664" y1="-340.9707" y2="-340.9707">
- <stop offset="0" style="stop-color:#B4BDBF"/>
- <stop offset="0.2667" style="stop-color:#E5EBED"/>
- <stop offset="0.703" style="stop-color:#8D9699"/>
- <stop offset="1" style="stop-color:#B7BDBF"/>
+<stop offset="0" style="stop-color:#B4BDBF"/>
+<stop offset="0.2667" style="stop-color:#E5EBED"/>
+<stop offset="0.703" style="stop-color:#8D9699"/>
+<stop offset="1" style="stop-color:#B7BDBF"/>
</linearGradient>
<path d="M46.122,13.942h-23.42c-0.796,0-1.445,0.644-1.445,1.432v42.625h26.31V15.374 C47.564,14.586,46.918,13.942,46.122,13.942z" fill="url(#SVGID_8_)"/>
-<path d="M46.122,13.942c0.796,0,1.442,0.644,1.442,1.432v42.625H21.257V15.374 c0-0.788,0.649-1.432,1.445-1.432H46.122 M46.122,15.076h-23.42c-0.169,0-0.312,0.137-0.312,0.298v41.489h24.042V15.374 C46.432,15.213,46.289,15.076,46.122,15.076L46.122,15.076z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M46.122,13.942c0.796,0,1.442,0.644,1.442,1.432v42.625H21.257V15.374 c0-0.788,0.649-1.432,1.445-1.432H46.122 M46.122,15.076h-23.42c-0.169,0-0.312,0.137-0.312,0.298v41.489h24.042V15.374 C46.432,15.213,46.289,15.076,46.122,15.076L46.122,15.076z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="294.9863" x2="325.6694" y1="-359.9941" y2="-359.9941">
- <stop offset="0" style="stop-color:#3C94DE"/>
- <stop offset="0.2545" style="stop-color:#96E9FA"/>
- <stop offset="0.7091" style="stop-color:#005BCC"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#3C94DE"/>
+<stop offset="0.2545" style="stop-color:#96E9FA"/>
+<stop offset="0.7091" style="stop-color:#005BCC"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="6.01" width="30.849" x="18.986" y="51.989"/>
-<rect enable-background="new " fill="#FFFFFF" height="1.129" opacity="0.4" width="30.849" x="18.986" y="51.989"/>
-<rect enable-background="new " height="1.13" opacity="0.15" width="26.31" x="21.257" y="50.859"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.129" stroke-opacity="0.4" width="30.849" x="18.986" y="51.989"/>
+<rect fill-opacity="0.15" height="1.13" stroke-opacity="0.15" width="26.31" x="21.257" y="50.859"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="310.4102" x2="310.4102" y1="-349.4004" y2="-328.192">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#A8A8A8"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A8A8A8"/>
</linearGradient>
<path d="M34.412,44.4c-5.854,0-10.62-4.764-10.62-10.616c0-5.854,4.767-10.619,10.62-10.619 c5.854,0,10.617,4.765,10.617,10.619C45.029,39.639,40.268,44.4,34.412,44.4L34.412,44.4z" fill="url(#SVGID_10_)"/>
<radialGradient cx="930.2168" cy="-155.041" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="16.333">
- <stop offset="0" style="stop-color:#636363"/>
- <stop offset="0.3333" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.3333" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</radialGradient>
<circle cx="34.413" cy="33.784" fill="url(#SVGID_11_)" r="9.999"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="310.4121" x2="310.4121" y1="-346.3584" y2="-331.1061">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#313131"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#313131"/>
</linearGradient>
<circle cx="34.412" cy="33.784" fill="url(#SVGID_12_)" r="7.788"/>
<radialGradient cx="930.1533" cy="-155.5962" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="12.2251">
- <stop offset="0" style="stop-color:#B4B4B4"/>
- <stop offset="1" style="stop-color:#696969"/>
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#696969"/>
</radialGradient>
-<path d="M40.682,38.389l-2.57-2.279h-6.926l-2.949,2.406 c1.425,1.854,3.658,3.055,6.176,3.055C36.988,41.57,39.264,40.314,40.682,38.389z" enable-background="new " fill="url(#SVGID_13_)" opacity="0.5"/>
-<circle cx="34.413" cy="35.03" enable-background="new " opacity="0.15" r="5.046"/>
+<path d="M40.682,38.389l-2.57-2.279h-6.926l-2.949,2.406 c1.425,1.854,3.658,3.055,6.176,3.055C36.988,41.57,39.264,40.314,40.682,38.389z" fill="url(#SVGID_13_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<circle cx="34.413" cy="35.03" fill-opacity="0.15" r="5.046" stroke-opacity="0.15"/>
<radialGradient cx="930.249" cy="-152.8774" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="9.28">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
<circle cx="34.413" cy="33.784" fill="url(#SVGID_14_)" r="5.046"/>
-<circle cx="34.414" cy="33.784" enable-background="new " fill="none" opacity="0.15" r="4.385" stroke="#EBEBEB"/>
+<circle cx="34.414" cy="33.784" fill="none" fill-opacity="0.15" r="4.385" stroke="#EBEBEB" stroke-opacity="0.15"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="329.0576" x2="329.0576" y1="-307.5635" y2="-334.9076">
- <stop offset="0.1576" style="stop-color:#36B5FF"/>
- <stop offset="0.8242" style="stop-color:#1B66D8"/>
- <stop offset="1" style="stop-color:#2183E0"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="0.1576" style="stop-color:#36B5FF"/>
+<stop offset="0.8242" style="stop-color:#1B66D8"/>
+<stop offset="1" style="stop-color:#2183E0"/>
</linearGradient>
<path d="M52.841,1.999L48.51,4.772c2.588,3.613,3.951,7.799,3.951,12.575c0,4.217-1.031,8.032-3.092,11.386 l4.419,2.49c0.126-0.201,3.817-5.979,3.817-13.875C57.605,11.46,56.031,6.457,52.841,1.999z" fill="url(#SVGID_15_)"/>
-<path d="M47.822,15.064c0-0.788-0.647-1.431-1.443-1.431h-4.771 c0.306,1.081,0.44,2.276,0.44,3.714c0,2.583-0.452,4.328-1.608,6.229l-0.612,1.002l6.471,3.647l0.573-0.933 c0.206-0.339,0.563-0.971,0.952-1.842L47.822,15.064L47.822,15.064z" enable-background="new " opacity="0.35"/>
+<path d="M47.822,15.064c0-0.788-0.647-1.431-1.443-1.431h-4.771 c0.306,1.081,0.44,2.276,0.44,3.714c0,2.583-0.452,4.328-1.608,6.229l-0.612,1.002l6.471,3.647l0.573-0.933 c0.206-0.339,0.563-0.971,0.952-1.842L47.822,15.064L47.822,15.064z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="320.6797" x2="320.6797" y1="-312.7827" y2="-330.3271">
- <stop offset="0.1576" style="stop-color:#36B5FF"/>
- <stop offset="0.8242" style="stop-color:#1B66D8"/>
- <stop offset="1" style="stop-color:#2183E0"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="0.1576" style="stop-color:#36B5FF"/>
+<stop offset="0.8242" style="stop-color:#1B66D8"/>
+<stop offset="1" style="stop-color:#2183E0"/>
</linearGradient>
<path d="M45.258,6.974l-4.3,2.793c1.66,2.317,2.226,4.52,2.226,7.581c0,2.683-0.473,4.681-1.775,6.819 l4.494,2.533C47.691,23.772,50.796,15.748,45.258,6.974z" fill="url(#SVGID_16_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="329.0576" x2="329.0576" y1="-306.832" y2="-336.1659">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.2545" style="stop-color:#4F88BD"/>
- <stop offset="0.7333" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#4F88BD"/>
+<stop offset="0.7333" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M52.674,2.851c2.896,4.244,4.305,8.992,4.305,14.497c0,6.409-2.488,11.396-3.414,13.028 l-3.328-1.875c1.892-3.304,2.853-7.053,2.853-11.153c0-4.587-1.243-8.755-3.694-12.399L52.674,2.851 M52.841,1.999L48.51,4.772 c2.588,3.613,3.951,7.799,3.951,12.575c0,4.217-1.031,8.032-3.092,11.386l4.419,2.49c0.126-0.201,3.817-5.979,3.817-13.875 C57.605,11.46,56.031,6.457,52.841,1.999L52.841,1.999z" fill="url(#SVGID_17_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="320.6797" x2="320.6797" y1="-312.3647" y2="-331.4919">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.2545" style="stop-color:#4F88BD"/>
- <stop offset="0.7333" style="stop-color:#0055A3"/>
- <stop offset="1" style="stop-color:#64AEFB"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#4F88BD"/>
+<stop offset="0.7333" style="stop-color:#0055A3"/>
+<stop offset="1" style="stop-color:#64AEFB"/>
</linearGradient>
<path d="M45.061,7.849c4.98,8.402,1.881,15.669,0.608,18.001l-3.401-1.917 c1.09-1.979,1.543-3.935,1.543-6.585c0-3.063-0.578-5.261-1.975-7.405L45.061,7.849 M45.258,6.974l-4.3,2.793 c1.66,2.317,2.226,4.52,2.226,7.581c0,2.683-0.473,4.681-1.775,6.819l4.494,2.533C47.691,23.772,50.796,15.748,45.258,6.974 L45.258,6.974z" fill="url(#SVGID_18_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_generic_bluetooth.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_generic_bluetooth.svg Thu May 27 13:10:59 2010 +0300
@@ -1,31 +1,31 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<rect fill="none" height="59.999" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="283.0508" x2="328.9473" y1="-335" y2="-335">
- <stop offset="0" style="stop-color:#B4BDBF"/>
- <stop offset="0.2667" style="stop-color:#E5EBED"/>
- <stop offset="0.703" style="stop-color:#8D9699"/>
- <stop offset="1" style="stop-color:#B7BDBF"/>
+<stop offset="0" style="stop-color:#B4BDBF"/>
+<stop offset="0.2667" style="stop-color:#E5EBED"/>
+<stop offset="0.703" style="stop-color:#8D9699"/>
+<stop offset="1" style="stop-color:#B7BDBF"/>
</linearGradient>
<path d="M51.18,3H8.822C7.846,3,7.051,3.788,7.051,4.754V57h45.896V4.754C52.947,3.788,52.152,3,51.18,3z" fill="url(#SVGID_1_)"/>
-<path d="M51.18,3c0.973,0,1.769,0.788,1.769,1.754V57H7.051V4.754C7.051,3.788,7.846,3,8.822,3H51.18 M51.18,4.389H8.822c-0.207,0-0.382,0.168-0.382,0.365v50.854h43.119V4.754C51.559,4.557,51.385,4.389,51.18,4.389L51.18,4.389z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M51.18,3c0.973,0,1.769,0.788,1.769,1.754V57H7.051V4.754C7.051,3.788,7.846,3,8.822,3H51.18 M51.18,4.389H8.822c-0.207,0-0.382,0.168-0.382,0.365v50.854h43.119V4.754C51.559,4.557,51.385,4.389,51.18,4.389L51.18,4.389z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="280.2695" x2="331.4557" y1="-358.3159" y2="-358.3159">
- <stop offset="0" style="stop-color:#3C94DE"/>
- <stop offset="0.2545" style="stop-color:#96E9FA"/>
- <stop offset="0.7091" style="stop-color:#005BCC"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#3C94DE"/>
+<stop offset="0.2545" style="stop-color:#96E9FA"/>
+<stop offset="0.7091" style="stop-color:#005BCC"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="7.368" width="51.46" x="4.27" y="49.632"/>
-<rect enable-background="new " fill="#FFFFFF" height="1.384" opacity="0.4" width="51.46" x="4.27" y="49.632"/>
-<rect enable-background="new " height="1.384" opacity="0.15" width="45.896" x="7.051" y="48.248"/>
-<path d="M38.482,21.464l-9.881-10.119v13.33l-5.431-5.558l-1.983,2.022 l6.826,7.002l-6.826,6.998l1.979,2.021l5.436-5.556v13.33l9.882-10.113l-6.526-6.679L38.482,21.464z M34.537,21.484l-3.156,3.227 l-0.004-6.457L34.537,21.484z M34.537,34.801l-3.16,3.223l0.004-6.453L34.537,34.801z" enable-background="new " fill="#FFFFFF" opacity="0.75"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.384" stroke-opacity="0.4" width="51.46" x="4.27" y="49.632"/>
+<rect fill-opacity="0.15" height="1.384" stroke-opacity="0.15" width="45.896" x="7.051" y="48.248"/>
+<path d="M38.482,21.464l-9.881-10.119v13.33l-5.431-5.558l-1.983,2.022 l6.826,7.002l-6.826,6.998l1.979,2.021l5.436-5.556v13.33l9.882-10.113l-6.526-6.679L38.482,21.464z M34.537,21.484l-3.156,3.227 l-0.004-6.457L34.537,21.484z M34.537,34.801l-3.16,3.223l0.004-6.453L34.537,34.801z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="305.8359" x2="305.8359" y1="-348.332" y2="-316.7938">
- <stop offset="0" style="stop-color:#2183E0"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#2183E0"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M38.482,19.863l-9.88-10.119v13.331l-5.431-5.559l-1.983,2.024l6.826,7l-6.826,6.998l1.979,2.021 l5.436-5.555v13.328l9.881-10.111l-6.525-6.681L38.482,19.863z M34.537,19.885l-3.156,3.226l-0.004-6.456L34.537,19.885z M34.537,33.201l-3.16,3.222l0.004-6.454L34.537,33.201z" fill="url(#SVGID_3_)"/>
<rect fill="none" height="59.999" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_group_feeds.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_group_feeds.svg Thu May 27 13:10:59 2010 +0300
@@ -1,220 +1,225 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-70.4854" cy="-5.0225" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="12.778">
- <stop offset="0.2" style="stop-color:#FFA98E"/>
- <stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="0" style="stop-color:#FFA98E"/>
+<stop offset="0.2" style="stop-color:#FFA98E"/>
+<stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="1" style="stop-color:#D45D36"/>
</radialGradient>
<path d="M48.205,37.917c-1.123-0.489-1.088-2.883-0.625-3.606c0.08-0.126,0.152-0.253,0.23-0.381h-9.4 c0.076,0.128,0.148,0.255,0.23,0.381c0.465,0.724,0.5,3.117-0.623,3.606c-1.125,0.487,5.227,4.738,5.227,4.738 S49.328,38.404,48.205,37.917z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="43.1104" x2="43.1104" y1="37.4727" y2="47.3145">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M54.961,40.41c-1.182-0.614-7.041-2.667-7.15-2.795l-4.477,3.722l-4.811-3.864 c-0.133,0.198-5.924,2.227-7.264,2.938c-1.535,0.815-4.039,2.687-4.039,6.904H59C59,43.097,56.145,41.025,54.961,40.41z" fill="url(#SVGID_2_)"/>
-<polygon fill="#020202" opacity="0.3" points="37.43,37.952 43.334,42.655 48.879,38.047 47.811,37.615 43.334,41.337 38.523,37.473 "/>
+<polygon fill="#020202" fill-opacity="0.3" points="37.43,37.952 43.334,42.655 48.879,38.047 47.811,37.615 43.334,41.337 38.523,37.473 " stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="28.0684" x2="37.707" y1="42.7466" y2="42.7466">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<path d="M37.707,38.696c0,0-8.424,2.199-8.424,8.1c0,0-1.205,0.002-1.215,0 C28.068,43.167,30.902,40.347,37.707,38.696z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="48.4043" x2="58.041" y1="42.6099" y2="42.6099">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<path d="M48.404,38.56c0,0,8.424,2.199,8.424,8.101c0,0,1.203,0,1.213,0 C58.041,43.029,55.209,40.211,48.404,38.56z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="43.1553" x2="43.1553" y1="43.0781" y2="37.6438">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="43.334,42.655 37.428,37.952 37.086,38.1 43.334,43.078 49.225,38.182 48.881,38.042 "/>
<radialGradient cx="-69.8633" cy="-28.6533" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="17.154">
- <stop offset="0" style="stop-color:#FFE2D9"/>
- <stop offset="0.5091" style="stop-color:#FFC6B3"/>
- <stop offset="0.7636" style="stop-color:#FFA98E"/>
- <stop offset="1" style="stop-color:#E88160"/>
+<stop offset="0" style="stop-color:#FFE2D9"/>
+<stop offset="0.5091" style="stop-color:#FFC6B3"/>
+<stop offset="0.7636" style="stop-color:#FFA98E"/>
+<stop offset="1" style="stop-color:#E88160"/>
</radialGradient>
<path d="M50.906,26.909c-0.039-0.017-0.084-0.02-0.125-0.033v-0.002c-0.008-0.002-0.014-0.002-0.025-0.005 c-0.061-0.017-0.123-0.029-0.186-0.034c-7.85-1.364-11.451-5.712-11.723-4.563c-0.217,0.918-2.416,2.9-3.568,3.886 c0.008,0.047,0.016,0.086,0.023,0.129c0,0,0.043,0.203,0.129,0.548c-0.092,0.01-0.182,0.029-0.268,0.066 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.428,0.957,0.951,1.985,1.594,3.013c1.074,1.279,2.717,2.775,4.531,2.775c2.197,0,3.541-1.204,4.467-2.413 c0.023-0.053,0.047-0.101,0.074-0.141c0.684-1.071,1.24-2.146,1.689-3.144c0.717,0.248,1.637-0.419,2.094-1.547 C51.838,28.452,51.633,27.236,50.906,26.909z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="40.2764" x2="47.0569" y1="37.6001" y2="30.8725">
- <stop offset="0" style="stop-color:#FFC6B3"/>
- <stop offset="1" style="stop-color:#FFA98E"/>
+<stop offset="0" style="stop-color:#FFC6B3"/>
+<stop offset="1" style="stop-color:#FFA98E"/>
</linearGradient>
<path d="M42.719,36.249c-1.34,0-2.686-0.624-3.68-1.562c1.051,1.103,2.463,2.177,4,2.177 c2.197,0,3.541-1.204,4.467-2.413c0.023-0.053,0.047-0.101,0.074-0.141c0.684-1.071,1.24-2.146,1.689-3.144 C46.77,35.533,44.914,36.249,42.719,36.249z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="42.9766" x2="42.9766" y1="16.1133" y2="26.0988">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M42.818,15.967c-2.721,0-4.029,1.238-5.039,2.53c-1.645,0.254-4.246,1.762-2.408,8.359 c1.152-0.988,3.26-3.666,3.477-4.584c0.273-1.16,3.936,3.278,11.934,4.602c0.094-0.368,0.137-0.587,0.137-0.587 C52.172,20.654,49.439,16.188,42.818,15.967z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="46.3916" x2="37.3443" y1="25.6675" y2="20.2965">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3636" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3636" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M38.855,21.734c0,0,3.916,5.142,11.869,5.133C50.725,26.867,46.98,26.279,38.855,21.734z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="36.5283" x2="36.6077" y1="19.2515" y2="24.9963">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M37.916,18.881c0,0-3.834,0.23-2.412,6.725C35.504,25.605,35.037,21.157,37.916,18.881z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="44.2432" x2="43.9615" y1="16.9707" y2="19.5749">
- <stop offset="0" style="stop-color:#A87C4F"/>
- <stop offset="1" style="stop-color:#632F00"/>
+<stop offset="0" style="stop-color:#A87C4F"/>
+<stop offset="1" style="stop-color:#632F00"/>
</linearGradient>
<path d="M44.678,19.781c-1.785-0.255-4.803-1.836-5.986-1.272c0,0,3.873-4.417,10.705,0.612 C49.396,19.121,47.77,20.221,44.678,19.781z" fill="url(#SVGID_11_)"/>
<radialGradient cx="-98.5264" cy="-5.0225" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="12.778">
- <stop offset="0.2" style="stop-color:#FFA98E"/>
- <stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="0" style="stop-color:#FFA98E"/>
+<stop offset="0.2" style="stop-color:#FFA98E"/>
+<stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="1" style="stop-color:#D45D36"/>
</radialGradient>
<path d="M21.984,37.917c-1.125-0.489-1.088-2.883-0.625-3.606c0.08-0.126,0.154-0.253,0.234-0.381h-9.402 c0.076,0.128,0.15,0.255,0.23,0.381c0.465,0.724,0.498,3.117-0.625,3.606c-1.125,0.487,5.227,4.738,5.227,4.738 S23.109,38.404,21.984,37.917z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="16.8906" x2="16.8906" y1="37.4727" y2="47.3145">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M28.742,40.41c-1.182-0.614-7.041-2.667-7.15-2.795l-4.477,3.722l-4.811-3.864 c-0.133,0.198-5.926,2.227-7.266,2.938C3.506,41.226,1,43.097,1,47.314h31.781C32.781,43.097,29.924,41.025,28.742,40.41z" fill="url(#SVGID_13_)"/>
-<polygon fill="#020202" opacity="0.3" points="11.209,37.952 17.115,42.655 22.66,38.047 21.592,37.615 17.115,41.337 12.305,37.473 "/>
+<polygon fill="#020202" fill-opacity="0.3" points="11.209,37.952 17.115,42.655 22.66,38.047 21.592,37.615 17.115,41.337 12.305,37.473 " stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="1.8496" x2="11.4883" y1="42.7466" y2="42.7466">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<path d="M11.488,38.696c0,0-8.426,2.199-8.426,8.1c0,0-1.203,0.002-1.213,0 C1.85,43.167,4.682,40.347,11.488,38.696z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.1836" x2="31.8223" y1="42.6099" y2="42.6099">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<path d="M22.184,38.56c0,0,8.424,2.199,8.424,8.101c0,0,1.205,0,1.215,0 C31.822,43.029,28.99,40.211,22.184,38.56z" fill="url(#SVGID_15_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="16.9346" x2="16.9346" y1="43.0781" y2="37.6438">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<polygon fill="url(#SVGID_16_)" points="17.115,42.655 11.209,37.952 10.865,38.1 17.115,43.078 23.004,38.182 22.662,38.042 "/>
<radialGradient cx="-97.9023" cy="-28.6533" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_17_" r="17.154">
- <stop offset="0" style="stop-color:#FFE2D9"/>
- <stop offset="0.5091" style="stop-color:#FFC6B3"/>
- <stop offset="0.7636" style="stop-color:#FFA98E"/>
- <stop offset="1" style="stop-color:#E88160"/>
+<stop offset="0" style="stop-color:#FFE2D9"/>
+<stop offset="0.5091" style="stop-color:#FFC6B3"/>
+<stop offset="0.7636" style="stop-color:#FFA98E"/>
+<stop offset="1" style="stop-color:#E88160"/>
</radialGradient>
<path d="M24.686,26.909c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005 c-0.061-0.017-0.123-0.029-0.188-0.034c-7.848-1.364-11.451-5.712-11.721-4.563c-0.217,0.918-2.416,2.9-3.57,3.886 c0.01,0.047,0.016,0.086,0.025,0.129c0,0,0.041,0.203,0.127,0.548c-0.09,0.01-0.18,0.029-0.268,0.066 c-0.73,0.308-0.963,1.511-0.512,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.045-0.019,0.084-0.051,0.123-0.078 c0.428,0.957,0.951,1.985,1.59,3.013c1.076,1.279,2.719,2.775,4.535,2.775c2.197,0,3.541-1.204,4.467-2.413 c0.023-0.053,0.045-0.101,0.072-0.141c0.684-1.071,1.242-2.146,1.689-3.144c0.719,0.248,1.637-0.419,2.096-1.547 C25.617,28.452,25.414,27.236,24.686,26.909z" fill="url(#SVGID_17_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="14.0576" x2="20.8372" y1="37.5996" y2="30.873">
- <stop offset="0" style="stop-color:#FFC6B3"/>
- <stop offset="1" style="stop-color:#FFA98E"/>
+<stop offset="0" style="stop-color:#FFC6B3"/>
+<stop offset="1" style="stop-color:#FFA98E"/>
</linearGradient>
<path d="M16.5,36.249c-1.34,0-2.688-0.624-3.68-1.562c1.051,1.103,2.463,2.177,4,2.177 c2.197,0,3.541-1.204,4.467-2.413c0.023-0.053,0.045-0.101,0.072-0.141c0.684-1.071,1.242-2.146,1.689-3.144 C20.551,35.533,18.695,36.249,16.5,36.249z" fill="url(#SVGID_18_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="16.7578" x2="16.7578" y1="16.1133" y2="26.0988">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M16.6,15.967c-2.721,0-4.031,1.238-5.039,2.53c-1.645,0.254-4.25,1.762-2.408,8.359 c1.15-0.988,3.26-3.666,3.477-4.584c0.273-1.16,3.936,3.278,11.934,4.602c0.092-0.368,0.137-0.587,0.137-0.587 C25.955,20.654,23.221,16.188,16.6,15.967z" fill="url(#SVGID_19_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="20.1719" x2="11.1239" y1="25.6675" y2="20.2961">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3636" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3636" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M12.637,21.734c0,0,3.914,5.142,11.869,5.133C24.506,26.867,20.762,26.279,12.637,21.734z" fill="url(#SVGID_20_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="10.3096" x2="10.389" y1="19.2515" y2="24.9963">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M11.697,18.881c0,0-3.834,0.23-2.412,6.725C9.285,25.605,8.818,21.157,11.697,18.881z" fill="url(#SVGID_21_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="18.0244" x2="17.7427" y1="16.9707" y2="19.5754">
- <stop offset="0" style="stop-color:#A87C4F"/>
- <stop offset="1" style="stop-color:#632F00"/>
+<stop offset="0" style="stop-color:#A87C4F"/>
+<stop offset="1" style="stop-color:#632F00"/>
</linearGradient>
<path d="M18.457,19.781c-1.783-0.255-4.803-1.836-5.984-1.272c0,0,3.873-4.417,10.705,0.612 C23.178,19.121,21.549,20.221,18.457,19.781z" fill="url(#SVGID_22_)"/>
-<path d="M47.916,41.694c-1.092-0.569-4.482-1.827-7.205-2.838l-1.533-0.569l-0.273-0.11l-0.359-0.139 l-0.686-0.275l-0.424,0.186c0,0-0.006,0.002-0.008,0.004h-0.002c-1.777,0.695-5.18,1.935-6.166,2.458 c-0.385,0.206-0.832,0.477-1.283,0.835c-0.475-0.392-0.914-0.667-1.234-0.835c-0.85-0.439-4.098-1.619-5.91-2.299l-0.17-0.069 l-0.004,0.005l-0.752-0.304l-0.684,0.299c-0.668,0.263-1.492,0.576-2.373,0.911l-0.08,0.031c-2.607,0.99-5.561,2.113-6.693,2.715 c-2.535,1.346-4.359,3.248-5.438,5.615h20.582h5.561h20.494C51.592,43.797,48.686,42.094,47.916,41.694z" fill="#231F20" opacity="0.15"/>
-<path d="M17.193,22.325c-1.205,1.026-1.531,3.083-0.748,5.124c0.732,1.925,2.256,3.218,3.783,3.218 h0.002c0.23,0.475,0.467,0.945,0.713,1.408h-0.07l0.584,0.965c0,0,0.15,0.248,0.33,0.545c0.486-0.827,0.914-1.646,1.262-2.418 c0.719,0.248,1.637-0.419,2.096-1.547c0.473-1.168,0.27-2.384-0.459-2.711c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002 c-0.012-0.002-0.016-0.002-0.025-0.005c-0.061-0.017-0.123-0.029-0.188-0.034c-0.014-0.002-0.027-0.006-0.041-0.008 c-0.029-0.006-0.07-0.015-0.105-0.023c0.121,0.023,0.232,0.049,0.359,0.07c0.092-0.368,0.137-0.587,0.137-0.587 c1.256-5.633-1.479-10.1-8.1-10.32c-0.012,0-0.021,0.003-0.033,0.003C16.395,17.765,16.594,19.881,17.193,22.325z" fill="#231F20" opacity="0.15"/>
-<path d="M37.779,18.497c-1.645,0.254-4.246,1.76-2.41,8.354c-0.068,0.01-0.139,0.023-0.205,0.051 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.359,0.799,0.787,1.648,1.289,2.504c0.564-0.949,1.1-1.934,1.586-2.947c1.395-0.166,2.754-1.375,3.457-3.109 c0.801-1.979,0.545-4.035-0.584-5.104c0.504-2.285,0.584-4.463,0.252-6.444c-0.033-0.002-0.063-0.006-0.096-0.009 C40.098,15.967,38.789,17.205,37.779,18.497z M35.381,26.849c0.014-0.014,0.029-0.027,0.043-0.041 c0.002,0.01,0.004,0.018,0.008,0.027C35.414,26.837,35.396,26.845,35.381,26.849z M39.174,22.101L39.174,22.101 c-0.02-0.004-0.047-0.015-0.066-0.018C39.127,22.086,39.152,22.097,39.174,22.101z" fill="#231F20" opacity="0.15"/>
-<path d="M47.621,42.258c-1.053-0.549-4.424-1.8-7.133-2.807l-1.549-0.574l-0.264-0.108l-0.369-0.142 l-1.045-0.418c-0.033-0.047-0.057-0.107-0.088-0.16c-1.826,0.708-4.971,1.86-5.914,2.361c-0.385,0.206-0.832,0.477-1.283,0.835 c-0.475-0.392-0.914-0.667-1.234-0.835c-0.85-0.439-4.098-1.619-5.91-2.299l-0.092-0.037l-1.285,0.56 c-0.689,0.271-1.549,0.597-2.461,0.943c-2.59,0.986-5.525,2.101-6.619,2.681c-2.309,1.226-4,2.936-5.035,5.057h19.881h5.561h19.785 C50.957,44.163,48.33,42.626,47.621,42.258z" fill="#231F20" opacity="0.3"/>
-<path d="M17.037,27.223c0.641,1.68,1.924,2.807,3.191,2.807c0.131,0,0.264-0.012,0.391-0.037 c0.432,0.934,0.9,1.844,1.398,2.719H22l0.146,0.241c0.334-0.609,0.645-1.212,0.902-1.785c0.719,0.248,1.637-0.419,2.096-1.547 c0.473-1.168,0.27-2.384-0.459-2.711c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005 c-0.061-0.017-0.123-0.029-0.188-0.034c-0.014-0.002-0.027-0.006-0.041-0.008c-0.029-0.006-0.07-0.015-0.105-0.023 c0.121,0.023,0.232,0.049,0.359,0.07c0.092-0.368,0.137-0.587,0.137-0.587c1.215-5.457-1.322-9.807-7.5-10.273 c-0.182,1.82,0.049,4.01,0.717,6.578C16.682,23.301,16.289,25.27,17.037,27.223z" fill="#231F20" opacity="0.3"/>
-<path d="M37.779,18.497c-1.645,0.254-4.246,1.76-2.41,8.354c-0.068,0.01-0.139,0.023-0.205,0.051 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.268,0.6,0.576,1.224,0.924,1.861c0.551-0.946,1.072-1.918,1.541-2.922c0.025,0.002,0.055,0.002,0.082,0.002 c1.25,0,2.533-1.101,3.195-2.734c0.773-1.902,0.453-3.844-0.701-4.617c0.053-0.229,0.078-0.355,0.078-0.355 c0.502-2.247,0.574-4.381,0.238-6.312C39.926,16.158,38.717,17.299,37.779,18.497z M35.381,26.849 c0.014-0.014,0.029-0.027,0.043-0.041c0.002,0.01,0.004,0.018,0.008,0.027C35.414,26.837,35.396,26.845,35.381,26.849z M39.174,22.101L39.174,22.101c-0.02-0.004-0.047-0.015-0.066-0.018C39.127,22.086,39.152,22.097,39.174,22.101z" fill="#231F20" opacity="0.3"/>
+<path d="M47.916,41.694c-1.092-0.569-4.482-1.827-7.205-2.838l-1.533-0.569l-0.273-0.11l-0.359-0.139 l-0.686-0.275l-0.424,0.186c0,0-0.006,0.002-0.008,0.004h-0.002c-1.777,0.695-5.18,1.935-6.166,2.458 c-0.385,0.206-0.832,0.477-1.283,0.835c-0.475-0.392-0.914-0.667-1.234-0.835c-0.85-0.439-4.098-1.619-5.91-2.299l-0.17-0.069 l-0.004,0.005l-0.752-0.304l-0.684,0.299c-0.668,0.263-1.492,0.576-2.373,0.911l-0.08,0.031c-2.607,0.99-5.561,2.113-6.693,2.715 c-2.535,1.346-4.359,3.248-5.438,5.615h20.582h5.561h20.494C51.592,43.797,48.686,42.094,47.916,41.694z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M17.193,22.325c-1.205,1.026-1.531,3.083-0.748,5.124c0.732,1.925,2.256,3.218,3.783,3.218 h0.002c0.23,0.475,0.467,0.945,0.713,1.408h-0.07l0.584,0.965c0,0,0.15,0.248,0.33,0.545c0.486-0.827,0.914-1.646,1.262-2.418 c0.719,0.248,1.637-0.419,2.096-1.547c0.473-1.168,0.27-2.384-0.459-2.711c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002 c-0.012-0.002-0.016-0.002-0.025-0.005c-0.061-0.017-0.123-0.029-0.188-0.034c-0.014-0.002-0.027-0.006-0.041-0.008 c-0.029-0.006-0.07-0.015-0.105-0.023c0.121,0.023,0.232,0.049,0.359,0.07c0.092-0.368,0.137-0.587,0.137-0.587 c1.256-5.633-1.479-10.1-8.1-10.32c-0.012,0-0.021,0.003-0.033,0.003C16.395,17.765,16.594,19.881,17.193,22.325z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M37.779,18.497c-1.645,0.254-4.246,1.76-2.41,8.354c-0.068,0.01-0.139,0.023-0.205,0.051 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.359,0.799,0.787,1.648,1.289,2.504c0.564-0.949,1.1-1.934,1.586-2.947c1.395-0.166,2.754-1.375,3.457-3.109 c0.801-1.979,0.545-4.035-0.584-5.104c0.504-2.285,0.584-4.463,0.252-6.444c-0.033-0.002-0.063-0.006-0.096-0.009 C40.098,15.967,38.789,17.205,37.779,18.497z M35.381,26.849c0.014-0.014,0.029-0.027,0.043-0.041 c0.002,0.01,0.004,0.018,0.008,0.027C35.414,26.837,35.396,26.845,35.381,26.849z M39.174,22.101L39.174,22.101 c-0.02-0.004-0.047-0.015-0.066-0.018C39.127,22.086,39.152,22.097,39.174,22.101z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M47.621,42.258c-1.053-0.549-4.424-1.8-7.133-2.807l-1.549-0.574l-0.264-0.108l-0.369-0.142 l-1.045-0.418c-0.033-0.047-0.057-0.107-0.088-0.16c-1.826,0.708-4.971,1.86-5.914,2.361c-0.385,0.206-0.832,0.477-1.283,0.835 c-0.475-0.392-0.914-0.667-1.234-0.835c-0.85-0.439-4.098-1.619-5.91-2.299l-0.092-0.037l-1.285,0.56 c-0.689,0.271-1.549,0.597-2.461,0.943c-2.59,0.986-5.525,2.101-6.619,2.681c-2.309,1.226-4,2.936-5.035,5.057h19.881h5.561h19.785 C50.957,44.163,48.33,42.626,47.621,42.258z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M17.037,27.223c0.641,1.68,1.924,2.807,3.191,2.807c0.131,0,0.264-0.012,0.391-0.037 c0.432,0.934,0.9,1.844,1.398,2.719H22l0.146,0.241c0.334-0.609,0.645-1.212,0.902-1.785c0.719,0.248,1.637-0.419,2.096-1.547 c0.473-1.168,0.27-2.384-0.459-2.711c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005 c-0.061-0.017-0.123-0.029-0.188-0.034c-0.014-0.002-0.027-0.006-0.041-0.008c-0.029-0.006-0.07-0.015-0.105-0.023 c0.121,0.023,0.232,0.049,0.359,0.07c0.092-0.368,0.137-0.587,0.137-0.587c1.215-5.457-1.322-9.807-7.5-10.273 c-0.182,1.82,0.049,4.01,0.717,6.578C16.682,23.301,16.289,25.27,17.037,27.223z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M37.779,18.497c-1.645,0.254-4.246,1.76-2.41,8.354c-0.068,0.01-0.139,0.023-0.205,0.051 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.268,0.6,0.576,1.224,0.924,1.861c0.551-0.946,1.072-1.918,1.541-2.922c0.025,0.002,0.055,0.002,0.082,0.002 c1.25,0,2.533-1.101,3.195-2.734c0.773-1.902,0.453-3.844-0.701-4.617c0.053-0.229,0.078-0.355,0.078-0.355 c0.502-2.247,0.574-4.381,0.238-6.312C39.926,16.158,38.717,17.299,37.779,18.497z M35.381,26.849 c0.014-0.014,0.029-0.027,0.043-0.041c0.002,0.01,0.004,0.018,0.008,0.027C35.414,26.837,35.396,26.845,35.381,26.849z M39.174,22.101L39.174,22.101c-0.02-0.004-0.047-0.015-0.066-0.018C39.127,22.086,39.152,22.097,39.174,22.101z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="-84.3965" cy="-1.04" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_23_" r="18.6813">
- <stop offset="0.2" style="stop-color:#FFA98E"/>
- <stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="0" style="stop-color:#FFA98E"/>
+<stop offset="0.2" style="stop-color:#FFA98E"/>
+<stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="1" style="stop-color:#D45D36"/>
</radialGradient>
<path d="M37.447,39.174c-1.643-0.715-1.59-4.214-0.912-5.273c0.117-0.186,0.225-0.37,0.338-0.554H23.129 c0.113,0.184,0.219,0.368,0.338,0.554c0.678,1.06,0.73,4.559-0.914,5.273c-1.645,0.713,7.641,6.929,7.641,6.929 S39.092,39.887,37.447,39.174z" fill="url(#SVGID_23_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="30.001" x2="30.001" y1="38.5244" y2="52.9141">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="1" style="stop-color:#BA1212"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="1" style="stop-color:#BA1212"/>
</linearGradient>
<path d="M47.33,42.822c-1.729-0.9-10.297-3.901-10.459-4.089l-6.545,5.439l-7.031-5.648 c-0.193,0.289-8.662,3.257-10.621,4.298c-2.242,1.189-5.906,3.925-5.906,10.092h46.467C53.234,46.747,49.057,43.719,47.33,42.822z" fill="url(#SVGID_24_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="30.0654" x2="30.0654" y1="37.5811" y2="45.9985">
- <stop offset="0" style="stop-color:#BC1C24"/>
- <stop offset="1" style="stop-color:#6B1C24"/>
+<stop offset="0" style="stop-color:#BC1C24"/>
+<stop offset="1" style="stop-color:#6B1C24"/>
</linearGradient>
<polygon fill="url(#SVGID_25_)" points="21.695,39.225 30.326,46.103 38.436,39.365 36.871,38.733 30.326,44.173 23.295,38.524 "/>
<path d="M22.1,40.313c0,0-12.316,3.215-12.316,11.844c0,0-1.76,0.002-1.775,0C8.008,46.851,12.15,42.725,22.1,40.313 z" fill="#FF7B56"/>
<path d="M37.74,40.113c0,0,12.316,3.218,12.316,11.844c0,0,1.762,0,1.775,0C51.832,46.65,47.689,42.525,37.74,40.113 z" fill="#FF7B56"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="30.0645" x2="30.0645" y1="46.7217" y2="38.7736">
- <stop offset="0" style="stop-color:#FFA98E"/>
- <stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="0" style="stop-color:#FFA98E"/>
+<stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="1" style="stop-color:#D45D36"/>
</linearGradient>
<polygon fill="url(#SVGID_26_)" points="30.326,46.103 21.691,39.225 21.191,39.445 30.326,46.722 38.938,39.561 38.438,39.358 "/>
<radialGradient cx="-83.4844" cy="-35.5879" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_27_" r="25.0781">
- <stop offset="0" style="stop-color:#FFE2D9"/>
- <stop offset="0.5091" style="stop-color:#FFC6B3"/>
- <stop offset="0.7636" style="stop-color:#FFA98E"/>
- <stop offset="1" style="stop-color:#E88160"/>
+<stop offset="0" style="stop-color:#FFE2D9"/>
+<stop offset="0.5091" style="stop-color:#FFC6B3"/>
+<stop offset="0.7636" style="stop-color:#FFA98E"/>
+<stop offset="1" style="stop-color:#E88160"/>
</radialGradient>
<path d="M41.398,23.083c-0.059-0.027-0.125-0.031-0.184-0.051V23.03c-0.012-0.002-0.023-0.004-0.035-0.006 c-0.092-0.023-0.182-0.045-0.275-0.051c-11.475-1.996-16.738-8.354-17.135-6.67c-0.316,1.34-3.535,4.236-5.219,5.682 c0.014,0.064,0.021,0.121,0.035,0.188c0,0,0.063,0.296,0.188,0.801c-0.135,0.014-0.264,0.041-0.393,0.094 c-1.07,0.454-1.406,2.21-0.75,3.928c0.658,1.716,2.059,2.744,3.131,2.294c0.066-0.029,0.121-0.078,0.182-0.115 c0.625,1.4,1.389,2.901,2.326,4.406c1.568,1.865,3.973,4.055,6.627,4.055c3.213,0,5.18-1.758,6.529-3.53 c0.033-0.074,0.068-0.144,0.109-0.204c1.002-1.564,1.813-3.135,2.471-4.594c1.047,0.361,2.395-0.612,3.063-2.263 C42.76,25.336,42.461,23.561,41.398,23.083z" fill="url(#SVGID_27_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="25.8574" x2="35.7696" y1="38.709" y2="28.8743">
- <stop offset="0" style="stop-color:#FFC6B3"/>
- <stop offset="1" style="stop-color:#FFA98E"/>
+<stop offset="0" style="stop-color:#FFC6B3"/>
+<stop offset="1" style="stop-color:#FFA98E"/>
</linearGradient>
<path d="M29.426,36.734c-1.955,0-3.926-0.91-5.377-2.283c1.535,1.612,3.6,3.184,5.848,3.184 c3.213,0,5.18-1.758,6.529-3.53c0.033-0.074,0.068-0.144,0.109-0.204c1.002-1.564,1.813-3.135,2.471-4.594 C35.352,35.689,32.639,36.734,29.426,36.734z" fill="url(#SVGID_28_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="29.8047" x2="29.8047" y1="7.3003" y2="21.8973">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M29.574,7.086c-3.977,0-5.891,1.809-7.369,3.699c-2.4,0.37-6.209,2.57-3.52,12.218 c1.684-1.444,4.768-5.359,5.084-6.699c0.398-1.697,5.75,4.792,17.445,6.727c0.137-0.541,0.197-0.857,0.197-0.857 C43.25,13.937,39.256,7.407,29.574,7.086z" fill="url(#SVGID_29_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="34.7979" x2="21.5721" y1="21.2656" y2="13.414">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3636" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3636" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M23.783,15.516c0,0,5.723,7.517,17.35,7.504C41.133,23.02,35.656,22.159,23.783,15.516z" fill="url(#SVGID_30_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="20.3789" x2="20.495" y1="11.8853" y2="20.2845">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M22.406,11.344c0,0-5.604,0.334-3.525,9.831C18.881,21.175,18.195,14.67,22.406,11.344z" fill="url(#SVGID_31_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="31.6582" x2="31.2464" y1="8.5503" y2="12.3578">
- <stop offset="0" style="stop-color:#A87C4F"/>
- <stop offset="1" style="stop-color:#632F00"/>
+<stop offset="0" style="stop-color:#A87C4F"/>
+<stop offset="1" style="stop-color:#632F00"/>
</linearGradient>
<path d="M32.291,12.66c-2.609-0.375-7.02-2.686-8.75-1.859c0,0,5.662-6.459,15.65,0.895 C39.191,11.695,36.813,13.303,32.291,12.66z" fill="url(#SVGID_32_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M4.452,29.001c-1.903,0-3.451-1.549-3.451-3.453V4.453c0-1.903,1.548-3.452,3.451-3.452h21.095 c1.905,0,3.454,1.548,3.454,3.452v21.095c0,1.904-1.549,3.453-3.454,3.453H4.452z" opacity="0.35"/>
+<path d="M4.452,29.001c-1.903,0-3.451-1.549-3.451-3.453V4.453c0-1.903,1.548-3.452,3.451-3.452h21.095 c1.905,0,3.454,1.548,3.454,3.452v21.095c0,1.904-1.549,3.453-3.454,3.453H4.452z" fill-opacity="0.35" stroke-opacity="0.35"/>
<path d="M27.932,25.493c0,1.346-1.092,2.438-2.44,2.438H4.508c-1.347,0-2.438-1.093-2.438-2.438V4.509 c0-1.348,1.091-2.44,2.438-2.44h20.983c1.348,0,2.44,1.093,2.44,2.44V25.493z" fill="#F7B388"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2190.8022" x2="-2167.4888" y1="3344.4668" y2="3321.1533">
- <stop offset="0" style="stop-color:#DF4F20"/>
- <stop offset="0.5" style="stop-color:#F48228"/>
- <stop offset="1" style="stop-color:#CF3A21"/>
+<stop offset="0" style="stop-color:#DF4F20"/>
+<stop offset="0.5" style="stop-color:#F48228"/>
+<stop offset="1" style="stop-color:#CF3A21"/>
</linearGradient>
<path d="M4.508,27.188c-0.935,0-1.697-0.761-1.697-1.695V4.509c0-0.937,0.763-1.696,1.697-1.696h20.983 c0.937,0,1.697,0.762,1.697,1.696v20.984c0,0.935-0.76,1.695-1.697,1.695H4.508z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2178.999" x2="-2178.999" y1="3345.792" y2="3319.6384">
- <stop offset="0" style="stop-color:#C5422B"/>
- <stop offset="0.5" style="stop-color:#F48228"/>
- <stop offset="1" style="stop-color:#AD1B00"/>
+<stop offset="0" style="stop-color:#C5422B"/>
+<stop offset="0.5" style="stop-color:#F48228"/>
+<stop offset="1" style="stop-color:#AD1B00"/>
</linearGradient>
<path d="M25.547,2.413c1.125,0,2.041,0.916,2.041,2.04v21.095c0,1.124-0.917,2.04-2.041,2.04H4.452 c-1.124,0-2.038-0.916-2.038-2.04V4.453c0-1.124,0.915-2.04,2.038-2.04H25.547 M25.547,2.001H4.452 c-1.353,0-2.451,1.098-2.451,2.452v21.095c0,1.354,1.098,2.453,2.451,2.453h21.095c1.354,0,2.454-1.1,2.454-2.453V4.453 C28.001,3.099,26.901,2.001,25.547,2.001L25.547,2.001z" fill="url(#SVGID_2__)"/>
<circle cx="8.615" cy="21.385" fill="#FFFFFF" r="2.508"/>
<path d="M20.547,23.614h3.345c0-9.651-7.854-17.506-17.505-17.506v3.344C14.196,9.453,20.547,15.805,20.547,23.614z" fill="#FFFFFF"/>
<path d="M14.466,23.614h3.343c0-6.299-5.124-11.424-11.422-11.424v3.345C10.842,15.535,14.466,19.158,14.466,23.614z " fill="#FFFFFF"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_help.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_help.svg Thu May 27 13:10:59 2010 +0300
@@ -1,30 +1,28 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.2666" y2="58.2666">
- <stop offset="0" style="stop-color:#E5FFB2"/>
- <stop offset="0.3879" style="stop-color:#6AAB18"/>
- <stop offset="0.6788" style="stop-color:#247307"/>
- <stop offset="1" style="stop-color:#C2FF4A"/>
+<stop offset="0" style="stop-color:#E5FFB2"/>
+<stop offset="0.3879" style="stop-color:#6AAB18"/>
+<stop offset="0.6788" style="stop-color:#247307"/>
+<stop offset="1" style="stop-color:#C2FF4A"/>
</linearGradient>
<circle cx="30" cy="30" fill="url(#SVGID_1_)" r="28"/>
<radialGradient cx="30.2666" cy="5.2007" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.4665">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</radialGradient>
<path d="M30,57.2C15.002,57.2,2.801,44.999,2.801,30S15.002,2.8,30,2.8S57.199,15.001,57.199,30 S44.998,57.2,30,57.2L30,57.2z" fill="url(#SVGID_2_)"/>
-<path d="M21.201,19.861v-4.594c2.779-0.641,5.418-0.961,7.916-0.961c3.689,0,6.516,0.714,8.484,2.146 c1.971,1.428,2.955,3.525,2.955,6.292c0,1.609-0.381,2.972-1.137,4.089c-0.76,1.117-5.988,6.37-6.504,7.089s-0.773,1.57-0.773,2.555 v0.984h-7.336v-1.313c0-1.594,0.348-2.94,1.043-4.042c0.695-1.102,1.91-2.465,3.645-4.09c1.359-1.266,3.047-4.203,3.047-4.828 c0-2.827-1.703-4.24-5.109-4.24C25.51,18.947,23.436,19.251,21.201,19.861z M28.439,50c-1.236,0-2.297-0.438-3.188-1.313 c-0.889-0.875-1.334-1.945-1.334-3.211c0-1.25,0.441-2.321,1.322-3.21c0.883-0.891,1.949-1.336,3.199-1.336s2.32,0.445,3.211,1.336 c0.891,0.89,1.336,1.96,1.336,3.21c0,1.266-0.445,2.335-1.336,3.211C30.76,49.563,29.689,50,28.439,50z" opacity="0.35"/>
-<path d="M21.201,18.754v-4.593c2.779-0.64,5.418-0.96,7.916-0.96c3.689,0,6.516,0.714,8.484,2.145 c1.971,1.428,2.955,3.525,2.955,6.292c0,1.609-0.381,2.972-1.137,4.089c-0.76,1.117-5.988,6.371-6.504,7.089 c-0.516,0.719-0.773,1.57-0.773,2.554v0.985h-7.336v-1.313c0-1.594,0.348-2.941,1.043-4.042s1.91-2.465,3.645-4.09 c1.359-1.266,3.047-4.204,3.047-4.828c0-2.827-1.703-4.241-5.109-4.241C25.51,17.841,23.436,18.145,21.201,18.754z M28.439,48.894 c-1.236,0-2.297-0.438-3.188-1.313c-0.889-0.875-1.334-1.945-1.334-3.211c0-1.25,0.441-2.32,1.322-3.21 c0.883-0.891,1.949-1.336,3.199-1.336s2.32,0.445,3.211,1.336s1.336,1.96,1.336,3.21c0,1.266-0.445,2.336-1.336,3.211 C30.76,48.456,29.689,48.894,28.439,48.894z" opacity="0.35"/>
+<path d="M21.201,19.861v-4.594c2.779-0.641,5.418-0.961,7.916-0.961c3.689,0,6.516,0.714,8.484,2.146 c1.971,1.428,2.955,3.525,2.955,6.292c0,1.609-0.381,2.972-1.137,4.089c-0.76,1.117-5.988,6.37-6.504,7.089s-0.773,1.57-0.773,2.555 v0.984h-7.336v-1.313c0-1.594,0.348-2.94,1.043-4.042c0.695-1.102,1.91-2.465,3.645-4.09c1.359-1.266,3.047-4.203,3.047-4.828 c0-2.827-1.703-4.24-5.109-4.24C25.51,18.947,23.436,19.251,21.201,19.861z M28.439,50c-1.236,0-2.297-0.438-3.188-1.313 c-0.889-0.875-1.334-1.945-1.334-3.211c0-1.25,0.441-2.321,1.322-3.21c0.883-0.891,1.949-1.336,3.199-1.336s2.32,0.445,3.211,1.336 c0.891,0.89,1.336,1.96,1.336,3.21c0,1.266-0.445,2.335-1.336,3.211C30.76,49.563,29.689,50,28.439,50z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M21.201,18.754v-4.593c2.779-0.64,5.418-0.96,7.916-0.96c3.689,0,6.516,0.714,8.484,2.145 c1.971,1.428,2.955,3.525,2.955,6.292c0,1.609-0.381,2.972-1.137,4.089c-0.76,1.117-5.988,6.371-6.504,7.089 c-0.516,0.719-0.773,1.57-0.773,2.554v0.985h-7.336v-1.313c0-1.594,0.348-2.941,1.043-4.042s1.91-2.465,3.645-4.09 c1.359-1.266,3.047-4.204,3.047-4.828c0-2.827-1.703-4.241-5.109-4.241C25.51,17.841,23.436,18.145,21.201,18.754z M28.439,48.894 c-1.236,0-2.297-0.438-3.188-1.313c-0.889-0.875-1.334-1.945-1.334-3.211c0-1.25,0.441-2.32,1.322-3.21 c0.883-0.891,1.949-1.336,3.199-1.336s2.32,0.445,3.211,1.336s1.336,1.96,1.336,3.21c0,1.266-0.445,2.336-1.336,3.211 C30.76,48.456,29.689,48.894,28.439,48.894z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.8789" x2="30.8789" y1="11.7944" y2="47.7757">
- <stop offset="0" style="stop-color:#F6FDFF"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M21.201,17.461v-4.593c2.779-0.641,5.418-0.961,7.916-0.961c3.689,0,6.516,0.714,8.484,2.145 c1.971,1.428,2.955,3.525,2.955,6.292c0,1.61-0.381,2.972-1.137,4.089c-0.76,1.117-5.988,6.371-6.504,7.089 s-0.773,1.571-0.773,2.554v0.985h-7.336v-1.313c0-1.594,0.348-2.941,1.043-4.042c0.695-1.101,1.91-2.465,3.645-4.09 c1.359-1.265,3.047-4.203,3.047-4.828c0-2.826-1.703-4.241-5.109-4.241C25.51,16.546,23.436,16.852,21.201,17.461z M28.439,47.6 c-1.236,0-2.297-0.438-3.188-1.312c-0.889-0.875-1.334-1.945-1.334-3.211c0-1.25,0.441-2.32,1.322-3.21 c0.883-0.891,1.949-1.336,3.199-1.336s2.32,0.445,3.211,1.336s1.336,1.96,1.336,3.21c0,1.266-0.445,2.336-1.336,3.211 C30.76,47.162,29.689,47.6,28.439,47.6z" fill="url(#SVGID_3_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_hold_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_hold_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<radialGradient cx="-2349.8247" cy="1517.2324" gradientTransform="matrix(4.489659e-010 -1 -1 -4.489659e-010 1546.7637 -2331.9561)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="36.2594">
<stop offset="0" style="stop-color:#FFC144"/>
@@ -38,4 +38,4 @@
<path d="M53.646,32.675C51.37,33.519,39.55,35.204,30,35.205 c-9.551,0-21.371-1.688-23.645-2.53c-0.433-0.161-0.804-0.342-1.144-0.532c0.231,0.341,0.472,0.687,0.731,1.025 c0.068,0.026,0.127,0.056,0.197,0.083C8.451,34.105,20.387,35.818,30,35.818c9.614,0,21.55-1.711,23.86-2.566 c0.069-0.027,0.129-0.059,0.196-0.085c0.261-0.339,0.5-0.685,0.733-1.023C54.447,32.333,54.077,32.514,53.646,32.675z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_homezone.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_homezone.svg Thu May 27 13:10:59 2010 +0300
@@ -1,61 +1,59 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.002" x2="30.002" y1="11.8628" y2="56.8359">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#969899"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#969899"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="52.176,57 7.829,57 7.829,33.938 30,11.426 52.176,33.938 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.0024" x2="30.0024" y1="56.21" y2="32.4016">
- <stop offset="0" style="stop-color:#D9DADA"/>
- <stop offset="1" style="stop-color:#989999"/>
+<stop offset="0" style="stop-color:#D9DADA"/>
+<stop offset="1" style="stop-color:#989999"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="8.538,56.291 8.538,32.809 30,11.018 51.467,32.809 51.467,56.291 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.0024" x2="30.0024" y1="55.9912" y2="24.6791">
- <stop offset="0" style="stop-color:#F8F9F9"/>
- <stop offset="1" style="stop-color:#D6D8D9"/>
+<stop offset="0" style="stop-color:#F8F9F9"/>
+<stop offset="1" style="stop-color:#D6D8D9"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="9.958,56.291 9.958,31.262 30,10.911 50.047,31.262 50.047,56.291 "/>
<rect fill-opacity="0.15" height="24.126" width="17.031" x="21.487" y="32.874"/>
<rect fill-opacity="0.5" height="23.416" width="15.61" x="22.197" y="33.584"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30.0024" x2="30.0024" y1="56.9395" y2="34.2324">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#632100"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#632100"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="22.707" width="14.191" x="22.906" y="34.293"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30.002" x2="30.002" y1="34.3389" y2="56.9575">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="21.288" width="12.773" x="23.616" y="35.003"/>
<polygon fill-opacity="0.15" points="30,11.426 7.829,33.938 7.829,37.05 30,14.264 52.176,37.05 52.176,33.938 "/>
<polygon fill-opacity="0.35" points="30,11.426 7.829,33.938 7.829,35.631 30,12.845 52.176,35.631 52.176,33.938 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="29.9995" x2="29.9995" y1="0.772" y2="35.3261">
- <stop offset="0" style="stop-color:#DE4E29"/>
- <stop offset="1" style="stop-color:#992006"/>
+<stop offset="0" style="stop-color:#DE4E29"/>
+<stop offset="1" style="stop-color:#992006"/>
</linearGradient>
<path d="M30,11.426l22.176,22.785l4.434-4.555c0,0-23.922-24.521-25.035-25.733 c-1.115-1.209-1.833-1.274-3.209,0.069C26.999,5.338,3.391,29.656,3.391,29.656l4.438,4.555L30,11.426z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="29.9985" x2="29.9985" y1="1.605" y2="34.2477">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="0.2606" style="stop-color:#DE4E29"/>
- <stop offset="1" style="stop-color:#D82E09"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="0.2606" style="stop-color:#DE4E29"/>
+<stop offset="1" style="stop-color:#D82E09"/>
</linearGradient>
<path d="M4.38,29.656c3.367-3.468,23.247-23.94,24.483-25.158c0.535-0.522,0.941-0.788,1.205-0.788 c0.235,0,0.548,0.221,0.985,0.694c1.031,1.125,21.078,21.677,24.564,25.253l-3.441,3.537L30,10.409L7.828,33.194L4.38,29.656z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="29.9985" x2="29.9985" y1="3.5249" y2="29.1588">
- <stop offset="0" style="stop-color:#F7D481"/>
- <stop offset="1" style="stop-color:#F5340A"/>
+<stop offset="0" style="stop-color:#F7D481"/>
+<stop offset="1" style="stop-color:#F5340A"/>
</linearGradient>
<path d="M28.863,5.917c0.535-0.522,0.941-0.788,1.205-0.788c0.235,0,0.548,0.221,0.985,0.694 c0.977,1.066,19.014,19.562,23.875,24.544l0.689-0.71C52.131,26.082,32.084,5.529,31.053,4.404c-0.437-0.474-0.75-0.694-0.985-0.694 c-0.264,0-0.67,0.266-1.205,0.788C27.626,5.716,7.747,26.188,4.38,29.656l0.69,0.708C9.841,25.451,27.693,7.069,28.863,5.917z" fill="url(#SVGID_8_)"/>
<path d="M33.904,48.131c-1.369,0-2.482-1.115-2.482-2.484s1.113-2.483,2.482-2.483s2.484,1.114,2.484,2.483 S35.273,48.131,33.904,48.131L33.904,48.131z" fill-opacity="0.1"/>
<circle cx="33.904" cy="45.646" fill-opacity="0.15" r="1.773"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="33.9043" x2="33.9043" y1="44.5342" y2="46.6904">
- <stop offset="0" style="stop-color:#ED8100"/>
- <stop offset="1" style="stop-color:#B04400"/>
+<stop offset="0" style="stop-color:#ED8100"/>
+<stop offset="1" style="stop-color:#B04400"/>
</linearGradient>
<path d="M33.904,46.711c-0.586,0-1.064-0.478-1.064-1.064c0-0.586,0.479-1.064,1.064-1.064 c0.588,0,1.064,0.479,1.064,1.064C34.969,46.233,34.492,46.711,33.904,46.711L33.904,46.711z" fill="url(#SVGID_9_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_im.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_im.svg Thu May 27 13:10:59 2010 +0300
@@ -1,49 +1,48 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="332.6348" cy="1113.6206" gradientTransform="matrix(1 0 0 1 -304 -1104)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="40.177">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<path d="M12.382,51.741c-0.268,0-0.437-0.438-0.437-1.114v-9.345l-0.157-0.102 c-6-4.087-9.439-10.062-9.439-16.389c0-11.811,11.883-21.418,26.486-21.418s26.486,9.608,26.486,21.418 c0,11.811-11.883,21.418-26.486,21.418c-3.297,0-6.522-0.489-9.588-1.454l-0.215-0.069l-5.752,6.45 C12.941,51.514,12.606,51.741,12.382,51.741L12.382,51.741z" fill="url(#SVGID_1_)"/>
<rect fill="#FFFFFF" height="1.234" width="27.511" x="15.059" y="15.13"/>
-<rect enable-background="new " height="0.616" opacity="0.1" width="27.511" x="15.059" y="16.985"/>
-<rect enable-background="new " height="0.616" opacity="0.2" width="27.511" x="15.059" y="16.363"/>
+<rect fill-opacity="0.1" height="0.616" stroke-opacity="0.1" width="27.511" x="15.059" y="16.985"/>
+<rect fill-opacity="0.2" height="0.616" stroke-opacity="0.2" width="27.511" x="15.059" y="16.363"/>
<rect fill="#FFFFFF" height="1.234" width="27.511" x="15.059" y="23.099"/>
-<rect enable-background="new " height="0.616" opacity="0.1" width="27.511" x="15.059" y="24.955"/>
-<rect enable-background="new " height="0.616" opacity="0.2" width="27.511" x="15.059" y="24.332"/>
+<rect fill-opacity="0.1" height="0.616" stroke-opacity="0.1" width="27.511" x="15.059" y="24.955"/>
+<rect fill-opacity="0.2" height="0.616" stroke-opacity="0.2" width="27.511" x="15.059" y="24.332"/>
<rect fill="#FFFFFF" height="1.234" width="27.511" x="15.059" y="31.067"/>
-<rect enable-background="new " height="0.616" opacity="0.1" width="27.511" x="15.059" y="32.924"/>
-<rect enable-background="new " height="0.616" opacity="0.2" width="27.511" x="15.059" y="32.301"/>
+<rect fill-opacity="0.1" height="0.616" stroke-opacity="0.1" width="27.511" x="15.059" y="32.924"/>
+<rect fill-opacity="0.2" height="0.616" stroke-opacity="0.2" width="27.511" x="15.059" y="32.301"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -304 -1104)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="332.6865" x2="332.6865" y1="1106.7769" y2="1152.0294">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#113F85"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#113F85"/>
</linearGradient>
<path d="M28.687,3.023C13.948,3.023,2,12.714,2,24.671c0,6.659,3.712,12.613,9.544,16.584v9.107 c0,1.6,0.873,1.932,1.936,0.738l5.571-6.245c2.99,0.94,6.237,1.462,9.638,1.462c14.736,0,26.685-9.692,26.685-21.647 C55.372,12.714,43.423,3.023,28.687,3.023z M28.687,45.18c-3.195,0-6.322-0.474-9.297-1.41l-0.7-0.22l-6.007,6.735v-9.63 l-0.499-0.34c-5.747-3.913-9.046-9.612-9.046-15.644c0-11.309,11.463-20.509,25.549-20.509c14.088,0,25.547,9.2,25.547,20.509 C54.233,35.979,42.774,45.18,28.687,45.18z" fill="url(#SVGID_2_)"/>
-<path d="M54.942,28.519c-3.528-3.098-8.502-5.042-14.019-5.042 c-10.671,0-19.353,7.235-19.353,16.13c0,2.199,0.535,4.292,1.494,6.206c1.814,0.314,3.688,0.5,5.621,0.5 C41.804,46.318,52.704,38.638,54.942,28.519z" enable-background="new " opacity="0.15"/>
-<path d="M54.624,29.76c-3.344-3.145-8.237-5.143-13.7-5.143 c-10.044,0-18.214,6.724-18.214,14.991c0,2.3,0.65,4.473,1.78,6.422c1.37,0.177,2.765,0.289,4.196,0.289 C41.262,46.318,51.801,39.258,54.624,29.76z" enable-background="new " opacity="0.15"/>
+<path d="M54.942,28.519c-3.528-3.098-8.502-5.042-14.019-5.042 c-10.671,0-19.353,7.235-19.353,16.13c0,2.199,0.535,4.292,1.494,6.206c1.814,0.314,3.688,0.5,5.621,0.5 C41.804,46.318,52.704,38.638,54.942,28.519z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M54.624,29.76c-3.344-3.145-8.237-5.143-13.7-5.143 c-10.044,0-18.214,6.724-18.214,14.991c0,2.3,0.65,4.473,1.78,6.422c1.37,0.177,2.765,0.289,4.196,0.289 C41.262,46.318,51.801,39.258,54.624,29.76z" fill-opacity="0.15" stroke-opacity="0.15"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -304 -1104)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="344.9238" x2="344.9238" y1="1129.416" y2="1160.7534">
- <stop offset="0" style="stop-color:#FEE16E"/>
- <stop offset="1" style="stop-color:#BD6500"/>
+<stop offset="0" style="stop-color:#FEE16E"/>
+<stop offset="1" style="stop-color:#BD6500"/>
</linearGradient>
<path d="M23.848,39.607c0,7.649,7.646,13.85,17.076,13.85c2.177,0,4.253-0.333,6.168-0.935l3.563,3.996 c0.686,0.764,1.239,0.553,1.239-0.473v-5.828C55.626,47.679,58,43.868,58,39.607c0-7.651-7.644-13.85-17.076-13.85 C31.494,25.755,23.848,31.956,23.848,39.607z" fill="url(#SVGID_3_)"/>
<radialGradient cx="345.2559" cy="1131.3125" gradientTransform="matrix(1 0 0 1 -304 -1104)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="25.7806">
- <stop offset="0.0667" style="stop-color:#FEE16E"/>
- <stop offset="0.697" style="stop-color:#F09000"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE16E"/>
+<stop offset="0.0667" style="stop-color:#FEE16E"/>
+<stop offset="0.697" style="stop-color:#F09000"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M47.452,51.216l-0.701,0.22c-1.863,0.587-3.824,0.882-5.827,0.882 c-8.787,0-15.938-5.703-15.938-12.711c0-7.01,7.15-12.715,15.938-12.715c8.79,0,15.938,5.705,15.938,12.715 c0,3.719-2.044,7.24-5.608,9.67l-0.498,0.338v5.305L47.452,51.216z" fill="url(#SVGID_4_)"/>
<rect fill="#FFFFFF" height="1.138" width="18.451" x="31.698" y="42.878"/>
-<rect enable-background="new " height="0.412" opacity="0.1" width="18.451" x="31.698" y="44.031"/>
+<rect fill-opacity="0.1" height="0.412" stroke-opacity="0.1" width="18.451" x="31.698" y="44.031"/>
<rect fill="#FFFFFF" height="1.138" width="18.451" x="31.698" y="38.325"/>
-<rect enable-background="new " height="0.413" opacity="0.1" width="18.451" x="31.698" y="39.478"/>
+<rect fill-opacity="0.1" height="0.413" stroke-opacity="0.1" width="18.451" x="31.698" y="39.478"/>
<rect fill="#FFFFFF" height="1.138" width="18.451" x="31.698" y="33.771"/>
-<rect enable-background="new " height="0.413" opacity="0.1" width="18.451" x="31.698" y="34.924"/>
+<rect fill-opacity="0.1" height="0.413" stroke-opacity="0.1" width="18.451" x="31.698" y="34.924"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_imageprint.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_imageprint.svg Thu May 27 13:10:59 2010 +0300
@@ -1,150 +1,151 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.998" x2="29.998" y1="5.7212" y2="28.1196">
- <stop offset="0" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#585B5C"/>
+<stop offset="0" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#585B5C"/>
</linearGradient>
<path d="M49.198,26.8c0,0.885-0.717,1.6-1.601,1.6H12.398c-0.883,0-1.6-0.715-1.6-1.6V7.601 c0-0.883,0.717-1.6,1.6-1.6h35.199c0.884,0,1.601,0.717,1.601,1.6V26.8z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="17.6411" y2="46.4399">
- <stop offset="0" style="stop-color:#DDE3E6"/>
- <stop offset="0.6909" style="stop-color:#C0CCD1"/>
- <stop offset="1" style="stop-color:#9BA1A3"/>
+<stop offset="0" style="stop-color:#DDE3E6"/>
+<stop offset="0.6909" style="stop-color:#C0CCD1"/>
+<stop offset="1" style="stop-color:#9BA1A3"/>
</linearGradient>
<path d="M57.998,43.6c0,1.769-1.432,3.2-3.201,3.2H5.199C3.434,46.8,2,45.368,2,43.6V21.2 c0-1.766,1.434-3.199,3.199-3.199h49.598c1.77,0,3.201,1.434,3.201,3.199V43.6z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="18.9814" y2="45.166">
- <stop offset="0" style="stop-color:#BDC3C4"/>
- <stop offset="0.3515" style="stop-color:#DDE3E6"/>
- <stop offset="0.6545" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#BDC3C4"/>
+<stop offset="0.3515" style="stop-color:#DDE3E6"/>
+<stop offset="0.6545" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M54.8,45.493H5.199c-1.043,0-1.893-0.849-1.893-1.893V21.2c0-1.043,0.85-1.892,1.893-1.892H54.8 c1.044,0,1.893,0.849,1.893,1.892v22.4C56.692,44.645,55.844,45.493,54.8,45.493L54.8,45.493z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.998" x2="29.998" y1="37.9102" y2="45.1094">
- <stop offset="0" style="stop-color:#131414"/>
- <stop offset="0.2424" style="stop-color:#252629"/>
- <stop offset="1" style="stop-color:#444747"/>
+<stop offset="0" style="stop-color:#131414"/>
+<stop offset="0.2424" style="stop-color:#252629"/>
+<stop offset="1" style="stop-color:#444747"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="7.199" width="38.399" x="10.799" y="38"/>
-<rect fill="#FFFFFF" height="1.307" opacity="0.2" width="38.399" x="10.799" y="36.693"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="1.307" stroke-opacity="0.2" width="38.399" x="10.799" y="36.693"/>
<rect fill="#6D6E70" height="0.799" width="36.797" x="11.6" y="54.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.998" x2="29.998" y1="42.6509" y2="54.6499">
- <stop offset="0" style="stop-color:#585B5C"/>
- <stop offset="0.7879" style="stop-color:#949DA1"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#585B5C"/>
+<stop offset="0.7879" style="stop-color:#949DA1"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="49.198,42.801 48.396,42.801 11.6,42.801 10.799,42.801 10.799,43.6 11.6,43.6 11.6,54.8 48.396,54.8 48.396,43.6 49.198,43.6 "/>
-<rect fill="#020202" height="12" opacity="0.15" width="35.199" x="12.398" y="6.001"/>
+<rect fill="#020202" fill-opacity="0.15" height="12" stroke-opacity="0.15" width="35.199" x="12.398" y="6.001"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="2.002" y2="18.7534">
- <stop offset="0" style="stop-color:#D9D9D9"/>
- <stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="15.999" width="33.599" x="13.2" y="2.002"/>
-<path clip-rule="evenodd" d="M21.665,2.002c0,0,14.519,2.2,19.918,9.599 c0,0,4.081-5.6,5.216-2.555C46.226,6.105,41.045,1.897,21.665,2.002z" fill="#050505" fill-rule="evenodd" opacity="0.05"/>
-<path clip-rule="evenodd" d="M21.665,2.002c0,0,14.519,0.6,19.918,8.001 c0,0,4.081-4.801,5.216-0.957C46.226,6.105,41.045,1.897,21.665,2.002z" fill="#050505" fill-rule="evenodd" opacity="0.1"/>
+<path d="M21.665,2.002c0,0,14.519,2.2,19.918,9.599 c0,0,4.081-5.6,5.216-2.555C46.226,6.105,41.045,1.897,21.665,2.002z" fill="#050505" fill-opacity="0.05" fill-rule="evenodd" stroke-opacity="0.05"/>
+<path d="M21.665,2.002c0,0,14.519,0.6,19.918,8.001 c0,0,4.081-4.801,5.216-0.957C46.226,6.105,41.045,1.897,21.665,2.002z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="34.9932" x2="33.4854" y1="2.6978" y2="8.2986">
- <stop offset="0.0061" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D9D9D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.0061" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<path clip-rule="evenodd" d="M21.665,2.002c0,0,14.519,0.13,19.918,7.528 c0,0,3.866-4.768,5.216-0.484C46.226,6.105,41.045,1.897,21.665,2.002z" fill="url(#SVGID_7_)" fill-rule="evenodd"/>
-<rect fill="#020202" height="12.798" opacity="0.2" width="35.199" x="12.398" y="42.801"/>
+<path d="M21.665,2.002c0,0,14.519,0.13,19.918,7.528 c0,0,3.866-4.768,5.216-0.484C46.226,6.105,41.045,1.897,21.665,2.002z" fill="url(#SVGID_7_)" fill-rule="evenodd"/>
+<rect fill="#020202" fill-opacity="0.2" height="12.798" stroke-opacity="0.2" width="35.199" x="12.398" y="42.801"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="40.3994" y2="58.4715">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="0.8606" style="stop-color:#8F8F8F"/>
- <stop offset="1" style="stop-color:#A6A6A6"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.8606" style="stop-color:#8F8F8F"/>
+<stop offset="1" style="stop-color:#A6A6A6"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="17.601" width="33.599" x="13.2" y="40.399"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30" x2="30" y1="39.6006" y2="57.6697">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="0.7818" style="stop-color:#CCCCCC"/>
- <stop offset="1" style="stop-color:#D1D1D1"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
<polygon fill="url(#SVGID_9_)" points="46.799,57.198 38.332,57.198 34.611,57.112 20.8,55.063 14.338,51.975 13.642,51.294 13.2,50.225 13.2,39.601 46.799,39.601 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="38.749" x2="22.3049" y1="37.021" y2="56.1539">
- <stop offset="0" style="stop-color:#C2F3FF"/>
- <stop offset="0.3758" style="stop-color:#2D9BD2"/>
- <stop offset="0.6909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#C2F3FF"/>
+<stop offset="0.3758" style="stop-color:#2D9BD2"/>
+<stop offset="0.6909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<polygon fill="url(#SVGID_10_)" points="45.199,54.8 22.799,54.8 14.801,52.398 14.801,39.601 45.199,39.601 "/>
<linearGradient gradientTransform="matrix(0.8734 -0.108 0.1257 0.9176 55.8475 218.6808)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-7.1758" x2="-5.4868" y1="-190.3931" y2="-184.663">
- <stop offset="0" style="stop-color:#A7FF00"/>
- <stop offset="1" style="stop-color:#138F00"/>
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
</linearGradient>
<path d="M32.764,41.259c0,0-10.45,3.05-11.486,13.332C21.277,54.591,32.56,51.987,32.764,41.259z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="24.5244" x2="17.7473" y1="44.6128" y2="48.3141">
- <stop offset="0" style="stop-color:#A7FF00"/>
- <stop offset="1" style="stop-color:#138F00"/>
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
</linearGradient>
<path d="M18.223,39.601c0,0,6.994,6.28,6.553,15.199h-1.977l-7.998-3.039v-12.16H18.223z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="13.4502" x2="18.0304" y1="47.0591" y2="46.2696">
- <stop offset="0" style="stop-color:#A7FF00"/>
- <stop offset="1" style="stop-color:#138F00"/>
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
</linearGradient>
<path d="M14.801,39.601v12.798c0,0,4.039,1.376,4.026,0.881c-0.196-7.036-2.468-11.459-4.024-13.679H14.801z " fill="url(#SVGID_13_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="29.6777" x2="37.6251" y1="46.6196" y2="52.8009">
- <stop offset="0" style="stop-color:#A7FF00"/>
- <stop offset="1" style="stop-color:#138F00"/>
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
</linearGradient>
<path d="M22.893,54.8c0,0,2.605-8.37,20.937-10.631c0,0-1.723,7.344-9.751,10.631H22.893z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="38.2305" x2="26.6075" y1="43.4058" y2="56.9659">
- <stop offset="0" style="stop-color:#A7FF00"/>
- <stop offset="1" style="stop-color:#138F00"/>
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
</linearGradient>
<path d="M43.801,44.278c0.018-0.069,0.028-0.109,0.028-0.109C25.092,46.172,22.893,54.8,22.893,54.8h0.479 C23.372,54.8,24.978,46.563,43.801,44.278z" fill="url(#SVGID_15_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="39.4199" x2="34.4577" y1="53.3096" y2="48.4554">
- <stop offset="0" style="stop-color:#A7FF00"/>
- <stop offset="1" style="stop-color:#138F00"/>
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
</linearGradient>
<path d="M27.33,54.8c0,0,6.406-2.688,16.471-10.521c-0.225,2.718-2.982,8.391-9.723,10.521H27.33z" fill="url(#SVGID_16_)"/>
-<rect fill="#FFFFFF" height="0.801" opacity="0.3" width="21.6" x="23.6" y="53.999"/>
-<path clip-rule="evenodd" d="M38.332,57.198c0,0-14.518-1.398-19.918-8.799 c0,0-3.866,6.038-5.214,1.756C13.774,53.095,18.955,57.304,38.332,57.198z" fill="#050505" fill-rule="evenodd" opacity="0.1"/>
-<path clip-rule="evenodd" d="M38.332,57.198c0,0-14.508-0.513-19.908-7.91 c0,0-3.876,5.149-5.224,0.867C13.774,53.095,18.955,57.304,38.332,57.198z" fill="#050505" fill-rule="evenodd" opacity="0.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="0.801" stroke-opacity="0.3" width="21.6" x="23.6" y="53.999"/>
+<path d="M38.332,57.198c0,0-14.518-1.398-19.918-8.799 c0,0-3.866,6.038-5.214,1.756C13.774,53.095,18.955,57.304,38.332,57.198z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M38.332,57.198c0,0-14.508-0.513-19.908-7.91 c0,0-3.876,5.149-5.224,0.867C13.774,53.095,18.955,57.304,38.332,57.198z" fill="#050505" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="25.8027" x2="24.4534" y1="53.5825" y2="57.1418">
- <stop offset="0" style="stop-color:#FEFEFE"/>
- <stop offset="0.8182" style="stop-color:#E3E3E3"/>
- <stop offset="1" style="stop-color:#DEDEDE"/>
+<stop offset="0" style="stop-color:#FEFEFE"/>
+<stop offset="0.8182" style="stop-color:#E3E3E3"/>
+<stop offset="1" style="stop-color:#DEDEDE"/>
</linearGradient>
-<path clip-rule="evenodd" d="M38.332,57.198c0,0-14.518-0.13-19.918-7.527 c0,0-3.866,4.767-5.214,0.484C13.774,53.095,18.955,57.304,38.332,57.198z" fill="url(#SVGID_17_)" fill-rule="evenodd"/>
-<rect fill="#020202" height="0.802" opacity="0.1" width="33.599" x="13.2" y="41.999"/>
-<rect fill="#020202" height="0.799" opacity="0.2" width="33.599" x="13.2" y="41.2"/>
-<rect fill="#020202" height="0.801" opacity="0.3" width="33.599" x="13.2" y="40.399"/>
-<rect fill="#020202" height="0.799" opacity="0.5" width="33.599" x="13.2" y="39.601"/>
-<rect fill="#020202" height="0.799" opacity="0.3" width="38.399" x="10.799" y="17.202"/>
-<rect fill="#020202" height="0.802" opacity="0.1" width="38.399" x="10.799" y="16.4"/>
-<path d="M8.4,18.001V21.2c0,2.205,1.793,3.999,3.998,3.999h35.199c2.205,0,4-1.794,4-3.999v-3.199H8.4 z" fill="#FFFFFF" opacity="0.2"/>
+<path d="M38.332,57.198c0,0-14.518-0.13-19.918-7.527 c0,0-3.866,4.767-5.214,0.484C13.774,53.095,18.955,57.304,38.332,57.198z" fill="url(#SVGID_17_)" fill-rule="evenodd"/>
+<rect fill="#020202" fill-opacity="0.1" height="0.802" stroke-opacity="0.1" width="33.599" x="13.2" y="41.999"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.799" stroke-opacity="0.2" width="33.599" x="13.2" y="41.2"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.801" stroke-opacity="0.3" width="33.599" x="13.2" y="40.399"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.799" stroke-opacity="0.5" width="33.599" x="13.2" y="39.601"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.799" stroke-opacity="0.3" width="38.399" x="10.799" y="17.202"/>
+<rect fill="#020202" fill-opacity="0.1" height="0.802" stroke-opacity="0.1" width="38.399" x="10.799" y="16.4"/>
+<path d="M8.4,18.001V21.2c0,2.205,1.793,3.999,3.998,3.999h35.199c2.205,0,4-1.794,4-3.999v-3.199H8.4 z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="29.999" x2="29.999" y1="17.9209" y2="24.3213">
- <stop offset="0" style="stop-color:#A0A7A8"/>
- <stop offset="0.7576" style="stop-color:#252629"/>
- <stop offset="1" style="stop-color:#1F2021"/>
+<stop offset="0" style="stop-color:#A0A7A8"/>
+<stop offset="0.7576" style="stop-color:#252629"/>
+<stop offset="1" style="stop-color:#1F2021"/>
</linearGradient>
<path d="M9.199,18.001V21.2c0,1.769,1.434,3.201,3.199,3.201h35.199c1.767,0,3.201-1.433,3.201-3.201v-3.199 H9.199z" fill="url(#SVGID_18_)"/>
-<rect fill="#FFFFFF" height="1.307" opacity="0.2" width="41.6" x="9.199" y="18.001"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="1.307" stroke-opacity="0.2" width="41.6" x="9.199" y="18.001"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="53.1973" x2="53.1973" y1="41.2002" y2="44.4434">
- <stop offset="0" style="stop-color:#576266"/>
- <stop offset="1" style="stop-color:#E3E3E3"/>
+<stop offset="0" style="stop-color:#576266"/>
+<stop offset="1" style="stop-color:#E3E3E3"/>
</linearGradient>
<path d="M54.797,43.597c0,0.441-0.359,0.799-0.799,0.799h-1.6c-0.441,0-0.801-0.357-0.801-0.799v-1.598 c0-0.441,0.359-0.799,0.801-0.799h1.6c0.439,0,0.799,0.357,0.799,0.799V43.597z" fill="url(#SVGID_19_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="53.1982" x2="53.1982" y1="41.9692" y2="43.616">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<rect fill="url(#SVGID_20_)" height="1.598" width="1.6" x="52.398" y="41.999"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="53.1973" x2="53.1973" y1="36.4004" y2="39.6486">
- <stop offset="0" style="stop-color:#576266"/>
- <stop offset="1" style="stop-color:#C4C4C4"/>
+<stop offset="0" style="stop-color:#576266"/>
+<stop offset="1" style="stop-color:#C4C4C4"/>
</linearGradient>
<path d="M54.797,38.799c0,0.444-0.357,0.802-0.801,0.802h-1.598c-0.441,0-0.801-0.357-0.801-0.802v-1.6 c0-0.441,0.359-0.799,0.801-0.799h1.598c0.443,0,0.801,0.357,0.801,0.799V38.799z" fill="url(#SVGID_21_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="53.1973" x2="53.1973" y1="37.1694" y2="38.8182">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<rect fill="url(#SVGID_22_)" height="1.6" width="1.598" x="52.398" y="37.199"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_info.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_info.svg Thu May 27 13:10:59 2010 +0300
@@ -1,37 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.2666" y2="58.2666">
- <stop offset="0" style="stop-color:#E5FFB2"/>
- <stop offset="0.3879" style="stop-color:#6AAB18"/>
- <stop offset="0.6788" style="stop-color:#247307"/>
- <stop offset="1" style="stop-color:#C2FF4A"/>
+<stop offset="0" style="stop-color:#E5FFB2"/>
+<stop offset="0.3879" style="stop-color:#6AAB18"/>
+<stop offset="0.6788" style="stop-color:#247307"/>
+<stop offset="1" style="stop-color:#C2FF4A"/>
</linearGradient>
<circle cx="30" cy="30" fill="url(#SVGID_1_)" r="28"/>
<radialGradient cx="30.2666" cy="5.2007" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.4669">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</radialGradient>
<path d="M30,57.2C15.002,57.2,2.801,44.999,2.801,30S15.002,2.8,30,2.8c14.999,0,27.2,12.201,27.2,27.2 S44.999,57.2,30,57.2L30,57.2z" fill="url(#SVGID_2_)"/>
-<polygon opacity="0.1" points="23.799,27.181 26.471,27.181 26.471,50.313 34.252,50.313 34.252,22.751 23.799,22.751 "/>
-<path d="M30.39,19.892c1.281,0,2.31-0.316,3.083-0.949c0.773-0.632,1.159-1.504,1.159-2.612 c0-1.08-0.399-1.942-1.196-2.591s-1.813-0.973-3.046-0.973c-1.297,0-2.323,0.319-3.081,0.96c-0.76,0.642-1.138,1.509-1.138,2.604 c0,1.108,0.388,1.98,1.161,2.612C28.105,19.575,29.124,19.892,30.39,19.892z" opacity="0.1"/>
-<polygon opacity="0.2" points="23.799,26.38 26.471,26.38 26.471,49.513 34.252,49.513 34.252,21.95 23.799,21.95 "/>
-<path d="M30.39,19.091c1.281,0,2.31-0.316,3.083-0.949s1.159-1.503,1.159-2.613c0-1.077-0.399-1.94-1.196-2.589 s-1.813-0.974-3.046-0.974c-1.297,0-2.323,0.321-3.081,0.962c-0.76,0.641-1.138,1.507-1.138,2.601c0,1.11,0.388,1.98,1.161,2.613 S29.124,19.091,30.39,19.091z" opacity="0.2"/>
+<polygon fill-opacity="0.1" points="23.799,27.181 26.471,27.181 26.471,50.313 34.252,50.313 34.252,22.751 23.799,22.751 " stroke-opacity="0.1"/>
+<path d="M30.39,19.892c1.281,0,2.31-0.316,3.083-0.949c0.773-0.632,1.159-1.504,1.159-2.612 c0-1.08-0.399-1.942-1.196-2.591s-1.813-0.973-3.046-0.973c-1.297,0-2.323,0.319-3.081,0.96c-0.76,0.642-1.138,1.509-1.138,2.604 c0,1.108,0.388,1.98,1.161,2.612C28.105,19.575,29.124,19.892,30.39,19.892z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<polygon fill-opacity="0.2" points="23.799,26.38 26.471,26.38 26.471,49.513 34.252,49.513 34.252,21.95 23.799,21.95 " stroke-opacity="0.2"/>
+<path d="M30.39,19.091c1.281,0,2.31-0.316,3.083-0.949s1.159-1.503,1.159-2.613c0-1.077-0.399-1.94-1.196-2.589 s-1.813-0.974-3.046-0.974c-1.297,0-2.323,0.321-3.081,0.962c-0.76,0.641-1.138,1.507-1.138,2.601c0,1.11,0.388,1.98,1.161,2.613 S29.124,19.091,30.39,19.091z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.0254" x2="29.0254" y1="11.5566" y2="49.1577">
- <stop offset="0" style="stop-color:#F6FDFF"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="23.799,25.581 26.471,25.581 26.471,48.713 34.252,48.713 34.252,21.15 23.799,21.15 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30.373" x2="30.373" y1="11.5576" y2="49.1534">
- <stop offset="0" style="stop-color:#F6FDFF"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M30.361,18.291c1.281,0,2.309-0.315,3.083-0.948c0.773-0.633,1.159-1.504,1.159-2.613 c0-1.079-0.398-1.941-1.195-2.59s-1.813-0.973-3.047-0.973c-1.297,0-2.323,0.32-3.082,0.961s-1.137,1.507-1.137,2.602 c0,1.109,0.388,1.98,1.161,2.613C28.076,17.976,29.096,18.291,30.361,18.291z" fill="url(#SVGID_4_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_input_device.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_input_device.svg Thu May 27 13:10:59 2010 +0300
@@ -1,92 +1,86 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21.5996" x2="21.5996" y1="23.4971" y2="-23.1007">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7308" style="stop-color:#818687"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7308" style="stop-color:#818687"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
-<path d="M6.505,55.064C6.505,56.68,7.809,58,9.401,58h41.197 c1.594,0,2.896-1.32,2.896-2.936V14.48c0-1.615-1.303-2.937-2.896-2.937H9.401c-1.592,0-2.896,1.321-2.896,2.937V55.064z" enable-background="new " fill="url(#SVGID_1_)" opacity="0.6"/>
+<path d="M6.505,55.064C6.505,56.68,7.809,58,9.401,58h41.197 c1.594,0,2.896-1.32,2.896-2.936V14.48c0-1.615-1.303-2.937-2.896-2.937H9.401c-1.592,0-2.896,1.321-2.896,2.937V55.064z" fill="url(#SVGID_1_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="21.6001" x2="21.6001" y1="22.0293" y2="-21.623">
- <stop offset="0" style="stop-color:#E5EBED"/>
- <stop offset="0.6727" style="stop-color:#A1A9AC"/>
- <stop offset="1" style="stop-color:#C6CDCF"/>
+<stop offset="0" style="stop-color:#E5EBED"/>
+<stop offset="0.6727" style="stop-color:#A1A9AC"/>
+<stop offset="1" style="stop-color:#C6CDCF"/>
</linearGradient>
<path d="M50.598,56.531H9.401c-0.789,0-1.427-0.66-1.427-1.477V14.48c0-0.809,0.638-1.469,1.427-1.469h41.197 c0.785,0,1.428,0.66,1.428,1.469v40.575C52.025,55.871,51.383,56.531,50.598,56.531L50.598,56.531z" fill="url(#SVGID_2_)"/>
<g>
- <path d="M24,47.958c-6.556,0-11.892-5.335-11.892-11.896 c0-6.556,5.335-11.889,11.892-11.889c6.557,0,11.891,5.333,11.891,11.889C35.891,42.623,30.557,47.958,24,47.958L24,47.958z" enable-background="new " opacity="0.5"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="3.5708" x2="26.8214" y1="-0.2554" y2="-0.2554">
- <stop offset="0" style="stop-color:#262626"/>
- <stop offset="0.3879" style="stop-color:#CCCCCC"/>
- <stop offset="0.7091" style="stop-color:#262626"/>
- <stop offset="1" style="stop-color:#757575"/>
- </linearGradient>
- <path d="M35.453,35.295c0,6.323-5.125,11.454-11.454,11.454c-6.323,0-11.453-5.131-11.453-11.454 c0-6.332,5.13-11.453,11.453-11.453C30.328,23.842,35.453,28.963,35.453,35.295z" fill="url(#SVGID_3_)"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.6006" x2="15.6006" y1="9.3652" y2="-9.4998">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#000000"/>
- </linearGradient>
- <path d="M24,45.249c-6.04,0-10.953-4.913-10.953-10.954c0-6.04,4.914-10.953,10.953-10.953 s10.954,4.913,10.954,10.953C34.953,40.336,30.039,45.249,24,45.249L24,45.249z" fill="url(#SVGID_4_)"/>
- <path d="M13.188,16.536c0,4.259,2.52,8.104,6.36,9.848v6.69 c0,2.451,1.996,4.451,4.451,4.451c2.456,0,4.452-2,4.452-4.451v-6.69c3.84-1.744,6.359-5.589,6.359-9.848 c0-1.805-0.455-3.5-1.24-4.992H14.428C13.643,13.036,13.188,14.731,13.188,16.536z" enable-background="new " opacity="0.25"/>
- <path d="M20.329,18.189v16.886c0,2.028,1.644,3.672,3.671,3.672 c2.027,0,3.67-1.644,3.67-3.672V18.189H20.329z" enable-background="new " opacity="0.5"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.9292" x2="19.27" y1="7.5596" y2="7.5596">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="0.3455" style="stop-color:#E0E0E0"/>
- <stop offset="0.7515" style="stop-color:#838383"/>
- <stop offset="1" style="stop-color:#C9C9C9"/>
- </linearGradient>
- <path d="M20.329,17.206v16.877c0,2.028,1.644,3.672,3.671,3.672c2.027,0,3.67-1.644,3.67-3.672V17.206 H20.329z" fill="url(#SVGID_5_)"/>
- <path d="M20.329,22.951c1.151,0.404,2.382,0.635,3.671,0.635 c1.29,0,2.52-0.23,3.67-0.635v-9.646h-7.341V22.951z" enable-background="new " opacity="0.5"/>
-
- <radialGradient cx="15.5718" cy="32.6318" gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="19.0015">
- <stop offset="0.1333" style="stop-color:#C0E76F"/>
- <stop offset="0.4848" style="stop-color:#79BE19"/>
- <stop offset="0.7091" style="stop-color:#428C0F"/>
- <stop offset="0.8545" style="stop-color:#5CA617"/>
- <stop offset="1" style="stop-color:#96CF3D"/>
- </radialGradient>
- <path d="M34.059,12.059c0,5.56-4.502,10.057-10.059,10.057c-5.556,0-10.058-4.497-10.058-10.057 C13.941,6.505,18.443,2,24,2C29.557,2,34.059,6.505,34.059,12.059z" fill="url(#SVGID_6_)"/>
+<path d="M24,47.958c-6.556,0-11.892-5.335-11.892-11.896 c0-6.556,5.335-11.889,11.892-11.889c6.557,0,11.891,5.333,11.891,11.889C35.891,42.623,30.557,47.958,24,47.958L24,47.958z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="3.5708" x2="26.8214" y1="-0.2554" y2="-0.2554">
+<stop offset="0" style="stop-color:#262626"/>
+<stop offset="0.3879" style="stop-color:#CCCCCC"/>
+<stop offset="0.7091" style="stop-color:#262626"/>
+<stop offset="1" style="stop-color:#757575"/>
+</linearGradient>
+<path d="M35.453,35.295c0,6.323-5.125,11.454-11.454,11.454c-6.323,0-11.453-5.131-11.453-11.454 c0-6.332,5.13-11.453,11.453-11.453C30.328,23.842,35.453,28.963,35.453,35.295z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.6006" x2="15.6006" y1="9.3652" y2="-9.4998">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#000000"/>
+</linearGradient>
+<path d="M24,45.249c-6.04,0-10.953-4.913-10.953-10.954c0-6.04,4.914-10.953,10.953-10.953 s10.954,4.913,10.954,10.953C34.953,40.336,30.039,45.249,24,45.249L24,45.249z" fill="url(#SVGID_4_)"/>
+<path d="M13.188,16.536c0,4.259,2.52,8.104,6.36,9.848v6.69 c0,2.451,1.996,4.451,4.451,4.451c2.456,0,4.452-2,4.452-4.451v-6.69c3.84-1.744,6.359-5.589,6.359-9.848 c0-1.805-0.455-3.5-1.24-4.992H14.428C13.643,13.036,13.188,14.731,13.188,16.536z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<path d="M20.329,18.189v16.886c0,2.028,1.644,3.672,3.671,3.672 c2.027,0,3.67-1.644,3.67-3.672V18.189H20.329z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.9292" x2="19.27" y1="7.5596" y2="7.5596">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="0.3455" style="stop-color:#E0E0E0"/>
+<stop offset="0.7515" style="stop-color:#838383"/>
+<stop offset="1" style="stop-color:#C9C9C9"/>
+</linearGradient>
+<path d="M20.329,17.206v16.877c0,2.028,1.644,3.672,3.671,3.672c2.027,0,3.67-1.644,3.67-3.672V17.206 H20.329z" fill="url(#SVGID_5_)"/>
+<path d="M20.329,22.951c1.151,0.404,2.382,0.635,3.671,0.635 c1.29,0,2.52-0.23,3.67-0.635v-9.646h-7.341V22.951z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<radialGradient cx="15.5718" cy="32.6318" gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="19.0015">
+<stop offset="0" style="stop-color:#C0E76F"/>
+<stop offset="0.1333" style="stop-color:#C0E76F"/>
+<stop offset="0.4848" style="stop-color:#79BE19"/>
+<stop offset="0.7091" style="stop-color:#428C0F"/>
+<stop offset="0.8545" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#96CF3D"/>
+</radialGradient>
+<path d="M34.059,12.059c0,5.56-4.502,10.057-10.059,10.057c-5.556,0-10.058-4.497-10.058-10.057 C13.941,6.505,18.443,2,24,2C29.557,2,34.059,6.505,34.059,12.059z" fill="url(#SVGID_6_)"/>
</g>
<g>
- <path d="M44.482,31.73c-3.273,0-5.938-2.663-5.938-5.939 c0-3.271,2.664-5.934,5.938-5.934s5.936,2.663,5.936,5.934C50.418,29.068,47.756,31.73,44.482,31.73L44.482,31.73z" enable-background="new " opacity="0.5"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.0771" x2="41.6829" y1="9.6299" y2="9.6299">
- <stop offset="0" style="stop-color:#262626"/>
- <stop offset="0.3879" style="stop-color:#CCCCCC"/>
- <stop offset="0.7091" style="stop-color:#262626"/>
- <stop offset="1" style="stop-color:#757575"/>
- </linearGradient>
- <path d="M50.199,25.41c0,3.157-2.558,5.717-5.717,5.717c-3.156,0-5.718-2.56-5.718-5.717 c0-3.161,2.562-5.717,5.718-5.717C47.642,19.693,50.199,22.249,50.199,25.41z" fill="url(#SVGID_7_)"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="36.082" x2="36.082" y1="14.4321" y2="5.0154">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
- </linearGradient>
- <path d="M44.482,30.377c-3.016,0-5.469-2.451-5.469-5.467c0-3.017,2.453-5.469,5.469-5.469 c3.014,0,5.469,2.452,5.469,5.469C49.951,27.926,47.498,30.377,44.482,30.377L44.482,30.377z" fill="url(#SVGID_8_)"/>
+<path d="M44.482,31.73c-3.273,0-5.938-2.663-5.938-5.939 c0-3.271,2.664-5.934,5.938-5.934s5.936,2.663,5.936,5.934C50.418,29.068,47.756,31.73,44.482,31.73L44.482,31.73z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.0771" x2="41.6829" y1="9.6299" y2="9.6299">
+<stop offset="0" style="stop-color:#262626"/>
+<stop offset="0.3879" style="stop-color:#CCCCCC"/>
+<stop offset="0.7091" style="stop-color:#262626"/>
+<stop offset="1" style="stop-color:#757575"/>
+</linearGradient>
+<path d="M50.199,25.41c0,3.157-2.558,5.717-5.717,5.717c-3.156,0-5.718-2.56-5.718-5.717 c0-3.161,2.562-5.717,5.718-5.717C47.642,19.693,50.199,22.249,50.199,25.41z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="36.082" x2="36.082" y1="14.4321" y2="5.0154">
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
+</linearGradient>
+<path d="M44.482,30.377c-3.016,0-5.469-2.451-5.469-5.467c0-3.017,2.453-5.469,5.469-5.469 c3.014,0,5.469,2.452,5.469,5.469C49.951,27.926,47.498,30.377,44.482,30.377L44.482,30.377z" fill="url(#SVGID_8_)"/>
</g>
<g>
- <path d="M44.48,50.206c-3.271,0-5.937-2.661-5.937-5.938 c0-3.271,2.664-5.933,5.937-5.933s5.938,2.662,5.938,5.933C50.418,47.545,47.754,50.206,44.48,50.206L44.48,50.206z" enable-background="new " opacity="0.5"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.0771" x2="41.6834" y1="-8.8452" y2="-8.8452">
- <stop offset="0" style="stop-color:#262626"/>
- <stop offset="0.3879" style="stop-color:#CCCCCC"/>
- <stop offset="0.7091" style="stop-color:#262626"/>
- <stop offset="1" style="stop-color:#757575"/>
- </linearGradient>
- <circle cx="44.48" cy="43.885" fill="url(#SVGID_9_)" r="5.718"/>
-
- <linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="36.0811" x2="36.0811" y1="-4.0439" y2="-13.4606">
- <stop offset="0.1576" style="stop-color:#36B5FF"/>
- <stop offset="0.8242" style="stop-color:#1B66D8"/>
- <stop offset="1" style="stop-color:#2183E0"/>
- </linearGradient>
- <path d="M44.48,48.854c-3.015,0-5.467-2.453-5.467-5.47c0-3.015,2.452-5.466,5.467-5.466 c3.016,0,5.469,2.451,5.469,5.466C49.949,46.4,47.496,48.854,44.48,48.854L44.48,48.854z" fill="url(#SVGID_10_)"/>
+<path d="M44.48,50.206c-3.271,0-5.937-2.661-5.937-5.938 c0-3.271,2.664-5.933,5.937-5.933s5.938,2.662,5.938,5.933C50.418,47.545,47.754,50.206,44.48,50.206L44.48,50.206z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.0771" x2="41.6834" y1="-8.8452" y2="-8.8452">
+<stop offset="0" style="stop-color:#262626"/>
+<stop offset="0.3879" style="stop-color:#CCCCCC"/>
+<stop offset="0.7091" style="stop-color:#262626"/>
+<stop offset="1" style="stop-color:#757575"/>
+</linearGradient>
+<circle cx="44.48" cy="43.885" fill="url(#SVGID_9_)" r="5.718"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="36.0811" x2="36.0811" y1="-4.0439" y2="-13.4606">
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="0.1576" style="stop-color:#36B5FF"/>
+<stop offset="0.8242" style="stop-color:#1B66D8"/>
+<stop offset="1" style="stop-color:#2183E0"/>
+</linearGradient>
+<path d="M44.48,48.854c-3.015,0-5.467-2.453-5.467-5.47c0-3.015,2.452-5.466,5.467-5.466 c3.016,0,5.469,2.451,5.469,5.466C49.949,46.4,47.496,48.854,44.48,48.854L44.48,48.854z" fill="url(#SVGID_10_)"/>
</g>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_internet_radio.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_internet_radio.svg Thu May 27 13:10:59 2010 +0300
@@ -1,340 +1,339 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="11.647" y2="52.3348">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
</linearGradient>
<path d="M58,50.776c0,0.858-0.697,1.556-1.557,1.556H3.555C2.694,52.332,2,51.635,2,50.776V13.443 c0-0.859,0.694-1.556,1.555-1.556h52.889c0.859,0,1.557,0.696,1.557,1.556V50.776z" fill="url(#SVGID_1_)"/>
-<path d="M56.443,11.888H3.555C2.694,11.888,2,12.584,2,13.443v12.056l56-6.158v-5.897 C58,12.584,57.303,11.888,56.443,11.888z" fill="#FFFFFF" opacity="0.1"/>
+<path d="M56.443,11.888H3.555C2.694,11.888,2,12.584,2,13.443v12.056l56-6.158v-5.897 C58,12.584,57.303,11.888,56.443,11.888z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<path d="M56.443,12.666c0.428,0,0.777,0.349,0.777,0.777v37.333c0,0.428-0.35,0.778-0.777,0.778H3.555 c-0.43,0-0.778-0.351-0.778-0.778V13.443c0-0.429,0.349-0.777,0.778-0.777H56.443 M56.443,11.888H3.555 C2.694,11.888,2,12.584,2,13.443v37.333c0,0.858,0.694,1.556,1.555,1.556h52.889c0.859,0,1.557-0.697,1.557-1.556V13.443 C58,12.584,57.303,11.888,56.443,11.888L56.443,11.888z" fill="#D83506"/>
<path d="M56.443,51.555H3.555C2.694,51.555,2,50.857,2,49.999v0.777c0,0.858,0.694,1.556,1.555,1.556h52.889 c0.859,0,1.557-0.697,1.557-1.556v-0.777C58,50.857,57.303,51.555,56.443,51.555z" fill="#600909"/>
-<path d="M56.443,11.888H3.555C2.694,11.888,2,12.584,2,13.443v0.778c0-0.86,0.694-1.556,1.555-1.556 h52.889c0.859,0,1.557,0.695,1.557,1.556v-0.778C58,12.584,57.303,11.888,56.443,11.888z" fill="#FFFFFF" opacity="0.6"/>
+<path d="M56.443,11.888H3.555C2.694,11.888,2,12.584,2,13.443v0.778c0-0.86,0.694-1.556,1.555-1.556 h52.889c0.859,0,1.557,0.695,1.557,1.556v-0.778C58,12.584,57.303,11.888,56.443,11.888z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="45.9424" x2="45.9424" y1="32.6411" y2="20.912">
- <stop offset="0" style="stop-color:#444243"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#444243"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<circle cx="45.942" cy="26.611" fill="url(#SVGID_2_)" r="6.946"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="45.9424" x2="45.9424" y1="33.9702" y2="28.6358">
- <stop offset="0" style="stop-color:#D9D9D9"/>
- <stop offset="1" style="stop-color:#413F3F"/>
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#413F3F"/>
</linearGradient>
<path d="M45.943,33.558c-3.754,0-6.803-2.979-6.935-6.698c-0.003,0.084-0.013,0.163-0.013,0.248 c0,3.836,3.109,6.946,6.947,6.946c3.836,0,6.945-3.11,6.945-6.946c0-0.085-0.01-0.164-0.01-0.248 C52.744,30.578,49.695,33.558,45.943,33.558z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.9443" x2="45.9443" y1="35.3247" y2="17.436">
- <stop offset="0" style="stop-color:#FF4D00"/>
- <stop offset="1" style="stop-color:#9D1010"/>
+<stop offset="0" style="stop-color:#FF4D00"/>
+<stop offset="1" style="stop-color:#9D1010"/>
</linearGradient>
<path d="M45.943,35.609c-4.933,0-8.944-4.013-8.944-8.943c0-4.933,4.012-8.945,8.944-8.945 s8.945,4.013,8.945,8.945C54.889,31.597,50.876,35.609,45.943,35.609L45.943,35.609z M45.943,18.888 c-4.29,0-7.778,3.488-7.778,7.778c0,4.287,3.488,7.776,7.778,7.776c4.287,0,7.779-3.489,7.779-7.776 C53.723,22.376,50.23,18.888,45.943,18.888L45.943,18.888z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="45.9434" x2="45.9434" y1="20.5371" y2="32.7461">
- <stop offset="0" style="stop-color:#CBCBCB"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<circle cx="45.943" cy="26.642" fill="url(#SVGID_5_)" r="6.104"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="45.9434" x2="45.9434" y1="20.9736" y2="32.3105">
- <stop offset="0.2848" style="stop-color:#FFFFFF"/>
- <stop offset="0.7212" style="stop-color:#7B7B7B"/>
- <stop offset="1" style="stop-color:#A7A7A7"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.2848" style="stop-color:#FFFFFF"/>
+<stop offset="0.7212" style="stop-color:#7B7B7B"/>
+<stop offset="1" style="stop-color:#A7A7A7"/>
</linearGradient>
<circle cx="45.943" cy="26.642" fill="url(#SVGID_6_)" r="5.67"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="45.9434" x2="45.9434" y1="21.4746" y2="31.9404">
- <stop offset="0" style="stop-color:#D9D9D9"/>
- <stop offset="0.8242" style="stop-color:#636363"/>
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.8242" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#636363"/>
</linearGradient>
<path d="M50.705,24.468c0.303,0.662,0.471,1.396,0.471,2.174c0,2.889-2.342,5.233-5.232,5.233 c-2.888,0-5.232-2.345-5.232-5.233s2.345-5.232,5.232-5.232C48.058,21.409,49.879,22.663,50.705,24.468z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="45.9434" x2="45.9434" y1="25.4961" y2="22.9348">
- <stop offset="0" style="stop-color:#636363"/>
- <stop offset="1" style="stop-color:#323232"/>
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#323232"/>
</linearGradient>
<polygon fill="url(#SVGID_8_)" points="44.636,25.397 45.943,22.782 47.251,25.397 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="20.2773" x2="20.2773" y1="30.6846" y2="20.667">
- <stop offset="0" style="stop-color:#636363"/>
- <stop offset="0.6667" style="stop-color:#515151"/>
- <stop offset="1" style="stop-color:#323232"/>
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.6667" style="stop-color:#515151"/>
+<stop offset="1" style="stop-color:#323232"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="10.889" width="28" x="6.277" y="20.055"/>
<rect fill="#D9D9D9" height="0.777" width="28" x="6.277" y="30.943"/>
<polygon fill="#A6A8AB" points="31.945,25.499 31.945,27.832 29.609,27.832 29.609,26.276 28.832,26.276 28.832,27.832 26.498,27.832 26.498,26.276 25.723,26.276 25.723,27.832 23.387,27.832 23.387,26.276 22.61,26.276 22.61,27.832 20.277,27.832 20.277,25.499 19.499,25.499 19.499,27.832 17.166,27.832 17.166,26.276 16.388,26.276 16.388,27.832 14.056,27.832 14.056,26.276 13.276,26.276 13.276,27.832 10.944,27.832 10.944,26.276 10.165,26.276 10.165,27.832 8.609,27.832 8.609,25.499 7.833,25.499 7.833,28.609 8.609,28.609 10.165,28.609 10.944,28.609 13.276,28.609 14.056,28.609 16.388,28.609 17.166,28.609 19.499,28.609 20.277,28.609 22.61,28.609 23.387,28.609 25.723,28.609 26.498,28.609 28.832,28.609 29.609,28.609 31.945,28.609 32.721,28.609 32.721,27.832 32.721,25.499 "/>
<rect fill="#E00000" height="10.889" width="1.556" x="20.301" y="20.055"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="9.127" x2="9.127" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="9.127" cy="41.832" fill="url(#SVGID_10_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="9.126" x2="9.126" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="9.126" cy="41.832" fill="url(#SVGID_11_)" r="1.039"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="13.7295" x2="13.7295" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<path d="M15.285,41.832c0,0.858-0.693,1.556-1.556,1.556c-0.857,0-1.555-0.697-1.555-1.556 c0-0.861,0.697-1.556,1.555-1.556C14.592,40.276,15.285,40.971,15.285,41.832z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="13.7295" x2="13.7295" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="13.73" cy="41.832" fill="url(#SVGID_13_)" r="1.038"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="18.3955" x2="18.3955" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="18.396" cy="41.832" fill="url(#SVGID_14_)" r="1.555"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="18.3955" x2="18.3955" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="18.396" cy="41.832" fill="url(#SVGID_15_)" r="1.038"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="23.0615" x2="23.0615" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="23.062" cy="41.832" fill="url(#SVGID_16_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="23.0635" x2="23.0635" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="23.063" cy="41.832" fill="url(#SVGID_17_)" r="1.038"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="27.7295" x2="27.7295" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="27.729" cy="41.832" fill="url(#SVGID_18_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="27.7295" x2="27.7295" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="27.729" cy="41.832" fill="url(#SVGID_19_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="32.3965" x2="32.3965" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="32.396" cy="41.832" fill="url(#SVGID_20_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="32.3965" x2="32.3965" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="32.396" cy="41.832" fill="url(#SVGID_21_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="9.127" x2="9.127" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="9.127" cy="46.499" fill="url(#SVGID_22_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="9.126" x2="9.126" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="9.126" cy="46.499" fill="url(#SVGID_23_)" r="1.039"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="13.7295" x2="13.7295" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<path d="M15.285,46.499c0,0.858-0.693,1.556-1.556,1.556c-0.857,0-1.555-0.697-1.555-1.556 c0-0.861,0.697-1.556,1.555-1.556C14.592,44.943,15.285,45.638,15.285,46.499z" fill="url(#SVGID_24_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="13.7295" x2="13.7295" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="13.73" cy="46.499" fill="url(#SVGID_25_)" r="1.038"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="18.3955" x2="18.3955" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="18.396" cy="46.499" fill="url(#SVGID_26_)" r="1.555"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="18.3955" x2="18.3955" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="18.396" cy="46.499" fill="url(#SVGID_27_)" r="1.038"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="23.0615" x2="23.0615" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="23.062" cy="46.499" fill="url(#SVGID_28_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="23.0635" x2="23.0635" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="23.063" cy="46.499" fill="url(#SVGID_29_)" r="1.038"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="27.7295" x2="27.7295" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="27.729" cy="46.499" fill="url(#SVGID_30_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="27.7295" x2="27.7295" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="27.729" cy="46.499" fill="url(#SVGID_31_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="32.3965" x2="32.3965" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="32.396" cy="46.499" fill="url(#SVGID_32_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="32.3965" x2="32.3965" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="32.396" cy="46.499" fill="url(#SVGID_33_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="36.999" x2="36.999" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="36.999" cy="41.832" fill="url(#SVGID_34_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="36.999" x2="36.999" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="36.999" cy="41.832" fill="url(#SVGID_35_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="41.666" x2="41.666" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="41.666" cy="41.832" fill="url(#SVGID_36_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="41.666" x2="41.666" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="41.666" cy="41.832" fill="url(#SVGID_37_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="46.333" x2="46.333" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="46.333" cy="41.832" fill="url(#SVGID_38_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="46.333" x2="46.333" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="46.333" cy="41.832" fill="url(#SVGID_39_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="50.999" x2="50.999" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<path d="M52.553,41.832c0,0.858-0.691,1.556-1.553,1.556c-0.858,0-1.556-0.697-1.556-1.556 c0-0.861,0.697-1.556,1.556-1.556C51.861,40.276,52.553,40.971,52.553,41.832z" fill="url(#SVGID_40_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="50.999" x2="50.999" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<path d="M52.037,41.832c0,0.573-0.467,1.037-1.037,1.037c-0.573,0-1.039-0.464-1.039-1.037 s0.466-1.037,1.039-1.037C51.57,40.795,52.037,41.259,52.037,41.832z" fill="url(#SVGID_41_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_42_" x1="36.999" x2="36.999" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="36.999" cy="46.499" fill="url(#SVGID_42_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_43_" x1="36.999" x2="36.999" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="36.999" cy="46.499" fill="url(#SVGID_43_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_44_" x1="41.666" x2="41.666" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="41.666" cy="46.499" fill="url(#SVGID_44_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_45_" x1="41.666" x2="41.666" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="41.666" cy="46.499" fill="url(#SVGID_45_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_46_" x1="46.333" x2="46.333" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="46.333" cy="46.499" fill="url(#SVGID_46_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_47_" x1="46.333" x2="46.333" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="46.333" cy="46.499" fill="url(#SVGID_47_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_48_" x1="50.999" x2="50.999" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<path d="M52.553,46.499c0,0.858-0.691,1.556-1.553,1.556c-0.858,0-1.556-0.697-1.556-1.556 c0-0.861,0.697-1.556,1.556-1.556C51.861,44.943,52.553,45.638,52.553,46.499z" fill="url(#SVGID_48_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_49_" x1="50.999" x2="50.999" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<path d="M52.037,46.499c0,0.573-0.467,1.037-1.037,1.037c-0.573,0-1.039-0.464-1.039-1.037 s0.466-1.037,1.039-1.037C51.57,45.462,52.037,45.926,52.037,46.499z" fill="url(#SVGID_49_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_50_" x1="49.833" x2="49.833" y1="11.5854" y2="6.285">
- <stop offset="0" style="stop-color:#CBCBCB"/>
- <stop offset="0.1576" style="stop-color:#808080"/>
- <stop offset="0.6545" style="stop-color:#E5E5E5"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_50_)" height="5.443" width="6.999" x="46.333" y="6.444"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_51_" x1="37.3877" x2="37.3877" y1="10.1592" y2="7.1295">
- <stop offset="0" style="stop-color:#CBCBCB"/>
- <stop offset="0.1576" style="stop-color:#808080"/>
- <stop offset="0.6545" style="stop-color:#E5E5E5"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_51_)" height="3.111" width="17.89" x="28.443" y="7.221"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_52_" x1="19.1104" x2="19.1104" y1="9.4683" y2="7.9534">
- <stop offset="0" style="stop-color:#CBCBCB"/>
- <stop offset="0.1576" style="stop-color:#808080"/>
- <stop offset="0.6545" style="stop-color:#E5E5E5"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_52_)" height="1.556" width="18.666" x="9.777" y="7.999"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_53_" x1="8.6104" x2="8.6104" y1="10.1592" y2="7.1295">
- <stop offset="0" style="stop-color:#CBCBCB"/>
- <stop offset="0.1576" style="stop-color:#808080"/>
- <stop offset="0.6545" style="stop-color:#E5E5E5"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_53_)" height="3.111" width="2.334" x="7.443" y="7.221"/>
-<path d="M49.832,11.498c-1.285,0-2.333-1.047-2.333-2.332c0-1.288,1.048-2.334,2.333-2.334s2.334,1.046,2.334,2.334 C52.166,10.451,51.117,11.498,49.832,11.498L49.832,11.498z" opacity="0.2"/>
-<circle cx="49.833" cy="9.166" opacity="0.2" r="1.944"/>
+<path d="M49.832,11.498c-1.285,0-2.333-1.047-2.333-2.332c0-1.288,1.048-2.334,2.333-2.334s2.334,1.046,2.334,2.334 C52.166,10.451,51.117,11.498,49.832,11.498L49.832,11.498z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<circle cx="49.833" cy="9.166" fill-opacity="0.2" r="1.944" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_54_" x1="49.8311" x2="49.8311" y1="8.0317" y2="10.2999">
- <stop offset="0" style="stop-color:#E5E5E5"/>
- <stop offset="0.7576" style="stop-color:#A7A7A7"/>
- <stop offset="1" style="stop-color:#CBCBCB"/>
+<stop offset="0" style="stop-color:#E5E5E5"/>
+<stop offset="0.7576" style="stop-color:#A7A7A7"/>
+<stop offset="1" style="stop-color:#CBCBCB"/>
</linearGradient>
<circle cx="49.831" cy="9.166" fill="url(#SVGID_54_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_55_" x1="49.8311" x2="49.8311" y1="7.6592" y2="10.6737">
- <stop offset="0.2848" style="stop-color:#FFFFFF"/>
- <stop offset="0.7212" style="stop-color:#7B7B7B"/>
- <stop offset="1" style="stop-color:#A7A7A7"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.2848" style="stop-color:#FFFFFF"/>
+<stop offset="0.7212" style="stop-color:#7B7B7B"/>
+<stop offset="1" style="stop-color:#A7A7A7"/>
</linearGradient>
<path d="M49.832,7.999C50.475,7.999,51,8.521,51,9.166c0,0.643-0.525,1.166-1.168,1.166 s-1.166-0.523-1.166-1.166C48.666,8.521,49.189,7.999,49.832,7.999 M49.832,7.61c-0.859,0-1.557,0.694-1.557,1.556 c0,0.858,0.697,1.556,1.557,1.556c0.857,0,1.555-0.697,1.555-1.556C51.387,8.305,50.689,7.61,49.832,7.61L49.832,7.61z" fill="url(#SVGID_55_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" enable-background="new " opacity="0.35"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
-<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" enable-background="new " opacity="0.3"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" enable-background="new " fill="url(#SVGID_2__)" opacity="0.3"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_java.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_java.svg Thu May 27 13:10:59 2010 +0300
@@ -1,75 +1,79 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="27.8457" x2="27.8457" y1="3.1968" y2="48.3756">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.4606" style="stop-color:#BDC2C4"/>
- <stop offset="0.7333" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.4606" style="stop-color:#BDC2C4"/>
+<stop offset="0.7333" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M51.063,18.041H31.026v-2.398c2.141-1.259,4.404-2.609,4.404-5.144c0-3.896-4.045-7.063-7.939-7.063 s-7.937,3.168-7.937,7.063c0,2.535,2.265,3.892,4.414,5.146v2.396h-5.7c-1.445,0-2.628,1.183-2.628,2.625v13.049h-1.452 c-1.211-2.092-2.594-4.378-5.186-4.378C5.136,29.337,2,33.348,2,37.217c0,3.868,3.136,7.879,7.003,7.879 c2.592,0,3.975-2.285,5.186-4.377h1.452v3.885c0,1.445,1.183,2.627,2.628,2.627h6.205v-3.62c-1.89-1.103-3.883-2.296-3.883-4.526 c0-3.426,3.557-6.213,6.981-6.213s6.983,2.787,6.983,6.213c0,2.229-1.991,3.418-3.873,4.524v3.622h20.381 c1.447,0,2.629-1.182,2.629-2.627V20.666C53.692,19.224,52.511,18.041,51.063,18.041z" fill="url(#SVGID_1_)"/>
-<path d="M18.269,18.758h5.7v-0.717h-5.7c-1.445,0-2.628,1.183-2.628,2.625v0.718 C15.641,19.941,16.823,18.758,18.269,18.758z" fill="#FFFFFF" opacity="0.75"/>
-<path d="M27.491,4.152c3.781,0,7.693,2.99,7.918,6.729c0.012-0.124,0.021-0.252,0.021-0.383 c0-3.896-4.045-7.063-7.939-7.063s-7.937,3.168-7.937,7.063c0,0.131,0.01,0.258,0.021,0.383C19.8,7.143,23.71,4.152,27.491,4.152z" fill="#FFFFFF" opacity="0.75"/>
-<path d="M30.683,43.608v0.718c1.882-1.107,3.873-2.295,3.873-4.523c0-0.113-0.014-0.225-0.021-0.336 C34.32,41.452,32.454,42.566,30.683,43.608z" fill="#FFFFFF" opacity="0.75"/>
-<path d="M9.003,30.055c2.592,0,3.975,2.285,5.186,4.378h1.452v-0.718h-1.452 c-1.211-2.092-2.594-4.378-5.186-4.378C5.136,29.337,2,33.348,2,37.217c0,0.119,0.013,0.238,0.019,0.358 C2.203,33.822,5.256,30.055,9.003,30.055z" fill="#FFFFFF" opacity="0.75"/>
-<path d="M51.063,18.041H31.026v0.717h20.037c1.447,0,2.629,1.184,2.629,2.626v-0.718 C53.692,19.224,52.511,18.041,51.063,18.041z" fill="#FFFFFF" opacity="0.75"/>
-<path d="M20.612,39.467c-0.008,0.111-0.021,0.223-0.021,0.336c0,2.229,1.993,3.422,3.883,4.525V43.61 C22.696,42.572,20.827,41.453,20.612,39.467z" fill="#FFFFFF" opacity="0.75"/>
-<path d="M53.692,32.871H40.51l-0.113,0.01l-0.056,0.008c-1.32,0.211-2.018,1.203-2.18,1.639 l-1.121,2.34c-0.059,0.079-0.109,0.162-0.154,0.241c-0.066,0.112-0.119,0.222-0.129,0.247c-0.045,0.096-0.088,0.196-0.146,0.367 c-0.1,0.307-0.148,0.6-0.148,0.893v8.615h15.32c0.754,0,1.43-0.325,1.91-0.836V32.871z" fill="#020202" opacity="0.1"/>
-<path d="M53.692,33.589H40.51l-0.056,0.009c-0.988,0.158-1.514,0.889-1.646,1.24l-1.151,2.401 c-0.056,0.073-0.105,0.149-0.152,0.231c-0.045,0.078-0.083,0.153-0.103,0.201c-0.036,0.074-0.067,0.15-0.109,0.273 c-0.076,0.233-0.113,0.452-0.113,0.67v8.615h14.603c0.754,0,1.43-0.325,1.91-0.836V33.589z" fill="#020202" opacity="0.2"/>
+<path d="M18.269,18.758h5.7v-0.717h-5.7c-1.445,0-2.628,1.183-2.628,2.625v0.718 C15.641,19.941,16.823,18.758,18.269,18.758z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M27.491,4.152c3.781,0,7.693,2.99,7.918,6.729c0.012-0.124,0.021-0.252,0.021-0.383 c0-3.896-4.045-7.063-7.939-7.063s-7.937,3.168-7.937,7.063c0,0.131,0.01,0.258,0.021,0.383C19.8,7.143,23.71,4.152,27.491,4.152z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M30.683,43.608v0.718c1.882-1.107,3.873-2.295,3.873-4.523c0-0.113-0.014-0.225-0.021-0.336 C34.32,41.452,32.454,42.566,30.683,43.608z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M9.003,30.055c2.592,0,3.975,2.285,5.186,4.378h1.452v-0.718h-1.452 c-1.211-2.092-2.594-4.378-5.186-4.378C5.136,29.337,2,33.348,2,37.217c0,0.119,0.013,0.238,0.019,0.358 C2.203,33.822,5.256,30.055,9.003,30.055z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M51.063,18.041H31.026v0.717h20.037c1.447,0,2.629,1.184,2.629,2.626v-0.718 C53.692,19.224,52.511,18.041,51.063,18.041z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M20.612,39.467c-0.008,0.111-0.021,0.223-0.021,0.336c0,2.229,1.993,3.422,3.883,4.525V43.61 C22.696,42.572,20.827,41.453,20.612,39.467z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M53.692,32.871H40.51l-0.113,0.01l-0.056,0.008c-1.32,0.211-2.018,1.203-2.18,1.639 l-1.121,2.34c-0.059,0.079-0.109,0.162-0.154,0.241c-0.066,0.112-0.119,0.222-0.129,0.247c-0.045,0.096-0.088,0.196-0.146,0.367 c-0.1,0.307-0.148,0.6-0.148,0.893v8.615h15.32c0.754,0,1.43-0.325,1.91-0.836V32.871z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M53.692,33.589H40.51l-0.056,0.009c-0.988,0.158-1.514,0.889-1.646,1.24l-1.151,2.401 c-0.056,0.073-0.105,0.149-0.152,0.231c-0.045,0.078-0.083,0.153-0.103,0.201c-0.036,0.074-0.067,0.15-0.109,0.273 c-0.076,0.233-0.113,0.452-0.113,0.67v8.615h14.603c0.754,0,1.43-0.325,1.91-0.836V33.589z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="47.9434" x2="47.9434" y1="34.2832" y2="38.7279">
- <stop offset="0" style="stop-color:#3DAEFF"/>
- <stop offset="1" style="stop-color:#1A79D1"/>
+<stop offset="0" style="stop-color:#3DAEFF"/>
+<stop offset="1" style="stop-color:#1A79D1"/>
</linearGradient>
<path d="M57.618,37.627l-1.189-2.479c0,0-0.269-0.707-1.109-0.842H40.567 c-0.842,0.135-1.111,0.842-1.111,0.842l-1.188,2.479c-0.288,0.326-0.356,0.74-0.37,0.988h20.092 C57.975,38.367,57.907,37.953,57.618,37.627z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="47.9492" x2="47.9492" y1="37" y2="57.4615">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.6909" style="stop-color:#1347BA"/>
- <stop offset="1" style="stop-color:#2D9BD2"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.6909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#2D9BD2"/>
</linearGradient>
<path d="M58,55.128c0,0.793-0.644,1.436-1.436,1.436H39.333c-0.793,0-1.436-0.643-1.436-1.436V38.615 c0-0.793,0.643-1.436,1.436-1.436h17.231c0.792,0,1.436,0.643,1.436,1.436V55.128z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9492" x2="47.9492" y1="37.1016" y2="51.9137">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.1818" style="stop-color:#2B93C7"/>
- <stop offset="0.8606" style="stop-color:#0F348A"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.1818" style="stop-color:#2B93C7"/>
+<stop offset="0.8606" style="stop-color:#0F348A"/>
+<stop offset="1" style="stop-color:#0F348A"/>
</linearGradient>
<path d="M40.769,51.538h14.359c0.793,0,1.437-0.644,1.437-1.437V37.18H39.333v12.922 C39.333,50.895,39.976,51.538,40.769,51.538z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="47.9482" x2="47.9482" y1="50.2227" y2="56.8327">
- <stop offset="0.4121" style="stop-color:#113EA3"/>
- <stop offset="1" style="stop-color:#2174BF"/>
+<stop offset="0" style="stop-color:#113EA3"/>
+<stop offset="0.4121" style="stop-color:#113EA3"/>
+<stop offset="1" style="stop-color:#2174BF"/>
</linearGradient>
<path d="M55.87,51.326c-0.17,0.103-0.36,0.168-0.565,0.194c-0.047,0.011-0.103,0.018-0.177,0.018H40.769 c-0.074,0-0.129-0.007-0.176-0.018c-0.205-0.026-0.396-0.092-0.564-0.194l-1.93,4.525c0.25,0.424,0.707,0.712,1.234,0.712h17.231 c0.528,0,0.984-0.288,1.233-0.712L55.87,51.326z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="47.9482" x2="47.9482" y1="50.3188" y2="56.3521">
- <stop offset="0.4121" style="stop-color:#0F1C94"/>
- <stop offset="1" style="stop-color:#2B93C7"/>
+<stop offset="0" style="stop-color:#0F1C94"/>
+<stop offset="0.4121" style="stop-color:#0F1C94"/>
+<stop offset="1" style="stop-color:#2B93C7"/>
</linearGradient>
-<path d="M40.028,52.044c0.169,0.103,0.359,0.169,0.564,0.194 c0.047,0.011,0.102,0.018,0.176,0.018h14.359c0.074,0,0.13-0.007,0.177-0.018c0.205-0.025,0.396-0.092,0.565-0.194l1.73,4.063 c0.074-0.078,0.143-0.162,0.197-0.255l-1.928-4.525c-0.17,0.103-0.36,0.168-0.565,0.194c-0.047,0.011-0.103,0.018-0.177,0.018 H40.769c-0.074,0-0.129-0.007-0.176-0.018c-0.205-0.026-0.396-0.092-0.564-0.194l-1.93,4.525c0.056,0.093,0.125,0.177,0.198,0.255 L40.028,52.044z" fill="url(#SVGID_6_)" opacity="0.8"/>
+<path d="M40.028,52.044c0.169,0.103,0.359,0.169,0.564,0.194 c0.047,0.011,0.102,0.018,0.176,0.018h14.359c0.074,0,0.13-0.007,0.177-0.018c0.205-0.025,0.396-0.092,0.565-0.194l1.73,4.063 c0.074-0.078,0.143-0.162,0.197-0.255l-1.928-4.525c-0.17,0.103-0.36,0.168-0.565,0.194c-0.047,0.011-0.103,0.018-0.177,0.018 H40.769c-0.074,0-0.129-0.007-0.176-0.018c-0.205-0.026-0.396-0.092-0.564-0.194l-1.93,4.525c0.056,0.093,0.125,0.177,0.198,0.255 L40.028,52.044z" fill="url(#SVGID_6_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="47.9492" x2="47.9492" y1="37.1016" y2="51.9137">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.1818" style="stop-color:#2786B5"/>
- <stop offset="0.5394" style="stop-color:#1F4BA3"/>
- <stop offset="0.8606" style="stop-color:#0D1F78"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.1818" style="stop-color:#2786B5"/>
+<stop offset="0.5394" style="stop-color:#1F4BA3"/>
+<stop offset="0.8606" style="stop-color:#0D1F78"/>
+<stop offset="1" style="stop-color:#0D1F78"/>
</linearGradient>
<path d="M39.333,37.18v12.922c0,0.793,0.643,1.437,1.436,1.437h14.359c0.793,0,1.437-0.644,1.437-1.437V37.18 H39.333z M55.847,50.102c0,0.396-0.323,0.719-0.719,0.719H40.769c-0.395,0-0.717-0.322-0.717-0.719V37.896h15.795V50.102z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="47.9492" x2="47.9492" y1="34.291" y2="37.2549">
- <stop offset="0" style="stop-color:#57ADFF"/>
- <stop offset="0.9879" style="stop-color:#0048B5"/>
+<stop offset="0" style="stop-color:#57ADFF"/>
+<stop offset="0.9879" style="stop-color:#0048B5"/>
+<stop offset="1" style="stop-color:#0048B5"/>
</linearGradient>
<path d="M56.564,35.743c0-0.793-0.644-1.437-1.437-1.437H40.769c-0.793,0-1.436,0.644-1.436,1.437v1.437 h17.231V35.743z" fill="url(#SVGID_8_)"/>
<path d="M39.333,37.18h17.231c0.465,0,0.875,0.225,1.138,0.568c-0.029-0.041-0.05-0.082-0.084-0.121l-1.189-2.479 c0,0-0.269-0.707-1.109-0.842H40.567c-0.842,0.135-1.111,0.842-1.111,0.842l-1.188,2.479c-0.101,0.115-0.167,0.238-0.222,0.362 C38.28,37.512,38.765,37.18,39.333,37.18z" fill="#A1E2FF"/>
<path d="M57.786,37.869c0.006,0.011,0.012,0.022,0.018,0.033C57.798,37.891,57.792,37.881,57.786,37.869z" fill="#A1E2FF"/>
<path d="M37.985,38.139c-0.004,0.01-0.006,0.02-0.01,0.029C37.979,38.158,37.981,38.148,37.985,38.139z" fill="#A1E2FF"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="47.9492" x2="47.9492" y1="37.0742" y2="57.0705">
- <stop offset="0" style="stop-color:#B1E5F2"/>
- <stop offset="0.4545" style="stop-color:#6CA6EB"/>
- <stop offset="0.6909" style="stop-color:#2B8BCF"/>
- <stop offset="1" style="stop-color:#33AFED"/>
+<stop offset="0" style="stop-color:#B1E5F2"/>
+<stop offset="0.4545" style="stop-color:#6CA6EB"/>
+<stop offset="0.6909" style="stop-color:#2B8BCF"/>
+<stop offset="1" style="stop-color:#33AFED"/>
</linearGradient>
<path d="M56.564,37.18H39.333c-0.793,0-1.436,0.643-1.436,1.436v16.513c0,0.793,0.643,1.436,1.436,1.436 h17.231c0.792,0,1.436-0.643,1.436-1.436V38.615C58,37.822,57.356,37.18,56.564,37.18z M57.282,55.128 c0,0.396-0.322,0.718-0.718,0.718H39.333c-0.395,0-0.718-0.322-0.718-0.718V38.615c0-0.396,0.323-0.719,0.718-0.719h17.231 c0.396,0,0.718,0.322,0.718,0.719V55.128z" fill="url(#SVGID_9_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_just_audio.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_just_audio.svg Thu May 27 13:10:59 2010 +0300
@@ -1,83 +1,77 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
- <stop offset="0" style="stop-color:#757575"/>
- <stop offset="0.2424" style="stop-color:#000000"/>
- <stop offset="0.8606" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#363636"/>
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
-<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" enable-background="new " fill="#FFFFFF" opacity="0.55"/>
-<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" enable-background="new " fill="#FFFFFF" opacity="0.1"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.5" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
-<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" enable-background="new " fill="#FFFFFF" opacity="0.5"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#404040"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
-<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" enable-background="new " fill="#FFFFFF" opacity="0.2"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="24.728,0 23.608,0.487 0,0.487 0,30.487 30,30.487 30,0.487 24.928,0.487 "/>
-<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" opacity="0.35"/>
+<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179.9351" x2="-2179.9351" y1="2902.811" y2="2880.1646">
- <stop offset="0" style="stop-color:#8CFF24"/>
- <stop offset="1" style="stop-color:#15570B"/>
+<stop offset="0" style="stop-color:#8CFF24"/>
+<stop offset="1" style="stop-color:#15570B"/>
</linearGradient>
<path d="M25.98,5.682l-1.79-4.357L13.902,5.902l0.016,13.899c-1.574-1.029-3.896-1.366-6.257-0.729 c-3.722,1.003-6.127,4.041-5.374,6.78c0.756,2.742,4.383,4.15,8.104,3.146c3.146-0.849,5.324-3.094,5.311-5.493 c-0.01-2.399,0.02-8.913,0-13.625L25.98,5.682z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1201.8184" x2="-1201.8184" y1="3393.1226" y2="3404.4397">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="13.918,17.409 13.907,5.902 13.902,5.902 13.916,17.408 "/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1187.957" x2="-1187.957" y1="3393.1177" y2="3404.4392">
- <stop offset="0" style="stop-color:#9EFF47"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#9EFF47"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<path d="M15.701,9.169c0.005,0.759,0.006-0.117,0.008,0.711L25.98,5.682l-0.252-0.646L15.701,9.169z" fill="url(#SVGID_3__)"/>
<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188.0039" x2="-1188.0039" y1="3402.1909" y2="3430.4734">
- <stop offset="0" style="stop-color:#B3FF6E"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#B3FF6E"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<polygon fill="url(#SVGID_4__)" points="14.072,20.2 14.072,6.3 24.389,1.807 24.19,1.324 13.674,5.902 13.674,19.803 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2185.0737" x2="-2185.0737" y1="2887.9233" y2="2879.6807">
- <stop offset="0" style="stop-color:#B2F56E"/>
- <stop offset="0.4667" style="stop-color:#40AD00"/>
- <stop offset="1" style="stop-color:#074D00"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.4667" style="stop-color:#40AD00"/>
+<stop offset="1" style="stop-color:#074D00"/>
</linearGradient>
<path d="M7.96,28.527c-2.474,0.012-4.447-1.129-4.909-2.839c-0.28-1.039,0.018-2.187,0.84-3.229 c0.9-1.141,2.291-2.007,3.923-2.436c0.688-0.184,1.385-0.277,2.075-0.281c2.474-0.013,4.445,1.129,4.91,2.84 c0.615,2.267-1.522,4.807-4.764,5.664C9.347,28.43,8.647,28.522,7.96,28.527L7.96,28.527z" fill="url(#SVGID_5_)"/>
<rect fill="none" height="30" width="30" y="0.487"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<rect height="33.866" opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
+<rect fill-opacity="0.35" height="33.866" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="260" x2="284" y1="655.9761" y2="655.9761">
- <stop offset="0" style="stop-color:#FF4D00"/>
- <stop offset="0.8424" style="stop-color:#CC1414"/>
- <stop offset="1" style="stop-color:#FF4D00"/>
+<stop offset="0" style="stop-color:#FF4D00"/>
+<stop offset="0.8424" style="stop-color:#CC1414"/>
+<stop offset="1" style="stop-color:#FF4D00"/>
</linearGradient>
<polygon fill="url(#SVGID_1___)" points="25.809,26.431 3,4.177 4.191,2.956 27,25.21 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_key_screen.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_key_screen.svg Thu May 27 13:10:59 2010 +0300
@@ -1,215 +1,215 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="37.589" opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
- <stop offset="0" style="stop-color:#85EFFF"/>
- <stop offset="1" style="stop-color:#3BA1D9"/>
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
<rect fill="#9FE4FF" height="0.767" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D1D7D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D1D7D9"/>
</linearGradient>
<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
- <stop offset="0" style="stop-color:#6C7375"/>
- <stop offset="1" style="stop-color:#BDC2C4"/>
+<stop offset="0" style="stop-color:#6C7375"/>
+<stop offset="1" style="stop-color:#BDC2C4"/>
</linearGradient>
<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" opacity="0.6"/>
-<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" opacity="0.5"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" opacity="0.2"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" opacity="0.4"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" opacity="0.7"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" opacity="0.4"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" opacity="0.7"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="7.6196" x2="7.6196" y1="1" y2="28.8433">
- <stop offset="0" style="stop-color:#96E9FA"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</linearGradient>
<rect fill="url(#SVGID_1__)" height="6" width="6" x="4.62" y="1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="14.9536" x2="14.9536" y1="1" y2="28.8433">
- <stop offset="0" style="stop-color:#96E9FA"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</linearGradient>
<rect fill="url(#SVGID_2__)" height="6" width="6" x="11.954" y="1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="22.3809" x2="22.3809" y1="1" y2="28.8433">
- <stop offset="0" style="stop-color:#96E9FA"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</linearGradient>
<rect fill="url(#SVGID_3__)" height="6" width="6" x="19.381" y="1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="7.6196" x2="7.6196" y1="1.0005" y2="28.8461">
- <stop offset="0" style="stop-color:#96E9FA"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</linearGradient>
<rect fill="url(#SVGID_4__)" height="6" width="6" x="4.62" y="8.239"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="14.9536" x2="14.9536" y1="1.0005" y2="28.8461">
- <stop offset="0" style="stop-color:#96E9FA"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</linearGradient>
<rect fill="url(#SVGID_5__)" height="6" width="6" x="11.954" y="8.239"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="22.3809" x2="22.3809" y1="1.0005" y2="28.8461">
- <stop offset="0" style="stop-color:#96E9FA"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</linearGradient>
<rect fill="url(#SVGID_6__)" height="6" width="6" x="19.381" y="8.239"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7__" x1="7.6196" x2="7.6196" y1="1.0024" y2="28.8444">
- <stop offset="0" style="stop-color:#96E9FA"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</linearGradient>
<rect fill="url(#SVGID_7__)" height="5.999" width="6" x="4.62" y="15.572"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8__" x1="14.9536" x2="14.9536" y1="1.0024" y2="28.8444">
- <stop offset="0" style="stop-color:#96E9FA"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</linearGradient>
<rect fill="url(#SVGID_8__)" height="5.999" width="6" x="11.954" y="15.572"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9__" x1="14.9536" x2="14.9536" y1="1.0049" y2="28.845">
- <stop offset="0" style="stop-color:#96E9FA"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</linearGradient>
<rect fill="url(#SVGID_9__)" height="6" width="6" x="11.954" y="23"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10__" x1="22.3809" x2="22.3809" y1="1.0024" y2="28.8444">
- <stop offset="0" style="stop-color:#96E9FA"/>
- <stop offset="1" style="stop-color:#0087D9"/>
+<stop offset="0" style="stop-color:#96E9FA"/>
+<stop offset="1" style="stop-color:#0087D9"/>
</linearGradient>
<rect fill="url(#SVGID_10__)" height="5.999" width="6" x="19.381" y="15.572"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11__" x1="7.6196" x2="7.6196" y1="1" y2="6.9042">
- <stop offset="0" style="stop-color:#73E3FF"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#73E3FF"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M9.915,1.705v4.591h-4.59V1.705H9.915 M10.619,1h-6v6h6V1L10.619,1z" fill="url(#SVGID_11__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12__" x1="14.9536" x2="14.9536" y1="1" y2="6.9042">
- <stop offset="0" style="stop-color:#73E3FF"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#73E3FF"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M17.249,1.705v4.591h-4.59V1.705H17.249 M17.954,1h-6v6h6V1L17.954,1z" fill="url(#SVGID_12__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13__" x1="22.3809" x2="22.3809" y1="1" y2="6.9042">
- <stop offset="0" style="stop-color:#73E3FF"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#73E3FF"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M24.676,1.705v4.591h-4.59V1.705H24.676 M25.381,1h-6v6h6V1L25.381,1z" fill="url(#SVGID_13__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14__" x1="7.6196" x2="7.6196" y1="8.312" y2="14.2147">
- <stop offset="0" style="stop-color:#73E3FF"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#73E3FF"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M9.915,8.943v4.591h-4.59V8.943H9.915 M10.619,8.239h-6v6h6V8.239L10.619,8.239z" fill="url(#SVGID_14__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15__" x1="14.9536" x2="14.9536" y1="8.312" y2="14.2147">
- <stop offset="0" style="stop-color:#73E3FF"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#73E3FF"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M17.249,8.943v4.591h-4.59V8.943H17.249 M17.954,8.239h-6v6h6V8.239L17.954,8.239z" fill="url(#SVGID_15__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16__" x1="22.3809" x2="22.3809" y1="8.312" y2="14.2147">
- <stop offset="0" style="stop-color:#73E3FF"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#73E3FF"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M24.676,8.943v4.591h-4.59V8.943H24.676 M25.381,8.239h-6v6h6V8.239L25.381,8.239z" fill="url(#SVGID_16__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17__" x1="7.6196" x2="7.6196" y1="15.7993" y2="21.6132">
- <stop offset="0" style="stop-color:#73E3FF"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#73E3FF"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M9.915,16.275v4.592h-4.59v-4.592H9.915 M10.619,15.572h-6v5.999h6V15.572L10.619,15.572z" fill="url(#SVGID_17__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="14.9536" x2="14.9536" y1="15.7993" y2="21.6132">
- <stop offset="0" style="stop-color:#73E3FF"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#73E3FF"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M17.249,16.275v4.592h-4.59v-4.592H17.249 M17.954,15.572h-6v5.999h6V15.572L17.954,15.572z" fill="url(#SVGID_18_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="14.9536" x2="14.9536" y1="23.0225" y2="28.8353">
- <stop offset="0" style="stop-color:#73E3FF"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#73E3FF"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M17.249,23.705v4.59h-4.59v-4.59H17.249 M17.954,23h-6v6h6V23L17.954,23z" fill="url(#SVGID_19_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="22.3809" x2="22.3809" y1="15.7993" y2="21.6132">
- <stop offset="0" style="stop-color:#73E3FF"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#73E3FF"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M24.676,16.275v4.592h-4.59v-4.592H24.676 M25.381,15.572h-6v5.999h6V15.572L25.381,15.572z" fill="url(#SVGID_20_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_keyboard.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_keyboard.svg Thu May 27 13:10:59 2010 +0300
@@ -1,358 +1,381 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="14.5566" y2="45.5373">
- <stop offset="0" style="stop-color:#CED5D8"/>
- <stop offset="0.7308" style="stop-color:#818687"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#CED5D8"/>
+<stop offset="0.7308" style="stop-color:#818687"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
-<path d="M1,43.384c0,1.133,0.912,2.06,2.03,2.06h53.937c1.117,0,2.033-0.927,2.033-2.06V16.616 c0-1.133-0.916-2.06-2.033-2.06H3.03c-1.118,0-2.03,0.927-2.03,2.06V43.384z" fill="url(#SVGID_1_)" opacity="0.6"/>
+<path d="M1,43.384c0,1.133,0.912,2.06,2.03,2.06h53.937c1.117,0,2.033-0.927,2.033-2.06V16.616 c0-1.133-0.916-2.06-2.033-2.06H3.03c-1.118,0-2.03,0.927-2.03,2.06V43.384z" fill="url(#SVGID_1_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="15.5859" y2="44.5027">
- <stop offset="0" style="stop-color:#BCC3C5"/>
- <stop offset="0.8121" style="stop-color:#7A8285"/>
- <stop offset="1" style="stop-color:#B7BDBF"/>
+<stop offset="0" style="stop-color:#BCC3C5"/>
+<stop offset="0.8121" style="stop-color:#7A8285"/>
+<stop offset="1" style="stop-color:#B7BDBF"/>
</linearGradient>
<path d="M56.967,44.415H3.03c-0.554,0-1.002-0.462-1.002-1.031V16.616c0-0.566,0.448-1.03,1.002-1.03h53.937 c0.553,0,1.003,0.464,1.003,1.03v26.768C57.97,43.953,57.52,44.415,56.967,44.415L56.967,44.415z" fill="url(#SVGID_2_)"/>
-<path d="M21.949,36.123c0,0.568-0.459,1.029-1.028,1.029h-3.089c-0.567,0-1.029-0.461-1.029-1.029v-3.088 c0-0.57,0.462-1.031,1.029-1.031h3.089c0.569,0,1.028,0.461,1.028,1.031V36.123z" opacity="0.25"/>
+<path d="M21.949,36.123c0,0.568-0.459,1.029-1.028,1.029h-3.089c-0.567,0-1.029-0.461-1.029-1.029v-3.088 c0-0.57,0.462-1.031,1.029-1.031h3.089c0.569,0,1.028,0.461,1.028,1.031V36.123z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="19.376" x2="19.376" y1="31.4229" y2="36.6183">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M21.949,35.565c0,0.568-0.459,1.028-1.028,1.028h-3.089c-0.567,0-1.029-0.46-1.029-1.028v-3.089 c0-0.567,0.462-1.03,1.029-1.03h3.089c0.569,0,1.028,0.463,1.028,1.03V35.565z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="21.5" x2="17.3381" y1="34.0205" y2="34.0205">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M17.832,36.08c-0.284,0-0.516-0.231-0.516-0.515v-3.089c0-0.284,0.231-0.516,0.516-0.516h3.089 c0.283,0,0.515,0.231,0.515,0.516v3.089c0,0.283-0.231,0.515-0.515,0.515H17.832z" fill="url(#SVGID_4_)"/>
-<path d="M28.128,36.123c0,0.568-0.462,1.029-1.029,1.029h-3.09c-0.568,0-1.028-0.461-1.028-1.029v-3.088 c0-0.57,0.46-1.031,1.028-1.031h3.09c0.567,0,1.029,0.461,1.029,1.031V36.123z" opacity="0.25"/>
+<path d="M28.128,36.123c0,0.568-0.462,1.029-1.029,1.029h-3.09c-0.568,0-1.028-0.461-1.028-1.029v-3.088 c0-0.57,0.46-1.031,1.028-1.031h3.09c0.567,0,1.029,0.461,1.029,1.031V36.123z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="25.5547" x2="25.5547" y1="31.4229" y2="36.6183">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M28.128,35.565c0,0.568-0.462,1.028-1.029,1.028h-3.09c-0.568,0-1.028-0.46-1.028-1.028v-3.089 c0-0.567,0.46-1.03,1.028-1.03h3.09c0.567,0,1.029,0.463,1.029,1.03V35.565z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="27.6777" x2="23.5168" y1="34.0205" y2="34.0205">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M24.009,36.08c-0.283,0-0.514-0.231-0.514-0.515v-3.089c0-0.284,0.23-0.516,0.514-0.516h3.09 c0.284,0,0.515,0.231,0.515,0.516v3.089c0,0.283-0.23,0.515-0.515,0.515H24.009z" fill="url(#SVGID_6_)"/>
-<path d="M34.305,36.123c0,0.568-0.461,1.029-1.029,1.029h-3.088c-0.568,0-1.031-0.461-1.031-1.029v-3.088 c0-0.57,0.463-1.031,1.031-1.031h3.088c0.568,0,1.029,0.461,1.029,1.031V36.123z" opacity="0.25"/>
+<path d="M34.305,36.123c0,0.568-0.461,1.029-1.029,1.029h-3.088c-0.568,0-1.031-0.461-1.031-1.029v-3.088 c0-0.57,0.463-1.031,1.031-1.031h3.088c0.568,0,1.029,0.461,1.029,1.031V36.123z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="31.7305" x2="31.7305" y1="31.4229" y2="36.6183">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M34.305,35.565c0,0.568-0.461,1.028-1.029,1.028h-3.088c-0.568,0-1.031-0.46-1.031-1.028v-3.089 c0-0.567,0.463-1.03,1.031-1.03h3.088c0.568,0,1.029,0.463,1.029,1.03V35.565z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="33.8545" x2="29.6936" y1="34.0205" y2="34.0205">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M30.188,36.08c-0.284,0-0.516-0.231-0.516-0.515v-3.089c0-0.284,0.231-0.516,0.516-0.516h3.088 c0.285,0,0.515,0.231,0.515,0.516v3.089c0,0.283-0.229,0.515-0.515,0.515H30.188z" fill="url(#SVGID_8_)"/>
-<path d="M40.482,36.123c0,0.568-0.46,1.029-1.028,1.029h-3.089c-0.57,0-1.03-0.461-1.03-1.029v-3.088 c0-0.57,0.46-1.031,1.03-1.031h3.089c0.568,0,1.028,0.461,1.028,1.031V36.123z" opacity="0.25"/>
+<path d="M40.482,36.123c0,0.568-0.46,1.029-1.028,1.029h-3.089c-0.57,0-1.03-0.461-1.03-1.029v-3.088 c0-0.57,0.46-1.031,1.03-1.031h3.089c0.568,0,1.028,0.461,1.028,1.031V36.123z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="37.9082" x2="37.9082" y1="31.4229" y2="36.6183">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M40.482,35.565c0,0.568-0.46,1.028-1.028,1.028h-3.089c-0.57,0-1.03-0.46-1.03-1.028v-3.089 c0-0.567,0.46-1.03,1.03-1.03h3.089c0.568,0,1.028,0.463,1.028,1.03V35.565z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="40.0332" x2="35.8713" y1="34.0205" y2="34.0205">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M36.365,36.08c-0.285,0-0.516-0.231-0.516-0.515v-3.089c0-0.284,0.23-0.516,0.516-0.516h3.089 c0.283,0,0.515,0.231,0.515,0.516v3.089c0,0.283-0.231,0.515-0.515,0.515H36.365z" fill="url(#SVGID_10_)"/>
-<path d="M15.559,36.123c0,0.568-0.46,1.029-1.029,1.029H5.393c-0.57,0-1.031-0.461-1.031-1.029v-3.088 c0-0.57,0.461-1.031,1.031-1.031h9.137c0.569,0,1.029,0.461,1.029,1.031V36.123z" opacity="0.25"/>
+<path d="M15.559,36.123c0,0.568-0.46,1.029-1.029,1.029H5.393c-0.57,0-1.031-0.461-1.031-1.029v-3.088 c0-0.57,0.461-1.031,1.031-1.031h9.137c0.569,0,1.029,0.461,1.029,1.031V36.123z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="9.96" x2="9.96" y1="31.4229" y2="36.6183">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M15.559,35.565c0,0.568-0.46,1.028-1.029,1.028H5.393c-0.57,0-1.031-0.46-1.031-1.028v-3.089 c0-0.567,0.461-1.03,1.031-1.03h9.137c0.569,0,1.029,0.463,1.029,1.03V35.565z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15.2031" x2="4.9306" y1="34.0205" y2="34.0205">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M5.393,36.08c-0.285,0-0.516-0.231-0.516-0.515v-3.089c0-0.284,0.23-0.516,0.516-0.516h9.137 c0.283,0,0.515,0.231,0.515,0.516v3.089c0,0.283-0.231,0.515-0.515,0.515H5.393z" fill="url(#SVGID_12_)"/>
-<path d="M21.949,24.089c0,0.57-0.459,1.03-1.028,1.03h-6.569c-0.567,0-1.029-0.46-1.029-1.03V21 c0-0.567,0.462-1.028,1.029-1.028h6.569c0.569,0,1.028,0.461,1.028,1.028V24.089z" opacity="0.25"/>
+<path d="M21.949,24.089c0,0.57-0.459,1.03-1.028,1.03h-6.569c-0.567,0-1.029-0.46-1.029-1.03V21 c0-0.567,0.462-1.028,1.029-1.028h6.569c0.569,0,1.028,0.461,1.028,1.028V24.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.6357" x2="17.6357" y1="19.3906" y2="24.5861">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M21.949,23.532c0,0.568-0.459,1.029-1.028,1.029h-6.569c-0.567,0-1.029-0.461-1.029-1.029v-3.089 c0-0.569,0.462-1.029,1.029-1.029h6.569c0.569,0,1.028,0.46,1.028,1.029V23.532z" fill="url(#SVGID_13_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="21.5547" x2="13.8762" y1="21.9878" y2="21.9878">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M14.352,24.047c-0.284,0-0.516-0.23-0.516-0.515v-3.089c0-0.284,0.231-0.515,0.516-0.515h6.569 c0.283,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.231,0.515-0.515,0.515H14.352z" fill="url(#SVGID_14_)"/>
-<path d="M28.128,24.089c0,0.57-0.462,1.03-1.029,1.03h-3.09c-0.568,0-1.028-0.46-1.028-1.03V21 c0-0.567,0.46-1.028,1.028-1.028h3.09c0.567,0,1.029,0.461,1.029,1.028V24.089z" opacity="0.25"/>
+<path d="M28.128,24.089c0,0.57-0.462,1.03-1.029,1.03h-3.09c-0.568,0-1.028-0.46-1.028-1.03V21 c0-0.567,0.46-1.028,1.028-1.028h3.09c0.567,0,1.029,0.461,1.029,1.028V24.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="25.5547" x2="25.5547" y1="19.3906" y2="24.5861">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M28.128,23.532c0,0.568-0.462,1.029-1.029,1.029h-3.09c-0.568,0-1.028-0.461-1.028-1.029v-3.089 c0-0.569,0.46-1.029,1.028-1.029h3.09c0.567,0,1.029,0.46,1.029,1.029V23.532z" fill="url(#SVGID_15_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="27.6777" x2="23.5168" y1="21.9878" y2="21.9878">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M24.009,24.047c-0.283,0-0.514-0.23-0.514-0.515v-3.089c0-0.284,0.23-0.515,0.514-0.515h3.09 c0.284,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.23,0.515-0.515,0.515H24.009z" fill="url(#SVGID_16_)"/>
-<path d="M34.305,24.089c0,0.57-0.461,1.03-1.029,1.03h-3.088c-0.568,0-1.031-0.46-1.031-1.03V21 c0-0.567,0.463-1.028,1.031-1.028h3.088c0.568,0,1.029,0.461,1.029,1.028V24.089z" opacity="0.25"/>
+<path d="M34.305,24.089c0,0.57-0.461,1.03-1.029,1.03h-3.088c-0.568,0-1.031-0.46-1.031-1.03V21 c0-0.567,0.463-1.028,1.031-1.028h3.088c0.568,0,1.029,0.461,1.029,1.028V24.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="31.7305" x2="31.7305" y1="19.3906" y2="24.5861">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M34.305,23.532c0,0.568-0.461,1.029-1.029,1.029h-3.088c-0.568,0-1.031-0.461-1.031-1.029v-3.089 c0-0.569,0.463-1.029,1.031-1.029h3.088c0.568,0,1.029,0.46,1.029,1.029V23.532z" fill="url(#SVGID_17_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="33.8545" x2="29.6936" y1="21.9878" y2="21.9878">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M30.188,24.047c-0.284,0-0.516-0.23-0.516-0.515v-3.089c0-0.284,0.231-0.515,0.516-0.515h3.088 c0.285,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.229,0.515-0.515,0.515H30.188z" fill="url(#SVGID_18_)"/>
-<path d="M40.482,24.089c0,0.57-0.46,1.03-1.028,1.03h-3.089c-0.57,0-1.03-0.46-1.03-1.03V21 c0-0.567,0.46-1.028,1.03-1.028h3.089c0.568,0,1.028,0.461,1.028,1.028V24.089z" opacity="0.25"/>
+<path d="M40.482,24.089c0,0.57-0.46,1.03-1.028,1.03h-3.089c-0.57,0-1.03-0.46-1.03-1.03V21 c0-0.567,0.46-1.028,1.03-1.028h3.089c0.568,0,1.028,0.461,1.028,1.028V24.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="37.9082" x2="37.9082" y1="19.3906" y2="24.5861">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M40.482,23.532c0,0.568-0.46,1.029-1.028,1.029h-3.089c-0.57,0-1.03-0.461-1.03-1.029v-3.089 c0-0.569,0.46-1.029,1.03-1.029h3.089c0.568,0,1.028,0.46,1.028,1.029V23.532z" fill="url(#SVGID_19_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="40.0332" x2="35.8713" y1="21.9878" y2="21.9878">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M36.365,24.047c-0.285,0-0.516-0.23-0.516-0.515v-3.089c0-0.284,0.23-0.515,0.516-0.515h3.089 c0.283,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.231,0.515-0.515,0.515H36.365z" fill="url(#SVGID_20_)"/>
-<path d="M46.725,24.089c0,0.57-0.46,1.03-1.029,1.03h-3.088c-0.57,0-1.03-0.46-1.03-1.03V21 c0-0.567,0.46-1.028,1.03-1.028h3.088c0.569,0,1.029,0.461,1.029,1.028V24.089z" opacity="0.25"/>
+<path d="M46.725,24.089c0,0.57-0.46,1.03-1.029,1.03h-3.088c-0.57,0-1.03-0.46-1.03-1.03V21 c0-0.567,0.46-1.028,1.03-1.028h3.088c0.569,0,1.029,0.461,1.029,1.028V24.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="44.1504" x2="44.1504" y1="19.3906" y2="24.5861">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M46.725,23.532c0,0.568-0.46,1.029-1.029,1.029h-3.088c-0.57,0-1.03-0.461-1.03-1.029v-3.089 c0-0.569,0.46-1.029,1.03-1.029h3.088c0.569,0,1.029,0.46,1.029,1.029V23.532z" fill="url(#SVGID_21_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="46.2744" x2="42.1125" y1="21.9878" y2="21.9878">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M42.607,24.047c-0.285,0-0.517-0.23-0.517-0.515v-3.089c0-0.284,0.231-0.515,0.517-0.515h3.088 c0.283,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.231,0.515-0.515,0.515H42.607z" fill="url(#SVGID_22_)"/>
-<path d="M55.637,24.089c0,0.57-0.461,1.03-1.029,1.03h-5.823c-0.569,0-1.029-0.46-1.029-1.03V21 c0-0.567,0.46-1.028,1.029-1.028h5.823c0.568,0,1.029,0.461,1.029,1.028V24.089z" opacity="0.25"/>
+<path d="M55.637,24.089c0,0.57-0.461,1.03-1.029,1.03h-5.823c-0.569,0-1.029-0.46-1.029-1.03V21 c0-0.567,0.46-1.028,1.029-1.028h5.823c0.568,0,1.029,0.461,1.029,1.028V24.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="51.6953" x2="51.6953" y1="19.3906" y2="24.5861">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M55.637,23.532c0,0.568-0.461,1.029-1.029,1.029h-5.823c-0.569,0-1.029-0.461-1.029-1.029v-3.089 c0-0.569,0.46-1.029,1.029-1.029h5.823c0.568,0,1.029,0.46,1.029,1.029V23.532z" fill="url(#SVGID_23_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="55.2305" x2="48.3058" y1="21.9878" y2="21.9878">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M48.784,24.047c-0.285,0-0.515-0.23-0.515-0.515v-3.089c0-0.284,0.229-0.515,0.515-0.515h5.823 c0.284,0,0.516,0.23,0.516,0.515v3.089c0,0.284-0.231,0.515-0.516,0.515H48.784z" fill="url(#SVGID_24_)"/>
-<path d="M49.459,30.073c0,0.569-0.461,1.03-1.029,1.03h-5.824c-0.568,0-1.028-0.461-1.028-1.03v-3.088 c0-0.568,0.46-1.03,1.028-1.03h5.824c0.568,0,1.029,0.462,1.029,1.03V30.073z" opacity="0.25"/>
+<path d="M49.459,30.073c0,0.569-0.461,1.03-1.029,1.03h-5.824c-0.568,0-1.028-0.461-1.028-1.03v-3.088 c0-0.568,0.46-1.03,1.028-1.03h5.824c0.568,0,1.029,0.462,1.029,1.03V30.073z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="45.5176" x2="45.5176" y1="25.375" y2="30.5705">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M49.459,29.517c0,0.568-0.461,1.029-1.029,1.029h-5.824c-0.568,0-1.028-0.461-1.028-1.029v-3.088 c0-0.569,0.46-1.03,1.028-1.03h5.824c0.568,0,1.029,0.461,1.029,1.03V29.517z" fill="url(#SVGID_25_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="49.0518" x2="42.1271" y1="27.9722" y2="27.9722">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M42.605,30.03c-0.284,0-0.515-0.229-0.515-0.514v-3.088c0-0.285,0.23-0.515,0.515-0.515h5.824 c0.283,0,0.515,0.229,0.515,0.515v3.088c0,0.284-0.231,0.514-0.515,0.514H42.605z" fill="url(#SVGID_26_)"/>
-<path d="M12.078,24.089c0,0.57-0.46,1.03-1.028,1.03H5.393c-0.57,0-1.031-0.46-1.031-1.03V21 c0-0.567,0.461-1.028,1.031-1.028h5.657c0.568,0,1.028,0.461,1.028,1.028V24.089z" opacity="0.25"/>
+<path d="M12.078,24.089c0,0.57-0.46,1.03-1.028,1.03H5.393c-0.57,0-1.031-0.46-1.031-1.03V21 c0-0.567,0.461-1.028,1.031-1.028h5.657c0.568,0,1.028,0.461,1.028,1.028V24.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="8.2197" x2="8.2197" y1="19.3906" y2="24.5861">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M12.078,23.532c0,0.568-0.46,1.029-1.028,1.029H5.393c-0.57,0-1.031-0.461-1.031-1.029v-3.089 c0-0.569,0.461-1.029,1.031-1.029h5.657c0.568,0,1.028,0.46,1.028,1.029V23.532z" fill="url(#SVGID_27_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="11.6689" x2="4.912" y1="21.9878" y2="21.9878">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M5.393,24.047c-0.285,0-0.516-0.23-0.516-0.515v-3.089c0-0.284,0.23-0.515,0.516-0.515h5.657 c0.283,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.231,0.515-0.515,0.515H5.393z" fill="url(#SVGID_28_)"/>
-<path d="M9.51,30.073c0,0.569-0.461,1.03-1.029,1.03H5.393c-0.57,0-1.031-0.461-1.031-1.03v-3.088 c0-0.568,0.461-1.029,1.031-1.029H8.48c0.568,0,1.029,0.461,1.029,1.029V30.073z" opacity="0.25"/>
+<path d="M9.51,30.073c0,0.569-0.461,1.03-1.029,1.03H5.393c-0.57,0-1.031-0.461-1.031-1.03v-3.088 c0-0.568,0.461-1.029,1.031-1.029H8.48c0.568,0,1.029,0.461,1.029,1.029V30.073z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="6.9355" x2="6.9355" y1="25.375" y2="30.5705">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M9.51,29.517c0,0.568-0.461,1.029-1.029,1.029H5.393c-0.57,0-1.031-0.461-1.031-1.029v-3.088 c0-0.569,0.461-1.03,1.031-1.03H8.48c0.568,0,1.029,0.461,1.029,1.03V29.517z" fill="url(#SVGID_29_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="9.0596" x2="4.8987" y1="27.9727" y2="27.9727">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M5.393,30.032c-0.285,0-0.516-0.231-0.516-0.516v-3.088c0-0.286,0.23-0.516,0.516-0.516H8.48 c0.283,0,0.515,0.229,0.515,0.516v3.088c0,0.284-0.231,0.516-0.515,0.516H5.393z" fill="url(#SVGID_30_)"/>
-<path d="M15.688,30.073c0,0.569-0.461,1.03-1.031,1.03h-3.088c-0.568,0-1.028-0.461-1.028-1.03v-3.088 c0-0.568,0.46-1.029,1.028-1.029h3.088c0.57,0,1.031,0.461,1.031,1.029V30.073z" opacity="0.25"/>
+<path d="M15.688,30.073c0,0.569-0.461,1.03-1.031,1.03h-3.088c-0.568,0-1.028-0.461-1.028-1.03v-3.088 c0-0.568,0.46-1.029,1.028-1.029h3.088c0.57,0,1.031,0.461,1.031,1.029V30.073z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="13.1133" x2="13.1133" y1="25.375" y2="30.5705">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M15.688,29.517c0,0.568-0.461,1.029-1.031,1.029h-3.088c-0.568,0-1.028-0.461-1.028-1.029v-3.088 c0-0.569,0.46-1.03,1.028-1.03h3.088c0.57,0,1.031,0.461,1.031,1.03V29.517z" fill="url(#SVGID_31_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="15.2363" x2="11.0764" y1="27.9727" y2="27.9727">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M11.568,30.032c-0.283,0-0.514-0.231-0.514-0.516v-3.088c0-0.286,0.23-0.516,0.514-0.516h3.088 c0.286,0,0.516,0.229,0.516,0.516v3.088c0,0.284-0.229,0.516-0.516,0.516H11.568z" fill="url(#SVGID_32_)"/>
-<path d="M21.865,30.073c0,0.569-0.462,1.03-1.03,1.03h-3.088c-0.569,0-1.031-0.461-1.031-1.03v-3.088 c0-0.568,0.462-1.029,1.031-1.029h3.088c0.568,0,1.03,0.461,1.03,1.029V30.073z" opacity="0.25"/>
+<path d="M21.865,30.073c0,0.569-0.462,1.03-1.03,1.03h-3.088c-0.569,0-1.031-0.461-1.031-1.03v-3.088 c0-0.568,0.462-1.029,1.031-1.029h3.088c0.568,0,1.03,0.461,1.03,1.029V30.073z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="19.291" x2="19.291" y1="25.375" y2="30.5705">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M21.865,29.517c0,0.568-0.462,1.029-1.03,1.029h-3.088c-0.569,0-1.031-0.461-1.031-1.029v-3.088 c0-0.569,0.462-1.03,1.031-1.03h3.088c0.568,0,1.03,0.461,1.03,1.03V29.517z" fill="url(#SVGID_33_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="21.4141" x2="17.2541" y1="27.9727" y2="27.9727">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M17.747,30.032c-0.284,0-0.515-0.231-0.515-0.516v-3.088c0-0.286,0.23-0.516,0.515-0.516h3.088 c0.284,0,0.515,0.229,0.515,0.516v3.088c0,0.284-0.23,0.516-0.515,0.516H17.747z" fill="url(#SVGID_34_)"/>
-<path d="M28.042,30.073c0,0.569-0.46,1.03-1.028,1.03h-3.091c-0.567,0-1.028-0.461-1.028-1.03v-3.088 c0-0.568,0.461-1.029,1.028-1.029h3.091c0.568,0,1.028,0.461,1.028,1.029V30.073z" opacity="0.25"/>
+<path d="M28.042,30.073c0,0.569-0.46,1.03-1.028,1.03h-3.091c-0.567,0-1.028-0.461-1.028-1.03v-3.088 c0-0.568,0.461-1.029,1.028-1.029h3.091c0.568,0,1.028,0.461,1.028,1.029V30.073z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="25.4688" x2="25.4688" y1="25.375" y2="30.5705">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M28.042,29.517c0,0.568-0.46,1.029-1.028,1.029h-3.091c-0.567,0-1.028-0.461-1.028-1.029v-3.088 c0-0.569,0.461-1.03,1.028-1.03h3.091c0.568,0,1.028,0.461,1.028,1.03V29.517z" fill="url(#SVGID_35_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="27.5918" x2="23.4309" y1="27.9727" y2="27.9727">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M23.923,30.032c-0.283,0-0.514-0.231-0.514-0.516v-3.088c0-0.286,0.23-0.516,0.514-0.516h3.091 c0.283,0,0.514,0.229,0.514,0.516v3.088c0,0.284-0.23,0.516-0.514,0.516H23.923z" fill="url(#SVGID_36_)"/>
-<path d="M34.284,30.073c0,0.569-0.46,1.03-1.029,1.03h-3.09c-0.566,0-1.028-0.461-1.028-1.03v-3.088 c0-0.568,0.462-1.029,1.028-1.029h3.09c0.569,0,1.029,0.461,1.029,1.029V30.073z" opacity="0.25"/>
+<path d="M34.284,30.073c0,0.569-0.46,1.03-1.029,1.03h-3.09c-0.566,0-1.028-0.461-1.028-1.03v-3.088 c0-0.568,0.462-1.029,1.028-1.029h3.09c0.569,0,1.029,0.461,1.029,1.029V30.073z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="31.7109" x2="31.7109" y1="25.375" y2="30.5705">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M34.284,29.517c0,0.568-0.46,1.029-1.029,1.029h-3.09c-0.566,0-1.028-0.461-1.028-1.029v-3.088 c0-0.569,0.462-1.03,1.028-1.03h3.09c0.569,0,1.029,0.461,1.029,1.03V29.517z" fill="url(#SVGID_37_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="33.834" x2="29.6721" y1="27.9727" y2="27.9727">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M30.165,30.032c-0.283,0-0.515-0.231-0.515-0.516v-3.088c0-0.286,0.231-0.516,0.515-0.516h3.09 c0.283,0,0.515,0.229,0.515,0.516v3.088c0,0.284-0.231,0.516-0.515,0.516H30.165z" fill="url(#SVGID_38_)"/>
-<path d="M40.482,30.073c0,0.569-0.46,1.03-1.028,1.03h-3.089c-0.57,0-1.03-0.461-1.03-1.03v-3.088 c0-0.568,0.46-1.029,1.03-1.029h3.089c0.568,0,1.028,0.461,1.028,1.029V30.073z" opacity="0.25"/>
+<path d="M40.482,30.073c0,0.569-0.46,1.03-1.028,1.03h-3.089c-0.57,0-1.03-0.461-1.03-1.03v-3.088 c0-0.568,0.46-1.029,1.03-1.029h3.089c0.568,0,1.028,0.461,1.028,1.029V30.073z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="37.9082" x2="37.9082" y1="25.375" y2="30.5705">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M40.482,29.517c0,0.568-0.46,1.029-1.028,1.029h-3.089c-0.57,0-1.03-0.461-1.03-1.029v-3.088 c0-0.569,0.46-1.03,1.03-1.03h3.089c0.568,0,1.028,0.461,1.028,1.03V29.517z" fill="url(#SVGID_39_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="40.0332" x2="35.8713" y1="27.9727" y2="27.9727">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M36.365,30.032c-0.285,0-0.516-0.231-0.516-0.516v-3.088c0-0.286,0.23-0.516,0.516-0.516h3.089 c0.283,0,0.515,0.229,0.515,0.516v3.088c0,0.284-0.231,0.516-0.515,0.516H36.365z" fill="url(#SVGID_40_)"/>
-<path d="M55.637,36.123c0,0.568-0.461,1.029-1.029,1.029h-12c-0.57,0-1.03-0.461-1.03-1.029v-3.088 c0-0.569,0.46-1.03,1.03-1.03h12c0.568,0,1.029,0.461,1.029,1.03V36.123z" opacity="0.25"/>
+<path d="M55.637,36.123c0,0.568-0.461,1.029-1.029,1.029h-12c-0.57,0-1.03-0.461-1.03-1.029v-3.088 c0-0.569,0.46-1.03,1.03-1.03h12c0.568,0,1.029,0.461,1.029,1.03V36.123z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="48.6074" x2="48.6074" y1="25.4102" y2="36.5772">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M54.608,25.398h-3.088c-0.571,0-1.03,0.461-1.03,1.03v5.02h-7.883c-0.57,0-1.03,0.461-1.03,1.029 v3.088c0,0.568,0.46,1.03,1.03,1.03h12c0.568,0,1.029-0.462,1.029-1.03v-9.137C55.637,25.859,55.178,25.398,54.608,25.398z" fill="url(#SVGID_41_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_42_" x1="48.6074" x2="48.6074" y1="25.8818" y2="36.0711">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M54.608,25.913h-3.088c-0.285,0-0.517,0.229-0.517,0.516v5.533h-8.396 c-0.285,0-0.517,0.23-0.517,0.516v3.088c0,0.284,0.231,0.516,0.517,0.516h12c0.284,0,0.516-0.231,0.516-0.516v-9.137 C55.123,26.143,54.892,25.913,54.608,25.913z" fill="url(#SVGID_42_)"/>
-<path d="M21.949,42.235c0,0.568-0.459,1.03-1.028,1.03h-3.089c-0.567,0-1.029-0.462-1.029-1.03v-3.088 c0-0.568,0.462-1.031,1.029-1.031h3.089c0.569,0,1.028,0.463,1.028,1.031V42.235z" opacity="0.25"/>
+<path d="M21.949,42.235c0,0.568-0.459,1.03-1.028,1.03h-3.089c-0.567,0-1.029-0.462-1.029-1.03v-3.088 c0-0.568,0.462-1.031,1.029-1.031h3.089c0.569,0,1.028,0.463,1.028,1.031V42.235z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_43_" x1="19.376" x2="19.376" y1="37.5371" y2="42.7326">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M21.949,41.679c0,0.568-0.459,1.029-1.028,1.029h-3.089c-0.567,0-1.029-0.461-1.029-1.029v-3.09 c0-0.567,0.462-1.028,1.029-1.028h3.089c0.569,0,1.028,0.461,1.028,1.028V41.679z" fill="url(#SVGID_43_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_44_" x1="21.5" x2="17.3381" y1="40.1343" y2="40.1343">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M17.832,42.192c-0.284,0-0.516-0.229-0.516-0.514v-3.09c0-0.284,0.231-0.513,0.516-0.513h3.089 c0.283,0,0.515,0.229,0.515,0.513v3.09c0,0.284-0.231,0.514-0.515,0.514H17.832z" fill="url(#SVGID_44_)"/>
-<path d="M15.73,42.235c0,0.568-0.462,1.03-1.031,1.03h-3.088c-0.568,0-1.028-0.462-1.028-1.03v-3.088 c0-0.568,0.46-1.031,1.028-1.031h3.088c0.569,0,1.031,0.463,1.031,1.031V42.235z" opacity="0.25"/>
+<path d="M15.73,42.235c0,0.568-0.462,1.03-1.031,1.03h-3.088c-0.568,0-1.028-0.462-1.028-1.03v-3.088 c0-0.568,0.46-1.031,1.028-1.031h3.088c0.569,0,1.031,0.463,1.031,1.031V42.235z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_45_" x1="13.1563" x2="13.1563" y1="37.5371" y2="42.7326">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M15.73,41.679c0,0.568-0.462,1.029-1.031,1.029h-3.088c-0.568,0-1.028-0.461-1.028-1.029v-3.09 c0-0.567,0.46-1.028,1.028-1.028h3.088c0.569,0,1.031,0.461,1.031,1.028V41.679z" fill="url(#SVGID_45_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_46_" x1="15.2793" x2="11.1194" y1="40.1343" y2="40.1343">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M11.611,42.192c-0.283,0-0.514-0.229-0.514-0.514v-3.09c0-0.284,0.23-0.513,0.514-0.513h3.088 c0.286,0,0.516,0.229,0.516,0.513v3.09c0,0.284-0.229,0.514-0.516,0.514H11.611z" fill="url(#SVGID_46_)"/>
-<path d="M9.51,42.235c0,0.568-0.461,1.03-1.029,1.03H5.393c-0.57,0-1.031-0.462-1.031-1.03v-3.088 c0-0.568,0.461-1.031,1.031-1.031H8.48c0.568,0,1.029,0.463,1.029,1.031V42.235z" opacity="0.25"/>
+<path d="M9.51,42.235c0,0.568-0.461,1.03-1.029,1.03H5.393c-0.57,0-1.031-0.462-1.031-1.03v-3.088 c0-0.568,0.461-1.031,1.031-1.031H8.48c0.568,0,1.029,0.463,1.029,1.031V42.235z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_47_" x1="6.9355" x2="6.9355" y1="37.5371" y2="42.7326">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M9.51,41.679c0,0.568-0.461,1.029-1.029,1.029H5.393c-0.57,0-1.031-0.461-1.031-1.029v-3.09 c0-0.567,0.461-1.028,1.031-1.028H8.48c0.568,0,1.029,0.461,1.029,1.028V41.679z" fill="url(#SVGID_47_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_48_" x1="9.0596" x2="4.8987" y1="40.1343" y2="40.1343">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M5.393,42.192c-0.285,0-0.516-0.229-0.516-0.514v-3.09c0-0.284,0.23-0.513,0.516-0.513H8.48 c0.283,0,0.515,0.229,0.515,0.513v3.09c0,0.284-0.231,0.514-0.515,0.514H5.393z" fill="url(#SVGID_48_)"/>
-<path d="M49.557,42.235c0,0.568-0.463,1.03-1.03,1.03h-3.089c-0.568,0-1.028-0.462-1.028-1.03v-3.088 c0-0.568,0.46-1.031,1.028-1.031h3.089c0.567,0,1.03,0.463,1.03,1.031V42.235z" opacity="0.25"/>
+<path d="M49.557,42.235c0,0.568-0.463,1.03-1.03,1.03h-3.089c-0.568,0-1.028-0.462-1.028-1.03v-3.088 c0-0.568,0.46-1.031,1.028-1.031h3.089c0.567,0,1.03,0.463,1.03,1.031V42.235z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_49_" x1="46.9824" x2="46.9824" y1="37.5371" y2="42.7326">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M49.557,41.679c0,0.568-0.463,1.029-1.03,1.029h-3.089c-0.568,0-1.028-0.461-1.028-1.029v-3.09 c0-0.567,0.46-1.028,1.028-1.028h3.089c0.567,0,1.03,0.461,1.03,1.028V41.679z" fill="url(#SVGID_49_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_50_" x1="49.1064" x2="44.9445" y1="40.1343" y2="40.1343">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M45.438,42.192c-0.283,0-0.515-0.229-0.515-0.514v-3.09c0-0.284,0.231-0.513,0.515-0.513h3.089 c0.284,0,0.516,0.229,0.516,0.513v3.09c0,0.284-0.231,0.514-0.516,0.514H45.438z" fill="url(#SVGID_50_)"/>
-<path d="M55.637,42.235c0,0.568-0.461,1.03-1.029,1.03h-3.089c-0.569,0-1.028-0.462-1.028-1.03v-3.088 c0-0.568,0.459-1.031,1.028-1.031h3.089c0.568,0,1.029,0.463,1.029,1.031V42.235z" opacity="0.25"/>
+<path d="M55.637,42.235c0,0.568-0.461,1.03-1.029,1.03h-3.089c-0.569,0-1.028-0.462-1.028-1.03v-3.088 c0-0.568,0.459-1.031,1.028-1.031h3.089c0.568,0,1.029,0.463,1.029,1.031V42.235z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_51_" x1="53.0635" x2="53.0635" y1="37.5371" y2="42.7326">
- <stop offset="0" style="stop-color:#ECF4F8"/>
- <stop offset="0.7939" style="stop-color:#A0A6A7"/>
- <stop offset="1" style="stop-color:#CEDBE0"/>
+<stop offset="0" style="stop-color:#ECF4F8"/>
+<stop offset="0.7939" style="stop-color:#A0A6A7"/>
+<stop offset="1" style="stop-color:#CEDBE0"/>
</linearGradient>
<path d="M55.637,41.679c0,0.568-0.461,1.029-1.029,1.029h-3.089c-0.569,0-1.028-0.461-1.028-1.029v-3.09 c0-0.567,0.459-1.028,1.028-1.028h3.089c0.568,0,1.029,0.461,1.029,1.028V41.679z" fill="url(#SVGID_51_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_52_" x1="55.1875" x2="51.0256" y1="40.1343" y2="40.1343">
- <stop offset="0" style="stop-color:#E4EBED"/>
- <stop offset="0.8364" style="stop-color:#C5CFD2"/>
- <stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.8364" style="stop-color:#C5CFD2"/>
+<stop offset="0.9758" style="stop-color:#D2D9DB"/>
+<stop offset="1" style="stop-color:#D2D9DB"/>
</linearGradient>
<path d="M51.519,42.192c-0.283,0-0.515-0.229-0.515-0.514v-3.09c0-0.284,0.231-0.513,0.515-0.513h3.089 c0.284,0,0.516,0.229,0.516,0.513v3.09c0,0.284-0.231,0.514-0.516,0.514H51.519z" fill="url(#SVGID_52_)"/>
-<path d="M43.314,42.172c0,0.569-0.462,1.028-1.029,1.028H23.752c-0.567,0-1.029-0.459-1.029-1.028v-3.089 c0-0.568,0.462-1.029,1.029-1.029h18.533c0.567,0,1.029,0.461,1.029,1.029V42.172z" opacity="0.25"/>
+<path d="M43.314,42.172c0,0.569-0.462,1.028-1.029,1.028H23.752c-0.567,0-1.029-0.459-1.029-1.028v-3.089 c0-0.568,0.462-1.029,1.029-1.029h18.533c0.567,0,1.029,0.461,1.029,1.029V42.172z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_53_" x1="33.0186" x2="33.0186" y1="37.4727" y2="42.6681">
- <stop offset="0" style="stop-color:#8C8C8C"/>
- <stop offset="1" style="stop-color:#2E2E2E"/>
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
<path d="M43.314,41.613c0,0.57-0.462,1.03-1.029,1.03H23.752c-0.567,0-1.029-0.46-1.029-1.03v-3.089 c0-0.567,0.462-1.028,1.029-1.028h18.533c0.567,0,1.029,0.461,1.029,1.028V41.613z" fill="url(#SVGID_53_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_54_" x1="33.0186" x2="33.0186" y1="37.9102" y2="42.3335">
- <stop offset="0" style="stop-color:#686868"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#686868"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M23.752,42.129c-0.284,0-0.516-0.231-0.516-0.516v-3.089c0-0.283,0.231-0.515,0.516-0.515h18.533 c0.284,0,0.516,0.231,0.516,0.515v3.089c0,0.284-0.231,0.516-0.516,0.516H23.752z" fill="url(#SVGID_54_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_language.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_language.svg Thu May 27 13:10:59 2010 +0300
@@ -1,87 +1,85 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="3.3105" x2="7.0752" y1="44.4668" y2="44.4668">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.7091" style="stop-color:#686E70"/>
- <stop offset="1" style="stop-color:#A6B0B3"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#686E70"/>
+<stop offset="1" style="stop-color:#A6B0B3"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="27.067" width="3.765" x="3.311" y="30.933"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="2.3691" x2="8.0166" y1="29.7603" y2="29.7603">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.7091" style="stop-color:#686E70"/>
- <stop offset="1" style="stop-color:#A6B0B3"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#686E70"/>
+<stop offset="1" style="stop-color:#A6B0B3"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="2.346" width="5.647" x="2.369" y="28.587"/>
-<rect height="0.471" opacity="0.4" width="3.765" x="3.311" y="30.933"/>
-<rect height="0.471" opacity="0.1" width="3.765" x="3.311" y="57.529"/>
-<rect height="0.471" opacity="0.2" width="3.765" x="3.311" y="31.404"/>
-<rect height="0.471" opacity="0.1" width="3.765" x="3.311" y="31.875"/>
+<rect fill-opacity="0.4" height="0.471" stroke-opacity="0.4" width="3.765" x="3.311" y="30.933"/>
+<rect fill-opacity="0.1" height="0.471" stroke-opacity="0.1" width="3.765" x="3.311" y="57.529"/>
+<rect fill-opacity="0.2" height="0.471" stroke-opacity="0.2" width="3.765" x="3.311" y="31.404"/>
+<rect fill-opacity="0.1" height="0.471" stroke-opacity="0.1" width="3.765" x="3.311" y="31.875"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="7.0752" x2="28.6899" y1="41.8154" y2="41.8154">
- <stop offset="0" style="stop-color:#1A5FCC"/>
- <stop offset="0.1697" style="stop-color:#3492E9"/>
- <stop offset="0.4" style="stop-color:#195BCB"/>
- <stop offset="0.7455" style="stop-color:#389AED"/>
- <stop offset="1" style="stop-color:#1E65D0"/>
+<stop offset="0" style="stop-color:#1A5FCC"/>
+<stop offset="0.1697" style="stop-color:#3492E9"/>
+<stop offset="0.4" style="stop-color:#195BCB"/>
+<stop offset="0.7455" style="stop-color:#389AED"/>
+<stop offset="1" style="stop-color:#1E65D0"/>
</linearGradient>
<path d="M7.075,31.404c0,0,7.318-0.909,9.905,1.303c4.323,3.695,8.959,3.246,11.709,2.859v16.748 c0,0-9.091,0.707-12.707-1.705c-2.198-1.465-8.908-0.969-8.908-0.969V31.404z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="23.3271" x2="44.9414" y1="15.1758" y2="15.1758">
- <stop offset="0" style="stop-color:#398F0D"/>
- <stop offset="0.1636" style="stop-color:#7BC84C"/>
- <stop offset="0.4" style="stop-color:#388E0D"/>
- <stop offset="0.7818" style="stop-color:#7AC943"/>
- <stop offset="1" style="stop-color:#3E930E"/>
+<stop offset="0" style="stop-color:#398F0D"/>
+<stop offset="0.1636" style="stop-color:#7BC84C"/>
+<stop offset="0.4" style="stop-color:#388E0D"/>
+<stop offset="0.7818" style="stop-color:#7AC943"/>
+<stop offset="1" style="stop-color:#3E930E"/>
</linearGradient>
<path d="M23.327,4.764c0,0,7.318-0.906,9.903,1.304c4.324,3.694,8.959,3.246,11.711,2.858v16.75 c0,0-9.092,0.707-12.707-1.706c-2.197-1.467-8.907-0.968-8.907-0.968V4.764z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="19.5459" x2="23.3105" y1="18.2319" y2="18.2319">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.7091" style="stop-color:#686E70"/>
- <stop offset="1" style="stop-color:#A6B0B3"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#686E70"/>
+<stop offset="1" style="stop-color:#A6B0B3"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="27.774" width="3.765" x="19.546" y="4.345"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="18.6045" x2="24.252" y1="3.1724" y2="3.1724">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.7091" style="stop-color:#686E70"/>
- <stop offset="1" style="stop-color:#A6B0B3"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#686E70"/>
+<stop offset="1" style="stop-color:#A6B0B3"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="2.345" width="5.647" x="18.604" y="2"/>
-<rect height="0.471" opacity="0.4" width="3.765" x="19.546" y="4.345"/>
-<rect height="0.471" opacity="0.1" width="3.765" x="19.546" y="31.648"/>
-<rect height="0.471" opacity="0.2" width="3.765" x="19.546" y="4.815"/>
-<rect height="0.471" opacity="0.1" width="3.765" x="19.546" y="5.286"/>
+<rect fill-opacity="0.4" height="0.471" stroke-opacity="0.4" width="3.765" x="19.546" y="4.345"/>
+<rect fill-opacity="0.1" height="0.471" stroke-opacity="0.1" width="3.765" x="19.546" y="31.648"/>
+<rect fill-opacity="0.2" height="0.471" stroke-opacity="0.2" width="3.765" x="19.546" y="4.815"/>
+<rect fill-opacity="0.1" height="0.471" stroke-opacity="0.1" width="3.765" x="19.546" y="5.286"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.0156" x2="57.6309" y1="41.8154" y2="41.8154">
- <stop offset="0" style="stop-color:#CC1414"/>
- <stop offset="0.1758" style="stop-color:#F74403"/>
- <stop offset="0.4182" style="stop-color:#CC1414"/>
- <stop offset="0.7394" style="stop-color:#FF4D00"/>
- <stop offset="1" style="stop-color:#CC1414"/>
+<stop offset="0" style="stop-color:#CC1414"/>
+<stop offset="0.1758" style="stop-color:#F74403"/>
+<stop offset="0.4182" style="stop-color:#CC1414"/>
+<stop offset="0.7394" style="stop-color:#FF4D00"/>
+<stop offset="1" style="stop-color:#CC1414"/>
</linearGradient>
<path d="M36.016,31.404c0,0,7.32-0.909,9.904,1.303c4.324,3.695,8.959,3.246,11.711,2.859v16.748 c0,0-9.092,0.707-12.707-1.705c-2.197-1.465-8.908-0.969-8.908-0.969V31.404z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="32.252" x2="36.0156" y1="44.4668" y2="44.4668">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.7091" style="stop-color:#686E70"/>
- <stop offset="1" style="stop-color:#A6B0B3"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#686E70"/>
+<stop offset="1" style="stop-color:#A6B0B3"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="27.067" width="3.764" x="32.252" y="30.933"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="31.3105" x2="36.957" y1="29.7603" y2="29.7603">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.7091" style="stop-color:#686E70"/>
- <stop offset="1" style="stop-color:#A6B0B3"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#686E70"/>
+<stop offset="1" style="stop-color:#A6B0B3"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="2.346" width="5.646" x="31.311" y="28.587"/>
-<rect height="0.471" opacity="0.4" width="3.764" x="32.252" y="30.933"/>
-<rect height="0.471" opacity="0.2" width="3.764" x="32.252" y="31.404"/>
-<rect height="0.471" opacity="0.1" width="3.764" x="32.252" y="31.875"/>
-<rect height="0.469" opacity="0.1" width="3.764" x="32.252" y="57.531"/>
+<rect fill-opacity="0.4" height="0.471" stroke-opacity="0.4" width="3.764" x="32.252" y="30.933"/>
+<rect fill-opacity="0.2" height="0.471" stroke-opacity="0.2" width="3.764" x="32.252" y="31.404"/>
+<rect fill-opacity="0.1" height="0.471" stroke-opacity="0.1" width="3.764" x="32.252" y="31.875"/>
+<rect fill-opacity="0.1" height="0.469" stroke-opacity="0.1" width="3.764" x="32.252" y="57.531"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_location_new.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_location_new.svg Thu May 27 13:10:59 2010 +0300
@@ -1,87 +1,78 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="240.1621" x2="240.1621" y1="1779.4043" y2="1824.6136">
- <stop offset="0" style="stop-color:#4FB7EB"/>
- <stop offset="1" style="stop-color:#1755B3"/>
+<stop offset="0" style="stop-color:#4FB7EB"/>
+<stop offset="1" style="stop-color:#1755B3"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="49.361,9.213 57.039,10.264 57.039,53.138 43.52,54.988 30.002,52.297 22.284,53.751 "/>
<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="237.2617" x2="237.2617" y1="1791.29" y2="1823.7784">
- <stop offset="0" style="stop-color:#8EFFF5"/>
- <stop offset="1" style="stop-color:#1D9DD8"/>
+<stop offset="0" style="stop-color:#8EFFF5"/>
+<stop offset="1" style="stop-color:#1D9DD8"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="43.52,21.685 43.52,54.988 30.002,52.297 30.002,41.25 "/>
-<polygon enable-background="new " opacity="0.25" points="50.26,9.347 43.52,23.584 30.002,43.172 23.378,53.564 20.226,54.149 47.881,9.016 "/>
+<polygon fill-opacity="0.25" points="50.26,9.347 43.52,23.584 30.002,43.172 23.378,53.564 20.226,54.149 47.881,9.016 " stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="224.7246" x2="224.7246" y1="1777.3057" y2="1823.4724">
- <stop offset="0" style="stop-color:#FEEFA7"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEEFA7"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="45.482,11.152 43.414,22.27 30.002,41.725 22.334,53.759 15.733,54.988 2.966,52.584 2.966,9.338 15.358,8.413 30.002,10.446 43.52,8.413 "/>
<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="223.3672" x2="223.3672" y1="1821.5967" y2="1778.4828">
- <stop offset="0" style="stop-color:#E69400"/>
- <stop offset="1" style="stop-color:#F9DE4F"/>
+<stop offset="0" style="stop-color:#E69400"/>
+<stop offset="1" style="stop-color:#F9DE4F"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="30.002,10.446 30.002,41.725 22.334,53.759 15.733,54.988 15.733,8.466 "/>
<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="246.9512" x2="246.9512" y1="1790.3203" y2="1777.6716">
- <stop offset="0" style="stop-color:#E69400"/>
- <stop offset="1" style="stop-color:#F9DE4F"/>
+<stop offset="0" style="stop-color:#E69400"/>
+<stop offset="1" style="stop-color:#F9DE4F"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="43.52,8.413 43.52,22.115 49.383,9.217 "/>
-<path d="M16.483,54.842l11.49-17.231l-4.842-2.408l-7.341,10.153 l-7.165,8.278l-2.291-0.423l9.408-11.076l5.523-7.851l-5.782-2.847L2.966,28.87v-1.32l12.995,2.686l6.069,2.979l6.841-9.601 l-13.34-6.657L2.966,14.749v-2.042l12.971,2.171l13.968,6.972l4.002-6.801l-3.909-1.375l-5.803-4.013l2.769,0.382l3.052,2.232 l4.547,1.656l2.688-4.564L39.88,8.99l-3.501,5.915l4.996,2.688l2.188-3.465l2.255-5.396l1.271,0.173l-3.554,7.663 c0,0-8.687,13.462-13.519,20.691L18.318,54.506L16.483,54.842z M28.84,36.606l-4.9-2.489l6.734-9.471l4.502,2.188L28.84,36.606z M31.749,22.77l4.711,2.353l4.219-6.434l-4.955-2.665L31.749,22.77L31.749,22.77z" enable-background="new " fill="#FFFFFF" opacity="0.25"/>
+<path d="M16.483,54.842l11.49-17.231l-4.842-2.408l-7.341,10.153 l-7.165,8.278l-2.291-0.423l9.408-11.076l5.523-7.851l-5.782-2.847L2.966,28.87v-1.32l12.995,2.686l6.069,2.979l6.841-9.601 l-13.34-6.657L2.966,14.749v-2.042l12.971,2.171l13.968,6.972l4.002-6.801l-3.909-1.375l-5.803-4.013l2.769,0.382l3.052,2.232 l4.547,1.656l2.688-4.564L39.88,8.99l-3.501,5.915l4.996,2.688l2.188-3.465l2.255-5.396l1.271,0.173l-3.554,7.663 c0,0-8.687,13.462-13.519,20.691L18.318,54.506L16.483,54.842z M28.84,36.606l-4.9-2.489l6.734-9.471l4.502,2.188L28.84,36.606z M31.749,22.77l4.711,2.353l4.219-6.434l-4.955-2.665L31.749,22.77L31.749,22.77z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="225.3965" x2="225.3965" y1="1823.0439" y2="1789.2549">
- <stop offset="0" style="stop-color:#FCE28D"/>
- <stop offset="0.81" style="stop-color:#FEF7DF"/>
+<stop offset="0" style="stop-color:#FCE28D"/>
+<stop offset="0.81" style="stop-color:#FEF7DF"/>
+<stop offset="1" style="stop-color:#FEF7DF"/>
</linearGradient>
<path d="M46.023,8.754l-2.476,5.931c0,0-1.334,2.112-2.077,3.276l-5.482-2.949l3.524-5.947l-1.787,0.241 l-3.056,4.998l-4.625-1.697l-3.417-2.63l-2.114-0.292l5.51,3.755l4.268,1.503l-4.276,7.272l-14.135-7.055L2.966,12.979v1.483 l12.621,2.208l13.674,6.826l-0.164,0.277l-6.977,9.795l-6.365-3.099L2.961,27.85l0.005,0.742l12.754,2.651l5.965,2.939l-5.926,8.307 l-9.111,10.79l1.693,0.316l7.417-8.591l7.281-10.156l5.416,2.667L16.876,54.777l1.051-0.198l12.09-18.127l13.55-20.397l3.266-7.185 L46.023,8.754z M30.012,34.986l-1.265,1.946l-5.27-2.696l6.605-9.38l0.519-0.685l5.139,2.564L30.012,34.986z M36.559,25.482 l-5.202-2.598l4.261-7.232l5.453,2.936L36.559,25.482z" fill="url(#SVGID_6_)"/>
<polygon fill="#FFFFFF" points="38.253,47.876 43.529,36.76 48.269,47.876 43.529,45.003 "/>
-<polygon enable-background="new " opacity="0.4" points="48.269,47.876 43.529,36.76 43.529,45.003 "/>
-<ellipse cx="22.188" cy="28.443" enable-background="new " fill="#333333" opacity="0.2" rx="6.056" ry="2.335"/>
-<path d="M24.975,28.442c0,0.592-1.25,1.073-2.786,1.073 c-1.536,0-2.787-0.482-2.787-1.073c0-0.596,1.25-1.076,2.787-1.076C23.724,27.367,24.975,27.847,24.975,28.442z" enable-background="new " fill="#333333" opacity="0.4"/>
-<path d="M30.108,6.172c-1.354,0.957-3.687,2.304-4.689,2.304c-0.001,0-0.001,0-0.003,0 c-0.229-0.027-0.567-0.25-0.927-0.485c-0.718-0.468-1.704-1.113-3.139-1.124c-1.059,0-2.665,1.035-3.74,1.829l-0.667-1.729 L11.995,8.87l1.134,2.934l0.667-0.256l5.98,15.49l2.866,2.022l0.742-3.411l-1.496-3.874l0.268-0.689 c0.55-1.418,1.795-3.936,2.793-4.645c0.263-0.185,0.994-0.554,1.581-0.849c0.595-0.301,1.11-0.558,1.413-0.751 c2.499-1.603,3.411-7.21,3.505-7.845l0.296-1.983L30.108,6.172z" enable-background="new " opacity="0.6"/>
+<polygon fill-opacity="0.4" points="48.269,47.876 43.529,36.76 43.529,45.003 " stroke-opacity="0.4"/>
+<ellipse cx="22.188" cy="28.443" fill="#333333" fill-opacity="0.2" rx="6.056" ry="2.335" stroke-opacity="0.2"/>
+<path d="M24.975,28.442c0,0.592-1.25,1.073-2.786,1.073 c-1.536,0-2.787-0.482-2.787-1.073c0-0.596,1.25-1.076,2.787-1.076C23.724,27.367,24.975,27.847,24.975,28.442z" fill="#333333" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M30.108,6.172c-1.354,0.957-3.687,2.304-4.689,2.304c-0.001,0-0.001,0-0.003,0 c-0.229-0.027-0.567-0.25-0.927-0.485c-0.718-0.468-1.704-1.113-3.139-1.124c-1.059,0-2.665,1.035-3.74,1.829l-0.667-1.729 L11.995,8.87l1.134,2.934l0.667-0.256l5.98,15.49l2.866,2.022l0.742-3.411l-1.496-3.874l0.268-0.689 c0.55-1.418,1.795-3.936,2.793-4.645c0.263-0.185,0.994-0.554,1.581-0.849c0.595-0.301,1.11-0.558,1.413-0.751 c2.499-1.603,3.411-7.21,3.505-7.845l0.296-1.983L30.108,6.172z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-293.0366" x2="-295.1697" y1="-2176.2671" y2="-2176.2671">
- <stop offset="0" style="stop-color:#8C8E8F"/>
- <stop offset="0.65" style="stop-color:#D9D9D9"/>
- <stop offset="1" style="stop-color:#AEB2B3"/>
+<stop offset="0" style="stop-color:#8C8E8F"/>
+<stop offset="0.65" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#AEB2B3"/>
</linearGradient>
<polygon fill="url(#SVGID_7_)" points="14.286,10.442 16.297,9.666 22.493,25.715 22.077,27.618 20.482,26.49 "/>
<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-292.3564" x2="-295.8871" y1="-2166.1377" y2="-2166.1377">
- <stop offset="0" style="stop-color:#4F4F4F"/>
- <stop offset="0.59" style="stop-color:#BFBFBF"/>
- <stop offset="1" style="stop-color:#6B6B6B"/>
+<stop offset="0" style="stop-color:#4F4F4F"/>
+<stop offset="0.59" style="stop-color:#BFBFBF"/>
+<stop offset="1" style="stop-color:#6B6B6B"/>
</linearGradient>
<polygon fill="url(#SVGID_8_)" points="13.103,9.361 16.452,8.072 16.968,9.411 13.619,10.699 "/>
-<rect enable-background="new " height="0.717" opacity="0.2" transform="matrix(-0.9328 0.3603 -0.3603 -0.9328 33.5485 14.5261)" width="2.155" x="14.343" y="10.032"/>
+<rect fill-opacity="0.2" height="0.717" stroke-opacity="0.2" transform="matrix(-0.9328 0.3603 -0.3603 -0.9328 33.5485 14.5261)" width="2.155" x="14.343" y="10.032"/>
<path d="M17.225,10.08c0,0,2.878-2.366,4.131-2.354c1.958,0.013,2.896,1.477,3.959,1.601 c1.55,0.183,5.289-2.455,5.289-2.455s-0.877,5.81-3.122,7.253c-0.59,0.375-2.456,1.218-3.026,1.624 c-1.583,1.123-3.099,5.035-3.099,5.035L17.225,10.08z" fill="#33A02C"/>
-<path d="M21.652,8.488c1.958,0.018,2.897,1.48,3.958,1.605 c1.2,0.139,3.708-1.408,4.78-2.114c0.14-0.665,0.209-1.11,0.209-1.11s-3.739,2.638-5.29,2.455c-1.059-0.124-1.999-1.588-3.957-1.602 c-1.252-0.009-4.13,2.355-4.13,2.355l0.297,0.768C17.521,10.848,20.398,8.48,21.652,8.488z" enable-background="new " fill="#FFFFFF" opacity="0.4"/>
+<path d="M21.652,8.488c1.958,0.018,2.897,1.48,3.958,1.605 c1.2,0.139,3.708-1.408,4.78-2.114c0.14-0.665,0.209-1.11,0.209-1.11s-3.739,2.638-5.29,2.455c-1.059-0.124-1.999-1.588-3.957-1.602 c-1.252-0.009-4.13,2.355-4.13,2.355l0.297,0.768C17.521,10.848,20.398,8.48,21.652,8.488z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
</g>
<g transform="matrix(1 0 0 1 30 0)">
<rect fill="none" height="15" width="15" x="15"/>
-<rect height="4.412" opacity="0.6" style="enable-background:new;" transform="matrix(-0.2587 0.9659 -0.9659 -0.2587 29.2728 -12.3701)" width="7.941" x="15.41" y="2.841"/>
+<rect fill-opacity="0.6" height="4.412" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(-0.2587 0.9659 -0.9659 -0.2587 29.2728 -12.3701)" width="7.941" x="15.41" y="2.841"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-70.19" x2="-73.15" y1="114.9" y2="107.7">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.26" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="20.17,8.913,16.76,8,18.59,1.181,22,2.094"/>
-<rect height="4.411" opacity="0.6" style="enable-background:new;" transform="matrix(-0.7072 0.7071 -0.7071 -0.7072 48.0833 -1.2961)" width="9.707" x="19.46" y="7.104"/>
+<rect fill-opacity="0.6" height="4.411" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(-0.7072 0.7071 -0.7071 -0.7072 48.0833 -1.2961)" width="9.707" x="19.46" y="7.104"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-63.01" x2="-70.68" y1="110.1" y2="104.1">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.26" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="22.44,13.68,19.94,11.18,26.18,4.942,28.68,7.438"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_maps.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_maps.svg Thu May 27 13:10:59 2010 +0300
@@ -1,61 +1,60 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="240.1621" x2="240.1621" y1="1779.4043" y2="1824.6136">
- <stop offset="0" style="stop-color:#4FB7EB"/>
- <stop offset="1" style="stop-color:#1755B3"/>
+<stop offset="0" style="stop-color:#4FB7EB"/>
+<stop offset="1" style="stop-color:#1755B3"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="49.361,9.213 57.039,10.264 57.039,53.138 43.52,54.988 30.002,52.297 22.284,53.751 "/>
<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="237.2617" x2="237.2617" y1="1791.29" y2="1823.7784">
- <stop offset="0" style="stop-color:#8EFFF5"/>
- <stop offset="1" style="stop-color:#1D9DD8"/>
+<stop offset="0" style="stop-color:#8EFFF5"/>
+<stop offset="1" style="stop-color:#1D9DD8"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="43.52,21.685 43.52,54.988 30.002,52.297 30.002,41.25 "/>
-<polygon enable-background="new " opacity="0.25" points="50.26,9.347 43.52,23.584 30.002,43.172 23.378,53.564 20.226,54.149 47.881,9.016 "/>
+<polygon fill-opacity="0.25" points="50.26,9.347 43.52,23.584 30.002,43.172 23.378,53.564 20.226,54.149 47.881,9.016 " stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="224.7246" x2="224.7246" y1="1777.3057" y2="1823.4724">
- <stop offset="0" style="stop-color:#FEEFA7"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEEFA7"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="45.482,11.152 43.414,22.27 30.002,41.725 22.334,53.759 15.733,54.988 2.966,52.584 2.966,9.338 15.358,8.413 30.002,10.446 43.52,8.413 "/>
<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="223.3672" x2="223.3672" y1="1821.5967" y2="1778.4828">
- <stop offset="0" style="stop-color:#E69400"/>
- <stop offset="1" style="stop-color:#F9DE4F"/>
+<stop offset="0" style="stop-color:#E69400"/>
+<stop offset="1" style="stop-color:#F9DE4F"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="30.002,10.446 30.002,41.725 22.334,53.759 15.733,54.988 15.733,8.466 "/>
<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="246.9512" x2="246.9512" y1="1790.3203" y2="1777.6716">
- <stop offset="0" style="stop-color:#E69400"/>
- <stop offset="1" style="stop-color:#F9DE4F"/>
+<stop offset="0" style="stop-color:#E69400"/>
+<stop offset="1" style="stop-color:#F9DE4F"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="43.52,8.413 43.52,22.115 49.383,9.217 "/>
-<path d="M16.483,54.842l11.49-17.231l-4.842-2.408l-7.341,10.153 l-7.165,8.278l-2.291-0.423l9.408-11.076l5.523-7.851l-5.782-2.847L2.966,28.87v-1.32l12.995,2.686l6.069,2.979l6.841-9.601 l-13.34-6.657L2.966,14.749v-2.042l12.971,2.171l13.968,6.972l4.002-6.801l-3.909-1.375l-5.803-4.013l2.769,0.382l3.052,2.232 l4.547,1.656l2.688-4.564L39.88,8.99l-3.501,5.915l4.996,2.688l2.188-3.465l2.255-5.396l1.271,0.173l-3.554,7.663 c0,0-8.687,13.462-13.519,20.691L18.318,54.506L16.483,54.842z M28.84,36.606l-4.9-2.489l6.734-9.471l4.502,2.188L28.84,36.606z M31.749,22.77l4.711,2.353l4.219-6.434l-4.955-2.665L31.749,22.77L31.749,22.77z" enable-background="new " fill="#FFFFFF" opacity="0.25"/>
+<path d="M16.483,54.842l11.49-17.231l-4.842-2.408l-7.341,10.153 l-7.165,8.278l-2.291-0.423l9.408-11.076l5.523-7.851l-5.782-2.847L2.966,28.87v-1.32l12.995,2.686l6.069,2.979l6.841-9.601 l-13.34-6.657L2.966,14.749v-2.042l12.971,2.171l13.968,6.972l4.002-6.801l-3.909-1.375l-5.803-4.013l2.769,0.382l3.052,2.232 l4.547,1.656l2.688-4.564L39.88,8.99l-3.501,5.915l4.996,2.688l2.188-3.465l2.255-5.396l1.271,0.173l-3.554,7.663 c0,0-8.687,13.462-13.519,20.691L18.318,54.506L16.483,54.842z M28.84,36.606l-4.9-2.489l6.734-9.471l4.502,2.188L28.84,36.606z M31.749,22.77l4.711,2.353l4.219-6.434l-4.955-2.665L31.749,22.77L31.749,22.77z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="225.3965" x2="225.3965" y1="1823.0439" y2="1789.2549">
- <stop offset="0" style="stop-color:#FCE28D"/>
- <stop offset="0.81" style="stop-color:#FEF7DF"/>
+<stop offset="0" style="stop-color:#FCE28D"/>
+<stop offset="0.81" style="stop-color:#FEF7DF"/>
+<stop offset="1" style="stop-color:#FEF7DF"/>
</linearGradient>
<path d="M46.023,8.754l-2.476,5.931c0,0-1.334,2.112-2.077,3.276l-5.482-2.949l3.524-5.947l-1.787,0.241 l-3.056,4.998l-4.625-1.697l-3.417-2.63l-2.114-0.292l5.51,3.755l4.268,1.503l-4.276,7.272l-14.135-7.055L2.966,12.979v1.483 l12.621,2.208l13.674,6.826l-0.164,0.277l-6.977,9.795l-6.365-3.099L2.961,27.85l0.005,0.742l12.754,2.651l5.965,2.939l-5.926,8.307 l-9.111,10.79l1.693,0.316l7.417-8.591l7.281-10.156l5.416,2.667L16.876,54.777l1.051-0.198l12.09-18.127l13.55-20.397l3.266-7.185 L46.023,8.754z M30.012,34.986l-1.265,1.946l-5.27-2.696l6.605-9.38l0.519-0.685l5.139,2.564L30.012,34.986z M36.559,25.482 l-5.202-2.598l4.261-7.232l5.453,2.936L36.559,25.482z" fill="url(#SVGID_6_)"/>
<polygon fill="#FFFFFF" points="38.253,47.876 43.529,36.76 48.269,47.876 43.529,45.003 "/>
-<polygon enable-background="new " opacity="0.4" points="48.269,47.876 43.529,36.76 43.529,45.003 "/>
-<ellipse cx="22.188" cy="28.443" enable-background="new " fill="#333333" opacity="0.2" rx="6.056" ry="2.335"/>
-<path d="M24.975,28.442c0,0.592-1.25,1.073-2.786,1.073 c-1.536,0-2.787-0.482-2.787-1.073c0-0.596,1.25-1.076,2.787-1.076C23.724,27.367,24.975,27.847,24.975,28.442z" enable-background="new " fill="#333333" opacity="0.4"/>
-<path d="M30.108,6.172c-1.354,0.957-3.687,2.304-4.689,2.304c-0.001,0-0.001,0-0.003,0 c-0.229-0.027-0.567-0.25-0.927-0.485c-0.718-0.468-1.704-1.113-3.139-1.124c-1.059,0-2.665,1.035-3.74,1.829l-0.667-1.729 L11.995,8.87l1.134,2.934l0.667-0.256l5.98,15.49l2.866,2.022l0.742-3.411l-1.496-3.874l0.268-0.689 c0.55-1.418,1.795-3.936,2.793-4.645c0.263-0.185,0.994-0.554,1.581-0.849c0.595-0.301,1.11-0.558,1.413-0.751 c2.499-1.603,3.411-7.21,3.505-7.845l0.296-1.983L30.108,6.172z" enable-background="new " opacity="0.6"/>
+<polygon fill-opacity="0.4" points="48.269,47.876 43.529,36.76 43.529,45.003 " stroke-opacity="0.4"/>
+<ellipse cx="22.188" cy="28.443" fill="#333333" fill-opacity="0.2" rx="6.056" ry="2.335" stroke-opacity="0.2"/>
+<path d="M24.975,28.442c0,0.592-1.25,1.073-2.786,1.073 c-1.536,0-2.787-0.482-2.787-1.073c0-0.596,1.25-1.076,2.787-1.076C23.724,27.367,24.975,27.847,24.975,28.442z" fill="#333333" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M30.108,6.172c-1.354,0.957-3.687,2.304-4.689,2.304c-0.001,0-0.001,0-0.003,0 c-0.229-0.027-0.567-0.25-0.927-0.485c-0.718-0.468-1.704-1.113-3.139-1.124c-1.059,0-2.665,1.035-3.74,1.829l-0.667-1.729 L11.995,8.87l1.134,2.934l0.667-0.256l5.98,15.49l2.866,2.022l0.742-3.411l-1.496-3.874l0.268-0.689 c0.55-1.418,1.795-3.936,2.793-4.645c0.263-0.185,0.994-0.554,1.581-0.849c0.595-0.301,1.11-0.558,1.413-0.751 c2.499-1.603,3.411-7.21,3.505-7.845l0.296-1.983L30.108,6.172z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-293.0366" x2="-295.1697" y1="-2176.2671" y2="-2176.2671">
- <stop offset="0" style="stop-color:#8C8E8F"/>
- <stop offset="0.65" style="stop-color:#D9D9D9"/>
- <stop offset="1" style="stop-color:#AEB2B3"/>
+<stop offset="0" style="stop-color:#8C8E8F"/>
+<stop offset="0.65" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#AEB2B3"/>
</linearGradient>
<polygon fill="url(#SVGID_7_)" points="14.286,10.442 16.297,9.666 22.493,25.715 22.077,27.618 20.482,26.49 "/>
<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-292.3564" x2="-295.8871" y1="-2166.1377" y2="-2166.1377">
- <stop offset="0" style="stop-color:#4F4F4F"/>
- <stop offset="0.59" style="stop-color:#BFBFBF"/>
- <stop offset="1" style="stop-color:#6B6B6B"/>
+<stop offset="0" style="stop-color:#4F4F4F"/>
+<stop offset="0.59" style="stop-color:#BFBFBF"/>
+<stop offset="1" style="stop-color:#6B6B6B"/>
</linearGradient>
<polygon fill="url(#SVGID_8_)" points="13.103,9.361 16.452,8.072 16.968,9.411 13.619,10.699 "/>
-<rect enable-background="new " height="0.717" opacity="0.2" transform="matrix(-0.9328 0.3603 -0.3603 -0.9328 33.5485 14.5261)" width="2.155" x="14.343" y="10.032"/>
+<rect fill-opacity="0.2" height="0.717" stroke-opacity="0.2" transform="matrix(-0.9328 0.3603 -0.3603 -0.9328 33.5485 14.5261)" width="2.155" x="14.343" y="10.032"/>
<path d="M17.225,10.08c0,0,2.878-2.366,4.131-2.354c1.958,0.013,2.896,1.477,3.959,1.601 c1.55,0.183,5.289-2.455,5.289-2.455s-0.877,5.81-3.122,7.253c-0.59,0.375-2.456,1.218-3.026,1.624 c-1.583,1.123-3.099,5.035-3.099,5.035L17.225,10.08z" fill="#33A02C"/>
-<path d="M21.652,8.488c1.958,0.018,2.897,1.48,3.958,1.605 c1.2,0.139,3.708-1.408,4.78-2.114c0.14-0.665,0.209-1.11,0.209-1.11s-3.739,2.638-5.29,2.455c-1.059-0.124-1.999-1.588-3.957-1.602 c-1.252-0.009-4.13,2.355-4.13,2.355l0.297,0.768C17.521,10.848,20.398,8.48,21.652,8.488z" enable-background="new " fill="#FFFFFF" opacity="0.4"/>
+<path d="M21.652,8.488c1.958,0.018,2.897,1.48,3.958,1.605 c1.2,0.139,3.708-1.408,4.78-2.114c0.14-0.665,0.209-1.11,0.209-1.11s-3.739,2.638-5.29,2.455c-1.059-0.124-1.999-1.588-3.957-1.602 c-1.252-0.009-4.13,2.355-4.13,2.355l0.297,0.768C17.521,10.848,20.398,8.48,21.652,8.488z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mass_storage.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mass_storage.svg Thu May 27 13:10:59 2010 +0300
@@ -1,130 +1,131 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="1.8516" y2="57.6129">
- <stop offset="0" style="stop-color:#6B6B6B"/>
- <stop offset="1" style="stop-color:#141414"/>
+<stop offset="0" style="stop-color:#6B6B6B"/>
+<stop offset="1" style="stop-color:#141414"/>
</linearGradient>
<path d="M51.818,56.545c0,0.805-0.65,1.455-1.455,1.455H9.638c-0.804,0-1.456-0.65-1.456-1.455V3.455 C8.182,2.652,8.834,2,9.638,2h40.726c0.805,0,1.455,0.652,1.455,1.455V56.545z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.583" y2="56.8955">
- <stop offset="0" style="stop-color:#C7C7C7"/>
- <stop offset="0.7394" style="stop-color:#2B2B2B"/>
- <stop offset="1" style="stop-color:#737373"/>
+<stop offset="0" style="stop-color:#C7C7C7"/>
+<stop offset="0.7394" style="stop-color:#2B2B2B"/>
+<stop offset="1" style="stop-color:#737373"/>
</linearGradient>
<path d="M9.638,57.272c-0.401,0-0.729-0.326-0.729-0.728V3.455c0-0.401,0.327-0.728,0.729-0.728h40.726 c0.401,0,0.728,0.326,0.728,0.728v53.09c0,0.401-0.326,0.728-0.728,0.728H9.638z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="3.3145" y2="56.178">
- <stop offset="0" style="stop-color:#8F8F8F"/>
- <stop offset="0.6303" style="stop-color:#393939"/>
- <stop offset="1" style="stop-color:#757575"/>
+<stop offset="0" style="stop-color:#8F8F8F"/>
+<stop offset="0.6303" style="stop-color:#393939"/>
+<stop offset="1" style="stop-color:#757575"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="53.09" width="40.727" x="9.637" y="3.455"/>
-<path d="M45.023,12.962l2.573-2.569c0.853-0.854,0.853-2.235,0-3.088l-1.03-1.027c-0.854-0.852-2.232-0.852-3.086,0 l-2.571,2.57L45.023,12.962z" opacity="0.3"/>
-<path d="M30,44.908c-10.828,0-19.638-8.805-19.638-19.636c0-10.825,8.81-19.638,19.638-19.638 s19.639,8.813,19.639,19.638C49.639,36.104,40.828,44.908,30,44.908L30,44.908z" opacity="0.15"/>
-<path d="M30,44.181c-10.828,0-19.638-8.805-19.638-19.636c0-10.825,8.81-19.637,19.638-19.637 s19.639,8.812,19.639,19.637C49.639,35.376,40.828,44.181,30,44.181L30,44.181z" opacity="0.15"/>
-<path d="M30,43.453c-10.828,0-19.638-8.805-19.638-19.635c0-10.826,8.81-19.638,19.638-19.638 s19.639,8.812,19.639,19.638C49.639,34.648,40.828,43.453,30,43.453L30,43.453z" opacity="0.15"/>
+<path d="M45.023,12.962l2.573-2.569c0.853-0.854,0.853-2.235,0-3.088l-1.03-1.027c-0.854-0.852-2.232-0.852-3.086,0 l-2.571,2.57L45.023,12.962z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M30,44.908c-10.828,0-19.638-8.805-19.638-19.636c0-10.825,8.81-19.638,19.638-19.638 s19.639,8.813,19.639,19.638C49.639,36.104,40.828,44.908,30,44.908L30,44.908z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M30,44.181c-10.828,0-19.638-8.805-19.638-19.636c0-10.825,8.81-19.637,19.638-19.637 s19.639,8.812,19.639,19.637C49.639,35.376,40.828,44.181,30,44.181L30,44.181z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M30,43.453c-10.828,0-19.638-8.805-19.638-19.635c0-10.826,8.81-19.638,19.638-19.638 s19.639,8.812,19.639,19.638C49.639,34.648,40.828,43.453,30,43.453L30,43.453z" fill-opacity="0.15" stroke-opacity="0.15"/>
<path d="M30,42.727c-10.426,0-18.908-8.48-18.908-18.908c0-10.426,8.482-18.91,18.908-18.91 s18.908,8.484,18.908,18.91C48.908,34.246,40.426,42.727,30,42.727L30,42.727z" fill="#BDBDBD"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.3638" y2="42.0003">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D4D4D4"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D4D4D4"/>
</linearGradient>
<circle cx="29.999" cy="23.818" fill="url(#SVGID_4_)" r="18.181"/>
<path d="M30,30.461c-3.662,0-6.644-2.979-6.644-6.643c0-3.662,2.981-6.643,6.644-6.643 c3.663,0,6.645,2.98,6.645,6.643C36.645,27.482,33.663,30.461,30,30.461L30,30.461z" fill="#FFFFFF"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="18.5815" y2="29.2736">
- <stop offset="0" style="stop-color:#A7A7A7"/>
- <stop offset="1" style="stop-color:#575757"/>
+<stop offset="0" style="stop-color:#A7A7A7"/>
+<stop offset="1" style="stop-color:#575757"/>
</linearGradient>
<circle cx="30" cy="23.818" fill="url(#SVGID_5_)" r="5.455"/>
-<path d="M30,27.818c-1.403,0-2.545-1.141-2.545-2.546c0-1.403,1.142-2.544,2.545-2.544s2.545,1.141,2.545,2.544 C32.545,26.678,31.403,27.818,30,27.818L30,27.818z" opacity="0.15"/>
-<path d="M30,27.091c-1.403,0-2.545-1.141-2.545-2.546c0-1.403,1.142-2.544,2.545-2.544s2.545,1.141,2.545,2.544 C32.545,25.95,31.403,27.091,30,27.091L30,27.091z" opacity="0.15"/>
+<path d="M30,27.818c-1.403,0-2.545-1.141-2.545-2.546c0-1.403,1.142-2.544,2.545-2.544s2.545,1.141,2.545,2.544 C32.545,26.678,31.403,27.818,30,27.818L30,27.818z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M30,27.091c-1.403,0-2.545-1.141-2.545-2.546c0-1.403,1.142-2.544,2.545-2.544s2.545,1.141,2.545,2.544 C32.545,25.95,31.403,27.091,30,27.091L30,27.091z" fill-opacity="0.15" stroke-opacity="0.15"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="21.2734" y2="25.8797">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#9C9C9C"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#9C9C9C"/>
</linearGradient>
<path d="M30,26.363c-1.403,0-2.545-1.141-2.545-2.545s1.142-2.545,2.545-2.545s2.545,1.141,2.545,2.545 S31.403,26.363,30,26.363L30,26.363z" fill="url(#SVGID_6_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 0 1816.916)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="1776.7061" y2="1793.0983">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#BFBFBF"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#BFBFBF"/>
</linearGradient>
<path d="M30,30.727c3.81,0,6.91-3.1,6.91-6.908h9.818c0,9.225-7.504,16.727-16.729,16.727 s-16.729-7.502-16.729-16.727h9.819C23.091,27.627,26.191,30.727,30,30.727z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="45.2734" x2="46.7285" y1="7.8184" y2="7.8184">
- <stop offset="0" style="stop-color:#F0F0F0"/>
- <stop offset="1" style="stop-color:#D4D4D4"/>
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#D4D4D4"/>
</linearGradient>
<path d="M46.729,7.816c0,0.406-0.325,0.73-0.729,0.73c-0.4,0-0.726-0.324-0.726-0.73 c0-0.402,0.325-0.727,0.726-0.727C46.403,7.09,46.729,7.414,46.729,7.816z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="48.1797" x2="50.3633" y1="54.728" y2="54.728">
- <stop offset="0" style="stop-color:#F0F0F0"/>
- <stop offset="1" style="stop-color:#D4D4D4"/>
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#D4D4D4"/>
</linearGradient>
<path d="M50.363,54.727c0,0.604-0.489,1.093-1.09,1.093c-0.603,0-1.094-0.489-1.094-1.093 c0-0.6,0.491-1.09,1.094-1.09C49.874,53.637,50.363,54.127,50.363,54.727z" fill="url(#SVGID_9_)"/>
-<path d="M25.234,48.957c-1.146,0-3.191-0.967-3.472-1.135c-0.158-0.096-3.782-2.328-2.635-4.234l0.034-0.057 l0.076-0.105l7.997-9.101c0.427-0.602,1.117-0.959,1.856-0.959c0.411,0,0.813,0.112,1.167,0.323 c1.021,0.617,1.392,1.911,0.858,2.969l-4.311,11.394l-0.035,0.058C26.436,48.668,25.888,48.957,25.234,48.957L25.234,48.957z" opacity="0.15"/>
-<path d="M23.779,48.229c-1.146,0-3.19-0.966-3.471-1.134c-0.158-0.097-3.782-2.328-2.635-4.235l0.033-0.057 l0.077-0.104l7.996-9.102c0.428-0.602,1.117-0.959,1.857-0.959c0.41,0,0.813,0.112,1.166,0.324c1.022,0.616,1.393,1.91,0.859,2.969 l-4.311,11.393l-0.035,0.058C24.981,47.94,24.433,48.229,23.779,48.229L23.779,48.229z" opacity="0.15"/>
+<path d="M25.234,48.957c-1.146,0-3.191-0.967-3.472-1.135c-0.158-0.096-3.782-2.328-2.635-4.234l0.034-0.057 l0.076-0.105l7.997-9.101c0.427-0.602,1.117-0.959,1.856-0.959c0.411,0,0.813,0.112,1.167,0.323 c1.021,0.617,1.392,1.911,0.858,2.969l-4.311,11.394l-0.035,0.058C26.436,48.668,25.888,48.957,25.234,48.957L25.234,48.957z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M23.779,48.229c-1.146,0-3.19-0.966-3.471-1.134c-0.158-0.097-3.782-2.328-2.635-4.235l0.033-0.057 l0.077-0.104l7.996-9.102c0.428-0.602,1.117-0.959,1.857-0.959c0.41,0,0.813,0.112,1.166,0.324c1.022,0.616,1.393,1.91,0.859,2.969 l-4.311,11.393l-0.035,0.058C24.981,47.94,24.433,48.229,23.779,48.229L23.779,48.229z" fill-opacity="0.15" stroke-opacity="0.15"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="18.1836" x2="29.1768" y1="39.707" y2="39.707">
- <stop offset="0.0364" style="stop-color:#8E8E8E"/>
- <stop offset="1" style="stop-color:#444444"/>
+<stop offset="0" style="stop-color:#8E8E8E"/>
+<stop offset="0.0364" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#444444"/>
</linearGradient>
<path d="M23.779,46.775c-0.917,0-2.807-0.857-3.097-1.031c-0.036-0.021-3.123-2.012-2.386-3.236l0.033-0.057 l8.024-9.132c0.285-0.421,0.771-0.681,1.283-0.681c0.278,0,0.553,0.076,0.792,0.22c0.705,0.426,0.95,1.331,0.567,2.049l-4.302,11.37 l-0.034,0.057C24.562,46.499,24.315,46.775,23.779,46.775L23.779,46.775z" fill="url(#SVGID_10_)"/>
<linearGradient gradientTransform="matrix(0.5666 0.3407 -0.3408 0.5666 193.5584 513.624)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-588.8296" x2="-588.8296" y1="-492.9287" y2="-472.7992">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
<path d="M24.038,45.959c-0.233,0.387-2.597-0.607-2.981-0.838l0,0c-0.384-0.234-2.37-1.852-2.137-2.238 l8.016-9.123c0.234-0.385,0.736-0.508,1.12-0.277l0,0c0.385,0.232,0.509,0.732,0.28,1.117L24.038,45.959z" fill="url(#SVGID_11_)"/>
<linearGradient gradientTransform="matrix(0.5666 0.3407 -0.3408 0.5666 193.5584 513.624)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-588.8315" x2="-588.8315" y1="-477.6504" y2="-473.626">
- <stop offset="0" style="stop-color:#444444"/>
- <stop offset="0.5455" style="stop-color:#8E8E8E"/>
- <stop offset="1" style="stop-color:#444444"/>
+<stop offset="0" style="stop-color:#444444"/>
+<stop offset="0.5455" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#444444"/>
</linearGradient>
<path d="M23.201,44.189c-0.384,0.643-1.219,0.852-1.863,0.463c-0.642-0.387-0.849-1.221-0.463-1.863 c0.389-0.641,1.221-0.848,1.863-0.463C23.381,42.715,23.588,43.547,23.201,44.189z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="9.6377" x2="11.8174" y1="54.728" y2="54.728">
- <stop offset="0" style="stop-color:#F0F0F0"/>
- <stop offset="1" style="stop-color:#D4D4D4"/>
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#D4D4D4"/>
</linearGradient>
<path d="M11.817,54.727c0,0.604-0.487,1.093-1.091,1.093c-0.599,0-1.089-0.489-1.089-1.093 c0-0.6,0.49-1.09,1.089-1.09C11.33,53.637,11.817,54.127,11.817,54.727z" fill="url(#SVGID_13_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="20.9092" x2="20.9092" y1="43.8174" y2="55.5303">
- <stop offset="0" style="stop-color:#8E8E8E"/>
- <stop offset="1" style="stop-color:#444444"/>
+<stop offset="0" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#444444"/>
</linearGradient>
<path d="M14.002,55.527c-1.205,0-2.185-0.98-2.185-2.186V41.965c0-0.195,0.075-0.379,0.215-0.516 l2.387-2.387c0.142-0.141,0.328-0.213,0.514-0.213c0.184,0,0.362,0.064,0.501,0.201c3.761,3.598,8.684,5.67,13.863,5.84 C29.689,44.902,30,45.229,30,45.617v7.725c0,1.205-0.979,2.186-2.18,2.186H14.002z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="20.9092" x2="20.9092" y1="43.4331" y2="54.5986">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#9C9C9C"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#9C9C9C"/>
</linearGradient>
<path d="M12.547,41.965v11.377c0,0.803,0.65,1.457,1.455,1.457H27.82c0.802,0,1.45-0.654,1.45-1.457V50 v-3.461v-0.922c-5.55-0.184-10.578-2.447-14.338-6.039L12.547,41.965z" fill="url(#SVGID_15_)"/>
-<path d="M14.933,39.578l-2.386,2.387v0.969l2.386-2.389c3.76,3.592,8.788,5.861,14.338,6.043v-0.049 v-0.922C23.721,45.434,18.692,43.17,14.933,39.578z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M14.933,39.578l-2.386,2.387v0.969l2.386-2.389c3.76,3.592,8.788,5.861,14.338,6.043v-0.049 v-0.922C23.721,45.434,18.692,43.17,14.933,39.578z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="26.7285" x2="26.7285" y1="48.6167" y2="52.1807">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#BFBFBF"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#BFBFBF"/>
</linearGradient>
<path d="M26.729,52.181c-1.003,0-1.819-0.815-1.819-1.817c0-1.003,0.816-1.819,1.819-1.819 s1.819,0.816,1.819,1.819C28.548,51.365,27.731,52.181,26.729,52.181L26.729,52.181z" fill="url(#SVGID_16_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="26.7275" x2="26.7275" y1="49.3149" y2="51.453">
- <stop offset="0.0364" style="stop-color:#8E8E8E"/>
- <stop offset="1" style="stop-color:#444444"/>
+<stop offset="0" style="stop-color:#8E8E8E"/>
+<stop offset="0.0364" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#444444"/>
</linearGradient>
<path d="M27.82,50.363c0,0.605-0.492,1.09-1.092,1.09c-0.604,0-1.093-0.484-1.093-1.09 c0-0.602,0.489-1.092,1.093-1.092C27.328,49.271,27.82,49.762,27.82,50.363z" fill="url(#SVGID_17_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="15.0928" x2="15.0928" y1="42.0718" y2="45.6377">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#BFBFBF"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#BFBFBF"/>
</linearGradient>
<path d="M15.092,45.638c-1.002,0-1.816-0.817-1.816-1.821c0-1.002,0.814-1.817,1.816-1.817 c1.003,0,1.817,0.815,1.817,1.817C16.909,44.82,16.095,45.638,15.092,45.638L15.092,45.638z" fill="url(#SVGID_18_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="15.0918" x2="15.0918" y1="42.77" y2="44.91">
- <stop offset="0.0364" style="stop-color:#8E8E8E"/>
- <stop offset="1" style="stop-color:#444444"/>
+<stop offset="0" style="stop-color:#8E8E8E"/>
+<stop offset="0.0364" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#444444"/>
</linearGradient>
<path d="M16.182,43.816c0,0.605-0.487,1.094-1.09,1.094c-0.604,0-1.09-0.488-1.09-1.094 c0-0.598,0.486-1.09,1.09-1.09C15.694,42.727,16.182,43.219,16.182,43.816z" fill="url(#SVGID_19_)"/>
-<path d="M33.564,56.036c-1.056,0-1.914-0.859-1.914-1.915v-4.75c0-1.057,0.858-1.917,1.914-1.917h14.254 c1.056,0,1.915,0.86,1.915,1.917v3.749l-0.642,0.077c-0.781,0.093-1.37,0.75-1.37,1.529c0,0.119,0.02,0.251,0.058,0.394l0.247,0.916 H33.564z" opacity="0.35"/>
+<path d="M33.564,56.036c-1.056,0-1.914-0.859-1.914-1.915v-4.75c0-1.057,0.858-1.917,1.914-1.917h14.254 c1.056,0,1.915,0.86,1.915,1.917v3.749l-0.642,0.077c-0.781,0.093-1.37,0.75-1.37,1.529c0,0.119,0.02,0.251,0.058,0.394l0.247,0.916 H33.564z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="40.6914" x2="40.6914" y1="48.2568" y2="55.137">
- <stop offset="0" style="stop-color:#FAFFC7"/>
- <stop offset="1" style="stop-color:#EE971E"/>
+<stop offset="0" style="stop-color:#FAFFC7"/>
+<stop offset="1" style="stop-color:#EE971E"/>
</linearGradient>
<path d="M49.006,52.475v-3.104c0-0.658-0.529-1.189-1.188-1.189H33.564c-0.658,0-1.188,0.531-1.188,1.189 v4.75c0,0.656,0.529,1.188,1.188,1.188h13.513c-0.05-0.185-0.083-0.381-0.083-0.582C46.994,53.564,47.874,52.609,49.006,52.475z" fill="url(#SVGID_20_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="40.6914" x2="40.6914" y1="48.9683" y2="54.4456">
- <stop offset="0" style="stop-color:#F9E169"/>
- <stop offset="1" style="stop-color:#ED8C0D"/>
+<stop offset="0" style="stop-color:#F9E169"/>
+<stop offset="1" style="stop-color:#ED8C0D"/>
</linearGradient>
<path d="M33.564,54.582c-0.254,0-0.46-0.207-0.46-0.461v-4.75c0-0.256,0.206-0.463,0.46-0.463h14.254 c0.254,0,0.46,0.207,0.46,0.463V51.9c-1.137,0.398-1.948,1.45-2.008,2.682H33.564z" fill="url(#SVGID_21_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_media_transfer.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_media_transfer.svg Thu May 27 13:10:59 2010 +0300
@@ -1,94 +1,71 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
- <stop offset="0" style="stop-color:#757575"/>
- <stop offset="0.2424" style="stop-color:#000000"/>
- <stop offset="0.8606" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#363636"/>
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
-<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" enable-background="new " fill="#FFFFFF" opacity="0.55"/>
-<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" enable-background="new " fill="#FFFFFF" opacity="0.1"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.5" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
-<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" enable-background="new " fill="#FFFFFF" opacity="0.5"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#404040"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
-<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" enable-background="new " fill="#FFFFFF" opacity="0.2"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="17.44" x2="17.44" y1="11.62" y2="23.26">
-
<stop offset="0" stop-color="#C6FF45"/>
-
<stop offset="0.7273" stop-color="#66A00E"/>
-
<stop offset="1" stop-color="#387300"/>
-
</linearGradient>
<path d="M9,21l8.392-4.184v2.635l0.379-0.072c3.278-0.629,5.699-2.189,6.479-4.178,0.428-1.096,0.368-2.309-0.166-3.576,0.945,1.015,1.97,2.541,1.76,4.252-0.307,2.496-3.08,4.732-8.244,6.648l-0.21,0.07v2.58l-8.39-4.18z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.02" x2="15.02" y1="25.71" y2="21.02">
-
<stop offset="0" stop-color="#C6FF45"/>
-
<stop offset="1" stop-color="#66A00E"/>
-
</linearGradient>
<path d="M8.396,21.05l9.315,4.646v-2.875c1.562-0.58,2.855-1.173,3.926-1.771h-13.24z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="12.56" x2="12.56" y1="18.16" y2="4.52">
-
<stop offset="0" stop-color="#45E8FF"/>
-
<stop offset="0.5" stop-color="#30A4D5"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
<path d="M5.916,17.78c-0.945-1.015-1.97-2.541-1.76-4.251,0.307-2.496,3.08-4.734,8.243-6.65l0.208-0.076v-2.581l8.391,4.185-8.391,4.183v-2.635l-0.379,0.072c-3.278,0.629-5.7,2.191-6.478,4.178-0.431,1.09-0.371,2.31,0.164,3.57z" fill="url(#SVGID_3__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="14.98" x2="14.98" y1="4.235" y2="7.602">
-
<stop offset="0" stop-color="#45E8FF"/>
-
<stop offset="1" stop-color="#30A4D5"/>
-
</linearGradient>
<path d="M21.6,8.352l-9.315-4.645v2.875c-1.561,0.579-2.855,1.172-3.925,1.77h13.25z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="12.76" x2="12.76" y1="4.036" y2="13.82">
-
<stop offset="0" stop-color="#93E1FF"/>
-
<stop offset="0.0061" stop-color="#93E1FF"/>
-
<stop offset="1" stop-color="#1185BF"/>
-
</linearGradient>
<path d="M12.61,4.223l8.391,4.185-8.391,4.183v-2.633l-0.379,0.072c-3.278,0.629-5.699,2.191-6.478,4.178-0.429,1.098-0.369,2.313,0.167,3.581-0.946-1.013-1.971-2.538-1.762-4.253,0.305-2.497,3.079-4.735,8.243-6.652l0.208-0.076v-2.589m-0.32-0.516v2.875c-15.41,5.718-5.108,12.75-5.108,12.75-3.553-4.822,0.214-8.051,5.106-8.988v2.766l9.427-4.7-9.43-4.703z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="17.24" x2="17.24" y1="14.93" y2="25.69">
-
<stop offset="0" stop-color="#C5FE45"/>
-
<stop offset="1" stop-color="#4B8B00"/>
-
</linearGradient>
<path d="M22.82,10.07c3.553,4.821-0.214,8.05-5.106,8.987v-2.765l-9.426,4.7,9.426,4.701v-2.875c15.41-5.72,5.11-12.75,5.11-12.75zm-5.22,12.45l-0.21,0.08v2.58l-8.39-4.18,8.392-4.184v2.635l0.379-0.072c3.278-0.629,5.7-2.189,6.479-4.178,0.428-1.096,0.368-2.309-0.166-3.576,0.945,1.015,1.971,2.541,1.76,4.252-0.3,2.49-3.08,4.72-8.24,6.64z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_meeting.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_meeting.svg Thu May 27 13:10:59 2010 +0300
@@ -1,84 +1,85 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="23.5464" x2="23.5464" y1="13.1836" y2="47.804">
- <stop offset="0" style="stop-color:#E8B888"/>
- <stop offset="1" style="stop-color:#8D5837"/>
+<stop offset="0" style="stop-color:#E8B888"/>
+<stop offset="1" style="stop-color:#8D5837"/>
</linearGradient>
<path d="M1,30.709l6.997-17.846l7.236,3.014c0,0,7.392-2.457,9.202-2.545c0.512-0.024,0.941,0.068,1.294,0.16 c1.076,0.275,9.452,5.293,13.415,9.238c3.965,3.946,6.643,10.371,6.842,11.024c0.279,0.906,0.271,4.289-3.42,4.344 c0.434,1.955-1.031,4.778-3.91,4.67c0.598,2.063-1.629,5.321-4.563,4.453c0.297,0.914-0.426,2.207-1.1,2.644 c-1.131,0.732-1.598,0.732-2.596,0.399c-2.929-0.978-9.198-3.904-12.384-6.222c-3.494-2.54-6.045-4.525-7.53-7.096 c-0.768-1.33-2.823-3.258-3.765-3.909C5.59,32.255,1,30.709,1,30.709z" fill="url(#SVGID_1_)"/>
<radialGradient cx="1006.4844" cy="-265.7949" gradientTransform="matrix(0.7982 0 0 0.7982 -783.5864 230.4873)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="42.1015">
- <stop offset="0.0909" style="stop-color:#F8E0C8"/>
- <stop offset="0.4182" style="stop-color:#F0C8A0"/>
- <stop offset="0.6364" style="stop-color:#E8B888"/>
- <stop offset="1" style="stop-color:#BE7749"/>
+<stop offset="0" style="stop-color:#F8E0C8"/>
+<stop offset="0.0909" style="stop-color:#F8E0C8"/>
+<stop offset="0.4182" style="stop-color:#F0C8A0"/>
+<stop offset="0.6364" style="stop-color:#E8B888"/>
+<stop offset="1" style="stop-color:#BE7749"/>
</radialGradient>
<path d="M31.424,49.681c-0.18,0-0.402-0.051-0.771-0.173c-2.771-0.926-9.038-3.834-12.168-6.11 c-3.385-2.461-5.89-4.393-7.309-6.849c-0.882-1.528-3.074-3.525-4.002-4.168c-0.926-0.641-3.716-1.66-5.128-2.154l6.397-16.313 l6.759,2.815l0.283-0.094c2.027-0.674,7.594-2.438,8.988-2.505l0.13-0.003c0.344,0,0.647,0.065,0.926,0.138 c0.985,0.272,9.18,5.176,13.053,9.031c3.814,3.798,6.428,9.995,6.643,10.693c0.102,0.331,0.188,1.507-0.434,2.36 c-0.447,0.615-1.201,0.936-2.236,0.951l-0.98,0.015l0.213,0.956c0.186,0.834-0.084,1.857-0.688,2.609 c-0.4,0.499-1.121,1.093-2.283,1.093l-1.234-0.045l0.307,1.062c0.197,0.677-0.045,1.604-0.615,2.363 c-0.58,0.771-1.385,1.214-2.211,1.214c-0.242,0-0.492-0.037-0.74-0.111l-1.453-0.43l0.467,1.44c0.158,0.49-0.32,1.434-0.775,1.729 C31.938,49.598,31.656,49.681,31.424,49.681L31.424,49.681z" fill="url(#SVGID_2_)"/>
-<path d="M6.375,31.583c-0.744-0.516-2.684-1.271-4.152-1.807l-0.177,0.45 c1.412,0.494,4.202,1.514,5.128,2.154c0.389,0.27,1.001,0.782,1.645,1.393C7.916,32.822,6.925,31.964,6.375,31.583z" fill="#FFFFFF" opacity="0.75"/>
-<path d="M45.225,33.989c-0.215-0.698-2.828-6.896-6.643-10.693c-0.127-0.125-0.27-0.255-0.404-0.383 c3.598,3.817,6.041,9.604,6.248,10.278c0.102,0.331,0.189,1.507-0.432,2.36c-0.449,0.615-1.201,0.935-2.238,0.95l-0.98,0.016 l0.213,0.956c0.186,0.833-0.084,1.857-0.688,2.609c-0.4,0.498-1.119,1.093-2.283,1.093l-1.232-0.045l0.307,1.062 c0.195,0.677-0.047,1.604-0.617,2.362c-0.578,0.771-1.385,1.215-2.211,1.215c-0.242,0-0.492-0.037-0.74-0.111l-1.451-0.43 l0.465,1.44c0.158,0.489-0.32,1.434-0.775,1.728c-0.623,0.403-0.904,0.486-1.137,0.486c-0.18,0-0.403-0.051-0.771-0.174 c-2.771-0.925-9.037-3.833-12.167-6.109c-1.894-1.377-3.5-2.588-4.806-3.818c1.422,1.515,3.304,2.944,5.604,4.616 c3.13,2.276,9.396,5.185,12.168,6.11c0.369,0.122,0.592,0.173,0.771,0.173c0.232,0,0.514-0.083,1.137-0.485 c0.455-0.295,0.934-1.238,0.775-1.729l-0.467-1.44l1.453,0.43c0.248,0.074,0.498,0.111,0.74,0.111c0.826,0,1.631-0.442,2.211-1.214 c0.57-0.759,0.813-1.687,0.615-2.363l-0.307-1.062l1.234,0.045c1.162,0,1.883-0.594,2.283-1.093 c0.604-0.752,0.873-1.775,0.688-2.609l-0.213-0.956l0.98-0.015c1.035-0.016,1.789-0.336,2.236-0.951 C45.412,35.496,45.326,34.32,45.225,33.989z" fill="#FFFFFF" opacity="0.75"/>
-<path d="M45.986,33.755c-0.199-0.653-2.877-7.078-6.842-11.024c-3.963-3.945-12.339-8.963-13.415-9.238 c-0.353-0.092-0.782-0.185-1.294-0.16c-0.219,0.01-0.521,0.057-0.878,0.128c-0.379,0.268-0.681,0.506-0.853,0.688l-0.221,0.234 c-0.548,0.579-0.943,0.997-1.234,1.684c-0.734,1.733-0.737,3.109-0.741,4.565c-0.002,1.01-0.005,2.053-0.25,3.343l-0.074,0.386 c-0.488,2.497-0.874,5.024,0.204,6.103c0.537,0.537,1.349,0.833,2.285,0.833c0.669,0,1.31-0.153,1.801-0.43 c0.87-0.488,2.979-1.837,3.788-3.815c0.616-1.509,0.699-2.717,0.766-3.688c0.049-0.721,0.089-1.291,0.335-1.741 c0.157-0.287,0.257-0.345,0.827-0.646c0.156-0.083,0.333-0.176,0.538-0.29c0.57-0.318,1.422-0.882,1.67-1.048 c0.113-0.044,0.162-0.049,0.178-0.049c0.102,0,0.457,0.214,0.77,0.403c0.057,0.034,0.158,0.088,0.305,0.161 c0.906,0.461,3.668,1.861,6.061,4.917c4.135,5.275,4.887,7.494,5.248,8.56c0.135,0.394,0.148,0.75,0.162,1.298 c0.018,0.685-0.426,1.299-0.762,1.701l-0.34,0.438l0.215,0.459c0.021,0.047,0.068,0.114,0.127,0.183 C46.244,36.786,46.209,34.479,45.986,33.755z" opacity="0.35"/>
+<path d="M6.375,31.583c-0.744-0.516-2.684-1.271-4.152-1.807l-0.177,0.45 c1.412,0.494,4.202,1.514,5.128,2.154c0.389,0.27,1.001,0.782,1.645,1.393C7.916,32.822,6.925,31.964,6.375,31.583z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M45.225,33.989c-0.215-0.698-2.828-6.896-6.643-10.693c-0.127-0.125-0.27-0.255-0.404-0.383 c3.598,3.817,6.041,9.604,6.248,10.278c0.102,0.331,0.189,1.507-0.432,2.36c-0.449,0.615-1.201,0.935-2.238,0.95l-0.98,0.016 l0.213,0.956c0.186,0.833-0.084,1.857-0.688,2.609c-0.4,0.498-1.119,1.093-2.283,1.093l-1.232-0.045l0.307,1.062 c0.195,0.677-0.047,1.604-0.617,2.362c-0.578,0.771-1.385,1.215-2.211,1.215c-0.242,0-0.492-0.037-0.74-0.111l-1.451-0.43 l0.465,1.44c0.158,0.489-0.32,1.434-0.775,1.728c-0.623,0.403-0.904,0.486-1.137,0.486c-0.18,0-0.403-0.051-0.771-0.174 c-2.771-0.925-9.037-3.833-12.167-6.109c-1.894-1.377-3.5-2.588-4.806-3.818c1.422,1.515,3.304,2.944,5.604,4.616 c3.13,2.276,9.396,5.185,12.168,6.11c0.369,0.122,0.592,0.173,0.771,0.173c0.232,0,0.514-0.083,1.137-0.485 c0.455-0.295,0.934-1.238,0.775-1.729l-0.467-1.44l1.453,0.43c0.248,0.074,0.498,0.111,0.74,0.111c0.826,0,1.631-0.442,2.211-1.214 c0.57-0.759,0.813-1.687,0.615-2.363l-0.307-1.062l1.234,0.045c1.162,0,1.883-0.594,2.283-1.093 c0.604-0.752,0.873-1.775,0.688-2.609l-0.213-0.956l0.98-0.015c1.035-0.016,1.789-0.336,2.236-0.951 C45.412,35.496,45.326,34.32,45.225,33.989z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M45.986,33.755c-0.199-0.653-2.877-7.078-6.842-11.024c-3.963-3.945-12.339-8.963-13.415-9.238 c-0.353-0.092-0.782-0.185-1.294-0.16c-0.219,0.01-0.521,0.057-0.878,0.128c-0.379,0.268-0.681,0.506-0.853,0.688l-0.221,0.234 c-0.548,0.579-0.943,0.997-1.234,1.684c-0.734,1.733-0.737,3.109-0.741,4.565c-0.002,1.01-0.005,2.053-0.25,3.343l-0.074,0.386 c-0.488,2.497-0.874,5.024,0.204,6.103c0.537,0.537,1.349,0.833,2.285,0.833c0.669,0,1.31-0.153,1.801-0.43 c0.87-0.488,2.979-1.837,3.788-3.815c0.616-1.509,0.699-2.717,0.766-3.688c0.049-0.721,0.089-1.291,0.335-1.741 c0.157-0.287,0.257-0.345,0.827-0.646c0.156-0.083,0.333-0.176,0.538-0.29c0.57-0.318,1.422-0.882,1.67-1.048 c0.113-0.044,0.162-0.049,0.178-0.049c0.102,0,0.457,0.214,0.77,0.403c0.057,0.034,0.158,0.088,0.305,0.161 c0.906,0.461,3.668,1.861,6.061,4.917c4.135,5.275,4.887,7.494,5.248,8.56c0.135,0.394,0.148,0.75,0.162,1.298 c0.018,0.685-0.426,1.299-0.762,1.701l-0.34,0.438l0.215,0.459c0.021,0.047,0.068,0.114,0.127,0.183 C46.244,36.786,46.209,34.479,45.986,33.755z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.8706" x2="45.9676" y1="11.2334" y2="36.3762">
- <stop offset="0" style="stop-color:#E8B888"/>
- <stop offset="1" style="stop-color:#8D5837"/>
+<stop offset="0" style="stop-color:#E8B888"/>
+<stop offset="1" style="stop-color:#8D5837"/>
</linearGradient>
<path d="M59,27.916l-8.115-16.495l-7.504,3.165c0,0-7.693-4.752-9.484-5.024 c-0.508-0.076-0.945-0.026-1.305,0.028c-1.098,0.164-8.218,3.945-9.304,5.104c-0.66,0.704-1.037,1.056-1.303,1.685 c-1.16,2.737-0.326,4.507-0.942,7.746c-0.278,1.47-1.034,4.831-0.09,5.774c0.76,0.761,2.31,0.734,3.131,0.271 c0.579-0.325,2.698-1.605,3.439-3.421c1.05-2.57,0.419-4.194,1.141-5.512c0.347-0.632,0.697-0.704,1.675-1.249 c0.64-0.356,1.683-1.059,1.683-1.059c0.643-0.272,0.869-0.146,1.738,0.38c0.389,0.235,3.746,1.652,6.58,5.268 c4.199,5.357,4.996,7.675,5.375,8.797c0.178,0.521,0.191,0.993,0.205,1.534c0.023,0.988-0.584,1.796-0.947,2.23 c-0.098,0.119,0.234,0.078,0.336,0.064c1.34-0.19,3.068-2.092,3.395-2.58c0.324-0.488,2.117-2.229,2.66-2.715 C52.395,30.984,59,27.916,59,27.916z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="39.6035" x2="39.6035" y1="11.3853" y2="33.4196">
- <stop offset="0.1455" style="stop-color:#F8E0C8"/>
- <stop offset="0.3576" style="stop-color:#F0C8A0"/>
- <stop offset="0.5697" style="stop-color:#E8B888"/>
- <stop offset="1" style="stop-color:#BE7749"/>
+<stop offset="0" style="stop-color:#F8E0C8"/>
+<stop offset="0.1455" style="stop-color:#F8E0C8"/>
+<stop offset="0.3576" style="stop-color:#F0C8A0"/>
+<stop offset="0.5697" style="stop-color:#E8B888"/>
+<stop offset="1" style="stop-color:#BE7749"/>
</linearGradient>
<path d="M46.656,35.595c0.043-0.224,0.066-0.46,0.061-0.706c-0.014-0.554-0.027-1.127-0.244-1.77 c-0.391-1.15-1.201-3.545-5.504-9.034c-2.613-3.333-5.611-4.854-6.598-5.354c-0.094-0.048-0.16-0.082-0.199-0.104 c-0.631-0.382-1.049-0.634-1.596-0.634c-0.268,0-0.535,0.063-0.865,0.202l-0.07,0.029l-0.064,0.043 c-0.01,0.007-1.024,0.688-1.627,1.025c-0.191,0.106-0.358,0.194-0.505,0.272c-0.632,0.334-1.089,0.574-1.48,1.289 c-0.416,0.76-0.47,1.557-0.528,2.401c-0.062,0.901-0.132,1.922-0.65,3.192c-0.506,1.235-1.929,2.373-3.091,3.026 c-0.248,0.14-0.638,0.226-1.021,0.226c-0.495,0-0.928-0.137-1.156-0.365c-0.377-0.376-0.298-1.946,0.233-4.668l0.076-0.394 c0.273-1.436,0.275-2.604,0.278-3.637c0.003-1.347,0.006-2.51,0.614-3.947c0.179-0.421,0.428-0.684,0.924-1.209l0.227-0.24 c0.938-1.001,7.839-4.691,8.843-4.859c0.197-0.03,0.414-0.059,0.652-0.059c0.129,0,0.268,0.009,0.412,0.03 c1.186,0.18,6.264,3.109,9.184,4.914l0.35,0.217l7.191-3.033l7.422,15.089c-1.912,0.902-6.18,2.959-7.094,3.775 c-0.432,0.387-2.379,2.246-2.791,2.867C47.857,34.452,47.287,35.074,46.656,35.595L46.656,35.595z" fill="url(#SVGID_4_)"/>
-<path d="M26.854,43.412c0.38-0.857,0.549-2.018-1.039-3.516c-1.023-0.965-1.958-1.436-2.854-1.436 c-0.119,0-0.234,0.009-0.344,0.024c0.087-0.882-0.194-1.889-1.489-2.972c-0.917-0.768-1.969-1.189-2.962-1.189 c-0.208,0-0.411,0.019-0.606,0.056c-0.023-1.094-0.664-2.025-1.983-3.006c-0.747-0.556-1.516-0.837-2.283-0.837 c-0.83,0-1.648,0.329-2.433,0.979l-0.127,0.104c-0.866,0.717-2.014,1.67-2.574,2.625c0.89,0.835,1.853,1.881,2.325,2.701 c1.485,2.57,4.036,4.556,7.53,7.096c2.586,1.881,7.201,4.162,10.414,5.478c1.007-1.348,1.659-3.19,0.548-4.461 C28.188,44.157,27.498,43.62,26.854,43.412z" opacity="0.35"/>
+<path d="M26.854,43.412c0.38-0.857,0.549-2.018-1.039-3.516c-1.023-0.965-1.958-1.436-2.854-1.436 c-0.119,0-0.234,0.009-0.344,0.024c0.087-0.882-0.194-1.889-1.489-2.972c-0.917-0.768-1.969-1.189-2.962-1.189 c-0.208,0-0.411,0.019-0.606,0.056c-0.023-1.094-0.664-2.025-1.983-3.006c-0.747-0.556-1.516-0.837-2.283-0.837 c-0.83,0-1.648,0.329-2.433,0.979l-0.127,0.104c-0.866,0.717-2.014,1.67-2.574,2.625c0.89,0.835,1.853,1.881,2.325,2.701 c1.485,2.57,4.036,4.556,7.53,7.096c2.586,1.881,7.201,4.162,10.414,5.478c1.007-1.348,1.659-3.19,0.548-4.461 C28.188,44.157,27.498,43.62,26.854,43.412z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="10.3682" x2="27.0654" y1="32.7324" y2="49.4296">
- <stop offset="0" style="stop-color:#E8B888"/>
- <stop offset="1" style="stop-color:#8D5837"/>
+<stop offset="0" style="stop-color:#E8B888"/>
+<stop offset="1" style="stop-color:#8D5837"/>
</linearGradient>
<path d="M8.715,34.899c0.399-0.931,1.771-2.036,2.655-2.769c1.198-0.993,2.428-1.084,3.73-0.116 c1.846,1.372,2.013,2.401,1.197,4.066c1.015-1.415,2.894-1.147,4.318,0.045c1.843,1.542,1.169,2.698,0.684,3.902 c0.734-0.506,1.74-1.65,3.968,0.449c2.019,1.905,0.559,2.737,0.199,3.994c0.559-0.559,1.358-0.659,2.909,1.113 c0.96,1.098-0.105,2.851-0.661,3.565c-0.476,0.612-1.67,1.419-2.908,0.85c-2.462-1.132-6.817-3.681-11.059-7.068 C7.627,38.04,8.159,36.197,8.715,34.899z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="21.4702" x2="16.5483" y1="37.8623" y2="44.0481">
- <stop offset="0.1091" style="stop-color:#F8E0C8"/>
- <stop offset="0.3212" style="stop-color:#F0C8A0"/>
- <stop offset="0.5273" style="stop-color:#E8B888"/>
- <stop offset="1" style="stop-color:#BE7749"/>
+<stop offset="0" style="stop-color:#F8E0C8"/>
+<stop offset="0.1091" style="stop-color:#F8E0C8"/>
+<stop offset="0.3212" style="stop-color:#F0C8A0"/>
+<stop offset="0.5273" style="stop-color:#E8B888"/>
+<stop offset="1" style="stop-color:#BE7749"/>
</linearGradient>
<path d="M25.68,49.396c-0.186,0-0.362-0.039-0.539-0.12c-2.361-1.087-6.632-3.563-10.895-6.967 c-5.838-4.666-5.187-6.186-4.798-7.095c0.305-0.71,1.556-1.744,2.303-2.362l0.128-0.107c0.497-0.41,0.959-0.61,1.414-0.61 c0.423,0,1.226,0.357,1.683,0.729c1.072,0.873,1.247,1.347,1.297,1.796c0.05,0.448-0.299,1.596-0.398,2.045 c0.474-0.324,1.78-0.784,2.292-0.784c0.61,0,1.316,0.299,1.938,0.818c1.259,1.054,1.182,1.163,1.057,2.161 c0,0-0.448,1.321-0.573,1.796c1.197-0.1,1.646-0.873,2.373-0.638c0.434,0.14,1.064,0.346,1.759,1.001 c1.071,1.011,1.071,1.202,0.807,2.056c-0.225,0.724-0.848,2.096-0.848,2.096s1.247-0.449,1.546-0.424 c0.309,0.025,0.55,0.181,1.551,1.324c0.54,0.618-0.216,1.938-0.69,2.551C26.855,48.957,26.291,49.396,25.68,49.396L25.68,49.396z" fill="url(#SVGID_6_)"/>
-<path d="M26.274,45.385c0.324,0.149,0.5,0.38,1.501,1.523c0.055,0.063,0.087,0.137,0.116,0.211 c0.104-0.389,0.104-0.758-0.116-1.009c-1.001-1.144-1.242-1.299-1.551-1.324c-0.188-0.016-0.747,0.154-1.139,0.284 C25.526,45.234,26.002,45.259,26.274,45.385z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M22.961,40.855c0.434,0.141,1.064,0.347,1.759,1.001c0.498,0.47,0.759,0.762,0.874,1.026 c0.185-0.663,0.092-0.914-0.874-1.824c-0.694-0.655-1.325-0.861-1.759-1.001c-0.671-0.218-1.113,0.419-2.117,0.597 C21.686,40.596,22.234,40.62,22.961,40.855z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M9.448,36.012c0.305-0.71,1.556-1.744,2.303-2.362l0.128-0.106 c0.497-0.411,0.959-0.611,1.414-0.611c0.423,0,1.226,0.357,1.683,0.729c0.881,0.717,1.153,1.163,1.251,1.549 c0.038-0.22,0.061-0.418,0.046-0.551c-0.05-0.449-0.225-0.923-1.297-1.796c-0.457-0.372-1.26-0.729-1.683-0.729 c-0.455,0-0.917,0.2-1.414,0.61l-0.128,0.107c-0.747,0.618-1.998,1.652-2.303,2.362c-0.143,0.334-0.317,0.751-0.197,1.375 C9.298,36.366,9.378,36.178,9.448,36.012z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M18.166,36.719c0.61,0,1.316,0.298,1.938,0.817c0.704,0.589,0.983,0.885,1.077,1.204 c0.107-0.846,0.107-1.011-1.077-2.002c-0.622-0.52-1.328-0.818-1.938-0.818c-0.442,0-1.479,0.345-2.059,0.647 C16.771,36.555,17.654,36.719,18.166,36.719z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M26.274,45.385c0.324,0.149,0.5,0.38,1.501,1.523c0.055,0.063,0.087,0.137,0.116,0.211 c0.104-0.389,0.104-0.758-0.116-1.009c-1.001-1.144-1.242-1.299-1.551-1.324c-0.188-0.016-0.747,0.154-1.139,0.284 C25.526,45.234,26.002,45.259,26.274,45.385z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M22.961,40.855c0.434,0.141,1.064,0.347,1.759,1.001c0.498,0.47,0.759,0.762,0.874,1.026 c0.185-0.663,0.092-0.914-0.874-1.824c-0.694-0.655-1.325-0.861-1.759-1.001c-0.671-0.218-1.113,0.419-2.117,0.597 C21.686,40.596,22.234,40.62,22.961,40.855z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M9.448,36.012c0.305-0.71,1.556-1.744,2.303-2.362l0.128-0.106 c0.497-0.411,0.959-0.611,1.414-0.611c0.423,0,1.226,0.357,1.683,0.729c0.881,0.717,1.153,1.163,1.251,1.549 c0.038-0.22,0.061-0.418,0.046-0.551c-0.05-0.449-0.225-0.923-1.297-1.796c-0.457-0.372-1.26-0.729-1.683-0.729 c-0.455,0-0.917,0.2-1.414,0.61l-0.128,0.107c-0.747,0.618-1.998,1.652-2.303,2.362c-0.143,0.334-0.317,0.751-0.197,1.375 C9.298,36.366,9.378,36.178,9.448,36.012z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M18.166,36.719c0.61,0,1.316,0.298,1.938,0.817c0.704,0.589,0.983,0.885,1.077,1.204 c0.107-0.846,0.107-1.011-1.077-2.002c-0.622-0.52-1.328-0.818-1.938-0.818c-0.442,0-1.479,0.345-2.059,0.647 C16.771,36.555,17.654,36.719,18.166,36.719z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="13.9106" x2="16.3579" y1="38.6328" y2="36.1855">
- <stop offset="0" style="stop-color:#C78456"/>
- <stop offset="1" style="stop-color:#CE9C70"/>
+<stop offset="0" style="stop-color:#C78456"/>
+<stop offset="1" style="stop-color:#CE9C70"/>
</linearGradient>
<path d="M16.04,36.188c0,0-1.247,1.945-2.146,2.594c0,0,1.796-1.396,2.495-2.494L16.04,36.188z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="18.6655" x2="21.0459" y1="42.6221" y2="40.2417">
- <stop offset="0" style="stop-color:#C78456"/>
- <stop offset="1" style="stop-color:#B6845C"/>
+<stop offset="0" style="stop-color:#C78456"/>
+<stop offset="1" style="stop-color:#B6845C"/>
</linearGradient>
<path d="M20.729,40.246c0,0-1.247,1.945-2.146,2.594c0,0,1.796-1.396,2.494-2.494L20.729,40.246z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="22.8228" x2="25.2036" y1="47.1455" y2="44.7647">
- <stop offset="0" style="stop-color:#C78456"/>
- <stop offset="1" style="stop-color:#A8744F"/>
+<stop offset="0" style="stop-color:#C78456"/>
+<stop offset="1" style="stop-color:#A8744F"/>
</linearGradient>
<path d="M24.853,44.802c0,0-1.247,1.946-2.145,2.595c0,0,1.796-1.397,2.494-2.494L24.853,44.802z" fill="url(#SVGID_9_)"/>
-<path d="M22.899,17.684c0,0,0.799-2.322,2.378-2.139c1.578,0.184-0.22,2.297-0.767,2.945 C23.965,19.139,22.056,19.74,22.899,17.684z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M22.899,17.684c0,0,0.799-2.322,2.378-2.139c1.578,0.184-0.22,2.297-0.767,2.945 C23.965,19.139,22.056,19.74,22.899,17.684z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="31.6387" x2="31.6387" y1="42.3877" y2="46.5357">
- <stop offset="0" style="stop-color:#C78456"/>
- <stop offset="1" style="stop-color:#8F5B39"/>
+<stop offset="0" style="stop-color:#C78456"/>
+<stop offset="1" style="stop-color:#8F5B39"/>
</linearGradient>
<path d="M33.209,46.856l0.367-0.499c0,0-3.244-3.044-3.876-4.008L33.209,46.856z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="39.9697" x2="39.9697" y1="33.8926" y2="37.6532">
- <stop offset="0" style="stop-color:#C78456"/>
- <stop offset="1" style="stop-color:#A8744F"/>
+<stop offset="0" style="stop-color:#C78456"/>
+<stop offset="1" style="stop-color:#A8744F"/>
</linearGradient>
<path d="M41.689,37.943l0.367-0.499c0,0-2.91-2.401-4.174-3.587L41.689,37.943z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="36.0439" x2="36.0439" y1="38.4482" y2="42.2097">
- <stop offset="0" style="stop-color:#C78456"/>
- <stop offset="1" style="stop-color:#9B6744"/>
+<stop offset="0" style="stop-color:#C78456"/>
+<stop offset="1" style="stop-color:#9B6744"/>
</linearGradient>
<path d="M37.766,42.5l0.365-0.499c0,0-2.908-2.402-4.174-3.588L37.766,42.5z" fill="url(#SVGID_12_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message.svg Thu May 27 13:10:59 2010 +0300
@@ -1,44 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="9.8965" y2="49.8018">
- <stop offset="0" style="stop-color:#FEEFA7"/>
- <stop offset="0.5091" style="stop-color:#FFC501"/>
- <stop offset="1" style="stop-color:#F6A800"/>
+<stop offset="0" style="stop-color:#FEEFA7"/>
+<stop offset="0.5091" style="stop-color:#FFC501"/>
+<stop offset="1" style="stop-color:#F6A800"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="58,50.4 2,50.4 2,9.6 30.463,10.4 58,9.6 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.7017" y2="50.6398">
- <stop offset="0" style="stop-color:#F7AC00"/>
- <stop offset="0.3394" style="stop-color:#FFF8DB"/>
- <stop offset="1" style="stop-color:#FFE066"/>
+<stop offset="0" style="stop-color:#F7AC00"/>
+<stop offset="0.3394" style="stop-color:#FFF8DB"/>
+<stop offset="1" style="stop-color:#FFE066"/>
</linearGradient>
<path d="M57.385,10.22v39.56H2.613V10.22H57.385 M58,9.6L29.802,9.936L2,9.6v40.8h56V9.6L58,9.6z" fill="url(#SVGID_2_)"/>
-<polygon fill="#FBAB13" opacity="0.3" points="2,49.71 58,49.71 58,48.916 29.998,24.328 2,48.916 "/>
-<polygon fill="#F18800" opacity="0.3" points="2,50.4 58,50.4 58,49.603 29.998,25.019 2,49.603 "/>
+<polygon fill="#FBAB13" fill-opacity="0.3" points="2,49.71 58,49.71 58,48.916 29.998,24.328 2,48.916 " stroke-opacity="0.3"/>
+<polygon fill="#F18800" fill-opacity="0.3" points="2,50.4 58,50.4 58,49.603 29.998,25.019 2,49.603 " stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -1801.0049 1240.3164)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1831.0049" x2="-1831.0049" y1="1214.7607" y2="1190.0703">
- <stop offset="0" style="stop-color:#F98A00"/>
- <stop offset="0.7273" style="stop-color:#FCBC3C"/>
- <stop offset="1" style="stop-color:#FFE36A"/>
+<stop offset="0" style="stop-color:#F98A00"/>
+<stop offset="0.7273" style="stop-color:#FCBC3C"/>
+<stop offset="1" style="stop-color:#FFE36A"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="58,50.38 29.998,25.689 2,50.38 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="25.4995" y2="51.0736">
- <stop offset="0" style="stop-color:#FFF1B5"/>
- <stop offset="1" style="stop-color:#FFE066"/>
+<stop offset="0" style="stop-color:#FFF1B5"/>
+<stop offset="1" style="stop-color:#FFE066"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="58,50.38 29.998,25.689 2,50.38 29.998,26.563 "/>
-<polygon fill="#F18800" opacity="0.3" points="30.057,10.4 2,9.6 29.998,38.617 58,9.6 "/>
-<polygon fill="#C26D00" opacity="0.4" points="30.006,10.4 2,9.6 29.998,37.091 58,9.6 "/>
-<polygon fill="#AB6100" opacity="0.4" points="29.904,10.297 2,9.6 29.998,35.802 58,9.6 "/>
+<polygon fill="#F18800" fill-opacity="0.3" points="30.057,10.4 2,9.6 29.998,38.617 58,9.6 " stroke-opacity="0.3"/>
+<polygon fill="#C26D00" fill-opacity="0.4" points="30.006,10.4 2,9.6 29.998,37.091 58,9.6 " stroke-opacity="0.4"/>
+<polygon fill="#AB6100" fill-opacity="0.4" points="29.904,10.297 2,9.6 29.998,35.802 58,9.6 " stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="32.9619" y2="8.0088">
- <stop offset="0" style="stop-color:#FFDA33"/>
- <stop offset="0.25" style="stop-color:#FFE692"/>
- <stop offset="1" style="stop-color:#FFFBF8"/>
+<stop offset="0" style="stop-color:#FFDA33"/>
+<stop offset="0.25" style="stop-color:#FFE692"/>
+<stop offset="1" style="stop-color:#FFFBF8"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="2,9.6 29.998,34.29 58,9.6 "/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message_group.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message_group.svg Thu May 27 13:10:59 2010 +0300
@@ -1,42 +1,40 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="9.8965" y2="49.8018">
- <stop offset="0" style="stop-color:#FEEFA7"/>
- <stop offset="0.5091" style="stop-color:#FFC501"/>
- <stop offset="1" style="stop-color:#F6A800"/>
+<stop offset="0" style="stop-color:#FEEFA7"/>
+<stop offset="0.5091" style="stop-color:#FFC501"/>
+<stop offset="1" style="stop-color:#F6A800"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="58,50.4 2,50.4 2,9.6 30.463,10.4 58,9.6 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.7017" y2="50.6398">
- <stop offset="0" style="stop-color:#F7AC00"/>
- <stop offset="0.3394" style="stop-color:#FFF8DB"/>
- <stop offset="1" style="stop-color:#FFE066"/>
+<stop offset="0" style="stop-color:#F7AC00"/>
+<stop offset="0.3394" style="stop-color:#FFF8DB"/>
+<stop offset="1" style="stop-color:#FFE066"/>
</linearGradient>
<path d="M57.385,10.22v39.56H2.613V10.22H57.385 M58,9.6L29.802,9.936L2,9.6v40.8h56V9.6L58,9.6z" fill="url(#SVGID_2_)"/>
-<polygon fill="#FBAB13" opacity="0.3" points="2,49.71 58,49.71 58,48.916 29.998,24.328 2,48.916 "/>
-<polygon fill="#F18800" opacity="0.3" points="2,50.4 58,50.4 58,49.603 29.998,25.019 2,49.603 "/>
+<polygon fill="#FBAB13" fill-opacity="0.3" points="2,49.71 58,49.71 58,48.916 29.998,24.328 2,48.916 " stroke-opacity="0.3"/>
+<polygon fill="#F18800" fill-opacity="0.3" points="2,50.4 58,50.4 58,49.603 29.998,25.019 2,49.603 " stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -1801.0049 1240.3164)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1831.0049" x2="-1831.0049" y1="1214.7607" y2="1190.0703">
- <stop offset="0" style="stop-color:#F98A00"/>
- <stop offset="0.7273" style="stop-color:#FCBC3C"/>
- <stop offset="1" style="stop-color:#FFE36A"/>
+<stop offset="0" style="stop-color:#F98A00"/>
+<stop offset="0.7273" style="stop-color:#FCBC3C"/>
+<stop offset="1" style="stop-color:#FFE36A"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="58,50.38 29.998,25.689 2,50.38 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="25.4995" y2="51.0736">
- <stop offset="0" style="stop-color:#FFF1B5"/>
- <stop offset="1" style="stop-color:#FFE066"/>
+<stop offset="0" style="stop-color:#FFF1B5"/>
+<stop offset="1" style="stop-color:#FFE066"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="58,50.38 29.998,25.689 2,50.38 29.998,26.563 "/>
-<polygon fill="#F18800" opacity="0.3" points="30.057,10.4 2,9.6 29.998,38.617 58,9.6 "/>
-<polygon fill="#C26D00" opacity="0.4" points="30.006,10.4 2,9.6 29.998,37.091 58,9.6 "/>
-<polygon fill="#AB6100" opacity="0.4" points="29.904,10.297 2,9.6 29.998,35.802 58,9.6 "/>
+<polygon fill="#F18800" fill-opacity="0.3" points="30.057,10.4 2,9.6 29.998,38.617 58,9.6 " stroke-opacity="0.3"/>
+<polygon fill="#C26D00" fill-opacity="0.4" points="30.006,10.4 2,9.6 29.998,37.091 58,9.6 " stroke-opacity="0.4"/>
+<polygon fill="#AB6100" fill-opacity="0.4" points="29.904,10.297 2,9.6 29.998,35.802 58,9.6 " stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="32.9619" y2="8.0088">
- <stop offset="0" style="stop-color:#FFDA33"/>
- <stop offset="0.25" style="stop-color:#FFE692"/>
- <stop offset="1" style="stop-color:#FFFBF8"/>
+<stop offset="0" style="stop-color:#FFDA33"/>
+<stop offset="0.25" style="stop-color:#FFE692"/>
+<stop offset="1" style="stop-color:#FFFBF8"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="2,9.6 29.998,34.29 58,9.6 "/>
<rect fill="none" height="60" width="60"/>
@@ -44,291 +42,181 @@
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<radialGradient cx="669.4" cy="-594.3" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="11.1">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.2" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</radialGradient>
<path d="M23.46,18.68c-0.521-0.226-0.506-1.339-0.291-1.675,0.038-0.059,0.072-0.117,0.107-0.176h-4.365c0.035,0.059,0.069,0.116,0.107,0.176,0.215,0.336,0.23,1.448-0.291,1.675-0.522,0.228,2.428,2.202,2.428,2.202s2.81-1.98,2.29-2.2z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="669.2" x2="669.2" y1="-588.9" y2="-598.1">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="0.39" stop-color="#2D9BD2"/>
-
<stop offset="0.89" stop-color="#1347BA"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
<path d="M26.59,19.84c-0.549-0.286-3.27-1.238-3.322-1.299l-2.078,1.729-2.233-1.795c-0.063,0.092-2.752,1.035-3.374,1.365-0.713,0.377-1.877,1.246-1.877,3.207h14.76c0-1.97-1.33-2.93-1.88-3.21z" fill="url(#SVGID_2__)"/>
-<polygon fill="#020202" opacity="0.3" points="18.45,18.69,21.19,20.88,23.77,18.74,23.27,18.54,21.19,20.27,18.96,18.47" style="enable-background:new;"/>
+<polygon fill="#020202" fill-opacity="0.3" points="18.45,18.69,21.19,20.88,23.77,18.74,23.27,18.54,21.19,20.27,18.96,18.47" stroke-opacity="0.3" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="669.2" x2="669.2" y1="-594.1" y2="-589.1">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="1" stop-color="#2D9BD2"/>
-
</linearGradient>
<polygon fill="url(#SVGID_3__)" points="21.19,20.88,18.45,18.69,18.29,18.76,21.19,21.07,23.93,18.8,23.77,18.74"/>
<radialGradient cx="669.9" cy="-573.8" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="14.9">
-
<stop offset="0" stop-color="#FFE2D9"/>
-
<stop offset="0.51" stop-color="#FFC6B3"/>
-
<stop offset="0.76" stop-color="#FFA98E"/>
-
<stop offset="1" stop-color="#E88160"/>
-
</radialGradient>
<path d="M24.71,13.56c-0.019-0.008-0.04-0.009-0.06-0.015v-0.001c-0.004-0.001-0.006-0.002-0.006-0.002-0.033-0.008-0.063-0.014-0.094-0.016-3.644-0.635-5.317-2.654-5.442-2.119-0.101,0.425-1.122,1.346-1.657,1.805,0.004,0.021,0.008,0.039,0.012,0.06,0,0,0.02,0.094,0.06,0.254-0.042,0.005-0.084,0.014-0.124,0.03-0.341,0.145-0.447,0.702-0.238,1.248,0.209,0.545,0.652,0.871,0.994,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.198,0.445,0.44,0.922,0.739,1.4,0.498,0.594,1.262,1.287,2.105,1.287,1.02,0,1.645-0.559,2.072-1.121,0.012-0.023,0.022-0.047,0.034-0.064,0.317-0.497,0.575-0.996,0.785-1.46,0.333,0.115,0.761-0.194,0.974-0.719,0.23-0.53,0.14-1.09-0.2-1.25z" fill="url(#SVGID_4__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="666.5" x2="672.8" y1="-589.1" y2="-582.8">
-
<stop offset="0" stop-color="#FFC6B3"/>
-
<stop offset="1" stop-color="#FFA98E"/>
-
</linearGradient>
<path d="M20.91,17.9c-0.621,0-1.246-0.289-1.707-0.727,0.486,0.514,1.143,1.012,1.857,1.012,1.02,0,1.645-0.559,2.072-1.121,0.011-0.023,0.021-0.047,0.034-0.064,0.317-0.497,0.575-0.996,0.785-1.46-1.15,2.03-2.01,2.36-3.03,2.36z" fill="url(#SVGID_5__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="669.1" x2="669.1" y1="-569.1" y2="-578.4">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M20.95,8.483c-1.265,0-1.872,0.574-2.341,1.175-0.764,0.117-1.974,0.817-1.119,3.882,0.535-0.459,1.514-1.703,1.614-2.128,0.128-0.54,1.828,1.521,5.542,2.137,0.045-0.172,0.063-0.272,0.063-0.272,0.6-2.62-0.67-4.694-3.75-4.797z" fill="url(#SVGID_6_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="672.2" x2="663.8" y1="-578" y2="-573">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.36" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M19.11,11.16s1.818,2.389,5.512,2.384c0,0-1.73-0.27-5.51-2.38z" fill="url(#SVGID_7_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="663.1" x2="663.1" y1="-572" y2="-577.3">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M18.68,9.836s-1.78,0.106-1.12,3.123c0,0-0.22-2.07,1.12-3.124z" fill="url(#SVGID_8_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="670.2" x2="670" y1="-569.9" y2="-572.3">
-
<stop offset="0" stop-color="#A87C4F"/>
-
<stop offset="1" stop-color="#632F00"/>
-
</linearGradient>
<path d="M21.82,10.25c-0.828-0.118-2.23-0.853-2.779-0.59,0,0,1.799-2.053,4.971,0.284,0,0.004-0.76,0.516-2.19,0.306z" fill="url(#SVGID_9_)"/>
<radialGradient cx="645" cy="-594.3" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="11.1">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.2" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</radialGradient>
<path d="M11.28,18.68c-0.521-0.226-0.505-1.339-0.29-1.675,0.037-0.059,0.072-0.117,0.108-0.176h-4.371c0.035,0.059,0.069,0.116,0.107,0.176,0.215,0.336,0.23,1.448-0.29,1.675-0.523,0.228,2.427,2.202,2.427,2.202s2.827-1.98,2.307-2.2z" fill="url(#SVGID_10_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="644.8" x2="644.8" y1="-588.9" y2="-598.1">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="0.39" stop-color="#2D9BD2"/>
-
<stop offset="0.89" stop-color="#1347BA"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
<path d="M14.42,19.84c-0.549-0.286-3.271-1.238-3.322-1.299l-2.079,1.729-2.233-1.795c-0.063,0.092-2.752,1.035-3.375,1.365-0.712,0.377-1.876,1.246-1.876,3.207h14.76c-0.01-1.97-1.34-2.93-1.88-3.21z" fill="url(#SVGID_11_)"/>
-<polygon fill="#020202" opacity="0.3" points="6.272,18.69,9.015,20.88,11.59,18.74,11.09,18.54,9.015,20.27,6.781,18.47" style="enable-background:new;"/>
+<polygon fill="#020202" fill-opacity="0.3" points="6.272,18.69,9.015,20.88,11.59,18.74,11.09,18.54,9.015,20.27,6.781,18.47" stroke-opacity="0.3" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="644.9" x2="644.9" y1="-594.1" y2="-589.1">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="1" stop-color="#2D9BD2"/>
-
</linearGradient>
<polygon fill="url(#SVGID_12_)" points="9.015,20.88,6.271,18.69,6.113,18.76,9.015,21.07,11.75,18.8,11.59,18.74"/>
<radialGradient cx="645.6" cy="-573.8" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="14.9">
-
<stop offset="0" stop-color="#FFE2D9"/>
-
<stop offset="0.51" stop-color="#FFC6B3"/>
-
<stop offset="0.76" stop-color="#FFA98E"/>
-
<stop offset="1" stop-color="#E88160"/>
-
</radialGradient>
<path d="M12.53,13.56c-0.019-0.008-0.04-0.009-0.059-0.015v-0.001c-0.004-0.001-0.007-0.002-0.012-0.002-0.028-0.008-0.057-0.014-0.087-0.016-3.645-0.635-5.317-2.654-5.443-2.119-0.102,0.425-1.123,1.346-1.658,1.805,0.004,0.021,0.008,0.039,0.012,0.06,0,0,0.02,0.094,0.06,0.254-0.043,0.005-0.085,0.014-0.124,0.03-0.341,0.145-0.447,0.702-0.239,1.248,0.209,0.545,0.653,0.871,0.995,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.198,0.445,0.44,0.922,0.738,1.4,0.499,0.594,1.263,1.287,2.106,1.287,1.02,0,1.645-0.559,2.073-1.121,0.011-0.023,0.022-0.047,0.034-0.064,0.318-0.497,0.576-0.996,0.785-1.46,0.334,0.115,0.761-0.194,0.973-0.719,0.23-0.53,0.14-1.09-0.2-1.25z" fill="url(#SVGID_13_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="642.2" x2="648.5" y1="-589.1" y2="-582.8">
-
<stop offset="0" stop-color="#FFC6B3"/>
-
<stop offset="1" stop-color="#FFA98E"/>
-
</linearGradient>
<path d="M8.729,17.9c-0.621,0-1.247-0.289-1.708-0.727,0.487,0.514,1.144,1.012,1.858,1.012,1.02,0,1.645-0.559,2.073-1.121,0.011-0.023,0.022-0.047,0.034-0.064,0.318-0.497,0.576-0.996,0.785-1.46-1.15,2.03-2.011,2.36-3.031,2.36z" fill="url(#SVGID_14_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="644.7" x2="644.7" y1="-569.1" y2="-578.4">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M8.776,8.483c-1.265,0-1.872,0.574-2.342,1.175-0.763,0.117-1.973,0.817-1.118,3.882,0.535-0.459,1.514-1.703,1.615-2.128,0.127-0.54,1.828,1.521,5.542,2.137,0.043-0.172,0.063-0.272,0.063-0.272,0.59-2.62-0.68-4.694-3.754-4.797z" fill="url(#SVGID_15_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="647.9" x2="639.5" y1="-578" y2="-573">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.36" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M6.936,11.16s1.818,2.389,5.513,2.384c0,0-1.74-0.27-5.514-2.38z" fill="url(#SVGID_16_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="638.7" x2="638.8" y1="-572.3" y2="-577.7">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M6.498,9.836s-1.779,0.106-1.119,3.123c0,0-0.218-2.07,1.119-3.124z" fill="url(#SVGID_17_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="645.9" x2="645.6" y1="-569.9" y2="-572.3">
-
<stop offset="0" stop-color="#A87C4F"/>
-
<stop offset="1" stop-color="#632F00"/>
-
</linearGradient>
<path d="M9.639,10.25c-0.828-0.118-2.23-0.853-2.78-0.59,0,0,1.8-2.053,4.973,0.284,0,0.004-0.76,0.516-2.191,0.306z" fill="url(#SVGID_18_)"/>
-<path d="M23.32,20.43c-0.506-0.264-2.081-0.849-3.348-1.317l-0.711-0.265-0.128-0.053-0.166-0.063-0.317-0.128-0.196,0.086c-0.001,0.002-0.003,0.002-0.004,0.003h-0.001c-0.826,0.323-2.406,0.897-2.865,1.143-0.178,0.095-0.385,0.222-0.596,0.388-0.221-0.183-0.426-0.311-0.573-0.388-0.395-0.205-1.904-0.753-2.746-1.067l-0.078-0.031-0.002,0.001-0.349-0.142-0.317,0.139c-0.311,0.122-0.693,0.268-1.103,0.424l-0.038,0.014c-1.21,0.461-2.582,0.982-3.107,1.262-1.177,0.625-2.025,1.51-2.525,2.609h21.66c-0.77-1.62-2.12-2.41-2.48-2.6z" fill="#231F20" opacity="0.15" style="enable-background:new;"/>
-<path d="M9.052,11.44c-0.561,0.477-0.712,1.432-0.349,2.38,0.342,0.894,1.048,1.494,1.758,1.494h0.002c0.106,0.221,0.217,0.439,0.331,0.654h-0.033l0.271,0.448s0.071,0.115,0.154,0.253c0.226-0.383,0.424-0.765,0.586-1.123,0.334,0.115,0.761-0.194,0.973-0.719,0.22-0.542,0.125-1.106-0.212-1.259-0.019-0.008-0.04-0.009-0.059-0.015v-0.001c-0.004-0.001-0.007-0.002-0.012-0.002-0.028-0.008-0.057-0.014-0.087-0.016-0.007-0.002-0.012-0.003-0.019-0.005-0.015-0.003-0.032-0.007-0.05-0.011,0.057,0.011,0.109,0.023,0.167,0.033,0.043-0.172,0.063-0.272,0.063-0.272,0.583-2.617-0.686-4.69-3.761-4.793-0.006,0-0.01,0.001-0.017,0.001-0.072,0.839,0.021,1.822,0.3,2.962z" fill="#231F20" opacity="0.15" style="enable-background:new;"/>
-<path d="M18.61,9.658c-0.764,0.117-1.973,0.817-1.119,3.879-0.033,0.006-0.064,0.011-0.096,0.023-0.342,0.145-0.447,0.702-0.238,1.248,0.209,0.545,0.652,0.871,0.994,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.165,0.371,0.364,0.766,0.599,1.163,0.263-0.441,0.512-0.897,0.736-1.369,0.646-0.077,1.279-0.639,1.605-1.444,0.371-0.919,0.253-1.873-0.272-2.37,0.235-1.062,0.272-2.073,0.117-2.993-0.015-0.001-0.028-0.003-0.043-0.003-1.26-0.001-1.87,0.574-2.34,1.174zm-1.11,3.882c0.007-0.006,0.015-0.013,0.021-0.019,0,0.005,0.002,0.008,0.002,0.013,0,0-0.01,0.01-0.02,0.01zm1.76-2.21c-0.009-0.002-0.021-0.007-0.029-0.008,0.01,0,0.02,0.01,0.03,0.01z" fill="#231F20" opacity="0.15" style="enable-background:new;"/>
-<path d="M23.19,20.69c-0.49-0.256-2.057-0.836-3.314-1.305l-0.719-0.266-0.123-0.051-0.172-0.065-0.484-0.194c-0.016-0.021-0.027-0.051-0.041-0.073-0.85,0.327-2.31,0.862-2.746,1.097-0.179,0.094-0.386,0.221-0.597,0.387-0.221-0.182-0.426-0.311-0.573-0.387-0.395-0.205-1.904-0.754-2.746-1.068l-0.042-0.018-0.596,0.261c-0.32,0.125-0.719,0.276-1.144,0.438-1.202,0.457-2.565,0.975-3.074,1.244-1.071,0.568-1.857,1.363-2.338,2.35h21.01c-0.76-1.46-1.98-2.18-2.3-2.35z" fill="#231F20" opacity="0.3" style="enable-background:new;"/>
-<path d="M8.979,13.71c0.298,0.78,0.894,1.304,1.481,1.304,0.062,0,0.122-0.005,0.181-0.017,0.202,0.433,0.419,0.854,0.651,1.261h-0.009l0.068,0.113c0.155-0.283,0.3-0.563,0.419-0.829,0.334,0.115,0.761-0.194,0.973-0.719,0.22-0.542,0.125-1.106-0.212-1.259-0.019-0.008-0.04-0.009-0.059-0.015v-0.001c-0.004-0.001-0.007-0.002-0.012-0.002-0.028-0.008-0.057-0.014-0.087-0.016-0.007-0.002-0.012-0.003-0.019-0.005-0.015-0.003-0.032-0.007-0.05-0.011,0.057,0.011,0.109,0.023,0.167,0.033,0.043-0.172,0.063-0.272,0.063-0.272,0.564-2.535-0.613-4.556-3.483-4.772-0.08,0.847,0.026,1.864,0.336,3.057-0.57,0.33-0.751,1.24-0.404,2.15z" fill="#231F20" opacity="0.3" style="enable-background:new;"/>
-<path d="M18.61,9.658c-0.764,0.117-1.973,0.817-1.119,3.879-0.033,0.006-0.064,0.011-0.096,0.023-0.342,0.145-0.447,0.702-0.238,1.248,0.209,0.545,0.652,0.871,0.994,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.124,0.278,0.269,0.569,0.429,0.864,0.256-0.439,0.497-0.891,0.715-1.357,0.014,0.001,0.025,0.001,0.039,0.001,0.58,0,1.177-0.511,1.483-1.27,0.358-0.884,0.21-1.785-0.325-2.144,0.025-0.106,0.036-0.166,0.036-0.166,0.233-1.043,0.267-2.035,0.11-2.931-1.08,0.083-1.64,0.612-2.08,1.169zm-1.11,3.882c0.007-0.006,0.015-0.013,0.021-0.019,0,0.005,0.002,0.008,0.002,0.013,0,0-0.01,0.01-0.02,0.01zm1.76-2.21c-0.009-0.002-0.021-0.007-0.029-0.008,0.01,0,0.02,0.01,0.03,0.01z" fill="#231F20" opacity="0.3" style="enable-background:new;"/>
+<path d="M23.32,20.43c-0.506-0.264-2.081-0.849-3.348-1.317l-0.711-0.265-0.128-0.053-0.166-0.063-0.317-0.128-0.196,0.086c-0.001,0.002-0.003,0.002-0.004,0.003h-0.001c-0.826,0.323-2.406,0.897-2.865,1.143-0.178,0.095-0.385,0.222-0.596,0.388-0.221-0.183-0.426-0.311-0.573-0.388-0.395-0.205-1.904-0.753-2.746-1.067l-0.078-0.031-0.002,0.001-0.349-0.142-0.317,0.139c-0.311,0.122-0.693,0.268-1.103,0.424l-0.038,0.014c-1.21,0.461-2.582,0.982-3.107,1.262-1.177,0.625-2.025,1.51-2.525,2.609h21.66c-0.77-1.62-2.12-2.41-2.48-2.6z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15" style="enable-background:new;"/>
+<path d="M9.052,11.44c-0.561,0.477-0.712,1.432-0.349,2.38,0.342,0.894,1.048,1.494,1.758,1.494h0.002c0.106,0.221,0.217,0.439,0.331,0.654h-0.033l0.271,0.448s0.071,0.115,0.154,0.253c0.226-0.383,0.424-0.765,0.586-1.123,0.334,0.115,0.761-0.194,0.973-0.719,0.22-0.542,0.125-1.106-0.212-1.259-0.019-0.008-0.04-0.009-0.059-0.015v-0.001c-0.004-0.001-0.007-0.002-0.012-0.002-0.028-0.008-0.057-0.014-0.087-0.016-0.007-0.002-0.012-0.003-0.019-0.005-0.015-0.003-0.032-0.007-0.05-0.011,0.057,0.011,0.109,0.023,0.167,0.033,0.043-0.172,0.063-0.272,0.063-0.272,0.583-2.617-0.686-4.69-3.761-4.793-0.006,0-0.01,0.001-0.017,0.001-0.072,0.839,0.021,1.822,0.3,2.962z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15" style="enable-background:new;"/>
+<path d="M18.61,9.658c-0.764,0.117-1.973,0.817-1.119,3.879-0.033,0.006-0.064,0.011-0.096,0.023-0.342,0.145-0.447,0.702-0.238,1.248,0.209,0.545,0.652,0.871,0.994,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.165,0.371,0.364,0.766,0.599,1.163,0.263-0.441,0.512-0.897,0.736-1.369,0.646-0.077,1.279-0.639,1.605-1.444,0.371-0.919,0.253-1.873-0.272-2.37,0.235-1.062,0.272-2.073,0.117-2.993-0.015-0.001-0.028-0.003-0.043-0.003-1.26-0.001-1.87,0.574-2.34,1.174zm-1.11,3.882c0.007-0.006,0.015-0.013,0.021-0.019,0,0.005,0.002,0.008,0.002,0.013,0,0-0.01,0.01-0.02,0.01zm1.76-2.21c-0.009-0.002-0.021-0.007-0.029-0.008,0.01,0,0.02,0.01,0.03,0.01z" fill="#231F20" fill-opacity="0.15" stroke-opacity="0.15" style="enable-background:new;"/>
+<path d="M23.19,20.69c-0.49-0.256-2.057-0.836-3.314-1.305l-0.719-0.266-0.123-0.051-0.172-0.065-0.484-0.194c-0.016-0.021-0.027-0.051-0.041-0.073-0.85,0.327-2.31,0.862-2.746,1.097-0.179,0.094-0.386,0.221-0.597,0.387-0.221-0.182-0.426-0.311-0.573-0.387-0.395-0.205-1.904-0.754-2.746-1.068l-0.042-0.018-0.596,0.261c-0.32,0.125-0.719,0.276-1.144,0.438-1.202,0.457-2.565,0.975-3.074,1.244-1.071,0.568-1.857,1.363-2.338,2.35h21.01c-0.76-1.46-1.98-2.18-2.3-2.35z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3" style="enable-background:new;"/>
+<path d="M8.979,13.71c0.298,0.78,0.894,1.304,1.481,1.304,0.062,0,0.122-0.005,0.181-0.017,0.202,0.433,0.419,0.854,0.651,1.261h-0.009l0.068,0.113c0.155-0.283,0.3-0.563,0.419-0.829,0.334,0.115,0.761-0.194,0.973-0.719,0.22-0.542,0.125-1.106-0.212-1.259-0.019-0.008-0.04-0.009-0.059-0.015v-0.001c-0.004-0.001-0.007-0.002-0.012-0.002-0.028-0.008-0.057-0.014-0.087-0.016-0.007-0.002-0.012-0.003-0.019-0.005-0.015-0.003-0.032-0.007-0.05-0.011,0.057,0.011,0.109,0.023,0.167,0.033,0.043-0.172,0.063-0.272,0.063-0.272,0.564-2.535-0.613-4.556-3.483-4.772-0.08,0.847,0.026,1.864,0.336,3.057-0.57,0.33-0.751,1.24-0.404,2.15z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3" style="enable-background:new;"/>
+<path d="M18.61,9.658c-0.764,0.117-1.973,0.817-1.119,3.879-0.033,0.006-0.064,0.011-0.096,0.023-0.342,0.145-0.447,0.702-0.238,1.248,0.209,0.545,0.652,0.871,0.994,0.728,0.021-0.009,0.039-0.023,0.058-0.036,0.124,0.278,0.269,0.569,0.429,0.864,0.256-0.439,0.497-0.891,0.715-1.357,0.014,0.001,0.025,0.001,0.039,0.001,0.58,0,1.177-0.511,1.483-1.27,0.358-0.884,0.21-1.785-0.325-2.144,0.025-0.106,0.036-0.166,0.036-0.166,0.233-1.043,0.267-2.035,0.11-2.931-1.08,0.083-1.64,0.612-2.08,1.169zm-1.11,3.882c0.007-0.006,0.015-0.013,0.021-0.019,0,0.005,0.002,0.008,0.002,0.013,0,0-0.01,0.01-0.02,0.01zm1.76-2.21c-0.009-0.002-0.021-0.007-0.029-0.008,0.01,0,0.02,0.01,0.03,0.01z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3" style="enable-background:new;"/>
<radialGradient cx="657.3" cy="-597.7" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_19_" r="16.23">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.2" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</radialGradient>
<path d="M18.46,19.26c-0.764-0.332-0.738-1.957-0.424-2.448,0.055-0.086,0.104-0.172,0.156-0.258h-6.385c0.053,0.086,0.103,0.172,0.157,0.258,0.315,0.491,0.34,2.116-0.424,2.448-0.764,0.331,3.549,3.219,3.549,3.219s4.11-2.89,3.35-3.22z" fill="url(#SVGID_19_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="657" x2="657" y1="-589.9" y2="-603.3">
-
<stop offset="0" stop-color="#FF7236"/>
-
<stop offset="1" stop-color="#BA1212"/>
-
</linearGradient>
<path d="M23.05,20.96c-0.803-0.418-4.781-1.811-4.857-1.896l-3.04,2.524-3.266-2.623c-0.09,0.134-4.023,1.512-4.934,1.995-1.042,0.553-2.743,1.822-2.743,4.688h21.59c0-2.87-1.94-4.28-2.74-4.69z" fill="url(#SVGID_20_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="657.1" x2="657.1" y1="-589" y2="-596.9">
-
<stop offset="0" stop-color="#BC1C24"/>
-
<stop offset="1" stop-color="#6B1C24"/>
-
</linearGradient>
<polygon fill="url(#SVGID_21_)" points="11.14,19.28,15.15,22.48,18.92,19.35,18.19,19.06,15.15,21.58,11.89,18.96"/>
<path d="M11.33,19.79s-5.72,1.493-5.72,5.502h-0.823c0-2.46,1.922-4.38,6.543-5.5z" fill="#FF7B56"/>
<path d="M18.6,19.7s5.72,1.494,5.72,5.502h0.824c0-2.47-1.92-4.38-6.54-5.5z" fill="#FF7B56"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="657.1" x2="657.1" y1="-597.5" y2="-590.2">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</linearGradient>
<polygon fill="url(#SVGID_22_)" points="15.15,22.48,11.14,19.28,10.91,19.39,15.15,22.77,19.15,19.44,18.92,19.35"/>
<radialGradient cx="658.1" cy="-567.8" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_23_" r="21.78">
-
<stop offset="0" stop-color="#FFE2D9"/>
-
<stop offset="0.51" stop-color="#FFC6B3"/>
-
<stop offset="0.76" stop-color="#FFA98E"/>
-
<stop offset="1" stop-color="#E88160"/>
-
</radialGradient>
<path d="M20.29,11.79c-0.026-0.013-0.058-0.015-0.086-0.022v-0.002c-0.005-0.001-0.01-0.002-0.017-0.003-0.041-0.011-0.084-0.021-0.127-0.022-5.331-0.928-7.775-3.88-7.959-3.099-0.147,0.622-1.641,1.968-2.424,2.639,0.007,0.03,0.01,0.057,0.018,0.087,0,0,0.027,0.138,0.086,0.372-0.062,0.007-0.123,0.02-0.182,0.045-0.498,0.21-0.654,1.026-0.349,1.823,0.305,0.798,0.956,1.274,1.454,1.065,0.03-0.014,0.057-0.035,0.085-0.054,0.289,0.65,0.645,1.348,1.079,2.047,0.729,0.866,1.846,1.883,3.079,1.883,1.49,0,2.404-0.815,3.031-1.64,0.017-0.033,0.031-0.066,0.053-0.095,0.465-0.728,0.842-1.455,1.145-2.134,0.488,0.168,1.113-0.284,1.424-1.051,0.35-0.81,0.21-1.63-0.29-1.85z" fill="url(#SVGID_23_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="653.2" x2="662.4" y1="-590.1" y2="-580.9">
-
<stop offset="0" stop-color="#FFC6B3"/>
-
<stop offset="1" stop-color="#FFA98E"/>
-
</linearGradient>
<path d="M14.73,18.13c-0.908,0-1.822-0.423-2.496-1.06,0.713,0.748,1.672,1.478,2.716,1.478,1.491,0,2.403-0.815,3.032-1.64,0.016-0.033,0.031-0.066,0.051-0.095,0.465-0.728,0.842-1.455,1.146-2.134-1.7,2.95-2.96,3.44-4.45,3.44z" fill="url(#SVGID_24_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="656.8" x2="656.8" y1="-560.9" y2="-574.5">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M14.8,4.357c-1.847,0-2.736,0.84-3.423,1.718-1.12,0.172-2.884,1.195-1.636,5.675,0.783-0.67,2.214-2.489,2.361-3.111,0.186-0.788,2.672,2.226,8.103,3.124,0.063-0.251,0.093-0.398,0.093-0.398,0.86-3.821-0.99-6.853-5.49-7.003z" fill="url(#SVGID_25_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="661.5" x2="649.2" y1="-573.9" y2="-566.6">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.36" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M12.11,8.272s2.658,3.492,8.059,3.485c0,0-2.54-0.4-8.06-3.488z" fill="url(#SVGID_26_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="648.1" x2="648.2" y1="-565.2" y2="-573">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
<path d="M11.47,6.335s-2.603,0.155-1.637,4.566c0.003,0-0.315-3.019,1.637-4.565z" fill="url(#SVGID_27_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="658.5" x2="658.2" y1="-562.1" y2="-565.6">
-
<stop offset="0" stop-color="#A87C4F"/>
-
<stop offset="1" stop-color="#632F00"/>
-
</linearGradient>
<path d="M16.06,6.946c-1.212-0.173-3.263-1.247-4.065-0.863,0,0,2.63-3,7.271,0.415,0,0-1.11,0.747-3.21,0.448z" fill="url(#SVGID_28_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,87 +1,83 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="9.8965" y2="49.8018">
- <stop offset="0" style="stop-color:#FEEFA7"/>
- <stop offset="0.5091" style="stop-color:#FFC501"/>
- <stop offset="1" style="stop-color:#F6A800"/>
+<stop offset="0" style="stop-color:#FEEFA7"/>
+<stop offset="0.5091" style="stop-color:#FFC501"/>
+<stop offset="1" style="stop-color:#F6A800"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="58,50.4 2,50.4 2,9.6 30.463,10.4 58,9.6 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.7017" y2="50.6398">
- <stop offset="0" style="stop-color:#F7AC00"/>
- <stop offset="0.3394" style="stop-color:#FFF8DB"/>
- <stop offset="1" style="stop-color:#FFE066"/>
+<stop offset="0" style="stop-color:#F7AC00"/>
+<stop offset="0.3394" style="stop-color:#FFF8DB"/>
+<stop offset="1" style="stop-color:#FFE066"/>
</linearGradient>
<path d="M57.385,10.22v39.56H2.613V10.22H57.385 M58,9.6L29.802,9.936L2,9.6v40.8h56V9.6L58,9.6z" fill="url(#SVGID_2_)"/>
-<polygon fill="#FBAB13" opacity="0.3" points="2,49.71 58,49.71 58,48.916 29.998,24.328 2,48.916 "/>
-<polygon fill="#F18800" opacity="0.3" points="2,50.4 58,50.4 58,49.603 29.998,25.019 2,49.603 "/>
+<polygon fill="#FBAB13" fill-opacity="0.3" points="2,49.71 58,49.71 58,48.916 29.998,24.328 2,48.916 " stroke-opacity="0.3"/>
+<polygon fill="#F18800" fill-opacity="0.3" points="2,50.4 58,50.4 58,49.603 29.998,25.019 2,49.603 " stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -1801.0049 1240.3164)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1831.0049" x2="-1831.0049" y1="1214.7607" y2="1190.0703">
- <stop offset="0" style="stop-color:#F98A00"/>
- <stop offset="0.7273" style="stop-color:#FCBC3C"/>
- <stop offset="1" style="stop-color:#FFE36A"/>
+<stop offset="0" style="stop-color:#F98A00"/>
+<stop offset="0.7273" style="stop-color:#FCBC3C"/>
+<stop offset="1" style="stop-color:#FFE36A"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="58,50.38 29.998,25.689 2,50.38 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="25.4995" y2="51.0736">
- <stop offset="0" style="stop-color:#FFF1B5"/>
- <stop offset="1" style="stop-color:#FFE066"/>
+<stop offset="0" style="stop-color:#FFF1B5"/>
+<stop offset="1" style="stop-color:#FFE066"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="58,50.38 29.998,25.689 2,50.38 29.998,26.563 "/>
-<polygon fill="#F18800" opacity="0.3" points="30.057,10.4 2,9.6 29.998,38.617 58,9.6 "/>
-<polygon fill="#C26D00" opacity="0.4" points="30.006,10.4 2,9.6 29.998,37.091 58,9.6 "/>
-<polygon fill="#AB6100" opacity="0.4" points="29.904,10.297 2,9.6 29.998,35.802 58,9.6 "/>
+<polygon fill="#F18800" fill-opacity="0.3" points="30.057,10.4 2,9.6 29.998,38.617 58,9.6 " stroke-opacity="0.3"/>
+<polygon fill="#C26D00" fill-opacity="0.4" points="30.006,10.4 2,9.6 29.998,37.091 58,9.6 " stroke-opacity="0.4"/>
+<polygon fill="#AB6100" fill-opacity="0.4" points="29.904,10.297 2,9.6 29.998,35.802 58,9.6 " stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="32.9619" y2="8.0088">
- <stop offset="0" style="stop-color:#FFDA33"/>
- <stop offset="0.25" style="stop-color:#FFE692"/>
- <stop offset="1" style="stop-color:#FFFBF8"/>
+<stop offset="0" style="stop-color:#FFDA33"/>
+<stop offset="0.25" style="stop-color:#FFE692"/>
+<stop offset="1" style="stop-color:#FFFBF8"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="2,9.6 29.998,34.29 58,9.6 "/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="30.414,14.408 30.414,0 0.414,0 0.414,14.41 0,14.824 0.414,15.237 0.414,30 30.414,30 30.414,15.236 30.828,14.821 "/>
-<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" opacity="0.35"/>
+<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.415" x2="15.415" y1="28.6694" y2="12.5688">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.6606" style="stop-color:#E0E1E2"/>
- <stop offset="1" style="stop-color:#B9BCBD"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E0E1E2"/>
+<stop offset="1" style="stop-color:#B9BCBD"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="27.081,28.823 3.749,28.823 3.749,14.473 15.414,5.489 27.081,14.473 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.415" x2="15.415" y1="17.313" y2="28.6013">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.6606" style="stop-color:#E0E1E2"/>
- <stop offset="1" style="stop-color:#B9BCBD"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E0E1E2"/>
+<stop offset="1" style="stop-color:#B9BCBD"/>
</linearGradient>
<path d="M15.414,6.668l10.736,8.264V27.89H4.682V14.932L15.414,6.668 M15.414,5.489L3.749,14.473v14.351 h23.333V14.473L15.414,5.489L15.414,5.489z" fill="url(#SVGID_2__)"/>
-<polygon opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 "/>
+<polygon fill-opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 " stroke-opacity="0.2"/>
<polygon fill="#727272" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,6.655 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.416" x2="15.416" y1="17.9946" y2="29.1519">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<rect fill="url(#SVGID_3__)" height="10.501" width="7.001" x="11.916" y="18.322"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.416" x2="15.416" y1="28.7466" y2="18.3602">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<path d="M17.98,19.257v8.633h-5.133v-8.633H17.98 M18.917,18.322h-7.001v10.501h7.001V18.322L18.917,18.322z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.4136" x2="15.4136" y1="0.0352" y2="17.7271">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="0.2606" style="stop-color:#DE4E29"/>
- <stop offset="1" style="stop-color:#D82E09"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="0.2606" style="stop-color:#DE4E29"/>
+<stop offset="1" style="stop-color:#D82E09"/>
</linearGradient>
<path d="M15.414,5.489l11.667,11.667l2.333-2.333c0,0-12.586-12.554-13.171-13.175 c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333L15.414,5.489z" fill="url(#SVGID_5__)"/>
<radialGradient cx="15.2969" cy="1.7559" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="18.6679">
- <stop offset="0" style="stop-color:#F7D481"/>
- <stop offset="1" style="stop-color:#F5340A"/>
+<stop offset="0" style="stop-color:#F7D481"/>
+<stop offset="1" style="stop-color:#F5340A"/>
</radialGradient>
<path d="M14.553,2.616c0.724-0.688,1.102-0.653,1.689-0.034c0.516,0.549,10.433,10.442,12.705,12.709 l0.467-0.468c0,0-12.586-12.554-13.171-13.175c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14 l0.467,0.465C4.134,13.029,13.917,3.225,14.553,2.616z" fill="url(#SVGID_6_)"/>
-<rect height="1.168" opacity="0.2" width="7.001" x="11.916" y="18.322"/>
+<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.916" y="18.322"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message_work.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message_work.svg Thu May 27 13:10:59 2010 +0300
@@ -1,42 +1,40 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="9.8965" y2="49.8018">
- <stop offset="0" style="stop-color:#FEEFA7"/>
- <stop offset="0.5091" style="stop-color:#FFC501"/>
- <stop offset="1" style="stop-color:#F6A800"/>
+<stop offset="0" style="stop-color:#FEEFA7"/>
+<stop offset="0.5091" style="stop-color:#FFC501"/>
+<stop offset="1" style="stop-color:#F6A800"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="58,50.4 2,50.4 2,9.6 30.463,10.4 58,9.6 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.7017" y2="50.6398">
- <stop offset="0" style="stop-color:#F7AC00"/>
- <stop offset="0.3394" style="stop-color:#FFF8DB"/>
- <stop offset="1" style="stop-color:#FFE066"/>
+<stop offset="0" style="stop-color:#F7AC00"/>
+<stop offset="0.3394" style="stop-color:#FFF8DB"/>
+<stop offset="1" style="stop-color:#FFE066"/>
</linearGradient>
<path d="M57.385,10.22v39.56H2.613V10.22H57.385 M58,9.6L29.802,9.936L2,9.6v40.8h56V9.6L58,9.6z" fill="url(#SVGID_2_)"/>
-<polygon fill="#FBAB13" opacity="0.3" points="2,49.71 58,49.71 58,48.916 29.998,24.328 2,48.916 "/>
-<polygon fill="#F18800" opacity="0.3" points="2,50.4 58,50.4 58,49.603 29.998,25.019 2,49.603 "/>
+<polygon fill="#FBAB13" fill-opacity="0.3" points="2,49.71 58,49.71 58,48.916 29.998,24.328 2,48.916 " stroke-opacity="0.3"/>
+<polygon fill="#F18800" fill-opacity="0.3" points="2,50.4 58,50.4 58,49.603 29.998,25.019 2,49.603 " stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -1801.0049 1240.3164)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1831.0049" x2="-1831.0049" y1="1214.7607" y2="1190.0703">
- <stop offset="0" style="stop-color:#F98A00"/>
- <stop offset="0.7273" style="stop-color:#FCBC3C"/>
- <stop offset="1" style="stop-color:#FFE36A"/>
+<stop offset="0" style="stop-color:#F98A00"/>
+<stop offset="0.7273" style="stop-color:#FCBC3C"/>
+<stop offset="1" style="stop-color:#FFE36A"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="58,50.38 29.998,25.689 2,50.38 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="25.4995" y2="51.0736">
- <stop offset="0" style="stop-color:#FFF1B5"/>
- <stop offset="1" style="stop-color:#FFE066"/>
+<stop offset="0" style="stop-color:#FFF1B5"/>
+<stop offset="1" style="stop-color:#FFE066"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="58,50.38 29.998,25.689 2,50.38 29.998,26.563 "/>
-<polygon fill="#F18800" opacity="0.3" points="30.057,10.4 2,9.6 29.998,38.617 58,9.6 "/>
-<polygon fill="#C26D00" opacity="0.4" points="30.006,10.4 2,9.6 29.998,37.091 58,9.6 "/>
-<polygon fill="#AB6100" opacity="0.4" points="29.904,10.297 2,9.6 29.998,35.802 58,9.6 "/>
+<polygon fill="#F18800" fill-opacity="0.3" points="30.057,10.4 2,9.6 29.998,38.617 58,9.6 " stroke-opacity="0.3"/>
+<polygon fill="#C26D00" fill-opacity="0.4" points="30.006,10.4 2,9.6 29.998,37.091 58,9.6 " stroke-opacity="0.4"/>
+<polygon fill="#AB6100" fill-opacity="0.4" points="29.904,10.297 2,9.6 29.998,35.802 58,9.6 " stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="32.9619" y2="8.0088">
- <stop offset="0" style="stop-color:#FFDA33"/>
- <stop offset="0.25" style="stop-color:#FFE692"/>
- <stop offset="1" style="stop-color:#FFFBF8"/>
+<stop offset="0" style="stop-color:#FFDA33"/>
+<stop offset="0.25" style="stop-color:#FFE692"/>
+<stop offset="1" style="stop-color:#FFFBF8"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="2,9.6 29.998,34.29 58,9.6 "/>
<rect fill="none" height="60" width="60"/>
@@ -45,165 +43,105 @@
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="654.6" x2="654.6" y1="-558.3" y2="-601.7">
-
<stop offset="0" stop-color="#DFE1E6"/>
-
<stop offset="1" stop-color="#BDBEC3"/>
-
</linearGradient>
<rect fill="url(#SVGID_1__)" height="21.5" width="17.33" x="5.158" y="3.499"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="654.6" x2="654.6" y1="-558.9" y2="-602.2">
-
<stop offset="0" stop-color="#E7E9EF"/>
-
<stop offset="1" stop-color="#C8C9CE"/>
-
</linearGradient>
<path d="M21.99,3.999v20.5h-16.33v-20.5h16.33m0.5-0.501h-17.33v21.5h17.33v-21.5z" fill="url(#SVGID_2__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="642.6" x2="642.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_3__)" height="3" width="3" x="6.324" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="650.6" x2="650.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_4__)" height="3" width="3" x="10.32" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="666.6" x2="666.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_5__)" height="3" width="3" x="18.32" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="658.6" x2="658.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_6_)" height="3" width="3" x="14.32" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="642.6" x2="642.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_7_)" height="3" width="3" x="6.324" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="650.6" x2="650.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_8_)" height="3" width="3" x="10.32" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="666.6" x2="666.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_9_)" height="3" width="3" x="18.32" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="658.6" x2="658.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_10_)" height="3" width="3" x="14.32" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="642.6" x2="642.6" y1="-594.5" y2="-588.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_11_)" height="3" width="3" x="6.324" y="18.46"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="650.6" x2="650.6" y1="-594.5" y2="-588.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_12_)" height="3" width="3" x="10.32" y="18.46"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="666.6" x2="666.6" y1="-594.5" y2="-588.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_13_)" height="3" width="3" x="18.32" y="18.46"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="658.6" x2="658.6" y1="-594.5" y2="-588.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_14_)" height="3" width="3" x="14.32" y="18.46"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="642.6" x2="642.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_15_)" height="3" width="3" x="6.324" y="13.96"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="650.6" x2="650.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_16_)" height="3" width="3" x="10.32" y="13.96"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="666.6" x2="666.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_17_)" height="3" width="3" x="18.32" y="13.96"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="658.6" x2="658.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_18_)" height="3" width="3" x="14.32" y="13.96"/>
-<polygon opacity="0.3" points="22.49,25,22.49,14.85,12.51,11.92,12.51,25" style="enable-background:new;"/>
+<polygon fill-opacity="0.3" points="22.49,25,22.49,14.85,12.51,11.92,12.51,25" stroke-opacity="0.3" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="665.4" x2="665.4" y1="-582.2" y2="-604.8">
-
<stop offset="0" stop-color="#CCCCCC"/>
-
<stop offset="1" stop-color="#949494"/>
-
</linearGradient>
<polygon fill="url(#SVGID_19_)" points="24.84,16.25,13.51,12.92,13.51,26.5,24.84,26.5"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="665.4" x2="665.4" y1="-582" y2="-605.1">
-
<stop offset="0" stop-color="#DBDDE2"/>
-
<stop offset="1" stop-color="#B5B6BA"/>
-
</linearGradient>
<path d="M14.01,13.58l10.33,3.039v9.38h-10.33v-12.42m-0.5-0.665v13.58h11.33v-10.25l-11.33-3.33z" fill="url(#SVGID_20_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_video_call_unseen.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_video_call_unseen.svg Thu May 27 13:10:59 2010 +0300
@@ -1,234 +1,174 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M20.74,16.008L21.732,17L30,8.733l-4.488-4.486l-4.131,4.132l1.613-6.023l-6.129-1.643l-2.32,8.654 l-4.027-4.185L0,16.008h5.752v3.212c0,6.398,4.527,10.067,12.42,10.067h0.943v-8.079h-0.943c-0.998,0-2.881-0.416-2.881-1.988 v-3.212H20.74z M18.381,11.377l-0.969,0.969l-1.594-1.655L18.381,11.377z" opacity="0.35"/>
+<path d="M20.74,16.008L21.732,17L30,8.733l-4.488-4.486l-4.131,4.132l1.613-6.023l-6.129-1.643l-2.32,8.654 l-4.027-4.185L0,16.008h5.752v3.212c0,6.398,4.527,10.067,12.42,10.067h0.943v-8.079h-0.943c-0.998,0-2.881-0.416-2.881-1.988 v-3.212H20.74z M18.381,11.377l-0.969,0.969l-1.594-1.655L18.381,11.377z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3121.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2183.5244" x2="-2183.5244" y1="3114.3159" y2="3092.6184">
- <stop offset="0" style="stop-color:#FF7042"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FF7042"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<path d="M14.346,19.22v-4.157h4.369l-8.201-8.521l-8.277,8.521h4.461v4.157c0,7.027,5.848,9.122,11.475,9.122 v-6.188C16.438,22.154,14.346,21.298,14.346,19.22z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="10.4756" x2="10.4756" y1="6.6836" y2="23.1265">
- <stop offset="0" style="stop-color:#FA9D53"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FA9D53"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="10.514,7.505 17.787,15.063 18.715,15.063 10.514,6.542 2.236,15.063 3.172,15.063 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="16.2588" x2="16.2588" y1="6.6821" y2="23.1266">
- <stop offset="0" style="stop-color:#FA9D53"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FA9D53"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<path d="M14.346,19.22v0.964c0,2.077,2.092,2.934,3.826,2.934v-0.963 C16.438,22.154,14.346,21.298,14.346,19.22z" fill="url(#SVGID_3__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="19.6777" x2="17.6734" y1="2.3481" y2="10.087">
- <stop offset="0" style="stop-color:#FFA959"/>
- <stop offset="0.703" style="stop-color:#CA3522"/>
- <stop offset="1" style="stop-color:#F08849"/>
+<stop offset="0" style="stop-color:#FFA959"/>
+<stop offset="0.703" style="stop-color:#CA3522"/>
+<stop offset="1" style="stop-color:#F08849"/>
</linearGradient>
<polygon fill="url(#SVGID_4__)" points="15.459,9.616 17.533,1.871 21.836,3.024 19.762,10.768 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="19.5371" x2="17.755" y1="2.8726" y2="9.7783">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
</linearGradient>
<polygon fill="url(#SVGID_5__)" points="19.445,10.223 16.004,9.3 17.85,2.416 21.291,3.338 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="27.0137" x2="20.1654" y1="7.1484" y2="14.1638">
- <stop offset="0" style="stop-color:#FFA959"/>
- <stop offset="0.703" style="stop-color:#CA3522"/>
- <stop offset="1" style="stop-color:#F08849"/>
+<stop offset="0" style="stop-color:#FFA959"/>
+<stop offset="0.703" style="stop-color:#CA3522"/>
+<stop offset="1" style="stop-color:#F08849"/>
</linearGradient>
<polygon fill="url(#SVGID_6__)" points="18.582,12.513 25.512,5.584 28.662,8.733 21.732,15.663 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="26.7764" x2="20.5396" y1="7.4414" y2="13.7339">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
</linearGradient>
<polygon fill="url(#SVGID_7_)" points="21.732,15.034 19.213,12.513 25.512,6.213 28.031,8.733 "/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<rect fill="url(#SVGID_1___)" height="7.853" width="5.105" x="12.45" y="19.72"/>
<path d="M12.45,24.66c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.285z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M12.45,24.02c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.288z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="15" x2="15" y1="1.975" y2="23.67">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="0.3212" stop-color="#E6E6E6"/>
-
<stop offset="1" stop-color="#666666"/>
-
</linearGradient>
<path d="M15,23.7c-5.98,0-10.85-4.867-10.85-10.85s4.87-10.85,10.85-10.85c5.982,0,10.85,4.866,10.85,10.85s-4.87,10.85-10.85,10.85z" fill="url(#SVGID_2___)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3___" x1="15" x2="15" y1="2.614" y2="23.03">
-
<stop offset="0" stop-color="#D1D7D9"/>
-
<stop offset="0.0667" stop-color="#D1D7D9"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#7C8487"/>
-
<stop offset="1" stop-color="#ADB3B5"/>
-
</linearGradient>
<circle cx="15" cy="12.85" fill="url(#SVGID_3___)" r="10.21"/>
<path d="M15,21.99c-5.315,0-9.657-4.23-9.843-9.5-0.004,0.116-0.009,0.231-0.009,0.349,0,5.431,4.419,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.117-0.005-0.232-0.009-0.349-0.18,5.27-4.52,9.5-9.84,9.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<path d="M23.3,12.41c0,4.704-3.715,9.346-8.299,9.345-4.58-0.003-8.292-4.646-8.291-9.35,0.002-4.706,3.718-8.517,8.298-8.517,4.57,0.001,8.29,3.814,8.29,8.517z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M15,21.07c-2.387-0.002-4.63-0.932-6.315-2.619-1.688-1.688-2.615-3.932-2.614-6.318,0-4.923,4.009-8.929,8.935-8.929,2.387,0,4.632,0.931,6.317,2.618,1.688,1.688,2.616,3.933,2.615,6.318-0.002,4.924-4.01,8.93-8.934,8.93h-0.014z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4___" x1="15" x2="15" y1="3.721" y2="20.35">
-
<stop offset="0" stop-color="#CFCFCF"/>
-
<stop offset="0.1091" stop-color="#CFCFCF"/>
-
<stop offset="0.6848" stop-color="#121212"/>
-
<stop offset="1" stop-color="#A6A6A6"/>
-
</linearGradient>
<path d="M15,20.43c-2.216-0.002-4.298-0.864-5.864-2.432-1.567-1.566-2.428-3.65-2.427-5.866,0-4.573,3.723-8.293,8.296-8.293,2.218,0.001,4.3,0.864,5.866,2.432s2.43,3.651,2.428,5.867c-0.001,4.573-3.723,8.292-8.295,8.292h-0.004z" fill="url(#SVGID_4___)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5___" x1="15" x2="15" y1="4.368" y2="19.72">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="1" stop-color="#606769"/>
-
</linearGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_5___)" r="7.657"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6___" x1="15" x2="15" y1="5.772" y2="18.45">
-
<stop offset="0" stop-color="#1A1A1A"/>
-
<stop offset="0.503" stop-color="#343434"/>
-
<stop offset="0.7515" stop-color="#9E9E9E"/>
-
<stop offset="1" stop-color="#CFCFCF"/>
-
</linearGradient>
<path d="M15,18.51c-1.706-0.001-3.309-0.666-4.514-1.871-1.204-1.206-1.867-2.808-1.867-4.512,0-3.517,2.862-6.378,6.382-6.378,1.706,0,3.308,0.664,4.513,1.871,1.205,1.205,1.868,2.808,1.867,4.513,0,3.51-2.86,6.37-6.38,6.37z" fill="url(#SVGID_6___)"/>
<radialGradient cx="25.77" cy="10.27" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_7__" r="6.499">
-
<stop offset="0" stop-color="#000000"/>
-
<stop offset="0.5917" stop-color="#000000"/>
-
<stop offset="0.627" stop-color="#050505"/>
-
<stop offset="0.7652" stop-color="#121212"/>
-
<stop offset="0.8876" stop-color="#171717"/>
-
<stop offset="1" stop-color="#171717"/>
-
</radialGradient>
<path d="M20.74,12.14c0,3.172-2.574,5.74-5.744,5.74-3.175-0.001-5.743-2.573-5.741-5.745,0-3.171,2.573-5.742,5.745-5.74,3.17-0.009,5.74,2.562,5.74,5.74z" fill="url(#SVGID_7__)"/>
<radialGradient cx="21.65" cy="5.066" gradientTransform="matrix(1.0143 0 0 1.0141 -9.5579 3.1299)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="10.35">
-
<stop offset="0" stop-color="#242424"/>
-
<stop offset="0.4303" stop-color="#242424"/>
-
<stop offset="0.7818" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_8_)" r="4.712"/>
<radialGradient cx="23.96" cy="3.55" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="11.36">
-
<stop offset="0" stop-color="#A700F5"/>
-
<stop offset="0.3091" stop-color="#A700F5"/>
-
<stop offset="0.4364" stop-color="#5E008A"/>
-
<stop offset="0.8061" stop-color="#0E1402"/>
-
<stop offset="1" stop-color="#0E1402"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0.004-2.327,1.89-4.21,4.213-4.21,2.33,0.003,4.21,1.888,4.21,4.21z" fill="url(#SVGID_9_)"/>
<radialGradient cx="25.17" cy="13.25" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="4.611">
-
<stop offset="0" stop-color="#48630C"/>
-
<stop offset="0.7879" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0,0,1.444,2.569,4.213,2.569,2.77,0,4.21-2.57,4.21-2.57z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="14.98" x2="14.98" y1="7.065" y2="12.09">
-
<stop offset="0" stop-color="#F8FBFF"/>
-
<stop offset="1" stop-color="#808080"/>
-
</linearGradient>
<path d="M14.98,12.07c1.828,0,3.549-0.277,5.067-0.765-0.431-2.41-2.532-4.239-5.067-4.239-2.532,0-4.632,1.83-5.065,4.239,1.515,0.49,3.235,0.77,5.065,0.77z" fill="url(#SVGID_11_)" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="5.762" x2="24.29" y1="26.72" y2="26.72">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<path d="M24.24,28c0.025-0.635,0.04-0.508,0.04-0.639v-0.035c0-1.037-0.852-1.879-1.901-1.879h-14.72c-1.05,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.04,0.639h18.44z" fill="url(#SVGID_12_)"/>
<path d="M5.879,26.7h18.29c-0.084-0.234-0.212-0.444-0.377-0.626h-17.53c-0.164,0.19-0.293,0.4-0.377,0.63z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
@@ -236,4 +176,4 @@
<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_voice_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_voice_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,64 +1,62 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g>
-<defs>
-</defs>
<polygon fill="none" points="15.053,0 14.626,0.439 0,0.439 0,30.439 30,30.439 30,0.439 15.476,0.439 "/>
-<path d="M24.884,30.438c-10.001,0-15.735-4.635-15.735-12.715v-4.339H2.053L15.053,0l12.88,13.385h-6.962v4.339 c0,2.189,2.56,2.768,3.913,2.768h1v9.947H24.884z" opacity="0.35"/>
+<path d="M24.884,30.438c-10.001,0-15.735-4.635-15.735-12.715v-4.339H2.053L15.053,0l12.88,13.385h-6.962v4.339 c0,2.189,2.56,2.768,3.913,2.768h1v9.947H24.884z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3014.6338)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179" x2="-2179" y1="3012.1528" y2="2984.2842">
- <stop offset="0" style="stop-color:#FF7042"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FF7042"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<path d="M19.971,17.724v-5.339h5.611L15.049,1.438L4.418,12.385h5.73v5.339 c0,9.024,7.509,11.715,14.735,11.715v-7.947C22.658,21.491,19.971,20.392,19.971,17.724z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.7129" y2="22.5894">
- <stop offset="0" style="stop-color:#FFB259"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FFB259"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="15.049,2.438 24.62,12.385 25.582,12.385 15.049,1.438 4.418,12.385 5.389,12.385 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="22.4268" x2="22.4268" y1="1.7129" y2="22.5894">
- <stop offset="0" style="stop-color:#FF7042"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FF7042"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<path d="M19.971,17.724v1c0,2.668,2.688,3.768,4.913,3.768v-1C22.658,21.491,19.971,20.392,19.971,17.724z" fill="url(#SVGID_3__)"/>
<rect fill="none" height="30" width="30" y="0.439"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_voice_call_unseen.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_voice_call_unseen.svg Thu May 27 13:10:59 2010 +0300
@@ -1,88 +1,86 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M20.74,16.008L21.732,17L30,8.733l-4.488-4.486l-4.131,4.132l1.613-6.023l-6.129-1.643l-2.32,8.654 l-4.027-4.185L0,16.008h5.752v3.212c0,6.398,4.527,10.067,12.42,10.067h0.943v-8.079h-0.943c-0.998,0-2.881-0.416-2.881-1.988 v-3.212H20.74z M18.381,11.377l-0.969,0.969l-1.594-1.655L18.381,11.377z" opacity="0.35"/>
+<path d="M20.74,16.008L21.732,17L30,8.733l-4.488-4.486l-4.131,4.132l1.613-6.023l-6.129-1.643l-2.32,8.654 l-4.027-4.185L0,16.008h5.752v3.212c0,6.398,4.527,10.067,12.42,10.067h0.943v-8.079h-0.943c-0.998,0-2.881-0.416-2.881-1.988 v-3.212H20.74z M18.381,11.377l-0.969,0.969l-1.594-1.655L18.381,11.377z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3121.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2183.5244" x2="-2183.5244" y1="3114.3159" y2="3092.6184">
- <stop offset="0" style="stop-color:#FF7042"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FF7042"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<path d="M14.346,19.22v-4.157h4.369l-8.201-8.521l-8.277,8.521h4.461v4.157c0,7.027,5.848,9.122,11.475,9.122 v-6.188C16.438,22.154,14.346,21.298,14.346,19.22z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="10.4756" x2="10.4756" y1="6.6836" y2="23.1265">
- <stop offset="0" style="stop-color:#FA9D53"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FA9D53"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="10.514,7.505 17.787,15.063 18.715,15.063 10.514,6.542 2.236,15.063 3.172,15.063 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="16.2588" x2="16.2588" y1="6.6821" y2="23.1266">
- <stop offset="0" style="stop-color:#FA9D53"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FA9D53"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<path d="M14.346,19.22v0.964c0,2.077,2.092,2.934,3.826,2.934v-0.963 C16.438,22.154,14.346,21.298,14.346,19.22z" fill="url(#SVGID_3__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="19.6777" x2="17.6734" y1="2.3481" y2="10.087">
- <stop offset="0" style="stop-color:#FFA959"/>
- <stop offset="0.703" style="stop-color:#CA3522"/>
- <stop offset="1" style="stop-color:#F08849"/>
+<stop offset="0" style="stop-color:#FFA959"/>
+<stop offset="0.703" style="stop-color:#CA3522"/>
+<stop offset="1" style="stop-color:#F08849"/>
</linearGradient>
<polygon fill="url(#SVGID_4__)" points="15.459,9.616 17.533,1.871 21.836,3.024 19.762,10.768 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="19.5371" x2="17.755" y1="2.8726" y2="9.7783">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
</linearGradient>
<polygon fill="url(#SVGID_5__)" points="19.445,10.223 16.004,9.3 17.85,2.416 21.291,3.338 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="27.0137" x2="20.1654" y1="7.1484" y2="14.1638">
- <stop offset="0" style="stop-color:#FFA959"/>
- <stop offset="0.703" style="stop-color:#CA3522"/>
- <stop offset="1" style="stop-color:#F08849"/>
+<stop offset="0" style="stop-color:#FFA959"/>
+<stop offset="0.703" style="stop-color:#CA3522"/>
+<stop offset="1" style="stop-color:#F08849"/>
</linearGradient>
<polygon fill="url(#SVGID_6__)" points="18.582,12.513 25.512,5.584 28.662,8.733 21.732,15.663 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="26.7764" x2="20.5396" y1="7.4414" y2="13.7339">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
</linearGradient>
<polygon fill="url(#SVGID_7_)" points="21.732,15.034 19.213,12.513 25.512,6.213 28.031,8.733 "/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_voip_call_unseen.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_voip_call_unseen.svg Thu May 27 13:10:59 2010 +0300
@@ -1,121 +1,117 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M20.74,16.008L21.732,17L30,8.733l-4.488-4.486l-4.131,4.132l1.613-6.023l-6.129-1.643l-2.32,8.654 l-4.027-4.185L0,16.008h5.752v3.212c0,6.398,4.527,10.067,12.42,10.067h0.943v-8.079h-0.943c-0.998,0-2.881-0.416-2.881-1.988 v-3.212H20.74z M18.381,11.377l-0.969,0.969l-1.594-1.655L18.381,11.377z" opacity="0.35"/>
+<path d="M20.74,16.008L21.732,17L30,8.733l-4.488-4.486l-4.131,4.132l1.613-6.023l-6.129-1.643l-2.32,8.654 l-4.027-4.185L0,16.008h5.752v3.212c0,6.398,4.527,10.067,12.42,10.067h0.943v-8.079h-0.943c-0.998,0-2.881-0.416-2.881-1.988 v-3.212H20.74z M18.381,11.377l-0.969,0.969l-1.594-1.655L18.381,11.377z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3121.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2183.5244" x2="-2183.5244" y1="3114.3159" y2="3092.6184">
- <stop offset="0" style="stop-color:#FF7042"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FF7042"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<path d="M14.346,19.22v-4.157h4.369l-8.201-8.521l-8.277,8.521h4.461v4.157c0,7.027,5.848,9.122,11.475,9.122 v-6.188C16.438,22.154,14.346,21.298,14.346,19.22z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="10.4756" x2="10.4756" y1="6.6836" y2="23.1265">
- <stop offset="0" style="stop-color:#FA9D53"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FA9D53"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="10.514,7.505 17.787,15.063 18.715,15.063 10.514,6.542 2.236,15.063 3.172,15.063 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="16.2588" x2="16.2588" y1="6.6821" y2="23.1266">
- <stop offset="0" style="stop-color:#FA9D53"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FA9D53"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<path d="M14.346,19.22v0.964c0,2.077,2.092,2.934,3.826,2.934v-0.963 C16.438,22.154,14.346,21.298,14.346,19.22z" fill="url(#SVGID_3__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="19.6777" x2="17.6734" y1="2.3481" y2="10.087">
- <stop offset="0" style="stop-color:#FFA959"/>
- <stop offset="0.703" style="stop-color:#CA3522"/>
- <stop offset="1" style="stop-color:#F08849"/>
+<stop offset="0" style="stop-color:#FFA959"/>
+<stop offset="0.703" style="stop-color:#CA3522"/>
+<stop offset="1" style="stop-color:#F08849"/>
</linearGradient>
<polygon fill="url(#SVGID_4__)" points="15.459,9.616 17.533,1.871 21.836,3.024 19.762,10.768 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="19.5371" x2="17.755" y1="2.8726" y2="9.7783">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
</linearGradient>
<polygon fill="url(#SVGID_5__)" points="19.445,10.223 16.004,9.3 17.85,2.416 21.291,3.338 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="27.0137" x2="20.1654" y1="7.1484" y2="14.1638">
- <stop offset="0" style="stop-color:#FFA959"/>
- <stop offset="0.703" style="stop-color:#CA3522"/>
- <stop offset="1" style="stop-color:#F08849"/>
+<stop offset="0" style="stop-color:#FFA959"/>
+<stop offset="0.703" style="stop-color:#CA3522"/>
+<stop offset="1" style="stop-color:#F08849"/>
</linearGradient>
<polygon fill="url(#SVGID_6__)" points="18.582,12.513 25.512,5.584 28.662,8.733 21.732,15.663 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="26.7764" x2="20.5396" y1="7.4414" y2="13.7339">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
</linearGradient>
<polygon fill="url(#SVGID_7_)" points="21.732,15.034 19.213,12.513 25.512,6.213 28.031,8.733 "/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" enable-background="new " opacity="0.35"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1___" r="28.704">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1___)" r="13.464"/>
-<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" enable-background="new " opacity="0.3"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" enable-background="new " fill="url(#SVGID_2___)" opacity="0.3"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2___)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3___" r="9.0429">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3___)"/>
<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4___" r="10.4663">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4___)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mmc.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mmc.svg Thu May 27 13:10:59 2010 +0300
@@ -1,161 +1,84 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
+<g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.54" x2="29.54" y1="8.111" y2="49.9">
-
<stop offset="0" stop-color="#666666"/>
-
<stop offset="1" stop-color="#000000"/>
-
</linearGradient>
-
<path d="M22.91,9.039c0.511-0.425,1.472-0.771,2.136-0.771h20.48c0.664,0,1.207,0.542,1.207,1.206v39.21c0,0.663-0.543,1.206-1.207,1.206h-31.98c-0.663,0-1.207-0.543-1.207-1.206v-29.69c0-0.663,0.418-1.553,0.929-1.977l9.63-7.991z" fill="url(#SVGID_1_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.54" x2="29.54" y1="7.959" y2="50.51">
-
<stop offset="0" stop-color="#999999"/>
-
<stop offset="1" stop-color="#333333"/>
-
</linearGradient>
-
<path d="M45.77,8.571c0.338,0,0.611,0.274,0.611,0.612v39.8c0,0.338-0.273,0.612-0.611,0.612h-32.45c-0.338,0-0.612-0.274-0.612-0.612v-30.13c0-0.49,0.344-1.222,0.721-1.535l9.78-8.105c0.412-0.342,1.242-0.642,1.777-0.642h20.79m0.004-0.614h-20.79c-0.674,0-1.648,0.352-2.167,0.781l-9.78,8.107c-0.519,0.43-0.943,1.332-0.943,2.006v30.13c0,0.673,0.551,1.225,1.225,1.225h32.45c0.673,0,1.225-0.552,1.225-1.225v-39.82c-0.01-0.674-0.56-1.225-1.23-1.225z" fill="url(#SVGID_2_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.54" x2="29.54" y1="9.65" y2="48.37">
-
<stop offset="0" stop-color="#A0A3A6"/>
-
<stop offset="0.2606" stop-color="#7B7E80"/>
-
<stop offset="0.8182" stop-color="#474B4D"/>
-
<stop offset="1" stop-color="#707577"/>
-
</linearGradient>
-
<path d="M15.15,48.37c-0.673,0-1.224-0.551-1.224-1.225v-27.35c0-0.673,0.423-1.577,0.94-2.009l8.629-7.198c0.517-0.432,1.491-0.784,2.165-0.784h18.26c0.673,0,1.224,0.552,1.224,1.225v36.12c0,0.674-0.551,1.225-1.224,1.225h-28.77z" fill="url(#SVGID_3_)"/>
-
<path d="M43.93,47.76h-28.78c-0.673,0-1.224-0.552-1.224-1.224v0.611c0,0.674,0.551,1.225,1.224,1.225h28.78c0.673,0,1.224-0.551,1.224-1.225v-0.611c0,0.65-0.55,1.21-1.22,1.21z" fill="#808080"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.54" x2="29.54" y1="39.8" y2="45.46">
-
<stop offset="0" stop-color="#242626"/>
-
<stop offset="1" stop-color="#585C5E"/>
-
-</linearGradient>
-
-<rect fill="url(#SVGID_4_)" height="5.511" width="27.55" x="15.76" y="39.8"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="42.09" x2="42.09" y1="19.59" y2="11.02">
-
-<stop offset="0" stop-color="#666666"/>
-
-<stop offset="1" stop-color="#282828"/>
-
</linearGradient>
-
-<rect fill="url(#SVGID_5_)" height="8.571" width="3.674" x="40.26" y="11.02"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="42.09" x2="42.09" y1="11.49" y2="19.86">
-
-<stop offset="0" stop-color="#FFF173"/>
-
-<stop offset="0.33" stop-color="#F1BC35"/>
-
-<stop offset="0.66" stop-color="#E5B029"/>
-
-<stop offset="1" stop-color="#FFA102"/>
-
-</linearGradient>
-
-<rect fill="url(#SVGID_6_)" height="7.959" width="2.449" x="40.87" y="11.63"/>
-
-<rect fill="#CBCBCB" height="0.612" width="3.674" x="40.26" y="18.98"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.58" x2="36.58" y1="19.59" y2="11.02">
-
+<rect fill="url(#SVGID_4_)" height="5.511" width="27.55" x="15.76" y="39.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="42.09" x2="42.09" y1="19.59" y2="11.02">
<stop offset="0" stop-color="#666666"/>
-
<stop offset="1" stop-color="#282828"/>
-
</linearGradient>
-
-<rect fill="url(#SVGID_7_)" height="8.571" width="3.673" x="34.74" y="11.02"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="36.58" x2="36.58" y1="11.49" y2="19.86">
-
+<rect fill="url(#SVGID_5_)" height="8.571" width="3.674" x="40.26" y="11.02"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="42.09" x2="42.09" y1="11.49" y2="19.86">
<stop offset="0" stop-color="#FFF173"/>
-
<stop offset="0.33" stop-color="#F1BC35"/>
-
<stop offset="0.66" stop-color="#E5B029"/>
-
<stop offset="1" stop-color="#FFA102"/>
-
</linearGradient>
-
-<rect fill="url(#SVGID_8_)" height="7.959" width="2.449" x="35.36" y="11.63"/>
-
-<rect fill="#CBCBCB" height="0.612" width="3.673" x="34.74" y="18.98"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="31.07" x2="31.07" y1="19.59" y2="11.02">
-
+<rect fill="url(#SVGID_6_)" height="7.959" width="2.449" x="40.87" y="11.63"/>
+<rect fill="#CBCBCB" height="0.612" width="3.674" x="40.26" y="18.98"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.58" x2="36.58" y1="19.59" y2="11.02">
<stop offset="0" stop-color="#666666"/>
-
<stop offset="1" stop-color="#282828"/>
-
</linearGradient>
-
-<rect fill="url(#SVGID_9_)" height="8.571" width="3.673" x="29.24" y="11.02"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="31.07" x2="31.07" y1="11.49" y2="19.86">
-
+<rect fill="url(#SVGID_7_)" height="8.571" width="3.673" x="34.74" y="11.02"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="36.58" x2="36.58" y1="11.49" y2="19.86">
<stop offset="0" stop-color="#FFF173"/>
-
<stop offset="0.33" stop-color="#F1BC35"/>
-
<stop offset="0.66" stop-color="#E5B029"/>
-
<stop offset="1" stop-color="#FFA102"/>
-
</linearGradient>
-
-<rect fill="url(#SVGID_10_)" height="7.959" width="2.449" x="29.85" y="11.63"/>
-
-<rect fill="#CBCBCB" height="0.612" width="3.673" x="29.24" y="18.98"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="25.56" x2="25.56" y1="19.59" y2="11.02">
-
+<rect fill="url(#SVGID_8_)" height="7.959" width="2.449" x="35.36" y="11.63"/>
+<rect fill="#CBCBCB" height="0.612" width="3.673" x="34.74" y="18.98"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="31.07" x2="31.07" y1="19.59" y2="11.02">
<stop offset="0" stop-color="#666666"/>
-
<stop offset="1" stop-color="#282828"/>
-
</linearGradient>
-
-<rect fill="url(#SVGID_11_)" height="8.571" width="3.673" x="23.72" y="11.02"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="25.56" x2="25.56" y1="11.49" y2="19.86">
-
+<rect fill="url(#SVGID_9_)" height="8.571" width="3.673" x="29.24" y="11.02"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="31.07" x2="31.07" y1="11.49" y2="19.86">
<stop offset="0" stop-color="#FFF173"/>
-
<stop offset="0.33" stop-color="#F1BC35"/>
-
<stop offset="0.66" stop-color="#E5B029"/>
-
<stop offset="1" stop-color="#FFA102"/>
-
+</linearGradient>
+<rect fill="url(#SVGID_10_)" height="7.959" width="2.449" x="29.85" y="11.63"/>
+<rect fill="#CBCBCB" height="0.612" width="3.673" x="29.24" y="18.98"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="25.56" x2="25.56" y1="19.59" y2="11.02">
+<stop offset="0" stop-color="#666666"/>
+<stop offset="1" stop-color="#282828"/>
</linearGradient>
-
+<rect fill="url(#SVGID_11_)" height="8.571" width="3.673" x="23.72" y="11.02"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="25.56" x2="25.56" y1="11.49" y2="19.86">
+<stop offset="0" stop-color="#FFF173"/>
+<stop offset="0.33" stop-color="#F1BC35"/>
+<stop offset="0.66" stop-color="#E5B029"/>
+<stop offset="1" stop-color="#FFA102"/>
+</linearGradient>
<rect fill="url(#SVGID_12_)" height="7.959" width="2.449" x="24.34" y="11.63"/>
-
<rect fill="#CBCBCB" height="0.612" width="3.673" x="23.72" y="18.98"/>
-
<rect fill="#8C8C8C" height="0.613" width="27.55" x="15.76" y="44.69"/>
-
<path d="M45.77,7.959h-20.79c-0.674,0-1.648,0.352-2.167,0.781l-9.78,8.107c-0.4,0.332-0.743,0.947-0.878,1.52,0,0,1.004-0.828,1.269-1.049l9.78-8.105c0.412-0.342,1.242-0.642,1.777-0.642h20.78c0.611,0,1.225,0.612,1.225,0.612-0.01-0.675-0.56-1.226-1.23-1.226z" fill="#CCCCCC"/>
-
<rect fill="none" height="60" width="60"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mmc_removed.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mmc_removed.svg Thu May 27 13:10:59 2010 +0300
@@ -1,86 +1,84 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g opacity="0.5">
-<defs>
-</defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.5405" x2="29.5405" y1="8.1108" y2="49.8955">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.54" x2="29.54" y1="8.111" y2="49.9">
+<stop offset="0" stop-color="#666666"/>
+<stop offset="1" stop-color="#000000"/>
</linearGradient>
-<path d="M22.913,9.039c0.511-0.425,1.472-0.771,2.136-0.771h20.479c0.664,0,1.207,0.542,1.207,1.206v39.214 c0,0.663-0.543,1.206-1.207,1.206H13.554c-0.663,0-1.207-0.543-1.207-1.206V19.003c0-0.663,0.418-1.553,0.929-1.977L22.913,9.039z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.5405" x2="29.5405" y1="7.959" y2="50.5109">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#333333"/>
+<path d="M22.91,9.039c0.511-0.425,1.472-0.771,2.136-0.771h20.48c0.664,0,1.207,0.542,1.207,1.206v39.21c0,0.663-0.543,1.206-1.207,1.206h-31.98c-0.663,0-1.207-0.543-1.207-1.206v-29.69c0-0.663,0.418-1.553,0.929-1.977l9.63-7.991z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.54" x2="29.54" y1="7.959" y2="50.51">
+<stop offset="0" stop-color="#999999"/>
+<stop offset="1" stop-color="#333333"/>
</linearGradient>
-<path d="M45.766,8.571c0.338,0,0.611,0.274,0.611,0.612v39.796c0,0.338-0.273,0.612-0.611,0.612H13.316 c-0.338,0-0.612-0.274-0.612-0.612V18.854c0-0.49,0.344-1.222,0.721-1.535l9.78-8.105c0.412-0.342,1.242-0.642,1.777-0.642H45.766 M45.766,7.959H24.982c-0.674,0-1.648,0.352-2.167,0.781l-9.78,8.107c-0.519,0.43-0.943,1.332-0.943,2.006v30.126 c0,0.673,0.551,1.225,1.225,1.225h32.449c0.673,0,1.225-0.552,1.225-1.225V9.184C46.99,8.51,46.438,7.959,45.766,7.959L45.766,7.959 z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.5405" x2="29.5405" y1="9.6499" y2="48.3682">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.2606" style="stop-color:#7B7E80"/>
- <stop offset="0.8182" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<path d="M45.77,8.571c0.338,0,0.611,0.274,0.611,0.612v39.8c0,0.338-0.273,0.612-0.611,0.612h-32.45c-0.338,0-0.612-0.274-0.612-0.612v-30.13c0-0.49,0.344-1.222,0.721-1.535l9.78-8.105c0.412-0.342,1.242-0.642,1.777-0.642h20.79m0.004-0.614h-20.79c-0.674,0-1.648,0.352-2.167,0.781l-9.78,8.107c-0.519,0.43-0.943,1.332-0.943,2.006v30.13c0,0.673,0.551,1.225,1.225,1.225h32.45c0.673,0,1.225-0.552,1.225-1.225v-39.82c-0.01-0.674-0.56-1.225-1.23-1.225z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.54" x2="29.54" y1="9.65" y2="48.37">
+<stop offset="0" stop-color="#A0A3A6"/>
+<stop offset="0.2606" stop-color="#7B7E80"/>
+<stop offset="0.8182" stop-color="#474B4D"/>
+<stop offset="1" stop-color="#707577"/>
</linearGradient>
-<path d="M15.153,48.367c-0.673,0-1.224-0.551-1.224-1.225V19.787c0-0.673,0.423-1.577,0.94-2.009l8.629-7.198 c0.517-0.432,1.491-0.784,2.165-0.784h18.265c0.673,0,1.224,0.552,1.224,1.225v36.122c0,0.674-0.551,1.225-1.224,1.225H15.153z" fill="url(#SVGID_3_)"/>
-<path d="M43.929,47.755H15.153c-0.673,0-1.224-0.552-1.224-1.224v0.611c0,0.674,0.551,1.225,1.224,1.225h28.776 c0.673,0,1.224-0.551,1.224-1.225v-0.611C45.152,47.203,44.602,47.755,43.929,47.755z" fill="#808080"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.5405" x2="29.5405" y1="39.7959" y2="45.4597">
- <stop offset="0" style="stop-color:#242626"/>
- <stop offset="1" style="stop-color:#585C5E"/>
+<path d="M15.15,48.37c-0.673,0-1.224-0.551-1.224-1.225v-27.35c0-0.673,0.423-1.577,0.94-2.009l8.629-7.198c0.517-0.432,1.491-0.784,2.165-0.784h18.26c0.673,0,1.224,0.552,1.224,1.225v36.12c0,0.674-0.551,1.225-1.224,1.225h-28.77z" fill="url(#SVGID_3_)"/>
+<path d="M43.93,47.76h-28.78c-0.673,0-1.224-0.552-1.224-1.224v0.611c0,0.674,0.551,1.225,1.224,1.225h28.78c0.673,0,1.224-0.551,1.224-1.225v-0.611c0,0.65-0.55,1.21-1.22,1.21z" fill="#808080"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.54" x2="29.54" y1="39.8" y2="45.46">
+<stop offset="0" stop-color="#242626"/>
+<stop offset="1" stop-color="#585C5E"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="5.511" width="27.551" x="15.765" y="39.796"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="42.0918" x2="42.0918" y1="19.5918" y2="11.0205">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#282828"/>
+<rect fill="url(#SVGID_4_)" height="5.511" width="27.55" x="15.76" y="39.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="42.09" x2="42.09" y1="19.59" y2="11.02">
+<stop offset="0" stop-color="#666666"/>
+<stop offset="1" stop-color="#282828"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="8.571" width="3.674" x="40.255" y="11.021"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="42.0918" x2="42.0918" y1="11.4927" y2="19.8569">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<rect fill="url(#SVGID_5_)" height="8.571" width="3.674" x="40.26" y="11.02"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="42.09" x2="42.09" y1="11.49" y2="19.86">
+<stop offset="0" stop-color="#FFF173"/>
+<stop offset="0.33" stop-color="#F1BC35"/>
+<stop offset="0.66" stop-color="#E5B029"/>
+<stop offset="1" stop-color="#FFA102"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="7.959" width="2.449" x="40.867" y="11.633"/>
-<rect fill="#CBCBCB" height="0.612" width="3.674" x="40.255" y="18.979"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.582" x2="36.582" y1="19.5918" y2="11.0205">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#282828"/>
+<rect fill="url(#SVGID_6_)" height="7.959" width="2.449" x="40.87" y="11.63"/>
+<rect fill="#CBCBCB" height="0.612" width="3.674" x="40.26" y="18.98"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.58" x2="36.58" y1="19.59" y2="11.02">
+<stop offset="0" stop-color="#666666"/>
+<stop offset="1" stop-color="#282828"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="8.571" width="3.673" x="34.745" y="11.021"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="36.582" x2="36.582" y1="11.4927" y2="19.8569">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<rect fill="url(#SVGID_7_)" height="8.571" width="3.673" x="34.74" y="11.02"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="36.58" x2="36.58" y1="11.49" y2="19.86">
+<stop offset="0" stop-color="#FFF173"/>
+<stop offset="0.33" stop-color="#F1BC35"/>
+<stop offset="0.66" stop-color="#E5B029"/>
+<stop offset="1" stop-color="#FFA102"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="7.959" width="2.449" x="35.357" y="11.633"/>
-<rect fill="#CBCBCB" height="0.612" width="3.673" x="34.745" y="18.979"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="31.0713" x2="31.0713" y1="19.5918" y2="11.0205">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#282828"/>
+<rect fill="url(#SVGID_8_)" height="7.959" width="2.449" x="35.36" y="11.63"/>
+<rect fill="#CBCBCB" height="0.612" width="3.673" x="34.74" y="18.98"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="31.07" x2="31.07" y1="19.59" y2="11.02">
+<stop offset="0" stop-color="#666666"/>
+<stop offset="1" stop-color="#282828"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="8.571" width="3.673" x="29.235" y="11.021"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="31.0723" x2="31.0723" y1="11.4927" y2="19.8569">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<rect fill="url(#SVGID_9_)" height="8.571" width="3.673" x="29.24" y="11.02"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="31.07" x2="31.07" y1="11.49" y2="19.86">
+<stop offset="0" stop-color="#FFF173"/>
+<stop offset="0.33" stop-color="#F1BC35"/>
+<stop offset="0.66" stop-color="#E5B029"/>
+<stop offset="1" stop-color="#FFA102"/>
</linearGradient>
-<rect fill="url(#SVGID_10_)" height="7.959" width="2.449" x="29.847" y="11.633"/>
-<rect fill="#CBCBCB" height="0.612" width="3.673" x="29.235" y="18.979"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="25.561" x2="25.561" y1="19.5918" y2="11.0205">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#282828"/>
+<rect fill="url(#SVGID_10_)" height="7.959" width="2.449" x="29.85" y="11.63"/>
+<rect fill="#CBCBCB" height="0.612" width="3.673" x="29.24" y="18.98"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="25.56" x2="25.56" y1="19.59" y2="11.02">
+<stop offset="0" stop-color="#666666"/>
+<stop offset="1" stop-color="#282828"/>
</linearGradient>
-<rect fill="url(#SVGID_11_)" height="8.571" width="3.673" x="23.725" y="11.021"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="25.561" x2="25.561" y1="11.4927" y2="19.8569">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<rect fill="url(#SVGID_11_)" height="8.571" width="3.673" x="23.72" y="11.02"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="25.56" x2="25.56" y1="11.49" y2="19.86">
+<stop offset="0" stop-color="#FFF173"/>
+<stop offset="0.33" stop-color="#F1BC35"/>
+<stop offset="0.66" stop-color="#E5B029"/>
+<stop offset="1" stop-color="#FFA102"/>
</linearGradient>
-<rect fill="url(#SVGID_12_)" height="7.959" width="2.449" x="24.337" y="11.633"/>
-<rect fill="#CBCBCB" height="0.612" width="3.673" x="23.725" y="18.979"/>
-<rect fill="#8C8C8C" height="0.613" width="27.551" x="15.765" y="44.693"/>
-<path d="M45.766,7.959H24.982c-0.674,0-1.648,0.352-2.167,0.781l-9.78,8.107c-0.4,0.332-0.743,0.947-0.878,1.52 c0,0,1.004-0.828,1.269-1.049l9.78-8.105c0.412-0.342,1.242-0.642,1.777-0.642h20.784c0.611,0,1.225,0.612,1.225,0.612 C46.99,8.51,46.438,7.959,45.766,7.959z" fill="#CCCCCC"/>
+<rect fill="url(#SVGID_12_)" height="7.959" width="2.449" x="24.34" y="11.63"/>
+<rect fill="#CBCBCB" height="0.612" width="3.673" x="23.72" y="18.98"/>
+<rect fill="#8C8C8C" height="0.613" width="27.55" x="15.76" y="44.69"/>
+<path d="M45.77,7.959h-20.79c-0.674,0-1.648,0.352-2.167,0.781l-9.78,8.107c-0.4,0.332-0.743,0.947-0.878,1.52,0,0,1.004-0.828,1.269-1.049l9.78-8.105c0.412-0.342,1.242-0.642,1.777-0.642h20.78c0.611,0,1.225,0.612,1.225,0.612-0.01-0.675-0.56-1.226-1.23-1.226z" fill="#CCCCCC"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mobile.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mobile.svg Thu May 27 13:10:59 2010 +0300
@@ -1,110 +1,112 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="37.589" opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
- <stop offset="0" style="stop-color:#85EFFF"/>
- <stop offset="1" style="stop-color:#3BA1D9"/>
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
<rect fill="#9FE4FF" height="0.767" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D1D7D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D1D7D9"/>
</linearGradient>
<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
- <stop offset="0" style="stop-color:#6C7375"/>
- <stop offset="1" style="stop-color:#BDC2C4"/>
+<stop offset="0" style="stop-color:#6C7375"/>
+<stop offset="1" style="stop-color:#BDC2C4"/>
</linearGradient>
<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" opacity="0.6"/>
-<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" opacity="0.5"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" opacity="0.2"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" opacity="0.4"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" opacity="0.7"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" opacity="0.4"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" opacity="0.7"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mobile_tv.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mobile_tv.svg Thu May 27 13:10:59 2010 +0300
@@ -1,40 +1,39 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="53.1709" y2="49.6078">
- <stop offset="0" style="stop-color:#404040"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#404040"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M44.73,51.777c0,0.86-0.676,1.556-1.509,1.556H16.777c-0.832,0-1.508-0.695-1.508-1.556l0,0 c0-0.858-0.048-2.332-0.048-2.332h29.556C44.777,49.445,44.73,50.919,44.73,51.777L44.73,51.777z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="6.4082" y2="50.2251">
- <stop offset="0.1212" style="stop-color:#F2F2F2"/>
- <stop offset="0.5515" style="stop-color:#ADB2B5"/>
- <stop offset="1" style="stop-color:#E6E9E8"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.1212" style="stop-color:#F2F2F2"/>
+<stop offset="0.5515" style="stop-color:#ADB2B5"/>
+<stop offset="1" style="stop-color:#E6E9E8"/>
</linearGradient>
<path d="M58,48.666c0,0.86-0.697,1.556-1.557,1.556H3.557C2.695,50.222,2,49.526,2,48.666V8.223 c0-0.858,0.695-1.556,1.557-1.556h52.887C57.303,6.667,58,7.364,58,8.223V48.666z" fill="url(#SVGID_2_)"/>
-<path d="M56.443,49.445H3.557C2.695,49.445,2,48.748,2,47.889v0.777c0,0.86,0.695,1.556,1.557,1.556 h52.887c0.859,0,1.557-0.695,1.557-1.556v-0.777C58,48.748,57.303,49.445,56.443,49.445z" fill="#231F20" opacity="0.3"/>
+<path d="M56.443,49.445H3.557C2.695,49.445,2,48.748,2,47.889v0.777c0,0.86,0.695,1.556,1.557,1.556 h52.887c0.859,0,1.557-0.695,1.557-1.556v-0.777C58,48.748,57.303,49.445,56.443,49.445z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="41.4072" y2="10.4689">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="31.888" width="49.777" x="5.111" y="9.778"/>
<rect fill="#FFFFFF" height="0.778" width="49.777" x="5.111" y="40.888"/>
-<polygon fill="#FFFFFF" opacity="0.2" points="5.901,26.112 54.11,19.753 54.11,10.555 5.889,10.555 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="5.901,26.112 54.11,19.753 54.11,10.555 5.889,10.555 " stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="48.5547" y2="42.6262">
- <stop offset="0" style="stop-color:#57CDEA"/>
- <stop offset="1" style="stop-color:#196BDE"/>
+<stop offset="0" style="stop-color:#57CDEA"/>
+<stop offset="1" style="stop-color:#196BDE"/>
</linearGradient>
<path d="M30,43.611c1.074,0,1.943,0.871,1.943,1.943c0,1.071-0.869,1.945-1.943,1.945 c-1.071,0-1.944-0.874-1.944-1.945C28.056,44.482,28.929,43.611,30,43.611 M30,42.443c-1.719,0-3.111,1.395-3.111,3.111 c0,1.719,1.393,3.111,3.111,3.111s3.111-1.393,3.111-3.111C33.111,43.838,31.719,42.443,30,42.443L30,42.443z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.5732" y2="48.7959">
- <stop offset="0" style="stop-color:#E6E9E8"/>
- <stop offset="1" style="stop-color:#ADB2B5"/>
+<stop offset="0" style="stop-color:#E6E9E8"/>
+<stop offset="1" style="stop-color:#ADB2B5"/>
</linearGradient>
<path d="M55.666,7.443H4.333c-0.858,0-1.556,0.697-1.556,1.556V47.11c0,0.86,0.697,1.556,1.556,1.556h22.736 c-0.827-0.779-1.347-1.884-1.347-3.111c0-1.226,0.52-2.33,1.347-3.111H4.333V8.999h51.333v33.444H32.93 c0.828,0.781,1.348,1.886,1.348,3.111c0,1.228-0.52,2.332-1.348,3.111h22.736c0.859,0,1.556-0.695,1.556-1.556V8.999 C57.222,8.141,56.525,7.443,55.666,7.443z" fill="url(#SVGID_5_)"/>
-<path d="M43.223,52.554H16.779c-0.701,0-1.287-0.496-1.456-1.166c-0.03,0.126-0.054,0.256-0.054,0.39 c0,0.86,0.676,1.556,1.51,1.556h26.443c0.832,0,1.508-0.695,1.508-1.556c0-0.134-0.021-0.264-0.054-0.39 C44.51,52.058,43.926,52.554,43.223,52.554z" fill="#FFFFFF" opacity="0.35"/>
+<path d="M43.223,52.554H16.779c-0.701,0-1.287-0.496-1.456-1.166c-0.03,0.126-0.054,0.256-0.054,0.39 c0,0.86,0.676,1.556,1.51,1.556h26.443c0.832,0,1.508-0.695,1.508-1.556c0-0.134-0.021-0.264-0.054-0.39 C44.51,52.058,43.926,52.554,43.223,52.554z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mono.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mono.svg Thu May 27 13:10:59 2010 +0300
@@ -1,54 +1,52 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="1.5215" y2="58.4791">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D9D9D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
<circle cx="30" cy="30.001" fill="url(#SVGID_1_)" r="28"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="2.4795" y2="56.5974">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="0.7818" style="stop-color:#CCCCCC"/>
- <stop offset="1" style="stop-color:#D1D1D1"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
<circle cx="29.999" cy="30.001" fill="url(#SVGID_2_)" r="26.804"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.999" x2="29.999" y1="51.8564" y2="7.5413">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#A8A8A8"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A8A8A8"/>
</linearGradient>
<circle cx="29.999" cy="30.001" fill="url(#SVGID_3_)" r="22.257"/>
<radialGradient cx="29.998" cy="30.001" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.0991">
- <stop offset="0" style="stop-color:#636363"/>
- <stop offset="0.3333" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.3333" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</radialGradient>
<circle cx="29.998" cy="30.001" fill="url(#SVGID_4_)" r="21.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.9971" x2="29.9971" y1="44.8384" y2="13.4077">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
<circle cx="29.998" cy="30.001" fill="url(#SVGID_5_)" r="16.432"/>
<radialGradient cx="29.918" cy="30.7183" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="15.7949">
- <stop offset="0" style="stop-color:#B4B4B4"/>
- <stop offset="1" style="stop-color:#696969"/>
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#696969"/>
</radialGradient>
-<path d="M43.227,39.72l-5.428-4.813H23.188l-6.221,5.079c3.004,3.913,7.715,6.448,13.03,6.448 C35.433,46.434,40.237,43.785,43.227,39.72z" fill="url(#SVGID_6_)" opacity="0.5"/>
-<circle cx="29.999" cy="32.633" opacity="0.15" r="10.649"/>
+<path d="M43.227,39.72l-5.428-4.813H23.188l-6.221,5.079c3.004,3.913,7.715,6.448,13.03,6.448 C35.433,46.434,40.237,43.785,43.227,39.72z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<circle cx="29.999" cy="32.633" fill-opacity="0.15" r="10.649" stroke-opacity="0.15"/>
<radialGradient cx="30.0391" cy="27.208" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="11.9907">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
<circle cx="29.999" cy="30.001" fill="url(#SVGID_7_)" r="10.649"/>
-<circle cx="30" cy="30.001" fill="none" opacity="0.15" r="9.254" stroke="#EBEBEB"/>
+<circle cx="30" cy="30.001" fill="none" fill-opacity="0.15" r="9.254" stroke="#EBEBEB" stroke-opacity="0.15"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="29.999" x2="29.999" y1="19.5313" y2="40.4805">
- <stop offset="0" style="stop-color:#DEDEDE"/>
- <stop offset="1" style="stop-color:#A8A8A8"/>
+<stop offset="0" style="stop-color:#DEDEDE"/>
+<stop offset="1" style="stop-color:#A8A8A8"/>
</linearGradient>
-<path d="M29.997,19.352c-5.88,0-10.647,4.768-10.647,10.649 c0,5.88,4.768,10.648,10.647,10.648c5.882,0,10.651-4.769,10.651-10.648C40.648,24.119,35.879,19.352,29.997,19.352z M29.997,38.377 c-4.626,0-8.374-3.75-8.374-8.376c0-4.628,3.748-8.378,8.374-8.378c4.627,0,8.378,3.75,8.378,8.378 C38.375,34.627,34.624,38.377,29.997,38.377z" fill="url(#SVGID_8_)" opacity="0.15"/>
+<path d="M29.997,19.352c-5.88,0-10.647,4.768-10.647,10.649 c0,5.88,4.768,10.648,10.647,10.648c5.882,0,10.651-4.769,10.651-10.648C40.648,24.119,35.879,19.352,29.997,19.352z M29.997,38.377 c-4.626,0-8.374-3.75-8.374-8.376c0-4.628,3.748-8.378,8.374-8.378c4.627,0,8.378,3.75,8.378,8.378 C38.375,34.627,34.624,38.377,29.997,38.377z" fill="url(#SVGID_8_)" fill-opacity="0.15" stroke-opacity="0.15"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mouse.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mouse.svg Thu May 27 13:10:59 2010 +0300
@@ -1,96 +1,98 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="30.1362" cy="20.3848" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="35.3912">
- <stop offset="0.303" style="stop-color:#FFFFFF"/>
- <stop offset="0.6667" style="stop-color:#BDC2C5"/>
- <stop offset="1" style="stop-color:#EAEBEC"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.303" style="stop-color:#FFFFFF"/>
+<stop offset="0.6667" style="stop-color:#BDC2C5"/>
+<stop offset="1" style="stop-color:#EAEBEC"/>
</radialGradient>
<path d="M30,57.201c-10.93,0-20.163-8.713-20.163-19.025V13.439c0-9.115,6.905-9.869,14.599-9.869 c0.865,0,1.755,0.008,2.665,0.018c0.946,0.01,1.915,0.02,2.899,0.02s1.952-0.01,2.898-0.02c0.91-0.01,1.802-0.018,2.666-0.018 c7.693,0,14.598,0.754,14.598,9.869v24.736C50.162,48.488,40.93,57.201,30,57.201L30,57.201z" fill="url(#SVGID_1_)"/>
<radialGradient cx="17.4287" cy="-2.4482" gradientTransform="matrix(0.9655 0 0 0.9655 13.3019 23.1178)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="35.1983">
- <stop offset="0.303" style="stop-color:#CBD2D5"/>
- <stop offset="0.703" style="stop-color:#8C9599"/>
- <stop offset="0.8909" style="stop-color:#B3BCBF"/>
- <stop offset="1" style="stop-color:#DBE2E6"/>
+<stop offset="0" style="stop-color:#CBD2D5"/>
+<stop offset="0.303" style="stop-color:#CBD2D5"/>
+<stop offset="0.703" style="stop-color:#8C9599"/>
+<stop offset="0.8909" style="stop-color:#B3BCBF"/>
+<stop offset="1" style="stop-color:#DBE2E6"/>
</radialGradient>
<path d="M49.17,38.176c0,9.961-8.847,18.033-19.17,18.033c-10.32,0-19.17-8.072-19.17-18.033V13.439 C10.83,3.48,19.481,4.6,30,4.6s19.17-1.119,19.17,8.84V38.176z" fill="url(#SVGID_2_)"/>
<radialGradient cx="17.4282" cy="-12.0474" gradientTransform="matrix(0.9655 0 0 0.9655 13.3019 23.1178)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="26.0563">
- <stop offset="0.3273" style="stop-color:#CBD2D5"/>
- <stop offset="0.8" style="stop-color:#949DA1"/>
- <stop offset="0.9333" style="stop-color:#B9C1C4"/>
- <stop offset="1" style="stop-color:#CBD2D5"/>
+<stop offset="0" style="stop-color:#CBD2D5"/>
+<stop offset="0.3273" style="stop-color:#CBD2D5"/>
+<stop offset="0.8" style="stop-color:#949DA1"/>
+<stop offset="0.9333" style="stop-color:#B9C1C4"/>
+<stop offset="1" style="stop-color:#CBD2D5"/>
</radialGradient>
<path d="M49.17,22.729v-9.289c0-9.918-8.58-8.85-19.039-8.84v18.129H49.17z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.9238" x2="34.694" y1="7.1699" y2="18.7923">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#B9BFC1"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#B9BFC1"/>
</linearGradient>
-<path d="M30.719,22.139V5.186c0.744-0.002,1.477-0.01,2.197-0.018 c0.9-0.008,1.781-0.018,2.64-0.018c7.626,0,13.026,0.594,13.026,8.289v8.699H30.719z" fill="url(#SVGID_4_)" opacity="0.15"/>
+<path d="M30.719,22.139V5.186c0.744-0.002,1.477-0.01,2.197-0.018 c0.9-0.008,1.781-0.018,2.64-0.018c7.626,0,13.026,0.594,13.026,8.289v8.699H30.719z" fill="url(#SVGID_4_)" fill-opacity="0.15" stroke-opacity="0.15"/>
<radialGradient cx="17.4297" cy="-12.0474" gradientTransform="matrix(0.9655 0 0 0.9655 13.3019 23.1178)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="26.0574">
- <stop offset="0.3273" style="stop-color:#CBD2D5"/>
- <stop offset="0.8" style="stop-color:#949DA1"/>
- <stop offset="0.9333" style="stop-color:#B9C1C4"/>
- <stop offset="1" style="stop-color:#CBD2D5"/>
+<stop offset="0" style="stop-color:#CBD2D5"/>
+<stop offset="0.3273" style="stop-color:#CBD2D5"/>
+<stop offset="0.8" style="stop-color:#949DA1"/>
+<stop offset="0.9333" style="stop-color:#B9C1C4"/>
+<stop offset="1" style="stop-color:#CBD2D5"/>
</radialGradient>
<path d="M10.92,22.729v-9.289c0-9.918,8.579-8.85,19.039-8.84v18.129H10.92z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.0469" x2="28.9546" y1="7.2695" y2="22.1773">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#B9BFC1"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#B9BFC1"/>
</linearGradient>
-<path d="M11.509,22.139v-8.699c0-7.695,5.398-8.289,13.026-8.289 c0.857,0,1.736,0.01,2.639,0.018c0.719,0.008,1.453,0.016,2.196,0.018v16.953H11.509z" fill="url(#SVGID_6_)" opacity="0.15"/>
+<path d="M11.509,22.139v-8.699c0-7.695,5.398-8.289,13.026-8.289 c0.857,0,1.736,0.01,2.639,0.018c0.719,0.008,1.453,0.016,2.196,0.018v16.953H11.509z" fill="url(#SVGID_6_)" fill-opacity="0.15" stroke-opacity="0.15"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="29.5425" x2="29.5425" y1="4.5718" y2="22.785">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D6D9DB"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D6D9DB"/>
</linearGradient>
<path d="M30.131,4.594c-0.389,0.002-0.781,0.004-1.177,0.004v18.1h1.177V4.594z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="10.9199" x2="49.1699" y1="22.1396" y2="22.1396">
- <stop offset="0" style="stop-color:#737475"/>
- <stop offset="0.5" style="stop-color:#4D4D4D"/>
- <stop offset="1" style="stop-color:#737475"/>
+<stop offset="0" style="stop-color:#737475"/>
+<stop offset="0.5" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#737475"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="1.178" width="38.25" x="10.92" y="21.551"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.7192" x2="30.7192" y1="4.5718" y2="22.8164">
- <stop offset="0" style="stop-color:#737475"/>
- <stop offset="0.9697" style="stop-color:#4E4E4E"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#737475"/>
+<stop offset="0.9697" style="stop-color:#4E4E4E"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<path d="M31.309,4.594c-0.39,0.002-0.782,0.004-1.178,0.006v18.129h1.178V4.594z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.9199" x2="49.1699" y1="23.3164" y2="23.3164">
- <stop offset="0" style="stop-color:#C4C9CB"/>
- <stop offset="0.5" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#C4C9CB"/>
+<stop offset="0" style="stop-color:#C4C9CB"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C4C9CB"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="1.176" width="38.25" x="10.92" y="22.729"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="30.0015" x2="30.0015" y1="19.0859" y2="4.4878">
- <stop offset="0" style="stop-color:#A2ABAE"/>
- <stop offset="1" style="stop-color:#454244"/>
+<stop offset="0" style="stop-color:#A2ABAE"/>
+<stop offset="1" style="stop-color:#454244"/>
</linearGradient>
<path d="M34.609,14.773V4.564c-1.479,0.01-7.738,0.01-9.217,0v10.209c0,2.545,2.063,4.607,4.607,4.607 S34.609,17.318,34.609,14.773z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30.0005" x2="30.0005" y1="4.4292" y2="18.0821">
- <stop offset="0" style="stop-color:#767578"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#767578"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<path d="M30,18.205c-2.216,0-4.019-1.805-4.019-4.021V4.57c0.36,0.002,7.677,0.002,8.039,0v9.613 C34.021,16.4,32.218,18.205,30,18.205L30,18.205z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="29.9995" x2="29.9995" y1="4.3652" y2="16.8027">
- <stop offset="0" style="stop-color:#5B5655"/>
- <stop offset="0.3212" style="stop-color:#B5B5B5"/>
- <stop offset="0.6303" style="stop-color:#5A5859"/>
- <stop offset="0.8242" style="stop-color:#898889"/>
- <stop offset="1" style="stop-color:#343232"/>
+<stop offset="0" style="stop-color:#5B5655"/>
+<stop offset="0.3212" style="stop-color:#B5B5B5"/>
+<stop offset="0.6303" style="stop-color:#5A5859"/>
+<stop offset="0.8242" style="stop-color:#898889"/>
+<stop offset="1" style="stop-color:#343232"/>
</linearGradient>
<path d="M30,16.853c-1.784,0-3.235-1.451-3.235-3.235V7.715c0-1.783,1.451-3.237,3.235-3.237 s3.235,1.454,3.235,3.237v5.902C33.235,15.401,31.784,16.853,30,16.853L30,16.853z" fill="url(#SVGID_13_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="29.9995" x2="29.9995" y1="4.9658" y2="16.2196">
- <stop offset="0" style="stop-color:#3D3A39"/>
- <stop offset="0.3212" style="stop-color:#939393"/>
- <stop offset="0.4788" style="stop-color:#898889"/>
- <stop offset="0.6848" style="stop-color:#2C2A2A"/>
- <stop offset="0.8788" style="stop-color:#5A5859"/>
- <stop offset="1" style="stop-color:#343232"/>
+<stop offset="0" style="stop-color:#3D3A39"/>
+<stop offset="0.3212" style="stop-color:#939393"/>
+<stop offset="0.4788" style="stop-color:#898889"/>
+<stop offset="0.6848" style="stop-color:#2C2A2A"/>
+<stop offset="0.8788" style="stop-color:#5A5859"/>
+<stop offset="1" style="stop-color:#343232"/>
</linearGradient>
<path d="M30,16.265c-1.46,0-2.648-1.188-2.648-2.647V7.715c0-1.46,1.188-2.647,2.648-2.647 s2.648,1.188,2.648,2.647v5.902C32.648,15.076,31.46,16.265,30,16.265L30,16.265z" fill="url(#SVGID_14_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music.svg Thu May 27 13:10:59 2010 +0300
@@ -1,52 +1,50 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.9487" x2="25.9487" y1="6.6265" y2="53.8732">
- <stop offset="0" style="stop-color:#ADF54E"/>
- <stop offset="1" style="stop-color:#007338"/>
+<stop offset="0" style="stop-color:#ADF54E"/>
+<stop offset="1" style="stop-color:#007338"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="47.899" width="47.898" x="2" y="6.05"/>
-<path d="M49.898,11.426c-3.863-2.852-8.631-4.563-13.814-4.563c-6.181,0.031-11.98,2.467-16.328,6.858 c-4.348,4.395-6.725,10.215-6.694,16.395c0.067,12.696,10.445,23.02,23.133,23.02h0.123c4.961-0.023,9.662-1.621,13.58-4.518V11.426 z M36.197,32.863c-1.764,0-3.318-1.416-3.592-3.249c0.191-1.826,1.738-3.249,3.576-3.256l0.016-1.342v1.342 c1.857,0,3.381,1.372,3.598,3.217C39.543,31.42,37.994,32.855,36.197,32.863z" fill="#231F20" opacity="0.2"/>
+<path d="M49.898,11.426c-3.863-2.852-8.631-4.563-13.814-4.563c-6.181,0.031-11.98,2.467-16.328,6.858 c-4.348,4.395-6.725,10.215-6.694,16.395c0.067,12.696,10.445,23.02,23.133,23.02h0.123c4.961-0.023,9.662-1.621,13.58-4.518V11.426 z M36.197,32.863c-1.764,0-3.318-1.416-3.592-3.249c0.191-1.826,1.738-3.249,3.576-3.256l0.016-1.342v1.342 c1.857,0,3.381,1.372,3.598,3.217C39.543,31.42,37.994,32.855,36.197,32.863z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(1 -0.0051 -0.0051 -1 -262.5146 -282.5771)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.1133" x2="297.1133" y1="-292.6729" y2="-336.2676">
- <stop offset="0" style="stop-color:#D1D7D9"/>
- <stop offset="0.6606" style="stop-color:#8D9799"/>
- <stop offset="1" style="stop-color:#B9C0C2"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.6606" style="stop-color:#8D9799"/>
+<stop offset="1" style="stop-color:#B9C0C2"/>
</linearGradient>
<path d="M36.09,8.372c-12.037,0.062-21.749,9.867-21.687,21.907c0.062,12.04,9.87,21.749,21.908,21.688 C48.35,51.904,58.061,42.096,58,30.056C57.938,18.019,48.129,8.311,36.09,8.372z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(-1 0.0051 0.0051 1 516.8711 1754.7261)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="450.7412" x2="492.9824" y1="-1716.1777" y2="-1716.1777">
- <stop offset="0" style="stop-color:#A0A7A9"/>
- <stop offset="0.5" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#A0A7A9"/>
+<stop offset="0" style="stop-color:#A0A7A9"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A0A7A9"/>
</linearGradient>
-<path d="M36.307,50.838C24.793,50.895,15.39,41.73,15.089,30.275 c-0.003,0.15-0.009,0.301-0.007,0.455c0.059,11.663,9.562,21.073,21.228,21.012c11.666-0.059,21.076-9.563,21.014-21.229 c0-0.152-0.008-0.303-0.014-0.451C57.129,41.516,47.818,50.779,36.307,50.838z" enable-background="new " fill="url(#SVGID_3_)" opacity="0.3"/>
+<path d="M36.307,50.838C24.793,50.895,15.39,41.73,15.089,30.275 c-0.003,0.15-0.009,0.301-0.007,0.455c0.059,11.663,9.562,21.073,21.228,21.012c11.666-0.059,21.076-9.563,21.014-21.229 c0-0.152-0.008-0.303-0.014-0.451C57.129,41.516,47.818,50.779,36.307,50.838z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="36.2002" x2="36.2002" y1="9.3618" y2="51.1027">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M36.092,8.991C24.396,9.052,14.966,18.58,15.026,30.275c0.061,11.696,9.588,21.125,21.283,21.067 c11.697-0.059,21.125-9.586,21.066-21.282C57.316,18.363,47.785,8.934,36.092,8.991z M36.246,39.152 c-4.961,0.023-9.002-3.975-9.029-8.938l0,0c-0.026-4.964,3.977-9.003,8.938-9.031c4.963-0.024,9.004,3.977,9.029,8.939h0.002 C45.211,35.084,41.209,39.125,36.246,39.152z" fill="url(#SVGID_4_)"/>
-<path d="M16.076,34.326c-2.194-10.6,4.263-21.14,14.704-23.995c1.703-0.464,3.46-0.704,5.222-0.715 c8.754-0.044,16.834,5.668,19.646,13.892l0.215,0.626l-10.566,2.889l-0.209-0.512c-1.465-3.585-5.061-5.98-8.945-5.959 c-0.834,0.004-1.666,0.117-2.477,0.338c-4.679,1.28-7.677,5.86-6.972,10.653l0.081,0.545l-10.567,2.889L16.076,34.326z" fill="#FFFFFF" opacity="0.2"/>
-<polygon fill="#231F20" opacity="0.2" points="46.303,47.168 47.645,48.328 47.645,14.173 49.898,12.222 49.898,9.72 46.303,12.833 "/>
-<polygon fill="#231F20" opacity="0.2" points="45.604,47.168 46.943,48.328 46.943,13.474 49.898,10.821 49.898,9.02 45.604,12.833 "/>
+<path d="M16.076,34.326c-2.194-10.6,4.263-21.14,14.704-23.995c1.703-0.464,3.46-0.704,5.222-0.715 c8.754-0.044,16.834,5.668,19.646,13.892l0.215,0.626l-10.566,2.889l-0.209-0.512c-1.465-3.585-5.061-5.98-8.945-5.959 c-0.834,0.004-1.666,0.117-2.477,0.338c-4.679,1.28-7.677,5.86-6.972,10.653l0.081,0.545l-10.567,2.889L16.076,34.326z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<polygon fill="#231F20" fill-opacity="0.2" points="46.303,47.168 47.645,48.328 47.645,14.173 49.898,12.222 49.898,9.72 46.303,12.833 " stroke-opacity="0.2"/>
+<polygon fill="#231F20" fill-opacity="0.2" points="45.604,47.168 46.943,48.328 46.943,13.474 49.898,10.821 49.898,9.02 45.604,12.833 " stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="25.9487" x2="25.9487" y1="5.6982" y2="53.7662">
- <stop offset="0" style="stop-color:#D6FF7A"/>
- <stop offset="1" style="stop-color:#235C08"/>
+<stop offset="0" style="stop-color:#D6FF7A"/>
+<stop offset="1" style="stop-color:#235C08"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="46.303,47.168 46.303,12.833 49.898,9.72 49.898,6.05 2,6.05 2,53.949 49.898,53.949 49.898,50.281 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="25.9497" x2="25.9497" y1="6.4077" y2="53.0723">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.75" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#56A215"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.75" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#56A215"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="2.7,53.25 2.7,6.749 49.199,6.749 49.199,9.399 45.604,12.515 45.604,47.486 49.199,50.6 49.199,53.25 "/>
-<path d="M38.686,18.954l-2.051-4.99l-11.784,5.244l0.018,15.921c-1.804-1.18-4.464-1.564-7.167-0.836 c-4.263,1.15-7.018,4.631-6.156,7.768c0.866,3.143,5.021,4.754,9.283,3.605c3.603-0.973,6.097-3.545,6.083-6.293 c-0.012-2.748,0.022-10.209,0-15.607L38.686,18.954z" opacity="0.2"/>
+<path d="M38.686,18.954l-2.051-4.99l-11.784,5.244l0.018,15.921c-1.804-1.18-4.464-1.564-7.167-0.836 c-4.263,1.15-7.018,4.631-6.156,7.768c0.866,3.143,5.021,4.754,9.283,3.605c3.603-0.973,6.097-3.545,6.083-6.293 c-0.012-2.748,0.022-10.209,0-15.607L38.686,18.954z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2165)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-2168.2642" x2="-2168.2642" y1="2145.8682" y2="2119.928">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D2D5D6"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D5D6"/>
</linearGradient>
<path d="M39.385,19.654l-2.051-4.991l-11.783,5.245l0.017,15.92c-1.804-1.18-4.464-1.564-7.167-0.834 c-4.263,1.15-7.018,4.629-6.155,7.766c0.866,3.143,5.021,4.754,9.283,3.605c3.602-0.973,6.097-3.543,6.083-6.293 c-0.012-2.748,0.022-10.208,0-15.606L39.385,19.654z" fill="url(#SVGID_7_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_album.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_album.svg Thu May 27 13:10:59 2010 +0300
@@ -1,72 +1,68 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 -0.0051 0.0051 1 335.906 -1118.9601)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-311.7573" x2="-311.7573" y1="1119.6411" y2="1175.6382">
- <stop offset="0" style="stop-color:#D1D7D9"/>
- <stop offset="0.6909" style="stop-color:#808A8C"/>
- <stop offset="1" style="stop-color:#A4ACAE"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.6909" style="stop-color:#808A8C"/>
+<stop offset="1" style="stop-color:#A4ACAE"/>
</linearGradient>
<path d="M29.857,2.002C14.394,2.082,1.922,14.679,2.001,30.143S14.68,58.079,30.145,57.999 C45.605,57.921,58.079,45.321,58,29.858C57.92,14.396,45.322,1.924,29.857,2.002z M30.035,37.199 c-3.977,0.021-7.215-3.187-7.235-7.162c-0.018-3.977,3.185-7.218,7.163-7.237c3.977-0.021,7.217,3.188,7.236,7.163 C37.221,33.938,34.014,37.179,30.035,37.199z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(1 -0.0051 0.0051 1 335.906 -1118.9601)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-311.7583" x2="-311.7583" y1="1135.5718" y2="1159.377">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CFCFCF"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
<path d="M29.939,18.001C23.312,18.034,17.967,23.435,18,30.063c0.035,6.625,5.433,11.972,12.061,11.936 c6.627-0.032,11.972-5.432,11.938-12.061C41.966,23.31,36.566,17.966,29.939,18.001z M30.032,36.399 c-3.534,0.018-6.413-2.833-6.433-6.367c-0.016-3.533,2.833-6.414,6.367-6.432c3.533-0.017,6.415,2.833,6.434,6.367 C36.418,33.503,33.566,36.381,30.032,36.399z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(-1 0.0051 -0.0051 -1 -1180.5496 3117.9622)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1253.3975" x2="-1199.1357" y1="3067.8501" y2="3067.8501">
- <stop offset="0" style="stop-color:#A0A7A9"/>
- <stop offset="0.5" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#A0A7A9"/>
+<stop offset="0" style="stop-color:#A0A7A9"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A0A7A9"/>
</linearGradient>
-<path d="M30.135,56.55C15.348,56.626,3.267,44.851,2.884,30.139 c-0.003,0.191-0.013,0.386-0.011,0.583c0.076,14.98,12.283,27.067,27.267,26.994c14.987-0.079,27.074-12.285,26.995-27.27 c-0.001-0.195-0.013-0.389-0.018-0.582C56.883,44.577,44.925,56.476,30.135,56.55z" enable-background="new " fill="url(#SVGID_3_)" opacity="0.3"/>
+<path d="M30.135,56.55C15.348,56.626,3.267,44.851,2.884,30.139 c-0.003,0.191-0.013,0.386-0.011,0.583c0.076,14.98,12.283,27.067,27.267,26.994c14.987-0.079,27.074-12.285,26.995-27.27 c-0.001-0.195-0.013-0.389-0.018-0.582C56.883,44.577,44.925,56.476,30.135,56.55z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1 -0.0051 0.0051 1 335.906 -1118.9601)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-318.1577" x2="-305.3569" y1="1150.27" y2="1150.27">
- <stop offset="0" style="stop-color:#848C8E"/>
- <stop offset="0.5" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#848C8E"/>
+<stop offset="0" style="stop-color:#848C8E"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#848C8E"/>
</linearGradient>
<path d="M30.032,36.399c3.534-0.019,6.386-2.896,6.368-6.432c-0.002-0.204-0.014-0.403-0.035-0.6 c-0.285,3.254-3.006,6.014-6.338,6.03c-3.333,0.019-6.082-2.715-6.399-5.967c-0.017,0.199-0.029,0.399-0.028,0.601 C23.619,33.566,26.498,36.417,30.032,36.399z" fill="url(#SVGID_4_)"/>
<linearGradient gradientTransform="matrix(1 0 0 1 347 -1116.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-317.0005" x2="-317.0005" y1="1119.7017" y2="1173.7001">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M29.861,2.802C14.838,2.878,2.723,15.118,2.8,30.139c0.079,15.021,12.318,27.134,27.34,27.06 c15.022-0.076,27.136-12.314,27.06-27.335C57.122,14.838,44.881,2.725,29.861,2.802z M30.059,41.539 c-6.373,0.032-11.564-5.106-11.596-11.479h-0.004c-0.033-6.375,5.109-11.565,11.481-11.598c6.375-0.033,11.565,5.105,11.597,11.479 h0.002C41.572,36.315,36.43,41.507,30.059,41.539z" fill="url(#SVGID_5_)"/>
-<path d="M4.15,35.341C1.33,21.725,9.627,8.188,23.037,4.521 c2.186-0.598,4.444-0.907,6.708-0.918c11.248-0.056,21.622,7.281,25.237,17.844l0.275,0.806l-13.574,3.709l-0.267-0.655 c-1.885-4.605-6.5-7.685-11.491-7.657c-1.072,0.005-2.142,0.151-3.18,0.435c-6.014,1.646-9.861,7.526-8.959,13.682l0.103,0.702 L4.32,36.177L4.15,35.341z" enable-background="new " fill="#FFFFFF" opacity="0.2"/>
+<path d="M4.15,35.341C1.33,21.725,9.627,8.188,23.037,4.521 c2.186-0.598,4.444-0.907,6.708-0.918c11.248-0.056,21.622,7.281,25.237,17.844l0.275,0.806l-13.574,3.709l-0.267-0.655 c-1.885-4.605-6.5-7.685-11.491-7.657c-1.072,0.005-2.142,0.151-3.18,0.435c-6.014,1.646-9.861,7.526-8.959,13.682l0.103,0.702 L4.32,36.177L4.15,35.341z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="24.728,0 23.608,0.487 0,0.487 0,30.487 30,30.487 30,0.487 24.928,0.487 "/>
-<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" opacity="0.35"/>
+<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179.9351" x2="-2179.9351" y1="2902.811" y2="2880.1646">
- <stop offset="0" style="stop-color:#8CFF24"/>
- <stop offset="1" style="stop-color:#15570B"/>
+<stop offset="0" style="stop-color:#8CFF24"/>
+<stop offset="1" style="stop-color:#15570B"/>
</linearGradient>
<path d="M25.98,5.682l-1.79-4.357L13.902,5.902l0.016,13.899c-1.574-1.029-3.896-1.366-6.257-0.729 c-3.722,1.003-6.127,4.041-5.374,6.78c0.756,2.742,4.383,4.15,8.104,3.146c3.146-0.849,5.324-3.094,5.311-5.493 c-0.01-2.399,0.02-8.913,0-13.625L25.98,5.682z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1201.8184" x2="-1201.8184" y1="3393.1226" y2="3404.4397">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="13.918,17.409 13.907,5.902 13.902,5.902 13.916,17.408 "/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1187.957" x2="-1187.957" y1="3393.1177" y2="3404.4392">
- <stop offset="0" style="stop-color:#9EFF47"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#9EFF47"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<path d="M15.701,9.169c0.005,0.759,0.006-0.117,0.008,0.711L25.98,5.682l-0.252-0.646L15.701,9.169z" fill="url(#SVGID_3__)"/>
<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188.0039" x2="-1188.0039" y1="3402.1909" y2="3430.4734">
- <stop offset="0" style="stop-color:#B3FF6E"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#B3FF6E"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<polygon fill="url(#SVGID_4__)" points="14.072,20.2 14.072,6.3 24.389,1.807 24.19,1.324 13.674,5.902 13.674,19.803 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="-2185.0737" x2="-2185.0737" y1="2887.9233" y2="2879.6807">
- <stop offset="0" style="stop-color:#B2F56E"/>
- <stop offset="0.4667" style="stop-color:#40AD00"/>
- <stop offset="1" style="stop-color:#074D00"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.4667" style="stop-color:#40AD00"/>
+<stop offset="1" style="stop-color:#074D00"/>
</linearGradient>
<path d="M7.96,28.527c-2.474,0.012-4.447-1.129-4.909-2.839c-0.28-1.039,0.018-2.187,0.84-3.229 c0.9-1.141,2.291-2.007,3.923-2.436c0.688-0.184,1.385-0.277,2.075-0.281c2.474-0.013,4.445,1.129,4.91,2.84 c0.615,2.267-1.522,4.807-4.764,5.664C9.347,28.43,8.647,28.522,7.96,28.527L7.96,28.527z" fill="url(#SVGID_5__)"/>
<rect fill="none" height="30" width="30" y="0.487"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_empty.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_empty.svg Thu May 27 13:10:59 2010 +0300
@@ -1,108 +1,113 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="0" y2="62.1923">
- <stop offset="0" style="stop-color:#942D2C"/>
- <stop offset="1" style="stop-color:#3C1212"/>
+<stop offset="0" style="stop-color:#942D2C"/>
+<stop offset="1" style="stop-color:#3C1212"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="4.5098" y2="55.5135">
- <stop offset="0" style="stop-color:#A5A7AA"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#A5A7AA"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M29.999,55.926c-14.294,0-25.925-11.631-25.925-25.925 c0-14.296,11.631-25.928,25.925-25.928c14.296,0,25.927,11.632,25.927,25.928C55.926,44.295,44.295,55.926,29.999,55.926 L29.999,55.926z" fill="url(#SVGID_2_)" opacity="0.2"/>
+<path d="M29.999,55.926c-14.294,0-25.925-11.631-25.925-25.925 c0-14.296,11.631-25.928,25.925-25.928c14.296,0,25.927,11.632,25.927,25.928C55.926,44.295,44.295,55.926,29.999,55.926 L29.999,55.926z" fill="url(#SVGID_2_)" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.0005" x2="30.0005" y1="5.1992" y2="54.8236">
- <stop offset="0" style="stop-color:#707173"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#707173"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M29.999,55.225c-13.908,0-25.224-11.315-25.224-25.224 c0-13.909,11.315-25.227,25.224-25.227c13.91,0,25.227,11.317,25.227,25.227C55.226,43.909,43.909,55.225,29.999,55.225 L29.999,55.225z" fill="url(#SVGID_3_)" opacity="0.4"/>
+<path d="M29.999,55.225c-13.908,0-25.224-11.315-25.224-25.224 c0-13.909,11.315-25.227,25.224-25.227c13.91,0,25.227,11.317,25.227,25.227C55.226,43.909,43.909,55.225,29.999,55.225 L29.999,55.225z" fill="url(#SVGID_3_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30.0005" x2="30.0005" y1="4.3555" y2="54.244">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D8D8D7"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D8D8D7"/>
</linearGradient>
<circle cx="30" cy="29.3" fill="url(#SVGID_4_)" r="24.525"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.9995" x2="29.9995" y1="5.1943" y2="52.5953">
- <stop offset="0" style="stop-color:#F4F5F5"/>
- <stop offset="0.7818" style="stop-color:#CCCBCB"/>
- <stop offset="1" style="stop-color:#D0D0D1"/>
+<stop offset="0" style="stop-color:#F4F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCBCB"/>
+<stop offset="1" style="stop-color:#D0D0D1"/>
</linearGradient>
<circle cx="30" cy="29.3" fill="url(#SVGID_5_)" r="23.477"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="29.9995" x2="29.9995" y1="48.4443" y2="9.628">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#A8A7A7"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A8A7A7"/>
</linearGradient>
<circle cx="30" cy="29.3" fill="url(#SVGID_6_)" r="19.495"/>
<radialGradient cx="36.7554" cy="71.5244" gradientTransform="matrix(0.9587 0 0 0.9587 -5.2375 -39.2709)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="19.2764">
- <stop offset="0" style="stop-color:#636363"/>
- <stop offset="0.3333" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#1B1C1C"/>
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.3333" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#1B1C1C"/>
</radialGradient>
<circle cx="30" cy="29.3" fill="url(#SVGID_7_)" r="18.48"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="29.9995" x2="29.9995" y1="42.2959" y2="14.7661">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#1B1C1C"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#1B1C1C"/>
</linearGradient>
<circle cx="30" cy="29.3" fill="url(#SVGID_8_)" r="14.393"/>
<radialGradient cx="36.6816" cy="72.1777" gradientTransform="matrix(0.9587 0 0 0.9587 -5.2375 -39.2709)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="14.4318">
- <stop offset="0" style="stop-color:#B3B3B4"/>
- <stop offset="1" style="stop-color:#696969"/>
+<stop offset="0" style="stop-color:#B3B3B4"/>
+<stop offset="1" style="stop-color:#696969"/>
</radialGradient>
-<path d="M41.586,37.812l-4.756-4.216H24.035l-5.45,4.448c2.632,3.429,6.759,5.649,11.414,5.649 C34.758,43.693,38.967,41.372,41.586,37.812z" fill="url(#SVGID_9_)" opacity="0.5"/>
-<circle cx="30" cy="31.604" opacity="0.15" r="9.327"/>
+<path d="M41.586,37.812l-4.756-4.216H24.035l-5.45,4.448c2.632,3.429,6.759,5.649,11.414,5.649 C34.758,43.693,38.967,41.372,41.586,37.812z" fill="url(#SVGID_9_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<circle cx="30" cy="31.604" fill-opacity="0.15" r="9.327" stroke-opacity="0.15"/>
<radialGradient cx="36.792" cy="68.9736" gradientTransform="matrix(0.9587 0 0 0.9587 -5.2375 -39.2709)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="10.9541">
- <stop offset="0" style="stop-color:#4D4E4E"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4E4E"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
<circle cx="30" cy="29.3" fill="url(#SVGID_10_)" r="9.327"/>
-<circle cx="30" cy="29.3" fill="none" opacity="0.15" r="8.106" stroke="#EBEBEB"/>
+<circle cx="30" cy="29.3" fill="none" fill-opacity="0.15" r="8.106" stroke="#EBEBEB" stroke-opacity="0.15"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="30" x2="30" y1="20.1299" y2="38.4788">
- <stop offset="0" style="stop-color:#DEDEDD"/>
- <stop offset="1" style="stop-color:#A8A7A7"/>
+<stop offset="0" style="stop-color:#DEDEDD"/>
+<stop offset="1" style="stop-color:#A8A7A7"/>
</linearGradient>
-<path d="M29.999,19.973c-5.151,0-9.326,4.176-9.326,9.327s4.175,9.327,9.326,9.327 c5.15,0,9.328-4.176,9.328-9.327S35.149,19.973,29.999,19.973z M29.999,36.636c-4.052,0-7.335-3.284-7.335-7.336 c0-4.053,3.283-7.337,7.335-7.337s7.339,3.284,7.339,7.337C37.338,33.352,34.051,36.636,29.999,36.636z" fill="url(#SVGID_11_)" opacity="0.15"/>
-<path d="M50.342,18.256c-11.463,0-20.624,6.636-24.617,8.388c-3.667,1.609-6.428,3.301-14.676,3.301 C2.8,29.944,0,26.088,0,26.088v2.616v1.69v4.475v0.902v3.607v3.049v4.244v0.342v1.838v4.188c0,0,10.143-18.252,19.182-22.08 c7.153-3.028,10.977-2.932,18.569-0.451C45.344,32.989,60,55.234,60,55.234v-9.348v-0.644v-0.376v-4.318v-4.553v-4.68v-1.063v-0.497 v-6.088v-3.901C60,19.768,58.35,18.186,50.342,18.256z" opacity="0.2"/>
+<path d="M29.999,19.973c-5.151,0-9.326,4.176-9.326,9.327s4.175,9.327,9.326,9.327 c5.15,0,9.328-4.176,9.328-9.327S35.149,19.973,29.999,19.973z M29.999,36.636c-4.052,0-7.335-3.284-7.335-7.336 c0-4.053,3.283-7.337,7.335-7.337s7.339,3.284,7.339,7.337C37.338,33.352,34.051,36.636,29.999,36.636z" fill="url(#SVGID_11_)" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M50.342,18.256c-11.463,0-20.624,6.636-24.617,8.388c-3.667,1.609-6.428,3.301-14.676,3.301 C2.8,29.944,0,26.088,0,26.088v2.616v1.69v4.475v0.902v3.607v3.049v4.244v0.342v1.838v4.188c0,0,10.143-18.252,19.182-22.08 c7.153-3.028,10.977-2.932,18.569-0.451C45.344,32.989,60,55.234,60,55.234v-9.348v-0.644v-0.376v-4.318v-4.553v-4.68v-1.063v-0.497 v-6.088v-3.901C60,19.768,58.35,18.186,50.342,18.256z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="2.6997" x2="56.2554" y1="35.752" y2="35.752">
- <stop offset="0.2" style="stop-color:#C82128"/>
- <stop offset="1" style="stop-color:#801517"/>
+<stop offset="0" style="stop-color:#C82128"/>
+<stop offset="0.2" style="stop-color:#C82128"/>
+<stop offset="1" style="stop-color:#801517"/>
</linearGradient>
<path d="M0,27.707v20.148c0,0,11.618-14.605,15.436-16.507s9.159-3.792,9.159-3.792s6.39-1.127,11.126-0.15 C40.457,28.384,60,43.871,60,43.871V28.76c0,0-7.363-5.111-13.228-5.111S30.27,25.04,27.076,25.903 c-3.194,0.862-2.255,0.285-10.149,3.383S0,27.707,0,27.707z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="4.0327" x2="64.4873" y1="24.0771" y2="24.0771">
- <stop offset="0.0848" style="stop-color:#EF4E59"/>
- <stop offset="1" style="stop-color:#CD2027"/>
+<stop offset="0" style="stop-color:#EF4E59"/>
+<stop offset="0.0848" style="stop-color:#EF4E59"/>
+<stop offset="1" style="stop-color:#CD2027"/>
</linearGradient>
<path d="M0,25.091c0,0,2.8,3.855,11.049,3.855c8.248,0,11.009-1.69,14.676-3.3 c3.993-1.752,13.154-8.388,24.617-8.388C58.35,17.188,60,18.77,60,18.77v3.902c0,0-5.202-2.476-9.635-2.476 c-11.072,0-20.996,4.109-24.212,5.843c-3.284,1.77-12.304,4.858-16.176,4.858c-4.036,0-9.978-1.5-9.978-1.5V25.091z" fill="url(#SVGID_13_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="2.6997" x2="56.2554" y1="39.9023" y2="39.9023">
- <stop offset="0.2" style="stop-color:#C82128"/>
- <stop offset="1" style="stop-color:#801517"/>
+<stop offset="0" style="stop-color:#C82128"/>
+<stop offset="0.2" style="stop-color:#C82128"/>
+<stop offset="1" style="stop-color:#801517"/>
</linearGradient>
<path d="M0,50.711c0,0,10.143-16.921,19.182-20.748c7.153-3.029,10.977-2.933,18.569-0.451 C45.344,31.992,60,52.908,60,52.908v-8.662c0,0-8.652-9.266-13.979-12.78c-5.95-3.925-14.173-4.938-19.245-4.46 c-3.7,0.349-11.979,3.563-17.667,8.82C4.345,40.229,0,45.675,0,45.675V50.711z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="4.0327" x2="64.4873" y1="36.2725" y2="36.2725">
- <stop offset="0.0848" style="stop-color:#EF4E59"/>
- <stop offset="1" style="stop-color:#CD2027"/>
+<stop offset="0" style="stop-color:#EF4E59"/>
+<stop offset="0.0848" style="stop-color:#EF4E59"/>
+<stop offset="1" style="stop-color:#CD2027"/>
</linearGradient>
<path d="M0,46.017c0,0,10.175-12.62,19.182-16.521c6.297-2.728,10.858-3.021,18.569-1.347 C44.894,29.699,60,44.889,60,44.889v-5.338c0,0-8.594-6.087-13.979-9.514c-5.601-3.563-14.173-3.803-19.245-3.326 c-3.7,0.349-12.708,4.342-17.667,7.988C3.883,38.54,0,41.431,0,41.431V46.017z" fill="url(#SVGID_15_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="2.6997" x2="56.2554" y1="27.4854" y2="27.4854">
- <stop offset="0.2" style="stop-color:#C82128"/>
- <stop offset="0.3968" style="stop-color:#801517"/>
+<stop offset="0" style="stop-color:#C82128"/>
+<stop offset="0.2" style="stop-color:#C82128"/>
+<stop offset="0.3968" style="stop-color:#801517"/>
+<stop offset="1" style="stop-color:#801517"/>
</linearGradient>
<path d="M26.153,26.039c-3.284,1.77-12.304,4.858-16.176,4.858c-4.036,0-9.978-1.5-9.978-1.5v5.376 c0,0,2.909-0.733,8.338-1.645c4.005-0.672,14.265-5.91,18.889-7.038c4.623-1.127,17.041-1.691,23.625,0.384 C57.504,28.571,60,30.319,60,30.319v-7.647c0,0-5.202-2.476-9.635-2.476C39.293,20.196,29.369,24.306,26.153,26.039z" fill="url(#SVGID_16_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="4.0327" x2="64.4873" y1="31.3799" y2="31.3799">
- <stop offset="0.0848" style="stop-color:#EF4E59"/>
- <stop offset="1" style="stop-color:#CD2027"/>
+<stop offset="0" style="stop-color:#EF4E59"/>
+<stop offset="0.0848" style="stop-color:#EF4E59"/>
+<stop offset="1" style="stop-color:#CD2027"/>
</linearGradient>
<path d="M50.852,25.195c-6.664-1.803-19.002-0.231-23.625,0.896c-4.624,1.128-15.61,6.444-18.889,7.038 C2.922,34.109,0,33.871,0,33.871v4.512c0,0,13.228-7.357,24.221-11.104c3.269-1.113,6.47-1.525,9.133-1.525 c5.98,0,8.374,0.453,13.908,2.104C54.816,30.113,60,34.999,60,34.999v-5.742C59.371,28.858,57.523,26.999,50.852,25.195z" fill="url(#SVGID_17_)"/>
-<path d="M42.354,41.455c0,0.924-0.567,1.772-1.367,2.389c-0.78,0.615-1.807,0.984-2.71,0.984 c-0.574,0-1.108-0.184-1.478-0.492c-0.39-0.308-0.616-0.76-0.616-1.293c0-0.842,0.574-1.684,1.355-2.299 c0.779-0.637,1.765-1.047,2.586-1.047c0.719,0,1.305,0.078,1.675,0.426V24.313h0.555c0.042,0.739,0.151,1.776,1.034,2.576 c1.006,0.883,1.93,1.766,2.566,2.565c0.841,1.048,1.437,2.36,1.437,3.694c0,0.678-0.103,1.376-0.288,2.033 c0.35,0.697,0.534,1.437,0.534,2.278c0,1.437-0.416,2.622-1.011,3.606h-0.334c0.432-0.656,0.934-2.211,0.893-3.196 c-0.041-1.088-0.123-1.724-0.82-2.587c-0.801-0.984-2.861-2.016-4.011-2.815V41.455z M46.857,33.354 c-0.041-1.088-0.574-1.929-1.272-2.792c-0.8-0.984-2.081-1.82-3.23-2.478c0.042,1.478,0.993,2.991,1.876,3.792 c1.006,0.883,1.498,1.354,2.094,2.094c0.185,0.225,0.325,0.49,0.469,0.717C46.834,34.256,46.878,33.703,46.857,33.354z" opacity="0.3"/>
-<path d="M10.249,25.854c0.273-0.042,0.547-0.063,0.82-0.063c2.673-0.021,4.546,2.377,4.524,5.092 c0,2.252-1.347,3.914-3.346,4.882l0.842,4.272c0.063,0.357,0.063,0.673,0.063,0.967c0,2.146-1.348,3.536-3.578,3.768 c-1.746,0.189-3.745-1.01-3.935-2.904c-0.126-1.263,0.736-2.566,1.957-2.715c1.115-0.126,2.125,0.863,2.167,2.021 c0.063,1.62-1.536,2.146-2.146,1.999c0.063,0.716,1.305,0.989,1.895,0.926c1.957-0.23,2.883-1.43,2.946-3.135 c0-0.463-0.043-1.011-0.169-1.537l-0.716-3.366c-0.673,0.189-1.325,0.273-1.957,0.273c-3.619,0-6.565-3.073-6.859-7.05 c-0.316-4.103,2.987-7.154,5.534-9.764c-0.379-1.557-0.61-3.072-0.61-4.671c0-1.915,0.884-5.829,2.883-6.566 c0.863-0.336,2.462,3.894,2.42,6.229c-0.042,2.946-1.389,5.766-3.451,7.807L10.249,25.854z M10.06,28.357 c-1.179,0.358-2.188,1.578-2.167,2.883c0,1.115,0.736,1.831,1.662,2.273c0.104,0.041,0.147,0.126,0.147,0.209 c0,0.127-0.147,0.232-0.295,0.211c-1.6-0.547-2.735-2.104-2.715-3.871c0-1.726,1.368-3.473,2.904-4.04l-0.632-3.178 c-2.23,1.979-4.692,4.335-4.713,7.597c0,3.281,2.777,5.303,5.786,5.176c0.484-0.021,0.947-0.105,1.41-0.252L10.06,28.357z M12.122,12.744c-0.021-0.674-0.421-1.347-1.158-1.347c-1.768,0.357-2.398,3.388-2.44,4.902c0,0.884,0.147,1.789,0.357,2.652 C10.564,17.5,12.206,15.122,12.122,12.744z M12.122,35.154c1.263-0.674,2.125-2.041,2.063-3.556 c-0.147-1.937-1.579-3.346-3.452-3.325L12.122,35.154z" opacity="0.3"/>
-<path d="M25.243,17.415h0.327V27.66c-0.024,1.054-1.352,1.964-2.356,1.964c-0.303,0-0.609-0.039-0.852-0.196 c-0.387-0.255-0.471-0.665-0.458-1.113c0.036-1.077,1.315-1.927,2.356-1.963c0.303-0.013,0.606,0.019,0.982,0.261V17.415z" opacity="0.3"/>
-<path d="M33.052,16.219h0.327v10.244c-0.023,1.054-1.352,1.965-2.357,1.965c-0.302,0-0.608-0.039-0.851-0.197 c-0.388-0.254-0.471-0.664-0.458-1.112c0.036-1.078,1.314-1.928,2.357-1.964c0.302-0.012,0.605,0.02,0.981,0.262V16.219z" opacity="0.3"/>
-<path d="M40.191,13.56h0.328v10.245c-0.025,1.054-1.352,1.964-2.357,1.964c-0.303,0-0.609-0.039-0.851-0.196 c-0.388-0.255-0.471-0.665-0.458-1.113c0.035-1.078,1.314-1.928,2.355-1.964c0.303-0.012,0.607,0.02,0.982,0.262V13.56z" opacity="0.3"/>
-<path d="M46.692,9.718h0.327v10.245c-0.024,1.054-1.352,1.964-2.357,1.964c-0.303,0-0.608-0.039-0.85-0.196 c-0.389-0.254-0.471-0.665-0.459-1.112c0.036-1.078,1.314-1.928,2.356-1.964c0.303-0.013,0.606,0.02,0.982,0.262V9.718z" opacity="0.3"/>
-<path d="M52.896,9.718h0.328v10.245c-0.024,1.054-1.352,1.964-2.357,1.964c-0.303,0-0.609-0.039-0.851-0.196 c-0.388-0.254-0.471-0.665-0.458-1.112c0.036-1.078,1.314-1.928,2.356-1.964c0.303-0.013,0.606,0.02,0.981,0.262V9.718z" opacity="0.3"/>
-<path d="M57.045,16.525h0.327V26.77c-0.024,1.054-1.351,1.965-2.356,1.965c-0.303,0-0.609-0.039-0.852-0.197 c-0.387-0.254-0.471-0.664-0.458-1.112c0.036-1.078,1.315-1.928,2.356-1.964c0.303-0.012,0.607,0.02,0.982,0.262V16.525z" opacity="0.3"/>
-<path d="M52.126,52.258c1.521-1.018,2.489-1.58,3.339-3.062c0.365-0.642,0.632-1.562,0.632-2.232 c0-0.544-0.029-0.948-0.237-1.344c-0.236-0.454-0.74-0.81-1.393-0.751c-0.434,0.04-0.958,0.198-1.176,0.436 c-0.118,0.128-0.227,0.306-0.296,0.454c-0.06,0.128,0,0.325,0.237,0.336c0.089,0,0.286-0.079,0.395-0.089 c0.514-0.059,0.939,0.355,0.939,0.8c0,0.435-0.386,0.889-0.998,0.889c-0.633,0-1.166-0.435-1.186-1.057 c-0.02-0.661,0.415-1.333,1.027-1.669c0.326-0.207,1.037-0.395,1.383-0.395c0.633,0,1.195,0.107,1.787,0.602 c0.594,0.494,0.791,0.898,0.88,1.729c0.128,1.176-0.85,2.717-1.798,3.496c-0.889,0.732-2.252,1.473-3.477,2.065L52.126,52.258z M58.418,45.334c0.326,0,0.533,0.267,0.533,0.533c0,0.277-0.207,0.543-0.533,0.543c-0.346,0-0.543-0.266-0.543-0.543 C57.875,45.601,58.072,45.334,58.418,45.334z M58.418,47.497c0.326,0,0.533,0.267,0.533,0.534c0,0.275-0.207,0.543-0.533,0.543 c-0.346,0-0.543-0.268-0.543-0.543C57.875,47.764,58.072,47.497,58.418,47.497z" opacity="0.3"/>
+<path d="M42.354,41.455c0,0.924-0.567,1.772-1.367,2.389c-0.78,0.615-1.807,0.984-2.71,0.984 c-0.574,0-1.108-0.184-1.478-0.492c-0.39-0.308-0.616-0.76-0.616-1.293c0-0.842,0.574-1.684,1.355-2.299 c0.779-0.637,1.765-1.047,2.586-1.047c0.719,0,1.305,0.078,1.675,0.426V24.313h0.555c0.042,0.739,0.151,1.776,1.034,2.576 c1.006,0.883,1.93,1.766,2.566,2.565c0.841,1.048,1.437,2.36,1.437,3.694c0,0.678-0.103,1.376-0.288,2.033 c0.35,0.697,0.534,1.437,0.534,2.278c0,1.437-0.416,2.622-1.011,3.606h-0.334c0.432-0.656,0.934-2.211,0.893-3.196 c-0.041-1.088-0.123-1.724-0.82-2.587c-0.801-0.984-2.861-2.016-4.011-2.815V41.455z M46.857,33.354 c-0.041-1.088-0.574-1.929-1.272-2.792c-0.8-0.984-2.081-1.82-3.23-2.478c0.042,1.478,0.993,2.991,1.876,3.792 c1.006,0.883,1.498,1.354,2.094,2.094c0.185,0.225,0.325,0.49,0.469,0.717C46.834,34.256,46.878,33.703,46.857,33.354z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M10.249,25.854c0.273-0.042,0.547-0.063,0.82-0.063c2.673-0.021,4.546,2.377,4.524,5.092 c0,2.252-1.347,3.914-3.346,4.882l0.842,4.272c0.063,0.357,0.063,0.673,0.063,0.967c0,2.146-1.348,3.536-3.578,3.768 c-1.746,0.189-3.745-1.01-3.935-2.904c-0.126-1.263,0.736-2.566,1.957-2.715c1.115-0.126,2.125,0.863,2.167,2.021 c0.063,1.62-1.536,2.146-2.146,1.999c0.063,0.716,1.305,0.989,1.895,0.926c1.957-0.23,2.883-1.43,2.946-3.135 c0-0.463-0.043-1.011-0.169-1.537l-0.716-3.366c-0.673,0.189-1.325,0.273-1.957,0.273c-3.619,0-6.565-3.073-6.859-7.05 c-0.316-4.103,2.987-7.154,5.534-9.764c-0.379-1.557-0.61-3.072-0.61-4.671c0-1.915,0.884-5.829,2.883-6.566 c0.863-0.336,2.462,3.894,2.42,6.229c-0.042,2.946-1.389,5.766-3.451,7.807L10.249,25.854z M10.06,28.357 c-1.179,0.358-2.188,1.578-2.167,2.883c0,1.115,0.736,1.831,1.662,2.273c0.104,0.041,0.147,0.126,0.147,0.209 c0,0.127-0.147,0.232-0.295,0.211c-1.6-0.547-2.735-2.104-2.715-3.871c0-1.726,1.368-3.473,2.904-4.04l-0.632-3.178 c-2.23,1.979-4.692,4.335-4.713,7.597c0,3.281,2.777,5.303,5.786,5.176c0.484-0.021,0.947-0.105,1.41-0.252L10.06,28.357z M12.122,12.744c-0.021-0.674-0.421-1.347-1.158-1.347c-1.768,0.357-2.398,3.388-2.44,4.902c0,0.884,0.147,1.789,0.357,2.652 C10.564,17.5,12.206,15.122,12.122,12.744z M12.122,35.154c1.263-0.674,2.125-2.041,2.063-3.556 c-0.147-1.937-1.579-3.346-3.452-3.325L12.122,35.154z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M25.243,17.415h0.327V27.66c-0.024,1.054-1.352,1.964-2.356,1.964c-0.303,0-0.609-0.039-0.852-0.196 c-0.387-0.255-0.471-0.665-0.458-1.113c0.036-1.077,1.315-1.927,2.356-1.963c0.303-0.013,0.606,0.019,0.982,0.261V17.415z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M33.052,16.219h0.327v10.244c-0.023,1.054-1.352,1.965-2.357,1.965c-0.302,0-0.608-0.039-0.851-0.197 c-0.388-0.254-0.471-0.664-0.458-1.112c0.036-1.078,1.314-1.928,2.357-1.964c0.302-0.012,0.605,0.02,0.981,0.262V16.219z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M40.191,13.56h0.328v10.245c-0.025,1.054-1.352,1.964-2.357,1.964c-0.303,0-0.609-0.039-0.851-0.196 c-0.388-0.255-0.471-0.665-0.458-1.113c0.035-1.078,1.314-1.928,2.355-1.964c0.303-0.012,0.607,0.02,0.982,0.262V13.56z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M46.692,9.718h0.327v10.245c-0.024,1.054-1.352,1.964-2.357,1.964c-0.303,0-0.608-0.039-0.85-0.196 c-0.389-0.254-0.471-0.665-0.459-1.112c0.036-1.078,1.314-1.928,2.356-1.964c0.303-0.013,0.606,0.02,0.982,0.262V9.718z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M52.896,9.718h0.328v10.245c-0.024,1.054-1.352,1.964-2.357,1.964c-0.303,0-0.609-0.039-0.851-0.196 c-0.388-0.254-0.471-0.665-0.458-1.112c0.036-1.078,1.314-1.928,2.356-1.964c0.303-0.013,0.606,0.02,0.981,0.262V9.718z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M57.045,16.525h0.327V26.77c-0.024,1.054-1.351,1.965-2.356,1.965c-0.303,0-0.609-0.039-0.852-0.197 c-0.387-0.254-0.471-0.664-0.458-1.112c0.036-1.078,1.315-1.928,2.356-1.964c0.303-0.012,0.607,0.02,0.982,0.262V16.525z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M52.126,52.258c1.521-1.018,2.489-1.58,3.339-3.062c0.365-0.642,0.632-1.562,0.632-2.232 c0-0.544-0.029-0.948-0.237-1.344c-0.236-0.454-0.74-0.81-1.393-0.751c-0.434,0.04-0.958,0.198-1.176,0.436 c-0.118,0.128-0.227,0.306-0.296,0.454c-0.06,0.128,0,0.325,0.237,0.336c0.089,0,0.286-0.079,0.395-0.089 c0.514-0.059,0.939,0.355,0.939,0.8c0,0.435-0.386,0.889-0.998,0.889c-0.633,0-1.166-0.435-1.186-1.057 c-0.02-0.661,0.415-1.333,1.027-1.669c0.326-0.207,1.037-0.395,1.383-0.395c0.633,0,1.195,0.107,1.787,0.602 c0.594,0.494,0.791,0.898,0.88,1.729c0.128,1.176-0.85,2.717-1.798,3.496c-0.889,0.732-2.252,1.473-3.477,2.065L52.126,52.258z M58.418,45.334c0.326,0,0.533,0.267,0.533,0.533c0,0.277-0.207,0.543-0.533,0.543c-0.346,0-0.543-0.266-0.543-0.543 C57.875,45.601,58.072,45.334,58.418,45.334z M58.418,47.497c0.326,0,0.533,0.267,0.533,0.534c0,0.275-0.207,0.543-0.533,0.543 c-0.346,0-0.543-0.268-0.543-0.543C57.875,47.764,58.072,47.497,58.418,47.497z" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M42.021,40.791c0,0.923-0.566,1.771-1.367,2.389c-0.779,0.615-1.807,0.984-2.709,0.984 c-0.575,0-1.108-0.185-1.479-0.493c-0.39-0.308-0.615-0.759-0.615-1.293c0-0.841,0.574-1.683,1.354-2.299 c0.78-0.637,1.765-1.047,2.587-1.047c0.719,0,1.305,0.077,1.674,0.427V23.648h0.555c0.042,0.738,0.152,1.775,1.035,2.576 c1.006,0.882,1.93,1.765,2.565,2.565c0.842,1.047,1.437,2.36,1.437,3.694c0,0.678-0.102,1.375-0.287,2.031 c0.35,0.698,0.533,1.438,0.533,2.279c0,1.438-0.416,2.621-1.011,3.607h-0.333c0.432-0.657,0.934-2.211,0.893-3.197 c-0.041-1.088-0.123-1.724-0.82-2.586c-0.801-0.985-2.861-2.016-4.012-2.816V40.791z M46.525,32.689 c-0.041-1.088-0.574-1.93-1.272-2.791c-0.801-0.985-2.081-1.821-3.231-2.479c0.042,1.479,0.994,2.991,1.877,3.791 c1.006,0.883,1.498,1.355,2.094,2.094c0.184,0.227,0.324,0.491,0.469,0.717C46.502,33.591,46.546,33.039,46.525,32.689z" fill="#FFFFFF"/>
<path d="M9.916,25.189c0.274-0.042,0.548-0.063,0.821-0.063c2.673-0.021,4.546,2.378,4.524,5.093 c0,2.251-1.347,3.913-3.346,4.881l0.842,4.271c0.063,0.358,0.063,0.674,0.063,0.969c0,2.146-1.347,3.535-3.577,3.768 c-1.747,0.189-3.746-1.011-3.936-2.904c-0.126-1.264,0.736-2.567,1.957-2.715c1.115-0.127,2.126,0.863,2.168,2.02 c0.063,1.621-1.536,2.146-2.146,2c0.063,0.715,1.305,0.988,1.894,0.926c1.957-0.232,2.883-1.432,2.946-3.137 c0-0.463-0.042-1.01-0.168-1.535l-0.716-3.367c-0.673,0.189-1.326,0.273-1.957,0.273c-3.62,0-6.565-3.072-6.86-7.049 c-0.315-4.104,2.988-7.154,5.534-9.764c-0.378-1.558-0.609-3.073-0.609-4.672c0-1.915,0.884-5.829,2.883-6.565 c0.862-0.337,2.462,3.893,2.42,6.229c-0.043,2.946-1.389,5.766-3.451,7.808L9.916,25.189z M9.728,27.693 c-1.179,0.357-2.188,1.578-2.168,2.883c0,1.115,0.736,1.83,1.662,2.271c0.105,0.043,0.147,0.127,0.147,0.211 c0,0.127-0.147,0.232-0.295,0.211c-1.599-0.547-2.735-2.105-2.714-3.872c0-1.726,1.367-3.472,2.904-4.04L8.633,22.18 c-2.23,1.979-4.692,4.335-4.714,7.597c0,3.282,2.778,5.303,5.787,5.177c0.484-0.021,0.947-0.105,1.41-0.253L9.728,27.693z M11.789,12.079c-0.021-0.674-0.421-1.347-1.157-1.347c-1.768,0.357-2.398,3.388-2.44,4.903c0,0.884,0.146,1.788,0.357,2.651 C10.232,16.835,11.874,14.457,11.789,12.079z M11.789,34.49c1.263-0.674,2.126-2.042,2.063-3.557 c-0.147-1.936-1.578-3.346-3.451-3.325L11.789,34.49z" fill="#FFFFFF"/>
<path d="M24.911,16.751h0.327v10.244c-0.024,1.054-1.352,1.964-2.357,1.964c-0.303,0-0.608-0.039-0.851-0.196 c-0.388-0.254-0.471-0.665-0.458-1.112c0.036-1.078,1.314-1.928,2.356-1.964c0.303-0.012,0.606,0.02,0.982,0.262V16.751z" fill="#FFFFFF"/>
@@ -113,4 +118,4 @@
<path d="M56.713,15.86h0.327v10.245c-0.024,1.054-1.352,1.964-2.356,1.964c-0.303,0-0.609-0.039-0.852-0.196 c-0.387-0.255-0.471-0.665-0.458-1.113c0.036-1.077,1.315-1.927,2.356-1.963c0.303-0.013,0.606,0.019,0.982,0.261V15.86z" fill="#FFFFFF"/>
<path d="M51.793,51.594c1.521-1.018,2.49-1.581,3.339-3.063c0.366-0.643,0.632-1.561,0.632-2.232 c0-0.543-0.029-0.948-0.236-1.344c-0.236-0.453-0.74-0.81-1.393-0.75c-0.435,0.039-0.959,0.197-1.176,0.435 c-0.119,0.128-0.227,0.306-0.297,0.454c-0.059,0.129,0,0.326,0.238,0.336c0.088,0,0.285-0.079,0.395-0.089 c0.514-0.06,0.938,0.355,0.938,0.8c0,0.436-0.386,0.889-0.998,0.889c-0.632,0-1.165-0.434-1.185-1.057 c-0.02-0.662,0.414-1.333,1.027-1.67c0.326-0.207,1.037-0.395,1.383-0.395c0.632,0,1.195,0.109,1.787,0.604 c0.593,0.493,0.791,0.898,0.879,1.728c0.129,1.176-0.85,2.717-1.797,3.497c-0.889,0.73-2.252,1.472-3.477,2.064L51.793,51.594z M58.086,44.669c0.326,0,0.533,0.267,0.533,0.534c0,0.275-0.207,0.543-0.533,0.543c-0.346,0-0.543-0.268-0.543-0.543 C57.543,44.936,57.74,44.669,58.086,44.669z M58.086,46.832c0.326,0,0.533,0.268,0.533,0.533c0,0.277-0.207,0.544-0.533,0.544 c-0.346,0-0.543-0.267-0.543-0.544C57.543,47.1,57.74,46.832,58.086,46.832z" fill="#FFFFFF"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_player.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_player.svg Thu May 27 13:10:59 2010 +0300
@@ -1,95 +1,89 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 -0.0051 0.0051 1 335.906 -1118.9601)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-311.7573" x2="-311.7573" y1="1119.6411" y2="1175.6382">
- <stop offset="0" style="stop-color:#D1D7D9"/>
- <stop offset="0.6909" style="stop-color:#808A8C"/>
- <stop offset="1" style="stop-color:#A4ACAE"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.6909" style="stop-color:#808A8C"/>
+<stop offset="1" style="stop-color:#A4ACAE"/>
</linearGradient>
<path d="M29.857,2.002C14.394,2.082,1.922,14.679,2.001,30.143S14.68,58.079,30.145,57.999 C45.605,57.921,58.079,45.321,58,29.858C57.92,14.396,45.322,1.924,29.857,2.002z M30.035,37.199 c-3.977,0.021-7.215-3.187-7.235-7.162c-0.018-3.977,3.185-7.218,7.163-7.237c3.977-0.021,7.217,3.188,7.236,7.163 C37.221,33.938,34.014,37.179,30.035,37.199z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(1 -0.0051 0.0051 1 335.906 -1118.9601)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-311.7583" x2="-311.7583" y1="1135.5718" y2="1159.377">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CFCFCF"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
<path d="M29.939,18.001C23.312,18.034,17.967,23.435,18,30.063c0.035,6.625,5.433,11.972,12.061,11.936 c6.627-0.032,11.972-5.432,11.938-12.061C41.966,23.31,36.566,17.966,29.939,18.001z M30.032,36.399 c-3.534,0.018-6.413-2.833-6.433-6.367c-0.016-3.533,2.833-6.414,6.367-6.432c3.533-0.017,6.415,2.833,6.434,6.367 C36.418,33.503,33.566,36.381,30.032,36.399z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(-1 0.0051 -0.0051 -1 -1180.5496 3117.9622)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1253.3975" x2="-1199.1357" y1="3067.8501" y2="3067.8501">
- <stop offset="0" style="stop-color:#A0A7A9"/>
- <stop offset="0.5" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#A0A7A9"/>
+<stop offset="0" style="stop-color:#A0A7A9"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A0A7A9"/>
</linearGradient>
-<path d="M30.135,56.55C15.348,56.626,3.267,44.851,2.884,30.139 c-0.003,0.191-0.013,0.386-0.011,0.583c0.076,14.98,12.283,27.067,27.267,26.994c14.987-0.079,27.074-12.285,26.995-27.27 c-0.001-0.195-0.013-0.389-0.018-0.582C56.883,44.577,44.925,56.476,30.135,56.55z" enable-background="new " fill="url(#SVGID_3_)" opacity="0.3"/>
+<path d="M30.135,56.55C15.348,56.626,3.267,44.851,2.884,30.139 c-0.003,0.191-0.013,0.386-0.011,0.583c0.076,14.98,12.283,27.067,27.267,26.994c14.987-0.079,27.074-12.285,26.995-27.27 c-0.001-0.195-0.013-0.389-0.018-0.582C56.883,44.577,44.925,56.476,30.135,56.55z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1 -0.0051 0.0051 1 335.906 -1118.9601)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-318.1577" x2="-305.3569" y1="1150.27" y2="1150.27">
- <stop offset="0" style="stop-color:#848C8E"/>
- <stop offset="0.5" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#848C8E"/>
+<stop offset="0" style="stop-color:#848C8E"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#848C8E"/>
</linearGradient>
<path d="M30.032,36.399c3.534-0.019,6.386-2.896,6.368-6.432c-0.002-0.204-0.014-0.403-0.035-0.6 c-0.285,3.254-3.006,6.014-6.338,6.03c-3.333,0.019-6.082-2.715-6.399-5.967c-0.017,0.199-0.029,0.399-0.028,0.601 C23.619,33.566,26.498,36.417,30.032,36.399z" fill="url(#SVGID_4_)"/>
<linearGradient gradientTransform="matrix(1 0 0 1 347 -1116.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-317.0005" x2="-317.0005" y1="1119.7017" y2="1173.7001">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M29.861,2.802C14.838,2.878,2.723,15.118,2.8,30.139c0.079,15.021,12.318,27.134,27.34,27.06 c15.022-0.076,27.136-12.314,27.06-27.335C57.122,14.838,44.881,2.725,29.861,2.802z M30.059,41.539 c-6.373,0.032-11.564-5.106-11.596-11.479h-0.004c-0.033-6.375,5.109-11.565,11.481-11.598c6.375-0.033,11.565,5.105,11.597,11.479 h0.002C41.572,36.315,36.43,41.507,30.059,41.539z" fill="url(#SVGID_5_)"/>
-<path d="M4.15,35.341C1.33,21.725,9.627,8.188,23.037,4.521 c2.186-0.598,4.444-0.907,6.708-0.918c11.248-0.056,21.622,7.281,25.237,17.844l0.275,0.806l-13.574,3.709l-0.267-0.655 c-1.885-4.605-6.5-7.685-11.491-7.657c-1.072,0.005-2.142,0.151-3.18,0.435c-6.014,1.646-9.861,7.526-8.959,13.682l0.103,0.702 L4.32,36.177L4.15,35.341z" enable-background="new " fill="#FFFFFF" opacity="0.2"/>
+<path d="M4.15,35.341C1.33,21.725,9.627,8.188,23.037,4.521 c2.186-0.598,4.444-0.907,6.708-0.918c11.248-0.056,21.622,7.281,25.237,17.844l0.275,0.806l-13.574,3.709l-0.267-0.655 c-1.885-4.605-6.5-7.685-11.491-7.657c-1.072,0.005-2.142,0.151-3.18,0.435c-6.014,1.646-9.861,7.526-8.959,13.682l0.103,0.702 L4.32,36.177L4.15,35.341z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.999C6.729,29.999,0,23.271,0,15S6.729,0.001,15,0.001c8.271,0,15,6.729,15,14.999 S23.271,29.999,15,29.999L15,29.999z" opacity="0.35"/>
+<path d="M15,29.999C6.729,29.999,0,23.271,0,15S6.729,0.001,15,0.001c8.271,0,15,6.729,15,14.999 S23.271,29.999,15,29.999L15,29.999z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 579.9604 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-1129.9209" x2="-1129.9209" y1="3388.3521" y2="3444.3481">
- <stop offset="0" style="stop-color:#D5F5B5"/>
- <stop offset="1" style="stop-color:#40AD00"/>
+<stop offset="0" style="stop-color:#D5F5B5"/>
+<stop offset="1" style="stop-color:#40AD00"/>
</linearGradient>
<path d="M15,28.999C7.279,28.999,1,22.72,1,15C1,7.281,7.279,1.001,15,1.001c7.718,0,14,6.28,14,13.999 C29,22.72,22.718,28.999,15,28.999L15,28.999z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179.0005" x2="-2179.0005" y1="2906.6362" y2="2878.8359">
- <stop offset="0" style="stop-color:#8CFF24"/>
- <stop offset="1" style="stop-color:#15570B"/>
+<stop offset="0" style="stop-color:#8CFF24"/>
+<stop offset="1" style="stop-color:#15570B"/>
</linearGradient>
<path d="M28.599,15c0,7.512-6.09,13.6-13.599,13.6C7.486,28.6,1.4,22.512,1.4,15C1.4,7.491,7.486,1.4,15,1.4 C22.509,1.4,28.599,7.491,28.599,15z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="16.5117" x2="16.5117" y1="21.3633" y2="7.2163">
- <stop offset="0" style="stop-color:#82DA3B"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#82DA3B"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<polygon fill="url(#SVGID_3__)" points="10.353,7.134 22.671,14.21 10.353,21.429 "/>
<polygon fill="#FFFFFF" points="11.11,8.444 22.008,14.734 11.11,21.026 "/>
</g>
<g>
-<defs>
-</defs>
<polygon fill="none" points="24.728,0 23.608,0.487 0,0.487 0,30.487 30,30.487 30,0.487 24.928,0.487 "/>
-<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" opacity="0.35"/>
+<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="-2179.9351" x2="-2179.9351" y1="2902.811" y2="2880.1646">
- <stop offset="0" style="stop-color:#8CFF24"/>
- <stop offset="1" style="stop-color:#15570B"/>
+<stop offset="0" style="stop-color:#8CFF24"/>
+<stop offset="1" style="stop-color:#15570B"/>
</linearGradient>
<path d="M25.98,5.682l-1.79-4.357L13.902,5.902l0.016,13.899c-1.574-1.029-3.896-1.366-6.257-0.729 c-3.722,1.003-6.127,4.041-5.374,6.78c0.756,2.742,4.383,4.15,8.104,3.146c3.146-0.849,5.324-3.094,5.311-5.493 c-0.01-2.399,0.02-8.913,0-13.625L25.98,5.682z" fill="url(#SVGID_1___)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="-1201.8184" x2="-1201.8184" y1="3393.1226" y2="3404.4397">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<polygon fill="url(#SVGID_2___)" points="13.918,17.409 13.907,5.902 13.902,5.902 13.916,17.408 "/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3___" x1="-1187.957" x2="-1187.957" y1="3393.1177" y2="3404.4392">
- <stop offset="0" style="stop-color:#9EFF47"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#9EFF47"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<path d="M15.701,9.169c0.005,0.759,0.006-0.117,0.008,0.711L25.98,5.682l-0.252-0.646L15.701,9.169z" fill="url(#SVGID_3___)"/>
<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188.0039" x2="-1188.0039" y1="3402.1909" y2="3430.4734">
- <stop offset="0" style="stop-color:#B3FF6E"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#B3FF6E"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<polygon fill="url(#SVGID_4__)" points="14.072,20.2 14.072,6.3 24.389,1.807 24.19,1.324 13.674,5.902 13.674,19.803 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="-2185.0737" x2="-2185.0737" y1="2887.9233" y2="2879.6807">
- <stop offset="0" style="stop-color:#B2F56E"/>
- <stop offset="0.4667" style="stop-color:#40AD00"/>
- <stop offset="1" style="stop-color:#074D00"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.4667" style="stop-color:#40AD00"/>
+<stop offset="1" style="stop-color:#074D00"/>
</linearGradient>
<path d="M7.96,28.527c-2.474,0.012-4.447-1.129-4.909-2.839c-0.28-1.039,0.018-2.187,0.84-3.229 c0.9-1.141,2.291-2.007,3.923-2.436c0.688-0.184,1.385-0.277,2.075-0.281c2.474-0.013,4.445,1.129,4.91,2.84 c0.615,2.267-1.522,4.807-4.764,5.664C9.347,28.43,8.647,28.522,7.96,28.527L7.96,28.527z" fill="url(#SVGID_5__)"/>
<rect fill="none" height="30" width="30" y="0.487"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_shop.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_shop.svg Thu May 27 13:10:59 2010 +0300
@@ -1,132 +1,130 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.2197" x2="4.2197" y1="4.7148" y2="11.4634">
- <stop offset="0" style="stop-color:#BFBFBF"/>
- <stop offset="0.7818" style="stop-color:#404040"/>
- <stop offset="1" style="stop-color:#666666"/>
+<stop offset="0" style="stop-color:#BFBFBF"/>
+<stop offset="0.7818" style="stop-color:#404040"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
<path d="M4.221,11.382c-1.826,0-3.313-1.486-3.313-3.312c0-1.824,1.486-3.311,3.313-3.311 c1.824,0,3.311,1.486,3.311,3.311C7.531,9.896,6.045,11.382,4.221,11.382L4.221,11.382z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4.2207" x2="4.2207" y1="5.5142" y2="10.6549">
- <stop offset="0" style="stop-color:#7A7A7A"/>
- <stop offset="0.7818" style="stop-color:#212121"/>
- <stop offset="1" style="stop-color:#3A3A3A"/>
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#3A3A3A"/>
</linearGradient>
<circle cx="4.221" cy="8.071" fill="url(#SVGID_2_)" r="2.521"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="13.501" x2="56.4315" y1="47.3521" y2="47.3521">
- <stop offset="0" style="stop-color:#878A8C"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#757D80"/>
- <stop offset="1" style="stop-color:#959A9C"/>
+<stop offset="0" style="stop-color:#878A8C"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#757D80"/>
+<stop offset="1" style="stop-color:#959A9C"/>
</linearGradient>
<path d="M55.23,45.774h-37.9l-4.018,1.579l0,0c0,0.298,0.074,0.595,0.242,0.854 c0.291,0.45,0.789,0.722,1.326,0.722h40.35c0.869,0,1.576-0.706,1.576-1.576C56.807,46.481,56.1,45.774,55.23,45.774z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.3105" x2="19.0975" y1="41.4453" y2="43.2125">
- <stop offset="0" style="stop-color:#878A8C"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#757D80"/>
- <stop offset="1" style="stop-color:#959A9C"/>
+<stop offset="0" style="stop-color:#878A8C"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#757D80"/>
+<stop offset="1" style="stop-color:#959A9C"/>
</linearGradient>
<path d="M13.313,47.354l4.018-1.579l3.189-7.016c0.359-0.792,0.012-1.729-0.783-2.088 c-0.795-0.361-1.73-0.01-2.088,0.784l-4.203,9.247C13.348,46.908,13.313,47.13,13.313,47.354L13.313,47.354z" fill="url(#SVGID_4_)"/>
-<path d="M19.371,36.56c-0.695-0.131-1.418,0.219-1.723,0.894l-1.156,2.541c0.662,1.489,1.262,2.443,1.791,2.813 c0.1,0.073,0.205,0.126,0.307,0.191l1.805-3.968C20.123,38.458,19.764,37.605,19.371,36.56z" opacity="0.1"/>
-<path d="M18.551,36.624c-0.387,0.137-0.721,0.425-0.902,0.83l-0.713,1.565c0.582,1.418,1.25,2.756,1.816,3.156 c0.055,0.039,0.115,0.065,0.168,0.104l1.057-2.325C19.652,39.363,19.115,38.151,18.551,36.624z" opacity="0.2"/>
-<path d="M13.555,48.207c0.291,0.45,0.789,0.722,1.326,0.722h40.35c0.869,0,1.576-0.706,1.576-1.576H13.313 C13.313,47.651,13.387,47.948,13.555,48.207z" opacity="0.2"/>
-<path d="M18.494,48.929h10.578c-0.4-1.333-1.291-2.452-2.459-3.155h-5.66C19.785,46.478,18.891,47.596,18.494,48.929z " opacity="0.2"/>
+<path d="M19.371,36.56c-0.695-0.131-1.418,0.219-1.723,0.894l-1.156,2.541c0.662,1.489,1.262,2.443,1.791,2.813 c0.1,0.073,0.205,0.126,0.307,0.191l1.805-3.968C20.123,38.458,19.764,37.605,19.371,36.56z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M18.551,36.624c-0.387,0.137-0.721,0.425-0.902,0.83l-0.713,1.565c0.582,1.418,1.25,2.756,1.816,3.156 c0.055,0.039,0.115,0.065,0.168,0.104l1.057-2.325C19.652,39.363,19.115,38.151,18.551,36.624z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M13.555,48.207c0.291,0.45,0.789,0.722,1.326,0.722h40.35c0.869,0,1.576-0.706,1.576-1.576H13.313 C13.313,47.651,13.387,47.948,13.555,48.207z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M18.494,48.929h10.578c-0.4-1.333-1.291-2.452-2.459-3.155h-5.66C19.785,46.478,18.891,47.596,18.494,48.929z " fill-opacity="0.2" stroke-opacity="0.2"/>
<radialGradient cx="23.3809" cy="44.9189" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="10.6545">
- <stop offset="0" style="stop-color:#7A7A7A"/>
- <stop offset="0.7818" style="stop-color:#212121"/>
- <stop offset="1" style="stop-color:#353535"/>
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#353535"/>
</radialGradient>
<path d="M23.785,55.24c-2.613,0-4.734-2.124-4.734-4.733c0-2.609,2.121-4.732,4.734-4.732 c2.607,0,4.73,2.123,4.73,4.732C28.516,53.116,26.393,55.24,23.785,55.24L23.785,55.24z" fill="url(#SVGID_5_)"/>
<radialGradient cx="23.4492" cy="45.8501" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="8.8793">
- <stop offset="0" style="stop-color:#7A7A7A"/>
- <stop offset="0.7818" style="stop-color:#212121"/>
- <stop offset="1" style="stop-color:#353535"/>
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#353535"/>
</radialGradient>
<path d="M27.729,50.506c0,2.179-1.766,3.945-3.943,3.945c-2.182,0-3.945-1.766-3.945-3.945 c0-2.178,1.764-3.943,3.945-3.943C25.963,46.563,27.729,48.328,27.729,50.506z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="6.3311" x2="6.3311" y1="6.4199" y2="10.0271">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.4606" style="stop-color:#BDC2C4"/>
- <stop offset="0.7333" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.4606" style="stop-color:#BDC2C4"/>
+<stop offset="0.7333" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M8.424,6.39H5.061c-0.928,0-1.682,0.753-1.682,1.681s0.754,1.681,1.682,1.681h2.061l2.162-2.994 C9.049,6.547,8.768,6.39,8.424,6.39z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="23.7832" x2="23.7832" y1="48.2568" y2="52.9256">
- <stop offset="0" style="stop-color:#E6E9E8"/>
- <stop offset="1" style="stop-color:#ADB2B5"/>
+<stop offset="0" style="stop-color:#E6E9E8"/>
+<stop offset="1" style="stop-color:#ADB2B5"/>
</linearGradient>
<path d="M23.785,52.873c-1.307,0-2.367-1.063-2.367-2.367c0-1.305,1.061-2.366,2.367-2.366 c1.303,0,2.363,1.061,2.363,2.366C26.148,51.811,25.088,52.873,23.785,52.873L23.785,52.873z" fill="url(#SVGID_8_)"/>
-<path d="M41.369,48.929h10.576c-0.4-1.333-1.289-2.452-2.459-3.155h-5.66C42.658,46.478,41.766,47.596,41.369,48.929z " opacity="0.1"/>
+<path d="M41.369,48.929h10.576c-0.4-1.333-1.289-2.452-2.459-3.155h-5.66C42.658,46.478,41.766,47.596,41.369,48.929z " fill-opacity="0.1" stroke-opacity="0.1"/>
<radialGradient cx="46.5889" cy="44.9189" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="10.8384">
- <stop offset="0" style="stop-color:#7A7A7A"/>
- <stop offset="0.7818" style="stop-color:#212121"/>
- <stop offset="1" style="stop-color:#353535"/>
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#353535"/>
</radialGradient>
<path d="M46.656,55.24c-2.611,0-4.732-2.124-4.732-4.733c0-2.609,2.121-4.732,4.732-4.732 c2.609,0,4.732,2.123,4.732,4.732C51.389,53.116,49.266,55.24,46.656,55.24L46.656,55.24z" fill="url(#SVGID_9_)"/>
<radialGradient cx="46.6006" cy="45.8501" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="9.0328">
- <stop offset="0" style="stop-color:#7A7A7A"/>
- <stop offset="0.7818" style="stop-color:#212121"/>
- <stop offset="1" style="stop-color:#353535"/>
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#353535"/>
</radialGradient>
<circle cx="46.657" cy="50.506" fill="url(#SVGID_10_)" r="3.944"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="46.6563" x2="46.6563" y1="48.1914" y2="52.8588">
- <stop offset="0" style="stop-color:#E6E9E8"/>
- <stop offset="1" style="stop-color:#ADB2B5"/>
+<stop offset="0" style="stop-color:#E6E9E8"/>
+<stop offset="1" style="stop-color:#ADB2B5"/>
</linearGradient>
<path d="M46.656,52.873c-1.305,0-2.365-1.063-2.365-2.367c0-1.305,1.061-2.366,2.365-2.366 s2.365,1.061,2.365,2.366C49.021,51.811,47.961,52.873,46.656,52.873L46.656,52.873z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30.1436" x2="30.1436" y1="10.1616" y2="42.5465">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.4606" style="stop-color:#BDC2C4"/>
- <stop offset="0.7333" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.4606" style="stop-color:#BDC2C4"/>
+<stop offset="0.7333" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M12.004,13.339L10.1,8.109c0-0.012-0.514-1.72-1.676-1.72H5.061c-0.928,0-1.682,0.753-1.682,1.681 s0.754,1.681,1.682,1.681h2.061l9.359,25.72c0,0,1.762,5.382,2.742,6.068c0.84,0.622,1.873,0.995,3,0.995h28.58 c2.785,0,5.043-2.258,5.043-5.043l1.063-21.015L12.004,13.339z M22.832,38.593c-0.563,0.179-1.16-0.135-1.338-0.693L15.67,19.448 c-0.178-0.56,0.133-1.157,0.693-1.335c0.561-0.177,1.158,0.133,1.336,0.694l5.826,18.453C23.701,37.818,23.393,38.417,22.832,38.593 z M28.547,38.774c-0.563,0.178-1.158-0.133-1.338-0.694l-5.826-18.451c-0.176-0.561,0.137-1.157,0.695-1.334 c0.563-0.176,1.16,0.131,1.336,0.694l5.828,18.452C29.416,38,29.105,38.597,28.547,38.774z M34.361,38.959 c-0.563,0.178-1.158-0.133-1.338-0.694l-5.826-18.451c-0.176-0.56,0.137-1.158,0.697-1.336s1.158,0.133,1.332,0.695l5.83,18.451 C35.23,38.184,34.92,38.781,34.361,38.959z M39.584,39.125c-0.563,0.178-1.16-0.133-1.338-0.695l-5.824-18.451 c-0.176-0.56,0.131-1.157,0.695-1.335c0.561-0.178,1.158,0.133,1.334,0.693l5.824,18.453C40.453,38.352,40.146,38.95,39.584,39.125z M45.299,39.308c-0.563,0.177-1.158-0.135-1.336-0.695l-5.826-18.452c-0.176-0.56,0.135-1.157,0.695-1.334 c0.561-0.177,1.158,0.133,1.336,0.694l5.826,18.453C46.17,38.533,45.857,39.13,45.299,39.308z M50.918,39.493 c-0.563,0.178-1.16-0.136-1.338-0.695l-5.824-18.451c-0.178-0.56,0.131-1.157,0.691-1.335c0.563-0.177,1.158,0.133,1.338,0.694 l5.826,18.453C51.785,38.716,51.475,39.314,50.918,39.493z M52.553,28.654c-0.561,0.177-1.16-0.134-1.336-0.695l-2.336-7.35 c-0.178-0.56,0.133-1.158,0.695-1.335c0.561-0.177,1.158,0.135,1.334,0.694l2.336,7.351C53.424,27.879,53.111,28.476,52.553,28.654z " fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="30.1436" x2="30.1436" y1="10.1616" y2="42.5465">
- <stop offset="0" style="stop-color:#ECF3F5"/>
- <stop offset="0.4606" style="stop-color:#D3D9DB"/>
- <stop offset="0.7333" style="stop-color:#ABB5BA"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#ECF3F5"/>
+<stop offset="0.4606" style="stop-color:#D3D9DB"/>
+<stop offset="0.7333" style="stop-color:#ABB5BA"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M12.004,13.339L10.1,8.109c0-0.012-0.514-1.72-1.676-1.72H5.061c-0.928,0-1.682,0.753-1.682,1.681 s0.754,1.681,1.682,1.681h2.061l9.359,25.72c0,0,1.762,5.382,2.742,6.068c0.84,0.622,1.873,0.995,3,0.995h28.58 c2.785,0,5.043-2.258,5.043-5.043l0.023-0.497c0.008-0.107,0.01-0.208,0.018-0.291l0.043-0.884l0.268-5.254v-0.002l0.025-0.516 l0.686-13.571L12.004,13.339z M55.057,37.452c0,2.386-1.91,4.295-4.254,4.295h-28.58c-0.914,0-1.789-0.291-2.529-0.839 c-0.492-0.394-1.668-3.25-2.461-5.68L7.672,8.963H5.061c-0.492,0-0.893-0.401-0.893-0.893s0.4-0.892,0.893-0.892h3.363 c0.393,0,0.756,0.696,0.885,1.044v0.015l2.129,5.854l44.645,3.118L55.057,37.452z" fill="url(#SVGID_13_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="24.728,0 23.608,0.487 0,0.487 0,30.487 30,30.487 30,0.487 24.928,0.487 "/>
-<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" opacity="0.35"/>
+<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179.9351" x2="-2179.9351" y1="2902.811" y2="2880.1646">
- <stop offset="0" style="stop-color:#8CFF24"/>
- <stop offset="1" style="stop-color:#15570B"/>
+<stop offset="0" style="stop-color:#8CFF24"/>
+<stop offset="1" style="stop-color:#15570B"/>
</linearGradient>
<path d="M25.98,5.682l-1.79-4.357L13.902,5.902l0.016,13.899c-1.574-1.029-3.896-1.366-6.257-0.729 c-3.722,1.003-6.127,4.041-5.374,6.78c0.756,2.742,4.383,4.15,8.104,3.146c3.146-0.849,5.324-3.094,5.311-5.493 c-0.01-2.399,0.02-8.913,0-13.625L25.98,5.682z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1201.8184" x2="-1201.8184" y1="3393.1226" y2="3404.4397">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="13.918,17.409 13.907,5.902 13.902,5.902 13.916,17.408 "/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1187.957" x2="-1187.957" y1="3393.1177" y2="3404.4392">
- <stop offset="0" style="stop-color:#9EFF47"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#9EFF47"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<path d="M15.701,9.169c0.005,0.759,0.006-0.117,0.008,0.711L25.98,5.682l-0.252-0.646L15.701,9.169z" fill="url(#SVGID_3__)"/>
<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188.0039" x2="-1188.0039" y1="3402.1909" y2="3430.4734">
- <stop offset="0" style="stop-color:#B3FF6E"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#B3FF6E"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<polygon fill="url(#SVGID_4__)" points="14.072,20.2 14.072,6.3 24.389,1.807 24.19,1.324 13.674,5.902 13.674,19.803 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="-2185.0737" x2="-2185.0737" y1="2887.9233" y2="2879.6807">
- <stop offset="0" style="stop-color:#B2F56E"/>
- <stop offset="0.4667" style="stop-color:#40AD00"/>
- <stop offset="1" style="stop-color:#074D00"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.4667" style="stop-color:#40AD00"/>
+<stop offset="1" style="stop-color:#074D00"/>
</linearGradient>
<path d="M7.96,28.527c-2.474,0.012-4.447-1.129-4.909-2.839c-0.28-1.039,0.018-2.187,0.84-3.229 c0.9-1.141,2.291-2.007,3.923-2.436c0.688-0.184,1.385-0.277,2.075-0.281c2.474-0.013,4.445,1.129,4.91,2.84 c0.615,2.267-1.522,4.807-4.764,5.664C9.347,28.43,8.647,28.522,7.96,28.527L7.96,28.527z" fill="url(#SVGID_5__)"/>
<rect fill="none" height="30" width="30" y="0.487"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mycard.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mycard.svg Thu May 27 13:10:59 2010 +0300
@@ -1,44 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="8.8086" y2="50.5088">
- <stop offset="0" style="stop-color:#E3E3E3"/>
- <stop offset="1" style="stop-color:#9B9B9B"/>
+<stop offset="0" style="stop-color:#E3E3E3"/>
+<stop offset="1" style="stop-color:#9B9B9B"/>
</linearGradient>
<path d="M4.871,50.82C3.289,50.82,2,49.533,2,47.948V12.052C2,10.467,3.289,9.18,4.871,9.18h50.258 c1.584,0,2.871,1.287,2.871,2.872v35.896c0,1.585-1.287,2.872-2.871,2.872H4.871z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.001" x2="30.001" y1="9.5391" y2="49.8016">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="0.7818" style="stop-color:#CCCCCC"/>
- <stop offset="1" style="stop-color:#D1D1D1"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
<path d="M57.283,47.948c0,1.189-0.965,2.154-2.154,2.154H4.871c-1.188,0-2.152-0.965-2.152-2.154V12.052 c0-1.189,0.965-2.154,2.152-2.154h50.258c1.189,0,2.154,0.965,2.154,2.154V47.948z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="10.54" y2="49.3096">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#DEDEDE"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#DEDEDE"/>
</linearGradient>
<path d="M55.129,11.334c0.396,0,0.719,0.321,0.719,0.718v35.896c0,0.396-0.322,0.718-0.719,0.718H4.871 c-0.395,0-0.717-0.321-0.717-0.718V12.052c0-0.396,0.322-0.718,0.717-0.718H55.129 M55.129,10.615H4.871 c-0.791,0-1.436,0.644-1.436,1.437v35.896c0,0.792,0.645,1.437,1.436,1.437h50.258c0.791,0,1.436-0.645,1.436-1.437V12.052 C56.564,11.259,55.92,10.615,55.129,10.615L55.129,10.615z" fill="url(#SVGID_3_)"/>
-<rect fill="#020202" height="23.692" opacity="0.1" width="21.539" x="7.744" y="19.04"/>
+<rect fill="#020202" fill-opacity="0.1" height="23.692" stroke-opacity="0.1" width="21.539" x="7.744" y="19.04"/>
<rect fill="#FFFFFF" height="23.691" width="21.539" x="7.744" y="17.604"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.5137" x2="18.5137" y1="40.6636" y2="18.4058">
- <stop offset="0" style="stop-color:#3FA8F4"/>
- <stop offset="1" style="stop-color:#8DC8E1"/>
+<stop offset="0" style="stop-color:#3FA8F4"/>
+<stop offset="1" style="stop-color:#8DC8E1"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="22.258" width="20.102" x="8.463" y="18.321"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="9.8984" x2="25.6941" y1="29.7617" y2="29.7617">
- <stop offset="0" style="stop-color:#146BAF"/>
- <stop offset="1" style="stop-color:#013B77"/>
+<stop offset="0" style="stop-color:#146BAF"/>
+<stop offset="1" style="stop-color:#013B77"/>
</linearGradient>
<path d="M24.939,34.517c-0.469-0.243-2.283-0.901-3.256-1.267l-0.041-0.016h-0.002 c-0.01-0.004-0.018-0.007-0.027-0.011l-0.549-0.222c-0.389-0.44-0.346-1.455-0.129-1.794c0.045-0.067,0.084-0.136,0.127-0.205 h-0.008c0.314-0.512,0.582-1.021,0.797-1.498c0.389,0.135,0.889-0.228,1.137-0.839c0.258-0.635,0.146-1.292-0.25-1.47 c-0.021-0.01-0.045-0.011-0.066-0.018c0-0.002,0-0.002,0-0.002c0.051-0.199,0.072-0.318,0.072-0.318 c0.682-3.054-0.801-5.475-4.391-5.595c-1.473,0-2.182,0.672-2.73,1.373c-0.893,0.138-2.303,0.952-1.307,4.526 c-0.037,0.007-0.076,0.013-0.111,0.027c-0.4,0.169-0.523,0.82-0.279,1.458c0.244,0.636,0.764,1.019,1.162,0.85 c0.023-0.011,0.045-0.028,0.066-0.042c0.219,0.491,0.49,1.018,0.813,1.547h-0.002c0.014,0.025,0.029,0.05,0.045,0.073 c0.002,0.005,0.004,0.01,0.008,0.013v0.003c0.025,0.038,0.049,0.077,0.072,0.116c0.207,0.324,0.252,1.255-0.08,1.723l-0.572,0.249 c-0.961,0.376-2.814,1.052-3.35,1.337c-0.832,0.442-2.189,1.455-2.189,3.743h17.23C27.129,35.972,25.578,34.85,24.939,34.517z M22.619,27.168c-0.021-0.006-0.041-0.012-0.063-0.013c-0.029-0.005-0.055-0.012-0.084-0.017c-0.006-0.002-0.006-0.002-0.012-0.003 C22.514,27.146,22.566,27.156,22.619,27.168z M14.322,27.162c0.006-0.006,0.018-0.016,0.023-0.022 c0.002,0.006,0.002,0.01,0.006,0.016C14.34,27.156,14.332,27.161,14.322,27.162z" fill="url(#SVGID_5_)"/>
-<rect fill="#020202" height="0.718" opacity="0.2" width="18.668" x="33.59" y="21.912"/>
-<rect fill="#020202" height="1.256" opacity="0.5" width="18.668" x="33.59" y="22.63"/>
-<rect fill="#020202" height="0.718" opacity="0.2" width="18.668" x="33.59" y="28.374"/>
-<rect fill="#020202" height="1.256" opacity="0.5" width="18.668" x="33.59" y="29.092"/>
-<rect fill="#020202" height="0.718" opacity="0.2" width="18.668" x="33.59" y="34.835"/>
-<rect fill="#020202" height="1.257" opacity="0.5" width="18.668" x="33.59" y="35.553"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.718" stroke-opacity="0.2" width="18.668" x="33.59" y="21.912"/>
+<rect fill="#020202" fill-opacity="0.5" height="1.256" stroke-opacity="0.5" width="18.668" x="33.59" y="22.63"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.718" stroke-opacity="0.2" width="18.668" x="33.59" y="28.374"/>
+<rect fill="#020202" fill-opacity="0.5" height="1.256" stroke-opacity="0.5" width="18.668" x="33.59" y="29.092"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.718" stroke-opacity="0.2" width="18.668" x="33.59" y="34.835"/>
+<rect fill="#020202" fill-opacity="0.5" height="1.257" stroke-opacity="0.5" width="18.668" x="33.59" y="35.553"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_network.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_network.svg Thu May 27 13:10:59 2010 +0300
@@ -1,48 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="26.4722" x2="33.4727" y1="32.4502" y2="32.4502">
- <stop offset="0" style="stop-color:#686E70"/>
- <stop offset="0.0788" style="stop-color:#A8B1B3"/>
- <stop offset="0.3152" style="stop-color:#FFFFFF"/>
- <stop offset="0.7333" style="stop-color:#989C9E"/>
- <stop offset="1" style="stop-color:#C6CBCC"/>
+<stop offset="0" style="stop-color:#686E70"/>
+<stop offset="0.0788" style="stop-color:#A8B1B3"/>
+<stop offset="0.3152" style="stop-color:#FFFFFF"/>
+<stop offset="0.7333" style="stop-color:#989C9E"/>
+<stop offset="1" style="stop-color:#C6CBCC"/>
</linearGradient>
<path d="M26.472,10.75v42.014c0,0.766,0.626,1.387,1.399,1.387h4.201c0.773,0,1.4-0.621,1.4-1.387V10.75 H26.472z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="5.6274" y2="33.0842">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<path d="M57.893,7.582c-0.316-1.029-1.268-1.732-2.346-1.732H30.322h-0.35H4.453 c-1.078,0-2.029,0.703-2.345,1.732c-0.316,1.029,0.078,2.145,0.971,2.747l23.394,22.586v-9.161L12.455,10.75h17.518h0.35h17.223 L33.473,23.975v9.074l23.449-22.72C57.814,9.727,58.207,8.611,57.893,7.582z" fill="url(#SVGID_2_)"/>
-<path d="M2.108,8.384C2.423,7.354,3.375,6.55,4.453,6.55h25.52h0.35h25.225 c1.078,0,2.029,0.804,2.346,1.834c0.033,0.106,0.053,0.214,0.07,0.322c0.063-0.368,0.043-0.751-0.07-1.124 c-0.316-1.029-1.268-1.732-2.346-1.732H30.322h-0.35H4.453c-1.078,0-2.029,0.703-2.345,1.732C1.993,7.955,1.975,8.338,2.037,8.706 C2.054,8.598,2.075,8.49,2.108,8.384z" fill="#FFFFFF" opacity="0.6"/>
-<polygon fill="#FFFFFF" opacity="0.6" points="34.184,24.717 48.693,10.742 47.58,10.742 34.184,23.428 "/>
-<polygon fill="#FFFFFF" opacity="0.6" points="11.317,10.753 25.783,24.498 25.783,23.216 12.451,10.753 "/>
+<path d="M2.108,8.384C2.423,7.354,3.375,6.55,4.453,6.55h25.52h0.35h25.225 c1.078,0,2.029,0.804,2.346,1.834c0.033,0.106,0.053,0.214,0.07,0.322c0.063-0.368,0.043-0.751-0.07-1.124 c-0.316-1.029-1.268-1.732-2.346-1.732H30.322h-0.35H4.453c-1.078,0-2.029,0.703-2.345,1.732C1.993,7.955,1.975,8.338,2.037,8.706 C2.054,8.598,2.075,8.49,2.108,8.384z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<polygon fill="#FFFFFF" fill-opacity="0.6" points="34.184,24.717 48.693,10.742 47.58,10.742 34.184,23.428 " stroke-opacity="0.6"/>
+<polygon fill="#FFFFFF" fill-opacity="0.6" points="11.317,10.753 25.783,24.498 25.783,23.216 12.451,10.753 " stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9995" x2="29.9995" y1="6.481" y2="32.1174">
- <stop offset="0" style="stop-color:#EBECF0"/>
- <stop offset="0.5" style="stop-color:#BBBCBF"/>
- <stop offset="0.5" style="stop-color:#A4A5A8"/>
- <stop offset="1" style="stop-color:#C8CACC"/>
+<stop offset="0" style="stop-color:#EBECF0"/>
+<stop offset="0.5" style="stop-color:#BBBCBF"/>
+<stop offset="0.5" style="stop-color:#A4A5A8"/>
+<stop offset="1" style="stop-color:#C8CACC"/>
</linearGradient>
<path d="M34.172,24.738L49.715,10.05H10.251l15.521,14.472v7.094L3.479,9.755 C2.829,9.315,2.55,8.527,2.777,7.787s0.9-1.237,1.676-1.237h51.094c0.775,0,1.449,0.497,1.676,1.237s-0.053,1.528-0.693,1.962 L34.172,31.855V24.738z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.7363" x2="45.7363" y1="7.9927" y2="30.6518">
- <stop offset="0" style="stop-color:#68696B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#68696B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M57.148,7.602c-0.129,0.295-0.336,0.557-0.619,0.748L34.172,30.455v1.4L56.529,9.749 c0.641-0.434,0.92-1.222,0.693-1.962C57.203,7.723,57.176,7.662,57.148,7.602z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.2354" x2="14.2354" y1="7.9922" y2="30.666">
- <stop offset="0" style="stop-color:#68696B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#68696B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M2.851,7.6C2.825,7.662,2.797,7.723,2.777,7.787C2.55,8.527,2.829,9.315,3.479,9.755l22.293,21.86 v-1.4L3.479,8.354C3.191,8.16,2.982,7.896,2.851,7.6z" fill="url(#SVGID_5_)"/>
<path d="M2.777,8.487c0.227-0.74,0.9-1.237,1.676-1.237h51.094c0.775,0,1.449,0.497,1.676,1.237 c0.018,0.058,0.027,0.116,0.037,0.174c0.061-0.283,0.053-0.582-0.037-0.874c-0.227-0.74-0.9-1.237-1.676-1.237H4.453 c-0.775,0-1.449,0.497-1.676,1.237c-0.09,0.291-0.098,0.59-0.038,0.873C2.75,8.603,2.759,8.545,2.777,8.487z" fill="#FFFFFF"/>
-<path d="M32.072,53.45h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.829,32.846,53.45,32.072,53.45z" opacity="0.4"/>
-<path d="M32.072,52.736h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.115,32.846,52.736,32.072,52.736z" opacity="0.2"/>
-<rect height="0.7" opacity="0.3" width="7" x="26.472" y="10.75"/>
-<rect height="0.7" opacity="0.2" width="7" x="26.472" y="11.45"/>
-<rect height="2.8" opacity="0.1" width="7" x="26.472" y="10.75"/>
+<path d="M32.072,53.45h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.829,32.846,53.45,32.072,53.45z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M32.072,52.736h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.115,32.846,52.736,32.072,52.736z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill-opacity="0.3" height="0.7" stroke-opacity="0.3" width="7" x="26.472" y="10.75"/>
+<rect fill-opacity="0.2" height="0.7" stroke-opacity="0.2" width="7" x="26.472" y="11.45"/>
+<rect fill-opacity="0.1" height="2.8" stroke-opacity="0.1" width="7" x="26.472" y="10.75"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_network_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_network_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,61 +1,57 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="26.4722" x2="33.4727" y1="32.4502" y2="32.4502">
- <stop offset="0" style="stop-color:#686E70"/>
- <stop offset="0.0788" style="stop-color:#A8B1B3"/>
- <stop offset="0.3152" style="stop-color:#FFFFFF"/>
- <stop offset="0.7333" style="stop-color:#989C9E"/>
- <stop offset="1" style="stop-color:#C6CBCC"/>
+<stop offset="0" style="stop-color:#686E70"/>
+<stop offset="0.0788" style="stop-color:#A8B1B3"/>
+<stop offset="0.3152" style="stop-color:#FFFFFF"/>
+<stop offset="0.7333" style="stop-color:#989C9E"/>
+<stop offset="1" style="stop-color:#C6CBCC"/>
</linearGradient>
<path d="M26.472,10.75v42.014c0,0.766,0.626,1.387,1.399,1.387h4.201c0.773,0,1.4-0.621,1.4-1.387V10.75 H26.472z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="5.6274" y2="33.0842">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<path d="M57.893,7.582c-0.316-1.029-1.268-1.732-2.346-1.732H30.322h-0.35H4.453 c-1.078,0-2.029,0.703-2.345,1.732c-0.316,1.029,0.078,2.145,0.971,2.747l23.394,22.586v-9.161L12.455,10.75h17.518h0.35h17.223 L33.473,23.975v9.074l23.449-22.72C57.814,9.727,58.207,8.611,57.893,7.582z" fill="url(#SVGID_2_)"/>
-<path d="M2.108,8.384C2.423,7.354,3.375,6.55,4.453,6.55h25.52h0.35h25.225 c1.078,0,2.029,0.804,2.346,1.834c0.033,0.106,0.053,0.214,0.07,0.322c0.063-0.368,0.043-0.751-0.07-1.124 c-0.316-1.029-1.268-1.732-2.346-1.732H30.322h-0.35H4.453c-1.078,0-2.029,0.703-2.345,1.732C1.993,7.955,1.975,8.338,2.037,8.706 C2.054,8.598,2.075,8.49,2.108,8.384z" fill="#FFFFFF" opacity="0.6"/>
-<polygon fill="#FFFFFF" opacity="0.6" points="34.184,24.717 48.693,10.742 47.58,10.742 34.184,23.428 "/>
-<polygon fill="#FFFFFF" opacity="0.6" points="11.317,10.753 25.783,24.498 25.783,23.216 12.451,10.753 "/>
+<path d="M2.108,8.384C2.423,7.354,3.375,6.55,4.453,6.55h25.52h0.35h25.225 c1.078,0,2.029,0.804,2.346,1.834c0.033,0.106,0.053,0.214,0.07,0.322c0.063-0.368,0.043-0.751-0.07-1.124 c-0.316-1.029-1.268-1.732-2.346-1.732H30.322h-0.35H4.453c-1.078,0-2.029,0.703-2.345,1.732C1.993,7.955,1.975,8.338,2.037,8.706 C2.054,8.598,2.075,8.49,2.108,8.384z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<polygon fill="#FFFFFF" fill-opacity="0.6" points="34.184,24.717 48.693,10.742 47.58,10.742 34.184,23.428 " stroke-opacity="0.6"/>
+<polygon fill="#FFFFFF" fill-opacity="0.6" points="11.317,10.753 25.783,24.498 25.783,23.216 12.451,10.753 " stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9995" x2="29.9995" y1="6.481" y2="32.1174">
- <stop offset="0" style="stop-color:#EBECF0"/>
- <stop offset="0.5" style="stop-color:#BBBCBF"/>
- <stop offset="0.5" style="stop-color:#A4A5A8"/>
- <stop offset="1" style="stop-color:#C8CACC"/>
+<stop offset="0" style="stop-color:#EBECF0"/>
+<stop offset="0.5" style="stop-color:#BBBCBF"/>
+<stop offset="0.5" style="stop-color:#A4A5A8"/>
+<stop offset="1" style="stop-color:#C8CACC"/>
</linearGradient>
<path d="M34.172,24.738L49.715,10.05H10.251l15.521,14.472v7.094L3.479,9.755 C2.829,9.315,2.55,8.527,2.777,7.787s0.9-1.237,1.676-1.237h51.094c0.775,0,1.449,0.497,1.676,1.237s-0.053,1.528-0.693,1.962 L34.172,31.855V24.738z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.7363" x2="45.7363" y1="7.9927" y2="30.6518">
- <stop offset="0" style="stop-color:#68696B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#68696B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M57.148,7.602c-0.129,0.295-0.336,0.557-0.619,0.748L34.172,30.455v1.4L56.529,9.749 c0.641-0.434,0.92-1.222,0.693-1.962C57.203,7.723,57.176,7.662,57.148,7.602z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.2354" x2="14.2354" y1="7.9922" y2="30.666">
- <stop offset="0" style="stop-color:#68696B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#68696B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M2.851,7.6C2.825,7.662,2.797,7.723,2.777,7.787C2.55,8.527,2.829,9.315,3.479,9.755l22.293,21.86 v-1.4L3.479,8.354C3.191,8.16,2.982,7.896,2.851,7.6z" fill="url(#SVGID_5_)"/>
<path d="M2.777,8.487c0.227-0.74,0.9-1.237,1.676-1.237h51.094c0.775,0,1.449,0.497,1.676,1.237 c0.018,0.058,0.027,0.116,0.037,0.174c0.061-0.283,0.053-0.582-0.037-0.874c-0.227-0.74-0.9-1.237-1.676-1.237H4.453 c-0.775,0-1.449,0.497-1.676,1.237c-0.09,0.291-0.098,0.59-0.038,0.873C2.75,8.603,2.759,8.545,2.777,8.487z" fill="#FFFFFF"/>
-<path d="M32.072,53.45h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.829,32.846,53.45,32.072,53.45z" opacity="0.4"/>
-<path d="M32.072,52.736h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.115,32.846,52.736,32.072,52.736z" opacity="0.2"/>
-<rect height="0.7" opacity="0.3" width="7" x="26.472" y="10.75"/>
-<rect height="0.7" opacity="0.2" width="7" x="26.472" y="11.45"/>
-<rect height="2.8" opacity="0.1" width="7" x="26.472" y="10.75"/>
+<path d="M32.072,53.45h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.829,32.846,53.45,32.072,53.45z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M32.072,52.736h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.115,32.846,52.736,32.072,52.736z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill-opacity="0.3" height="0.7" stroke-opacity="0.3" width="7" x="26.472" y="10.75"/>
+<rect fill-opacity="0.2" height="0.7" stroke-opacity="0.2" width="7" x="26.472" y="11.45"/>
+<rect fill-opacity="0.1" height="2.8" stroke-opacity="0.1" width="7" x="26.472" y="10.75"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(2 0 0 2 0 0)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<rect height="33.866" opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
+<rect fill-opacity="0.35" height="33.866" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="260" x2="284" y1="655.9761" y2="655.9761">
- <stop offset="0" style="stop-color:#FF4D00"/>
- <stop offset="0.8424" style="stop-color:#CC1414"/>
- <stop offset="1" style="stop-color:#FF4D00"/>
+<stop offset="0" style="stop-color:#FF4D00"/>
+<stop offset="0.8424" style="stop-color:#CC1414"/>
+<stop offset="1" style="stop-color:#FF4D00"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="25.809,26.431 3,4.177 4.191,2.956 27,25.21 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_network_settings.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_network_settings.svg Thu May 27 13:10:59 2010 +0300
@@ -1,72 +1,69 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="26.4722" x2="33.4727" y1="32.4502" y2="32.4502">
- <stop offset="0" style="stop-color:#686E70"/>
- <stop offset="0.0788" style="stop-color:#A8B1B3"/>
- <stop offset="0.3152" style="stop-color:#FFFFFF"/>
- <stop offset="0.7333" style="stop-color:#989C9E"/>
- <stop offset="1" style="stop-color:#C6CBCC"/>
+<stop offset="0" style="stop-color:#686E70"/>
+<stop offset="0.0788" style="stop-color:#A8B1B3"/>
+<stop offset="0.3152" style="stop-color:#FFFFFF"/>
+<stop offset="0.7333" style="stop-color:#989C9E"/>
+<stop offset="1" style="stop-color:#C6CBCC"/>
</linearGradient>
<path d="M26.472,10.75v42.014c0,0.766,0.626,1.387,1.399,1.387h4.201c0.773,0,1.4-0.621,1.4-1.387V10.75 H26.472z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="5.6274" y2="33.0842">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<path d="M57.893,7.582c-0.316-1.029-1.268-1.732-2.346-1.732H30.322h-0.35H4.453 c-1.078,0-2.029,0.703-2.345,1.732c-0.316,1.029,0.078,2.145,0.971,2.747l23.394,22.586v-9.161L12.455,10.75h17.518h0.35h17.223 L33.473,23.975v9.074l23.449-22.72C57.814,9.727,58.207,8.611,57.893,7.582z" fill="url(#SVGID_2_)"/>
-<path d="M2.108,8.384C2.423,7.354,3.375,6.55,4.453,6.55h25.52h0.35h25.225 c1.078,0,2.029,0.804,2.346,1.834c0.033,0.106,0.053,0.214,0.07,0.322c0.063-0.368,0.043-0.751-0.07-1.124 c-0.316-1.029-1.268-1.732-2.346-1.732H30.322h-0.35H4.453c-1.078,0-2.029,0.703-2.345,1.732C1.993,7.955,1.975,8.338,2.037,8.706 C2.054,8.598,2.075,8.49,2.108,8.384z" fill="#FFFFFF" opacity="0.6"/>
-<polygon fill="#FFFFFF" opacity="0.6" points="34.184,24.717 48.693,10.742 47.58,10.742 34.184,23.428 "/>
-<polygon fill="#FFFFFF" opacity="0.6" points="11.317,10.753 25.783,24.498 25.783,23.216 12.451,10.753 "/>
+<path d="M2.108,8.384C2.423,7.354,3.375,6.55,4.453,6.55h25.52h0.35h25.225 c1.078,0,2.029,0.804,2.346,1.834c0.033,0.106,0.053,0.214,0.07,0.322c0.063-0.368,0.043-0.751-0.07-1.124 c-0.316-1.029-1.268-1.732-2.346-1.732H30.322h-0.35H4.453c-1.078,0-2.029,0.703-2.345,1.732C1.993,7.955,1.975,8.338,2.037,8.706 C2.054,8.598,2.075,8.49,2.108,8.384z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<polygon fill="#FFFFFF" fill-opacity="0.6" points="34.184,24.717 48.693,10.742 47.58,10.742 34.184,23.428 " stroke-opacity="0.6"/>
+<polygon fill="#FFFFFF" fill-opacity="0.6" points="11.317,10.753 25.783,24.498 25.783,23.216 12.451,10.753 " stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9995" x2="29.9995" y1="6.481" y2="32.1174">
- <stop offset="0" style="stop-color:#EBECF0"/>
- <stop offset="0.5" style="stop-color:#BBBCBF"/>
- <stop offset="0.5" style="stop-color:#A4A5A8"/>
- <stop offset="1" style="stop-color:#C8CACC"/>
+<stop offset="0" style="stop-color:#EBECF0"/>
+<stop offset="0.5" style="stop-color:#BBBCBF"/>
+<stop offset="0.5" style="stop-color:#A4A5A8"/>
+<stop offset="1" style="stop-color:#C8CACC"/>
</linearGradient>
<path d="M34.172,24.738L49.715,10.05H10.251l15.521,14.472v7.094L3.479,9.755 C2.829,9.315,2.55,8.527,2.777,7.787s0.9-1.237,1.676-1.237h51.094c0.775,0,1.449,0.497,1.676,1.237s-0.053,1.528-0.693,1.962 L34.172,31.855V24.738z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.7363" x2="45.7363" y1="7.9927" y2="30.6518">
- <stop offset="0" style="stop-color:#68696B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#68696B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M57.148,7.602c-0.129,0.295-0.336,0.557-0.619,0.748L34.172,30.455v1.4L56.529,9.749 c0.641-0.434,0.92-1.222,0.693-1.962C57.203,7.723,57.176,7.662,57.148,7.602z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.2354" x2="14.2354" y1="7.9922" y2="30.666">
- <stop offset="0" style="stop-color:#68696B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#68696B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M2.851,7.6C2.825,7.662,2.797,7.723,2.777,7.787C2.55,8.527,2.829,9.315,3.479,9.755l22.293,21.86 v-1.4L3.479,8.354C3.191,8.16,2.982,7.896,2.851,7.6z" fill="url(#SVGID_5_)"/>
<path d="M2.777,8.487c0.227-0.74,0.9-1.237,1.676-1.237h51.094c0.775,0,1.449,0.497,1.676,1.237 c0.018,0.058,0.027,0.116,0.037,0.174c0.061-0.283,0.053-0.582-0.037-0.874c-0.227-0.74-0.9-1.237-1.676-1.237H4.453 c-0.775,0-1.449,0.497-1.676,1.237c-0.09,0.291-0.098,0.59-0.038,0.873C2.75,8.603,2.759,8.545,2.777,8.487z" fill="#FFFFFF"/>
-<path d="M32.072,53.45h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.829,32.846,53.45,32.072,53.45z" opacity="0.4"/>
-<path d="M32.072,52.736h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.115,32.846,52.736,32.072,52.736z" opacity="0.2"/>
-<rect height="0.7" opacity="0.3" width="7" x="26.472" y="10.75"/>
-<rect height="0.7" opacity="0.2" width="7" x="26.472" y="11.45"/>
-<rect height="2.8" opacity="0.1" width="7" x="26.472" y="10.75"/>
+<path d="M32.072,53.45h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.829,32.846,53.45,32.072,53.45z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M32.072,52.736h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.115,32.846,52.736,32.072,52.736z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill-opacity="0.3" height="0.7" stroke-opacity="0.3" width="7" x="26.472" y="10.75"/>
+<rect fill-opacity="0.2" height="0.7" stroke-opacity="0.2" width="7" x="26.472" y="11.45"/>
+<rect fill-opacity="0.1" height="2.8" stroke-opacity="0.1" width="7" x="26.472" y="10.75"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
-<path d="M15,29.505c-0.657,0-1.337-0.048-2.019-0.144l-0.594-0.082l-0.435-1.304c-0.171-0.517-0.3-1.313-0.3-1.854 v-0.687c-0.006-0.031-0.063-0.11-0.102-0.131l-1.339-0.548l-0.099-0.032c-0.06,0-0.112,0.021-0.127,0.031l-0.479,0.479 c-0.383,0.383-1.038,0.855-1.522,1.098l-1.232,0.612l-0.477-0.36c-1.081-0.815-2.042-1.775-2.856-2.854L3.057,23.25l0.616-1.23 c0.246-0.489,0.718-1.144,1.099-1.523l0.484-0.485c0.018-0.026,0.033-0.119,0.021-0.157L4.72,18.511 c-0.041-0.095-0.118-0.151-0.159-0.158l-0.676,0.001c-0.545,0-1.343-0.13-1.855-0.302l-1.303-0.434l-0.083-0.594 C0.548,16.346,0.5,15.666,0.5,15.005s0.048-1.34,0.144-2.02l0.083-0.594l1.305-0.434c0.507-0.171,1.306-0.301,1.853-0.301h0.687 c0.031-0.006,0.108-0.062,0.127-0.099l0.553-1.344c0.04-0.098,0.025-0.19,0-0.224L4.772,9.511C4.387,9.125,3.915,8.47,3.674,7.987 L3.059,6.758L3.42,6.279c0.814-1.079,1.774-2.04,2.855-2.855l0.479-0.362l1.231,0.617c0.486,0.244,1.14,0.715,1.522,1.097 l0.487,0.485c0.008,0.005,0.06,0.025,0.119,0.025l0.034-0.017l0.064-0.014l1.285-0.531c0.094-0.04,0.15-0.118,0.156-0.16l0-0.676 c0-0.543,0.129-1.34,0.301-1.854l0.435-1.304l0.594-0.083c0.676-0.095,1.356-0.143,2.02-0.143c0.662,0,1.342,0.048,2.02,0.143 l0.595,0.083l0.434,1.305c0.17,0.515,0.301,1.312,0.301,1.853v0.687c0.006,0.031,0.063,0.11,0.1,0.129l1.341,0.551l0.098,0.031 c0.061,0,0.113-0.02,0.129-0.031l0.478-0.478c0.385-0.385,1.038-0.856,1.521-1.098l1.233-0.613l0.476,0.36 c1.08,0.813,2.041,1.773,2.856,2.855l0.362,0.479L26.27,8.106c-0.253,0.506-0.391,0.758-1.04,1.407L24.744,10 c-0.017,0.026-0.032,0.119-0.021,0.158l0.557,1.344c0.04,0.093,0.117,0.15,0.158,0.156l0.678,0c0.544,0,1.343,0.13,1.854,0.302 l1.303,0.433l0.083,0.594c0.095,0.677,0.144,1.356,0.144,2.021c0,0.666-0.049,1.345-0.144,2.021l-0.085,0.593l-1.303,0.434 c-0.508,0.172-1.305,0.302-1.853,0.302h-0.688c-0.032,0.006-0.109,0.063-0.131,0.102l-0.547,1.339 c-0.04,0.097-0.026,0.191-0.002,0.226l0.479,0.479c0.383,0.381,0.857,1.038,1.099,1.525l0.613,1.226l-0.36,0.479 c-0.815,1.08-1.774,2.041-2.854,2.855l-0.479,0.361l-1.231-0.615c-0.485-0.244-1.14-0.716-1.521-1.097l-0.487-0.486 c-0.006-0.004-0.059-0.023-0.119-0.023l-0.031,0.017l-0.066,0.015l-1.284,0.529c-0.094,0.04-0.15,0.118-0.156,0.159v0.677 c0,0.54-0.129,1.337-0.301,1.853l-0.434,1.306l-0.595,0.082C16.335,29.457,15.656,29.505,15,29.505L15,29.505z M15,11.208 c-2.094,0-3.798,1.704-3.798,3.798c0,2.094,1.704,3.798,3.798,3.798s3.797-1.704,3.797-3.798C18.797,12.912,17.094,11.208,15,11.208 L15,11.208z" opacity="0.35"/>
+<path d="M15,29.505c-0.657,0-1.337-0.048-2.019-0.144l-0.594-0.082l-0.435-1.304c-0.171-0.517-0.3-1.313-0.3-1.854 v-0.687c-0.006-0.031-0.063-0.11-0.102-0.131l-1.339-0.548l-0.099-0.032c-0.06,0-0.112,0.021-0.127,0.031l-0.479,0.479 c-0.383,0.383-1.038,0.855-1.522,1.098l-1.232,0.612l-0.477-0.36c-1.081-0.815-2.042-1.775-2.856-2.854L3.057,23.25l0.616-1.23 c0.246-0.489,0.718-1.144,1.099-1.523l0.484-0.485c0.018-0.026,0.033-0.119,0.021-0.157L4.72,18.511 c-0.041-0.095-0.118-0.151-0.159-0.158l-0.676,0.001c-0.545,0-1.343-0.13-1.855-0.302l-1.303-0.434l-0.083-0.594 C0.548,16.346,0.5,15.666,0.5,15.005s0.048-1.34,0.144-2.02l0.083-0.594l1.305-0.434c0.507-0.171,1.306-0.301,1.853-0.301h0.687 c0.031-0.006,0.108-0.062,0.127-0.099l0.553-1.344c0.04-0.098,0.025-0.19,0-0.224L4.772,9.511C4.387,9.125,3.915,8.47,3.674,7.987 L3.059,6.758L3.42,6.279c0.814-1.079,1.774-2.04,2.855-2.855l0.479-0.362l1.231,0.617c0.486,0.244,1.14,0.715,1.522,1.097 l0.487,0.485c0.008,0.005,0.06,0.025,0.119,0.025l0.034-0.017l0.064-0.014l1.285-0.531c0.094-0.04,0.15-0.118,0.156-0.16l0-0.676 c0-0.543,0.129-1.34,0.301-1.854l0.435-1.304l0.594-0.083c0.676-0.095,1.356-0.143,2.02-0.143c0.662,0,1.342,0.048,2.02,0.143 l0.595,0.083l0.434,1.305c0.17,0.515,0.301,1.312,0.301,1.853v0.687c0.006,0.031,0.063,0.11,0.1,0.129l1.341,0.551l0.098,0.031 c0.061,0,0.113-0.02,0.129-0.031l0.478-0.478c0.385-0.385,1.038-0.856,1.521-1.098l1.233-0.613l0.476,0.36 c1.08,0.813,2.041,1.773,2.856,2.855l0.362,0.479L26.27,8.106c-0.253,0.506-0.391,0.758-1.04,1.407L24.744,10 c-0.017,0.026-0.032,0.119-0.021,0.158l0.557,1.344c0.04,0.093,0.117,0.15,0.158,0.156l0.678,0c0.544,0,1.343,0.13,1.854,0.302 l1.303,0.433l0.083,0.594c0.095,0.677,0.144,1.356,0.144,2.021c0,0.666-0.049,1.345-0.144,2.021l-0.085,0.593l-1.303,0.434 c-0.508,0.172-1.305,0.302-1.853,0.302h-0.688c-0.032,0.006-0.109,0.063-0.131,0.102l-0.547,1.339 c-0.04,0.097-0.026,0.191-0.002,0.226l0.479,0.479c0.383,0.381,0.857,1.038,1.099,1.525l0.613,1.226l-0.36,0.479 c-0.815,1.08-1.774,2.041-2.854,2.855l-0.479,0.361l-1.231-0.615c-0.485-0.244-1.14-0.716-1.521-1.097l-0.487-0.486 c-0.006-0.004-0.059-0.023-0.119-0.023l-0.031,0.017l-0.066,0.015l-1.284,0.529c-0.094,0.04-0.15,0.118-0.156,0.159v0.677 c0,0.54-0.129,1.337-0.301,1.853l-0.434,1.306l-0.595,0.082C16.335,29.457,15.656,29.505,15,29.505L15,29.505z M15,11.208 c-2.094,0-3.798,1.704-3.798,3.798c0,2.094,1.704,3.798,3.798,3.798s3.797-1.704,3.797-3.798C18.797,12.912,17.094,11.208,15,11.208 L15,11.208z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="282.4795" x2="282.4795" y1="-361.4912" y2="-388.438">
- <stop offset="0.1" style="stop-color:#FFFFFF"/>
- <stop offset="0.74" style="stop-color:#929497"/>
- <stop offset="1" style="stop-color:#C8C8C8"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.1" style="stop-color:#FFFFFF"/>
+<stop offset="0.74" style="stop-color:#929497"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
</linearGradient>
<path d="M26.116,12.624H25.43c-0.437,0-0.906-0.339-1.042-0.754l-0.531-1.285 c-0.196-0.389-0.105-0.96,0.204-1.269l0.485-0.486c0.615-0.615,0.659-0.759,0.916-1.271l0.349-0.695 c-0.761-1.008-1.659-1.906-2.668-2.666l-0.694,0.346c-0.389,0.195-0.961,0.608-1.271,0.917l-0.485,0.486 c-0.31,0.309-0.882,0.401-1.271,0.203L18.138,5.62c-0.417-0.137-0.755-0.608-0.755-1.044V3.889c0-0.437-0.113-1.134-0.251-1.548 l-0.246-0.735C16.269,1.519,15.641,1.472,15,1.472c-0.641,0-1.27,0.047-1.886,0.133L12.869,2.34 c-0.138,0.415-0.251,1.111-0.251,1.548v0.687c0,0.436-0.339,0.906-0.754,1.042l-1.285,0.53C10.19,6.346,9.62,6.254,9.311,5.946 L8.824,5.46C8.515,5.151,7.942,4.739,7.553,4.543L6.858,4.195C5.851,4.956,4.953,5.854,4.192,6.862l0.347,0.694 c0.195,0.391,0.608,0.963,0.917,1.272l0.486,0.486c0.309,0.309,0.4,0.88,0.202,1.269l-0.531,1.286 c-0.136,0.415-0.605,0.754-1.042,0.754H3.884c-0.438,0-1.134,0.112-1.548,0.252l-0.736,0.245c-0.086,0.617-0.134,1.245-0.134,1.886 c0,0.64,0.047,1.269,0.134,1.885l0.736,0.246c0.414,0.139,1.11,0.251,1.548,0.251h0.687c0.438,0,0.906,0.34,1.042,0.755l0.53,1.284 c0.198,0.389,0.106,0.961-0.203,1.269l-0.486,0.486c-0.309,0.308-0.721,0.882-0.917,1.271L4.19,23.146 c0.761,1.008,1.659,1.905,2.667,2.665l0.694-0.345c0.391-0.196,0.963-0.608,1.271-0.917l0.486-0.485 c0.309-0.309,0.881-0.401,1.27-0.203l1.284,0.529c0.416,0.138,0.755,0.608,0.755,1.044v0.687c0,0.438,0.113,1.133,0.251,1.549 l0.245,0.734c0.617,0.086,1.245,0.134,1.886,0.134c0.64,0,1.267-0.048,1.886-0.134l0.244-0.734c0.138-0.416,0.251-1.111,0.251-1.549 v-0.687c0-0.438,0.34-0.906,0.755-1.043l1.284-0.53c0.391-0.197,0.959-0.105,1.269,0.203l0.485,0.485 c0.31,0.309,0.882,0.721,1.272,0.917l0.695,0.347c1.008-0.76,1.904-1.657,2.665-2.666l-0.347-0.693 c-0.194-0.391-0.608-0.964-0.918-1.271l-0.483-0.486c-0.31-0.309-0.4-0.88-0.204-1.27l0.529-1.284 c0.14-0.416,0.607-0.755,1.044-0.755h0.688c0.435,0,1.132-0.111,1.547-0.251l0.736-0.246c0.087-0.615,0.134-1.245,0.134-1.885 c0-0.641-0.047-1.269-0.134-1.886l-0.736-0.245C27.249,12.736,26.553,12.624,26.116,12.624z M15,19.771 c-2.632,0-4.765-2.133-4.765-4.765c0-2.631,2.132-4.765,4.765-4.765c2.63,0,4.764,2.134,4.764,4.765 C19.764,17.638,17.63,19.771,15,19.771z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="277.6816" x2="287.2746" y1="-377.2241" y2="-377.2241">
- <stop offset="0" style="stop-color:#7A7A7A"/>
- <stop offset="0.5" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<path d="M15,19.771c2.63,0,4.764-2.133,4.764-4.765c0-0.125-0.01-0.246-0.018-0.367 c-0.188,2.459-2.239,4.398-4.746,4.398c-2.508,0-4.558-1.939-4.746-4.398c-0.01,0.122-0.019,0.243-0.019,0.367 C10.235,17.638,12.367,19.771,15,19.771z" fill="url(#SVGID_2__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="282.4805" x2="282.4805" y1="-383.0635" y2="-366.7921">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.52" style="stop-color:#C8C8C8"/>
- <stop offset="1" style="stop-color:#929497"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.52" style="stop-color:#C8C8C8"/>
+<stop offset="1" style="stop-color:#929497"/>
</linearGradient>
<path d="M15,6.52c-4.687,0-8.487,3.8-8.487,8.487s3.8,8.486,8.487,8.486s8.487-3.799,8.487-8.486 S19.687,6.52,15,6.52z M15,21.563c-3.621,0-6.559-2.935-6.559-6.557c0-3.622,2.937-6.558,6.559-6.558 c3.62,0,6.557,2.936,6.557,6.558C21.557,18.629,18.619,21.563,15,21.563z" fill="url(#SVGID_3__)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_new_message.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_new_message.svg Thu May 27 13:10:59 2010 +0300
@@ -1,75 +1,71 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="9.8965" y2="49.8018">
- <stop offset="0" style="stop-color:#FEEFA7"/>
- <stop offset="0.5091" style="stop-color:#FFC501"/>
- <stop offset="1" style="stop-color:#F6A800"/>
+<stop offset="0" style="stop-color:#FEEFA7"/>
+<stop offset="0.5091" style="stop-color:#FFC501"/>
+<stop offset="1" style="stop-color:#F6A800"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="58,50.4 2,50.4 2,9.6 30.463,10.4 58,9.6 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.7017" y2="50.6398">
- <stop offset="0" style="stop-color:#F7AC00"/>
- <stop offset="0.3394" style="stop-color:#FFF8DB"/>
- <stop offset="1" style="stop-color:#FFE066"/>
+<stop offset="0" style="stop-color:#F7AC00"/>
+<stop offset="0.3394" style="stop-color:#FFF8DB"/>
+<stop offset="1" style="stop-color:#FFE066"/>
</linearGradient>
<path d="M57.385,10.22v39.56H2.613V10.22H57.385 M58,9.6L29.802,9.936L2,9.6v40.8h56V9.6L58,9.6z" fill="url(#SVGID_2_)"/>
-<polygon fill="#FBAB13" opacity="0.3" points="2,49.71 58,49.71 58,48.916 29.998,24.328 2,48.916 "/>
-<polygon fill="#F18800" opacity="0.3" points="2,50.4 58,50.4 58,49.603 29.998,25.019 2,49.603 "/>
+<polygon fill="#FBAB13" fill-opacity="0.3" points="2,49.71 58,49.71 58,48.916 29.998,24.328 2,48.916 " stroke-opacity="0.3"/>
+<polygon fill="#F18800" fill-opacity="0.3" points="2,50.4 58,50.4 58,49.603 29.998,25.019 2,49.603 " stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -1801.0049 1240.3164)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1831.0049" x2="-1831.0049" y1="1214.7607" y2="1190.0703">
- <stop offset="0" style="stop-color:#F98A00"/>
- <stop offset="0.7273" style="stop-color:#FCBC3C"/>
- <stop offset="1" style="stop-color:#FFE36A"/>
+<stop offset="0" style="stop-color:#F98A00"/>
+<stop offset="0.7273" style="stop-color:#FCBC3C"/>
+<stop offset="1" style="stop-color:#FFE36A"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="58,50.38 29.998,25.689 2,50.38 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="25.4995" y2="51.0736">
- <stop offset="0" style="stop-color:#FFF1B5"/>
- <stop offset="1" style="stop-color:#FFE066"/>
+<stop offset="0" style="stop-color:#FFF1B5"/>
+<stop offset="1" style="stop-color:#FFE066"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="58,50.38 29.998,25.689 2,50.38 29.998,26.563 "/>
-<polygon fill="#F18800" opacity="0.3" points="30.057,10.4 2,9.6 29.998,38.617 58,9.6 "/>
-<polygon fill="#C26D00" opacity="0.4" points="30.006,10.4 2,9.6 29.998,37.091 58,9.6 "/>
-<polygon fill="#AB6100" opacity="0.4" points="29.904,10.297 2,9.6 29.998,35.802 58,9.6 "/>
+<polygon fill="#F18800" fill-opacity="0.3" points="30.057,10.4 2,9.6 29.998,38.617 58,9.6 " stroke-opacity="0.3"/>
+<polygon fill="#C26D00" fill-opacity="0.4" points="30.006,10.4 2,9.6 29.998,37.091 58,9.6 " stroke-opacity="0.4"/>
+<polygon fill="#AB6100" fill-opacity="0.4" points="29.904,10.297 2,9.6 29.998,35.802 58,9.6 " stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="32.9619" y2="8.0088">
- <stop offset="0" style="stop-color:#FFDA33"/>
- <stop offset="0.25" style="stop-color:#FFE692"/>
- <stop offset="1" style="stop-color:#FFFBF8"/>
+<stop offset="0" style="stop-color:#FFDA33"/>
+<stop offset="0.25" style="stop-color:#FFE692"/>
+<stop offset="1" style="stop-color:#FFFBF8"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="2,9.6 29.998,34.29 58,9.6 "/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 0)">
-<defs>
-</defs>
<polygon fill="none" points="5.104,0 5.044,0.225 0,0.225 0,30.225 13.919,30.225 14.333,30.639 14.747,30.225 30,30.225 30,0.225 5.942,0.225 "/>
-<polygon opacity="0.35" points="22.007,7.349 11.844,17.512 15.771,2.858 5.104,0 0.374,17.655 9.308,20.049 6.525,22.831 14.333,30.639 29.814,15.156 "/>
+<polygon fill-opacity="0.35" points="22.007,7.349 11.844,17.512 15.771,2.858 5.104,0 0.374,17.655 9.308,20.049 6.525,22.831 14.333,30.639 29.814,15.156 " stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="10.1621" x2="6.0926" y1="2.1929" y2="17.9056">
- <stop offset="0" style="stop-color:#FFA959"/>
- <stop offset="0.703" style="stop-color:#CA3522"/>
- <stop offset="1" style="stop-color:#F08849"/>
+<stop offset="0" style="stop-color:#FFA959"/>
+<stop offset="0.703" style="stop-color:#CA3522"/>
+<stop offset="1" style="stop-color:#F08849"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="1.599,16.948 5.812,1.225 14.546,3.565 10.333,19.288 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="9.877" x2="6.2598" y1="3.2612" y2="17.2775">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="9.693,18.181 2.706,16.309 6.45,2.333 13.438,4.204 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="25.0566" x2="11.1526" y1="11.9385" y2="26.1817">
- <stop offset="0" style="stop-color:#FFA959"/>
- <stop offset="0.703" style="stop-color:#CA3522"/>
- <stop offset="1" style="stop-color:#F08849"/>
+<stop offset="0" style="stop-color:#FFA959"/>
+<stop offset="0.703" style="stop-color:#CA3522"/>
+<stop offset="1" style="stop-color:#F08849"/>
</linearGradient>
<polygon fill="url(#SVGID_3__)" points="7.939,22.831 22.007,8.763 28.4,15.156 14.333,29.225 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="24.5723" x2="11.9119" y1="12.5332" y2="25.3066">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
</linearGradient>
<polygon fill="url(#SVGID_4__)" points="14.333,27.946 9.218,22.831 22.007,10.042 27.122,15.156 "/>
<rect fill="none" height="30" width="30" y="0.225"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_new_voice_message.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_new_voice_message.svg Thu May 27 13:10:59 2010 +0300
@@ -1,74 +1,58 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="4.39" y2="58.45">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="1" stop-color="#A8A8A8"/>
-
</linearGradient>
<path d="M17.36,1s6.154,1.286,10.78,5.642c-13.61,0.95-24.36,12.29-24.36,26.14,0,14.48,11.74,26.22,26.22,26.22s26.22-11.93,26.22-26.22c0-14.28-13.11-31.78-38.86-31.78z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="36.79" x2="36.79" y1="5.052" y2="31.46">
-
<stop offset="0" stop-color="#FFFFFF"/>
-
<stop offset="1" stop-color="#CDD3D5"/>
-
</linearGradient>
<path d="M56.15,32.73l0.066,0.055c0-14.28-13.11-31.78-38.86-31.78,0,0,36.7,2.018,38.79,31.73z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="9.028" y2="57.83">
-
<stop offset="0" stop-color="#F5F5F5"/>
-
<stop offset="0.05" stop-color="#F5F5F5"/>
-
<stop offset="0.7818" stop-color="#CCCCCC"/>
-
<stop offset="1" stop-color="#D1D1D1"/>
-
</linearGradient>
<path d="M54.52,33.18c0,13.54-10.98,24.52-24.52,24.52s-24.52-10.98-24.52-24.52c-0.003-13.54,10.98-24.52,24.52-24.52s24.52,10.98,24.52,24.52z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="24.82" y2="40.68">
-
<stop offset="0" stop-color="#FF7236"/>
-
<stop offset="1" stop-color="#D11414"/>
-
</linearGradient>
<path d="M40.38,24.82c-4.26,0-7.725,3.465-7.725,7.72,0,1.766,0.602,3.385,1.598,4.686h-8.513c0.998-1.301,1.598-2.92,1.598-4.686,0-4.255-3.465-7.72-7.724-7.72-4.26,0-7.726,3.465-7.726,7.72,0,4.262,3.466,7.727,7.726,7.727h20.77c4.26,0,7.723-3.465,7.723-7.727-0.01-4.25-3.48-7.72-7.74-7.72zm-25.45,7.72c0-2.58,2.101-4.681,4.685-4.681,2.583,0,4.685,2.102,4.685,4.681,0,2.584-2.102,4.686-4.685,4.686-2.59,0-4.69-2.1-4.69-4.69zm25.45,4.69c-2.584,0-4.686-2.102-4.686-4.686,0-2.58,2.102-4.681,4.686-4.681,2.583,0,4.684,2.102,4.684,4.681,0.01,2.59-2.09,4.69-4.68,4.69z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 0)">
-<defs>
-</defs>
<polygon fill="none" points="5.104,0 5.044,0.225 0,0.225 0,30.225 13.919,30.225 14.333,30.639 14.747,30.225 30,30.225 30,0.225 5.942,0.225 "/>
-<polygon opacity="0.35" points="22.007,7.349 11.844,17.512 15.771,2.858 5.104,0 0.374,17.655 9.308,20.049 6.525,22.831 14.333,30.639 29.814,15.156 "/>
+<polygon fill-opacity="0.35" points="22.007,7.349 11.844,17.512 15.771,2.858 5.104,0 0.374,17.655 9.308,20.049 6.525,22.831 14.333,30.639 29.814,15.156 " stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="10.1621" x2="6.0926" y1="2.1929" y2="17.9056">
- <stop offset="0" style="stop-color:#FFA959"/>
- <stop offset="0.703" style="stop-color:#CA3522"/>
- <stop offset="1" style="stop-color:#F08849"/>
+<stop offset="0" style="stop-color:#FFA959"/>
+<stop offset="0.703" style="stop-color:#CA3522"/>
+<stop offset="1" style="stop-color:#F08849"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="1.599,16.948 5.812,1.225 14.546,3.565 10.333,19.288 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="9.877" x2="6.2598" y1="3.2612" y2="17.2775">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="9.693,18.181 2.706,16.309 6.45,2.333 13.438,4.204 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="25.0566" x2="11.1526" y1="11.9385" y2="26.1817">
- <stop offset="0" style="stop-color:#FFA959"/>
- <stop offset="0.703" style="stop-color:#CA3522"/>
- <stop offset="1" style="stop-color:#F08849"/>
+<stop offset="0" style="stop-color:#FFA959"/>
+<stop offset="0.703" style="stop-color:#CA3522"/>
+<stop offset="1" style="stop-color:#F08849"/>
</linearGradient>
<polygon fill="url(#SVGID_3__)" points="7.939,22.831 22.007,8.763 28.4,15.156 14.333,29.225 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="24.5723" x2="11.9119" y1="12.5332" y2="25.3066">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
</linearGradient>
<polygon fill="url(#SVGID_4__)" points="14.333,27.946 9.218,22.831 22.007,10.042 27.122,15.156 "/>
<rect fill="none" height="30" width="30" y="0.225"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_non_default.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_non_default.svg Thu May 27 13:10:59 2010 +0300
@@ -1,161 +1,159 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.3877" x2="29.3877" y1="52.6611" y2="57.6064">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.7091" style="stop-color:#686E70"/>
- <stop offset="1" style="stop-color:#A6B0B3"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#686E70"/>
+<stop offset="1" style="stop-color:#A6B0B3"/>
</linearGradient>
<path d="M52.041,56.938c0,0.339-0.274,0.612-0.612,0.612H7.347c-0.338,0-0.612-0.273-0.612-0.612v-3.673 c0-0.339,0.274-0.612,0.612-0.612h44.082c0.338,0,0.612,0.273,0.612,0.612V56.938z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="10.4082" x2="49.5918" y1="22.6533" y2="22.6533">
- <stop offset="0" style="stop-color:#B4BDBF"/>
- <stop offset="0.2667" style="stop-color:#E5EBED"/>
- <stop offset="0.703" style="stop-color:#8D9699"/>
- <stop offset="1" style="stop-color:#B7BDBF"/>
+<stop offset="0" style="stop-color:#B4BDBF"/>
+<stop offset="0.2667" style="stop-color:#E5EBED"/>
+<stop offset="0.703" style="stop-color:#8D9699"/>
+<stop offset="1" style="stop-color:#B7BDBF"/>
</linearGradient>
<path d="M48.113,2.449H11.889c-0.815,0-1.48,0.668-1.48,1.485v38.923h39.184V3.935 C49.592,3.117,48.926,2.449,48.113,2.449z" fill="url(#SVGID_2_)"/>
<path d="M48.113,2.449c0.813,0,1.479,0.668,1.479,1.485v38.923H10.408V3.935c0-0.817,0.666-1.485,1.48-1.485H48.113 M48.113,3.626H11.889c-0.173,0-0.318,0.142-0.318,0.309v37.747H48.43V3.935C48.43,3.768,48.285,3.626,48.113,3.626L48.113,3.626z" fill="#FFFFFF"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="15.5947" y2="6.3742">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#303030"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="9.412" width="32.59" x="13.705" y="6.183"/>
-<rect fill="#FFFFFF" height="1.177" opacity="0.25" width="32.59" x="13.705" y="15.595"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.177" stroke-opacity="0.25" width="32.59" x="13.705" y="15.595"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30.0015" x2="30.0015" y1="7.4082" y2="14.3725">
- <stop offset="0" style="stop-color:#8B8B8B"/>
- <stop offset="1" style="stop-color:#454545"/>
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="7.058" width="30.263" x="14.87" y="7.359"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30.0005" x2="30.0005" y1="8.2974" y2="13.2402">
- <stop offset="0" style="stop-color:#525252"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="4.706" width="27.939" x="16.031" y="8.534"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20.0767" x2="20.0767" y1="9.5928" y2="12.0647">
- <stop offset="0" style="stop-color:#17BFFF"/>
- <stop offset="1" style="stop-color:#0D5186"/>
+<stop offset="0" style="stop-color:#17BFFF"/>
+<stop offset="1" style="stop-color:#0D5186"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="2.354" width="5.848" x="17.153" y="9.711"/>
-<rect fill="#FFFFFF" height="1.176" opacity="0.25" width="5.848" x="17.153" y="9.711"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="5.848" x="17.153" y="9.711"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="28.0029" y2="18.7824">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#303030"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="9.412" width="32.59" x="13.705" y="18.591"/>
-<rect fill="#FFFFFF" height="1.176" opacity="0.25" width="32.59" x="13.705" y="28.003"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="32.59" x="13.705" y="28.003"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.0015" x2="30.0015" y1="19.8154" y2="26.7816">
- <stop offset="0" style="stop-color:#8B8B8B"/>
- <stop offset="1" style="stop-color:#454545"/>
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="7.06" width="30.263" x="14.87" y="19.767"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.0005" x2="30.0005" y1="20.7056" y2="25.6484">
- <stop offset="0" style="stop-color:#525252"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="4.706" width="27.939" x="16.031" y="20.942"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="26.957" x2="31.9189" y1="50.5098" y2="50.5098">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.3212" style="stop-color:#C7C7C7"/>
- <stop offset="0.6848" style="stop-color:#4D4D4D"/>
- <stop offset="0.8545" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<path d="M26.939,48.367v3.674c0,0.338,0.274,0.612,0.612,0.612h3.674c0.338,0,0.612-0.274,0.612-0.612 v-3.674H26.939z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="26.9565" x2="31.918" y1="48.6738" y2="48.6738">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.3212" style="stop-color:#C7C7C7"/>
- <stop offset="0.6848" style="stop-color:#4D4D4D"/>
- <stop offset="0.8545" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<rect fill="url(#SVGID_11_)" height="0.612" width="4.897" x="26.938" y="48.367"/>
<g>
- <rect fill="none" height="60" width="60"/>
+<rect fill="none" height="60" width="60"/>
</g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30.0005" x2="30.0005" y1="48.9316" y2="42.9805">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#303030"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
<rect fill="url(#SVGID_12_)" height="6.122" width="37.996" x="11.002" y="42.857"/>
-<rect height="0.612" opacity="0.5" width="37.996" x="11.002" y="42.857"/>
-<rect height="0.612" opacity="0.2" width="37.996" x="11.002" y="43.47"/>
+<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="42.857"/>
+<rect fill-opacity="0.2" height="0.612" stroke-opacity="0.2" width="37.996" x="11.002" y="43.47"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="12.8589" x2="12.8589" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_13_)" height="4.897" width="2.476" x="11.621" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.8115" x2="17.8115" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_14_)" height="4.897" width="2.476" x="16.574" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.7642" x2="22.7642" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_15_)" height="4.897" width="2.476" x="21.526" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="27.7158" x2="27.7158" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_16_)" height="4.897" width="2.476" x="26.478" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="32.668" x2="32.668" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_17_)" height="4.897" width="2.477" x="31.43" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="37.6211" x2="37.6211" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_18_)" height="4.897" width="2.477" x="36.383" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="42.5723" x2="42.5723" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_19_)" height="4.897" width="2.477" x="41.334" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="47.5254" x2="47.5254" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_20_)" height="4.897" width="2.477" x="46.287" y="44.082"/>
-<rect height="0.612" opacity="0.5" width="37.996" x="11.002" y="48.367"/>
-<rect fill="#CCCCCC" height="0.612" opacity="0.5" width="37.996" x="11.002" y="47.755"/>
-<rect height="0.612" opacity="0.3" width="4.897" x="26.938" y="48.979"/>
-<rect height="0.612" opacity="0.1" width="4.897" x="26.938" y="49.592"/>
-<rect height="4.897" opacity="0.3" width="0.612" x="18.979" y="52.653"/>
-<rect height="4.897" opacity="0.3" width="0.612" x="39.184" y="52.653"/>
-<rect height="4.897" opacity="0.1" width="0.612" x="18.367" y="52.653"/>
-<rect height="4.897" opacity="0.1" width="0.612" x="39.796" y="52.653"/>
+<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="48.367"/>
+<rect fill="#CCCCCC" fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="47.755"/>
+<rect fill-opacity="0.3" height="0.612" stroke-opacity="0.3" width="4.897" x="26.938" y="48.979"/>
+<rect fill-opacity="0.1" height="0.612" stroke-opacity="0.1" width="4.897" x="26.938" y="49.592"/>
+<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="18.979" y="52.653"/>
+<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="39.184" y="52.653"/>
+<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="18.367" y="52.653"/>
+<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="39.796" y="52.653"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="29.3872" x2="29.3872" y1="52.1279" y2="57.9301">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.3212" style="stop-color:#C7C7C7"/>
- <stop offset="0.6848" style="stop-color:#4D4D4D"/>
- <stop offset="0.8545" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<rect fill="url(#SVGID_21_)" height="6.122" width="18.367" x="20.204" y="52.041"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.8979" x2="19.8979" y1="52.1279" y2="57.9301">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.3212" style="stop-color:#C7C7C7"/>
- <stop offset="0.6848" style="stop-color:#4D4D4D"/>
- <stop offset="0.8545" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<path d="M19.592,52.653v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122 C19.866,52.041,19.592,52.314,19.592,52.653z" fill="url(#SVGID_22_)"/>
-<path d="M19.592,52.653v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122C19.866,52.041,19.592,52.314,19.592,52.653z" opacity="0.3"/>
+<path d="M19.592,52.653v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122C19.866,52.041,19.592,52.314,19.592,52.653z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="38.877" x2="38.877" y1="52.1279" y2="57.9301">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.3212" style="stop-color:#C7C7C7"/>
- <stop offset="0.6848" style="stop-color:#4D4D4D"/>
- <stop offset="0.8545" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<path d="M38.571,52.041v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897 C39.184,52.314,38.91,52.041,38.571,52.041z" fill="url(#SVGID_23_)"/>
-<path d="M38.571,52.041v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897C39.184,52.314,38.91,52.041,38.571,52.041z" opacity="0.3"/>
+<path d="M38.571,52.041v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897C39.184,52.314,38.91,52.041,38.571,52.041z" fill-opacity="0.3" stroke-opacity="0.3"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_notes.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_notes.svg Thu May 27 13:10:59 2010 +0300
@@ -1,35 +1,34 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="37.1992" x2="11.6714" y1="17.8169" y2="61.0179">
- <stop offset="0.8303" style="stop-color:#A36F00"/>
- <stop offset="1" style="stop-color:#DE9F01"/>
+<stop offset="0" style="stop-color:#A36F00"/>
+<stop offset="0.8303" style="stop-color:#A36F00"/>
+<stop offset="1" style="stop-color:#DE9F01"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="53" width="51.29" x="4.354" y="3.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.0728" y2="54.3618">
- <stop offset="0" style="stop-color:#FEE47A"/>
- <stop offset="0.3758" style="stop-color:#FFC501"/>
- <stop offset="0.7818" style="stop-color:#F6A800"/>
- <stop offset="1" style="stop-color:#FCBC01"/>
+<stop offset="0" style="stop-color:#FEE47A"/>
+<stop offset="0.3758" style="stop-color:#FFC501"/>
+<stop offset="0.7818" style="stop-color:#F6A800"/>
+<stop offset="1" style="stop-color:#FCBC01"/>
</linearGradient>
<path d="M55.645,54.789h-26.5c0,0-13.249-0.381-20.088-3.348c-4.56-1.977-4.702-4.18-4.702-4.18V3.5h51.29 V54.789z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="3.0728" y2="54.3618">
- <stop offset="0" style="stop-color:#FEF6D8"/>
- <stop offset="0.3758" style="stop-color:#FFDF75"/>
- <stop offset="0.7818" style="stop-color:#FFBA23"/>
- <stop offset="1" style="stop-color:#FCD823"/>
+<stop offset="0" style="stop-color:#FEF6D8"/>
+<stop offset="0.3758" style="stop-color:#FFDF75"/>
+<stop offset="0.7818" style="stop-color:#FFBA23"/>
+<stop offset="1" style="stop-color:#FCD823"/>
</linearGradient>
<path d="M4.354,3.5v43.762c0,0,0.048,0.672,0.854,1.609V4.354h49.58v49.582H19.324 c5.195,0.721,9.82,0.854,9.82,0.854h26.5V3.5H4.354z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="17.8213" x2="16.3792" y1="50.9248" y2="54.7289">
- <stop offset="0" style="stop-color:#FEEDA5"/>
- <stop offset="0.8182" style="stop-color:#FFC501"/>
- <stop offset="1" style="stop-color:#F6A800"/>
+<stop offset="0" style="stop-color:#FEEDA5"/>
+<stop offset="0.8182" style="stop-color:#FFC501"/>
+<stop offset="1" style="stop-color:#F6A800"/>
</linearGradient>
-<path clip-rule="evenodd" d="M31.211,54.789c0,0-15.514-0.139-21.283-8.045 c0,0-4.133,5.094-5.573,0.518C4.967,50.404,10.504,54.902,31.211,54.789z" fill="url(#SVGID_4_)" fill-rule="evenodd"/>
+<path d="M31.211,54.789c0,0-15.514-0.139-21.283-8.045 c0,0-4.133,5.094-5.573,0.518C4.967,50.404,10.504,54.902,31.211,54.789z" fill="url(#SVGID_4_)" fill-rule="evenodd"/>
<rect fill="#FEEDA3" height="0.855" width="42.742" x="8.633" y="39.549"/>
<rect fill="#875703" height="1.709" width="42.742" x="8.633" y="37.84"/>
<rect fill="#FEEDA3" height="0.854" width="42.742" x="8.633" y="31.855"/>
@@ -41,63 +40,61 @@
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path clip-rule="evenodd" d="M29.387,4.245c-0.311-0.683-0.854-1.43-1.527-2.103 c-1.146-1.146-2.387-1.829-3.32-1.829c-0.574,0-0.936,0.242-1.137,0.444L10.791,13.367l0.555,0.554l-8.305,8.304l0.439,0.439 c-0.057,0.029-0.113,0.055-0.168,0.077c-0.318,0.129-0.545,0.145-0.537,0.145l0,0L2.012,22.9l-1.699,6.786l6.047-1.51l0.715-0.198 l0.041-0.734c0.002-0.002,0.016-0.23,0.146-0.559c0.021-0.051,0.045-0.104,0.076-0.165l0.439,0.439l8.305-8.305l0.553,0.553 L29.244,6.602C29.555,6.29,29.988,5.569,29.387,4.245z" fill-rule="evenodd" opacity="0.35"/>
+<path d="M29.387,4.245c-0.311-0.683-0.854-1.43-1.527-2.103 c-1.146-1.146-2.387-1.829-3.32-1.829c-0.574,0-0.936,0.242-1.137,0.444L10.791,13.367l0.555,0.554l-8.305,8.304l0.439,0.439 c-0.057,0.029-0.113,0.055-0.168,0.077c-0.318,0.129-0.545,0.145-0.537,0.145l0,0L2.012,22.9l-1.699,6.786l6.047-1.51l0.715-0.198 l0.041-0.734c0.002-0.002,0.016-0.23,0.146-0.559c0.021-0.051,0.045-0.104,0.076-0.165l0.439,0.439l8.305-8.305l0.553,0.553 L29.244,6.602C29.555,6.29,29.988,5.569,29.387,4.245z" fill-opacity="0.35" fill-rule="evenodd" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-675.0313" x2="-668.7666" y1="184.2666" y2="184.2666">
- <stop offset="0" style="stop-color:#878A8C"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#5B6163"/>
- <stop offset="1" style="stop-color:#959A9C"/>
+<stop offset="0" style="stop-color:#878A8C"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#5B6163"/>
+<stop offset="1" style="stop-color:#959A9C"/>
</linearGradient>
-<path clip-rule="evenodd" d="M27.152,2.85c-1.223-1.223-2.586-1.844-3.043-1.385 L13.313,12.26l4.43,4.429L28.537,5.895C28.996,5.436,28.377,4.072,27.152,2.85z" fill="url(#SVGID_1__)" fill-rule="evenodd"/>
+<path d="M27.152,2.85c-1.223-1.223-2.586-1.844-3.043-1.385 L13.313,12.26l4.43,4.429L28.537,5.895C28.996,5.436,28.377,4.072,27.152,2.85z" fill="url(#SVGID_1__)" fill-rule="evenodd"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-674.248" x2="-669.5498" y1="199.5332" y2="199.5332">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="0.3455" style="stop-color:#969696"/>
- <stop offset="0.7818" style="stop-color:#3B3B3B"/>
- <stop offset="1" style="stop-color:#2B2B2B"/>
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="0.3455" style="stop-color:#969696"/>
+<stop offset="0.7818" style="stop-color:#3B3B3B"/>
+<stop offset="1" style="stop-color:#2B2B2B"/>
</linearGradient>
-<polygon clip-rule="evenodd" fill="url(#SVGID_2__)" fill-rule="evenodd" points="8.33,24.992 5.008,21.672 12.76,13.921 16.082,17.242 "/>
+<polygon fill="url(#SVGID_2__)" fill-rule="evenodd" points="8.33,24.992 5.008,21.672 12.76,13.921 16.082,17.242 "/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.0471 -0.0471 -85.8835 1066.085)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-674.2476" x2="-669.5498" y1="12046.2031" y2="12046.2031">
- <stop offset="0" style="stop-color:#B2B2B2"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.8" style="stop-color:#4D4D4D"/>
- <stop offset="1" style="stop-color:#B2B2B2"/>
+<stop offset="0" style="stop-color:#B2B2B2"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.8" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#B2B2B2"/>
</linearGradient>
-<polygon clip-rule="evenodd" fill="url(#SVGID_3__)" fill-rule="evenodd" points="8.33,24.992 5.008,21.672 4.455,22.225 7.777,25.546 "/>
-<rect clip-rule="evenodd" fill="#020202" fill-rule="evenodd" height="0.782" opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.5849 -4.8019)" width="4.696" x="11.241" y="16.02"/>
-<rect clip-rule="evenodd" fill="#020202" fill-rule="evenodd" height="0.784" opacity="0.5" transform="matrix(0.7072 0.707 -0.707 0.7072 15.353 -5.3564)" width="4.698" x="11.795" y="15.467"/>
+<polygon fill="url(#SVGID_3__)" fill-rule="evenodd" points="8.33,24.992 5.008,21.672 4.455,22.225 7.777,25.546 "/>
+<rect fill="#020202" fill-opacity="0.2" fill-rule="evenodd" height="0.782" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.5849 -4.8019)" width="4.696" x="11.241" y="16.02"/>
+<rect fill="#020202" fill-opacity="0.5" fill-rule="evenodd" height="0.784" stroke-opacity="0.5" transform="matrix(0.7072 0.707 -0.707 0.7072 15.353 -5.3564)" width="4.698" x="11.795" y="15.467"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-674.2476" x2="-669.5503" y1="208.9268" y2="208.9268">
- <stop offset="0" style="stop-color:#878A8C"/>
- <stop offset="0.2606" style="stop-color:#E7EDF0"/>
- <stop offset="0.7455" style="stop-color:#5B6163"/>
- <stop offset="1" style="stop-color:#959A9C"/>
+<stop offset="0" style="stop-color:#878A8C"/>
+<stop offset="0.2606" style="stop-color:#E7EDF0"/>
+<stop offset="0.7455" style="stop-color:#5B6163"/>
+<stop offset="1" style="stop-color:#959A9C"/>
</linearGradient>
<path d="M7.225,24.992l-1.107-1.106l-1.109-1.107c-1.105,1.107-2.213,1.107-2.213,1.107l-1.107,4.427 l4.43-1.106C6.117,27.206,6.117,26.1,7.225,24.992z" fill="url(#SVGID_4__)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-675.0298" x2="-668.7666" y1="176.8291" y2="176.8291">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="0.3455" style="stop-color:#969696"/>
- <stop offset="0.7818" style="stop-color:#3B3B3B"/>
- <stop offset="1" style="stop-color:#2B2B2B"/>
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="0.3455" style="stop-color:#969696"/>
+<stop offset="0.7818" style="stop-color:#3B3B3B"/>
+<stop offset="1" style="stop-color:#2B2B2B"/>
</linearGradient>
-<path clip-rule="evenodd" d="M27.152,2.85c-1.223-1.223-2.586-1.844-3.043-1.385 l-0.277,0.277l4.428,4.43l0.277-0.277C28.996,5.436,28.377,4.072,27.152,2.85z" fill="url(#SVGID_5_)" fill-rule="evenodd"/>
+<path d="M27.152,2.85c-1.223-1.223-2.586-1.844-3.043-1.385 l-0.277,0.277l4.428,4.43l0.277-0.277C28.996,5.436,28.377,4.072,27.152,2.85z" fill="url(#SVGID_5_)" fill-rule="evenodd"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-675.0313" x2="-668.7676" y1="193.2695" y2="193.2695">
- <stop offset="0" style="stop-color:#B2B2B2"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.8" style="stop-color:#4D4D4D"/>
- <stop offset="1" style="stop-color:#B2B2B2"/>
+<stop offset="0" style="stop-color:#B2B2B2"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.8" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#B2B2B2"/>
</linearGradient>
-<polygon clip-rule="evenodd" fill="url(#SVGID_6_)" fill-rule="evenodd" points="16.635,17.795 12.205,13.367 13.313,12.26 17.742,16.688 "/>
-<path clip-rule="evenodd" d="M3.686,23.668l2.648,2.648 c0.086-0.219,0.215-0.461,0.391-0.718l-2.322-2.322C4.145,23.452,3.904,23.58,3.686,23.668z" fill="#020202" fill-rule="evenodd" opacity="0.1"/>
-<path clip-rule="evenodd" d="M6.725,25.599c0.137-0.197,0.293-0.4,0.5-0.606 l-1.107-1.106l-1.109-1.107c-0.205,0.205-0.406,0.362-0.605,0.498L6.725,25.599z" fill="#020202" fill-rule="evenodd" opacity="0.3"/>
+<polygon fill="url(#SVGID_6_)" fill-rule="evenodd" points="16.635,17.795 12.205,13.367 13.313,12.26 17.742,16.688 "/>
+<path d="M3.686,23.668l2.648,2.648 c0.086-0.219,0.215-0.461,0.391-0.718l-2.322-2.322C4.145,23.452,3.904,23.58,3.686,23.668z" fill="#020202" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M6.725,25.599c0.137-0.197,0.293-0.4,0.5-0.606 l-1.107-1.106l-1.109-1.107c-0.205,0.205-0.406,0.362-0.605,0.498L6.725,25.599z" fill="#020202" fill-opacity="0.3" fill-rule="evenodd" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-672.6821" x2="-671.1157" y1="207.7534" y2="207.7534">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="0.3455" style="stop-color:#969696"/>
- <stop offset="0.7818" style="stop-color:#3B3B3B"/>
- <stop offset="1" style="stop-color:#2B2B2B"/>
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="0.3455" style="stop-color:#969696"/>
+<stop offset="0.7818" style="stop-color:#3B3B3B"/>
+<stop offset="1" style="stop-color:#2B2B2B"/>
</linearGradient>
-<path clip-rule="evenodd" d="M5.287,25.822c-0.152,0.152-0.525,0.029-0.832-0.276 c-0.305-0.307-0.428-0.679-0.275-0.831s0.525-0.029,0.828,0.277C5.316,25.298,5.439,25.67,5.287,25.822z" fill="url(#SVGID_7_)" fill-rule="evenodd"/>
-<rect clip-rule="evenodd" fill="none" fill-rule="evenodd" height="30" width="30"/>
+<path d="M5.287,25.822c-0.152,0.152-0.525,0.029-0.832-0.276 c-0.305-0.307-0.428-0.679-0.275-0.831s0.525-0.029,0.828,0.277C5.316,25.298,5.439,25.67,5.287,25.822z" fill="url(#SVGID_7_)" fill-rule="evenodd"/>
+<rect fill="none" fill-rule="evenodd" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ok.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ok.svg Thu May 27 13:10:59 2010 +0300
@@ -1,22 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="5.1221" y2="44.929">
- <stop offset="0" style="stop-color:#E3FFA3"/>
- <stop offset="0.7758" style="stop-color:#73B542"/>
- <stop offset="1" style="stop-color:#AFDD76"/>
+<stop offset="0" style="stop-color:#E3FFA3"/>
+<stop offset="0.7758" style="stop-color:#73B542"/>
+<stop offset="1" style="stop-color:#AFDD76"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="58,15.935 50.143,8.078 21.992,36.227 9.854,24.092 2,31.948 21.971,51.922 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="6.7451" y2="43.9537">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="3.432,31.948 9.854,25.522 21.992,37.658 50.143,9.508 56.568,15.935 21.971,50.491 "/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_online.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_online.svg Thu May 27 13:10:59 2010 +0300
@@ -1,76 +1,78 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.998" x2="29.998" y1="57.6797" y2="2.0783">
- <stop offset="0" style="stop-color:#004E8C"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#004E8C"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M57.998,30.001C57.998,45.464,45.461,58,30,58C14.535,58,1.998,45.464,1.998,30.001 C1.998,14.54,14.535,2,30,2C45.461,2,57.998,14.54,57.998,30.001z" fill="url(#SVGID_1_)"/>
<radialGradient cx="26.9434" cy="12.7056" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="33.8669">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="29.999" cy="30.001" fill="url(#SVGID_2_)" r="27.282"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.999" x2="29.999" y1="2.4785" y2="57.4196">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#88D6EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#88D6EB"/>
</linearGradient>
-<path d="M30,2.718c-15.066,0-27.283,12.218-27.283,27.283c0,15.069,12.217,27.28,27.283,27.28 c15.07,0,27.281-12.211,27.281-27.28C57.281,14.937,45.07,2.718,30,2.718z M30,54.894c-14.166,0-25.691-11.524-25.691-25.688 C4.309,15.04,15.834,3.515,30,3.515S55.689,15.04,55.689,29.206C55.689,43.37,44.166,54.894,30,54.894z" fill="url(#SVGID_3_)" opacity="0.3"/>
+<path d="M30,2.718c-15.066,0-27.283,12.218-27.283,27.283c0,15.069,12.217,27.28,27.283,27.28 c15.07,0,27.281-12.211,27.281-27.28C57.281,14.937,45.07,2.718,30,2.718z M30,54.894c-14.166,0-25.691-11.524-25.691-25.688 C4.309,15.04,15.834,3.515,30,3.515S55.689,15.04,55.689,29.206C55.689,43.37,44.166,54.894,30,54.894z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="3.1621" x2="7.498" y1="33.7139" y2="33.7139">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M5.277,29.556C4.988,29.17,4.332,29.17,4.041,29.17c-0.57,0-0.873,0.406-0.879,0.804 v0.028v0.041c0,0.702,0.039,1.489,0.123,2.446c0.018,0.179,0.039,0.36,0.061,0.54l0.033,0.263c0.072,0.566,0.158,1.125,0.256,1.665 l0.043,0.237c0.043,0.213,0.084,0.424,0.129,0.633c0.117,0.53,0.26,1.08,0.434,1.687c0.025,0.087,0.049,0.175,0.07,0.26 c0.039,0.142,0.076,0.283,0.121,0.419l0.004,0.02l0.016,0.043c-0.002-0.011-0.01-0.03-0.012-0.048l1.564-0.106 c0.025-0.243,0.033-0.497,0.025-0.751C6.016,36.956,6,36.467,5.889,36.056l1.455-1.951l0.154-0.213v-0.264v-1.52v-0.331 l-0.232-0.232L5.277,29.556z" fill="url(#SVGID_4_)" opacity="0.3"/>
+<path d="M5.277,29.556C4.988,29.17,4.332,29.17,4.041,29.17c-0.57,0-0.873,0.406-0.879,0.804 v0.028v0.041c0,0.702,0.039,1.489,0.123,2.446c0.018,0.179,0.039,0.36,0.061,0.54l0.033,0.263c0.072,0.566,0.158,1.125,0.256,1.665 l0.043,0.237c0.043,0.213,0.084,0.424,0.129,0.633c0.117,0.53,0.26,1.08,0.434,1.687c0.025,0.087,0.049,0.175,0.07,0.26 c0.039,0.142,0.076,0.283,0.121,0.419l0.004,0.02l0.016,0.043c-0.002-0.011-0.01-0.03-0.012-0.048l1.564-0.106 c0.025-0.243,0.033-0.497,0.025-0.751C6.016,36.956,6,36.467,5.889,36.056l1.455-1.951l0.154-0.213v-0.264v-1.52v-0.331 l-0.232-0.232L5.277,29.556z" fill="url(#SVGID_4_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.5254" x2="56.9043" y1="25.7695" y2="25.7695">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M56.896,24.654c-0.02-0.103-0.039-0.176-0.057-0.25 c-0.016-0.055-0.027-0.109-0.037-0.162c-0.141-0.646-0.313-1.314-0.514-1.994l-0.023-0.074c-0.041-0.153-0.086-0.306-0.135-0.457 c-0.248-0.767-0.514-1.5-0.797-2.177c-0.035-0.085-0.074-0.163-0.109-0.245l-0.059-0.131c-0.268-0.619-0.568-1.238-0.883-1.833 l-0.041-0.077c-0.061-0.117-0.119-0.236-0.184-0.353c-0.385-0.695-0.789-1.358-1.199-1.974c-0.043-0.065-0.092-0.134-0.141-0.202 c-0.031-0.041-0.059-0.081-0.086-0.121c-0.395-0.571-0.807-1.126-1.236-1.656l-0.084-0.106c-0.059-0.071-0.115-0.146-0.176-0.218 c-0.498-0.596-1.023-1.174-1.566-1.72c-0.072-0.074-0.152-0.15-0.23-0.226l-0.064-0.062c-0.49-0.481-1.01-0.956-1.547-1.402 l-0.104-0.091c-0.055-0.048-0.107-0.096-0.164-0.139c-0.582-0.48-1.215-0.952-1.875-1.405c-0.08-0.055-0.164-0.109-0.248-0.162 l-0.1-0.066c-0.594-0.393-1.213-0.77-1.834-1.114l-0.098-0.055c-0.051-0.029-0.102-0.059-0.152-0.088 c-0.693-0.371-1.414-0.72-2.146-1.035L40.82,4.985l-0.199-0.083c-0.193-0.079-0.387-0.147-0.578-0.215 c-0.102-0.035-0.199-0.069-0.299-0.104l-0.371-0.138l-0.33,0.212c-0.223,0.14-1.098,0.64-1.613,0.934 c-0.574-0.077-1.961-0.251-3.359-0.386c0.432-0.042,1.025-0.09,1.869-0.146l0.117-1.573L35.994,3.47 c-0.051-0.014-0.102-0.025-0.152-0.037L35.723,3.41l-0.098-0.02c-0.857-0.172-1.662-0.297-2.461-0.38L33.16,3.009l-0.109-0.01 c-0.914-0.093-1.844-0.139-2.762-0.139c-0.809,0-1.648,0.042-2.564,0.13c-0.145,0.013-0.281,0.029-0.422,0.043 c-0.906,0.101-1.697,0.221-2.447,0.373L24.83,3.411l-0.018,0.003c-0.789,0.163-1.582,0.367-2.428,0.624 c-0.074,0.022-0.15,0.048-0.227,0.071l-0.17,0.056c-0.713,0.23-1.412,0.485-2.084,0.762c-0.057,0.023-0.094,0.037-0.131,0.051 l-0.102,0.041c-0.738,0.314-1.475,0.668-2.205,1.06c-0.078,0.041-0.156,0.087-0.232,0.13l-0.094,0.055 c-0.205,0.113-0.412,0.242-0.617,0.37L16.258,6.8l-1.461,0.893l1.623,0.542c0.242,0.082,0.504,0.123,0.773,0.123 c0.875,0,1.721-0.43,2.402-0.776c0.273-0.138,0.678-0.344,0.848-0.376c0.199,0.06,0.396,0.089,0.596,0.089 c0.746,0,1.354-0.401,1.893-0.754l0.145-0.094c0.174-0.057,0.473-0.167,1.07-0.391c0.607-0.229,1.717-0.645,2.01-0.715 c0.578-0.006,1.264-0.088,1.752-0.392c0.459,0.075,1.273,0.204,2.115,0.314C29.961,5.301,29.9,5.341,29.85,5.391 c-0.273,0.251-1.742,0.696-2.195,0.755c-0.848,0.106-1.186,0.532-1.322,0.871c-0.176,0.439-0.068,0.878,0.104,1.235 c-0.32,0.212-0.713,0.448-1.049,0.625c0-0.007,0.002-0.015,0.004-0.024c0.121-0.675,0.209-1.163-0.119-1.556 c-0.166-0.2-0.414-0.314-0.676-0.314c-0.387,0-0.688,0.239-0.93,0.473c-0.68,0.656-1.09,1.476-1.246,1.783l-0.027,0.059 l-0.025,0.044c-0.293,0.563-0.414,0.962-0.25,2.207c-0.074,0.051-0.287,0.132-0.582,0.132c-0.041,0-0.076-0.002-0.105-0.005 c-0.191-0.205-0.453-0.322-0.752-0.322l0,0c-0.684,0-1.619,0.771-2.773,2.292l-0.371,0.49l0.377,0.484l0.354,0.449 c-5.51,4.257-5.551,4.5-5.609,4.855c-0.01,0.032-0.057,0.18-0.123,0.383c-0.822,2.552-1.275,4.46-0.834,5.482 c1.025,2.368,2.182,4.579,3.68,4.701c0.133,0.011,0.277,0.017,0.434,0.017c1.373,0,3.6-0.416,4.668-0.635 c0.197,0.371,0.436,0.804,0.568,1.04l0.238,0.421l0.484-0.016c0,0,0.26-0.008,0.584-0.008c0.375,0,0.625,0.011,0.787,0.022 c0.584,1.708,1.699,5.643,1.492,6.459l-0.004,0.004c-1.885,2.821,0.4,6.499,1.494,8.269c0.088,0.14,0.168,0.266,0.232,0.374 c0.424,1.204,0.934,2.002,2.02,2.002c0.078,0,0.16-0.005,0.244-0.009c0.063-0.004,0.125-0.007,0.191-0.007 c0.121,0,0.207,0.014,0.293,0.045l0.1,0.036l0.105,0.01c0.205,0.017,0.4,0.045,0.592,0.071c0.334,0.047,0.68,0.095,1.031,0.095 c0.941,0,1.689-0.357,2.336-1.119c0.021-0.004,0.045-0.005,0.068-0.008c0.678-0.095,0.932-0.433,1.018-0.737 c0.051-0.05,0.117-0.112,0.172-0.164c0.268-0.244,0.584-0.537,0.803-0.88c0.1-0.059,0.213-0.125,0.338-0.2 c0.219-0.134,0.465-0.283,0.658-0.382c0.172-0.052,0.322-0.153,0.436-0.293c0.273-0.335,0.217-0.717,0.172-1.023 c-0.047-0.318-0.092-0.642,0.078-0.99c0.965-0.465,2.68-1.608,2.957-1.796v0.022c-0.02,0.153-0.064,0.563-0.133,0.822 c-0.363,0.366-0.67,0.919-0.766,1.105l-0.063,0.121l-0.02,0.137c-0.023,0.18-0.123,1.11,0.4,1.712 c0.264,0.301,0.641,0.468,1.063,0.468c0.131,0,0.271-0.017,0.416-0.05c1.342-0.304,3.723-3.531,3.916-5.312 c0.096-0.859-0.24-1.534-0.918-1.852l-0.506-0.24l-0.398,0.396l-1.469,1.471c-0.498,0.046-0.887,0.193-1.148,0.425 c0.016-0.627-0.047-1.27-0.113-1.896c-0.201-1.891-0.24-3.097,0.92-3.915l0.059-0.043l0.051-0.051 c0.418-0.426,0.883-0.799,1.373-1.193c1.15-0.924,2.34-1.878,3.047-3.604l0.031-0.074c0.227-0.59,0.568-1.478,0.104-2.158 c-0.115-0.167-0.359-0.426-0.814-0.518c0.604-0.242,1.066-0.435,1.111-0.452l0.141-0.059l0.109-0.104l2.48-2.381l0.363-0.35 l-0.16-0.479c-0.021-0.062-0.158-0.438-0.537-0.977c0.725,0.099,1.344,0.272,1.549,0.427c0.074,0.163,0.221,0.519,0.379,0.892 c2.732,6.435,3.115,6.766,3.824,6.777c0.027,0,0.049,0.002,0.066,0.005c0.057,0.002,0.109,0.006,0.156,0.006 c0.404,0,0.635-0.207,0.736-0.331c0.297-0.357,0.215-0.795,0.184-0.959l-0.012-0.056c-0.033-0.384-0.012-2.113,0.045-3.536 c0.004,0.004,0.006,0.008,0.008,0.013l1.463-0.58L56.896,24.654z M35.391,16.784c-0.113,0.005-0.238,0.012-0.367,0.017 c-0.422,0.018-0.902,0.04-1.377,0.04c-1.25,0-1.533-0.155-1.564-0.171c-0.146-0.107-0.297-0.188-0.457-0.246 c0.285-0.063,0.607-0.279,0.939-0.924c0.33,0.636,0.773,1.198,1.457,1.198c0.184,0,0.363-0.045,0.531-0.131 C34.783,16.568,35.162,16.7,35.391,16.784z M34.9,13.303c-0.094,0-0.172-0.005-0.23-0.009c0.064-0.167,0.141-0.264,0.201-0.319 c0.08,0.122,0.186,0.229,0.305,0.32C35.078,13.301,34.986,13.303,34.9,13.303z M29.932,14.974c0.428,0.837,0.744,1.198,0.994,1.355 c-0.619,0.049-1.086,0.443-1.469,0.817c-0.271-0.09-0.74-0.374-0.879-0.572c-0.084-0.117-0.18-0.217-0.287-0.304 C28.969,16.077,29.564,15.447,29.932,14.974z M27.57,14.355l-0.889-0.043l-2.975-0.146c0.361-0.299,0.707-0.579,0.91-0.745 c0.055-0.02,0.27-0.078,0.793-0.078c0.314,0,0.617,0.021,0.809,0.037L27.57,14.355z" fill="url(#SVGID_5_)" opacity="0.3"/>
+<path d="M56.896,24.654c-0.02-0.103-0.039-0.176-0.057-0.25 c-0.016-0.055-0.027-0.109-0.037-0.162c-0.141-0.646-0.313-1.314-0.514-1.994l-0.023-0.074c-0.041-0.153-0.086-0.306-0.135-0.457 c-0.248-0.767-0.514-1.5-0.797-2.177c-0.035-0.085-0.074-0.163-0.109-0.245l-0.059-0.131c-0.268-0.619-0.568-1.238-0.883-1.833 l-0.041-0.077c-0.061-0.117-0.119-0.236-0.184-0.353c-0.385-0.695-0.789-1.358-1.199-1.974c-0.043-0.065-0.092-0.134-0.141-0.202 c-0.031-0.041-0.059-0.081-0.086-0.121c-0.395-0.571-0.807-1.126-1.236-1.656l-0.084-0.106c-0.059-0.071-0.115-0.146-0.176-0.218 c-0.498-0.596-1.023-1.174-1.566-1.72c-0.072-0.074-0.152-0.15-0.23-0.226l-0.064-0.062c-0.49-0.481-1.01-0.956-1.547-1.402 l-0.104-0.091c-0.055-0.048-0.107-0.096-0.164-0.139c-0.582-0.48-1.215-0.952-1.875-1.405c-0.08-0.055-0.164-0.109-0.248-0.162 l-0.1-0.066c-0.594-0.393-1.213-0.77-1.834-1.114l-0.098-0.055c-0.051-0.029-0.102-0.059-0.152-0.088 c-0.693-0.371-1.414-0.72-2.146-1.035L40.82,4.985l-0.199-0.083c-0.193-0.079-0.387-0.147-0.578-0.215 c-0.102-0.035-0.199-0.069-0.299-0.104l-0.371-0.138l-0.33,0.212c-0.223,0.14-1.098,0.64-1.613,0.934 c-0.574-0.077-1.961-0.251-3.359-0.386c0.432-0.042,1.025-0.09,1.869-0.146l0.117-1.573L35.994,3.47 c-0.051-0.014-0.102-0.025-0.152-0.037L35.723,3.41l-0.098-0.02c-0.857-0.172-1.662-0.297-2.461-0.38L33.16,3.009l-0.109-0.01 c-0.914-0.093-1.844-0.139-2.762-0.139c-0.809,0-1.648,0.042-2.564,0.13c-0.145,0.013-0.281,0.029-0.422,0.043 c-0.906,0.101-1.697,0.221-2.447,0.373L24.83,3.411l-0.018,0.003c-0.789,0.163-1.582,0.367-2.428,0.624 c-0.074,0.022-0.15,0.048-0.227,0.071l-0.17,0.056c-0.713,0.23-1.412,0.485-2.084,0.762c-0.057,0.023-0.094,0.037-0.131,0.051 l-0.102,0.041c-0.738,0.314-1.475,0.668-2.205,1.06c-0.078,0.041-0.156,0.087-0.232,0.13l-0.094,0.055 c-0.205,0.113-0.412,0.242-0.617,0.37L16.258,6.8l-1.461,0.893l1.623,0.542c0.242,0.082,0.504,0.123,0.773,0.123 c0.875,0,1.721-0.43,2.402-0.776c0.273-0.138,0.678-0.344,0.848-0.376c0.199,0.06,0.396,0.089,0.596,0.089 c0.746,0,1.354-0.401,1.893-0.754l0.145-0.094c0.174-0.057,0.473-0.167,1.07-0.391c0.607-0.229,1.717-0.645,2.01-0.715 c0.578-0.006,1.264-0.088,1.752-0.392c0.459,0.075,1.273,0.204,2.115,0.314C29.961,5.301,29.9,5.341,29.85,5.391 c-0.273,0.251-1.742,0.696-2.195,0.755c-0.848,0.106-1.186,0.532-1.322,0.871c-0.176,0.439-0.068,0.878,0.104,1.235 c-0.32,0.212-0.713,0.448-1.049,0.625c0-0.007,0.002-0.015,0.004-0.024c0.121-0.675,0.209-1.163-0.119-1.556 c-0.166-0.2-0.414-0.314-0.676-0.314c-0.387,0-0.688,0.239-0.93,0.473c-0.68,0.656-1.09,1.476-1.246,1.783l-0.027,0.059 l-0.025,0.044c-0.293,0.563-0.414,0.962-0.25,2.207c-0.074,0.051-0.287,0.132-0.582,0.132c-0.041,0-0.076-0.002-0.105-0.005 c-0.191-0.205-0.453-0.322-0.752-0.322l0,0c-0.684,0-1.619,0.771-2.773,2.292l-0.371,0.49l0.377,0.484l0.354,0.449 c-5.51,4.257-5.551,4.5-5.609,4.855c-0.01,0.032-0.057,0.18-0.123,0.383c-0.822,2.552-1.275,4.46-0.834,5.482 c1.025,2.368,2.182,4.579,3.68,4.701c0.133,0.011,0.277,0.017,0.434,0.017c1.373,0,3.6-0.416,4.668-0.635 c0.197,0.371,0.436,0.804,0.568,1.04l0.238,0.421l0.484-0.016c0,0,0.26-0.008,0.584-0.008c0.375,0,0.625,0.011,0.787,0.022 c0.584,1.708,1.699,5.643,1.492,6.459l-0.004,0.004c-1.885,2.821,0.4,6.499,1.494,8.269c0.088,0.14,0.168,0.266,0.232,0.374 c0.424,1.204,0.934,2.002,2.02,2.002c0.078,0,0.16-0.005,0.244-0.009c0.063-0.004,0.125-0.007,0.191-0.007 c0.121,0,0.207,0.014,0.293,0.045l0.1,0.036l0.105,0.01c0.205,0.017,0.4,0.045,0.592,0.071c0.334,0.047,0.68,0.095,1.031,0.095 c0.941,0,1.689-0.357,2.336-1.119c0.021-0.004,0.045-0.005,0.068-0.008c0.678-0.095,0.932-0.433,1.018-0.737 c0.051-0.05,0.117-0.112,0.172-0.164c0.268-0.244,0.584-0.537,0.803-0.88c0.1-0.059,0.213-0.125,0.338-0.2 c0.219-0.134,0.465-0.283,0.658-0.382c0.172-0.052,0.322-0.153,0.436-0.293c0.273-0.335,0.217-0.717,0.172-1.023 c-0.047-0.318-0.092-0.642,0.078-0.99c0.965-0.465,2.68-1.608,2.957-1.796v0.022c-0.02,0.153-0.064,0.563-0.133,0.822 c-0.363,0.366-0.67,0.919-0.766,1.105l-0.063,0.121l-0.02,0.137c-0.023,0.18-0.123,1.11,0.4,1.712 c0.264,0.301,0.641,0.468,1.063,0.468c0.131,0,0.271-0.017,0.416-0.05c1.342-0.304,3.723-3.531,3.916-5.312 c0.096-0.859-0.24-1.534-0.918-1.852l-0.506-0.24l-0.398,0.396l-1.469,1.471c-0.498,0.046-0.887,0.193-1.148,0.425 c0.016-0.627-0.047-1.27-0.113-1.896c-0.201-1.891-0.24-3.097,0.92-3.915l0.059-0.043l0.051-0.051 c0.418-0.426,0.883-0.799,1.373-1.193c1.15-0.924,2.34-1.878,3.047-3.604l0.031-0.074c0.227-0.59,0.568-1.478,0.104-2.158 c-0.115-0.167-0.359-0.426-0.814-0.518c0.604-0.242,1.066-0.435,1.111-0.452l0.141-0.059l0.109-0.104l2.48-2.381l0.363-0.35 l-0.16-0.479c-0.021-0.062-0.158-0.438-0.537-0.977c0.725,0.099,1.344,0.272,1.549,0.427c0.074,0.163,0.221,0.519,0.379,0.892 c2.732,6.435,3.115,6.766,3.824,6.777c0.027,0,0.049,0.002,0.066,0.005c0.057,0.002,0.109,0.006,0.156,0.006 c0.404,0,0.635-0.207,0.736-0.331c0.297-0.357,0.215-0.795,0.184-0.959l-0.012-0.056c-0.033-0.384-0.012-2.113,0.045-3.536 c0.004,0.004,0.006,0.008,0.008,0.013l1.463-0.58L56.896,24.654z M35.391,16.784c-0.113,0.005-0.238,0.012-0.367,0.017 c-0.422,0.018-0.902,0.04-1.377,0.04c-1.25,0-1.533-0.155-1.564-0.171c-0.146-0.107-0.297-0.188-0.457-0.246 c0.285-0.063,0.607-0.279,0.939-0.924c0.33,0.636,0.773,1.198,1.457,1.198c0.184,0,0.363-0.045,0.531-0.131 C34.783,16.568,35.162,16.7,35.391,16.784z M34.9,13.303c-0.094,0-0.172-0.005-0.23-0.009c0.064-0.167,0.141-0.264,0.201-0.319 c0.08,0.122,0.186,0.229,0.305,0.32C35.078,13.301,34.986,13.303,34.9,13.303z M29.932,14.974c0.428,0.837,0.744,1.198,0.994,1.355 c-0.619,0.049-1.086,0.443-1.469,0.817c-0.271-0.09-0.74-0.374-0.879-0.572c-0.084-0.117-0.18-0.217-0.287-0.304 C28.969,16.077,29.564,15.447,29.932,14.974z M27.57,14.355l-0.889-0.043l-2.975-0.146c0.361-0.299,0.707-0.579,0.91-0.745 c0.055-0.02,0.27-0.078,0.793-0.078c0.314,0,0.617,0.021,0.809,0.037L27.57,14.355z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="27.8105" cy="3.104" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="30.9363">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
<path d="M3.957,29.985c0,0,0,0,0,0.002c0,0.01,0.002,0.014,0.002,0.021c0,0.813,0.051,1.615,0.119,2.41 c0.023,0.259,0.063,0.52,0.092,0.781c0.07,0.544,0.15,1.082,0.248,1.615c0.055,0.283,0.107,0.567,0.166,0.845 c0.123,0.553,0.266,1.097,0.422,1.632c0.063,0.222,0.113,0.447,0.184,0.663C5.197,37.978,5.207,38,5.213,38.023 c0.021-0.212,0.027-0.427,0.021-0.648c-0.053-1.568-0.303-1.367-0.303-1.367l1.771-2.381v-1.52L4.625,30.03 C4.625,30.03,3.959,29.926,3.957,29.985z" fill="url(#SVGID_6_)"/>
<radialGradient cx="27.8096" cy="3.1069" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="30.9388">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
<path d="M20.631,6.433c0.766,0.252,1.395-0.26,2.109-0.717c0.252-0.051,3.055-1.17,3.357-1.17 c0.301,0,1.32-0.04,1.572-0.444c0,0,4.387,0.763,5.049,0.508c0.359-0.141,1.869-0.26,3.17-0.346 c-0.074-0.016-0.141-0.037-0.213-0.052c-0.07-0.014-0.141-0.026-0.211-0.04c-0.814-0.163-1.637-0.295-2.475-0.378 c-0.006,0-0.012,0-0.02-0.004c-0.881-0.088-1.775-0.135-2.682-0.135c-0.84,0-1.67,0.05-2.492,0.127 c-0.143,0.015-0.287,0.031-0.434,0.046c-0.793,0.086-1.578,0.203-2.35,0.357C25,4.191,24.986,4.192,24.973,4.193 c-0.801,0.166-1.584,0.371-2.355,0.606c-0.133,0.039-0.26,0.085-0.393,0.125c-0.684,0.221-1.357,0.466-2.02,0.737 c-0.076,0.034-0.156,0.063-0.234,0.095c-0.727,0.31-1.438,0.654-2.129,1.024c-0.104,0.056-0.203,0.116-0.307,0.175 c-0.299,0.165-0.576,0.349-0.861,0.525C18.098,7.957,19.877,6.178,20.631,6.433z" fill="url(#SVGID_7_)"/>
<radialGradient cx="27.8066" cy="3.105" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="30.9346">
- <stop offset="0.3152" style="stop-color:#B2F56E"/>
- <stop offset="0.7273" style="stop-color:#5CBF1B"/>
- <stop offset="1" style="stop-color:#227A00"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.3152" style="stop-color:#B2F56E"/>
+<stop offset="0.7273" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
<path d="M56.111,24.787c-0.027-0.133-0.064-0.258-0.09-0.388c-0.141-0.65-0.307-1.292-0.494-1.924 c-0.051-0.171-0.102-0.346-0.154-0.515c-0.23-0.718-0.484-1.426-0.773-2.113c-0.051-0.121-0.109-0.24-0.16-0.358 c-0.266-0.606-0.553-1.201-0.861-1.782c-0.07-0.139-0.143-0.282-0.217-0.417c-0.365-0.657-0.75-1.297-1.166-1.919 c-0.068-0.107-0.15-0.21-0.223-0.316c-0.379-0.553-0.777-1.086-1.195-1.605c-0.086-0.103-0.166-0.209-0.254-0.313 c-0.482-0.578-0.986-1.135-1.518-1.669c-0.09-0.092-0.188-0.183-0.281-0.272c-0.482-0.475-0.984-0.933-1.506-1.369 c-0.09-0.073-0.17-0.151-0.26-0.223c-0.584-0.478-1.195-0.933-1.822-1.362c-0.109-0.075-0.223-0.148-0.334-0.219 c-0.578-0.384-1.174-0.747-1.785-1.085c-0.084-0.045-0.16-0.094-0.244-0.141c-0.68-0.363-1.371-0.696-2.082-1.003 c-0.125-0.053-0.256-0.103-0.379-0.155c-0.277-0.115-0.563-0.206-0.844-0.309c-0.334,0.213-1.881,1.088-1.881,1.088 s-6.717-0.917-7.174-0.462c-0.459,0.462-2.248,0.929-2.656,0.981c-0.406,0.053-1.25,0.27-0.238,1.518 c-0.152,0.155-3.039,2.165-3.039,1.25c0-0.916,0.645-2.552-0.26-1.676c-0.652,0.631-1.039,1.483-1.127,1.643 c-0.211,0.409-0.342,0.604-0.188,1.773c0.154,1.171-1.869,1.164-2.004,0.862c-0.363-0.813-2.363,1.821-2.363,1.821l0.844,1.082 c0,0-5.893,4.539-5.941,4.844c-0.053,0.307-1.523,4.247-1.016,5.418c0.512,1.174,1.797,4.127,3.016,4.226 c1.598,0.131,5.469-0.73,5.469-0.73c0.104,0.257,0.834,1.556,0.834,1.556s1.896-0.063,2.004,0.143 c0.035,0.069,2.287,6.693,1.543,7.571c-1.773,2.656,1.014,6.548,1.789,7.864c0.775,2.262,1.277,1.25,2.297,1.62 c1.258,0.108,2.318,0.573,3.385-0.8c0.309-0.255,0.836-0.054,0.836-0.408c0-0.198,0.912-0.781,1.146-1.33 c0.248-0.114,0.881-0.542,1.313-0.748c0.391-0.025-0.371-1.071,0.402-2.177c0.836-0.33,3.088-1.849,3.088-1.849 c0.104-2.227-1.094-4.979,1.141-6.559c1.445-1.47,3.336-2.306,4.256-4.544c0.252-0.661,0.818-2.014-0.813-1.609 c-1.531,0.386-3.238,0.474-2.432-0.201c-0.092-0.828-1.111-1.218-2.023-2.026c-0.473-1.117-1.215-3.108-1.215-3.108l-1.621-2.463 l0.203-0.508l1.926,2.836l1.926,2.328c0.707,2.33,1.314,2.535,1.314,2.535c1.068-0.377,3.596-1.419,3.596-1.419l2.484-2.381 c0,0-0.256-0.761-1.264-1.722l-0.764-0.455c-0.166,0.467-1.049,0.642-1.049,0.642l-2.145-2.564l0.801-0.162l0.613,1.171l1.473,0.509 c0,0,0.408-0.298,1.166,0.484c0.619-0.051,3.029,0.117,3.594,0.832c0.109,0.142,2.986,7.325,3.555,7.336 c0.248,0.001,0.43,0.099,0.348-0.335c-0.102-0.205,0-4.717,0.154-5.683c0.385-0.821,0.445-0.002,1.357,1.553 C56.121,24.862,56.119,24.824,56.111,24.787z M30.797,7.378c0.201-0.6,1.367-0.804,1.367-0.804s-0.334,0.618-0.258,0.937 c0.08,0.322-0.533,0.524-0.6,1.282c-0.066,0.755-1.459,0.313-1.574,0.047C29.617,8.577,30.592,7.977,30.797,7.378z M35.793,17.571 c-0.865,0-3.455,0.257-4.17-0.253c-0.711-0.508-1.266,0.052-1.781,0.562c-0.334,0.331-1.559-0.339-1.916-0.848 c-0.355-0.509-1.553-0.472-1.553-0.472l0.271-1.452l-3.445-0.167l-1.957,0.574l-1.844,0.052l1.031-0.491l1.287-0.304 c0,0,1.867-1.536,2.43-1.993c0.475-0.388,2.365-0.169,2.365-0.169l2.074,1.497c0,0-0.459,1.174-0.662,1.426 c0.76-0.05,1.658-1.436,1.658-1.436c-1.621-1.488-1.555-1.992-1.555-1.992l2.133,1.498l0.021,0.013c0,0,0.865,2.035,1.225,2.035 c0.352,0,0.809-1.401,0.809-1.401l0.609-0.153c0.27,0.642,0.773,2.094,1.381,1.754c0.35-0.193,0.928-0.017,1.588,0.236 c0.664,0.255,1.115-0.137,1.654,0.337C37.381,18.519,36.15,17.674,35.793,17.571z M37.148,14.068c-0.891-0.339-3.9,0.766-3.229-1.04 c0.359-0.975,1.281-1.179,1.598-0.531c0.082,0.267,1.084,0.679,1.076,0.117c-0.006-0.562,1.01-0.86,1.154-0.441 C37.207,12.563,39.863,14.589,37.148,14.068z M42.816,15.78c-0.492-0.397,0.223-0.738-0.506-1.359 c-1.041-0.895-1.855-1.278-0.436-2.002c1.754-0.221,0.283,0.559,0.576,1.027c0.156,0.247,1.039,1.08,1.73,2.103 C44.756,16.397,43.307,16.175,42.816,15.78z" fill="url(#SVGID_8_)"/>
<radialGradient cx="27.8125" cy="3.1055" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="30.9328">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
<path d="M43.523,38.979l-1.689,1.688c0,0-1.016,0-1.064,0.406c-0.023,0.174-0.082,0.927-0.252,1.315 c-0.338,0.235-0.742,1.012-0.742,1.012s-0.211,1.504,0.912,1.249C41.809,44.395,45.256,39.795,43.523,38.979z" fill="url(#SVGID_9_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,30C6.729,30,0,23.271,0,15.001C0,6.729,6.729,0,15,0c8.271,0,15,6.729,15,15.001 C30,23.271,23.271,30,15,30L15,30z" opacity="0.35"/>
+<path d="M15,30C6.729,30,0,23.271,0,15.001C0,6.729,6.729,0,15,0c8.271,0,15,6.729,15,15.001 C30,23.271,23.271,30,15,30L15,30z" fill-opacity="0.35" stroke-opacity="0.35"/>
<radialGradient cx="15.2446" cy="7.1245" gradientTransform="matrix(1 0 0 1 0 0.2666)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="27.4219">
- <stop offset="0.1273" style="stop-color:#C5FF4D"/>
- <stop offset="0.5576" style="stop-color:#428C0F"/>
- <stop offset="0.9758" style="stop-color:#C5FF4D"/>
+<stop offset="0" style="stop-color:#C5FF4D"/>
+<stop offset="0.1273" style="stop-color:#C5FF4D"/>
+<stop offset="0.5576" style="stop-color:#428C0F"/>
+<stop offset="0.9758" style="stop-color:#C5FF4D"/>
+<stop offset="1" style="stop-color:#C5FF4D"/>
</radialGradient>
<circle cx="15" cy="15.001" fill="url(#SVGID_1__)" r="14"/>
-<path d="M14.945,13.573c-4.122,0-8.019-0.584-11.498-1.616c0.27-5.423,5.34-9.751,11.57-9.751 c6.215,0,11.274,4.304,11.569,9.707C23.071,12.973,19.125,13.573,14.945,13.573z" fill="#FFFFFF" opacity="0.2"/>
-<path d="M15.017,2.936c5.939,0,10.813,3.934,11.491,9c0.025-0.007,0.053-0.015,0.078-0.022 c-0.295-5.403-5.354-9.707-11.569-9.707c-6.23,0-11.301,4.328-11.57,9.751c0.024,0.006,0.05,0.013,0.075,0.02 C4.178,6.893,9.062,2.936,15.017,2.936z" fill="#FFFFFF" opacity="0.2"/>
+<path d="M14.945,13.573c-4.122,0-8.019-0.584-11.498-1.616c0.27-5.423,5.34-9.751,11.57-9.751 c6.215,0,11.274,4.304,11.569,9.707C23.071,12.973,19.125,13.573,14.945,13.573z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M15.017,2.936c5.939,0,10.813,3.934,11.491,9c0.025-0.007,0.053-0.015,0.078-0.022 c-0.295-5.403-5.354-9.707-11.569-9.707c-6.23,0-11.301,4.328-11.57,9.751c0.024,0.006,0.05,0.013,0.075,0.02 C4.178,6.893,9.062,2.936,15.017,2.936z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_outbox.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.0044" x2="30.0044" y1="5.3496" y2="38.0188">
+<stop offset="0" style="stop-color:#87C126"/>
+<stop offset="1" style="stop-color:#2D5C00"/>
+</linearGradient>
+<polygon fill="url(#SVGID_1_)" points="23.453,37.822 23.453,19.443 17.357,19.443 30.118,5.075 42.652,19.443 36.719,19.443 36.719,37.823 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.0132" x2="30.0132" y1="5.6895" y2="37.326">
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="1" style="stop-color:#4C8609"/>
+</linearGradient>
+<polygon fill="url(#SVGID_2_)" points="41.822,18.757 30.113,5.424 18.205,18.757 24.14,18.757 24.14,37.136 36.031,37.137 36.031,18.757 "/>
+<rect fill="#7BB71C" height="0.688" width="11.892" x="24.14" y="36.449"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.0132" x2="30.0132" y1="5.5356" y2="18.8368">
+<stop offset="0" style="stop-color:#EBFFCC"/>
+<stop offset="1" style="stop-color:#A9D36E"/>
+</linearGradient>
+<polygon fill="url(#SVGID_3_)" points="30.113,6.471 40.903,18.757 41.822,18.757 30.113,5.424 18.205,18.757 19.139,18.757 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.9995" x2="29.9995" y1="33.4199" y2="54.6772">
+<stop offset="0" style="stop-color:#C8CED1"/>
+<stop offset="1" style="stop-color:#84888B"/>
+</linearGradient>
+<path d="M4.57,54.924c-1.417,0-2.57-1.152-2.57-2.57V33.48h10.791v9.457c0,0.658,0.538,1.195,1.197,1.195 h32.023c0.66,0,1.196-0.537,1.196-1.195V33.48H58v18.873c0,1.418-1.152,2.57-2.568,2.57H4.57z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30.0005" x2="30.0005" y1="33.4238" y2="53.3199">
+<stop offset="0" style="stop-color:#E1E2E6"/>
+<stop offset="0.8061" style="stop-color:#BBBCBF"/>
+<stop offset="0.9152" style="stop-color:#A4A5A8"/>
+<stop offset="1" style="stop-color:#C8CACC"/>
+</linearGradient>
+<path d="M47.895,33.48v8.77c0,1.035-0.848,1.883-1.883,1.883H13.988c-1.035,0-1.883-0.848-1.883-1.883v-8.77 H2.687v18.187c0,1.036,0.848,1.884,1.884,1.884h50.861c1.035,0,1.883-0.848,1.883-1.884V33.48H47.895z" fill="url(#SVGID_5_)"/>
+<path d="M12.105,42.938c0,1.034,0.848,1.882,1.883,1.882h32.023 c1.035,0,1.883-0.848,1.883-1.882V42.25c0,1.035-0.848,1.883-1.883,1.883H13.988c-1.035,0-1.883-0.848-1.883-1.883V42.938z" fill="#FFFFFF" fill-opacity="0.75"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="0.687" width="9.419" x="2.687" y="33.48"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="0.687" width="9.42" x="47.895" y="33.48"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="18.2197" x2="24.0671" y1="18.4141" y2="18.4141">
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
+</linearGradient>
+<polygon fill="url(#SVGID_6_)" points="24.14,18.07 18.818,18.07 18.205,18.757 24.14,18.757 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="41.8545" x2="35.9584" y1="18.4136" y2="18.4136">
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
+</linearGradient>
+<polygon fill="url(#SVGID_7_)" points="36.031,18.07 36.031,18.757 41.822,18.757 41.219,18.07 "/>
+<rect fill="none" height="60" width="60"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ovi_suite.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ovi_suite.svg Thu May 27 13:10:59 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<rect fill="#44A51C" height="37.72" width="52" x="4" y="11.14"/>
<path d="M17.38,22.47c-5.662,0-8.649,3.887-8.649,9.426,0,5.611,2.19,10.02,8.586,10.02,5.891,0,8.623-3.99,8.623-9.893,0-5.65-2.69-9.56-8.56-9.56zm-0.07,16.41c-3.012,0-3.148-4.285-3.148-7.092,0-2.734,0.234-6.293,3.148-6.293,2.793,0,3.184,3.758,3.184,6.293,0.01,3.27-0.15,7.09-3.18,7.09z" fill="#FFFFFF"/>
@@ -9,4 +9,4 @@
<path d="M44.65,41.39c0.39,0.279,0.999,0.523,1.859,0.523,0.905,0,1.492-0.244,1.879-0.523,0.746-0.523,0.746-1.41,0.746-1.893v-16.77h-5.167-0.355c-0.502,0-0.92,0.01-1.209,0.41-0.134,0.184-0.327,0.51-0.327,1.107,0,0.621,0.203,0.924,0.327,1.109,0.289,0.398,0.707,0.4,1.209,0.4,0.162,0,0.302-0.002,0.302-0.002v13.75c-0.01,0.47-0.01,1.36,0.73,1.88z" fill="#FFFFFF"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ovistore.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ovistore.svg Thu May 27 13:10:59 2010 +0300
@@ -1,49 +1,47 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9971" x2="29.9971" y1="11.1475" y2="59">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="49.745,33.13 50.37,11.55 9.624,11.55 10.797,33.03 3.996,59 55.998,59 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9971" x2="29.9971" y1="64.0889" y2="49.3909">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="3.996,59 10.967,54.038 49.429,54.038 55.998,59 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.3125" x2="9.3125" y1="11.248" y2="59.7255">
- <stop offset="0" style="stop-color:#5ED2FF"/>
- <stop offset="1" style="stop-color:#277ADF"/>
+<stop offset="0" style="stop-color:#5ED2FF"/>
+<stop offset="1" style="stop-color:#277ADF"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="9.624,11.55 14.628,16.712 12.73,49.303 3.996,59 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="50.6777" x2="50.6777" y1="12.5122" y2="59.2981">
- <stop offset="0" style="stop-color:#5ED2FF"/>
- <stop offset="1" style="stop-color:#277ADF"/>
+<stop offset="0" style="stop-color:#5ED2FF"/>
+<stop offset="1" style="stop-color:#277ADF"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="50.37,11.55 45.357,16.712 47.254,49.303 55.998,59 "/>
-<polygon fill="#FFFFFF" opacity="0.15" points="50.934,23.129 49.654,12.354 10.34,12.354 8.508,27.796 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.15" points="50.934,23.129 49.654,12.354 10.34,12.354 8.508,27.796 " stroke-opacity="0.15"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.9971" x2="29.9971" y1="12.0908" y2="58.4598">
- <stop offset="0" style="stop-color:#8AD4FF"/>
- <stop offset="0.7697" style="stop-color:#2078FF"/>
- <stop offset="1" style="stop-color:#369EFF"/>
+<stop offset="0" style="stop-color:#8AD4FF"/>
+<stop offset="0.7697" style="stop-color:#2078FF"/>
+<stop offset="1" style="stop-color:#369EFF"/>
</linearGradient>
<path d="M48.939,13.157l5.248,44.234H5.808l5.247-44.234H48.939 M49.654,12.354H10.34L4.902,58.195h50.189 L49.654,12.354L49.654,12.354z" fill="url(#SVGID_5_)"/>
-<polygon fill="#FFFFFF" opacity="0.15" points="4.902,58.195 55.092,58.195 53.709,46.528 5.659,51.811 "/>
-<path d="M42.791,46.192c-0.918,0-1.534-0.296-1.89-0.545c-0.911-0.646-0.911-1.666-0.911-2.101v-9.719 c-0.273-0.046-0.563-0.15-0.813-0.383l-3.05,10.015c-0.444,1.356-1.214,2.733-3.579,2.733c-2.435,0-3.191-1.46-3.578-2.733 l-1.232-4.256c-0.434,4.462-3.059,6.989-7.354,6.989c-4.768,0-7.393-3-7.393-8.448c0-4.933,2.852-7.997,7.441-7.997 c2.109,0,3.829,0.606,5.08,1.773l-0.457-1.572h5.904l1.957,8.226l2.067-8.226h5.257l-0.005,0.011 c0.118-0.008,0.228-0.008,0.325-0.008c0.122,0,0.25-0.003,0.25-0.003h1.143c-1.311-0.291-2.142-1.252-2.142-2.572 c0-1.594,1.212-2.665,3.015-2.665c1.773,0,3.013,1.096,3.013,2.665c0,1.32-0.831,2.282-2.142,2.572h1.902v13.597 c0,0.436,0,1.455-0.904,2.099C44.176,46.008,43.535,46.192,42.791,46.192L42.791,46.192z M20.385,33.666 c-1.146,0-1.613,1.161-1.613,4.005c0,3.184,0.496,4.604,1.613,4.604c1.195,0,1.639-1.247,1.639-4.604 C22.023,35.843,21.738,33.666,20.385,33.666L20.385,33.666z" opacity="0.05"/>
-<path d="M42.791,45.791c-0.812,0-1.352-0.255-1.66-0.472c-0.74-0.525-0.74-1.368-0.74-1.773V33.46 c-0.365-0.008-0.781-0.063-1.078-0.466c-0.086-0.113-0.189-0.277-0.258-0.523l-3.307,10.872c-0.42,1.276-1.096,2.448-3.199,2.448 c-2.158,0-2.828-1.236-3.193-2.448l-2.051-7.079c0.064,0.5,0.096,1.027,0.096,1.582c0,5.049-2.557,7.946-7.016,7.946 c-4.574,0-6.992-2.783-6.992-8.046c0-4.685,2.699-7.597,7.041-7.597c2.898,0,4.986,1.202,6.086,3.404l-0.927-3.201h5.053l2.259,9.51 l2.395-9.51H39.7l-0.054,0.172c0.295-0.169,0.631-0.169,0.916-0.169c0.125,0,0.263-0.002,0.263-0.002h4.374v13.196 c0,0.405,0,1.248-0.734,1.771C44.014,45.632,43.453,45.791,42.791,45.791L42.791,45.791z M20.385,33.265 c-1.771,0-2.015,2.117-2.015,4.406c0,2.475,0.239,5.006,2.015,5.006c1.698,0,2.039-1.916,2.039-5.006 C22.424,34.747,21.738,33.265,20.385,33.265L20.385,33.265z M42.828,29.641c-1.588,0-2.615-0.889-2.615-2.264 c0-1.375,1.027-2.263,2.615-2.263c1.538,0,2.613,0.931,2.613,2.263C45.441,28.752,44.414,29.641,42.828,29.641L42.828,29.641z" opacity="0.1"/>
+<polygon fill="#FFFFFF" fill-opacity="0.15" points="4.902,58.195 55.092,58.195 53.709,46.528 5.659,51.811 " stroke-opacity="0.15"/>
+<path d="M42.791,46.192c-0.918,0-1.534-0.296-1.89-0.545c-0.911-0.646-0.911-1.666-0.911-2.101v-9.719 c-0.273-0.046-0.563-0.15-0.813-0.383l-3.05,10.015c-0.444,1.356-1.214,2.733-3.579,2.733c-2.435,0-3.191-1.46-3.578-2.733 l-1.232-4.256c-0.434,4.462-3.059,6.989-7.354,6.989c-4.768,0-7.393-3-7.393-8.448c0-4.933,2.852-7.997,7.441-7.997 c2.109,0,3.829,0.606,5.08,1.773l-0.457-1.572h5.904l1.957,8.226l2.067-8.226h5.257l-0.005,0.011 c0.118-0.008,0.228-0.008,0.325-0.008c0.122,0,0.25-0.003,0.25-0.003h1.143c-1.311-0.291-2.142-1.252-2.142-2.572 c0-1.594,1.212-2.665,3.015-2.665c1.773,0,3.013,1.096,3.013,2.665c0,1.32-0.831,2.282-2.142,2.572h1.902v13.597 c0,0.436,0,1.455-0.904,2.099C44.176,46.008,43.535,46.192,42.791,46.192L42.791,46.192z M20.385,33.666 c-1.146,0-1.613,1.161-1.613,4.005c0,3.184,0.496,4.604,1.613,4.604c1.195,0,1.639-1.247,1.639-4.604 C22.023,35.843,21.738,33.666,20.385,33.666L20.385,33.666z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M42.791,45.791c-0.812,0-1.352-0.255-1.66-0.472c-0.74-0.525-0.74-1.368-0.74-1.773V33.46 c-0.365-0.008-0.781-0.063-1.078-0.466c-0.086-0.113-0.189-0.277-0.258-0.523l-3.307,10.872c-0.42,1.276-1.096,2.448-3.199,2.448 c-2.158,0-2.828-1.236-3.193-2.448l-2.051-7.079c0.064,0.5,0.096,1.027,0.096,1.582c0,5.049-2.557,7.946-7.016,7.946 c-4.574,0-6.992-2.783-6.992-8.046c0-4.685,2.699-7.597,7.041-7.597c2.898,0,4.986,1.202,6.086,3.404l-0.927-3.201h5.053l2.259,9.51 l2.395-9.51H39.7l-0.054,0.172c0.295-0.169,0.631-0.169,0.916-0.169c0.125,0,0.263-0.002,0.263-0.002h4.374v13.196 c0,0.405,0,1.248-0.734,1.771C44.014,45.632,43.453,45.791,42.791,45.791L42.791,45.791z M20.385,33.265 c-1.771,0-2.015,2.117-2.015,4.406c0,2.475,0.239,5.006,2.015,5.006c1.698,0,2.039-1.916,2.039-5.006 C22.424,34.747,21.738,33.265,20.385,33.265L20.385,33.265z M42.828,29.641c-1.588,0-2.615-0.889-2.615-2.264 c0-1.375,1.027-2.263,2.615-2.263c1.538,0,2.613,0.931,2.613,2.263C45.441,28.752,44.414,29.641,42.828,29.641L42.828,29.641z" fill-opacity="0.1" stroke-opacity="0.1"/>
<path d="M20.385,44.989c-4.905,0-6.592-3.367-6.592-7.645c0-4.229,2.289-7.196,6.641-7.196 c4.505,0,6.566,2.994,6.566,7.295C27,41.947,24.911,44.989,20.385,44.989z M20.385,32.464c-2.238,0-2.416,2.716-2.416,4.805 c0,2.135,0.104,5.408,2.416,5.408s2.439-2.918,2.439-5.408C22.824,35.329,22.523,32.464,20.385,32.464z M26.126,30.35h4.202 l2.567,10.796l2.716-10.796h3.548l-3.797,12.476c-0.421,1.285-1.046,2.163-2.813,2.163c-1.764,0-2.42-0.878-2.81-2.163L26.126,30.35 z M42.828,28.838c-1.285,0-2.213-0.656-2.213-1.864c0-1.206,0.904-1.861,2.213-1.861c1.232,0,2.21,0.68,2.21,1.861 C45.038,28.182,44.109,28.838,42.828,28.838z M40.791,43.146c0,0.364,0,1.041,0.57,1.443c0.299,0.209,0.767,0.4,1.43,0.4 c0.689,0,1.139-0.189,1.439-0.4c0.57-0.402,0.57-1.079,0.57-1.443V30.35h-3.969c0,0-0.14,0.002-0.27,0.002 c-0.389,0-0.705,0.01-0.928,0.311c-0.106,0.14-0.25,0.394-0.25,0.844c0,0.475,0.144,0.708,0.25,0.848 c0.223,0.3,0.539,0.304,0.928,0.304c0.13,0,0.229,0,0.229,0V43.146z" fill="#FFFFFF"/>
-<path d="M13.822,21.03c4.524,0,6.193-4.23,7.807-8.321c0.154-0.39,0.308-0.776,0.462-1.159h-2.562 c-0.044,0.109-0.088,0.22-0.131,0.327c-1.678,4.25-2.889,6.831-5.576,6.831c-0.659,0-1.195,0.521-1.195,1.162 S13.163,21.03,13.822,21.03z" opacity="0.2"/>
-<path d="M38.071,12.709c1.612,4.091,3.282,8.321,7.806,8.321c0.66,0,1.195-0.52,1.195-1.161s-0.535-1.162-1.195-1.162 c-2.686,0-3.898-2.581-5.574-6.831c-0.043-0.107-0.088-0.218-0.133-0.327h-2.561C37.764,11.933,37.918,12.319,38.071,12.709z" opacity="0.2"/>
+<path d="M13.822,21.03c4.524,0,6.193-4.23,7.807-8.321c0.154-0.39,0.308-0.776,0.462-1.159h-2.562 c-0.044,0.109-0.088,0.22-0.131,0.327c-1.678,4.25-2.889,6.831-5.576,6.831c-0.659,0-1.195,0.521-1.195,1.162 S13.163,21.03,13.822,21.03z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M38.071,12.709c1.612,4.091,3.282,8.321,7.806,8.321c0.66,0,1.195-0.52,1.195-1.161s-0.535-1.162-1.195-1.162 c-2.686,0-3.898-2.581-5.574-6.831c-0.043-0.107-0.088-0.218-0.133-0.327h-2.561C37.764,11.933,37.918,12.319,38.071,12.709z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="13.1113" x2="46.5898" y1="10.6279" y2="10.6279">
- <stop offset="0" style="stop-color:#F4F4F4"/>
- <stop offset="0.5" style="stop-color:#E1E2E3"/>
- <stop offset="1" style="stop-color:#F4F4F4"/>
+<stop offset="0" style="stop-color:#F4F4F4"/>
+<stop offset="0.5" style="stop-color:#E1E2E3"/>
+<stop offset="1" style="stop-color:#F4F4F4"/>
</linearGradient>
<path d="M45.428,17.934c-2.612,0-3.791-2.581-5.419-6.831C38.283,6.604,35.686,1,29.848,1 s-8.432,5.604-10.158,10.103c-1.627,4.25-2.805,6.831-5.418,6.831c-0.641,0-1.16,0.521-1.16,1.162s0.52,1.161,1.16,1.161 c4.398,0,6.021-4.231,7.588-8.322c1.698-4.429,3.303-8.611,7.99-8.613c4.689,0.002,6.293,4.184,7.99,8.613 c1.568,4.091,3.189,8.322,7.588,8.322c0.641,0,1.162-0.52,1.162-1.161S46.068,17.934,45.428,17.934z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ovisync.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,109 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="0.3882" y2="59.6489">
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="1" style="stop-color:#231F20"/>
+</linearGradient>
+<path d="M0,60V0.306h60V60H0z M50.246,54.316L30,34.174L9.754,54.316H50.246z M54.286,50.297 V10.011L34.04,30.152L54.286,50.297z M5.714,50.297L25.96,30.152L5.714,10.011V50.297z M30,26.133L50.246,5.991H9.754L30,26.133z" fill="url(#SVGID_1_)" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.0005" x2="30.0005" y1="1.0972" y2="58.9473">
+<stop offset="0" style="stop-color:#A9AAAD"/>
+<stop offset="1" style="stop-color:#000000"/>
+</linearGradient>
+<path d="M0.714,59.29V1.017h58.573V59.29 M51.97,55.026L30,33.169L8.03,55.026H51.97z M55.001,52.011V8.295L33.03,30.152L55.001,52.011z M5,52.011l21.97-21.858L5,8.295V52.011z M30,27.138L51.97,5.281H8.03L30,27.138z " fill="url(#SVGID_2_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9995" x2="29.9995" y1="1.0952" y2="57.5348">
+<stop offset="0" style="stop-color:#F4FCFF"/>
+<stop offset="0.6242" style="stop-color:#C9CED1"/>
+<stop offset="1" style="stop-color:#9CA4A7"/>
+</linearGradient>
+<path d="M1.428,1.017v56.853h57.145V1.017H1.428z M27.98,29.442L4.285,53.018V5.869L27.98,29.442z M6.305,3.859h47.39L30,27.433L6.305,3.859z M30,31.452l23.695,23.574H6.305L30,31.452z M32.021,29.442L55.715,5.869v47.148 L32.021,29.442z" fill="url(#SVGID_3_)"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30.0005" x2="30.0005" y1="4.5698" y2="53.605">
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="1" style="stop-color:#231F20"/>
+</linearGradient>
+<path d="M20,53.604c-1.924,0-3.583-1.555-3.698-3.462L15.17,32.285H15 c-1.576,0-2.856-1.276-2.856-2.843v-4.264c0-1.567,1.281-2.842,2.856-2.842H27.5v-3.604c-0.361,0.029-0.728,0.043-1.099,0.043 c-2.795,0-5.822-0.82-8.524-2.312c-4.18-2.304-7.19-6.002-7.856-9.653L9.806,5.62l1.147-0.402c1.227-0.43,2.592-0.647,4.056-0.647 c2.797,0,5.831,0.823,8.541,2.317c2.809,1.548,5.054,3.648,6.45,6.008c1.396-2.36,3.642-4.461,6.45-6.009 c2.709-1.494,5.743-2.317,8.54-2.317c1.464,0,2.829,0.218,4.056,0.647l1.149,0.402l-0.217,1.192 c-0.666,3.65-3.676,7.349-7.855,9.654c-2.703,1.49-5.73,2.31-8.523,2.31c-0.372,0-0.738-0.014-1.1-0.043v3.604h12.501 c1.575,0,2.855,1.275,2.855,2.842v4.264c0,1.567-1.28,2.843-2.855,2.843H44.83l-1.132,17.857c-0.115,1.907-1.773,3.462-3.698,3.462 H20z" fill="url(#SVGID_4_)" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="5.2808" y2="52.896">
+<stop offset="0" style="stop-color:#A9AAAD"/>
+<stop offset="1" style="stop-color:#000000"/>
+</linearGradient>
+<path d="M33.598,18.065c0.002,0,0.002,0,0.002,0c2.675,0,5.578-0.788,8.177-2.221 c3.998-2.204,6.871-5.714,7.499-9.159l0.107-0.596L48.81,5.888c-1.151-0.403-2.437-0.607-3.819-0.607 c-2.678,0-5.589,0.791-8.194,2.228C33.617,9.26,31.198,11.758,30,14.444c-1.199-2.687-3.617-5.185-6.795-6.936 c-2.607-1.438-5.518-2.228-8.195-2.228c-1.383,0-2.668,0.204-3.819,0.607l-0.573,0.201l0.107,0.596 c0.628,3.445,3.501,6.955,7.499,9.159c2.599,1.433,5.503,2.221,8.178,2.221c0.622,0,1.229-0.042,1.813-0.125v5.106H15 c-1.182,0-2.143,0.957-2.143,2.132v4.264c0,1.176,0.961,2.131,2.143,2.131h0.843L17.014,50.1c0.094,1.54,1.434,2.796,2.986,2.796 h20c1.553,0,2.893-1.256,2.986-2.796l1.171-18.526h0.844c1.181,0,2.143-0.955,2.143-2.131v-4.264c0-1.175-0.962-2.132-2.143-2.132 H31.785V17.94C32.37,18.023,32.976,18.065,33.598,18.065z" fill="url(#SVGID_5_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="43.3672" x2="16.6225" y1="39.7471" y2="39.7471">
+<stop offset="0" style="stop-color:#BC5800"/>
+<stop offset="0.3" style="stop-color:#A23600"/>
+<stop offset="1" style="stop-color:#D07100"/>
+</linearGradient>
+<path d="M43.572,28.021H16.428l1.299,21.323c0.072,1.17,1.094,2.129,2.273,2.129h20 c1.18,0,2.201-0.959,2.273-2.129L43.572,28.021z" fill="url(#SVGID_6_)"/>
+<path d="M40.272,50.762H19.728c-0.795,0-1.515-0.419-1.939-1.04c0.242,0.992,1.162,1.752,2.211,1.752 h20c1.05,0,1.97-0.76,2.212-1.752C41.788,50.343,41.068,50.762,40.272,50.762z" fill="#600909" fill-opacity="0.7" stroke-opacity="0.7"/>
+<path d="M30,30.864c6.11,0,10.076,0.573,13.367,1.227l0.205-3.359H16.428l0.205,3.359 C19.924,31.438,23.89,30.864,30,30.864z" fill="#600909" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="28.8701" x2="31.0122" y1="21.27" y2="21.27">
+<stop offset="0" style="stop-color:#8BC53F"/>
+<stop offset="0.3758" style="stop-color:#33773B"/>
+<stop offset="0.6303" style="stop-color:#004F3C"/>
+<stop offset="1" style="stop-color:#007338"/>
+</linearGradient>
+<rect fill="url(#SVGID_7_)" height="9.238" width="2.142" x="28.929" y="16.651"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="46.4297" x2="13.5703" y1="26.5991" y2="26.5991">
+<stop offset="0" style="stop-color:#BC5800"/>
+<stop offset="0.3" style="stop-color:#A23600"/>
+<stop offset="1" style="stop-color:#D07100"/>
+</linearGradient>
+<path d="M46.43,28.732c0,0.781-0.645,1.42-1.429,1.42H15c-0.785,0-1.429-0.639-1.429-1.42v-4.264 c0-0.782,0.644-1.421,1.429-1.421h30.001c0.784,0,1.429,0.64,1.429,1.421V28.732z" fill="url(#SVGID_8_)"/>
+<path d="M45.001,29.442H15c-0.785,0-1.429-0.64-1.429-1.42v0.71c0,0.781,0.644,1.42,1.429,1.42 h30.001c0.784,0,1.429-0.639,1.429-1.42v-0.71C46.43,28.802,45.785,29.442,45.001,29.442z" fill="#600909" fill-opacity="0.7" stroke-opacity="0.7"/>
+<path d="M45.001,23.046H15c-0.785,0-1.429,0.64-1.429,1.421v0.71c0-0.781,0.644-1.421,1.429-1.421 h30.001c0.784,0,1.429,0.64,1.429,1.421v-0.71C46.43,23.686,45.785,23.046,45.001,23.046z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.4175" x2="30.0361" y1="5.9038" y2="16.902">
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
+</linearGradient>
+<path d="M22.858,8.13c-3.974-2.19-8.299-2.669-11.43-1.572c0.57,3.138,3.167,6.474,7.142,8.665 c3.973,2.19,8.299,2.669,11.43,1.572C29.429,13.657,26.833,10.32,22.858,8.13z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="42.1152" x2="39.5384" y1="18.2144" y2="12.261">
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
+</linearGradient>
+<path d="M37.142,8.13c3.974-2.19,8.299-2.669,11.43-1.572c-0.569,3.138-3.167,6.474-7.142,8.665 c-3.973,2.19-8.299,2.669-11.43,1.572C30.571,13.657,33.167,10.32,37.142,8.13z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="18.8848" x2="20.6575" y1="18.1733" y2="11.8801">
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
+</linearGradient>
+<path d="M18.57,15.223c3.973,2.19,8.299,2.669,11.43,1.572c0,0-7.308-3.236-9.777-4.551 c-3.304-1.759-8.794-5.685-8.794-5.685C11.999,9.696,14.596,13.032,18.57,15.223z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="48.8037" x2="29.4835" y1="4.1372" y2="15.7295">
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
+</linearGradient>
+<path d="M37.142,8.13c-3.975,2.19-6.57,5.527-7.142,8.665c0,0,6.843-2.558,9.867-4.285 c3.393-1.937,8.704-5.952,8.704-5.952C45.44,5.461,41.115,5.94,37.142,8.13z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="20.7144" x2="20.7144" y1="6.3657" y2="15.8773">
+<stop offset="0" style="stop-color:#D2FF8A"/>
+<stop offset="1" style="stop-color:#138F00"/>
+</linearGradient>
+<path d="M22.858,8.13c-3.974-2.19-8.299-2.669-11.43-1.572c3.953-0.562,7.701,0.2,11.083,2.193 c3.334,1.965,5.657,4.691,7.488,8.043C29.429,13.657,26.833,10.32,22.858,8.13z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="39.2861" x2="39.2861" y1="6.0693" y2="16.0647">
+<stop offset="0" style="stop-color:#D2FF8A"/>
+<stop offset="1" style="stop-color:#138F00"/>
+</linearGradient>
+<path d="M37.487,8.751c5.281-3.037,11.084-2.193,11.084-2.193C45.44,5.461,41.115,5.94,37.142,8.13 c-3.975,2.19-6.57,5.527-7.142,8.665C30,16.794,31.95,11.937,37.487,8.751z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="18.8848" x2="20.6575" y1="18.1733" y2="11.8801">
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="0.2303" style="stop-color:#D6FF61"/>
+<stop offset="1" style="stop-color:#138F00"/>
+</linearGradient>
+<path d="M18.916,14.601c-5.35-2.86-7.487-8.042-7.487-8.042 c0.57,3.138,3.167,6.474,7.142,8.665c3.973,2.19,8.299,2.669,11.43,1.572C30,16.794,25,17.854,18.916,14.601z" fill="url(#SVGID_15_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="40.8457" x2="39.6931" y1="17.7969" y2="13.275">
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="0.2303" style="stop-color:#D6FF61"/>
+<stop offset="1" style="stop-color:#138F00"/>
+</linearGradient>
+<path d="M41.085,14.601c-3.312,1.95-6.667,2.734-11.085,2.194 c3.131,1.097,7.457,0.618,11.43-1.572c3.975-2.19,6.572-5.527,7.142-8.665C47.307,9.783,45.313,12.11,41.085,14.601z" fill="url(#SVGID_16_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="29.9995" x2="29.9995" y1="1.0952" y2="57.5348">
+<stop offset="0" style="stop-color:#C9CDCE"/>
+<stop offset="1" style="stop-color:#6E7273"/>
+</linearGradient>
+<path d="M1.428,1.017v56.853h57.145V1.017H1.428z M57.858,57.157H2.142V1.727h55.716V57.157z" fill="url(#SVGID_17_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="30" x2="30" y1="1.8057" y2="57.1214">
+<stop offset="0" style="stop-color:#E6E9E8"/>
+<stop offset="1" style="stop-color:#ADB2B5"/>
+</linearGradient>
+<path d="M2.142,1.727v55.43h55.716V1.727H2.142z M57.144,56.447H2.856V2.438h54.287V56.447z" fill="url(#SVGID_18_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_personalization.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_personalization.svg Thu May 27 13:10:59 2010 +0300
@@ -1,185 +1,117 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="39.64" cy="18.27" gradientUnits="userSpaceOnUse" id="SVGID_1" r="29.22">
-
<stop offset="0" stop-color="#FEEFA7"/>
-
<stop offset="0.51" stop-color="#FFC501"/>
-
<stop offset="0.78" stop-color="#F6A800"/>
-
<stop offset="1" stop-color="#FCBA01"/>
-
</radialGradient>
<path d="M38.9,47.59c-2.769,0-5.188-1.035-7.191-3.076-6.77-6.896-6.979-23.27-6.975-25.47,7.495-1.505,11.22-1.801,15.09-1.801,3.624,0,6.74,0.421,13.23,1.797-0.08,2.82-1.08,28.55-14.16,28.55z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="47.09" x2="47.09" y1="18.28" y2="47.26">
-
<stop offset="0" stop-color="#FEF8DD"/>
-
<stop offset="1" stop-color="#FFC501"/>
-
</linearGradient>
<path d="M49.31,18.16s0.613,5.736-0.727,8.807l0.689,2.203s0,2.285-1.544,3.735c0,0-0.859,10.66-6.812,14.74,0,0,7.912-0.771,10.89-16.29,0,0,1.596-8.988,1.453-12.57l-3.95-0.62z" fill="url(#SVGID_2)" fill-opacity="0.5" stroke-opacity="0.5"/>
<radialGradient cx="41.63" cy="21.03" gradientUnits="userSpaceOnUse" id="SVGID_3" r="25.72">
-
<stop offset="0" stop-color="#FEF7D5"/>
-
<stop offset="0.59" stop-color="#FFF491"/>
-
<stop offset="1" stop-color="#FCBA01"/>
-
</radialGradient>
<path d="M39.82,16.93c-3.795,0-7.498,0.261-15.39,1.856,0,0-0.541,29.1,14.47,29.1,14.23,0,14.46-29.1,14.46-29.1-6.93-1.48-9.95-1.86-13.54-1.86zm-0.92,30.35c-2.684,0-5.029-1.004-6.974-2.984-6.476-6.597-6.871-22.05-6.886-25,7.305-1.457,10.97-1.746,14.78-1.746,3.553,0,6.619,0.409,12.92,1.737-0.12,3.8-1.37,27.99-13.84,27.99z" fill="url(#SVGID_3)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4" x1="39.13" x2="39.13" y1="34.06" y2="38.92">
-
<stop offset="0" stop-color="#FFAA04"/>
-
<stop offset="1" stop-color="#8F5102"/>
-
</linearGradient>
<path d="M41.43,35.78s-3.164,1.717-4.564,0.686c0,0,2.5,3.56,4.56-0.69z" fill="url(#SVGID_4)"/>
<radialGradient cx="45.76" cy="29.42" gradientUnits="userSpaceOnUse" id="SVGID_5" r="3.74">
-
<stop offset="0" stop-color="#FFE591"/>
-
<stop offset="1" stop-color="#FFC704"/>
-
</radialGradient>
<path d="M49.7,30.15h-7.921s1.433-1.333,3.96-1.492c2.52-0.16,3.78,0.31,3.96,1.49z" fill="url(#SVGID_5)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6" x1="45.74" x2="45.74" y1="29.94" y2="25.72">
-
<stop offset="0" stop-color="#FFC501"/>
-
<stop offset="1" stop-color="#FEF8DD"/>
-
</linearGradient>
<path d="M45.74,29.06c1.613,0,3.045,0.429,3.961,1.091,0.038-0.155,0.073-0.314,0.062-0.475-0.174-2.32-1.8-3.545-4.022-3.545-2.221,0-4.109,1.836-4.021,3.545,0.008,0.162,0.025,0.319,0.063,0.474,0.91-0.66,2.34-1.09,3.96-1.09z" fill="url(#SVGID_6)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7" x1="45.74" x2="45.74" y1="29.98" y2="26.55">
-
<stop offset="0" stop-color="#4D1F00"/>
-
<stop offset="1" stop-color="#BA6A02"/>
-
</linearGradient>
<path d="M45.74,29.06c1.613,0,3.045,0.429,3.961,1.091,0.038-0.155,0.062-0.313,0.062-0.475,0-1.544-1.8-2.795-4.022-2.795-2.221,0-4.021,1.251-4.021,2.795,0,0.162,0.025,0.319,0.063,0.474,0.91-0.66,2.34-1.09,3.96-1.09z" fill="url(#SVGID_7)"/>
<path d="M39.09,45.72c-3.938,0-5.338-5.51-5.338-5.51h10.68c0,0.01-1.4,5.51-5.34,5.51z" fill="#AB6100" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M39.09,45.05c-3.938,0-5.338-4.837-5.338-4.837h10.68c0,0.01-1.4,4.84-5.34,4.84z" fill="#AB6100" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8" x1="39.09" x2="39.09" y1="44.48" y2="39.88">
-
<stop offset="0" stop-color="#FFF3CC"/>
-
<stop offset="0.58" stop-color="#FFB805"/>
-
<stop offset="1" stop-color="#572000"/>
-
</linearGradient>
<path d="M39.09,44.13c-3.938,0-5.338-4.224-5.338-4.224h10.68c0-0.01-1.4,4.22-5.34,4.22z" fill="url(#SVGID_8)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9" x1="39.09" x2="39.09" y1="38.22" y2="44.61">
-
<stop offset="0" stop-color="#4D1F00"/>
-
<stop offset="1" stop-color="#BA6A02"/>
-
</linearGradient>
<path d="M34.15,40.32h9.895s-1.005,3.01-4.946,3.01c-3.94,0-4.94-3.01-4.94-3.01z" fill="url(#SVGID_9)"/>
<path d="M40.21,16.94c-0.129-0.001-0.258-0.003-0.389-0.003-3.795,0-7.498,0.261-15.39,1.856,0,0-0.333,17.96,6.803,25.66,0.137-0.13,0.279-0.248,0.413-0.386,6.7-6.82,8.23-20.35,8.57-27.13z" fill-opacity="0.1" stroke-opacity="0.1"/>
<path d="M24.43,18.79s-0.319,17.27,6.397,25.2c0.126-0.121,0.258-0.229,0.382-0.355,6.545-6.67,8.052-19.99,8.389-26.7-3.72,0.01-7.43,0.29-15.17,1.85z" fill-opacity="0.1" stroke-opacity="0.1"/>
<path d="M24.43,18.79s-0.307,16.6,6.011,24.73c0.11-0.104,0.223-0.198,0.331-0.308,6.402-6.522,7.883-19.63,8.215-26.27-3.52,0.04-7.23,0.37-14.55,1.85z" fill-opacity="0.2" stroke-opacity="0.2"/>
<radialGradient cx="22.8" cy="12.79" gradientUnits="userSpaceOnUse" id="SVGID_10" r="34.28">
-
<stop offset="0" stop-color="#E9F0F2"/>
-
<stop offset="0.04" stop-color="#E9F0F2"/>
-
<stop offset="0.58" stop-color="#BDC2C4"/>
-
<stop offset="0.83" stop-color="#949DA1"/>
-
<stop offset="0.99" stop-color="#98A1A4"/>
-
<stop offset="1" stop-color="#98A1A4"/>
-
</radialGradient>
<path d="M21.8,46.12c-2.904,0-5.439-1.102-7.534-3.273-7.552-7.834-7.376-27.3-7.325-29.68l0.192-0.041c7.558-1.608,9.588-2.041,13.61-2.041,4.453,0,8.745,0.343,17.42,2.083,0.008,2.384-0.197,21.4-8.043,29.4-2.33,2.35-5.12,3.55-8.33,3.55z" fill="url(#SVGID_10)"/>
<radialGradient cx="22.8" cy="12.51" gradientUnits="userSpaceOnUse" id="SVGID_11" r="34.9">
-
<stop offset="0" stop-color="#F6FDFF"/>
-
<stop offset="0.58" stop-color="#DBE1E3"/>
-
<stop offset="0.83" stop-color="#ABB6BA"/>
-
<stop offset="0.99" stop-color="#AAB4B8"/>
-
<stop offset="1" stop-color="#AAB4B8"/>
-
</radialGradient>
<path d="M38.47,12.92c-9.088-1.835-13.35-2.139-17.72-2.139-4.127,0-6.116,0.439-14.1,2.139,0,0-1.221,33.51,15.16,33.51,17.28,0,16.66-33.51,16.66-33.51zm-8.57,29.43c-2.256,2.298-4.979,3.463-8.095,3.463-2.818,0-5.278-1.069-7.313-3.18-7.259-7.527-7.295-26.01-7.244-29.22,7.495-1.595,9.519-2.024,13.5-2.024,4.392,0,8.628,0.335,17.11,2.028-0.01,3.21-0.42,21.26-7.96,28.93z" fill="url(#SVGID_11)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12" x1="31.5" x2="31.5" y1="11.73" y2="48.06">
-
<stop offset="0" stop-color="#F0F5F7"/>
-
<stop offset="1" stop-color="#A6AEB3"/>
-
</linearGradient>
<path d="M34.28,12.67l-0.998,8.469,1.688,3.757s0.281,1.327-1.755,4.562c0,0-0.277,12.19-8.179,15.75,0,0,8.539-0.847,11.75-17.88,0,0,1.322-9.31,1.168-14.05l-3.68-0.61z" fill="url(#SVGID_12)" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13" x1="13.22" x2="13.22" y1="12.67" y2="45.35">
-
<stop offset="0" stop-color="#F0F5F7"/>
-
<stop offset="1" stop-color="#A6AEB3"/>
-
</linearGradient>
<path d="M11.02,12.67l0.459,8.469-1.034,4.051s-0.141,1.26,1.102,4.268c0,0,0.338,12.56,7.939,15.95,0,0-8.465-0.29-11.51-18.07,0,0-1.15-9.425-0.995-14.09l4.035-0.58z" fill="url(#SVGID_13)" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14" x1="27.38" x2="27.38" y1="34.15" y2="18.18">
-
<stop offset="0" stop-color="#8D9498"/>
-
<stop offset="1" stop-color="#CEDBE0"/>
-
</linearGradient>
<path d="M22.94,22.55c-0.418,2.382,1.774,12.47-0.818,12.38,0,0,1.64,0.23,2.895-1.333,0,0-0.992-3.404-0.908-6.658-0.113-5.152,1.692-6.734,8.52-7.091,0,0-9.04-0.97-9.69,2.7z" fill="url(#SVGID_14)"/>
<radialGradient cx="14.93" cy="24.67" gradientUnits="userSpaceOnUse" id="SVGID_15" r="4.2">
-
<stop offset="0" stop-color="#F7F7F7"/>
-
<stop offset="1" stop-color="#ABABAB"/>
-
</radialGradient>
<path d="M10.51,25.5h8.901s-1.609-1.498-4.451-1.676c-2.84-0.17-4.25,0.35-4.45,1.68z" fill="url(#SVGID_15)"/>
<radialGradient cx="30.76" cy="24.67" gradientUnits="userSpaceOnUse" id="SVGID_16" r="4.2">
-
<stop offset="0" stop-color="#D4D4D4"/>
-
<stop offset="1" stop-color="#9AA7AB"/>
-
</radialGradient>
<path d="M35.18,25.5h-8.9s1.609-1.498,4.451-1.676c2.84-0.17,4.25,0.35,4.45,1.68z" fill="url(#SVGID_16)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17" x1="30.73" x2="30.73" y1="21.08" y2="23.38">
-
<stop offset="0" stop-color="#F0F0F0"/>
-
<stop offset="1" stop-color="#CFCFCF"/>
-
</linearGradient>
<path d="M30.73,23.66c1.814,0,3.422,0.482,4.451,1.227,0.043-0.173,0.07-0.352,0.07-0.533,0-1.736-2.025-3.143-4.521-3.143s-4.52,1.407-4.52,3.143c0,0.182,0.027,0.36,0.07,0.533,1.03-0.74,2.64-1.23,4.45-1.23z" fill="url(#SVGID_17)" fill-opacity="0.8" stroke-opacity="0.8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18" x1="30.73" x2="30.73" y1="25.31" y2="21.45">
-
<stop offset="0" stop-color="#333333"/>
-
<stop offset="1" stop-color="#CBCBCB"/>
-
</linearGradient>
<path d="M30.73,24.28c1.814,0,3.422,0.482,4.451,1.227,0.043-0.173,0.07-0.352,0.07-0.533,0-1.736-2.025-3.143-4.521-3.143s-4.52,1.407-4.52,3.143c0,0.182,0.027,0.36,0.07,0.533,1.03-0.75,2.64-1.23,4.45-1.23z" fill="url(#SVGID_18)"/>
<radialGradient cx="14.99" cy="24.67" gradientUnits="userSpaceOnUse" id="SVGID_19" r="4.2">
-
<stop offset="0" stop-color="#D4D4D4"/>
-
<stop offset="1" stop-color="#9AA7AB"/>
-
</radialGradient>
<path d="M19.41,25.5h-8.9s1.61-1.498,4.451-1.676c2.84-0.17,4.25,0.35,4.45,1.68z" fill="url(#SVGID_19)"/>
<path d="M14.96,23.66c1.814,0,3.422,0.482,4.451,1.227,0.043-0.173,0.07-0.352,0.07-0.533,0-1.736-2.024-3.143-4.521-3.143s-4.52,1.407-4.52,3.143c0,0.182,0.027,0.36,0.069,0.533,1.03-0.74,2.64-1.23,4.45-1.23z" fill="url(#SVGID_17)" fill-opacity="0.8" stroke-opacity="0.8"/>
@@ -187,54 +119,46 @@
<path d="M22.74,42.66c-4.516,0-6.122-6.186-6.122-6.186h12.24c0,0.01-1.61,6.19-6.12,6.19z" fill-opacity="0.05" stroke-opacity="0.05"/>
<path d="M22.74,42.05c-4.516,0-6.122-5.572-6.122-5.572h12.24s-1.61,5.57-6.12,5.57z" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22" x1="22.74" x2="22.74" y1="36.44" y2="41.45">
-
<stop offset="0" stop-color="#262D33"/>
-
<stop offset="1" stop-color="#FFFFFF"/>
-
</linearGradient>
<path d="M22.74,41.32c-4.516,0-6.122-4.844-6.122-4.844h12.24s-1.61,4.84-6.12,4.84z" fill="url(#SVGID_22)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23" x1="22.74" x2="22.74" y1="34.55" y2="41.87">
-
<stop offset="0" stop-color="#1A1A1A"/>
-
<stop offset="1" stop-color="#B2B2B2"/>
-
</linearGradient>
<path d="M17.06,36.96h11.35s-1.151,3.451-5.674,3.451-5.68-3.45-5.68-3.45z" fill="url(#SVGID_23)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="24.728,0 23.608,0.487 0,0.487 0,30.487 30,30.487 30,0.487 24.928,0.487 "/>
-<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" opacity="0.35"/>
+<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2179.9351" x2="-2179.9351" y1="2902.811" y2="2880.1646">
- <stop offset="0" style="stop-color:#8CFF24"/>
- <stop offset="1" style="stop-color:#15570B"/>
+<stop offset="0" style="stop-color:#8CFF24"/>
+<stop offset="1" style="stop-color:#15570B"/>
</linearGradient>
<path d="M25.98,5.682l-1.79-4.357L13.902,5.902l0.016,13.899c-1.574-1.029-3.896-1.366-6.257-0.729 c-3.722,1.003-6.127,4.041-5.374,6.78c0.756,2.742,4.383,4.15,8.104,3.146c3.146-0.849,5.324-3.094,5.311-5.493 c-0.01-2.399,0.02-8.913,0-13.625L25.98,5.682z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1201.8184" x2="-1201.8184" y1="3393.1226" y2="3404.4397">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="13.918,17.409 13.907,5.902 13.902,5.902 13.916,17.408 "/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1187.957" x2="-1187.957" y1="3393.1177" y2="3404.4392">
- <stop offset="0" style="stop-color:#9EFF47"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#9EFF47"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<path d="M15.701,9.169c0.005,0.759,0.006-0.117,0.008,0.711L25.98,5.682l-0.252-0.646L15.701,9.169z" fill="url(#SVGID_3_)"/>
<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1188.0039" x2="-1188.0039" y1="3402.1909" y2="3430.4734">
- <stop offset="0" style="stop-color:#B3FF6E"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#B3FF6E"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="14.072,20.2 14.072,6.3 24.389,1.807 24.19,1.324 13.674,5.902 13.674,19.803 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2185.0737" x2="-2185.0737" y1="2887.9233" y2="2879.6807">
- <stop offset="0" style="stop-color:#B2F56E"/>
- <stop offset="0.4667" style="stop-color:#40AD00"/>
- <stop offset="1" style="stop-color:#074D00"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.4667" style="stop-color:#40AD00"/>
+<stop offset="1" style="stop-color:#074D00"/>
</linearGradient>
<path d="M7.96,28.527c-2.474,0.012-4.447-1.129-4.909-2.839c-0.28-1.039,0.018-2.187,0.84-3.229 c0.9-1.141,2.291-2.007,3.923-2.436c0.688-0.184,1.385-0.277,2.075-0.281c2.474-0.013,4.445,1.129,4.91,2.84 c0.615,2.267-1.522,4.807-4.764,5.664C9.347,28.43,8.647,28.522,7.96,28.527L7.96,28.527z" fill="url(#SVGID_5_)"/>
<rect fill="none" height="30" width="30" y="0.487"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_phone_as_modem.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_phone_as_modem.svg Thu May 27 13:10:59 2010 +0300
@@ -1,253 +1,255 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="37.589" opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
- <stop offset="0" style="stop-color:#85EFFF"/>
- <stop offset="1" style="stop-color:#3BA1D9"/>
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
<rect fill="#9FE4FF" height="0.767" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D1D7D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D1D7D9"/>
</linearGradient>
<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
- <stop offset="0" style="stop-color:#6C7375"/>
- <stop offset="1" style="stop-color:#BDC2C4"/>
+<stop offset="0" style="stop-color:#6C7375"/>
+<stop offset="1" style="stop-color:#BDC2C4"/>
</linearGradient>
<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" opacity="0.6"/>
-<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" opacity="0.5"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" opacity="0.2"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" opacity="0.4"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" opacity="0.7"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" opacity="0.4"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" opacity="0.7"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="291.0005" x2="291.0005" y1="-358.7285" y2="-363.4325">
- <stop offset="0" style="stop-color:#334247"/>
- <stop offset="1" style="stop-color:#446066"/>
+<stop offset="0" style="stop-color:#334247"/>
+<stop offset="1" style="stop-color:#446066"/>
</linearGradient>
<path d="M29,28.065c0,0.173-0.139,0.311-0.311,0.311H1.312C1.14,28.376,1,28.238,1,28.065v-4.045 C1,23.85,1.14,23.71,1.312,23.71H28.69c0.172,0,0.311,0.14,0.311,0.311V28.065z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="291.0005" x2="291.0005" y1="-359.0366" y2="-363.114">
- <stop offset="0" style="stop-color:#334247"/>
- <stop offset="1" style="stop-color:#638B94"/>
+<stop offset="0" style="stop-color:#334247"/>
+<stop offset="1" style="stop-color:#638B94"/>
</linearGradient>
<path d="M1.312,24.021v4.045H28.69v-4.045H1.312z M28.377,27.444H1.623v-3.111h26.755V27.444z" fill="url(#SVGID_2__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="291.0005" x2="291.0005" y1="-363.3579" y2="-358.6539">
- <stop offset="0" style="stop-color:#334247"/>
- <stop offset="1" style="stop-color:#446066"/>
+<stop offset="0" style="stop-color:#334247"/>
+<stop offset="1" style="stop-color:#446066"/>
</linearGradient>
<path d="M28.688,23.71H1.312C1.14,23.71,1,23.85,1,24.021v4.045c0,0.173,0.139,0.311,0.311,0.311H28.69 c0.172,0,0.311-0.138,0.311-0.311v-4.045C29,23.85,28.862,23.71,28.688,23.71z M28.688,28.065H1.312v-4.045H28.69v4.045H28.688z" fill="url(#SVGID_3__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="294.5269" x2="297.7813" y1="-348.5991" y2="-348.5991">
- <stop offset="0.097" style="stop-color:#DBDBDB"/>
- <stop offset="0.6848" style="stop-color:#B0B0B0"/>
- <stop offset="1" style="stop-color:#DEDEDE"/>
+<stop offset="0" style="stop-color:#DBDBDB"/>
+<stop offset="0.097" style="stop-color:#DBDBDB"/>
+<stop offset="0.6848" style="stop-color:#B0B0B0"/>
+<stop offset="1" style="stop-color:#DEDEDE"/>
</linearGradient>
<path d="M21.844,17.488c0,0.171-0.139,0.311-0.311,0.311h-2.8c-0.173,0-0.312-0.14-0.312-0.311l0.312-7.778 c0-0.172,0.14-0.311,0.31-0.311h2.18c0.17,0,0.311,0.139,0.311,0.311L21.844,17.488z" fill="url(#SVGID_4__)"/>
-<rect enable-background="new " height="0.312" opacity="0.3" width="3.422" x="18.422" y="16.555"/>
-<rect enable-background="new " height="0.934" opacity="0.1" width="3.422" x="18.422" y="15.933"/>
-<rect enable-background="new " height="0.312" opacity="0.1" width="3.422" x="18.422" y="16.243"/>
-<path d="M21.223,9.399h-2.18c-0.17,0-0.31,0.139-0.31,0.311v0.311 c0-0.171,0.14-0.311,0.31-0.311h2.18c0.17,0,0.311,0.14,0.311,0.311V9.71C21.534,9.538,21.393,9.399,21.223,9.399z" enable-background="new " fill="#FFFFFF" opacity="0.5"/>
+<rect fill-opacity="0.3" height="0.312" stroke-opacity="0.3" width="3.422" x="18.422" y="16.555"/>
+<rect fill-opacity="0.1" height="0.934" stroke-opacity="0.1" width="3.422" x="18.422" y="15.933"/>
+<rect fill-opacity="0.1" height="0.312" stroke-opacity="0.1" width="3.422" x="18.422" y="16.243"/>
+<path d="M21.223,9.399h-2.18c-0.17,0-0.31,0.139-0.31,0.311v0.311 c0-0.171,0.14-0.311,0.31-0.311h2.18c0.17,0,0.311,0.14,0.311,0.311V9.71C21.534,9.538,21.393,9.399,21.223,9.399z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="294.856" x2="297.4459" y1="-341.7549" y2="-341.7549">
- <stop offset="0.097" style="stop-color:#DBDBDB"/>
- <stop offset="0.6848" style="stop-color:#919191"/>
- <stop offset="1" style="stop-color:#B8B8B8"/>
+<stop offset="0" style="stop-color:#DBDBDB"/>
+<stop offset="0.097" style="stop-color:#DBDBDB"/>
+<stop offset="0.6848" style="stop-color:#919191"/>
+<stop offset="1" style="stop-color:#B8B8B8"/>
</linearGradient>
<path d="M21.223,9.399l-0.313-4.979c0-0.172-0.139-0.311-0.311-0.311h-0.934 c-0.172,0-0.311,0.139-0.311,0.311l-0.311,4.979H21.223z" fill="url(#SVGID_5__)"/>
-<path d="M20.6,4.11h-0.934c-0.172,0-0.311,0.139-0.311,0.311v0.311 c0-0.172,0.139-0.311,0.311-0.311H20.6c0.172,0,0.311,0.139,0.311,0.311V4.421C20.911,4.249,20.772,4.11,20.6,4.11z" enable-background="new " fill="#FFFFFF" opacity="0.5"/>
-<rect enable-background="new " height="0.313" opacity="0.3" width="2.18" x="19.043" y="9.087"/>
-<rect enable-background="new " height="0.312" opacity="0.1" width="2.18" x="19.043" y="8.775"/>
-<rect enable-background="new " height="0.934" opacity="0.1" width="2.18" x="19.043" y="8.466"/>
+<path d="M20.6,4.11h-0.934c-0.172,0-0.311,0.139-0.311,0.311v0.311 c0-0.172,0.139-0.311,0.311-0.311H20.6c0.172,0,0.311,0.139,0.311,0.311V4.421C20.911,4.249,20.772,4.11,20.6,4.11z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect fill-opacity="0.3" height="0.313" stroke-opacity="0.3" width="2.18" x="19.043" y="9.087"/>
+<rect fill-opacity="0.1" height="0.312" stroke-opacity="0.1" width="2.18" x="19.043" y="8.775"/>
+<rect fill-opacity="0.1" height="0.934" stroke-opacity="0.1" width="2.18" x="19.043" y="8.466"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="291.0005" x2="291.0005" y1="-351.8955" y2="-359.4225">
- <stop offset="0" style="stop-color:#E0E2E6"/>
- <stop offset="1" style="stop-color:#555557"/>
+<stop offset="0" style="stop-color:#E0E2E6"/>
+<stop offset="1" style="stop-color:#555557"/>
</linearGradient>
<path d="M29,18.076c0-0.667-0.543-1.21-1.213-1.21H2.212C1.543,16.866,1,17.408,1,18.076v6.257h28V18.076z" fill="url(#SVGID_6__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_7__" x1="290.9995" x2="290.9995" y1="-352.3604" y2="-359.4167">
- <stop offset="0" style="stop-color:#D5D5D5"/>
- <stop offset="1" style="stop-color:#919191"/>
+<stop offset="0" style="stop-color:#D5D5D5"/>
+<stop offset="1" style="stop-color:#919191"/>
</linearGradient>
<path d="M28.752,17.954c0-0.343-0.278-0.621-0.623-0.621H1.87c-0.345,0-0.623,0.278-0.623,0.621v6.379h27.505 V17.954z" fill="url(#SVGID_7__)"/>
-<path d="M1.029,17.799c0.07-0.268,0.551-0.466,0.841-0.466h26.259 c0.291,0,0.768,0.198,0.837,0.466l0,0c-0.126-0.534-0.604-0.933-1.177-0.933H2.212C1.639,16.866,1.155,17.265,1.029,17.799 L1.029,17.799z" enable-background="new " fill="#FFFFFF" opacity="0.5"/>
+<path d="M1.029,17.799c0.07-0.268,0.551-0.466,0.841-0.466h26.259 c0.291,0,0.768,0.198,0.837,0.466l0,0c-0.126-0.534-0.604-0.933-1.177-0.933H2.212C1.639,16.866,1.155,17.265,1.029,17.799 L1.029,17.799z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_8__" x1="282.4448" x2="282.4448" y1="-357.3369" y2="-353.5188">
- <stop offset="0" style="stop-color:#9F9F9F"/>
- <stop offset="1" style="stop-color:#7D7D80"/>
+<stop offset="0" style="stop-color:#9F9F9F"/>
+<stop offset="1" style="stop-color:#7D7D80"/>
</linearGradient>
<rect fill="url(#SVGID_8__)" height="4.166" width="1.666" x="5.611" y="18.36"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_9__" x1="282.4438" x2="282.4438" y1="-357.249" y2="-353.6387">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<rect fill="url(#SVGID_9__)" height="3.61" width="1.112" x="5.888" y="18.639"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_10__" x1="279.3892" x2="279.3892" y1="-357.3369" y2="-353.5188">
- <stop offset="0" style="stop-color:#9F9F9F"/>
- <stop offset="1" style="stop-color:#7D7D80"/>
+<stop offset="0" style="stop-color:#9F9F9F"/>
+<stop offset="1" style="stop-color:#7D7D80"/>
</linearGradient>
<rect fill="url(#SVGID_10__)" height="4.166" width="1.667" x="2.555" y="18.36"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_11__" x1="279.3892" x2="279.3892" y1="-357.249" y2="-353.6387">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<rect fill="url(#SVGID_11__)" height="3.61" width="1.112" x="2.833" y="18.639"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_12__" x1="285.5005" x2="285.5005" y1="-357.3369" y2="-353.5188">
- <stop offset="0" style="stop-color:#9F9F9F"/>
- <stop offset="1" style="stop-color:#7D7D80"/>
+<stop offset="0" style="stop-color:#9F9F9F"/>
+<stop offset="1" style="stop-color:#7D7D80"/>
</linearGradient>
<rect fill="url(#SVGID_12__)" height="4.166" width="1.667" x="8.666" y="18.36"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_13__" x1="285.5005" x2="285.5005" y1="-357.249" y2="-353.6387">
- <stop offset="0" style="stop-color:#334247"/>
- <stop offset="1" style="stop-color:#446066"/>
+<stop offset="0" style="stop-color:#334247"/>
+<stop offset="1" style="stop-color:#446066"/>
</linearGradient>
<rect fill="url(#SVGID_13__)" height="3.61" width="1.111" x="8.944" y="18.639"/>
-<rect enable-background="new " fill="#FFFFFF" height="0.278" opacity="0.5" width="1.112" x="5.888" y="18.639"/>
-<rect enable-background="new " fill="#FFFFFF" height="0.278" opacity="0.5" width="1.112" x="2.833" y="18.639"/>
-<rect enable-background="new " height="0.311" opacity="0.3" width="28" x="1" y="24.333"/>
-<rect enable-background="new " height="0.311" opacity="0.1" width="28" x="1" y="24.644"/>
-<rect enable-background="new " fill="#FFFFFF" height="0.312" opacity="0.2" width="28" x="1" y="24.021"/>
-<rect enable-background="new " height="0.311" opacity="0.1" width="28" x="1" y="23.71"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="0.278" stroke-opacity="0.5" width="1.112" x="5.888" y="18.639"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="0.278" stroke-opacity="0.5" width="1.112" x="2.833" y="18.639"/>
+<rect fill-opacity="0.3" height="0.311" stroke-opacity="0.3" width="28" x="1" y="24.333"/>
+<rect fill-opacity="0.1" height="0.311" stroke-opacity="0.1" width="28" x="1" y="24.644"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="0.312" stroke-opacity="0.2" width="28" x="1" y="24.021"/>
+<rect fill-opacity="0.1" height="0.311" stroke-opacity="0.1" width="28" x="1" y="23.71"/>
<linearGradient gradientTransform="matrix(-0.7071 -0.7071 0.7071 -0.7071 442.0565 10.7984)" gradientUnits="userSpaceOnUse" id="SVGID_14__" x1="309.5308" x2="302.8252" y1="-296.5103" y2="-303.1235">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M13.818,1.625l1.387,1.386c-1.81,1.809-1.809,4.753,0,6.563l-1.386,1.387 C11.245,8.386,11.245,4.198,13.818,1.625z" fill="url(#SVGID_14__)"/>
<linearGradient gradientTransform="matrix(-0.7071 -0.7071 0.7071 -0.7071 442.0565 10.7984)" gradientUnits="userSpaceOnUse" id="SVGID_15__" x1="307.0698" x2="300.3655" y1="-294.0181" y2="-300.6301">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M16.963,3.382l1.387,1.385c-0.841,0.842-0.841,2.209,0,3.049l-1.387,1.387 C15.359,7.599,15.359,4.987,16.963,3.382z" fill="url(#SVGID_15__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_16__" x1="289.5513" x2="289.5513" y1="-345.8452" y2="-334.9367">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<path d="M13.819,10.529c-1.231-1.232-1.867-2.835-1.919-4.452c-0.057,1.76,0.58,3.54,1.919,4.881 l1.386-1.386c-0.072-0.073-0.137-0.15-0.203-0.226L13.819,10.529z" fill="url(#SVGID_16__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_17__" x1="293.0571" x2="293.0571" y1="-344.208" y2="-338.9822">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<path d="M16.963,8.772c-0.748-0.749-1.141-1.714-1.193-2.695C15.713,7.2,16.106,8.345,16.963,9.2 l1.387-1.387c-0.074-0.072-0.133-0.154-0.193-0.235L16.963,8.772z" fill="url(#SVGID_17__)"/>
-<path d="M13.818,2.055l1.184,1.181c0.066-0.074,0.131-0.152,0.203-0.225l-1.387-1.386 c-1.341,1.342-1.975,3.12-1.918,4.881C11.952,4.888,12.586,3.287,13.818,2.055z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M16.963,3.812l1.193,1.192c0.061-0.08,0.119-0.162,0.193-0.237l-1.387-1.385 c-0.857,0.856-1.25,2.002-1.193,3.124C15.823,5.524,16.217,4.56,16.963,3.812z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M13.818,2.055l1.184,1.181c0.066-0.074,0.131-0.152,0.203-0.225l-1.387-1.386 c-1.341,1.342-1.975,3.12-1.918,4.881C11.952,4.888,12.586,3.287,13.818,2.055z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M16.963,3.812l1.193,1.192c0.061-0.08,0.119-0.162,0.193-0.237l-1.387-1.385 c-0.857,0.856-1.25,2.002-1.193,3.124C15.823,5.524,16.217,4.56,16.963,3.812z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(0.7071 -0.7071 -0.7071 -0.7071 201.7121 10.7984)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="-117.2642" x2="-123.9698" y1="130.2861" y2="123.6729">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M26.377,1.625l-1.387,1.386c1.809,1.809,1.809,4.753,0,6.563l1.385,1.387 C28.95,8.386,28.95,4.198,26.377,1.625z" fill="url(#SVGID_18_)"/>
<linearGradient gradientTransform="matrix(0.7071 -0.7071 -0.7071 -0.7071 201.7121 10.7984)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="-119.7256" x2="-126.43" y1="132.7783" y2="126.1663">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M23.231,3.382l-1.387,1.385c0.842,0.842,0.842,2.209,0,3.049l1.387,1.387 C24.836,7.599,24.836,4.987,23.231,3.382z" fill="url(#SVGID_19_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 919.7686 -335)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="893.1245" x2="893.1245" y1="-345.8447" y2="-334.9362">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<path d="M26.375,10.529c1.232-1.232,1.867-2.835,1.92-4.452c0.057,1.76-0.578,3.54-1.92,4.881l-1.387-1.386 c0.072-0.073,0.137-0.15,0.204-0.226L26.375,10.529z" fill="url(#SVGID_20_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 919.7686 -335)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="896.6313" x2="896.6313" y1="-344.2075" y2="-338.9817">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<path d="M23.231,8.772c0.746-0.749,1.143-1.714,1.193-2.695C24.482,7.2,24.086,8.345,23.231,9.2 l-1.387-1.387c0.074-0.072,0.133-0.154,0.191-0.235L23.231,8.772z" fill="url(#SVGID_21_)"/>
-<path d="M26.377,2.055l-1.185,1.181c-0.067-0.074-0.132-0.152-0.202-0.225l1.387-1.386 c1.34,1.342,1.975,3.12,1.918,4.881C28.243,4.888,27.608,3.287,26.377,2.055z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M23.231,3.812l-1.195,1.192c-0.059-0.08-0.117-0.162-0.191-0.237l1.387-1.385 c0.855,0.856,1.251,2.002,1.193,3.124C24.374,5.524,23.977,4.56,23.231,3.812z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M26.377,2.055l-1.185,1.181c-0.067-0.074-0.132-0.152-0.202-0.225l1.387-1.386 c1.34,1.342,1.975,3.12,1.918,4.881C28.243,4.888,27.608,3.287,26.377,2.055z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M23.231,3.812l-1.195,1.192c-0.059-0.08-0.117-0.162-0.191-0.237l1.387-1.385 c0.855,0.856,1.251,2.002,1.193,3.124C24.374,5.524,23.977,4.56,23.231,3.812z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="302.5112" x2="302.5112" y1="-360.3394" y2="-362.1274">
- <stop offset="0" style="stop-color:#334247"/>
- <stop offset="1" style="stop-color:#446066"/>
+<stop offset="0" style="stop-color:#334247"/>
+<stop offset="1" style="stop-color:#446066"/>
</linearGradient>
<path d="M25.579,27.132c-0.35,0-0.623-0.233-0.623-0.533v-0.711c0-0.299,0.273-0.533,0.623-0.533h1.867 c0.348,0,0.621,0.234,0.621,0.533v0.711c0,0.3-0.273,0.533-0.621,0.533H25.579z" fill="url(#SVGID_22_)"/>
-<path d="M27.755,26.599c0,0.123-0.138,0.223-0.31,0.223h-1.867 c-0.172,0-0.311-0.1-0.311-0.223v-0.711c0-0.121,0.139-0.222,0.311-0.222h1.867c0.172,0,0.31,0.099,0.31,0.222V26.599z" enable-background="new " fill="#3FA9F5" opacity="0.5"/>
+<path d="M27.755,26.599c0,0.123-0.138,0.223-0.31,0.223h-1.867 c-0.172,0-0.311-0.1-0.311-0.223v-0.711c0-0.121,0.139-0.222,0.311-0.222h1.867c0.172,0,0.31,0.099,0.31,0.222V26.599z" fill="#3FA9F5" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_phonebook.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_phonebook.svg Thu May 27 13:10:59 2010 +0300
@@ -1,65 +1,66 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.8115" x2="30.8115" y1="3.3521" y2="56.9221">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
<path d="M54.349,56.377c0,0.085-0.727,0.813-1.622,0.813H8.898c-0.896,0-1.624-0.728-1.624-1.623V4.434 c0-0.896,0.728-1.623,1.624-1.623h43.828c0.896,0,1.622,0.728,1.622,2.437V56.377z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="51.5088" x2="55.7697" y1="16.9629" y2="16.9629">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="0.897" style="stop-color:#F0F0F0"/>
- <stop offset="0.9091" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="0.897" style="stop-color:#F0F0F0"/>
+<stop offset="0.9091" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path d="M55.259,22.511c0.438-0.225,0.713-0.678,0.713-1.17v-9.238c0-0.492-0.275-0.945-0.713-1.169 l-3.399-1.187v14.432L55.259,22.511z" fill="url(#SVGID_2_)"/>
-<polygon fill="#231F20" opacity="0.35" points="51.769,21.19 55.08,22.481 52.512,23.733 51.769,23.71 "/>
+<polygon fill="#231F20" fill-opacity="0.35" points="51.769,21.19 55.08,22.481 52.512,23.733 51.769,23.71 " stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="55.6133" x2="51.1445" y1="30.522" y2="30.522">
- <stop offset="0.0485" style="stop-color:#AFE865"/>
- <stop offset="0.0606" style="stop-color:#68B339"/>
- <stop offset="1" style="stop-color:#136101"/>
+<stop offset="0" style="stop-color:#AFE865"/>
+<stop offset="0.0485" style="stop-color:#AFE865"/>
+<stop offset="0.0606" style="stop-color:#68B339"/>
+<stop offset="1" style="stop-color:#136101"/>
</linearGradient>
<path d="M55.093,36.307c0.438-0.224,0.715-0.678,0.715-1.169v-9.239c0-0.49-0.277-0.943-0.715-1.167 l-3.754-1.427v14.435L55.093,36.307z" fill="url(#SVGID_3_)"/>
-<polygon fill="#231F20" opacity="0.35" points="50.641,35.196 54.729,36.608 51.83,37.739 50.629,37.705 "/>
+<polygon fill="#231F20" fill-opacity="0.35" points="50.641,35.196 54.729,36.608 51.83,37.739 50.629,37.705 " stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="55.5654" x2="50.8946" y1="44.645" y2="44.645">
- <stop offset="0" style="stop-color:#B8D6E9"/>
- <stop offset="0.0667" style="stop-color:#5CB2E9"/>
- <stop offset="1" style="stop-color:#005BCC"/>
+<stop offset="0" style="stop-color:#B8D6E9"/>
+<stop offset="0.0667" style="stop-color:#5CB2E9"/>
+<stop offset="1" style="stop-color:#005BCC"/>
</linearGradient>
<path d="M55.193,50.915c0.438-0.224,0.715-0.677,0.715-1.169V39.538c0-0.492-0.277-0.944-0.715-1.169 l-4.172-1.427v15.405L55.193,50.915z" fill="url(#SVGID_4_)"/>
-<rect fill="#404041" height="54.379" opacity="0.2" width="18.668" x="34.059" y="2.811"/>
-<rect fill="#404041" height="54.379" opacity="0.2" width="18.668" x="33.246" y="2.811"/>
+<rect fill="#404041" fill-opacity="0.2" height="54.379" stroke-opacity="0.2" width="18.668" x="34.059" y="2.811"/>
+<rect fill="#404041" fill-opacity="0.2" height="54.379" stroke-opacity="0.2" width="18.668" x="33.246" y="2.811"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="27.5664" x2="27.5664" y1="1.9009" y2="57.1847">
- <stop offset="0" style="stop-color:#B2F56E"/>
- <stop offset="0.5333" style="stop-color:#439020"/>
- <stop offset="1" style="stop-color:#0D4D07"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.5333" style="stop-color:#439020"/>
+<stop offset="1" style="stop-color:#0D4D07"/>
</linearGradient>
<path d="M51.104,56.377c0,0.898-0.729,1.623-1.624,1.623H5.652c-0.896,0-1.623-0.725-1.623-1.623V3.623 C4.029,2.728,4.756,2,5.652,2h43.827c0.896,0,1.624,0.728,1.624,1.623V56.377z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30.4072" x2="30.4072" y1="1.73" y2="72.4742">
- <stop offset="0" style="stop-color:#CDEDBD"/>
- <stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="0" style="stop-color:#CDEDBD"/>
+<stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="1" style="stop-color:#139900"/>
</linearGradient>
<path d="M49.479,2.811c0.448,0,0.811,0.365,0.811,0.813v52.754c0,0.449-0.362,0.813-0.811,0.813H10.521V2.811 H49.479 M49.479,2H9.711v56h39.769c0.896,0,1.624-0.725,1.624-1.623V3.623C51.104,2.728,50.375,2,49.479,2L49.479,2z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="6.8701" x2="6.8701" y1="1.73" y2="58.813">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#A0A0A0"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#A0A0A0"/>
</linearGradient>
<path d="M5.652,2C4.756,2,4.029,2.728,4.029,3.623v52.754C4.029,57.275,4.756,58,5.652,58h4.059V2H5.652z" fill="url(#SVGID_7_)"/>
<rect fill="#737373" height="56" width="0.813" x="8.898" y="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="8.4932" x2="8.4932" y1="1.73" y2="58.813">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#E6E6E6"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="56" width="0.811" x="8.088" y="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.8125" x2="30.8125" y1="21.3486" y2="47.4313">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CFCFCF"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
<path d="M39.314,37.199c-1.072-0.559-2.147-0.521-4.064-1.728c-3.053-1.921,0.533-4.525,1.326-6.673 c0.652,0.225,1.488-0.381,1.904-1.406c0.431-1.063,0.244-2.166-0.416-2.463c-0.037-0.016-0.078-0.02-0.114-0.031l0,0 c0.083-0.337,0.122-0.533,0.122-0.533c1.142-5.12-1.34-9.179-7.358-9.381c-2.473,0-3.661,1.126-4.58,2.301 c-1.491,0.23-3.853,1.596-2.196,7.566c-0.059,0.021-0.115,0.041-0.181,0.07c-0.667,0.28-0.875,1.374-0.469,2.441 c0.409,1.066,1.282,1.705,1.947,1.424c0.042-0.017,0.076-0.047,0.114-0.071c0.729,2.23,4.109,5.207,1.46,6.626 c-0.192,0.104-3.283,1.211-4.5,1.857c-1.396,0.74-3.671,2.441-3.671,6.275h24.348C42.986,39.641,40.389,37.76,39.314,37.199z" fill="url(#SVGID_9_)"/>
-<rect fill="#DEFEAC" height="0.813" opacity="0.5" width="24.348" x="18.639" y="43.475"/>
+<rect fill="#DEFEAC" fill-opacity="0.5" height="0.813" stroke-opacity="0.5" width="24.348" x="18.639" y="43.475"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_photos.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_photos.svg Thu May 27 13:10:59 2010 +0300
@@ -1,111 +1,114 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="59.999"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="28.0479" x2="28.0478" y1="7.7354" y2="49.7556">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.2485" style="stop-color:#F1F2F2"/>
- <stop offset="0.6121" style="stop-color:#D4DADE"/>
- <stop offset="0.9152" style="stop-color:#E3E8E8"/>
- <stop offset="0.9818" style="stop-color:#FCFFFE"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.2485" style="stop-color:#F1F2F2"/>
+<stop offset="0.6121" style="stop-color:#D4DADE"/>
+<stop offset="0.9152" style="stop-color:#E3E8E8"/>
+<stop offset="0.9818" style="stop-color:#FCFFFE"/>
+<stop offset="1" style="stop-color:#FCFFFE"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="54.098,47.98 4.005,50.45 1.999,9.095 52.092,6.622 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="28.0479" x2="28.0478" y1="8.2808" y2="49.2366">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.2485" style="stop-color:#EBECEC"/>
- <stop offset="0.6121" style="stop-color:#ADB2B5"/>
- <stop offset="0.9152" style="stop-color:#CCD1D1"/>
- <stop offset="0.9818" style="stop-color:#E6E9E8"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2485" style="stop-color:#EBECEC"/>
+<stop offset="0.6121" style="stop-color:#ADB2B5"/>
+<stop offset="0.9152" style="stop-color:#CCD1D1"/>
+<stop offset="0.9818" style="stop-color:#E6E9E8"/>
+<stop offset="1" style="stop-color:#E6E9E8"/>
</linearGradient>
<path d="M51.492,7.289l1.943,40.087l-48.83,2.405L2.661,9.698L51.492,7.289" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="5.3555" x2="50.48" y1="26.7739" y2="24.7415">
- <stop offset="0" style="stop-color:#92D4E3"/>
- <stop offset="1" style="stop-color:#2671D1"/>
+<stop offset="0" style="stop-color:#92D4E3"/>
+<stop offset="1" style="stop-color:#2671D1"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="51.11,39.233 6.322,41.44 4.908,12.275 49.697,10.066 "/>
-<polygon fill="#231F20" opacity="0.3" points="53.861,50.161 52.514,14.279 7.008,14.279 7.008,50.161 "/>
+<polygon fill="#231F20" fill-opacity="0.3" points="53.861,50.161 52.514,14.279 7.008,14.279 7.008,50.161 " stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="32.9248" x2="32.9248" y1="14.937" y2="53.5091">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.297" style="stop-color:#DBDCDD"/>
- <stop offset="0.6121" style="stop-color:#ADB2B5"/>
- <stop offset="0.9152" style="stop-color:#CCD1D1"/>
- <stop offset="0.9818" style="stop-color:#E6E9E8"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.297" style="stop-color:#DBDCDD"/>
+<stop offset="0.6121" style="stop-color:#ADB2B5"/>
+<stop offset="0.9152" style="stop-color:#CCD1D1"/>
+<stop offset="0.9818" style="stop-color:#E6E9E8"/>
+<stop offset="1" style="stop-color:#E6E9E8"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="38.25" width="50.149" x="7.85" y="15.128"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="32.9248" x2="32.9248" y1="15.1279" y2="53.5738">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.2485" style="stop-color:#F1F2F2"/>
- <stop offset="0.6121" style="stop-color:#D4DADE"/>
- <stop offset="0.9152" style="stop-color:#E3E8E8"/>
- <stop offset="0.9818" style="stop-color:#FCFFFE"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.2485" style="stop-color:#F1F2F2"/>
+<stop offset="0.6121" style="stop-color:#D4DADE"/>
+<stop offset="0.9152" style="stop-color:#E3E8E8"/>
+<stop offset="0.9818" style="stop-color:#FCFFFE"/>
+<stop offset="1" style="stop-color:#FCFFFE"/>
</linearGradient>
<path d="M57.37,15.767v36.973H8.479V15.767H57.37 M57.999,15.128H7.85v38.25h50.149V15.128L57.999,15.128z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="33.0215" x2="33.0215" y1="18.2749" y2="50.5403">
- <stop offset="0" style="stop-color:#B3B3B3"/>
- <stop offset="1" style="stop-color:#666666"/>
+<stop offset="0" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="31.317" width="44.844" x="10.6" y="18.45"/>
<radialGradient cx="54.0225" cy="18.9033" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="52.4862">
- <stop offset="0" style="stop-color:#8BC53F"/>
- <stop offset="0.503" style="stop-color:#33773B"/>
- <stop offset="1" style="stop-color:#004F3C"/>
+<stop offset="0" style="stop-color:#8BC53F"/>
+<stop offset="0.503" style="stop-color:#33773B"/>
+<stop offset="1" style="stop-color:#004F3C"/>
</radialGradient>
<rect fill="url(#SVGID_7_)" height="30.029" width="43.32" x="11.344" y="19.173"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="18.3887" x2="65.1917" y1="23.498" y2="49.7402">
- <stop offset="0" style="stop-color:#A7FF00"/>
- <stop offset="1" style="stop-color:#138F00"/>
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
</linearGradient>
<path d="M54.664,39.146c-0.629-0.43-1.334-0.841-2.129-1.204c-4.343-1.972-17.958-4.564-27.088-7.607 c-9.131-3.045-5.986-6.29-5.986-6.29c-0.202-0.711-0.709-1.421-1.521-0.204c-2.154,3.23,2.193,5.898,7,7.608 c5.986,2.132,19.838,4.423,25.262,8.016c1.836,1.216,3.296,2.394,4.463,3.482V39.146z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="25.0088" x2="27.8499" y1="32.647" y2="39.5468">
- <stop offset="0" style="stop-color:#A7FF00"/>
- <stop offset="1" style="stop-color:#138F00"/>
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
</linearGradient>
<path d="M21.49,39.972c1.014,0.813,4.647,1.473,8.219-1.927c2.129-2.029,2.129-5.073,2.129-5.073 s-3.854-1.116-7.405,1.319C20.882,36.726,20.477,39.159,21.49,39.972z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="15.8662" x2="16.0691" y1="27.7065" y2="31.6628">
- <stop offset="0" style="stop-color:#A7FF00"/>
- <stop offset="1" style="stop-color:#138F00"/>
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
</linearGradient>
<path d="M12.544,30.37c0.415,0.624,2.298,1.62,4.854,0.377c1.524-0.744,2.057-2.417,2.057-2.417 s-1.925-1.286-4.302-0.567C12.775,28.479,12.129,29.746,12.544,30.37z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="25.8027" x2="26.7159" y1="25.4258" y2="29.8901">
- <stop offset="0" style="stop-color:#A7FF00"/>
- <stop offset="1" style="stop-color:#138F00"/>
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
</linearGradient>
<path d="M29.506,25.059c-0.711-0.71-2.659-1.55-5.275,0.61c-1.563,1.288-1.581,3.556-1.581,3.556 s2.595,0.298,4.675-0.817C29.73,27.116,30.14,25.693,29.506,25.059z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="40.0938" x2="42.1227" y1="28.4878" y2="39.1729">
- <stop offset="0" style="stop-color:#A7FF00"/>
- <stop offset="1" style="stop-color:#138F00"/>
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
</linearGradient>
<path d="M43.962,28.813c-0.614-0.793-2.64-1.47-4.871,0.71c-1.446,1.414-1.935,4.57-1.935,4.57 s2.595,0.3,4.674-0.816C44.236,31.985,44.824,29.929,43.962,28.813z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="43.7607" x2="43.2202" y1="36.4453" y2="47.2661">
- <stop offset="0" style="stop-color:#A7FF00"/>
- <stop offset="1" style="stop-color:#138F00"/>
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
</linearGradient>
<path d="M37.245,46.001c1.288,0.863,6.896,2.138,11.433-1.479c2.711-2.159,1.725-5.969,1.725-5.969 s-5.83-2.202-10.347,0.391C35.539,41.532,35.954,45.136,37.245,46.001z" fill="url(#SVGID_13_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="52.2568" x2="56.5859" y1="29.7988" y2="42.3786">
- <stop offset="0" style="stop-color:#A7FF00"/>
- <stop offset="1" style="stop-color:#138F00"/>
+<stop offset="0" style="stop-color:#A7FF00"/>
+<stop offset="1" style="stop-color:#138F00"/>
</linearGradient>
<path d="M54.664,29.374c-1.041,1.038-1.97,2.361-2.577,4.026c-1.184,3.254,1.644,5.99,1.644,5.99 s0.359-0.069,0.934-0.233V29.374z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="47.4512" x2="44.533" y1="29.749" y2="35.4486">
- <stop offset="0.1333" style="stop-color:#45E8FF"/>
- <stop offset="0.5333" style="stop-color:#30A4D5"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1333" style="stop-color:#45E8FF"/>
+<stop offset="0.5333" style="stop-color:#30A4D5"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M44.197,35.911c0,0,1.608-8.439,3.197-5.71C48.369,31.871,45.559,35.674,44.197,35.911z" fill="url(#SVGID_15_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="40.9365" x2="43.3032" y1="29.688" y2="36.0635">
- <stop offset="0" style="stop-color:#45E8FF"/>
- <stop offset="0.5152" style="stop-color:#30A4D5"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.5152" style="stop-color:#30A4D5"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M44.324,35.956c0,0-0.502-10.259-3.893-6.101C38.119,32.696,41.59,34.696,44.324,35.956z" fill="url(#SVGID_16_)"/>
-<polygon fill="#FFFFFF" opacity="0.3" points="57.999,25.07 57.999,15.128 7.85,15.128 7.85,31.056 "/>
-<rect fill="#FFFFFF" height="1.396" opacity="0.05" width="44.844" x="10.6" y="48.371"/>
-<rect fill="#FFFFFF" height="2.204" opacity="0.05" width="44.844" x="10.6" y="47.563"/>
-<rect fill="#FFFFFF" height="3.012" opacity="0.05" width="44.844" x="10.6" y="46.756"/>
-<rect fill="#FFFFFF" height="3.82" opacity="0.05" width="44.844" x="10.6" y="45.947"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="57.999,25.07 57.999,15.128 7.85,15.128 7.85,31.056 " stroke-opacity="0.3"/>
+<rect fill="#FFFFFF" fill-opacity="0.05" height="1.396" stroke-opacity="0.05" width="44.844" x="10.6" y="48.371"/>
+<rect fill="#FFFFFF" fill-opacity="0.05" height="2.204" stroke-opacity="0.05" width="44.844" x="10.6" y="47.563"/>
+<rect fill="#FFFFFF" fill-opacity="0.05" height="3.012" stroke-opacity="0.05" width="44.844" x="10.6" y="46.756"/>
+<rect fill="#FFFFFF" fill-opacity="0.05" height="3.82" stroke-opacity="0.05" width="44.844" x="10.6" y="45.947"/>
<rect fill="none" height="60" width="59.999"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_pin_code.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_pin_code.svg Thu May 27 13:10:59 2010 +0300
@@ -1,40 +1,38 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="19.1738" y2="39.8846">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.3879" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#A2A6A8"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3879" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A2A6A8"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="20.795" width="56" x="2" y="19.068"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.0005" x2="30.0005" y1="22.8101" y2="37.2885">
- <stop offset="0" style="stop-color:#A9AAAD"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#A9AAAD"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="14.537" width="47.479" x="6.262" y="22.736"/>
-<rect fill="#231F20" height="14.562" opacity="0.2" width="1.068" x="52.658" y="22.657"/>
-<rect fill="#231F20" height="14.562" opacity="0.2" width="1.068" x="6.41" y="22.657"/>
+<rect fill="#231F20" fill-opacity="0.2" height="14.562" stroke-opacity="0.2" width="1.068" x="52.658" y="22.657"/>
+<rect fill="#231F20" fill-opacity="0.2" height="14.562" stroke-opacity="0.2" width="1.068" x="6.41" y="22.657"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9995" x2="29.9995" y1="19.1792" y2="40.952">
- <stop offset="0" style="stop-color:#D2D3D3"/>
- <stop offset="1" style="stop-color:#7B7E80"/>
+<stop offset="0" style="stop-color:#D2D3D3"/>
+<stop offset="1" style="stop-color:#7B7E80"/>
</linearGradient>
<path d="M2,19.068V40.93h56V19.068H2z M56.932,39.863H3.068V20.135h53.863V39.863z" fill="url(#SVGID_3_)"/>
<polygon points="36.742,27.786 35.885,27.292 34.578,29.555 33.271,27.292 32.412,27.786 33.721,30.051 31.107,30.051 31.107,31.043 33.721,31.043 32.412,33.305 33.271,33.799 34.578,31.537 35.885,33.799 36.744,33.305 35.438,31.043 38.051,31.043 38.051,30.051 35.436,30.051 "/>
<polygon points="26.824,27.786 25.965,27.292 24.659,29.555 23.353,27.292 22.494,27.786 23.801,30.051 21.187,30.051 21.187,31.043 23.801,31.043 22.494,33.305 23.352,33.799 24.659,31.537 25.965,33.799 26.825,33.305 25.518,31.043 28.131,31.043 28.131,30.051 25.518,30.051 "/>
<polygon points="16.904,27.786 16.047,27.292 14.739,29.555 13.434,27.292 12.574,27.786 13.881,30.051 11.268,30.051 11.268,31.043 13.881,31.043 12.574,33.305 13.434,33.799 14.739,31.537 16.047,33.799 16.905,33.305 15.599,31.043 18.211,31.043 18.211,30.051 15.598,30.051 "/>
<rect height="1.217" width="6.086" x="41.566" y="32.748"/>
-<polygon opacity="0.2" points="31.582,32.855 32.666,30.979 30.499,30.979 30.499,28.768 32.666,28.768 31.582,26.891 33.496,25.787 34.578,27.665 35.662,25.787 37.574,26.891 36.49,28.768 38.658,28.768 38.658,30.979 36.492,30.979 37.576,32.855 35.662,33.959 34.578,32.082 33.494,33.959 "/>
+<polygon fill-opacity="0.2" points="31.582,32.855 32.666,30.979 30.499,30.979 30.499,28.768 32.666,28.768 31.582,26.891 33.496,25.787 34.578,27.665 35.662,25.787 37.574,26.891 36.49,28.768 38.658,28.768 38.658,30.979 36.492,30.979 37.576,32.855 35.662,33.959 34.578,32.082 33.494,33.959 " stroke-opacity="0.2"/>
<polygon fill="#FFFFFF" points="38.051,29.377 35.436,29.377 36.742,27.114 35.885,26.62 34.578,28.881 33.271,26.62 32.412,27.114 33.721,29.377 31.107,29.377 31.107,30.37 33.721,30.37 32.412,32.633 33.271,33.127 34.578,30.866 35.885,33.127 36.744,32.633 35.438,30.37 38.051,30.37 "/>
-<polygon opacity="0.2" points="21.662,32.855 22.746,30.979 20.578,30.979 20.578,28.768 22.746,28.768 21.662,26.891 23.576,25.787 24.659,27.665 25.742,25.787 27.655,26.891 26.571,28.768 28.739,28.768 28.739,30.979 26.572,30.979 27.656,32.855 25.742,33.959 24.659,32.082 23.574,33.959 "/>
+<polygon fill-opacity="0.2" points="21.662,32.855 22.746,30.979 20.578,30.979 20.578,28.768 22.746,28.768 21.662,26.891 23.576,25.787 24.659,27.665 25.742,25.787 27.655,26.891 26.571,28.768 28.739,28.768 28.739,30.979 26.572,30.979 27.656,32.855 25.742,33.959 24.659,32.082 23.574,33.959 " stroke-opacity="0.2"/>
<polygon fill="#FFFFFF" points="28.131,29.377 25.518,29.377 26.824,27.114 25.965,26.62 24.659,28.881 23.353,26.62 22.494,27.114 23.801,29.377 21.187,29.377 21.187,30.37 23.801,30.37 22.494,32.633 23.352,33.127 24.659,30.866 25.965,33.127 26.825,32.633 25.518,30.37 28.131,30.37 "/>
-<polygon opacity="0.2" points="11.742,32.855 12.826,30.979 10.659,30.979 10.659,28.768 12.826,28.768 11.742,26.891 13.656,25.787 14.74,27.665 15.823,25.787 17.736,26.891 16.652,28.768 18.82,28.768 18.82,30.979 16.652,30.979 17.737,32.855 15.823,33.959 14.739,32.082 13.656,33.959 "/>
+<polygon fill-opacity="0.2" points="11.742,32.855 12.826,30.979 10.659,30.979 10.659,28.768 12.826,28.768 11.742,26.891 13.656,25.787 14.74,27.665 15.823,25.787 17.736,26.891 16.652,28.768 18.82,28.768 18.82,30.979 16.652,30.979 17.737,32.855 15.823,33.959 14.739,32.082 13.656,33.959 " stroke-opacity="0.2"/>
<polygon fill="#FFFFFF" points="18.211,29.377 15.598,29.377 16.904,27.114 16.047,26.62 14.739,28.881 13.434,26.62 12.574,27.114 13.881,29.377 11.268,29.377 11.268,30.37 13.881,30.37 12.574,32.633 13.434,33.127 14.739,30.866 16.047,33.127 16.905,32.633 15.599,30.37 18.211,30.37 "/>
-<rect height="2.436" opacity="0.2" width="7.305" x="40.957" y="31.465"/>
+<rect fill-opacity="0.2" height="2.436" stroke-opacity="0.2" width="7.305" x="40.957" y="31.465"/>
<rect fill="#E6E6E6" height="1.217" width="6.086" x="41.566" y="32.074"/>
-<rect height="0.607" opacity="0.3" width="47.479" x="6.262" y="22.736"/>
+<rect fill-opacity="0.3" height="0.607" stroke-opacity="0.3" width="47.479" x="6.262" y="22.736"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_play.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_play.svg Thu May 27 13:10:59 2010 +0300
@@ -1,26 +1,24 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 590.3462 -1619.0369)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1120.6924" x2="-1120.6924" y1="3241.8101" y2="3353.8101">
- <stop offset="0" style="stop-color:#D5F5B5"/>
- <stop offset="1" style="stop-color:#40AD00"/>
+<stop offset="0" style="stop-color:#D5F5B5"/>
+<stop offset="1" style="stop-color:#40AD00"/>
</linearGradient>
<path d="M30,58C14.561,58,2,45.44,2,30C2,14.562,14.561,2,30,2c15.436,0,28,12.562,28,28 C58,45.44,45.436,58,30,58L30,58z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3204.8525)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164.001" x2="-2164.001" y1="3202.0542" y2="3146.4495">
- <stop offset="0" style="stop-color:#8CFF24"/>
- <stop offset="1" style="stop-color:#15570B"/>
+<stop offset="0" style="stop-color:#8CFF24"/>
+<stop offset="1" style="stop-color:#15570B"/>
</linearGradient>
<path d="M57.197,30c0,15.024-12.18,27.201-27.197,27.201C14.975,57.201,2.801,45.024,2.801,30 C2.801,14.981,14.975,2.799,30,2.799C45.018,2.799,57.197,14.981,57.197,30z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="33.0234" x2="33.0234" y1="42.7275" y2="14.4317">
- <stop offset="0" style="stop-color:#82DA3B"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#82DA3B"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="20.705,14.267 45.342,28.42 20.705,42.858 "/>
<polygon fill="#FFFFFF" points="22.221,16.888 44.016,29.469 22.221,42.054 "/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_playlist.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_playlist.svg Thu May 27 13:10:59 2010 +0300
@@ -1,32 +1,32 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20.6719" x2="23.6638" y1="61.0908" y2="51.1174">
- <stop offset="0" style="stop-color:#E6E9E8"/>
- <stop offset="0.7455" style="stop-color:#ADB2B5"/>
+<stop offset="0" style="stop-color:#E6E9E8"/>
+<stop offset="0.7455" style="stop-color:#ADB2B5"/>
+<stop offset="1" style="stop-color:#ADB2B5"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="53" width="51.291" x="4.354" y="3.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="3.0728" y2="54.3628">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
<path d="M55.645,54.79h-26.5c0,0-13.249-0.381-20.089-3.347c-4.56-1.975-4.702-4.181-4.702-4.181V3.5h51.291 V54.79z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.999" x2="29.999" y1="3.0728" y2="54.3628">
- <stop offset="0" style="stop-color:#E5EBED"/>
- <stop offset="0.703" style="stop-color:#8D9699"/>
- <stop offset="1" style="stop-color:#B7BDBF"/>
+<stop offset="0" style="stop-color:#E5EBED"/>
+<stop offset="0.703" style="stop-color:#8D9699"/>
+<stop offset="1" style="stop-color:#B7BDBF"/>
</linearGradient>
<path d="M4.354,3.5v43.763c0,0,0.048,0.672,0.855,1.611V4.356h49.58v49.582H19.324 c5.195,0.719,9.82,0.852,9.82,0.852h26.5V3.5H4.354z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.7158" x2="16.7993" y1="47.938" y2="54.272">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.1939" style="stop-color:#E6E9E8"/>
- <stop offset="0.9333" style="stop-color:#84878A"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.1939" style="stop-color:#E6E9E8"/>
+<stop offset="0.9333" style="stop-color:#84878A"/>
+<stop offset="1" style="stop-color:#84878A"/>
</linearGradient>
-<path clip-rule="evenodd" d="M31.211,54.79c0,0-12.406,0.569-17.906-8.515 c0,0-7.511,5.564-8.951,0.987C4.967,50.406,10.504,54.903,31.211,54.79z" fill="url(#SVGID_4_)" fill-rule="evenodd"/>
+<path d="M31.211,54.79c0,0-12.406,0.569-17.906-8.515 c0,0-7.511,5.564-8.951,0.987C4.967,50.406,10.504,54.903,31.211,54.79z" fill="url(#SVGID_4_)" fill-rule="evenodd"/>
<rect fill="#F5F5F5" height="0.855" width="42.741" x="8.628" y="39.55"/>
<rect fill="#666666" height="1.71" width="42.741" x="8.628" y="37.84"/>
<rect fill="#F5F5F5" height="0.854" width="42.741" x="8.628" y="31.856"/>
@@ -38,36 +38,34 @@
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="24.728,0 23.608,0.487 0,0.487 0,30.487 30,30.487 30,0.487 24.928,0.487 "/>
-<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" opacity="0.35"/>
+<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179.9351" x2="-2179.9351" y1="2902.811" y2="2880.1646">
- <stop offset="0" style="stop-color:#8CFF24"/>
- <stop offset="1" style="stop-color:#15570B"/>
+<stop offset="0" style="stop-color:#8CFF24"/>
+<stop offset="1" style="stop-color:#15570B"/>
</linearGradient>
<path d="M25.98,5.682l-1.79-4.357L13.902,5.902l0.016,13.899c-1.574-1.029-3.896-1.366-6.257-0.729 c-3.722,1.003-6.127,4.041-5.374,6.78c0.756,2.742,4.383,4.15,8.104,3.146c3.146-0.849,5.324-3.094,5.311-5.493 c-0.01-2.399,0.02-8.913,0-13.625L25.98,5.682z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1201.8184" x2="-1201.8184" y1="3393.1226" y2="3404.4397">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="13.918,17.409 13.907,5.902 13.902,5.902 13.916,17.408 "/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1187.957" x2="-1187.957" y1="3393.1177" y2="3404.4392">
- <stop offset="0" style="stop-color:#9EFF47"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#9EFF47"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<path d="M15.701,9.169c0.005,0.759,0.006-0.117,0.008,0.711L25.98,5.682l-0.252-0.646L15.701,9.169z" fill="url(#SVGID_3__)"/>
<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188.0039" x2="-1188.0039" y1="3402.1909" y2="3430.4734">
- <stop offset="0" style="stop-color:#B3FF6E"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#B3FF6E"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<polygon fill="url(#SVGID_4__)" points="14.072,20.2 14.072,6.3 24.389,1.807 24.19,1.324 13.674,5.902 13.674,19.803 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2185.0737" x2="-2185.0737" y1="2887.9233" y2="2879.6807">
- <stop offset="0" style="stop-color:#B2F56E"/>
- <stop offset="0.4667" style="stop-color:#40AD00"/>
- <stop offset="1" style="stop-color:#074D00"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.4667" style="stop-color:#40AD00"/>
+<stop offset="1" style="stop-color:#074D00"/>
</linearGradient>
<path d="M7.96,28.527c-2.474,0.012-4.447-1.129-4.909-2.839c-0.28-1.039,0.018-2.187,0.84-3.229 c0.9-1.141,2.291-2.007,3.923-2.436c0.688-0.184,1.385-0.277,2.075-0.281c2.474-0.013,4.445,1.129,4.91,2.84 c0.615,2.267-1.522,4.807-4.764,5.664C9.347,28.43,8.647,28.522,7.96,28.527L7.96,28.527z" fill="url(#SVGID_5_)"/>
<rect fill="none" height="30" width="30" y="0.487"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_positioning.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_positioning.svg Thu May 27 13:10:59 2010 +0300
@@ -1,68 +1,69 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="307.1426" x2="307.1426" y1="-338.7412" y2="-384.8441">
- <stop offset="0" style="stop-color:#4FB7EB"/>
- <stop offset="1" style="stop-color:#1755B3"/>
+<stop offset="0" style="stop-color:#4FB7EB"/>
+<stop offset="1" style="stop-color:#1755B3"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="49.362,7.722 57.042,8.771 57.042,51.648 43.521,53.498 30,50.807 22.283,52.262 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="304.2402" x2="304.2402" y1="-352.3188" y2="-384.8111">
- <stop offset="0" style="stop-color:#8EFFF5"/>
- <stop offset="1" style="stop-color:#1D9DD8"/>
+<stop offset="0" style="stop-color:#8EFFF5"/>
+<stop offset="1" style="stop-color:#1D9DD8"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="43.521,20.192 43.521,53.498 30,50.807 30,39.762 "/>
-<polygon enable-background="new " opacity="0.25" points="50.26,7.855 43.521,22.093 30,41.684 23.377,52.074 20.223,52.66 47.878,7.523 "/>
+<polygon fill-opacity="0.25" points="50.26,7.855 43.521,22.093 30,41.684 23.377,52.074 20.223,52.66 47.878,7.523 " stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="291.7021" x2="291.7021" y1="-338.3325" y2="-384.5055">
- <stop offset="0" style="stop-color:#FEEFA7"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEEFA7"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="45.482,9.658 43.416,20.78 30,40.236 22.332,52.27 15.73,53.498 2.962,51.096 2.962,7.848 15.355,6.921 30,8.953 43.521,6.921 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="290.3457" x2="290.3457" y1="-382.6211" y2="-339.5177">
- <stop offset="0" style="stop-color:#E69400"/>
- <stop offset="1" style="stop-color:#F9DE4F"/>
+<stop offset="0" style="stop-color:#E69400"/>
+<stop offset="1" style="stop-color:#F9DE4F"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="30,8.953 30,40.236 22.332,52.27 15.73,53.498 15.73,6.975 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="313.9336" x2="313.9336" y1="-351.3516" y2="-338.7017">
- <stop offset="0" style="stop-color:#E69400"/>
- <stop offset="1" style="stop-color:#F9DE4F"/>
+<stop offset="0" style="stop-color:#E69400"/>
+<stop offset="1" style="stop-color:#F9DE4F"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="43.521,6.921 43.521,20.625 49.384,7.724 "/>
-<path d="M16.481,53.352l11.489-17.232l-4.841-2.406l-7.339,10.152 l-7.168,8.281l-2.29-0.424l9.407-11.078l5.523-7.85l-5.784-2.85L2.962,27.38v-1.32l12.994,2.686l6.07,2.979l6.841-9.601 l-13.339-6.657L2.962,13.258v-2.043l12.972,2.171l13.968,6.974l4.003-6.803l-3.908-1.373l-5.807-4.013l2.769,0.383l3.052,2.231 l4.549,1.657l2.689-4.566L39.882,7.5l-3.506,5.913l4.999,2.689l2.188-3.465l2.257-5.396l1.268,0.173l-3.548,7.662 c0,0-8.686,13.464-13.521,20.694L18.318,53.018L16.481,53.352z M28.837,35.115l-4.9-2.488l6.735-9.472l4.503,2.186L28.837,35.115z M31.748,21.279l4.714,2.353l4.213-6.433l-4.958-2.667L31.748,21.279L31.748,21.279z" enable-background="new " fill="#FFFFFF" opacity="0.25"/>
+<path d="M16.481,53.352l11.489-17.232l-4.841-2.406l-7.339,10.152 l-7.168,8.281l-2.29-0.424l9.407-11.078l5.523-7.85l-5.784-2.85L2.962,27.38v-1.32l12.994,2.686l6.07,2.979l6.841-9.601 l-13.339-6.657L2.962,13.258v-2.043l12.972,2.171l13.968,6.974l4.003-6.803l-3.908-1.373l-5.807-4.013l2.769,0.383l3.052,2.231 l4.549,1.657l2.689-4.566L39.882,7.5l-3.506,5.913l4.999,2.689l2.188-3.465l2.257-5.396l1.268,0.173l-3.548,7.662 c0,0-8.686,13.464-13.521,20.694L18.318,53.018L16.481,53.352z M28.837,35.115l-4.9-2.488l6.735-9.472l4.503,2.186L28.837,35.115z M31.748,21.279l4.714,2.353l4.213-6.433l-4.958-2.667L31.748,21.279L31.748,21.279z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="292.3779" x2="292.3779" y1="-384.0728" y2="-350.2898">
- <stop offset="0" style="stop-color:#FCE28D"/>
- <stop offset="0.8121" style="stop-color:#FEF7DF"/>
+<stop offset="0" style="stop-color:#FCE28D"/>
+<stop offset="0.8121" style="stop-color:#FEF7DF"/>
+<stop offset="1" style="stop-color:#FEF7DF"/>
</linearGradient>
<path d="M46.025,7.262l-2.477,5.932c0,0-1.337,2.112-2.076,3.277l-5.486-2.949l3.527-5.948l-1.79,0.241 l-3.054,4.999l-4.627-1.698l-3.417-2.63l-2.113-0.292l5.51,3.755l4.268,1.503l-4.279,7.275l-14.134-7.056L2.962,11.49v1.483 l12.62,2.208l13.677,6.826l-0.164,0.276l-6.977,9.794l-6.366-3.1L2.959,26.357L2.962,27.1l12.753,2.652l5.966,2.938L15.758,41 L6.646,51.789l1.694,0.316l7.417-8.592l7.282-10.158l5.416,2.668L16.874,53.285l1.054-0.197l12.089-18.129l13.552-20.4l3.267-7.185 L46.025,7.262z M30.009,33.498l-1.264,1.945l-5.27-2.695l6.604-9.387l0.519-0.686l5.138,2.565L30.009,33.498z M36.559,23.992 l-5.202-2.597l4.253-7.233l5.463,2.937L36.559,23.992z" fill="url(#SVGID_6_)"/>
<polygon fill="#FFFFFF" points="38.255,46.385 43.528,35.268 48.269,46.385 43.528,43.514 "/>
-<polygon enable-background="new " opacity="0.4" points="48.269,46.385 43.528,35.268 43.528,43.514 "/>
+<polygon fill-opacity="0.4" points="48.269,46.385 43.528,35.268 43.528,43.514 " stroke-opacity="0.4"/>
<path d="M20.926,5.4c-1.043,0-1.892,0.833-1.892,1.857c0,1.022,0.849,1.855,1.892,1.855 c1.042,0,1.891-0.833,1.891-1.855C22.818,6.232,21.968,5.4,20.926,5.4z" fill="none"/>
<rect fill="none" height="60" width="60.001"/>
-<path d="M21.041,33.514l5.39-9.33l9.33-5.389l-9.33-5.388l-2.635-5.315l-5.098-0.706 l-3.045,6.021l-9.33,5.388l9.331,5.389L21.041,33.514z M23.442,13.688h2.705v2.706h-2.705V13.688z M23.442,21.197h2.705V23.9h-2.705 V21.197z M15.936,13.688h2.705v2.706h-2.705V13.688z M15.936,21.197h2.705V23.9h-2.705V21.197z" enable-background="new " opacity="0.25"/>
+<path d="M21.041,33.514l5.39-9.33l9.33-5.389l-9.33-5.388l-2.635-5.315l-5.098-0.706 l-3.045,6.021l-9.33,5.388l9.331,5.389L21.041,33.514z M23.442,13.688h2.705v2.706h-2.705V13.688z M23.442,21.197h2.705V23.9h-2.705 V21.197z M15.936,13.688h2.705v2.706h-2.705V13.688z M15.936,21.197h2.705V23.9h-2.705V21.197z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="288.5215" x2="288.5215" y1="-336.2764" y2="-362.4492">
- <stop offset="0.1879" style="stop-color:#DAFF8C"/>
- <stop offset="1" style="stop-color:#77C949"/>
+<stop offset="0" style="stop-color:#DAFF8C"/>
+<stop offset="0.1879" style="stop-color:#DAFF8C"/>
+<stop offset="1" style="stop-color:#77C949"/>
</linearGradient>
<polygon fill="url(#SVGID_7_)" points="34.261,18.043 26.898,13.793 26.898,16.394 22.691,16.394 22.691,12.186 25.292,12.186 21.041,4.826 16.791,12.186 19.392,12.186 19.392,16.394 15.184,16.394 15.184,13.793 7.823,18.043 15.184,22.294 15.184,19.694 19.392,19.694 19.392,23.9 16.791,23.9 21.041,31.262 25.292,23.9 22.691,23.9 22.691,19.694 26.898,19.694 26.898,22.294 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="288.5215" x2="288.5215" y1="-337.4956" y2="-361.0748">
- <stop offset="0" style="stop-color:#AEE737"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#AEE737"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<polygon fill="url(#SVGID_8_)" points="18.092,24.651 20.142,24.651 20.142,18.943 14.434,18.943 14.434,20.992 9.326,18.043 14.434,15.095 14.434,17.145 20.142,17.145 20.142,11.435 18.092,11.435 21.041,6.328 23.991,11.435 21.941,11.435 21.941,17.145 27.65,17.145 27.65,15.095 32.757,18.043 27.65,20.992 27.65,18.943 21.941,18.943 21.941,24.651 23.991,24.651 21.041,29.758 "/>
-<path d="M21.041,22.492c-2.039,0-3.697-1.659-3.697-3.698s1.659-3.698,3.697-3.698 c2.039,0,3.698,1.659,3.698,3.698S23.08,22.492,21.041,22.492L21.041,22.492z" enable-background="new " opacity="0.25"/>
+<path d="M21.041,22.492c-2.039,0-3.697-1.659-3.697-3.698s1.659-3.698,3.697-3.698 c2.039,0,3.698,1.659,3.698,3.698S23.08,22.492,21.041,22.492L21.041,22.492z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="288.5215" x2="288.5215" y1="-346.1563" y2="-352.2564">
- <stop offset="0.1879" style="stop-color:#DAFF8C"/>
- <stop offset="1" style="stop-color:#77C949"/>
+<stop offset="0" style="stop-color:#DAFF8C"/>
+<stop offset="0.1879" style="stop-color:#DAFF8C"/>
+<stop offset="1" style="stop-color:#77C949"/>
</linearGradient>
<circle cx="21.041" cy="18.129" fill="url(#SVGID_9_)" r="3.031"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="288.5215" x2="288.5215" y1="-346.814" y2="-351.5732">
- <stop offset="0" style="stop-color:#AEE737"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#AEE737"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M21.041,20.493c-1.304,0-2.364-1.061-2.364-2.365c0-1.304,1.06-2.366,2.364-2.366 c1.305,0,2.365,1.06,2.365,2.366C23.406,19.432,22.346,20.493,21.041,20.493L21.041,20.493z" fill="url(#SVGID_10_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_positioning_info.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_positioning_info.svg Thu May 27 13:10:59 2010 +0300
@@ -1,95 +1,94 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="307.1426" x2="307.1426" y1="-338.7412" y2="-384.8441">
- <stop offset="0" style="stop-color:#4FB7EB"/>
- <stop offset="1" style="stop-color:#1755B3"/>
+<stop offset="0" style="stop-color:#4FB7EB"/>
+<stop offset="1" style="stop-color:#1755B3"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="49.362,7.722 57.042,8.771 57.042,51.648 43.521,53.498 30,50.807 22.283,52.262 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="304.2402" x2="304.2402" y1="-352.3188" y2="-384.8111">
- <stop offset="0" style="stop-color:#8EFFF5"/>
- <stop offset="1" style="stop-color:#1D9DD8"/>
+<stop offset="0" style="stop-color:#8EFFF5"/>
+<stop offset="1" style="stop-color:#1D9DD8"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="43.521,20.192 43.521,53.498 30,50.807 30,39.762 "/>
-<polygon enable-background="new " opacity="0.25" points="50.26,7.855 43.521,22.093 30,41.684 23.377,52.074 20.223,52.66 47.878,7.523 "/>
+<polygon fill-opacity="0.25" points="50.26,7.855 43.521,22.093 30,41.684 23.377,52.074 20.223,52.66 47.878,7.523 " stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="291.7021" x2="291.7021" y1="-338.3325" y2="-384.5055">
- <stop offset="0" style="stop-color:#FEEFA7"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEEFA7"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="45.482,9.658 43.416,20.78 30,40.236 22.332,52.27 15.73,53.498 2.962,51.096 2.962,7.848 15.355,6.921 30,8.953 43.521,6.921 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="290.3457" x2="290.3457" y1="-382.6211" y2="-339.5177">
- <stop offset="0" style="stop-color:#E69400"/>
- <stop offset="1" style="stop-color:#F9DE4F"/>
+<stop offset="0" style="stop-color:#E69400"/>
+<stop offset="1" style="stop-color:#F9DE4F"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="30,8.953 30,40.236 22.332,52.27 15.73,53.498 15.73,6.975 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="313.9336" x2="313.9336" y1="-351.3516" y2="-338.7017">
- <stop offset="0" style="stop-color:#E69400"/>
- <stop offset="1" style="stop-color:#F9DE4F"/>
+<stop offset="0" style="stop-color:#E69400"/>
+<stop offset="1" style="stop-color:#F9DE4F"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="43.521,6.921 43.521,20.625 49.384,7.724 "/>
-<path d="M16.481,53.352l11.489-17.232l-4.841-2.406l-7.339,10.152 l-7.168,8.281l-2.29-0.424l9.407-11.078l5.523-7.85l-5.784-2.85L2.962,27.38v-1.32l12.994,2.686l6.07,2.979l6.841-9.601 l-13.339-6.657L2.962,13.258v-2.043l12.972,2.171l13.968,6.974l4.003-6.803l-3.908-1.373l-5.807-4.013l2.769,0.383l3.052,2.231 l4.549,1.657l2.689-4.566L39.882,7.5l-3.506,5.913l4.999,2.689l2.188-3.465l2.257-5.396l1.268,0.173l-3.548,7.662 c0,0-8.686,13.464-13.521,20.694L18.318,53.018L16.481,53.352z M28.837,35.115l-4.9-2.488l6.735-9.472l4.503,2.186L28.837,35.115z M31.748,21.279l4.714,2.353l4.213-6.433l-4.958-2.667L31.748,21.279L31.748,21.279z" enable-background="new " fill="#FFFFFF" opacity="0.25"/>
+<path d="M16.481,53.352l11.489-17.232l-4.841-2.406l-7.339,10.152 l-7.168,8.281l-2.29-0.424l9.407-11.078l5.523-7.85l-5.784-2.85L2.962,27.38v-1.32l12.994,2.686l6.07,2.979l6.841-9.601 l-13.339-6.657L2.962,13.258v-2.043l12.972,2.171l13.968,6.974l4.003-6.803l-3.908-1.373l-5.807-4.013l2.769,0.383l3.052,2.231 l4.549,1.657l2.689-4.566L39.882,7.5l-3.506,5.913l4.999,2.689l2.188-3.465l2.257-5.396l1.268,0.173l-3.548,7.662 c0,0-8.686,13.464-13.521,20.694L18.318,53.018L16.481,53.352z M28.837,35.115l-4.9-2.488l6.735-9.472l4.503,2.186L28.837,35.115z M31.748,21.279l4.714,2.353l4.213-6.433l-4.958-2.667L31.748,21.279L31.748,21.279z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="292.3779" x2="292.3779" y1="-384.0728" y2="-350.2898">
- <stop offset="0" style="stop-color:#FCE28D"/>
- <stop offset="0.8121" style="stop-color:#FEF7DF"/>
+<stop offset="0" style="stop-color:#FCE28D"/>
+<stop offset="0.8121" style="stop-color:#FEF7DF"/>
+<stop offset="1" style="stop-color:#FEF7DF"/>
</linearGradient>
<path d="M46.025,7.262l-2.477,5.932c0,0-1.337,2.112-2.076,3.277l-5.486-2.949l3.527-5.948l-1.79,0.241 l-3.054,4.999l-4.627-1.698l-3.417-2.63l-2.113-0.292l5.51,3.755l4.268,1.503l-4.279,7.275l-14.134-7.056L2.962,11.49v1.483 l12.62,2.208l13.677,6.826l-0.164,0.276l-6.977,9.794l-6.366-3.1L2.959,26.357L2.962,27.1l12.753,2.652l5.966,2.938L15.758,41 L6.646,51.789l1.694,0.316l7.417-8.592l7.282-10.158l5.416,2.668L16.874,53.285l1.054-0.197l12.089-18.129l13.552-20.4l3.267-7.185 L46.025,7.262z M30.009,33.498l-1.264,1.945l-5.27-2.695l6.604-9.387l0.519-0.686l5.138,2.565L30.009,33.498z M36.559,23.992 l-5.202-2.597l4.253-7.233l5.463,2.937L36.559,23.992z" fill="url(#SVGID_6_)"/>
<polygon fill="#FFFFFF" points="38.255,46.385 43.528,35.268 48.269,46.385 43.528,43.514 "/>
-<polygon enable-background="new " opacity="0.4" points="48.269,46.385 43.528,35.268 43.528,43.514 "/>
+<polygon fill-opacity="0.4" points="48.269,46.385 43.528,35.268 43.528,43.514 " stroke-opacity="0.4"/>
<path d="M20.926,5.4c-1.043,0-1.892,0.833-1.892,1.857c0,1.022,0.849,1.855,1.892,1.855 c1.042,0,1.891-0.833,1.891-1.855C22.818,6.232,21.968,5.4,20.926,5.4z" fill="none"/>
<rect fill="none" height="60" width="60.001"/>
-<path d="M21.041,33.514l5.39-9.33l9.33-5.389l-9.33-5.388l-2.635-5.315l-5.098-0.706 l-3.045,6.021l-9.33,5.388l9.331,5.389L21.041,33.514z M23.442,13.688h2.705v2.706h-2.705V13.688z M23.442,21.197h2.705V23.9h-2.705 V21.197z M15.936,13.688h2.705v2.706h-2.705V13.688z M15.936,21.197h2.705V23.9h-2.705V21.197z" enable-background="new " opacity="0.25"/>
+<path d="M21.041,33.514l5.39-9.33l9.33-5.389l-9.33-5.388l-2.635-5.315l-5.098-0.706 l-3.045,6.021l-9.33,5.388l9.331,5.389L21.041,33.514z M23.442,13.688h2.705v2.706h-2.705V13.688z M23.442,21.197h2.705V23.9h-2.705 V21.197z M15.936,13.688h2.705v2.706h-2.705V13.688z M15.936,21.197h2.705V23.9h-2.705V21.197z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="288.5215" x2="288.5215" y1="-336.2764" y2="-362.4492">
- <stop offset="0.1879" style="stop-color:#DAFF8C"/>
- <stop offset="1" style="stop-color:#77C949"/>
+<stop offset="0" style="stop-color:#DAFF8C"/>
+<stop offset="0.1879" style="stop-color:#DAFF8C"/>
+<stop offset="1" style="stop-color:#77C949"/>
</linearGradient>
<polygon fill="url(#SVGID_7_)" points="34.261,18.043 26.898,13.793 26.898,16.394 22.691,16.394 22.691,12.186 25.292,12.186 21.041,4.826 16.791,12.186 19.392,12.186 19.392,16.394 15.184,16.394 15.184,13.793 7.823,18.043 15.184,22.294 15.184,19.694 19.392,19.694 19.392,23.9 16.791,23.9 21.041,31.262 25.292,23.9 22.691,23.9 22.691,19.694 26.898,19.694 26.898,22.294 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="288.5215" x2="288.5215" y1="-337.4956" y2="-361.0748">
- <stop offset="0" style="stop-color:#AEE737"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#AEE737"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<polygon fill="url(#SVGID_8_)" points="18.092,24.651 20.142,24.651 20.142,18.943 14.434,18.943 14.434,20.992 9.326,18.043 14.434,15.095 14.434,17.145 20.142,17.145 20.142,11.435 18.092,11.435 21.041,6.328 23.991,11.435 21.941,11.435 21.941,17.145 27.65,17.145 27.65,15.095 32.757,18.043 27.65,20.992 27.65,18.943 21.941,18.943 21.941,24.651 23.991,24.651 21.041,29.758 "/>
-<path d="M21.041,22.492c-2.039,0-3.697-1.659-3.697-3.698s1.659-3.698,3.697-3.698 c2.039,0,3.698,1.659,3.698,3.698S23.08,22.492,21.041,22.492L21.041,22.492z" enable-background="new " opacity="0.25"/>
+<path d="M21.041,22.492c-2.039,0-3.697-1.659-3.697-3.698s1.659-3.698,3.697-3.698 c2.039,0,3.698,1.659,3.698,3.698S23.08,22.492,21.041,22.492L21.041,22.492z" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="288.5215" x2="288.5215" y1="-346.1563" y2="-352.2564">
- <stop offset="0.1879" style="stop-color:#DAFF8C"/>
- <stop offset="1" style="stop-color:#77C949"/>
+<stop offset="0" style="stop-color:#DAFF8C"/>
+<stop offset="0.1879" style="stop-color:#DAFF8C"/>
+<stop offset="1" style="stop-color:#77C949"/>
</linearGradient>
<circle cx="21.041" cy="18.129" fill="url(#SVGID_9_)" r="3.031"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -331.0195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="288.5215" x2="288.5215" y1="-346.814" y2="-351.5732">
- <stop offset="0" style="stop-color:#AEE737"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#AEE737"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M21.041,20.493c-1.304,0-2.364-1.061-2.364-2.365c0-1.304,1.06-2.366,2.364-2.366 c1.305,0,2.365,1.06,2.365,2.366C23.406,19.432,22.346,20.493,21.041,20.493L21.041,20.493z" fill="url(#SVGID_10_)"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M15,30C6.729,30,0,23.271,0,15C0,6.729,6.729,0,15,0s15,6.729,15,15C30,23.271,23.271,30,15,30L15,30z" opacity="0.35"/>
-<path d="M15.159,10.697c0.525,0,0.947-0.13,1.264-0.39 c0.316-0.259,0.474-0.615,0.474-1.07c0-0.44-0.164-0.795-0.49-1.061c-0.326-0.264-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.132-1.261,0.395c-0.311,0.262-0.465,0.617-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.567,14.641,10.697,15.159,10.697z" enable-background="new " opacity="0.1"/>
-<path d="M15.159,10.369c0.525,0,0.947-0.129,1.264-0.389 c0.316-0.26,0.474-0.615,0.474-1.07c0-0.441-0.164-0.795-0.49-1.061c-0.326-0.266-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.13-1.261,0.394c-0.311,0.263-0.465,0.616-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.24,14.641,10.369,15.159,10.369z" enable-background="new " opacity="0.2"/>
+<path d="M15,30C6.729,30,0,23.271,0,15C0,6.729,6.729,0,15,0s15,6.729,15,15C30,23.271,23.271,30,15,30L15,30z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M15.159,10.697c0.525,0,0.947-0.13,1.264-0.39 c0.316-0.259,0.474-0.615,0.474-1.07c0-0.44-0.164-0.795-0.49-1.061c-0.326-0.264-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.132-1.261,0.395c-0.311,0.262-0.465,0.617-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.567,14.641,10.697,15.159,10.697z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M15.159,10.369c0.525,0,0.947-0.129,1.264-0.389 c0.316-0.26,0.474-0.615,0.474-1.07c0-0.441-0.164-0.795-0.49-1.061c-0.326-0.266-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.13-1.261,0.394c-0.311,0.263-0.465,0.616-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.24,14.641,10.369,15.159,10.369z" fill-opacity="0.2" stroke-opacity="0.2"/>
<radialGradient cx="-2178.8628" cy="3345.4287" gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="26.49">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</radialGradient>
<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1c7.721,0,14,6.28,14,14S22.72,29,15,29L15,29z" fill="url(#SVGID_1__)"/>
-<polygon enable-background="new " opacity="0.1" points="12.46,13.847 13.555,13.847 13.555,23.318 16.741,23.318 16.741,12.032 12.46,12.032 "/>
-<polygon enable-background="new " opacity="0.2" points="12.46,13.519 13.555,13.519 13.555,22.99 16.741,22.99 16.741,11.704 12.46,11.704 "/>
+<polygon fill-opacity="0.1" points="12.46,13.847 13.555,13.847 13.555,23.318 16.741,23.318 16.741,12.032 12.46,12.032 " stroke-opacity="0.1"/>
+<polygon fill-opacity="0.2" points="12.46,13.519 13.555,13.519 13.555,22.99 16.741,22.99 16.741,11.704 12.46,11.704 " stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179.3994" x2="-2179.3994" y1="3340.2148" y2="3324.8184">
- <stop offset="0" style="stop-color:#F6FDFF"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="12.46,13.191 13.555,13.191 13.555,22.663 16.741,22.663 16.741,11.377 12.46,11.377 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-2178.8477" x2="-2178.8477" y1="3340.2158" y2="3324.8235">
- <stop offset="0" style="stop-color:#F6FDFF"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M15.148,10.205c0.524,0,0.945-0.129,1.262-0.389c0.316-0.259,0.475-0.615,0.475-1.07 c0-0.441-0.163-0.795-0.489-1.061c-0.327-0.264-0.743-0.397-1.248-0.397c-0.531,0-0.952,0.131-1.262,0.394 c-0.312,0.262-0.466,0.617-0.466,1.064c0,0.455,0.159,0.812,0.477,1.07C14.212,10.076,14.63,10.205,15.148,10.205z" fill="url(#SVGID_3__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_power_management.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_power_management.svg Thu May 27 13:10:59 2010 +0300
@@ -1,43 +1,41 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="60" width="60"/>
+<rect fill="none" height="60" width="60"/>
</g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="11.4556" x2="48.9027" y1="32.1465" y2="32.1465">
- <stop offset="0" style="stop-color:#AFB6BA"/>
- <stop offset="0.2667" style="stop-color:#DDE3E6"/>
- <stop offset="0.6545" style="stop-color:#949DA1"/>
- <stop offset="0.8788" style="stop-color:#D9DFE1"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#AFB6BA"/>
+<stop offset="0.2667" style="stop-color:#DDE3E6"/>
+<stop offset="0.6545" style="stop-color:#949DA1"/>
+<stop offset="0.8788" style="stop-color:#D9DFE1"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M48.544,55.771c0,0.678-0.55,1.228-1.228,1.228H12.684c-0.678,0-1.228-0.55-1.228-1.228V8.522 c0-0.678,0.55-1.228,1.228-1.228h34.633c0.678,0,1.228,0.55,1.228,1.228V55.771z" fill="url(#SVGID_1_)"/>
<rect fill-opacity="0.4" height="36.816" width="29.726" x="15.137" y="12.204"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.4556" x2="48.5444" y1="55.7715" y2="55.7715">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="0.5" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#808080"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="0.5" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
<path d="M47.317,55.771H12.684c-0.678,0-1.228-0.55-1.228-1.228v0.614v0.613 c0,0.678,0.55,1.228,1.228,1.228h34.633c0.678,0,1.228-0.55,1.228-1.228v-0.613v-0.614C48.544,55.222,47.995,55.771,47.317,55.771z" fill="url(#SVGID_2_)" fill-opacity="0.4"/>
<path d="M47.317,7.295H12.684c-0.678,0-1.228,0.55-1.228,1.228v0.613 c0-0.678,0.55-1.227,1.228-1.227h34.633c0.678,0,1.228,0.549,1.228,1.227V8.522C48.544,7.845,47.995,7.295,47.317,7.295z" fill="#FFFFFF" fill-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="22.2319" x2="37.769" y1="5.147" y2="5.147">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.303" style="stop-color:#FFFFFF"/>
- <stop offset="0.7212" style="stop-color:#909496"/>
- <stop offset="1" style="stop-color:#D1D6D7"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.303" style="stop-color:#FFFFFF"/>
+<stop offset="0.7212" style="stop-color:#909496"/>
+<stop offset="1" style="stop-color:#D1D6D7"/>
</linearGradient>
<path d="M37.769,7.295V4.839c0-1.016-0.792-1.84-1.768-1.84H23.999c-0.976,0-1.767,0.824-1.767,1.84v2.456 H37.769z" fill="url(#SVGID_3_)"/>
<path d="M36.001,2.999H23.999c-0.976,0-1.767,0.824-1.767,1.84v0.615 c0-1.018,0.791-1.842,1.767-1.842h12.003c0.976,0,1.768,0.824,1.768,1.842V4.839C37.769,3.823,36.977,2.999,36.001,2.999z" fill="#FFFFFF" fill-opacity="0.4"/>
<rect fill-opacity="0.4" height="0.613" width="15.537" x="22.232" y="6.682"/>
<rect fill-opacity="0.2" height="0.614" width="15.537" x="22.232" y="6.067"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.6558" x2="44.6947" y1="38.2822" y2="38.2822">
- <stop offset="0" style="stop-color:#5AA913"/>
- <stop offset="0.3212" style="stop-color:#A8F222"/>
- <stop offset="0.7697" style="stop-color:#58A813"/>
- <stop offset="1" style="stop-color:#8FD31D"/>
+<stop offset="0" style="stop-color:#5AA913"/>
+<stop offset="0.3212" style="stop-color:#A8F222"/>
+<stop offset="0.7697" style="stop-color:#58A813"/>
+<stop offset="1" style="stop-color:#8FD31D"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="21.477" width="29.726" x="15.137" y="27.544"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="0.612" width="29.726" x="15.137" y="27.544"/>
@@ -48,9 +46,9 @@
<path d="M15.137,12.204v36.816h29.726V12.204H15.137z M44.249,48.407H15.751V12.818h28.497V48.407z" fill-opacity="0.1"/>
<rect fill-opacity="0.3" height="1.227" width="29.726" x="15.137" y="12.204"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.4556" x2="48.5444" y1="53.0107" y2="53.0107">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.5" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#A6A8AB"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.5" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#A6A8AB"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" fill-opacity="0.3" height="0.613" width="37.089" x="11.456" y="52.704"/>
<rect fill="#FFFFFF" fill-opacity="0.3" height="0.613" width="37.089" x="11.456" y="53.317"/>
@@ -58,50 +56,48 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="34.363" width="12.542" x="20.047" y="13.431"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
<path d="M4.702,29.605v-4.874h5.554c0.938,0,1.606-0.196,1.932-0.566c0.384-0.438,0.411-1.195,0.39-1.449 l-0.017-0.254l-0.001-2.041H7.667c-0.845,0-1.532-0.681-1.532-1.518L5.41,10.721c-0.641-0.182-1.112-0.768-1.112-1.46V6.812 c0-0.837,0.687-1.519,1.531-1.519h2.755V1.855c0-0.806,0.611-1.46,1.363-1.46h0.922c0.752,0,1.363,0.654,1.363,1.46v3.438h5.229 V1.855c0-0.806,0.611-1.46,1.363-1.46h0.922c0.752,0,1.363,0.654,1.363,1.46v3.438h3.061c0.846,0,1.531,0.682,1.531,1.519v2.449 c0,0.692-0.471,1.279-1.112,1.46l-0.726,8.235c0.002,0.784-0.686,1.465-1.529,1.465h-4.897v0.612h-0.011v1.298 c0.061,0.65,0.131,3.098-1.582,5.051c-1.295,1.475-3.176,2.224-5.588,2.224H4.702z" fill-opacity="0.35"/>
<path d="M16.827,22.331v-2.51h-3.667v2.602l0.015,0.235c0.001,0.012,0.105,1.172-0.536,1.902 c-0.449,0.512-1.251,0.771-2.383,0.771H5.302v3.674h4.954c2.232,0,3.961-0.679,5.137-2.019 C16.954,25.208,16.881,22.957,16.827,22.331z" fill="#333333"/>
<path d="M16.217,22.385l-0.004-0.027v-2.536h-2.441v2.583l0.014,0.216l-0.002-0.012 c0.019,0.209,0.09,1.473-0.685,2.356c-0.571,0.65-1.527,0.979-2.843,0.979H5.302v2.449h4.954c2.049,0,3.622-0.609,4.676-1.811 C16.327,24.993,16.268,22.968,16.217,22.385z" fill="#4D4D4D"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="6.4722" x2="16.7294" y1="29.0205" y2="21.2034">
- <stop offset="0" style="stop-color:#A9AAAD"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#A9AAAD"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<path d="M15.604,22.412l-0.002-0.027v-2.563h-1.219v2.563l0.014,0.196c0.025,0.334,0.072,1.751-0.838,2.788 c-0.693,0.787-1.803,1.187-3.303,1.187H5.302v1.225h4.954c1.864,0,3.284-0.539,4.216-1.602 C15.708,24.771,15.653,22.96,15.604,22.412z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="9.1841" x2="11.6328" y1="4.3623" y2="4.3623">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.7091" style="stop-color:#686E70"/>
- <stop offset="1" style="stop-color:#A6B0B3"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#686E70"/>
+<stop offset="1" style="stop-color:#A6B0B3"/>
</linearGradient>
<path d="M11.633,6.87c0,0.475-0.342,0.859-0.764,0.859H9.947c-0.422,0-0.763-0.385-0.763-0.859V1.855 c0-0.476,0.341-0.86,0.763-0.86h0.922c0.422,0,0.764,0.385,0.764,0.86V6.87z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="18.061" x2="20.5103" y1="4.3623" y2="4.3623">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.7091" style="stop-color:#686E70"/>
- <stop offset="1" style="stop-color:#A6B0B3"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#686E70"/>
+<stop offset="1" style="stop-color:#A6B0B3"/>
</linearGradient>
<path d="M20.51,6.87c0,0.475-0.342,0.859-0.764,0.859h-0.922c-0.422,0-0.764-0.385-0.764-0.859V1.855 c0-0.476,0.342-0.86,0.764-0.86h0.922c0.422,0,0.764,0.385,0.764,0.86V6.87z" fill="url(#SVGID_3__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="7.6772" y2="19.8455">
- <stop offset="0" style="stop-color:#A9AAAD"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#A9AAAD"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<path d="M23.266,18.903c0,0.507-0.418,0.918-0.932,0.918H7.667c-0.515,0-0.932-0.411-0.932-0.918L5.816,8.495 c0-0.508,0.417-0.919,0.931-0.919h16.505c0.514,0,0.932,0.411,0.932,0.919L23.266,18.903z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="5.5771" x2="24.3763" y1="13.6392" y2="13.6392">
- <stop offset="0" style="stop-color:#333333"/>
- <stop offset="0.3" style="stop-color:#A9AAAD"/>
- <stop offset="0.7" style="stop-color:#A9AAAD"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#333333"/>
+<stop offset="0.3" style="stop-color:#A9AAAD"/>
+<stop offset="0.7" style="stop-color:#A9AAAD"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<path d="M7.667,19.089c-0.176,0-0.32-0.137-0.32-0.306v-0.027L6.429,8.476c0.01-0.16,0.149-0.286,0.318-0.286 h16.505c0.168,0,0.308,0.126,0.318,0.286l-0.918,10.28v0.027c0,0.169-0.143,0.306-0.318,0.306H7.667z" fill="url(#SVGID_5__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="4.8979" x2="25.0414" y1="8.0356" y2="8.0356">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.7091" style="stop-color:#686E70"/>
- <stop offset="1" style="stop-color:#A6B0B3"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#686E70"/>
+<stop offset="1" style="stop-color:#A6B0B3"/>
</linearGradient>
<path d="M25.102,9.261c0,0.507-0.416,0.918-0.932,0.918H5.829c-0.514,0-0.931-0.411-0.931-0.918V6.812 c0-0.508,0.417-0.919,0.931-0.919H24.17c0.516,0,0.932,0.411,0.932,0.919V9.261z" fill="url(#SVGID_6_)"/>
<path d="M24.17,5.893H5.829c-0.514,0-0.931,0.411-0.931,0.919v0.306 c0-0.507,0.417-0.918,0.931-0.918H24.17c0.516,0,0.932,0.411,0.932,0.918V6.812C25.102,6.304,24.686,5.893,24.17,5.893z" fill="#FFFFFF" fill-opacity="0.3"/>
@@ -116,4 +112,4 @@
<rect fill-opacity="0.3" height="0.306" width="3.673" x="13.163" y="19.821"/>
<rect fill-opacity="0.2" height="0.307" width="3.673" x="13.163" y="20.127"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_presentation_player.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_presentation_player.svg Thu May 27 13:10:59 2010 +0300
@@ -1,135 +1,127 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="51.4814" y2="10.7829">
- <stop offset="0" style="stop-color:#EBEBEB"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
+<stop offset="0" style="stop-color:#EBEBEB"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="41.251" width="51.16" x="4.42" y="10.346"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="50.5747" y2="11.4563">
- <stop offset="0" style="stop-color:#B3B3B3"/>
- <stop offset="1" style="stop-color:#808080"/>
+<stop offset="0" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="38.485" width="46.32" x="6.84" y="11.729"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="11.2798" y2="49.8705">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="37.103" width="44.938" x="7.531" y="12.42"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="48.4854" y2="13.2231">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="35.72" width="43.555" x="8.223" y="13.111"/>
-<rect height="3.111" opacity="0.1" width="51.16" x="4.42" y="10.346"/>
-<rect height="1.729" opacity="0.2" width="51.16" x="4.42" y="10.346"/>
+<rect fill-opacity="0.1" height="3.111" stroke-opacity="0.1" width="51.16" x="4.42" y="10.346"/>
+<rect fill-opacity="0.2" height="1.729" stroke-opacity="0.2" width="51.16" x="4.42" y="10.346"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="5.7334" y2="10.6915">
- <stop offset="0" style="stop-color:#B4BDBF"/>
- <stop offset="0.2667" style="stop-color:#E5EBED"/>
- <stop offset="0.703" style="stop-color:#8D9699"/>
- <stop offset="1" style="stop-color:#B7BDBF"/>
+<stop offset="0" style="stop-color:#B4BDBF"/>
+<stop offset="0.2667" style="stop-color:#E5EBED"/>
+<stop offset="0.703" style="stop-color:#8D9699"/>
+<stop offset="1" style="stop-color:#B7BDBF"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="4.873" width="56" x="2" y="5.818"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="56.9375" x2="56.9375" y1="5.7334" y2="10.6915">
- <stop offset="0" style="stop-color:#292929"/>
- <stop offset="0.3455" style="stop-color:#8C8C8C"/>
- <stop offset="0.7" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#646464"/>
+<stop offset="0" style="stop-color:#292929"/>
+<stop offset="0.3455" style="stop-color:#8C8C8C"/>
+<stop offset="0.7" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="4.873" width="2.125" x="55.875" y="5.818"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="3.0615" x2="3.0615" y1="5.7334" y2="10.6915">
- <stop offset="0" style="stop-color:#292929"/>
- <stop offset="0.3455" style="stop-color:#8C8C8C"/>
- <stop offset="0.7" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#646464"/>
+<stop offset="0" style="stop-color:#292929"/>
+<stop offset="0.3455" style="stop-color:#8C8C8C"/>
+<stop offset="0.7" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="4.873" width="2.123" x="2" y="5.818"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="29.999" x2="29.999" y1="54.1147" y2="51.2821">
- <stop offset="0" style="stop-color:#B4BDBF"/>
- <stop offset="0.2667" style="stop-color:#E5EBED"/>
- <stop offset="0.703" style="stop-color:#8D9699"/>
- <stop offset="1" style="stop-color:#B7BDBF"/>
+<stop offset="0" style="stop-color:#B4BDBF"/>
+<stop offset="0.2667" style="stop-color:#E5EBED"/>
+<stop offset="0.703" style="stop-color:#8D9699"/>
+<stop offset="1" style="stop-color:#B7BDBF"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="2.683" width="54.584" x="2.707" y="51.498"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="56.583" x2="56.583" y1="54.1147" y2="51.2821">
- <stop offset="0" style="stop-color:#292929"/>
- <stop offset="0.3455" style="stop-color:#8C8C8C"/>
- <stop offset="0.7" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#646464"/>
+<stop offset="0" style="stop-color:#292929"/>
+<stop offset="0.3455" style="stop-color:#8C8C8C"/>
+<stop offset="0.7" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="2.683" width="1.416" x="55.875" y="51.498"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="3.415" x2="3.415" y1="54.1147" y2="51.2821">
- <stop offset="0" style="stop-color:#292929"/>
- <stop offset="0.3455" style="stop-color:#8C8C8C"/>
- <stop offset="0.7" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#646464"/>
+<stop offset="0" style="stop-color:#292929"/>
+<stop offset="0.3455" style="stop-color:#8C8C8C"/>
+<stop offset="0.7" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="2.683" width="1.416" x="2.707" y="51.498"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="45.4971" x2="45.4971" y1="15.5684" y2="44.6055">
- <stop offset="0" style="stop-color:#8CC944"/>
- <stop offset="1" style="stop-color:#358C0C"/>
-</linearGradient>
<rect fill="url(#SVGID_11_)" height="29.037" width="6.221" x="42.387" y="16.105"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="35.127" x2="35.127" y1="23.854" y2="45.9286">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
-</linearGradient>
<rect fill="url(#SVGID_12_)" height="21.432" width="6.223" x="32.016" y="23.711"/>
-<rect height="24.889" opacity="0.25" width="6.223" x="22.336" y="20.945"/>
+<rect fill-opacity="0.25" height="24.889" stroke-opacity="0.25" width="6.223" x="22.336" y="20.945"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="24.7559" x2="24.7559" y1="20.1851" y2="44.97">
- <stop offset="0" style="stop-color:#8CC944"/>
- <stop offset="1" style="stop-color:#358C0C"/>
+<stop offset="0" style="stop-color:#8CC944"/>
+<stop offset="1" style="stop-color:#358C0C"/>
</linearGradient>
<rect fill="url(#SVGID_13_)" height="24.889" width="6.223" x="21.645" y="20.254"/>
-<rect height="7.604" opacity="0.25" width="6.221" x="11.967" y="38.229"/>
+<rect fill-opacity="0.25" height="7.604" stroke-opacity="0.25" width="6.221" x="11.967" y="38.229"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="14.3857" x2="14.3857" y1="37.5381" y2="45.3728">
- <stop offset="0" style="stop-color:#DD7E28"/>
- <stop offset="1" style="stop-color:#D8300A"/>
+<stop offset="0" style="stop-color:#DD7E28"/>
+<stop offset="1" style="stop-color:#D8300A"/>
</linearGradient>
<rect fill="url(#SVGID_14_)" height="7.604" width="6.221" x="11.275" y="37.538"/>
-<rect height="29.037" opacity="0.25" width="6.221" x="43.078" y="16.797"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="45.4971" x2="45.4971" y1="15.5684" y2="44.6055">
- <stop offset="0" style="stop-color:#8CC944"/>
- <stop offset="1" style="stop-color:#358C0C"/>
+<rect fill-opacity="0.25" height="29.037" stroke-opacity="0.25" width="6.221" x="43.078" y="16.797"/>
+<rect fill="url(#SVGID_11_)" height="29.037" width="6.221" x="42.387" y="16.105"/>
+<rect fill-opacity="0.25" height="21.432" stroke-opacity="0.25" width="6.223" x="32.707" y="24.402"/>
+<rect fill="url(#SVGID_12_)" height="21.432" width="6.223" x="32.016" y="23.711"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="1.153" stroke-opacity="0.5" width="6.221" x="42.387" y="16.105"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="1.153" stroke-opacity="0.5" width="6.223" x="32.016" y="23.711"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="1.153" stroke-opacity="0.5" width="6.223" x="21.645" y="20.254"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="1.153" stroke-opacity="0.5" width="6.221" x="11.275" y="37.538"/>
+<rect fill="none" height="60" width="60"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="45.4971" x2="45.4971" y1="15.5684" y2="44.6055">
+<stop offset="0" style="stop-color:#8CC944"/>
+<stop offset="1" style="stop-color:#358C0C"/>
</linearGradient>
-<rect fill="url(#SVGID_15_)" height="29.037" width="6.221" x="42.387" y="16.105"/>
-<rect height="21.432" opacity="0.25" width="6.223" x="32.707" y="24.402"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="35.127" x2="35.127" y1="23.854" y2="45.9286">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+</defs>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="35.127" x2="35.127" y1="23.854" y2="45.9286">
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
-<rect fill="url(#SVGID_16_)" height="21.432" width="6.223" x="32.016" y="23.711"/>
-<rect fill="#FFFFFF" height="1.153" opacity="0.5" width="6.221" x="42.387" y="16.105"/>
-<rect fill="#FFFFFF" height="1.153" opacity="0.5" width="6.223" x="32.016" y="23.711"/>
-<rect fill="#FFFFFF" height="1.153" opacity="0.5" width="6.223" x="21.645" y="20.254"/>
-<rect fill="#FFFFFF" height="1.153" opacity="0.5" width="6.221" x="11.275" y="37.538"/>
-<rect fill="none" height="60" width="60"/>
+</defs>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.999C6.729,29.999,0,23.271,0,15S6.729,0.001,15,0.001c8.271,0,15,6.729,15,14.999 S23.271,29.999,15,29.999L15,29.999z" opacity="0.35"/>
+<path d="M15,29.999C6.729,29.999,0,23.271,0,15S6.729,0.001,15,0.001c8.271,0,15,6.729,15,14.999 S23.271,29.999,15,29.999L15,29.999z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 579.9604 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-1129.9209" x2="-1129.9209" y1="3388.3521" y2="3444.3481">
- <stop offset="0" style="stop-color:#D5F5B5"/>
- <stop offset="1" style="stop-color:#40AD00"/>
+<stop offset="0" style="stop-color:#D5F5B5"/>
+<stop offset="1" style="stop-color:#40AD00"/>
</linearGradient>
<path d="M15,28.999C7.279,28.999,1,22.72,1,15C1,7.281,7.279,1.001,15,1.001c7.718,0,14,6.28,14,13.999 C29,22.72,22.718,28.999,15,28.999L15,28.999z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179.0005" x2="-2179.0005" y1="2906.6362" y2="2878.8359">
- <stop offset="0" style="stop-color:#8CFF24"/>
- <stop offset="1" style="stop-color:#15570B"/>
+<stop offset="0" style="stop-color:#8CFF24"/>
+<stop offset="1" style="stop-color:#15570B"/>
</linearGradient>
<path d="M28.599,15c0,7.512-6.09,13.6-13.599,13.6C7.486,28.6,1.4,22.512,1.4,15C1.4,7.491,7.486,1.4,15,1.4 C22.509,1.4,28.599,7.491,28.599,15z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="16.5117" x2="16.5117" y1="21.3633" y2="7.2163">
- <stop offset="0" style="stop-color:#82DA3B"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#82DA3B"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<polygon fill="url(#SVGID_3__)" points="10.353,7.134 22.671,14.21 10.353,21.429 "/>
<polygon fill="#FFFFFF" points="11.11,8.444 22.008,14.734 11.11,21.026 "/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_profiles.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_profiles.svg Thu May 27 13:10:59 2010 +0300
@@ -1,103 +1,99 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.9414" x2="17.9414" y1="5.0361" y2="34.0517">
- <stop offset="0" style="stop-color:#73E3FF"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#73E3FF"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M7.014,26.609h21.855V4.753C16.799,4.753,7.014,14.538,7.014,26.609z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="17.9678" x2="17.9678" y1="6.0098" y2="52.2334">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M7.82,25.855C8.563,15.003,17.264,6.301,28.115,5.559v20.296H7.82z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="16.4346" x2="16.4346" y1="31.7661" y2="55.483">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#ADB2B5"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#ADB2B5"/>
</linearGradient>
<path d="M27.408,55.246c-12.492,0-22.654-10.163-22.654-22.654v-0.708h23.361v23.362H27.408z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="16.4404" x2="16.4404" y1="32.5273" y2="54.7021">
- <stop offset="0" style="stop-color:#DBDFE0"/>
- <stop offset="1" style="stop-color:#7D8588"/>
+<stop offset="0" style="stop-color:#DBDFE0"/>
+<stop offset="1" style="stop-color:#7D8588"/>
</linearGradient>
<path d="M27.361,54.48C15.492,54.09,5.91,44.507,5.52,32.638h21.842V54.48z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="44.3184" x2="44.3184" y1="5.0361" y2="34.0517">
- <stop offset="0" style="stop-color:#73E3FF"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#73E3FF"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M33.391,4.753v21.855h21.855C55.246,14.538,45.461,4.753,33.391,4.753z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="44.293" x2="44.293" y1="6.0098" y2="52.2334">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M34.145,25.855V5.559c10.852,0.743,19.555,9.445,20.297,20.296H34.145z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="44.3184" x2="44.3184" y1="31.248" y2="52.7565">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M33.391,52.985c12.07,0,21.855-9.784,21.855-21.854H33.391V52.985z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="44.293" x2="44.293" y1="6.0107" y2="52.2332">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M34.145,31.884h20.297c-0.742,10.852-9.445,19.553-20.297,20.296V31.884z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="17.9414" x2="17.9414" y1="4.5654" y2="41.5914">
- <stop offset="0" style="stop-color:#2277CC"/>
- <stop offset="1" style="stop-color:#092259"/>
+<stop offset="0" style="stop-color:#2277CC"/>
+<stop offset="1" style="stop-color:#092259"/>
</linearGradient>
<path d="M28.869,4.766v21.843H7.027C7.416,14.739,17,5.156,28.869,4.766 M29.623,4 C16.721,4,6.26,14.459,6.26,27.362h23.363V4L29.623,4z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="16.4346" x2="16.4346" y1="31.0054" y2="55.875">
- <stop offset="0" style="stop-color:#DBE1E3"/>
- <stop offset="1" style="stop-color:#505657"/>
+<stop offset="0" style="stop-color:#DBE1E3"/>
+<stop offset="1" style="stop-color:#505657"/>
</linearGradient>
<path d="M28.115,31.884v23.362c-12.881,0-23.361-10.48-23.361-23.362H28.115 M28.869,31.13H4v0.754 C4,45.181,14.818,56,28.115,56h0.754V31.13L28.869,31.13z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="44.3184" x2="44.3184" y1="4.5654" y2="41.5914">
- <stop offset="0" style="stop-color:#2277CC"/>
- <stop offset="1" style="stop-color:#092259"/>
+<stop offset="0" style="stop-color:#2277CC"/>
+<stop offset="1" style="stop-color:#092259"/>
</linearGradient>
<path d="M33.391,4.766c11.869,0.39,21.453,9.973,21.844,21.843H33.391V4.766 M32.637,4v23.362H56 C56,14.459,45.541,4,32.637,4L32.637,4z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="44.3184" x2="44.3184" y1="30.1255" y2="53.881">
- <stop offset="0" style="stop-color:#2277CC"/>
- <stop offset="1" style="stop-color:#092259"/>
+<stop offset="0" style="stop-color:#2277CC"/>
+<stop offset="1" style="stop-color:#092259"/>
</linearGradient>
<path d="M55.234,31.13C54.844,43,45.26,52.583,33.391,52.973V31.13H55.234 M56,30.376H32.637v23.362 C45.541,53.739,56,43.279,56,30.376L56,30.376z" fill="url(#SVGID_12_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="24.728,0 23.608,0.487 0,0.487 0,30.487 30,30.487 30,0.487 24.928,0.487 "/>
-<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" opacity="0.35"/>
+<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179.9351" x2="-2179.9351" y1="2902.811" y2="2880.1646">
- <stop offset="0" style="stop-color:#8CFF24"/>
- <stop offset="1" style="stop-color:#15570B"/>
+<stop offset="0" style="stop-color:#8CFF24"/>
+<stop offset="1" style="stop-color:#15570B"/>
</linearGradient>
<path d="M25.98,5.682l-1.79-4.357L13.902,5.902l0.016,13.899c-1.574-1.029-3.896-1.366-6.257-0.729 c-3.722,1.003-6.127,4.041-5.374,6.78c0.756,2.742,4.383,4.15,8.104,3.146c3.146-0.849,5.324-3.094,5.311-5.493 c-0.01-2.399,0.02-8.913,0-13.625L25.98,5.682z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1201.8184" x2="-1201.8184" y1="3393.1226" y2="3404.4397">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="13.918,17.409 13.907,5.902 13.902,5.902 13.916,17.408 "/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1187.957" x2="-1187.957" y1="3393.1177" y2="3404.4392">
- <stop offset="0" style="stop-color:#9EFF47"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#9EFF47"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<path d="M15.701,9.169c0.005,0.759,0.006-0.117,0.008,0.711L25.98,5.682l-0.252-0.646L15.701,9.169z" fill="url(#SVGID_3__)"/>
<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188.0039" x2="-1188.0039" y1="3402.1909" y2="3430.4734">
- <stop offset="0" style="stop-color:#B3FF6E"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#B3FF6E"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<polygon fill="url(#SVGID_4__)" points="14.072,20.2 14.072,6.3 24.389,1.807 24.19,1.324 13.674,5.902 13.674,19.803 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="-2185.0737" x2="-2185.0737" y1="2887.9233" y2="2879.6807">
- <stop offset="0" style="stop-color:#B2F56E"/>
- <stop offset="0.4667" style="stop-color:#40AD00"/>
- <stop offset="1" style="stop-color:#074D00"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.4667" style="stop-color:#40AD00"/>
+<stop offset="1" style="stop-color:#074D00"/>
</linearGradient>
<path d="M7.96,28.527c-2.474,0.012-4.447-1.129-4.909-2.839c-0.28-1.039,0.018-2.187,0.84-3.229 c0.9-1.141,2.291-2.007,3.923-2.436c0.688-0.184,1.385-0.277,2.075-0.281c2.474-0.013,4.445,1.129,4.91,2.84 c0.615,2.267-1.522,4.807-4.764,5.664C9.347,28.43,8.647,28.522,7.96,28.527L7.96,28.527z" fill="url(#SVGID_5__)"/>
<rect fill="none" height="30" width="30" y="0.487"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_query.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_query.svg Thu May 27 13:10:59 2010 +0300
@@ -1,32 +1,31 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.999" x2="29.999" y1="2.0928" y2="37.9271">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.7636" style="stop-color:#144DA3"/>
- <stop offset="1" style="stop-color:#36B5FF"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.7636" style="stop-color:#144DA3"/>
+<stop offset="1" style="stop-color:#36B5FF"/>
</linearGradient>
<path d="M14.814,10.715V3.508C19.178,2.505,23.314,2,27.238,2c5.785,0,10.221,1.121,13.311,3.364 s4.635,5.532,4.635,9.873c0,2.526-0.596,4.665-1.783,6.417c-1.191,1.752-9.396,9.994-10.205,11.121 c-0.809,1.128-1.213,2.465-1.213,4.01v1.544h-11.51v-2.06c0-2.502,0.547-4.612,1.639-6.342c1.09-1.729,2.994-3.868,5.715-6.419 c2.133-1.985,4.781-6.593,4.781-7.573c0-4.436-2.674-6.655-8.018-6.655C21.576,9.28,18.322,9.759,14.814,10.715z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="2.5591" y2="37.7967">
- <stop offset="0" style="stop-color:#6BCBF2"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#6BCBF2"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M21.223,37.579v-1.31c0-2.343,0.512-4.342,1.521-5.941c1.051-1.666,2.934-3.776,5.596-6.272 c2.016-1.876,5.018-6.732,5.018-8.12c0-3.378-1.521-7.405-8.768-7.405c-2.695,0-5.629,0.383-8.717,1.137l-0.309,0.075V4.107 l0.197-0.043c4.018-0.872,7.879-1.314,11.477-1.314c5.596,0,9.928,1.084,12.869,3.222c2.912,2.112,4.326,5.144,4.326,9.266 c0,2.359-0.557,4.376-1.654,5.996c-0.646,0.95-3.703,4.159-6.158,6.737c-2.273,2.389-3.68,3.872-4.035,4.367 c-0.898,1.254-1.354,2.75-1.354,4.447v0.794H21.223z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="26.6924" x2="26.6924" y1="43.6758" y2="58.1758">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.7636" style="stop-color:#144DA3"/>
- <stop offset="1" style="stop-color:#36B5FF"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.7636" style="stop-color:#144DA3"/>
+<stop offset="1" style="stop-color:#36B5FF"/>
</linearGradient>
<path d="M26.672,58c-1.938,0-3.602-0.686-5-2.059c-1.396-1.373-2.094-3.052-2.094-5.037 c0-1.962,0.693-3.641,2.076-5.038c1.385-1.397,3.059-2.095,5.018-2.095c1.961,0,3.641,0.697,5.037,2.095 c1.398,1.397,2.098,3.076,2.098,5.038c0,1.985-0.699,3.664-2.098,5.037C30.313,57.314,28.633,58,26.672,58z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="26.6924" x2="26.6924" y1="44.436" y2="57.4074">
- <stop offset="0.1152" style="stop-color:#63C1EF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#63C1EF"/>
+<stop offset="0.1152" style="stop-color:#63C1EF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M26.672,57.25c-1.748,0-3.211-0.604-4.475-1.844c-1.258-1.237-1.869-2.71-1.869-4.502 c0-1.771,0.607-3.245,1.859-4.511c1.248-1.26,2.715-1.872,4.484-1.872c1.771,0,3.246,0.613,4.508,1.875 c1.264,1.263,1.877,2.737,1.877,4.508c0,1.792-0.613,3.265-1.873,4.503C29.92,56.647,28.445,57.25,26.672,57.25L26.672,57.25z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_radio.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_radio.svg Thu May 27 13:10:59 2010 +0300
@@ -1,307 +1,308 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="11.647" y2="52.3348">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
</linearGradient>
<path d="M58,50.776c0,0.858-0.697,1.556-1.557,1.556H3.555C2.694,52.332,2,51.635,2,50.776V13.443 c0-0.859,0.694-1.556,1.555-1.556h52.889c0.859,0,1.557,0.696,1.557,1.556V50.776z" fill="url(#SVGID_1_)"/>
-<path d="M56.443,11.888H3.555C2.694,11.888,2,12.584,2,13.443v12.056l56-6.158v-5.897 C58,12.584,57.303,11.888,56.443,11.888z" fill="#FFFFFF" opacity="0.1"/>
+<path d="M56.443,11.888H3.555C2.694,11.888,2,12.584,2,13.443v12.056l56-6.158v-5.897 C58,12.584,57.303,11.888,56.443,11.888z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<path d="M56.443,12.666c0.428,0,0.777,0.349,0.777,0.777v37.333c0,0.428-0.35,0.778-0.777,0.778H3.555 c-0.43,0-0.778-0.351-0.778-0.778V13.443c0-0.429,0.349-0.777,0.778-0.777H56.443 M56.443,11.888H3.555 C2.694,11.888,2,12.584,2,13.443v37.333c0,0.858,0.694,1.556,1.555,1.556h52.889c0.859,0,1.557-0.697,1.557-1.556V13.443 C58,12.584,57.303,11.888,56.443,11.888L56.443,11.888z" fill="#D83506"/>
<path d="M56.443,51.555H3.555C2.694,51.555,2,50.857,2,49.999v0.777c0,0.858,0.694,1.556,1.555,1.556h52.889 c0.859,0,1.557-0.697,1.557-1.556v-0.777C58,50.857,57.303,51.555,56.443,51.555z" fill="#600909"/>
-<path d="M56.443,11.888H3.555C2.694,11.888,2,12.584,2,13.443v0.778c0-0.86,0.694-1.556,1.555-1.556 h52.889c0.859,0,1.557,0.695,1.557,1.556v-0.778C58,12.584,57.303,11.888,56.443,11.888z" fill="#FFFFFF" opacity="0.6"/>
+<path d="M56.443,11.888H3.555C2.694,11.888,2,12.584,2,13.443v0.778c0-0.86,0.694-1.556,1.555-1.556 h52.889c0.859,0,1.557,0.695,1.557,1.556v-0.778C58,12.584,57.303,11.888,56.443,11.888z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="45.9424" x2="45.9424" y1="32.6411" y2="20.912">
- <stop offset="0" style="stop-color:#444243"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#444243"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<circle cx="45.942" cy="26.611" fill="url(#SVGID_2_)" r="6.946"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="45.9424" x2="45.9424" y1="33.9702" y2="28.6358">
- <stop offset="0" style="stop-color:#D9D9D9"/>
- <stop offset="1" style="stop-color:#413F3F"/>
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#413F3F"/>
</linearGradient>
<path d="M45.943,33.558c-3.754,0-6.803-2.979-6.935-6.698c-0.003,0.084-0.013,0.163-0.013,0.248 c0,3.836,3.109,6.946,6.947,6.946c3.836,0,6.945-3.11,6.945-6.946c0-0.085-0.01-0.164-0.01-0.248 C52.744,30.578,49.695,33.558,45.943,33.558z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.9443" x2="45.9443" y1="35.3247" y2="17.436">
- <stop offset="0" style="stop-color:#FF4D00"/>
- <stop offset="1" style="stop-color:#9D1010"/>
+<stop offset="0" style="stop-color:#FF4D00"/>
+<stop offset="1" style="stop-color:#9D1010"/>
</linearGradient>
<path d="M45.943,35.609c-4.933,0-8.944-4.013-8.944-8.943c0-4.933,4.012-8.945,8.944-8.945 s8.945,4.013,8.945,8.945C54.889,31.597,50.876,35.609,45.943,35.609L45.943,35.609z M45.943,18.888 c-4.29,0-7.778,3.488-7.778,7.778c0,4.287,3.488,7.776,7.778,7.776c4.287,0,7.779-3.489,7.779-7.776 C53.723,22.376,50.23,18.888,45.943,18.888L45.943,18.888z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="45.9434" x2="45.9434" y1="20.5371" y2="32.7461">
- <stop offset="0" style="stop-color:#CBCBCB"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<circle cx="45.943" cy="26.642" fill="url(#SVGID_5_)" r="6.104"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="45.9434" x2="45.9434" y1="20.9736" y2="32.3105">
- <stop offset="0.2848" style="stop-color:#FFFFFF"/>
- <stop offset="0.7212" style="stop-color:#7B7B7B"/>
- <stop offset="1" style="stop-color:#A7A7A7"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.2848" style="stop-color:#FFFFFF"/>
+<stop offset="0.7212" style="stop-color:#7B7B7B"/>
+<stop offset="1" style="stop-color:#A7A7A7"/>
</linearGradient>
<circle cx="45.943" cy="26.642" fill="url(#SVGID_6_)" r="5.67"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="45.9434" x2="45.9434" y1="21.4746" y2="31.9404">
- <stop offset="0" style="stop-color:#D9D9D9"/>
- <stop offset="0.8242" style="stop-color:#636363"/>
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.8242" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#636363"/>
</linearGradient>
<path d="M50.705,24.468c0.303,0.662,0.471,1.396,0.471,2.174c0,2.889-2.342,5.233-5.232,5.233 c-2.888,0-5.232-2.345-5.232-5.233s2.345-5.232,5.232-5.232C48.058,21.409,49.879,22.663,50.705,24.468z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="45.9434" x2="45.9434" y1="25.4961" y2="22.9348">
- <stop offset="0" style="stop-color:#636363"/>
- <stop offset="1" style="stop-color:#323232"/>
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#323232"/>
</linearGradient>
<polygon fill="url(#SVGID_8_)" points="44.636,25.397 45.943,22.782 47.251,25.397 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="20.2773" x2="20.2773" y1="30.6846" y2="20.667">
- <stop offset="0" style="stop-color:#636363"/>
- <stop offset="0.6667" style="stop-color:#515151"/>
- <stop offset="1" style="stop-color:#323232"/>
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.6667" style="stop-color:#515151"/>
+<stop offset="1" style="stop-color:#323232"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="10.889" width="28" x="6.277" y="20.055"/>
<rect fill="#D9D9D9" height="0.777" width="28" x="6.277" y="30.943"/>
<polygon fill="#A6A8AB" points="31.945,25.499 31.945,27.832 29.609,27.832 29.609,26.276 28.832,26.276 28.832,27.832 26.498,27.832 26.498,26.276 25.723,26.276 25.723,27.832 23.387,27.832 23.387,26.276 22.61,26.276 22.61,27.832 20.277,27.832 20.277,25.499 19.499,25.499 19.499,27.832 17.166,27.832 17.166,26.276 16.388,26.276 16.388,27.832 14.056,27.832 14.056,26.276 13.276,26.276 13.276,27.832 10.944,27.832 10.944,26.276 10.165,26.276 10.165,27.832 8.609,27.832 8.609,25.499 7.833,25.499 7.833,28.609 8.609,28.609 10.165,28.609 10.944,28.609 13.276,28.609 14.056,28.609 16.388,28.609 17.166,28.609 19.499,28.609 20.277,28.609 22.61,28.609 23.387,28.609 25.723,28.609 26.498,28.609 28.832,28.609 29.609,28.609 31.945,28.609 32.721,28.609 32.721,27.832 32.721,25.499 "/>
<rect fill="#E00000" height="10.889" width="1.556" x="20.301" y="20.055"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="9.127" x2="9.127" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="9.127" cy="41.832" fill="url(#SVGID_10_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="9.126" x2="9.126" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="9.126" cy="41.832" fill="url(#SVGID_11_)" r="1.039"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="13.7295" x2="13.7295" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<path d="M15.285,41.832c0,0.858-0.693,1.556-1.556,1.556c-0.857,0-1.555-0.697-1.555-1.556 c0-0.861,0.697-1.556,1.555-1.556C14.592,40.276,15.285,40.971,15.285,41.832z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="13.7295" x2="13.7295" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="13.73" cy="41.832" fill="url(#SVGID_13_)" r="1.038"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="18.3955" x2="18.3955" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="18.396" cy="41.832" fill="url(#SVGID_14_)" r="1.555"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="18.3955" x2="18.3955" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="18.396" cy="41.832" fill="url(#SVGID_15_)" r="1.038"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="23.0615" x2="23.0615" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="23.062" cy="41.832" fill="url(#SVGID_16_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="23.0635" x2="23.0635" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="23.063" cy="41.832" fill="url(#SVGID_17_)" r="1.038"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="27.7295" x2="27.7295" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="27.729" cy="41.832" fill="url(#SVGID_18_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="27.7295" x2="27.7295" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="27.729" cy="41.832" fill="url(#SVGID_19_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="32.3965" x2="32.3965" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="32.396" cy="41.832" fill="url(#SVGID_20_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="32.3965" x2="32.3965" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="32.396" cy="41.832" fill="url(#SVGID_21_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="9.127" x2="9.127" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="9.127" cy="46.499" fill="url(#SVGID_22_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="9.126" x2="9.126" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="9.126" cy="46.499" fill="url(#SVGID_23_)" r="1.039"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="13.7295" x2="13.7295" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<path d="M15.285,46.499c0,0.858-0.693,1.556-1.556,1.556c-0.857,0-1.555-0.697-1.555-1.556 c0-0.861,0.697-1.556,1.555-1.556C14.592,44.943,15.285,45.638,15.285,46.499z" fill="url(#SVGID_24_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="13.7295" x2="13.7295" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="13.73" cy="46.499" fill="url(#SVGID_25_)" r="1.038"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="18.3955" x2="18.3955" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="18.396" cy="46.499" fill="url(#SVGID_26_)" r="1.555"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="18.3955" x2="18.3955" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="18.396" cy="46.499" fill="url(#SVGID_27_)" r="1.038"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="23.0615" x2="23.0615" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="23.062" cy="46.499" fill="url(#SVGID_28_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="23.0635" x2="23.0635" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="23.063" cy="46.499" fill="url(#SVGID_29_)" r="1.038"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="27.7295" x2="27.7295" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="27.729" cy="46.499" fill="url(#SVGID_30_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="27.7295" x2="27.7295" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="27.729" cy="46.499" fill="url(#SVGID_31_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="32.3965" x2="32.3965" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="32.396" cy="46.499" fill="url(#SVGID_32_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="32.3965" x2="32.3965" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="32.396" cy="46.499" fill="url(#SVGID_33_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="36.999" x2="36.999" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="36.999" cy="41.832" fill="url(#SVGID_34_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="36.999" x2="36.999" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="36.999" cy="41.832" fill="url(#SVGID_35_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="41.666" x2="41.666" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="41.666" cy="41.832" fill="url(#SVGID_36_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="41.666" x2="41.666" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="41.666" cy="41.832" fill="url(#SVGID_37_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="46.333" x2="46.333" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="46.333" cy="41.832" fill="url(#SVGID_38_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="46.333" x2="46.333" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="46.333" cy="41.832" fill="url(#SVGID_39_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="50.999" x2="50.999" y1="40.2437" y2="43.355">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<path d="M52.553,41.832c0,0.858-0.691,1.556-1.553,1.556c-0.858,0-1.556-0.697-1.556-1.556 c0-0.861,0.697-1.556,1.556-1.556C51.861,40.276,52.553,40.971,52.553,41.832z" fill="url(#SVGID_40_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="50.999" x2="50.999" y1="40.7729" y2="42.8472">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<path d="M52.037,41.832c0,0.573-0.467,1.037-1.037,1.037c-0.573,0-1.039-0.464-1.039-1.037 s0.466-1.037,1.039-1.037C51.57,40.795,52.037,41.259,52.037,41.832z" fill="url(#SVGID_41_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_42_" x1="36.999" x2="36.999" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="36.999" cy="46.499" fill="url(#SVGID_42_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_43_" x1="36.999" x2="36.999" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="36.999" cy="46.499" fill="url(#SVGID_43_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_44_" x1="41.666" x2="41.666" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="41.666" cy="46.499" fill="url(#SVGID_44_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_45_" x1="41.666" x2="41.666" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="41.666" cy="46.499" fill="url(#SVGID_45_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_46_" x1="46.333" x2="46.333" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<circle cx="46.333" cy="46.499" fill="url(#SVGID_46_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_47_" x1="46.333" x2="46.333" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<circle cx="46.333" cy="46.499" fill="url(#SVGID_47_)" r="1.037"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_48_" x1="50.999" x2="50.999" y1="44.9106" y2="48.022">
- <stop offset="0" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<path d="M52.553,46.499c0,0.858-0.691,1.556-1.553,1.556c-0.858,0-1.556-0.697-1.556-1.556 c0-0.861,0.697-1.556,1.556-1.556C51.861,44.943,52.553,45.638,52.553,46.499z" fill="url(#SVGID_48_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_49_" x1="50.999" x2="50.999" y1="45.4399" y2="47.5142">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#383838"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
<path d="M52.037,46.499c0,0.573-0.467,1.037-1.037,1.037c-0.573,0-1.039-0.464-1.039-1.037 s0.466-1.037,1.039-1.037C51.57,45.462,52.037,45.926,52.037,46.499z" fill="url(#SVGID_49_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_50_" x1="49.833" x2="49.833" y1="11.5854" y2="6.285">
- <stop offset="0" style="stop-color:#CBCBCB"/>
- <stop offset="0.1576" style="stop-color:#808080"/>
- <stop offset="0.6545" style="stop-color:#E5E5E5"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_50_)" height="5.443" width="6.999" x="46.333" y="6.444"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_51_" x1="37.3877" x2="37.3877" y1="10.1592" y2="7.1295">
- <stop offset="0" style="stop-color:#CBCBCB"/>
- <stop offset="0.1576" style="stop-color:#808080"/>
- <stop offset="0.6545" style="stop-color:#E5E5E5"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_51_)" height="3.111" width="17.89" x="28.443" y="7.221"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_52_" x1="19.1104" x2="19.1104" y1="9.4683" y2="7.9534">
- <stop offset="0" style="stop-color:#CBCBCB"/>
- <stop offset="0.1576" style="stop-color:#808080"/>
- <stop offset="0.6545" style="stop-color:#E5E5E5"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_52_)" height="1.556" width="18.666" x="9.777" y="7.999"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_53_" x1="8.6104" x2="8.6104" y1="10.1592" y2="7.1295">
- <stop offset="0" style="stop-color:#CBCBCB"/>
- <stop offset="0.1576" style="stop-color:#808080"/>
- <stop offset="0.6545" style="stop-color:#E5E5E5"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_53_)" height="3.111" width="2.334" x="7.443" y="7.221"/>
-<path d="M49.832,11.498c-1.285,0-2.333-1.047-2.333-2.332c0-1.288,1.048-2.334,2.333-2.334s2.334,1.046,2.334,2.334 C52.166,10.451,51.117,11.498,49.832,11.498L49.832,11.498z" opacity="0.2"/>
-<circle cx="49.833" cy="9.166" opacity="0.2" r="1.944"/>
+<path d="M49.832,11.498c-1.285,0-2.333-1.047-2.333-2.332c0-1.288,1.048-2.334,2.333-2.334s2.334,1.046,2.334,2.334 C52.166,10.451,51.117,11.498,49.832,11.498L49.832,11.498z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<circle cx="49.833" cy="9.166" fill-opacity="0.2" r="1.944" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_54_" x1="49.8311" x2="49.8311" y1="8.0317" y2="10.2999">
- <stop offset="0" style="stop-color:#E5E5E5"/>
- <stop offset="0.7576" style="stop-color:#A7A7A7"/>
- <stop offset="1" style="stop-color:#CBCBCB"/>
+<stop offset="0" style="stop-color:#E5E5E5"/>
+<stop offset="0.7576" style="stop-color:#A7A7A7"/>
+<stop offset="1" style="stop-color:#CBCBCB"/>
</linearGradient>
<circle cx="49.831" cy="9.166" fill="url(#SVGID_54_)" r="1.556"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_55_" x1="49.8311" x2="49.8311" y1="7.6592" y2="10.6737">
- <stop offset="0.2848" style="stop-color:#FFFFFF"/>
- <stop offset="0.7212" style="stop-color:#7B7B7B"/>
- <stop offset="1" style="stop-color:#A7A7A7"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.2848" style="stop-color:#FFFFFF"/>
+<stop offset="0.7212" style="stop-color:#7B7B7B"/>
+<stop offset="1" style="stop-color:#A7A7A7"/>
</linearGradient>
<path d="M49.832,7.999C50.475,7.999,51,8.521,51,9.166c0,0.643-0.525,1.166-1.168,1.166 s-1.166-0.523-1.166-1.166C48.666,8.521,49.189,7.999,49.832,7.999 M49.832,7.61c-0.859,0-1.557,0.694-1.557,1.556 c0,0.858,0.697,1.556,1.557,1.556c0.857,0,1.555-0.697,1.555-1.556C51.387,8.305,50.689,7.61,49.832,7.61L49.832,7.61z" fill="url(#SVGID_55_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_realplayer.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<g>
-<defs>
-</defs>
-<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 2188 -2893)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2158.0015" x2="-2158.0015" y1="2911.3418" y2="2988.4666">
- <stop offset="0" style="stop-color:#3686FF"/>
- <stop offset="1" style="stop-color:#051F7D"/>
-</linearGradient>
-<path d="M29.989,9.401c-12.723,0-27.991,5.928-27.991,15.61c0,11.406,21.403,16.235,27.033,16.047 c1.939-0.063,0.797,1.191,0.338,1.966c-1.484,2.496-3.174,5.655-3.559,6.277c-0.367,0.592-0.082,1.634,0.76,1.188 c0,0,21.877-12.897,26.304-16.107c5.597-4.42,5.114-9.44,5.114-9.44C57.988,15.388,42.713,9.401,29.989,9.401z" fill="url(#SVGID_1_)"/>
-<path d="M33.668,40.274c-1.676,0.981-2.034,0.396-1.618-0.241c0.214-0.32,0.832-1.389,1.536-2.744 c0.399-0.764-0.004-0.859-0.254-0.866c-13.586,0-24.254-5.016-24.254-11.035c0-6.994,11.57-11.017,20.814-11.07v0.002 c9.253,0,21.043,4.012,21.004,11.021c-0.031,4.989-7.414,9.531-7.414,9.531C43.431,34.902,33.668,40.274,33.668,40.274" fill="#FFFFFF"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 2188 -2893)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2156.4209" x2="-2156.4209" y1="2893.4824" y2="2946.6184">
- <stop offset="0" style="stop-color:#3686FF"/>
- <stop offset="1" style="stop-color:#051F7D"/>
-</linearGradient>
-<path d="M40.174,18.697c-0.61-0.152-1.26-0.206-2.379-0.206c-3.188,0.093-5.209,2.449-5.209,2.449l0.58-2.12 h-6.534l-3.647,13.545h6.742l1.529-5.656c0.782-2.851,2.217-3.786,5.074-3.786c0.49,0,1,0.034,1.5,0.111L40.174,18.697z" fill="url(#SVGID_2_)"/>
-<rect fill="none" height="60" width="60"/>
-</g>
-</svg>
\ No newline at end of file
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_received_voice_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_received_voice_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,53 +1,51 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g>
-<defs>
-</defs>
<polygon fill="none" points="30.096,0 0.096,0 0.096,14.833 0,14.833 0.096,14.933 0.096,30 14.601,30 15.021,30.438 15.447,30 30.096,30 30.096,14.963 30.215,14.841 30.096,14.841 "/>
-<polygon opacity="0.35" points="0,14.833 3.596,14.828 3.625,14.859 8.375,14.859 8.375,0 21.73,0.001 21.73,14.843 30.215,14.841 15.021,30.438 "/>
+<polygon fill-opacity="0.35" points="0,14.833 3.596,14.828 3.625,14.859 8.375,14.859 8.375,0 21.73,0.001 21.73,14.843 30.215,14.841 15.021,30.438 " stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2176.5142" x2="-2176.5142" y1="2984.646" y2="2957.3247">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="2.846,15.859 15.025,28.575 27.398,15.845 20.732,15.843 20.727,1.292 9.375,1.291 9.375,15.859 "/>
<line fill="none" x1="20.727" x2="9.375" y1="1.297" y2="1.296"/>
@@ -55,10 +53,10 @@
<polygon fill="#E7FFB9" points="20.555,15.867 27.527,15.867 27,16.458 20.555,16.458 "/>
<polygon fill="#E7FFB9" points="2.459,15.859 9.365,15.859 9.365,16.451 3.08,16.451 "/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2165.6621" x2="-2187.9482" y1="2963.2173" y2="2963.2173">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="27.016,15.844 15.025,28.15 3.172,15.829 2.348,15.83 15.025,29 27.842,15.844 "/>
<rect fill="none" height="30" width="30" x="0.096"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_reset.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_reset.svg Thu May 27 13:10:59 2010 +0300
@@ -1,207 +1,151 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="0.3882" y2="59.65">
-
-<stop offset="0" stop-color="#A6A8AB"/>
-
-<stop offset="1" stop-color="#231F20"/>
-
-</linearGradient>
-
-<path d="M0,60v-59.69h60v59.69h-60zm50.25-5.68l-20.25-20.15-20.25,20.15h40.49zm4.04-4.02v-40.29l-20.25,20.14,20.25,20.15zm-48.58,0l20.25-20.15-20.25-20.14v40.29zm24.29-24.17l20.25-20.14h-40.5l20.25,20.14z" fill="url(#SVGID_1_)" fill-opacity="0.2" stroke-opacity="0.2"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="1.097" y2="58.95">
-
-<stop offset="0" stop-color="#A9AAAD"/>
-
-<stop offset="1" stop-color="#000000"/>
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
+<g>
+<g>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="49.8477" y2="54.1016">
+<stop offset="0" style="stop-color:#FEEFA7"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</linearGradient>
-
-<path d="M0.714,59.29v-58.27h58.57v58.27m-7.32-4.26l-21.97-21.86-21.97,21.86h43.94zm3.03-3.02v-43.72l-21.97,21.86,21.97,21.86zm-50,0l21.97-21.86-21.97-21.86v43.72zm25-24.87l21.97-21.86h-43.94l21.97,21.86z" fill="url(#SVGID_2_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="1.095" y2="57.53">
-
-<stop offset="0" stop-color="#F4FCFF"/>
-
-<stop offset="0.6242" stop-color="#C9CED1"/>
-
-<stop offset="1" stop-color="#9CA4A7"/>
-
+<rect fill="url(#SVGID_1_)" height="4.254" width="56" x="2" y="49.848"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6.7896" x2="13.5899" y1="18.2217" y2="18.2217">
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3152" style="stop-color:#FFFFFF"/>
+<stop offset="0.7333" style="stop-color:#989C9E"/>
+<stop offset="1" style="stop-color:#C6CBCC"/>
</linearGradient>
-
-<path d="M1.428,1.017v56.85h57.14v-56.85h-57.14zm26.55,28.42l-23.7,23.58v-47.15l23.7,23.57zm-21.68-25.58h47.39l-23.7,23.57-23.7-23.57zm23.7,27.59l23.7,23.57h-47.4l23.7-23.57zm2.02-2.01l23.7-23.57v47.15l-23.7-23.58z" fill="url(#SVGID_3_)"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="4.57" y2="53.6">
-
-<stop offset="0" stop-color="#A6A8AB"/>
-
-<stop offset="1" stop-color="#231F20"/>
-
+<path d="M14.522,30c0,0.301-0.243,0.545-0.544,0.545H6.354c-0.301,0-0.544-0.244-0.544-0.545L7.444,6.443 c0-0.301,0.243-0.545,0.544-0.545h4.356c0.301,0,0.545,0.244,0.545,0.545L14.522,30z" fill="url(#SVGID_2_)"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="0.709" stroke-opacity="0.5" width="56" x="2" y="49.848"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9995" x2="29.9995" y1="18.8145" y2="49.3814">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
+</linearGradient>
+<polygon fill="url(#SVGID_3_)" points="47.367,18.536 17.595,18.536 17.595,28.538 3.418,28.538 3.418,49.848 56.582,49.848 56.582,27.164 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="10.5063" x2="10.5063" y1="30.7095" y2="27.4292">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
+</linearGradient>
+<rect fill="url(#SVGID_4_)" height="2.836" width="14.177" x="3.418" y="27.829"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.9995" x2="29.9995" y1="44.1777" y2="49.1389">
+<stop offset="0" style="stop-color:#986842"/>
+<stop offset="1" style="stop-color:#72361C"/>
</linearGradient>
-
-<path d="M20,53.6c-1.924,0-3.583-1.555-3.698-3.462l-1.13-17.86h-0.17c-1.576,0-2.856-1.276-2.856-2.843v-4.264c0-1.567,1.281-2.842,2.856-2.842h12.5v-3.604c-0.361,0.029-0.728,0.043-1.099,0.043-2.795,0-5.822-0.82-8.524-2.312-4.18-2.304-7.19-6.002-7.856-9.653l-0.214-1.197,1.147-0.402c1.227-0.43,2.592-0.647,4.056-0.647,2.797,0,5.831,0.823,8.541,2.317,2.809,1.548,5.054,3.648,6.45,6.008,1.396-2.36,3.642-4.461,6.45-6.009,2.709-1.494,5.743-2.317,8.54-2.317,1.464,0,2.829,0.218,4.056,0.647l1.149,0.402-0.217,1.192c-0.666,3.65-3.676,7.349-7.855,9.654-2.703,1.49-5.73,2.31-8.523,2.31-0.372,0-0.738-0.014-1.1-0.043v3.604h12.5c1.575,0,2.855,1.275,2.855,2.842v4.264c0,1.567-1.28,2.843-2.855,2.843h-0.17l-1.132,17.86c-0.115,1.907-1.773,3.462-3.698,3.462h-20z" fill="url(#SVGID_4_)" fill-opacity="0.2" stroke-opacity="0.2"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="5.281" y2="52.9">
-
-<stop offset="0" stop-color="#A9AAAD"/>
-
-<stop offset="1" stop-color="#000000"/>
-
+<rect fill="url(#SVGID_5_)" height="5.67" width="53.164" x="3.418" y="44.178"/>
+<rect fill-opacity="0.4" height="0.709" stroke-opacity="0.4" width="53.164" x="3.418" y="49.139"/>
+<rect fill-opacity="0.2" height="0.709" stroke-opacity="0.2" width="53.164" x="3.418" y="48.43"/>
+<rect fill="#E6E6E6" height="0.709" width="53.164" x="3.418" y="44.178"/>
+<rect fill="#875C39" fill-opacity="0.4" height="0.709" stroke-opacity="0.4" width="56" x="2" y="53.393"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="12.2778" x2="12.2778" y1="49.9531" y2="35.3014">
+<stop offset="0" style="stop-color:#7F5031"/>
+<stop offset="1" style="stop-color:#572915"/>
</linearGradient>
-
-<path d="M33.6,18.06h0.002c2.675,0,5.578-0.788,8.177-2.221,3.998-2.204,6.871-5.714,7.499-9.159l0.107-0.596-0.58-0.197c-1.151-0.403-2.437-0.607-3.819-0.607-2.678,0-5.589,0.791-8.194,2.228-3.18,1.751-5.6,4.251-6.8,6.931-1.199-2.687-3.617-5.185-6.795-6.936-2.607-1.438-5.518-2.228-8.195-2.228-1.383,0-2.668,0.204-3.819,0.607l-0.573,0.201,0.107,0.596c0.628,3.445,3.501,6.955,7.499,9.159,2.599,1.433,5.503,2.221,8.178,2.221,0.622,0,1.229-0.042,1.813-0.125v5.106h-13.21c-1.182,0-2.143,0.957-2.143,2.132v4.264c0,1.176,0.961,2.131,2.143,2.131h0.843l1.17,18.53c0.094,1.54,1.434,2.796,2.986,2.796h20c1.553,0,2.893-1.256,2.986-2.796l1.171-18.53h0.844c1.181,0,2.143-0.955,2.143-2.131v-4.264c0-1.175-0.962-2.132-2.143-2.132h-13.22v-5.11c0.585,0.08,1.195,0.12,1.815,0.12z" fill="url(#SVGID_5_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="43.37" x2="16.62" y1="39.75" y2="39.75">
-
-<stop offset="0" stop-color="#BC5800"/>
-
-<stop offset="0.3" stop-color="#A23600"/>
-
-<stop offset="1" stop-color="#D07100"/>
-
+<rect fill="url(#SVGID_6_)" height="14.887" width="10.634" x="6.961" y="34.961"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="12.2778" x2="12.2778" y1="35.5713" y2="49.5233">
+<stop offset="0" style="stop-color:#E09A61"/>
+<stop offset="1" style="stop-color:#8D4F2D"/>
+</linearGradient>
+<rect fill="url(#SVGID_7_)" height="14.176" width="9.216" x="7.67" y="35.672"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="12.2778" x2="12.2778" y1="36.2832" y2="49.5394">
+<stop offset="0" style="stop-color:#986842"/>
+<stop offset="1" style="stop-color:#72361C"/>
</linearGradient>
-
-<path d="M43.57,28.02h-27.14l1.299,21.32c0.072,1.17,1.094,2.129,2.273,2.129h20c1.18,0,2.201-0.959,2.273-2.129l1.3-21.32z" fill="url(#SVGID_6_)"/>
-
-<path d="M40.27,50.76h-20.54c-0.795,0-1.515-0.419-1.939-1.04,0.242,0.992,1.162,1.752,2.211,1.752h20c1.05,0,1.97-0.76,2.212-1.752-0.42,0.62-1.14,1.04-1.94,1.04z" fill="#600909" fill-opacity="0.7" stroke-opacity="0.7"/>
-
-<path d="M30,30.86c6.11,0,10.08,0.573,13.37,1.227l0.205-3.359h-27.15l0.205,3.359c3.29-0.65,7.26-1.23,13.37-1.23z" fill="#600909" fill-opacity="0.4" stroke-opacity="0.4"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="28.87" x2="31.01" y1="21.27" y2="21.27">
-
-<stop offset="0" stop-color="#8BC53F"/>
-
-<stop offset="0.3758" stop-color="#33773B"/>
-
-<stop offset="0.6303" stop-color="#004F3C"/>
-
-<stop offset="1" stop-color="#007338"/>
-
+<rect fill="url(#SVGID_8_)" height="13.469" width="7.798" x="8.379" y="36.379"/>
+<rect fill-opacity="0.2" height="4.252" stroke-opacity="0.2" width="2.836" x="13.234" y="40.988"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.6523" x2="14.6523" y1="41.6748" y2="44.466">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E0E1E2"/>
+<stop offset="1" style="stop-color:#B9BCBD"/>
</linearGradient>
-
-<rect fill="url(#SVGID_7_)" height="9.238" width="2.142" x="28.93" y="16.65"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="46.43" x2="13.57" y1="26.6" y2="26.6">
-
-<stop offset="0" stop-color="#BC5800"/>
-
-<stop offset="0.3" stop-color="#A23600"/>
-
-<stop offset="1" stop-color="#D07100"/>
-
+<rect fill="url(#SVGID_9_)" height="2.836" width="1.418" x="13.943" y="41.695"/>
+<g>
+<rect fill-opacity="0.2" height="5.67" stroke-opacity="0.2" width="9.215" x="21.375" y="26.545"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="25.9824" x2="25.9824" y1="31.5059" y2="27.2524">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C7C9CA"/>
+</linearGradient>
+<rect fill="url(#SVGID_10_)" height="4.254" width="7.797" x="22.084" y="27.252"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="25.9824" x2="25.9824" y1="27.9629" y2="30.7969">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
-
-<path d="M46.43,28.73c0,0.781-0.645,1.42-1.429,1.42h-30c-0.785,0-1.429-0.639-1.429-1.42v-4.264c0-0.782,0.644-1.421,1.429-1.421h30c0.784,0,1.429,0.64,1.429,1.421v4.262z" fill="url(#SVGID_8_)"/>
-
-<path d="M45,29.44h-30c-0.785,0-1.429-0.64-1.429-1.42v0.71c0,0.781,0.644,1.42,1.429,1.42h30c0.784,0,1.429-0.639,1.429-1.42v-0.71c0,0.78-0.65,1.42-1.43,1.42z" fill="#600909" fill-opacity="0.7" stroke-opacity="0.7"/>
-
-<path d="M45,23.05h-30c-0.785,0-1.429,0.64-1.429,1.421v0.71c0-0.781,0.644-1.421,1.429-1.421h30c0.784,0,1.429,0.64,1.429,1.421v-0.71c0-0.78-0.65-1.42-1.43-1.42z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.42" x2="30.04" y1="5.904" y2="16.9">
-
-<stop offset="0" stop-color="#A7FF00"/>
-
-<stop offset="1" stop-color="#138F00"/>
-
+<rect fill="url(#SVGID_11_)" height="2.834" width="6.379" x="22.793" y="27.963"/>
+<rect fill-opacity="0.2" height="5.67" stroke-opacity="0.2" width="9.215" x="31.299" y="26.545"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="35.9063" x2="35.9063" y1="31.5059" y2="27.2524">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C7C9CA"/>
</linearGradient>
-
-<path d="M22.86,8.13c-3.974-2.19-8.299-2.669-11.43-1.572,0.57,3.138,3.167,6.474,7.142,8.665,3.973,2.19,8.299,2.669,11.43,1.572-0.57-3.13-3.17-6.47-7.14-8.66z" fill="url(#SVGID_9_)"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="42.12" x2="39.54" y1="18.21" y2="12.26">
-
-<stop offset="0" stop-color="#A7FF00"/>
-
-<stop offset="1" stop-color="#138F00"/>
-
+<rect fill="url(#SVGID_12_)" height="4.254" width="7.797" x="32.008" y="27.252"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="35.9063" x2="35.9063" y1="27.9629" y2="30.7969">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
+</linearGradient>
+<rect fill="url(#SVGID_13_)" height="2.834" width="6.38" x="32.717" y="27.963"/>
+<rect fill-opacity="0.2" height="5.672" stroke-opacity="0.2" width="9.215" x="21.375" y="34.342"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="25.9824" x2="25.9824" y1="39.3027" y2="35.0508">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C7C9CA"/>
</linearGradient>
-
-<path d="M37.14,8.13c3.974-2.19,8.299-2.669,11.43-1.572-0.569,3.138-3.167,6.474-7.142,8.665-3.973,2.19-8.299,2.669-11.43,1.572,0.57-3.13,3.17-6.47,7.14-8.66z" fill="url(#SVGID_10_)"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="18.88" x2="20.66" y1="18.17" y2="11.88">
-
-<stop offset="0" stop-color="#A7FF00"/>
-
-<stop offset="1" stop-color="#138F00"/>
-
+<rect fill="url(#SVGID_14_)" height="4.252" width="7.797" x="22.084" y="35.051"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="25.9824" x2="25.9824" y1="35.7598" y2="38.5957">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
+</linearGradient>
+<rect fill="url(#SVGID_15_)" height="2.836" width="6.379" x="22.793" y="35.76"/>
+<rect fill-opacity="0.2" height="5.672" stroke-opacity="0.2" width="9.215" x="31.299" y="34.342"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="35.9063" x2="35.9063" y1="39.3027" y2="35.0508">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C7C9CA"/>
</linearGradient>
-
-<path d="M18.57,15.22c3.973,2.19,8.299,2.669,11.43,1.572,0,0-7.308-3.236-9.777-4.551-3.304-1.759-8.794-5.685-8.794-5.685,0.57,3.141,3.17,6.475,7.14,8.665z" fill="url(#SVGID_11_)"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="48.8" x2="29.48" y1="4.137" y2="15.73">
-
-<stop offset="0" stop-color="#A7FF00"/>
-
-<stop offset="1" stop-color="#138F00"/>
-
+<rect fill="url(#SVGID_16_)" height="4.252" width="7.797" x="32.008" y="35.051"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="35.9063" x2="35.9063" y1="35.7598" y2="38.5957">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
-
-<path d="M37.14,8.13c-3.975,2.19-6.57,5.527-7.142,8.665,0,0,6.843-2.558,9.867-4.285,3.393-1.937,8.704-5.952,8.704-5.952-3.13-1.107-7.45-0.628-11.43,1.562z" fill="url(#SVGID_12_)"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="20.71" x2="20.71" y1="6.366" y2="15.88">
-
-<stop offset="0" stop-color="#D2FF8A"/>
-
-<stop offset="1" stop-color="#138F00"/>
-
+<rect fill="url(#SVGID_17_)" height="2.836" width="6.38" x="32.717" y="35.76"/>
+<rect fill-opacity="0.2" height="5.67" stroke-opacity="0.2" width="9.216" x="41.223" y="26.545"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="45.8301" x2="45.8301" y1="31.5059" y2="27.2524">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C7C9CA"/>
</linearGradient>
-
-<path d="M22.86,8.13c-3.974-2.19-8.299-2.669-11.43-1.572,3.953-0.562,7.701,0.2,11.08,2.193,3.334,1.965,5.657,4.691,7.488,8.043-0.57-3.13-3.17-6.47-7.14-8.66z" fill="url(#SVGID_13_)"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="39.29" x2="39.29" y1="6.069" y2="16.06">
-
-<stop offset="0" stop-color="#D2FF8A"/>
-
-<stop offset="1" stop-color="#138F00"/>
-
+<rect fill="url(#SVGID_18_)" height="4.254" width="7.798" x="41.932" y="27.252"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="45.8301" x2="45.8301" y1="27.9629" y2="30.7969">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
-
-<path d="M37.49,8.751c5.281-3.037,11.08-2.193,11.08-2.193-3.13-1.097-7.45-0.618-11.43,1.572-3.975,2.19-6.57,5.527-7.142,8.665,0-0.01,1.95-4.86,7.49-8.049z" fill="url(#SVGID_14_)"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="18.88" x2="20.66" y1="18.17" y2="11.88">
-
-<stop offset="0" stop-color="#A7FF00"/>
-
-<stop offset="0.2303" stop-color="#D6FF61"/>
-
-<stop offset="1" stop-color="#138F00"/>
-
+<rect fill="url(#SVGID_19_)" height="2.834" width="6.38" x="42.641" y="27.963"/>
+<rect fill-opacity="0.2" height="5.672" stroke-opacity="0.2" width="9.216" x="41.223" y="34.342"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="45.8301" x2="45.8301" y1="39.3027" y2="35.0508">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C7C9CA"/>
+</linearGradient>
+<rect fill="url(#SVGID_20_)" height="4.252" width="7.798" x="41.932" y="35.051"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="45.8301" x2="45.8301" y1="35.7598" y2="38.5957">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
-
-<path d="M18.92,14.6c-5.35-2.86-7.487-8.042-7.487-8.042,0.57,3.138,3.167,6.474,7.142,8.665,3.973,2.19,8.299,2.669,11.43,1.572,0,0-5,1.06-11.08-2.19z" fill="url(#SVGID_15_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="40.85" x2="39.69" y1="17.8" y2="13.28">
-
-<stop offset="0" stop-color="#A7FF00"/>
-
-<stop offset="0.2303" stop-color="#D6FF61"/>
-
-<stop offset="1" stop-color="#138F00"/>
-
+<rect fill="url(#SVGID_21_)" height="2.836" width="6.38" x="42.641" y="35.76"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="6.3506" x2="13.9824" y1="17.9492" y2="17.9492">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#7A7A7A"/>
+<stop offset="0.7091" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-
-<path d="M41.08,14.6c-3.312,1.95-6.667,2.734-11.08,2.194,3.131,1.097,7.457,0.618,11.43-1.572,3.975-2.19,6.572-5.527,7.142-8.665-1.26,3.228-3.26,5.555-7.49,8.045z" fill="url(#SVGID_16_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="30" x2="30" y1="1.095" y2="57.53">
-
-<stop offset="0" stop-color="#C9CDCE"/>
-
-<stop offset="1" stop-color="#6E7273"/>
-
+<polygon fill="url(#SVGID_22_)" points="6.941,13.695 6.351,22.203 13.982,22.203 13.393,13.695 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="51.2598" x2="52.737" y1="24.3311" y2="22.7358">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.5091" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
</linearGradient>
-
-<path d="M1.428,1.017v56.85h57.14v-56.85h-57.14zm56.43,56.14h-55.72v-55.43h55.72v55.43z" fill="url(#SVGID_17_)"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="30" x2="30" y1="1.806" y2="57.12">
-
-<stop offset="0" stop-color="#E6E9E8"/>
-
-<stop offset="1" stop-color="#ADB2B5"/>
-
+<polygon fill="url(#SVGID_23_)" points="47.367,17.827 47.367,20.663 56.582,29.291 56.582,26.455 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="32.4805" x2="32.4805" y1="20.5488" y2="17.8204">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
</linearGradient>
-
-<path d="M2.142,1.727v55.43h55.72v-55.43h-55.72zm55,54.72h-54.28v-54.01h54.29v54.01z" fill="url(#SVGID_18_)"/>
-
-</svg>
\ No newline at end of file
+<rect fill="url(#SVGID_24_)" height="2.836" width="29.772" x="17.595" y="17.827"/>
+</g>
+<rect fill="none" height="60" width="60"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ring_tone.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ring_tone.svg Thu May 27 13:10:59 2010 +0300
@@ -1,143 +1,143 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="37.589" opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
- <stop offset="0" style="stop-color:#85EFFF"/>
- <stop offset="1" style="stop-color:#3BA1D9"/>
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
<rect fill="#9FE4FF" height="0.767" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D1D7D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D1D7D9"/>
</linearGradient>
<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
- <stop offset="0" style="stop-color:#6C7375"/>
- <stop offset="1" style="stop-color:#BDC2C4"/>
+<stop offset="0" style="stop-color:#6C7375"/>
+<stop offset="1" style="stop-color:#BDC2C4"/>
</linearGradient>
<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" opacity="0.6"/>
-<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" opacity="0.5"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" opacity="0.2"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" opacity="0.4"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" opacity="0.7"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" opacity="0.4"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" opacity="0.7"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="24.728,0 23.608,0.487 0,0.487 0,30.487 30,30.487 30,0.487 24.928,0.487 "/>
-<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" opacity="0.35"/>
+<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179.9351" x2="-2179.9351" y1="2902.811" y2="2880.1646">
- <stop offset="0" style="stop-color:#8CFF24"/>
- <stop offset="1" style="stop-color:#15570B"/>
+<stop offset="0" style="stop-color:#8CFF24"/>
+<stop offset="1" style="stop-color:#15570B"/>
</linearGradient>
<path d="M25.98,5.682l-1.79-4.357L13.902,5.902l0.016,13.899c-1.574-1.029-3.896-1.366-6.257-0.729 c-3.722,1.003-6.127,4.041-5.374,6.78c0.756,2.742,4.383,4.15,8.104,3.146c3.146-0.849,5.324-3.094,5.311-5.493 c-0.01-2.399,0.02-8.913,0-13.625L25.98,5.682z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1201.8184" x2="-1201.8184" y1="3393.1226" y2="3404.4397">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="13.918,17.409 13.907,5.902 13.902,5.902 13.916,17.408 "/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1187.957" x2="-1187.957" y1="3393.1177" y2="3404.4392">
- <stop offset="0" style="stop-color:#9EFF47"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#9EFF47"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<path d="M15.701,9.169c0.005,0.759,0.006-0.117,0.008,0.711L25.98,5.682l-0.252-0.646L15.701,9.169z" fill="url(#SVGID_3__)"/>
<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188.0039" x2="-1188.0039" y1="3402.1909" y2="3430.4734">
- <stop offset="0" style="stop-color:#B3FF6E"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#B3FF6E"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<polygon fill="url(#SVGID_4__)" points="14.072,20.2 14.072,6.3 24.389,1.807 24.19,1.324 13.674,5.902 13.674,19.803 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="-2185.0737" x2="-2185.0737" y1="2887.9233" y2="2879.6807">
- <stop offset="0" style="stop-color:#B2F56E"/>
- <stop offset="0.4667" style="stop-color:#40AD00"/>
- <stop offset="1" style="stop-color:#074D00"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.4667" style="stop-color:#40AD00"/>
+<stop offset="1" style="stop-color:#074D00"/>
</linearGradient>
<path d="M7.96,28.527c-2.474,0.012-4.447-1.129-4.909-2.839c-0.28-1.039,0.018-2.187,0.84-3.229 c0.9-1.141,2.291-2.007,3.923-2.436c0.688-0.184,1.385-0.277,2.075-0.281c2.474-0.013,4.445,1.129,4.91,2.84 c0.615,2.267-1.522,4.807-4.764,5.664C9.347,28.43,8.647,28.522,7.96,28.527L7.96,28.527z" fill="url(#SVGID_5__)"/>
<rect fill="none" height="30" width="30" y="0.487"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sat.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sat.svg Thu May 27 13:10:59 2010 +0300
@@ -1,116 +1,112 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.999" x2="29.999" y1="1.999" y2="57.9139">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.8182" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#7B7E80"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.8182" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#7B7E80"/>
</linearGradient>
<path d="M8.957,57.999c-1.365,0-2.473-1.108-2.473-2.473V4.472c0-1.364,1.107-2.473,2.473-2.473h30.801 c1.115,0,2.607,0.619,3.396,1.406l8.951,8.95c0.789,0.79,1.408,2.281,1.408,3.396v39.774c0,1.364-1.111,2.473-2.473,2.473H8.957z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="3.2646" y2="56.7327">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="0.7818" style="stop-color:#CCCCCC"/>
- <stop offset="1" style="stop-color:#D1D1D1"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
<path d="M51.041,56.674H8.957c-0.633,0-1.146-0.513-1.146-1.147V4.469c0-0.629,0.514-1.145,1.146-1.145 h30.801c0.766,0,1.912,0.477,2.459,1.021l8.953,8.948c0.543,0.546,1.018,1.693,1.018,2.459v39.774 C52.188,56.161,51.676,56.674,51.041,56.674L51.041,56.674z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="4.6533" y2="55.3477">
- <stop offset="0" style="stop-color:#E6E9E8"/>
- <stop offset="1" style="stop-color:#ADB2B5"/>
+<stop offset="0" style="stop-color:#E6E9E8"/>
+<stop offset="1" style="stop-color:#ADB2B5"/>
</linearGradient>
<path d="M50.863,55.348H9.137V4.653h30.621c0.412,0,1.227,0.336,1.521,0.629l8.957,8.95 c0.289,0.293,0.627,1.105,0.627,1.52V55.348L50.863,55.348z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="27.3711" x2="27.3711" y1="51.1084" y2="24.5269">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#282828"/>
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="26.784" width="31.227" x="11.758" y="24.426"/>
-<rect fill="#FFFFFF" height="1.326" opacity="0.4" width="31.227" x="11.758" y="51.21"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.326" stroke-opacity="0.4" width="31.227" x="11.758" y="51.21"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="16.2236" x2="16.2236" y1="25.7173" y2="49.2631">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="7.305" width="5.682" x="13.383" y="42.197"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30.1895" x2="30.1895" y1="25.9839" y2="48.9336">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="7.304" width="5.254" x="27.563" y="25.967"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="23.3125" x2="23.3125" y1="25.9839" y2="48.9336">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="7.304" width="5.254" x="20.686" y="25.967"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="37.8779" x2="37.8779" y1="25.9839" y2="48.9336">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="7.304" width="6.877" x="34.439" y="25.967"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.1895" x2="30.1895" y1="25.7173" y2="49.2631">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="7.305" width="5.254" x="27.563" y="42.197"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="23.3125" x2="23.3125" y1="25.7173" y2="49.2631">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="7.305" width="5.254" x="20.686" y="42.197"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="27.3496" x2="27.3496" y1="25.9839" y2="48.8929">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<polygon fill="url(#SVGID_11_)" points="18.975,34.894 18.975,25.967 13.383,25.967 13.383,40.574 41.316,40.574 41.316,34.894 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="37.8779" x2="37.8779" y1="25.7173" y2="49.2631">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_12_)" height="7.305" width="6.877" x="34.439" y="42.197"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M15,30C6.729,30,0,23.271,0,15C0,6.729,6.729,0,15,0s15,6.729,15,15C30,23.271,23.271,30,15,30L15,30z" opacity="0.35"/>
-<path d="M15.159,10.697c0.525,0,0.947-0.13,1.264-0.39 c0.316-0.259,0.474-0.615,0.474-1.07c0-0.44-0.164-0.795-0.49-1.061c-0.326-0.264-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.132-1.261,0.395c-0.311,0.262-0.465,0.617-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.567,14.641,10.697,15.159,10.697z" enable-background="new " opacity="0.1"/>
-<path d="M15.159,10.369c0.525,0,0.947-0.129,1.264-0.389 c0.316-0.26,0.474-0.615,0.474-1.07c0-0.441-0.164-0.795-0.49-1.061c-0.326-0.266-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.13-1.261,0.394c-0.311,0.263-0.465,0.616-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.24,14.641,10.369,15.159,10.369z" enable-background="new " opacity="0.2"/>
+<path d="M15,30C6.729,30,0,23.271,0,15C0,6.729,6.729,0,15,0s15,6.729,15,15C30,23.271,23.271,30,15,30L15,30z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M15.159,10.697c0.525,0,0.947-0.13,1.264-0.39 c0.316-0.259,0.474-0.615,0.474-1.07c0-0.44-0.164-0.795-0.49-1.061c-0.326-0.264-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.132-1.261,0.395c-0.311,0.262-0.465,0.617-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.567,14.641,10.697,15.159,10.697z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M15.159,10.369c0.525,0,0.947-0.129,1.264-0.389 c0.316-0.26,0.474-0.615,0.474-1.07c0-0.441-0.164-0.795-0.49-1.061c-0.326-0.266-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.13-1.261,0.394c-0.311,0.263-0.465,0.616-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.24,14.641,10.369,15.159,10.369z" fill-opacity="0.2" stroke-opacity="0.2"/>
<radialGradient cx="-2178.8628" cy="3345.4287" gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="26.49">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="0.8121" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#67AD1A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.8121" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</radialGradient>
<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1c7.721,0,14,6.28,14,14S22.72,29,15,29L15,29z" fill="url(#SVGID_1__)"/>
-<polygon enable-background="new " opacity="0.1" points="12.46,13.847 13.555,13.847 13.555,23.318 16.741,23.318 16.741,12.032 12.46,12.032 "/>
-<polygon enable-background="new " opacity="0.2" points="12.46,13.519 13.555,13.519 13.555,22.99 16.741,22.99 16.741,11.704 12.46,11.704 "/>
+<polygon fill-opacity="0.1" points="12.46,13.847 13.555,13.847 13.555,23.318 16.741,23.318 16.741,12.032 12.46,12.032 " stroke-opacity="0.1"/>
+<polygon fill-opacity="0.2" points="12.46,13.519 13.555,13.519 13.555,22.99 16.741,22.99 16.741,11.704 12.46,11.704 " stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179.3994" x2="-2179.3994" y1="3340.2148" y2="3324.8184">
- <stop offset="0" style="stop-color:#F6FDFF"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="12.46,13.191 13.555,13.191 13.555,22.663 16.741,22.663 16.741,11.377 12.46,11.377 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-2178.8477" x2="-2178.8477" y1="3340.2158" y2="3324.8235">
- <stop offset="0" style="stop-color:#F6FDFF"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M15.148,10.205c0.524,0,0.945-0.129,1.262-0.389c0.316-0.259,0.475-0.615,0.475-1.07 c0-0.441-0.163-0.795-0.489-1.061c-0.327-0.264-0.743-0.397-1.248-0.397c-0.531,0-0.952,0.131-1.262,0.394 c-0.312,0.262-0.466,0.617-0.466,1.064c0,0.455,0.159,0.812,0.477,1.07C14.212,10.076,14.63,10.205,15.148,10.205z" fill="url(#SVGID_3__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_search.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_search.svg Thu May 27 13:10:59 2010 +0300
@@ -1,60 +1,60 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.4471 0.4471 4918.8623 1940.7473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4811.7705" x2="4804.6846" y1="3354.4326" y2="3354.4326">
- <stop offset="0" style="stop-color:#292929"/>
- <stop offset="0.3455" style="stop-color:#8C8C8C"/>
- <stop offset="0.7" style="stop-color:#171717"/>
- <stop offset="1" style="stop-color:#646464"/>
+<stop offset="0" style="stop-color:#292929"/>
+<stop offset="0.3455" style="stop-color:#8C8C8C"/>
+<stop offset="0.7" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="17.729,47.067 12.72,42.057 20.639,34.138 25.649,39.148 "/>
<linearGradient gradientTransform="matrix(-1 0 0 1 4302.3848 0)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4287.2246" x2="4294.4331" y1="52.2168" y2="45.0081">
- <stop offset="0" style="stop-color:#B3B3B3"/>
- <stop offset="0.3758" style="stop-color:#969696"/>
- <stop offset="0.7515" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D5D5D5"/>
+<stop offset="0" style="stop-color:#B3B3B3"/>
+<stop offset="0.3758" style="stop-color:#969696"/>
+<stop offset="0.7515" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D5D5D5"/>
</linearGradient>
<path d="M2.565,50.126c-0.754,0.753-0.754,1.987,0,2.74l4.568,4.568c0.752,0.754,1.986,0.754,2.74,0 l10.505-10.505c0.753-0.754,0.753-1.986,0-2.74L15.81,39.62c-0.752-0.753-1.984-0.752-2.738,0L2.565,50.126z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.5071 0.5071 5299.6968 1575.5687)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="4824.3057" x2="4813.9697" y1="3708.6299" y2="3708.6299">
- <stop offset="0" style="stop-color:#E0E4E6"/>
- <stop offset="0.3333" style="stop-color:#B0B6B8"/>
- <stop offset="0.3333" style="stop-color:#9FA6A8"/>
- <stop offset="0.6848" style="stop-color:#6A7173"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E0E4E6"/>
+<stop offset="0.3333" style="stop-color:#B0B6B8"/>
+<stop offset="0.3333" style="stop-color:#9FA6A8"/>
+<stop offset="0.6848" style="stop-color:#6A7173"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="10.976,56.332 3.668,49.023 11.857,40.833 19.165,48.143 "/>
-<path d="M36.649,25.261c-7.902,0-15.16-1.912-20.893-5.105C17.397,10.043,26.169,2.321,36.743,2.321 c10.541,0,19.287,7.673,20.97,17.737C51.954,23.309,44.632,25.261,36.649,25.261z" fill="#FFFFFF" opacity="0.2"/>
+<path d="M36.649,25.261c-7.902,0-15.16-1.912-20.893-5.105C17.397,10.043,26.169,2.321,36.743,2.321 c10.541,0,19.287,7.673,20.97,17.737C51.954,23.309,44.632,25.261,36.649,25.261z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(-0.9773 0 0 0.9773 4277.1611 57.5776)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="4338.9121" x2="4338.9121" y1="-19.5293" y2="-50.7046">
- <stop offset="0" style="stop-color:#B2F56E"/>
- <stop offset="0.4667" style="stop-color:#40AD00"/>
- <stop offset="1" style="stop-color:#074D00"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.4667" style="stop-color:#40AD00"/>
+<stop offset="1" style="stop-color:#074D00"/>
</linearGradient>
-<circle cx="36.742" cy="23.257" fill="url(#SVGID_4_)" opacity="0.7" r="15.233"/>
+<circle cx="36.742" cy="23.257" fill="url(#SVGID_4_)" fill-opacity="0.7" r="15.233" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="36.7432" x2="36.7432" y1="44.6318" y2="1.9579">
- <stop offset="0" style="stop-color:#BEC7CC"/>
- <stop offset="0.1939" style="stop-color:#9AA4A6"/>
- <stop offset="0.697" style="stop-color:#D4D9DB"/>
- <stop offset="0.897" style="stop-color:#ECF3F5"/>
+<stop offset="0" style="stop-color:#BEC7CC"/>
+<stop offset="0.1939" style="stop-color:#9AA4A6"/>
+<stop offset="0.697" style="stop-color:#D4D9DB"/>
+<stop offset="0.897" style="stop-color:#ECF3F5"/>
+<stop offset="1" style="stop-color:#ECF3F5"/>
</linearGradient>
<path d="M36.743,2c-11.738,0-21.258,9.518-21.258,21.257s9.52,21.257,21.258,21.257 s21.258-9.518,21.258-21.257S48.481,2,36.743,2z M36.743,39.287c-8.413,0-16.07-7.617-16.07-16.03C20.673,14.844,28.33,7,36.743,7 c8.414,0,16.216,7.844,16.216,16.257C52.959,31.67,45.157,39.287,36.743,39.287z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="36.7422" x2="36.7422" y1="2.2324" y2="42.8653">
- <stop offset="0" style="stop-color:#E5EBED"/>
- <stop offset="0.5818" style="stop-color:#C4CCCE"/>
- <stop offset="0.8545" style="stop-color:#8D9699"/>
- <stop offset="0.9758" style="stop-color:#CAD2D4"/>
+<stop offset="0" style="stop-color:#E5EBED"/>
+<stop offset="0.5818" style="stop-color:#C4CCCE"/>
+<stop offset="0.8545" style="stop-color:#8D9699"/>
+<stop offset="0.9758" style="stop-color:#CAD2D4"/>
+<stop offset="1" style="stop-color:#CAD2D4"/>
</linearGradient>
<path d="M36.743,3.063c-11.151,0-20.195,9.042-20.195,20.193c0,11.151,9.044,20.194,20.195,20.194 c11.152,0,20.193-9.043,20.193-20.194C56.937,12.105,47.896,3.063,36.743,3.063z M36.743,39.287c-8.413,0-16.07-7.617-16.07-16.03 C20.673,14.844,28.33,7,36.743,7c8.414,0,16.216,7.844,16.216,16.257C52.959,31.67,45.157,39.287,36.743,39.287z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.7422" x2="36.7422" y1="39.6108" y2="7.5044">
- <stop offset="0" style="stop-color:#E5EBED"/>
- <stop offset="1" style="stop-color:#515759"/>
+<stop offset="0" style="stop-color:#E5EBED"/>
+<stop offset="1" style="stop-color:#515759"/>
</linearGradient>
<path d="M36.743,6.96c-9.002,0-16.298,7.297-16.298,16.297s7.296,16.297,16.298,16.297 c9,0,16.296-7.297,16.296-16.297S45.743,6.96,36.743,6.96z M36.743,38.491c-8.413,0-15.234-6.821-15.234-15.234 c0-8.413,6.821-15.233,15.234-15.233c8.414,0,15.232,6.821,15.232,15.233C51.976,31.67,45.157,38.491,36.743,38.491z" fill="url(#SVGID_7_)"/>
-<path d="M36.653,24.873c-5.037,0-9.799-0.81-14.051-2.244c0.332-7.532,6.525-13.543,14.141-13.543 c7.594,0,13.775,5.979,14.135,13.484C46.583,24.04,41.76,24.873,36.653,24.873z" fill="#FFFFFF" opacity="0.2"/>
-<path d="M36.642,10.138c7.035,0,12.868,5.031,14.165,11.688c-0.722-7.15-6.722-12.74-14.063-12.74 c-6.607,0-12.139,4.527-13.705,10.646C25.038,14.141,30.366,10.138,36.642,10.138z" fill="#FFFFFF" opacity="0.4"/>
+<path d="M36.653,24.873c-5.037,0-9.799-0.81-14.051-2.244c0.332-7.532,6.525-13.543,14.141-13.543 c7.594,0,13.775,5.979,14.135,13.484C46.583,24.04,41.76,24.873,36.653,24.873z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M36.642,10.138c7.035,0,12.868,5.031,14.165,11.688c-0.722-7.15-6.722-12.74-14.063-12.74 c-6.607,0-12.139,4.527-13.705,10.646C25.038,14.141,30.366,10.138,36.642,10.138z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_security.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_security.svg Thu May 27 13:10:59 2010 +0300
@@ -1,46 +1,44 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-89.6592" x2="-54.9037" y1="24.0742" y2="24.0742">
- <stop offset="0" style="stop-color:#8C8C8C"/>
- <stop offset="0.5333" style="stop-color:#CCCCCC"/>
- <stop offset="1" style="stop-color:#8F8F8F"/>
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="0.5333" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#8F8F8F"/>
</linearGradient>
<path d="M30.236,2.865c-9.661,0-17.502,7.771-17.638,17.402v6.473h5.966v-6.473 C18.7,13.94,23.877,8.835,30.236,8.835c6.357,0,11.535,5.105,11.672,11.433v8.679h5.967v-8.679 C47.738,10.636,39.9,2.865,30.236,2.865z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-88.5723" x2="-55.9912" y1="23.5225" y2="23.5225">
- <stop offset="0" style="stop-color:#CCCCCC"/>
- <stop offset="0.5152" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.5152" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
<path d="M43.012,27.843v-7.575c-0.148-6.926-5.878-12.536-12.775-12.536c-6.896,0-12.625,5.61-12.774,12.515 v8.7h-3.76v-8.679c0.127-8.98,7.544-16.299,16.534-16.299c8.992,0,16.408,7.318,16.535,16.315v7.559H43.012z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-87.8945" x2="-56.6681" y1="23.5225" y2="23.5225">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.5" style="stop-color:#B3B3B3"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path d="M14.389,28.259v-7.991c0.122-8.604,7.231-15.612,15.847-15.612c8.617,0,15.727,7.016,15.848,15.637 v6.862h-2.385v-6.888c-0.156-7.299-6.195-13.224-13.463-13.224c-7.267,0-13.306,5.915-13.462,13.188v8.027L14.389,28.259 L14.389,28.259z" fill="url(#SVGID_3_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-94.52" x2="-50.52" y1="-1.6851" y2="-1.6851">
- <stop offset="0" style="stop-color:#ED8C0D"/>
- <stop offset="0.24" style="stop-color:#FFE692"/>
- <stop offset="0.75" style="stop-color:#ED8C0D"/>
- <stop offset="0.8667" style="stop-color:#FFB81F"/>
- <stop offset="1" style="stop-color:#ED8C0D"/>
+<stop offset="0" style="stop-color:#ED8C0D"/>
+<stop offset="0.24" style="stop-color:#FFE692"/>
+<stop offset="0.75" style="stop-color:#ED8C0D"/>
+<stop offset="0.8667" style="stop-color:#FFB81F"/>
+<stop offset="1" style="stop-color:#ED8C0D"/>
</linearGradient>
<path d="M52,55.76c0,0.76-0.615,1.375-1.375,1.375H9.375C8.616,57.135,8,56.518,8,55.76V27.571 c0-0.759,0.616-1.375,1.375-1.375h41.25c0.76,0,1.375,0.616,1.375,1.375V55.76z" fill="url(#SVGID_4_)"/>
-<path d="M50.625,26.196H9.375C8.616,26.196,8,26.812,8,27.571v1.375 c0-0.759,0.616-1.375,1.375-1.375h41.25c0.76,0,1.375,0.616,1.375,1.375v-1.375C52,26.812,51.385,26.196,50.625,26.196z" enable-background="new " fill="#FFFFFF" opacity="0.4"/>
-<rect enable-background="new " fill="#EE8F11" height="4.813" opacity="0.5" width="44" x="8" y="32.385"/>
-<rect enable-background="new " height="0.688" opacity="0.25" width="44" x="8" y="32.385"/>
-<path d="M50.625,57.135H9.375C8.616,57.135,8,56.518,8,55.76v-1.375 c0,0.758,0.616,1.375,1.375,1.375h41.25c0.76,0,1.375-0.617,1.375-1.375v1.375C52,56.518,51.385,57.135,50.625,57.135z" enable-background="new " opacity="0.25"/>
-<rect enable-background="new " fill="#FEE38E" height="0.688" opacity="0.4" width="44" x="8" y="37.196"/>
-<path d="M30,54.674c-1.378,0-2.5-1.121-2.5-2.5V48.5 c-1.538-0.885-2.5-2.517-2.5-4.326c0-2.756,2.243-5,5-5s5,2.244,5,5c0,1.811-0.962,3.441-2.5,4.326v3.674 C32.5,53.553,31.379,54.674,30,54.674L30,54.674z" enable-background="new " fill="#FFE591" opacity="0.25"/>
+<path d="M50.625,26.196H9.375C8.616,26.196,8,26.812,8,27.571v1.375 c0-0.759,0.616-1.375,1.375-1.375h41.25c0.76,0,1.375,0.616,1.375,1.375v-1.375C52,26.812,51.385,26.196,50.625,26.196z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<rect fill="#EE8F11" fill-opacity="0.5" height="4.813" stroke-opacity="0.5" width="44" x="8" y="32.385"/>
+<rect fill-opacity="0.25" height="0.688" stroke-opacity="0.25" width="44" x="8" y="32.385"/>
+<path d="M50.625,57.135H9.375C8.616,57.135,8,56.518,8,55.76v-1.375 c0,0.758,0.616,1.375,1.375,1.375h41.25c0.76,0,1.375-0.617,1.375-1.375v1.375C52,56.518,51.385,57.135,50.625,57.135z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<rect fill="#FEE38E" fill-opacity="0.4" height="0.688" stroke-opacity="0.4" width="44" x="8" y="37.196"/>
+<path d="M30,54.674c-1.378,0-2.5-1.121-2.5-2.5V48.5 c-1.538-0.885-2.5-2.517-2.5-4.326c0-2.756,2.243-5,5-5s5,2.244,5,5c0,1.811-0.962,3.441-2.5,4.326v3.674 C32.5,53.553,31.379,54.674,30,54.674L30,54.674z" fill="#FFE591" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-72.52" x2="-72.52" y1="-13.209" y2="-0.4489">
- <stop offset="0" style="stop-color:#A67C52"/>
- <stop offset="1" style="stop-color:#603813"/>
+<stop offset="0" style="stop-color:#A67C52"/>
+<stop offset="1" style="stop-color:#603813"/>
</linearGradient>
<path d="M34,44.174c0-2.209-1.791-4-4-4s-4,1.791-4,4c0,1.678,1.035,3.109,2.5,3.703v4.297 c0,0.83,0.672,1.5,1.5,1.5s1.5-0.67,1.5-1.5v-4.297C32.965,47.283,34,45.852,34,44.174z" fill="url(#SVGID_5_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_server_locked.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_server_locked.svg Thu May 27 13:10:59 2010 +0300
@@ -1,202 +1,200 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.3877" x2="29.3877" y1="52.6611" y2="57.6064">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.7091" style="stop-color:#686E70"/>
- <stop offset="1" style="stop-color:#A6B0B3"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#686E70"/>
+<stop offset="1" style="stop-color:#A6B0B3"/>
</linearGradient>
<path d="M52.041,56.938c0,0.339-0.274,0.612-0.612,0.612H7.347c-0.338,0-0.612-0.273-0.612-0.612v-3.673 c0-0.339,0.274-0.612,0.612-0.612h44.082c0.338,0,0.612,0.273,0.612,0.612V56.938z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="10.4082" x2="49.5918" y1="22.6533" y2="22.6533">
- <stop offset="0" style="stop-color:#B4BDBF"/>
- <stop offset="0.2667" style="stop-color:#E5EBED"/>
- <stop offset="0.703" style="stop-color:#8D9699"/>
- <stop offset="1" style="stop-color:#B7BDBF"/>
+<stop offset="0" style="stop-color:#B4BDBF"/>
+<stop offset="0.2667" style="stop-color:#E5EBED"/>
+<stop offset="0.703" style="stop-color:#8D9699"/>
+<stop offset="1" style="stop-color:#B7BDBF"/>
</linearGradient>
<path d="M48.113,2.449H11.889c-0.815,0-1.48,0.668-1.48,1.485v38.923h39.184V3.935 C49.592,3.117,48.926,2.449,48.113,2.449z" fill="url(#SVGID_2_)"/>
<path d="M48.113,2.449c0.813,0,1.479,0.668,1.479,1.485v38.923H10.408V3.935c0-0.817,0.666-1.485,1.48-1.485H48.113 M48.113,3.626H11.889c-0.173,0-0.318,0.142-0.318,0.309v37.747H48.43V3.935C48.43,3.768,48.285,3.626,48.113,3.626L48.113,3.626z" fill="#FFFFFF"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="15.5947" y2="6.3742">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#303030"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="9.412" width="32.59" x="13.705" y="6.183"/>
-<rect fill="#FFFFFF" height="1.177" opacity="0.25" width="32.59" x="13.705" y="15.595"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.177" stroke-opacity="0.25" width="32.59" x="13.705" y="15.595"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30.0015" x2="30.0015" y1="7.4082" y2="14.3725">
- <stop offset="0" style="stop-color:#8B8B8B"/>
- <stop offset="1" style="stop-color:#454545"/>
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="7.058" width="30.263" x="14.87" y="7.359"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30.0005" x2="30.0005" y1="8.2974" y2="13.2402">
- <stop offset="0" style="stop-color:#525252"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="4.706" width="27.939" x="16.031" y="8.534"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20.0767" x2="20.0767" y1="9.5928" y2="12.0647">
- <stop offset="0" style="stop-color:#17BFFF"/>
- <stop offset="1" style="stop-color:#0D5186"/>
+<stop offset="0" style="stop-color:#17BFFF"/>
+<stop offset="1" style="stop-color:#0D5186"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="2.354" width="5.848" x="17.153" y="9.711"/>
-<rect fill="#FFFFFF" height="1.176" opacity="0.25" width="5.848" x="17.153" y="9.711"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="5.848" x="17.153" y="9.711"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="28.0029" y2="18.7824">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#303030"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="9.412" width="32.59" x="13.705" y="18.591"/>
-<rect fill="#FFFFFF" height="1.176" opacity="0.25" width="32.59" x="13.705" y="28.003"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="32.59" x="13.705" y="28.003"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.0015" x2="30.0015" y1="19.8154" y2="26.7816">
- <stop offset="0" style="stop-color:#8B8B8B"/>
- <stop offset="1" style="stop-color:#454545"/>
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="7.06" width="30.263" x="14.87" y="19.767"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.0005" x2="30.0005" y1="20.7056" y2="25.6484">
- <stop offset="0" style="stop-color:#525252"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="4.706" width="27.939" x="16.031" y="20.942"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="26.957" x2="31.9189" y1="50.5098" y2="50.5098">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.3212" style="stop-color:#C7C7C7"/>
- <stop offset="0.6848" style="stop-color:#4D4D4D"/>
- <stop offset="0.8545" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<path d="M26.939,48.367v3.674c0,0.338,0.274,0.612,0.612,0.612h3.674c0.338,0,0.612-0.274,0.612-0.612 v-3.674H26.939z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="26.9565" x2="31.918" y1="48.6738" y2="48.6738">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.3212" style="stop-color:#C7C7C7"/>
- <stop offset="0.6848" style="stop-color:#4D4D4D"/>
- <stop offset="0.8545" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<rect fill="url(#SVGID_11_)" height="0.612" width="4.897" x="26.938" y="48.367"/>
<g>
- <rect fill="none" height="60" width="60"/>
+<rect fill="none" height="60" width="60"/>
</g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30.0005" x2="30.0005" y1="48.9316" y2="42.9805">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="1" style="stop-color:#303030"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
<rect fill="url(#SVGID_12_)" height="6.122" width="37.996" x="11.002" y="42.857"/>
-<rect height="0.612" opacity="0.5" width="37.996" x="11.002" y="42.857"/>
-<rect height="0.612" opacity="0.2" width="37.996" x="11.002" y="43.47"/>
+<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="42.857"/>
+<rect fill-opacity="0.2" height="0.612" stroke-opacity="0.2" width="37.996" x="11.002" y="43.47"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="12.8589" x2="12.8589" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_13_)" height="4.897" width="2.476" x="11.621" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.8115" x2="17.8115" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_14_)" height="4.897" width="2.476" x="16.574" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.7642" x2="22.7642" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_15_)" height="4.897" width="2.476" x="21.526" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="27.7158" x2="27.7158" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_16_)" height="4.897" width="2.476" x="26.478" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="32.668" x2="32.668" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_17_)" height="4.897" width="2.477" x="31.43" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="37.6211" x2="37.6211" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_18_)" height="4.897" width="2.477" x="36.383" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="42.5723" x2="42.5723" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_19_)" height="4.897" width="2.477" x="41.334" y="44.082"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="47.5254" x2="47.5254" y1="48.9404" y2="44.1797">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<rect fill="url(#SVGID_20_)" height="4.897" width="2.477" x="46.287" y="44.082"/>
-<rect height="0.612" opacity="0.5" width="37.996" x="11.002" y="48.367"/>
-<rect fill="#CCCCCC" height="0.612" opacity="0.5" width="37.996" x="11.002" y="47.755"/>
-<rect height="0.612" opacity="0.3" width="4.897" x="26.938" y="48.979"/>
-<rect height="0.612" opacity="0.1" width="4.897" x="26.938" y="49.592"/>
-<rect height="4.897" opacity="0.3" width="0.612" x="18.979" y="52.653"/>
-<rect height="4.897" opacity="0.3" width="0.612" x="39.184" y="52.653"/>
-<rect height="4.897" opacity="0.1" width="0.612" x="18.367" y="52.653"/>
-<rect height="4.897" opacity="0.1" width="0.612" x="39.796" y="52.653"/>
+<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="48.367"/>
+<rect fill="#CCCCCC" fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="47.755"/>
+<rect fill-opacity="0.3" height="0.612" stroke-opacity="0.3" width="4.897" x="26.938" y="48.979"/>
+<rect fill-opacity="0.1" height="0.612" stroke-opacity="0.1" width="4.897" x="26.938" y="49.592"/>
+<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="18.979" y="52.653"/>
+<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="39.184" y="52.653"/>
+<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="18.367" y="52.653"/>
+<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="39.796" y="52.653"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="29.3872" x2="29.3872" y1="52.1279" y2="57.9301">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.3212" style="stop-color:#C7C7C7"/>
- <stop offset="0.6848" style="stop-color:#4D4D4D"/>
- <stop offset="0.8545" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<rect fill="url(#SVGID_21_)" height="6.122" width="18.367" x="20.204" y="52.041"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.8979" x2="19.8979" y1="52.1279" y2="57.9301">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.3212" style="stop-color:#C7C7C7"/>
- <stop offset="0.6848" style="stop-color:#4D4D4D"/>
- <stop offset="0.8545" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<path d="M19.592,52.653v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122 C19.866,52.041,19.592,52.314,19.592,52.653z" fill="url(#SVGID_22_)"/>
-<path d="M19.592,52.653v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122C19.866,52.041,19.592,52.314,19.592,52.653z" opacity="0.3"/>
+<path d="M19.592,52.653v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122C19.866,52.041,19.592,52.314,19.592,52.653z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="38.877" x2="38.877" y1="52.1279" y2="57.9301">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.3212" style="stop-color:#C7C7C7"/>
- <stop offset="0.6848" style="stop-color:#4D4D4D"/>
- <stop offset="0.8545" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#7A7A7A"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
<path d="M38.571,52.041v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897 C39.184,52.314,38.91,52.041,38.571,52.041z" fill="url(#SVGID_23_)"/>
-<path d="M38.571,52.041v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897C39.184,52.314,38.91,52.041,38.571,52.041z" opacity="0.3"/>
+<path d="M38.571,52.041v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897C39.184,52.314,38.91,52.041,38.571,52.041z" fill-opacity="0.3" stroke-opacity="0.3"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
<polygon fill="none" points="0,0 0,30 4.358,30 25.643,30 30,30 30,0 "/>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M4.358,30c-0.942,0-1.709-0.768-1.709-1.71V13.747 c0-0.943,0.767-1.711,1.709-1.711h0.663V9.979C5.099,4.471,9.63,0,15.122,0c5.491,0,10.022,4.471,10.101,9.966v2.07h0.42 c0.941,0,1.709,0.768,1.709,1.711V28.29c0,0.942-0.768,1.71-1.709,1.71H4.358z M20.145,12.036V9.979 c-0.058-2.692-2.312-4.9-5.021-4.9s-4.965,2.208-5.021,4.922v2.035H20.145z" enable-background="new " opacity="0.35"/>
+<path d="M4.358,30c-0.942,0-1.709-0.768-1.709-1.71V13.747 c0-0.943,0.767-1.711,1.709-1.711h0.663V9.979C5.099,4.471,9.63,0,15.122,0c5.491,0,10.022,4.471,10.101,9.966v2.07h0.42 c0.941,0,1.709,0.768,1.709,1.711V28.29c0,0.942-0.768,1.71-1.709,1.71H4.358z M20.145,12.036V9.979 c-0.058-2.692-2.312-4.9-5.021-4.9s-4.965,2.208-5.021,4.922v2.035H20.145z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="273.6377" x2="291.5699" y1="-368.7476" y2="-368.7476">
- <stop offset="0" style="stop-color:#8C8C8C"/>
- <stop offset="0.5333" style="stop-color:#B3B3B3"/>
- <stop offset="1" style="stop-color:#808080"/>
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="0.5333" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
<path d="M15.122,1c-4.984,0-9.03,4.009-9.101,8.979v3.338H9.1V9.979c0.069-3.266,2.74-5.9,6.021-5.9 s5.951,2.635,6.021,5.9v4.477h3.078V9.979C24.152,5.009,20.107,1,15.122,1z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="274.1973" x2="291.0081" y1="-369.0322" y2="-369.0322">
- <stop offset="0" style="stop-color:#CCCCCC"/>
- <stop offset="0.5152" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.5152" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
<path d="M21.714,13.888V9.979c-0.077-3.574-3.032-6.469-6.592-6.469c-3.559,0-6.514,2.895-6.592,6.458v4.488 H6.591V9.979c0.065-4.636,3.893-8.41,8.531-8.41c4.64,0,8.465,3.774,8.53,8.418v3.9L21.714,13.888L21.714,13.888z" fill="url(#SVGID_2__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="274.5469" x2="290.6592" y1="-369.0322" y2="-369.0322">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.5" style="stop-color:#B3B3B3"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path d="M6.945,14.102V9.979c0.063-4.44,3.731-8.055,8.177-8.055S23.234,5.542,23.3,9.99v3.541h-1.231V9.979 c-0.08-3.767-3.196-6.824-6.945-6.824c-3.75,0-6.865,3.053-6.946,6.805v4.142H6.945z" fill="url(#SVGID_3__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="271.1289" x2="293.832" y1="-382.0376" y2="-382.0376">
- <stop offset="0" style="stop-color:#ED8C0D"/>
- <stop offset="0.24" style="stop-color:#FFE692"/>
- <stop offset="0.75" style="stop-color:#ED8C0D"/>
- <stop offset="0.8667" style="stop-color:#FFB81F"/>
- <stop offset="1" style="stop-color:#ED8C0D"/>
+<stop offset="0" style="stop-color:#ED8C0D"/>
+<stop offset="0.24" style="stop-color:#FFE692"/>
+<stop offset="0.75" style="stop-color:#ED8C0D"/>
+<stop offset="0.8667" style="stop-color:#FFB81F"/>
+<stop offset="1" style="stop-color:#ED8C0D"/>
</linearGradient>
<path d="M26.352,28.29c0,0.392-0.317,0.71-0.709,0.71H4.358c-0.392,0-0.709-0.318-0.709-0.71V13.747 c0-0.392,0.317-0.711,0.709-0.711h21.283c0.393,0,0.709,0.319,0.709,0.711V28.29H26.352z" fill="url(#SVGID_4__)"/>
-<path d="M25.643,13.036H4.358c-0.392,0-0.709,0.319-0.709,0.711v0.709 c0-0.392,0.317-0.709,0.709-0.709h21.283c0.393,0,0.709,0.317,0.709,0.709v-0.709C26.352,13.355,26.033,13.036,25.643,13.036z" enable-background="new " fill="#FFFFFF" opacity="0.4"/>
-<path d="M25.643,29H4.358c-0.392,0-0.709-0.318-0.709-0.71v-0.709 c0,0.392,0.317,0.709,0.709,0.709h21.283c0.393,0,0.709-0.317,0.709-0.709v0.709C26.352,28.682,26.033,29,25.643,29z" enable-background="new " opacity="0.25"/>
-<path d="M15,25.82c-0.689,0-1.25-0.562-1.25-1.25v-1.838 c-0.769-0.441-1.25-1.256-1.25-2.162c0-1.379,1.122-2.5,2.5-2.5c1.379,0,2.5,1.121,2.5,2.5c0,0.904-0.48,1.721-1.25,2.162v1.838 C16.25,25.26,15.689,25.82,15,25.82L15,25.82z" enable-background="new " fill="#FFE591" opacity="0.25"/>
+<path d="M25.643,13.036H4.358c-0.392,0-0.709,0.319-0.709,0.711v0.709 c0-0.392,0.317-0.709,0.709-0.709h21.283c0.393,0,0.709,0.317,0.709,0.709v-0.709C26.352,13.355,26.033,13.036,25.643,13.036z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M25.643,29H4.358c-0.392,0-0.709-0.318-0.709-0.71v-0.709 c0,0.392,0.317,0.709,0.709,0.709h21.283c0.393,0,0.709-0.317,0.709-0.709v0.709C26.352,28.682,26.033,29,25.643,29z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<path d="M15,25.82c-0.689,0-1.25-0.562-1.25-1.25v-1.838 c-0.769-0.441-1.25-1.256-1.25-2.162c0-1.379,1.122-2.5,2.5-2.5c1.379,0,2.5,1.121,2.5,2.5c0,0.904-0.48,1.721-1.25,2.162v1.838 C16.25,25.26,15.689,25.82,15,25.82L15,25.82z" fill="#FFE591" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="282.4805" x2="282.4805" y1="-386.0986" y2="-379.7186">
- <stop offset="0" style="stop-color:#A67C52"/>
- <stop offset="1" style="stop-color:#603813"/>
+<stop offset="0" style="stop-color:#A67C52"/>
+<stop offset="1" style="stop-color:#603813"/>
</linearGradient>
<path d="M17,20.57c0-1.104-0.896-2-2-2c-1.104,0-2,0.896-2,2c0,0.839,0.518,1.555,1.25,1.852v2.148 c0,0.414,0.336,0.75,0.75,0.75s0.75-0.336,0.75-0.75v-2.148C16.482,22.125,17,21.409,17,20.57z" fill="url(#SVGID_5__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_settings.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_settings.svg Thu May 27 13:10:59 2010 +0300
@@ -1,140 +1,146 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="4.5" y2="55.3778">
- <stop offset="0" style="stop-color:#E8E8E8"/>
- <stop offset="0.3576" style="stop-color:#B2BDC2"/>
- <stop offset="0.7455" style="stop-color:#595C5E"/>
- <stop offset="1" style="stop-color:#A1ABB0"/>
+<stop offset="0" style="stop-color:#E8E8E8"/>
+<stop offset="0.3576" style="stop-color:#B2BDC2"/>
+<stop offset="0.7455" style="stop-color:#595C5E"/>
+<stop offset="1" style="stop-color:#A1ABB0"/>
</linearGradient>
<path d="M6.412,55.5c-1.055,0-1.912-0.857-1.912-1.911V6.411C4.5,5.357,5.357,4.5,6.412,4.5h47.176 c1.055,0,1.913,0.857,1.913,1.911v47.178c0,1.054-0.858,1.911-1.913,1.911H6.412z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.001" x2="30.001" y1="5.7139" y2="54.1698">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.1455" style="stop-color:#D7DDDE"/>
- <stop offset="0.3212" style="stop-color:#FFFFFF"/>
- <stop offset="0.7333" style="stop-color:#8E9699"/>
- <stop offset="1" style="stop-color:#D5E2E6"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.1455" style="stop-color:#D7DDDE"/>
+<stop offset="0.3212" style="stop-color:#FFFFFF"/>
+<stop offset="0.7333" style="stop-color:#8E9699"/>
+<stop offset="1" style="stop-color:#D5E2E6"/>
</linearGradient>
<path d="M6.412,54.286c-0.385,0-0.697-0.313-0.697-0.697V6.411c0-0.384,0.313-0.697,0.697-0.697h47.176 c0.387,0,0.699,0.313,0.699,0.697v47.178c0,0.385-0.313,0.697-0.699,0.697H6.412z" fill="url(#SVGID_2_)"/>
<path d="M53.588,5.106H6.412c-0.719,0-1.305,0.586-1.305,1.305v47.178 c0,0.719,0.586,1.305,1.305,1.305h47.176c0.72,0,1.307-0.586,1.307-1.305V6.411C54.895,5.692,54.308,5.106,53.588,5.106z M53.68,53.589c0,0.05-0.041,0.09-0.092,0.09H6.412c-0.049,0-0.09-0.04-0.09-0.09V6.411c0-0.049,0.041-0.09,0.09-0.09h47.176 c0.051,0,0.092,0.041,0.092,0.09V53.589z" fill="#FFFFFF" fill-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="13.6074" x2="13.6074" y1="11.021" y2="48.3899">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M13,48.519c-1.339,0-2.428-1.09-2.428-2.429V13.304c0-1.34,1.089-2.43,2.428-2.43 h1.215c1.339,0,2.429,1.09,2.429,2.43V46.09c0,1.339-1.09,2.429-2.429,2.429H13z" fill="url(#SVGID_3_)" fill-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.9473" x2="11.1119" y1="29.6973" y2="29.6973">
- <stop offset="0" style="stop-color:#595C5E"/>
- <stop offset="0.3" style="stop-color:#ABB2B5"/>
- <stop offset="0.7" style="stop-color:#ABB2B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#595C5E"/>
+<stop offset="0.3" style="stop-color:#ABB2B5"/>
+<stop offset="0.7" style="stop-color:#ABB2B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M16.036,46.09c0,1.006-0.815,1.822-1.821,1.822H13c-1.006,0-1.821-0.816-1.821-1.822V13.304 c0-1.008,0.815-1.821,1.821-1.821h1.215c1.006,0,1.821,0.813,1.821,1.821V46.09z" fill="url(#SVGID_4_)"/>
<path d="M14.215,11.482H13c-1.006,0-1.821,0.813-1.821,1.821V46.09c0,1.006,0.815,1.822,1.821,1.822h1.215 c1.006,0,1.821-0.816,1.821-1.822V13.304C16.036,12.296,15.221,11.482,14.215,11.482z M15.429,46.09 c0,0.669-0.544,1.214-1.214,1.214H13c-0.67,0-1.214-0.545-1.214-1.214V13.304c0-0.67,0.544-1.215,1.214-1.215h1.215 c0.67,0,1.214,0.545,1.214,1.215V46.09z" fill-opacity="0.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.7861" x2="15.4287" y1="36.0713" y2="36.0713">
- <stop offset="0" style="stop-color:#5AA913"/>
- <stop offset="0.497" style="stop-color:#A2ED21"/>
- <stop offset="1" style="stop-color:#58A813"/>
+<stop offset="0" style="stop-color:#5AA913"/>
+<stop offset="0.497" style="stop-color:#A2ED21"/>
+<stop offset="1" style="stop-color:#58A813"/>
</linearGradient>
<path d="M13,47.304c-0.67,0-1.214-0.545-1.214-1.214V26.054c0-0.668,0.544-1.215,1.214-1.215h1.215 c0.67,0,1.214,0.547,1.214,1.215V46.09c0,0.669-0.544,1.214-1.214,1.214H13z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="13.6074" x2="13.6074" y1="19.6782" y2="28.6905">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M10.572,28.483c-1.34,0-2.43-1.09-2.43-2.43v-4.25c0-1.34,1.09-2.428,2.43-2.428 h6.071c1.339,0,2.429,1.088,2.429,2.428v4.25c0,1.34-1.09,2.43-2.429,2.43H10.572z" fill="url(#SVGID_6_)" fill-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="13.6074" x2="13.6074" y1="19.4058" y2="27.2627">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<path d="M10.572,27.268c-1.006,0-1.822-0.816-1.822-1.82v-4.252 c0-1.004,0.816-1.819,1.822-1.819h6.071c1.004,0,1.821,0.815,1.821,1.819v4.252c0,1.004-0.817,1.82-1.821,1.82H10.572z" fill="url(#SVGID_7_)" fill-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="13.6074" x2="13.6074" y1="20.2031" y2="26.8131">
- <stop offset="0.1212" style="stop-color:#FFFFFF"/>
- <stop offset="0.4182" style="stop-color:#B0B6B8"/>
- <stop offset="0.4182" style="stop-color:#9FA6A8"/>
- <stop offset="0.6606" style="stop-color:#7D8588"/>
- <stop offset="0.9697" style="stop-color:#ADB3B5"/>
- <stop offset="0.9697" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.1212" style="stop-color:#FFFFFF"/>
+<stop offset="0.4182" style="stop-color:#B0B6B8"/>
+<stop offset="0.4182" style="stop-color:#9FA6A8"/>
+<stop offset="0.6606" style="stop-color:#7D8588"/>
+<stop offset="0.9697" style="stop-color:#ADB3B5"/>
+<stop offset="0.9697" style="stop-color:#595C5E"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M17.857,25.447c0,0.671-0.543,1.214-1.214,1.214h-6.071c-0.672,0-1.215-0.543-1.215-1.214v-4.252 c0-0.669,0.543-1.214,1.215-1.214h6.071c0.671,0,1.214,0.545,1.214,1.214V25.447z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="13.6074" x2="13.6074" y1="20.7715" y2="26.1783">
- <stop offset="0.1212" style="stop-color:#E5E9EB"/>
- <stop offset="0.4182" style="stop-color:#B0B6B8"/>
- <stop offset="0.4182" style="stop-color:#9FA6A8"/>
- <stop offset="0.6606" style="stop-color:#7D8588"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E5E9EB"/>
+<stop offset="0.1212" style="stop-color:#E5E9EB"/>
+<stop offset="0.4182" style="stop-color:#B0B6B8"/>
+<stop offset="0.4182" style="stop-color:#9FA6A8"/>
+<stop offset="0.6606" style="stop-color:#7D8588"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M10.572,26.054c-0.336,0-0.607-0.272-0.607-0.606v-4.252c0-0.335,0.271-0.605,0.607-0.605h6.071 c0.335,0,0.606,0.271,0.606,0.605v4.252c0,0.334-0.271,0.606-0.606,0.606H10.572z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="25.75" x2="25.75" y1="11.021" y2="48.3899">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M25.143,48.519c-1.339,0-2.428-1.09-2.428-2.429V13.304 c0-1.34,1.089-2.43,2.428-2.43h1.215c1.339,0,2.429,1.09,2.429,2.43V46.09c0,1.339-1.09,2.429-2.429,2.429H25.143z" fill="url(#SVGID_10_)" fill-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="28.0898" x2="23.2554" y1="29.6973" y2="29.6973">
- <stop offset="0" style="stop-color:#595C5E"/>
- <stop offset="0.3" style="stop-color:#ABB2B5"/>
- <stop offset="0.7" style="stop-color:#ABB2B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#595C5E"/>
+<stop offset="0.3" style="stop-color:#ABB2B5"/>
+<stop offset="0.7" style="stop-color:#ABB2B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M28.179,46.09c0,1.006-0.815,1.822-1.821,1.822h-1.215c-1.005,0-1.82-0.816-1.82-1.822V13.304 c0-1.008,0.815-1.821,1.82-1.821h1.215c1.006,0,1.821,0.813,1.821,1.821V46.09z" fill="url(#SVGID_11_)"/>
<path d="M26.357,11.482h-1.215c-1.005,0-1.82,0.813-1.82,1.821V46.09c0,1.006,0.815,1.822,1.82,1.822h1.215 c1.006,0,1.821-0.816,1.821-1.822V13.304C28.179,12.296,27.363,11.482,26.357,11.482z M27.571,46.09 c0,0.669-0.544,1.214-1.214,1.214h-1.215c-0.67,0-1.214-0.545-1.214-1.214V13.304c0-0.67,0.544-1.215,1.214-1.215h1.215 c0.67,0,1.214,0.545,1.214,1.215V46.09z" fill-opacity="0.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="23.9287" x2="27.5713" y1="37.5898" y2="37.5898">
- <stop offset="0" style="stop-color:#5AA913"/>
- <stop offset="0.497" style="stop-color:#A2ED21"/>
- <stop offset="1" style="stop-color:#58A813"/>
+<stop offset="0" style="stop-color:#5AA913"/>
+<stop offset="0.497" style="stop-color:#A2ED21"/>
+<stop offset="1" style="stop-color:#58A813"/>
</linearGradient>
<path d="M25.143,47.304c-0.67,0-1.214-0.545-1.214-1.214v-17c0-0.67,0.544-1.214,1.214-1.214h1.215 c0.67,0,1.214,0.544,1.214,1.214v17c0,0.669-0.544,1.214-1.214,1.214H25.143z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="25.75" x2="25.75" y1="26.9634" y2="35.9757">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M22.715,35.769c-1.339,0-2.429-1.09-2.429-2.43V29.09 c0-1.34,1.09-2.429,2.429-2.429h6.071c1.339,0,2.429,1.089,2.429,2.429v4.249c0,1.34-1.09,2.43-2.429,2.43H22.715z" fill="url(#SVGID_13_)" fill-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="25.75" x2="25.75" y1="26.6909" y2="34.5488">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<path d="M22.715,34.554c-1.005,0-1.822-0.816-1.822-1.821v-4.249 c0-1.006,0.817-1.822,1.822-1.822h6.071c1.005,0,1.821,0.816,1.821,1.822v4.249c0,1.005-0.816,1.821-1.821,1.821H22.715z" fill="url(#SVGID_14_)" fill-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="25.75" x2="25.75" y1="27.4893" y2="34.0982">
- <stop offset="0.1212" style="stop-color:#FFFFFF"/>
- <stop offset="0.4182" style="stop-color:#B0B6B8"/>
- <stop offset="0.4182" style="stop-color:#9FA6A8"/>
- <stop offset="0.6606" style="stop-color:#7D8588"/>
- <stop offset="0.9697" style="stop-color:#ADB3B5"/>
- <stop offset="0.9697" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.1212" style="stop-color:#FFFFFF"/>
+<stop offset="0.4182" style="stop-color:#B0B6B8"/>
+<stop offset="0.4182" style="stop-color:#9FA6A8"/>
+<stop offset="0.6606" style="stop-color:#7D8588"/>
+<stop offset="0.9697" style="stop-color:#ADB3B5"/>
+<stop offset="0.9697" style="stop-color:#595C5E"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M30,32.732c0,0.671-0.543,1.214-1.214,1.214h-6.071c-0.671,0-1.215-0.543-1.215-1.214v-4.249 c0-0.672,0.544-1.216,1.215-1.216h6.071c0.671,0,1.214,0.544,1.214,1.216V32.732z" fill="url(#SVGID_15_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="25.75" x2="25.75" y1="28.0571" y2="33.463">
- <stop offset="0.1212" style="stop-color:#E5E9EB"/>
- <stop offset="0.4182" style="stop-color:#B0B6B8"/>
- <stop offset="0.4182" style="stop-color:#9FA6A8"/>
- <stop offset="0.6606" style="stop-color:#7D8588"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E5E9EB"/>
+<stop offset="0.1212" style="stop-color:#E5E9EB"/>
+<stop offset="0.4182" style="stop-color:#B0B6B8"/>
+<stop offset="0.4182" style="stop-color:#9FA6A8"/>
+<stop offset="0.6606" style="stop-color:#7D8588"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M22.715,33.339c-0.335,0-0.607-0.271-0.607-0.606v-4.249c0-0.336,0.272-0.607,0.607-0.607h6.071 c0.335,0,0.607,0.271,0.607,0.607v4.249c0,0.335-0.272,0.606-0.607,0.606H22.715z" fill="url(#SVGID_16_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="42.1426" x2="42.1426" y1="14.0352" y2="45.034">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M36.982,45.179c-1.034,0-1.877-0.842-1.877-1.876V16.091 c0-1.035,0.843-1.876,1.877-1.876h10.322c1.035,0,1.876,0.841,1.876,1.876v27.212c0,1.034-0.841,1.876-1.876,1.876H36.982z" fill="url(#SVGID_17_)" fill-opacity="0.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="42.1426" x2="42.1426" y1="14.5083" y2="44.5696">
- <stop offset="0" style="stop-color:#999999"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M36.982,44.71c-0.775,0-1.407-0.632-1.407-1.407V16.091 c0-0.775,0.632-1.408,1.407-1.408h10.322c0.775,0,1.406,0.633,1.406,1.408v27.212c0,0.775-0.631,1.407-1.406,1.407H36.982z" fill="url(#SVGID_18_)" fill-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="42.1436" x2="42.1436" y1="44.3218" y2="15.0707">
- <stop offset="0" style="stop-color:#5F6366"/>
- <stop offset="1" style="stop-color:#3E4142"/>
+<stop offset="0" style="stop-color:#5F6366"/>
+<stop offset="1" style="stop-color:#3E4142"/>
</linearGradient>
<path d="M48.242,43.303c0,0.519-0.419,0.938-0.938,0.938H36.982c-0.518,0-0.938-0.42-0.938-0.938V16.091 c0-0.518,0.42-0.938,0.938-0.938h10.322c0.519,0,0.938,0.42,0.938,0.938V43.303z" fill="url(#SVGID_19_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="42.1436" x2="42.1436" y1="16.8999" y2="43.2099">
- <stop offset="0" style="stop-color:#9CA4A6"/>
- <stop offset="0.1" style="stop-color:#F0F2F3"/>
- <stop offset="0.5" style="stop-color:#BBBEBF"/>
- <stop offset="0.9" style="stop-color:#F3F5F5"/>
- <stop offset="0.95" style="stop-color:#8E9699"/>
- <stop offset="1" style="stop-color:#686E70"/>
+<stop offset="0" style="stop-color:#9CA4A6"/>
+<stop offset="0.1" style="stop-color:#F0F2F3"/>
+<stop offset="0.5" style="stop-color:#BBBEBF"/>
+<stop offset="0.9" style="stop-color:#F3F5F5"/>
+<stop offset="0.95" style="stop-color:#8E9699"/>
+<stop offset="1" style="stop-color:#686E70"/>
</linearGradient>
<path d="M36.982,43.771c-0.258,0-0.469-0.21-0.469-0.468V17.03c0-0.26,0.211-0.471,0.469-0.471h10.322 c0.259,0,0.469,0.211,0.469,0.471v26.272c0,0.258-0.21,0.468-0.469,0.468H36.982z" fill="url(#SVGID_20_)"/>
<path d="M47.305,18.437H36.982c-0.258,0-0.469,0.211-0.469,0.469v0.471c0-0.26,0.211-0.471,0.469-0.471h10.322 c0.259,0,0.469,0.211,0.469,0.471v-0.471C47.773,18.647,47.563,18.437,47.305,18.437z" fill="#FFFFFF"/>
@@ -142,12 +148,12 @@
<path d="M36.982,41.427c-0.259,0-0.469-0.212-0.469-0.47V19.376c0-0.26,0.21-0.471,0.469-0.471 h10.322c0.259,0,0.469,0.211,0.469,0.471v21.581c0,0.258-0.21,0.47-0.469,0.47H36.982z" fill="#FFFFFF" fill-opacity="0.3"/>
<path d="M36.514,30.165v10.792c0,0.258,0.21,0.47,0.469,0.47h10.322 c0.259,0,0.469-0.212,0.469-0.47V30.165H36.514z" fill="#FFFFFF" fill-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="42.1436" x2="42.1436" y1="22.582" y2="19.8827">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#808080"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
<path d="M38.859,22.66c-0.26,0-0.469-0.212-0.469-0.471v-1.876 c0-0.26,0.209-0.47,0.469-0.47h6.568c0.26,0,0.469,0.21,0.469,0.47v1.876c0,0.259-0.209,0.471-0.469,0.471H38.859z" fill="url(#SVGID_21_)" fill-opacity="0.4"/>
<rect fill="#FF1D25" height="1.876" width="6.568" x="38.859" y="20.313"/>
<polygon fill-opacity="0.3" points="44.959,20.313 39.328,20.313 38.859,20.313 38.859,20.782 38.859,22.189 39.328,22.189 39.328,20.782 44.959,20.782 44.959,22.189 45.428,22.189 45.428,20.782 45.428,20.313 "/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sim.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sim.svg Thu May 27 13:10:59 2010 +0300
@@ -1,89 +1,87 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.999" x2="29.999" y1="1.999" y2="57.9139">
- <stop offset="0" style="stop-color:#A0A3A6"/>
- <stop offset="0.8182" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#7B7E80"/>
+<stop offset="0" style="stop-color:#A0A3A6"/>
+<stop offset="0.8182" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#7B7E80"/>
</linearGradient>
<path d="M8.957,57.999c-1.365,0-2.473-1.108-2.473-2.473V4.472c0-1.364,1.107-2.473,2.473-2.473h30.801 c1.115,0,2.607,0.619,3.396,1.406l8.951,8.95c0.789,0.79,1.408,2.281,1.408,3.396v39.774c0,1.364-1.111,2.473-2.473,2.473H8.957z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="3.2646" y2="56.7327">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="0.7818" style="stop-color:#CCCCCC"/>
- <stop offset="1" style="stop-color:#D1D1D1"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
<path d="M51.041,56.674H8.957c-0.633,0-1.146-0.513-1.146-1.147V4.469c0-0.629,0.514-1.145,1.146-1.145 h30.801c0.766,0,1.912,0.477,2.459,1.021l8.953,8.948c0.543,0.546,1.018,1.693,1.018,2.459v39.774 C52.188,56.161,51.676,56.674,51.041,56.674L51.041,56.674z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="4.6533" y2="55.3477">
- <stop offset="0" style="stop-color:#E6E9E8"/>
- <stop offset="1" style="stop-color:#ADB2B5"/>
+<stop offset="0" style="stop-color:#E6E9E8"/>
+<stop offset="1" style="stop-color:#ADB2B5"/>
</linearGradient>
<path d="M50.863,55.348H9.137V4.653h30.621c0.412,0,1.227,0.336,1.521,0.629l8.957,8.95 c0.289,0.293,0.627,1.105,0.627,1.52V55.348L50.863,55.348z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="27.3711" x2="27.3711" y1="51.1084" y2="24.5269">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#282828"/>
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="26.784" width="31.227" x="11.758" y="24.426"/>
-<rect fill="#FFFFFF" height="1.326" opacity="0.4" width="31.227" x="11.758" y="51.21"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.326" stroke-opacity="0.4" width="31.227" x="11.758" y="51.21"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="16.2236" x2="16.2236" y1="25.7173" y2="49.2631">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="7.305" width="5.682" x="13.383" y="42.197"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30.1895" x2="30.1895" y1="25.9839" y2="48.9336">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="7.304" width="5.254" x="27.563" y="25.967"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="23.3125" x2="23.3125" y1="25.9839" y2="48.9336">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="7.304" width="5.254" x="20.686" y="25.967"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="37.8779" x2="37.8779" y1="25.9839" y2="48.9336">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="7.304" width="6.877" x="34.439" y="25.967"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.1895" x2="30.1895" y1="25.7173" y2="49.2631">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="7.305" width="5.254" x="27.563" y="42.197"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="23.3125" x2="23.3125" y1="25.7173" y2="49.2631">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="7.305" width="5.254" x="20.686" y="42.197"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="27.3496" x2="27.3496" y1="25.9839" y2="48.8929">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<polygon fill="url(#SVGID_11_)" points="18.975,34.894 18.975,25.967 13.383,25.967 13.383,40.574 41.316,40.574 41.316,34.894 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="37.8779" x2="37.8779" y1="25.7173" y2="49.2631">
- <stop offset="0" style="stop-color:#FFF173"/>
- <stop offset="0.33" style="stop-color:#F1BC35"/>
- <stop offset="0.66" style="stop-color:#E5B029"/>
- <stop offset="1" style="stop-color:#FFA102"/>
+<stop offset="0" style="stop-color:#FFF173"/>
+<stop offset="0.33" style="stop-color:#F1BC35"/>
+<stop offset="0.66" style="stop-color:#E5B029"/>
+<stop offset="1" style="stop-color:#FFA102"/>
</linearGradient>
<rect fill="url(#SVGID_12_)" height="7.305" width="6.877" x="34.439" y="42.197"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sisx.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sisx.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="27.8462" x2="27.8462" y1="3.1968" y2="48.3761">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.4606" style="stop-color:#BDC2C4"/>
- <stop offset="0.7333" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.4606" style="stop-color:#BDC2C4"/>
+<stop offset="0.7333" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M51.065,18.041H31.027v-2.398c2.141-1.259,4.403-2.609,4.403-5.143c0-3.896-4.045-7.064-7.938-7.064 c-3.895,0-7.937,3.168-7.937,7.064c0,2.535,2.265,3.891,4.415,5.146v2.396h-5.701c-1.445,0-2.627,1.183-2.627,2.626v13.048h-1.453 c-1.211-2.092-2.594-4.378-5.185-4.378C5.136,29.337,2,33.348,2,37.217c0,3.868,3.136,7.879,7.003,7.879 c2.591,0,3.974-2.286,5.185-4.377h1.453v3.885c0,1.445,1.183,2.627,2.627,2.627h6.205v-3.62c-1.889-1.104-3.882-2.296-3.882-4.526 c0-3.426,3.556-6.213,6.981-6.213s6.983,2.787,6.983,6.213c0,2.229-1.99,3.417-3.873,4.525v3.621h20.383 c1.445,0,2.628-1.182,2.628-2.627V20.667C53.693,19.224,52.51,18.041,51.065,18.041z" fill="url(#SVGID_1_)"/>
<path d="M18.268,18.759h5.701v-0.718h-5.701c-1.445,0-2.627,1.183-2.627,2.626v0.718 C15.641,19.941,16.823,18.759,18.268,18.759z" fill="#FFFFFF"/>
@@ -19,47 +18,47 @@
<path d="M9.003,30.055c2.591,0,3.974,2.286,5.185,4.378h1.453v-0.718h-1.453c-1.211-2.092-2.594-4.378-5.185-4.378 C5.136,29.337,2,33.348,2,37.217c0,0.119,0.012,0.238,0.018,0.358C2.204,33.822,5.256,30.055,9.003,30.055z" fill="#FFFFFF"/>
<path d="M51.065,18.041H31.027v0.718h20.038c1.445,0,2.628,1.182,2.628,2.625v-0.718 C53.693,19.224,52.51,18.041,51.065,18.041z" fill="#FFFFFF"/>
<path d="M20.612,39.467c-0.007,0.111-0.021,0.223-0.021,0.336c0,2.229,1.993,3.422,3.882,4.525V43.61 C22.695,42.572,20.827,41.454,20.612,39.467z" fill="#FFFFFF"/>
-<path d="M53.693,32.871H40.51l-0.113,0.01L40.34,32.89c-1.32,0.21-2.018,1.202-2.179,1.638 l-1.121,2.339c-0.058,0.08-0.11,0.163-0.155,0.242c-0.064,0.112-0.118,0.222-0.127,0.247c-0.047,0.096-0.09,0.197-0.148,0.367 c-0.1,0.307-0.148,0.6-0.148,0.893v8.615h15.32c0.754,0,1.43-0.326,1.911-0.836V32.871z" fill="#020202" opacity="0.1"/>
-<path d="M53.693,33.59H40.51l-0.057,0.009c-0.986,0.157-1.513,0.888-1.645,1.239l-1.151,2.401 c-0.056,0.073-0.106,0.149-0.153,0.231c-0.045,0.078-0.082,0.154-0.102,0.201c-0.037,0.073-0.067,0.15-0.109,0.273 c-0.076,0.233-0.114,0.452-0.114,0.67v8.615h14.603c0.754,0,1.43-0.326,1.911-0.836V33.59z" fill="#020202" opacity="0.2"/>
+<path d="M53.693,32.871H40.51l-0.113,0.01L40.34,32.89c-1.32,0.21-2.018,1.202-2.179,1.638 l-1.121,2.339c-0.058,0.08-0.11,0.163-0.155,0.242c-0.064,0.112-0.118,0.222-0.127,0.247c-0.047,0.096-0.09,0.197-0.148,0.367 c-0.1,0.307-0.148,0.6-0.148,0.893v8.615h15.32c0.754,0,1.43-0.326,1.911-0.836V32.871z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M53.693,33.59H40.51l-0.057,0.009c-0.986,0.157-1.513,0.888-1.645,1.239l-1.151,2.401 c-0.056,0.073-0.106,0.149-0.153,0.231c-0.045,0.078-0.082,0.154-0.102,0.201c-0.037,0.073-0.067,0.15-0.109,0.273 c-0.076,0.233-0.114,0.452-0.114,0.67v8.615h14.603c0.754,0,1.43-0.326,1.911-0.836V33.59z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="47.9429" x2="47.9429" y1="34.2842" y2="38.7279">
- <stop offset="0" style="stop-color:#AFED23"/>
- <stop offset="1" style="stop-color:#7DC51A"/>
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="1" style="stop-color:#7DC51A"/>
</linearGradient>
<path d="M57.619,37.628l-1.189-2.479c0,0-0.269-0.707-1.11-0.841H40.568 c-0.843,0.134-1.111,0.841-1.111,0.841l-1.188,2.479c-0.289,0.325-0.356,0.74-0.371,0.987h20.092 C57.975,38.368,57.908,37.953,57.619,37.628z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="47.9487" x2="47.9487" y1="37.0742" y2="57.0715">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="1" style="stop-color:#D11414"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="1" style="stop-color:#D11414"/>
</linearGradient>
<path d="M58,55.128c0,0.793-0.644,1.437-1.436,1.437H39.333c-0.791,0-1.436-0.644-1.436-1.437V38.615 c0-0.793,0.645-1.436,1.436-1.436h17.232c0.792,0,1.436,0.643,1.436,1.436V55.128z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9487" x2="47.9487" y1="51.5391" y2="37.1797">
- <stop offset="0" style="stop-color:#961414"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#961414"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<path d="M40.769,51.539h14.359c0.793,0,1.437-0.645,1.437-1.438V37.18H39.333v12.922 C39.333,50.895,39.976,51.539,40.769,51.539z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="47.9478" x2="47.9478" y1="50.2227" y2="56.8339">
- <stop offset="0" style="stop-color:#961414"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#961414"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<path d="M55.87,51.326c-0.17,0.104-0.359,0.168-0.564,0.194c-0.047,0.011-0.103,0.019-0.177,0.019H40.769 c-0.074,0-0.13-0.008-0.177-0.019c-0.205-0.026-0.395-0.091-0.564-0.194l-1.929,4.525c0.25,0.424,0.706,0.713,1.233,0.713h17.232 c0.527,0,0.983-0.289,1.232-0.713L55.87,51.326z" fill="url(#SVGID_5_)"/>
-<path d="M55.305,52.238c0.205-0.025,0.395-0.092,0.564-0.193l1.731,4.062c0.073-0.078,0.142-0.161,0.196-0.255 l-1.928-4.525c-0.17,0.104-0.359,0.168-0.564,0.194c-0.047,0.011-0.103,0.019-0.177,0.019H40.769c-0.074,0-0.13-0.008-0.177-0.019 c-0.205-0.026-0.395-0.091-0.564-0.194l-1.929,4.525c0.056,0.094,0.124,0.177,0.198,0.255l1.73-4.062 c0.17,0.102,0.359,0.168,0.564,0.193c0.047,0.011,0.103,0.018,0.177,0.018" opacity="0.15"/>
-<path d="M39.333,37.18v12.922c0,0.793,0.644,1.438,1.437,1.438h14.359c0.793,0,1.437-0.645,1.437-1.438V37.18H39.333z M55.846,50.102c0,0.396-0.322,0.719-0.718,0.719H40.769c-0.396,0-0.718-0.322-0.718-0.719V37.896h15.795V50.102z" opacity="0.1"/>
+<path d="M55.305,52.238c0.205-0.025,0.395-0.092,0.564-0.193l1.731,4.062c0.073-0.078,0.142-0.161,0.196-0.255 l-1.928-4.525c-0.17,0.104-0.359,0.168-0.564,0.194c-0.047,0.011-0.103,0.019-0.177,0.019H40.769c-0.074,0-0.13-0.008-0.177-0.019 c-0.205-0.026-0.395-0.091-0.564-0.194l-1.929,4.525c0.056,0.094,0.124,0.177,0.198,0.255l1.73-4.062 c0.17,0.102,0.359,0.168,0.564,0.193c0.047,0.011,0.103,0.018,0.177,0.018" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M39.333,37.18v12.922c0,0.793,0.644,1.438,1.437,1.438h14.359c0.793,0,1.437-0.645,1.437-1.438V37.18H39.333z M55.846,50.102c0,0.396-0.322,0.719-0.718,0.719H40.769c-0.396,0-0.718-0.322-0.718-0.719V37.896h15.795V50.102z" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="47.9487" x2="47.9487" y1="34.292" y2="37.2548">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="1" style="stop-color:#D11414"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="1" style="stop-color:#D11414"/>
</linearGradient>
<path d="M56.565,35.742c0-0.793-0.644-1.435-1.437-1.435H40.769c-0.793,0-1.437,0.642-1.437,1.435v1.438 h17.232V35.742z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="47.8735" x2="47.8735" y1="37.4336" y2="34.3221">
- <stop offset="0" style="stop-color:#EC4B27"/>
- <stop offset="1" style="stop-color:#FF9A4D"/>
+<stop offset="0" style="stop-color:#EC4B27"/>
+<stop offset="1" style="stop-color:#FF9A4D"/>
</linearGradient>
-<path d="M39.333,37.18h17.232c0.465,0,0.874,0.225,1.137,0.568 c-0.027-0.041-0.049-0.082-0.083-0.12l-1.189-2.479c0,0-0.269-0.707-1.11-0.841H40.568c-0.843,0.134-1.111,0.841-1.111,0.841 l-1.188,2.479c-0.102,0.113-0.167,0.237-0.223,0.362C38.28,37.512,38.765,37.18,39.333,37.18z" fill="url(#SVGID_7_)" opacity="0.65"/>
+<path d="M39.333,37.18h17.232c0.465,0,0.874,0.225,1.137,0.568 c-0.027-0.041-0.049-0.082-0.083-0.12l-1.189-2.479c0,0-0.269-0.707-1.11-0.841H40.568c-0.843,0.134-1.111,0.841-1.111,0.841 l-1.188,2.479c-0.102,0.113-0.167,0.237-0.223,0.362C38.28,37.512,38.765,37.18,39.333,37.18z" fill="url(#SVGID_7_)" fill-opacity="0.65" stroke-opacity="0.65"/>
<path d="M57.787,37.869c0.007,0.012,0.011,0.021,0.017,0.033C57.797,37.891,57.792,37.881,57.787,37.869z" fill="#C7FF5A"/>
<path d="M37.985,38.139c-0.003,0.01-0.006,0.02-0.01,0.029C37.979,38.158,37.982,38.148,37.985,38.139z" fill="#C7FF5A"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="47.9487" x2="47.9487" y1="37.0742" y2="57.0715">
- <stop offset="0" style="stop-color:#FDDB2B"/>
- <stop offset="0.5455" style="stop-color:#FF9A4D"/>
- <stop offset="1" style="stop-color:#EC4B27"/>
+<stop offset="0" style="stop-color:#FDDB2B"/>
+<stop offset="0.5455" style="stop-color:#FF9A4D"/>
+<stop offset="1" style="stop-color:#EC4B27"/>
</linearGradient>
<path d="M56.565,37.18H39.333c-0.791,0-1.436,0.643-1.436,1.436v16.513c0,0.793,0.645,1.437,1.436,1.437 h17.232c0.792,0,1.436-0.644,1.436-1.437V38.615C58,37.822,57.357,37.18,56.565,37.18z M57.282,55.128 c0,0.396-0.322,0.718-0.717,0.718H39.333c-0.395,0-0.717-0.322-0.717-0.718V38.615c0-0.396,0.322-0.719,0.717-0.719h17.232 c0.395,0,0.717,0.322,0.717,0.719V55.128z" fill="url(#SVGID_8_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_social_media.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_social_media.svg Thu May 27 13:10:59 2010 +0300
@@ -1,523 +1,263 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<rect fill="none" height="60" width="60"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="30" x2="30" y1="50.17" y2="7.62">
-
<stop offset="0" stop-color="#004E8C"/>
-
<stop offset="1" stop-color="#1B66D8"/>
-
</linearGradient>
-
<circle cx="30" cy="28.98" fill="url(#SVGID_1)" r="21.43"/>
-
<radialGradient cx="29.68" cy="21.59" gradientUnits="userSpaceOnUse" id="SVGID_2" r="25.79">
-
<stop offset="0" stop-color="#94FFFF"/>
-
<stop offset="0.5" stop-color="#36B5FF"/>
-
<stop offset="1" stop-color="#1B66D8"/>
-
</radialGradient>
-
<path d="M50.88,28.98c0,11.53-9.346,20.88-20.88,20.88s-20.88-9.345-20.88-20.88c0-11.53,9.349-20.88,20.88-20.88s20.88,9.36,20.88,20.88z" fill="url(#SVGID_2)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3" x1="30" x2="30" y1="7.92" y2="49.97">
-
<stop offset="0" stop-color="#31A7F8"/>
-
<stop offset="0.5" stop-color="#1E74DC"/>
-
<stop offset="1" stop-color="#88D6EB"/>
-
</linearGradient>
-
<path d="M30,8.107c-11.53,0-20.88,9.349-20.88,20.88s9.349,20.88,20.88,20.88,20.88-9.345,20.88-20.88c0-11.53-9.35-20.88-20.88-20.88zm0,39.92c-10.84,0-19.66-8.817-19.66-19.66s8.82-19.66,19.66-19.66,19.66,8.819,19.66,19.66c0,10.85-8.82,19.66-19.66,19.66z" fill="url(#SVGID_3)" fill-opacity="0.3" stroke-opacity="0.3"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4" x1="9.46" x2="12.78" y1="31.83" y2="31.83">
-
<stop offset="0" stop-color="#58595B"/>
-
<stop offset="1" stop-color="#000000"/>
-
</linearGradient>
-
<path d="M11.08,28.64c-0.222-0.295-0.725-0.295-0.946-0.295-0.437,0-0.669,0.311-0.673,0.616v0.021,0.031c0,0.537,0.03,1.14,0.094,1.871,0.013,0.139,0.03,0.276,0.047,0.414l0.024,0.201c0.055,0.434,0.121,0.861,0.195,1.274l0.035,0.183c0.032,0.162,0.063,0.323,0.097,0.483,0.089,0.405,0.198,0.827,0.332,1.29,0.019,0.066,0.037,0.135,0.054,0.199,0.029,0.109,0.058,0.217,0.091,0.322l0.005,0.014,0.012,0.033c-0.003-0.01-0.008-0.023-0.01-0.037l1.197-0.081c0.019-0.187,0.025-0.382,0.019-0.575-0.01-0.303-0.021-0.676-0.108-0.991l1.112-1.493,0.121-0.162v-1.595l-0.16-0.18-1.52-1.53z" fill="url(#SVGID_4)" fill-opacity="0.3" stroke-opacity="0.3"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5" x1="15.86" x2="50.59" y1="25.75" y2="25.75">
-
<stop offset="0" stop-color="#58595B"/>
-
<stop offset="1" stop-color="#000000"/>
-
</linearGradient>
-
<path d="M50.58,24.89c-0.015-0.079-0.029-0.135-0.043-0.191-0.012-0.042-0.021-0.084-0.029-0.125-0.105-0.495-0.236-1.006-0.391-1.525l-0.02-0.07c-0.033-0.117-0.067-0.234-0.105-0.349-0.188-0.587-0.393-1.148-0.607-1.666-0.028-0.065-0.057-0.125-0.085-0.188l-0.045-0.101c-0.206-0.473-0.435-0.947-0.677-1.402l-0.03-0.059c-0.046-0.089-0.092-0.181-0.141-0.269-0.295-0.532-0.603-1.04-0.918-1.511-0.032-0.049-0.069-0.102-0.106-0.154-0.023-0.031-0.045-0.062-0.066-0.092-0.301-0.437-0.617-0.862-0.946-1.268l-0.063-0.081c-0.045-0.055-0.089-0.112-0.135-0.167-0.381-0.456-0.783-0.898-1.199-1.316-0.055-0.057-0.114-0.115-0.176-0.172l-0.049-0.046c-0.375-0.369-0.774-0.731-1.183-1.074l-0.081-0.069c-0.041-0.037-0.082-0.073-0.125-0.106-0.446-0.367-0.93-0.728-1.435-1.075-0.063-0.042-0.126-0.083-0.19-0.124l-0.076-0.05c-0.455-0.301-0.93-0.589-1.404-0.853l-0.074-0.042c-0.039-0.022-0.078-0.045-0.118-0.068-0.528-0.283-1.081-0.55-1.643-0.792l-0.12-0.056-0.153-0.063c-0.148-0.062-0.297-0.114-0.444-0.166-0.076-0.026-0.152-0.053-0.228-0.08l-0.282-0.105-0.254,0.162c-0.171,0.108-0.841,0.491-1.236,0.715-0.438-0.059-1.499-0.192-2.569-0.295,0.33-0.032,0.786-0.069,1.429-0.111l0.091-1.204-0.048-0.012c-0.038-0.011-0.077-0.02-0.116-0.029l-0.091-0.018-0.075-0.014c-0.654-0.132-1.271-0.227-1.882-0.291l-0.004-0.001h-0.09c-0.698-0.07-1.409-0.106-2.113-0.106-0.62,0-1.262,0.032-1.963,0.101-0.109,0.01-0.214,0.021-0.321,0.032-0.693,0.078-1.299,0.169-1.873,0.286l-0.02,0.003-0.014,0.002c-0.603,0.125-1.211,0.281-1.856,0.477-0.058,0.018-0.115,0.037-0.173,0.055l-0.13,0.043c-0.547,0.175-1.083,0.37-1.596,0.582-0.042,0.018-0.071,0.029-0.099,0.039l-0.078,0.031c-0.564,0.241-1.128,0.512-1.688,0.812-0.061,0.031-0.119,0.066-0.177,0.1l-0.072,0.042c-0.157,0.087-0.316,0.186-0.472,0.283l-0.204,0.127-1.118,0.684,1.242,0.416c0.186,0.062,0.385,0.093,0.592,0.093,0.669,0,1.317-0.329,1.837-0.593,0.209-0.105,0.521-0.264,0.648-0.288,0.152,0.045,0.306,0.068,0.458,0.068,0.569,0,1.035-0.306,1.447-0.578l0.111-0.071c0.133-0.043,0.362-0.128,0.818-0.299,0.465-0.174,1.314-0.493,1.541-0.547,0.44-0.005,0.966-0.068,1.339-0.3,0.352,0.058,0.976,0.157,1.619,0.241-0.046,0.029-0.092,0.059-0.132,0.097-0.209,0.192-1.335,0.533-1.679,0.577-0.648,0.082-0.908,0.408-1.012,0.666-0.135,0.336-0.053,0.672,0.078,0.946-0.245,0.162-0.545,0.342-0.804,0.478,0.001-0.006,0.002-0.012,0.003-0.019,0.093-0.517,0.161-0.89-0.09-1.189-0.128-0.153-0.318-0.241-0.519-0.241-0.295,0-0.525,0.183-0.711,0.362-0.519,0.502-0.833,1.129-0.953,1.365l-0.022,0.044-0.018,0.035c-0.225,0.431-0.318,0.737-0.192,1.688-0.056,0.04-0.219,0.102-0.446,0.102-0.03,0-0.058-0.003-0.079-0.004-0.146-0.158-0.348-0.247-0.575-0.247-0.523,0-1.237,0.589-2.124,1.754l-0.284,0.374,0.29,0.37,0.269,0.344c-4.215,3.258-4.247,3.443-4.292,3.716-0.007,0.024-0.044,0.138-0.094,0.293-0.628,1.952-0.977,3.412-0.637,4.195,0.785,1.813,1.669,3.504,2.816,3.598,0.101,0.009,0.212,0.012,0.332,0.012,1.05,0,2.753-0.318,3.571-0.485,0.152,0.283,0.335,0.615,0.437,0.795l0.182,0.322,0.37-0.012c0.004,0,0.2-0.006,0.447-0.006,0.287,0,0.479,0.008,0.602,0.016,0.446,1.307,1.3,4.318,1.141,4.943l-0.002,0.002c-1.441,2.16,0.305,4.975,1.144,6.328,0.066,0.107,0.126,0.203,0.177,0.287,0.324,0.922,0.716,1.531,1.545,1.531,0.062,0,0.124-0.004,0.188-0.007,0.046-0.003,0.095-0.005,0.146-0.005,0.092,0,0.158,0.011,0.226,0.035l0.076,0.027,0.08,0.008c0.155,0.012,0.306,0.034,0.453,0.055,0.255,0.035,0.519,0.071,0.789,0.071,0.721,0,1.293-0.272,1.787-0.856,0.018-0.002,0.036-0.003,0.054-0.006,0.519-0.071,0.712-0.331,0.778-0.564,0.039-0.038,0.09-0.086,0.131-0.124,0.205-0.188,0.447-0.411,0.615-0.675,0.076-0.044,0.162-0.096,0.258-0.152,0.167-0.104,0.355-0.217,0.504-0.293,0.131-0.04,0.246-0.116,0.334-0.225,0.209-0.257,0.166-0.548,0.131-0.783-0.035-0.242-0.07-0.49,0.061-0.758,0.737-0.354,2.051-1.23,2.262-1.373l-0.001,0.017c-0.013,0.116-0.048,0.431-0.101,0.628-0.278,0.28-0.512,0.703-0.586,0.846l-0.048,0.094-0.015,0.104c-0.018,0.138-0.094,0.851,0.307,1.311,0.201,0.23,0.49,0.359,0.813,0.359,0.102,0,0.209-0.014,0.318-0.039,1.027-0.232,2.85-2.702,2.998-4.065,0.072-0.656-0.186-1.173-0.704-1.417l-0.387-0.183-0.304,0.302-1.125,1.126c-0.381,0.034-0.678,0.147-0.879,0.325,0.012-0.479-0.036-0.973-0.087-1.451-0.155-1.445-0.185-2.369,0.703-2.996l0.045-0.032,0.038-0.04c0.32-0.326,0.676-0.61,1.052-0.912,0.88-0.707,1.79-1.438,2.332-2.759l0.022-0.056c0.174-0.451,0.437-1.131,0.082-1.651-0.09-0.128-0.275-0.326-0.625-0.396,0.461-0.186,0.816-0.333,0.852-0.345l0.106-0.044,0.083-0.08,1.899-1.822,0.278-0.269-0.122-0.366c-0.017-0.047-0.12-0.335-0.411-0.748,0.554,0.075,1.029,0.208,1.185,0.326,0.057,0.125,0.171,0.397,0.292,0.683,2.088,4.924,2.383,5.177,2.926,5.186,0.021,0,0.037,0.002,0.051,0.003,0.043,0.003,0.083,0.005,0.119,0.005,0.309,0,0.486-0.158,0.564-0.252,0.227-0.273,0.163-0.608,0.139-0.734l-0.008-0.043c-0.025-0.294-0.009-1.618,0.034-2.706,0.003,0.002,0.004,0.006,0.007,0.01l1.119-0.445-0.04-0.09zm-16.46-6.02c-0.086,0.003-0.181,0.008-0.281,0.012-0.322,0.014-0.689,0.031-1.054,0.031-0.956,0-1.173-0.118-1.195-0.132-0.114-0.082-0.23-0.143-0.351-0.188,0.217-0.048,0.465-0.214,0.72-0.708,0.25,0.487,0.592,0.917,1.114,0.917,0.141,0,0.277-0.034,0.406-0.101,0.17,0.01,0.46,0.11,0.63,0.17zm-0.37-2.66c-0.072,0-0.131-0.003-0.176-0.007,0.049-0.128,0.108-0.202,0.154-0.244,0.061,0.093,0.141,0.175,0.232,0.245-0.07,0-0.14,0.01-0.2,0.01zm-3.8,1.27c0.327,0.641,0.569,0.917,0.762,1.037-0.475,0.039-0.833,0.34-1.126,0.625-0.206-0.068-0.565-0.286-0.672-0.438-0.063-0.089-0.138-0.166-0.22-0.232,0.52-0.14,0.97-0.62,1.26-0.99zm-1.81-0.47l-0.678-0.034-2.279-0.111c0.278-0.228,0.542-0.444,0.697-0.57,0.042-0.014,0.205-0.06,0.606-0.06,0.242,0,0.473,0.017,0.62,0.029l1.03,0.74z" fill="url(#SVGID_5)" fill-opacity="0.3" stroke-opacity="0.3"/>
-
<radialGradient cx="30.34" cy="14.28" gradientUnits="userSpaceOnUse" id="SVGID_6" r="23.56">
-
<stop offset="0" stop-color="#7AF200"/>
-
<stop offset="0.32" stop-color="#7AF200"/>
-
<stop offset="0.73" stop-color="#1CAD0F"/>
-
<stop offset="1" stop-color="#007A3A"/>
-
</radialGradient>
-
<path d="M10.07,28.97v0.018c0,0.622,0.039,1.237,0.093,1.843,0.017,0.199,0.046,0.398,0.069,0.599,0.053,0.417,0.116,0.829,0.19,1.237,0.042,0.217,0.082,0.434,0.127,0.646,0.093,0.422,0.203,0.838,0.321,1.248,0.05,0.17,0.089,0.343,0.14,0.508,0.007,0.018,0.014,0.034,0.018,0.053,0.017-0.162,0.021-0.327,0.017-0.497-0.04-1.199-0.233-1.045-0.233-1.045l1.357-1.823v-1.162l-1.589-1.59c-0.01,0-0.52-0.08-0.52-0.04z" fill="url(#SVGID_6)"/>
-
<path d="M22.83,10.95c0.587,0.192,1.066-0.2,1.613-0.548,0.193-0.04,2.338-0.896,2.57-0.896,0.231,0,1.01-0.03,1.204-0.34,0,0,3.357,0.583,3.862,0.389,0.277-0.108,1.434-0.2,2.426-0.265-0.057-0.012-0.107-0.029-0.162-0.041-0.055-0.011-0.106-0.019-0.162-0.03-0.623-0.125-1.252-0.226-1.894-0.29-0.005,0-0.01,0-0.015-0.002-0.674-0.068-1.359-0.104-2.053-0.104-0.643,0-1.277,0.039-1.906,0.098-0.11,0.011-0.22,0.023-0.331,0.035-0.608,0.066-1.21,0.155-1.8,0.273-0.01,0.004-0.021,0.005-0.031,0.006-0.613,0.126-1.213,0.283-1.802,0.464-0.102,0.03-0.199,0.064-0.301,0.096-0.523,0.168-1.038,0.356-1.544,0.564-0.06,0.026-0.12,0.047-0.18,0.071-0.556,0.238-1.099,0.501-1.629,0.784-0.08,0.043-0.157,0.089-0.235,0.134-0.227,0.125-0.44,0.267-0.66,0.401,1.07,0.38,2.43-0.99,3.01-0.79z" fill="url(#SVGID_6)"/>
-
<path d="M49.98,25c-0.021-0.102-0.049-0.197-0.07-0.296-0.105-0.499-0.233-0.99-0.377-1.473-0.039-0.13-0.076-0.265-0.117-0.395-0.176-0.548-0.372-1.09-0.592-1.617-0.039-0.093-0.084-0.184-0.123-0.275-0.203-0.464-0.422-0.918-0.658-1.363-0.055-0.106-0.109-0.215-0.166-0.319-0.279-0.502-0.574-0.993-0.892-1.468-0.054-0.083-0.115-0.162-0.171-0.242-0.291-0.422-0.596-0.831-0.916-1.228-0.063-0.079-0.126-0.161-0.193-0.241-0.368-0.443-0.756-0.868-1.16-1.277-0.07-0.071-0.143-0.141-0.215-0.208-0.371-0.364-0.756-0.714-1.153-1.047-0.067-0.056-0.132-0.116-0.198-0.171-0.448-0.366-0.915-0.714-1.395-1.042-0.084-0.058-0.17-0.113-0.256-0.167-0.442-0.294-0.898-0.572-1.365-0.83-0.064-0.035-0.124-0.073-0.188-0.108-0.52-0.278-1.049-0.533-1.594-0.768-0.097-0.041-0.195-0.079-0.29-0.12-0.212-0.087-0.432-0.156-0.646-0.235-0.255,0.163-1.438,0.832-1.438,0.832s-5.141-0.702-5.492-0.353c-0.351,0.353-1.721,0.71-2.033,0.751-0.31,0.039-0.956,0.206-0.181,1.161-0.116,0.118-2.325,1.657-2.325,0.957,0-0.701,0.494-1.953-0.2-1.282-0.498,0.482-0.796,1.135-0.86,1.257-0.163,0.313-0.263,0.462-0.145,1.357s-1.43,0.891-1.534,0.659c-0.277-0.622-1.809,1.394-1.809,1.394l0.647,0.828s-4.509,3.474-4.548,3.707c-0.039,0.234-1.164,3.25-0.775,4.146,0.389,0.898,1.375,3.158,2.307,3.233,1.221,0.1,4.185-0.559,4.185-0.559,0.08,0.196,0.637,1.189,0.637,1.189s1.453-0.047,1.534,0.11c0.027,0.053,1.75,5.121,1.182,5.793-1.357,2.032,0.775,5.011,1.369,6.018,0.595,1.731,0.977,0.957,1.758,1.239,0.961,0.084,1.773,0.439,2.589-0.611,0.237-0.195,0.641-0.041,0.641-0.313,0-0.152,0.697-0.598,0.877-1.018,0.189-0.089,0.675-0.415,1.004-0.572,0.299-0.02-0.283-0.82,0.309-1.666,0.639-0.252,2.364-1.415,2.364-1.415,0.077-1.704-0.839-3.812,0.873-5.02,1.104-1.125,2.552-1.765,3.253-3.478,0.195-0.505,0.629-1.542-0.619-1.231-1.172,0.295-2.479,0.362-1.861-0.154-0.07-0.634-0.85-0.931-1.549-1.551-0.361-0.854-0.93-2.378-0.93-2.378l-1.24-1.884,0.156-0.389,1.473,2.17,1.475,1.782c0.541,1.783,1.006,1.939,1.006,1.939,0.816-0.289,2.752-1.085,2.752-1.085l1.899-1.823s-0.195-0.581-0.967-1.316l-0.584-0.349c-0.126,0.357-0.802,0.492-0.802,0.492l-1.641-1.963,0.61-0.123,0.471,0.896,1.128,0.39s0.313-0.229,0.893,0.371c0.473-0.04,2.318,0.089,2.749,0.636,0.085,0.109,2.286,5.606,2.72,5.614,0.191,0.001,0.329,0.077,0.268-0.256-0.078-0.157,0-3.609,0.115-4.349,0.295-0.627,0.344-0.002,1.039,1.188-0.01-0.04-0.02-0.07-0.02-0.09zm-19.37-13.33c0.153-0.459,1.046-0.615,1.046-0.615s-0.256,0.472-0.196,0.716c0.06,0.246-0.407,0.401-0.46,0.982-0.051,0.577-1.117,0.239-1.205,0.036-0.09-0.21,0.65-0.67,0.81-1.13zm3.82,7.8c-0.661,0-2.644,0.196-3.189-0.193-0.547-0.389-0.97,0.039-1.363,0.429-0.258,0.253-1.193-0.259-1.467-0.649-0.272-0.39-1.188-0.361-1.188-0.361l0.208-1.11-2.637-0.128-1.499,0.439-1.411,0.041,0.79-0.376,0.984-0.232s1.431-1.175,1.858-1.525c0.364-0.296,1.81-0.129,1.81-0.129l1.589,1.146s-0.353,0.898-0.508,1.09c0.583-0.039,1.269-1.099,1.269-1.099-1.239-1.138-1.189-1.524-1.189-1.524l1.633,1.146,0.015,0.01s0.662,1.558,0.937,1.558c0.271,0,0.619-1.073,0.619-1.073l0.466-0.117c0.207,0.492,0.594,1.602,1.059,1.343,0.268-0.147,0.709-0.013,1.213,0.18,0.51,0.195,0.854-0.104,1.268,0.258-0.04,1.6-0.99,0.95-1.26,0.87zm1.04-2.68c-0.682-0.259-2.984,0.586-2.469-0.796,0.274-0.746,0.98-0.902,1.221-0.405,0.063,0.203,0.83,0.519,0.825,0.089-0.006-0.43,0.771-0.659,0.883-0.338-0.41,0.31,1.63,1.86-0.45,1.46zm4.34,1.31c-0.377-0.304,0.169-0.564-0.387-1.04-0.799-0.684-1.421-0.979-0.334-1.532,1.34-0.168,0.217,0.428,0.439,0.785,0.119,0.19,0.797,0.828,1.326,1.61,0.43,0.64-0.68,0.47-1.05,0.17z" fill="url(#SVGID_6)"/>
-
<path d="M40.35,35.86l-1.293,1.291-0.814,0.311c-0.018,0.133-0.063,0.709-0.192,1.008-0.259,0.18-0.569,0.775-0.569,0.775s-0.159,1.149,0.699,0.953c0.85-0.19,3.48-3.71,2.16-4.33z" fill="url(#SVGID_6)"/>
-
<rect fill="none" height="60" width="60"/>
-
<rect fill-opacity="0.4" height="25" stroke-opacity="0.4" transform="matrix(0.8133 -0.5819 0.5819 0.8133 -15.5607 18.7982)" width="3.674" x="19.67" y="21.14"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10" x1="22.2" x2="20.47" y1="32.54" y2="33.77">
-
<stop offset="0" stop-color="#999999"/>
-
<stop offset="0.27" stop-color="#FFFFFF"/>
-
<stop offset="0.67" stop-color="#999999"/>
-
<stop offset="0.82" stop-color="#666666"/>
-
<stop offset="1" stop-color="#B3B3B3"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_10)" points="27.43,43.41,13.6,24.08,15.59,22.65,29.42,41.98"/>
-
<rect fill-opacity="0.4" height="3.673" stroke-opacity="0.4" transform="matrix(0.5821 -0.8131 0.8131 0.5821 -11.1119 45.664)" width="25" x="26.37" y="31.81"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11" x1="38.02" x2="39.86" y1="32.42" y2="33.75">
-
<stop offset="0" stop-color="#999999"/>
-
<stop offset="0.27" stop-color="#FFFFFF"/>
-
<stop offset="0.67" stop-color="#999999"/>
-
<stop offset="0.82" stop-color="#666666"/>
-
<stop offset="1" stop-color="#B3B3B3"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_11)" points="32.94,43.41,46.78,24.08,44.79,22.65,30.95,41.98"/>
-
<rect fill-opacity="0.4" height="3.673" stroke-opacity="0.4" width="33.13" x="12.89" y="17.7"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12" x1="29.46" x2="29.46" y1="17.65" y2="20.41">
-
<stop offset="0" stop-color="#999999"/>
-
<stop offset="0.27" stop-color="#FFFFFF"/>
-
<stop offset="0.67" stop-color="#999999"/>
-
<stop offset="0.82" stop-color="#666666"/>
-
<stop offset="1" stop-color="#B3B3B3"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_12)" points="45.41,20.15,13.5,20.15,13.5,17.7,45.41,17.7"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13" x1="30.11" x2="30.11" y1="29.69" y2="50.46">
-
<stop offset="0" stop-color="#A6A8AB"/>
-
<stop offset="1" stop-color="#231F20"/>
-
</linearGradient>
-
<path d="M35.36,45.61l-0.757-0.28-0.134-0.055-0.16-0.062-0.428-0.172c-0.199-0.361-0.211-1.13-0.064-1.471l-0.262-0.146,0.283,0.101c0.043-0.067,0.084-0.136,0.126-0.208l0.043-0.069c0.319-0.522,0.617-1.071,0.885-1.634,0.669-0.076,1.322-0.654,1.659-1.489,0.387-0.95,0.262-1.936-0.283-2.444,0.493-2.213,0.152-4.221-0.959-5.652-1.123-1.449-2.96-2.258-5.325-2.335-2.061,0-3.124,0.913-3.877,1.834-0.559,0.129-1.289,0.453-1.808,1.257-0.7,1.084-0.787,2.715-0.259,4.851-0.583,0.487-0.74,1.474-0.365,2.456,0.353,0.922,1.079,1.539,1.808,1.539h0.013c0.114,0.242,0.234,0.479,0.357,0.711h-0.039l0.277,0.453s0.419,0.688,0.447,0.73c0.111,0.174,0.204,0.962-0.004,1.44l-0.567,0.249c-0.331,0.129-0.744,0.285-1.191,0.455-1.251,0.477-2.672,1.017-3.214,1.305-0.548,0.291-1.022,0.639-1.431,1.033,2.953,1.533,6.304,2.406,9.861,2.406,3.646,0,7.078-0.914,10.08-2.52-0.555-0.522-1.066-0.816-1.269-0.923-0.53-0.28-2.15-0.88-3.46-1.37z" fill="url(#SVGID_13)" fill-opacity="0.2" stroke-opacity="0.2"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14" x1="30.11" x2="30.11" y1="29.99" y2="50.46">
-
<stop offset="0" stop-color="#A9AAAD"/>
-
<stop offset="1" stop-color="#000000"/>
-
</linearGradient>
-
<path d="M35.26,45.89l-0.766-0.284-0.129-0.052-0.164-0.063-0.518-0.207c-0.324-0.445-0.318-1.407-0.137-1.838l0.012-0.021c0.01-0.023,0.019-0.043,0.031-0.063,0.041-0.066,0.084-0.134,0.121-0.201l0.045-0.069c0.344-0.563,0.662-1.157,0.947-1.769,0.016,0.001,0.029,0.001,0.045,0.001,0.599,0,1.213-0.526,1.531-1.312,0.37-0.914,0.217-1.848-0.339-2.216,0.026-0.114,0.039-0.177,0.039-0.177,0.474-2.127,0.153-4.049-0.903-5.41-1.066-1.377-2.824-2.144-5.089-2.219-1.961,0-2.952,0.856-3.712,1.805-0.537,0.104-1.234,0.394-1.722,1.15-0.675,1.044-0.731,2.663-0.171,4.814-0.597,0.337-0.785,1.283-0.425,2.224,0.309,0.804,0.923,1.347,1.529,1.347,0.064,0,0.13-0.007,0.191-0.02,0.213,0.455,0.441,0.9,0.684,1.326h-0.01l0.362,0.592s0.055,0.092,0.082,0.134c0.185,0.288,0.271,1.284-0.036,1.83l-0.676,0.296c-0.334,0.129-0.747,0.287-1.187,0.454-1.246,0.474-2.66,1.012-3.187,1.292-0.489,0.259-0.921,0.564-1.293,0.912,2.885,1.445,6.138,2.264,9.584,2.264,3.533,0,6.863-0.86,9.801-2.376-0.495-0.449-0.942-0.707-1.126-0.802-0.48-0.25-2.09-0.85-3.39-1.33z" fill="url(#SVGID_14)" fill-opacity="0.4" stroke-opacity="0.4"/>
-
<radialGradient cx="30.36" cy="49.25" gradientUnits="userSpaceOnUse" id="SVGID_15" r="8.41">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.2" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</radialGradient>
-
<path d="M33.78,45.44c-0.79-0.343-0.766-2.028-0.439-2.538,0.057-0.089,0.109-0.178,0.164-0.268h-6.62c0.054,0.09,0.106,0.179,0.163,0.268,0.327,0.51,0.352,2.195-0.439,2.538-0.792,0.345,3.68,3.339,3.68,3.339s4.29-2.99,3.5-3.34z" fill="url(#SVGID_15)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16" x1="30.19" x2="30.19" y1="45.13" y2="52.06">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="0.39" stop-color="#2D9BD2"/>
-
<stop offset="0.89" stop-color="#1347BA"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
-
<path d="M38.54,47.2c-0.832-0.434-4.959-1.878-5.036-1.968l-3.151,2.619-3.386-2.721c-0.094,0.139-4.171,1.568-5.116,2.069-1.08,0.573-2.844,1.892-2.844,4.86h22.38c0-2.97-2.01-4.43-2.84-4.86z" fill="url(#SVGID_16)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17" x1="30.22" x2="30.22" y1="44.68" y2="48.73">
-
<stop offset="0" stop-color="#FAFAFA"/>
-
<stop offset="0.78" stop-color="#CCCCCC"/>
-
<stop offset="1" stop-color="#D1D1D1"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_17)" points="26.19,45.47,30.35,48.78,34.25,45.54,33.5,45.23,30.35,47.85,26.96,45.13"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18" x1="19.6" x2="26.39" y1="48.84" y2="48.84">
-
<stop offset="0" stop-color="#85EFFF"/>
-
<stop offset="1" stop-color="#3BA1D9"/>
-
</linearGradient>
-
<path d="M26.39,45.99s-5.931,1.549-5.931,5.703h-0.854c-0.01-2.55,1.99-4.54,6.78-5.7z" fill="url(#SVGID_18)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19" x1="33.92" x2="40.7" y1="48.75" y2="48.75">
-
<stop offset="0" stop-color="#85EFFF"/>
-
<stop offset="1" stop-color="#3BA1D9"/>
-
</linearGradient>
-
<path d="M33.92,45.9s5.932,1.549,5.932,5.704h0.854c0-2.56-1.99-4.54-6.78-5.7z" fill="url(#SVGID_19)"/>
-
<polygon fill="#020202" fill-opacity="0.3" points="30.35,48.78,26.19,45.47,25.95,45.57,30.35,49.08,34.5,45.63,34.25,45.53" stroke-opacity="0.3"/>
-
<radialGradient cx="30.12" cy="33.65" gradientUnits="userSpaceOnUse" id="SVGID_20" r="11.29">
-
<stop offset="0" stop-color="#FFE2D9"/>
-
<stop offset="0.51" stop-color="#FFC6B3"/>
-
<stop offset="0.76" stop-color="#FFA98E"/>
-
<stop offset="1" stop-color="#E88160"/>
-
</radialGradient>
-
<path d="M35.68,37.69c-0.028-0.014-0.062-0.016-0.089-0.024-0.006-0.002-0.011-0.004-0.016-0.004-0.045-0.013-0.088-0.021-0.133-0.025-5.527-0.961-8.062-4.021-8.253-3.211-0.152,0.645-1.702,2.039-2.513,2.736,0.006,0.031,0.01,0.059,0.017,0.09,0,0,0.03,0.143,0.089,0.385-0.063,0.008-0.126,0.021-0.188,0.047-0.517,0.217-0.679,1.063-0.362,1.891,0.316,0.827,0.991,1.322,1.508,1.104,0.032-0.014,0.059-0.036,0.089-0.056,0.3,0.676,0.668,1.397,1.119,2.123,0.755,0.898,1.914,1.951,3.192,1.951,1.547,0,2.493-0.846,3.144-1.698,0.016-0.036,0.033-0.069,0.053-0.099,0.482-0.753,0.873-1.51,1.188-2.213,0.505,0.175,1.153-0.294,1.476-1.089,0.33-0.81,0.18-1.67-0.33-1.9z" fill="url(#SVGID_20)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21" x1="28.2" x2="32.97" y1="45.22" y2="40.48">
-
<stop offset="0" stop-color="#FFC6B3"/>
-
<stop offset="1" stop-color="#FFA98E"/>
-
</linearGradient>
-
<path d="M29.92,44.27c-0.942,0-1.892-0.439-2.589-1.1,0.74,0.776,1.733,1.531,2.817,1.531,1.546,0,2.493-0.846,3.144-1.698,0.015-0.036,0.031-0.069,0.053-0.099,0.48-0.753,0.873-1.51,1.188-2.213-1.76,3.08-3.07,3.58-4.61,3.58z" fill="url(#SVGID_21)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22" x1="30.1" x2="30.1" y1="30.09" y2="37.12">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
-
<path d="M29.99,29.99c-1.917,0-2.837,0.872-3.549,1.782-1.158,0.178-2.991,1.238-1.696,5.884,0.812-0.695,2.295-2.581,2.447-3.226,0.192-0.819,2.771,2.307,8.402,3.238,0.064-0.26,0.095-0.413,0.095-0.413,0.89-3.96-1.03-7.1-5.69-7.26z" fill="url(#SVGID_22)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23" x1="32.5" x2="26.13" y1="36.82" y2="33.04">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.36" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
-
<path d="M27.2,34.05s2.756,3.62,8.355,3.614c-0.01,0-2.64-0.41-8.36-3.61z" fill="url(#SVGID_23)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24" x1="25.56" x2="25.61" y1="32.3" y2="36.35">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
-
<path d="M26.53,32.04s-2.699,0.161-1.697,4.734c0.01,0.01-0.32-3.13,1.7-4.73z" fill="url(#SVGID_24)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25" x1="30.99" x2="30.79" y1="30.7" y2="32.53">
-
<stop offset="0" stop-color="#A87C4F"/>
-
<stop offset="1" stop-color="#632F00"/>
-
</linearGradient>
-
<path d="M31.3,32.67c-1.257-0.179-3.381-1.292-4.215-0.895,0,0,2.726-3.11,7.539,0.432,0,0-1.15,0.77-3.32,0.46z" fill="url(#SVGID_25)"/>
-
<rect fill="none" height="30" width="30" x="15.19" y="26.32"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26" x1="15.32" x2="15.32" y1="26.12" y2="11.07">
-
<stop offset="0" stop-color="#A6A8AB"/>
-
<stop offset="1" stop-color="#231F20"/>
-
</linearGradient>
-
<path d="M8.773,26.07h13.09v-0.487c0-2.907-2.152-4.174-2.584-4.4-0.426-0.222-1.75-0.714-2.816-1.11l-0.617-0.229-0.11-0.044-0.131-0.05-0.35-0.14c-0.162-0.295-0.171-0.922-0.052-1.201l-0.213-0.119,0.23,0.082c0.035-0.056,0.067-0.111,0.103-0.169l0.036-0.057c0.261-0.427,0.503-0.875,0.723-1.334,0.545-0.062,1.08-0.534,1.355-1.215,0.315-0.775,0.213-1.58-0.231-1.996,0.149-0.672,0.204-1.319,0.168-1.928-4.6,3.36-7.803,8.5-8.607,14.4z" fill="url(#SVGID_26)" fill-opacity="0.2" stroke-opacity="0.2"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27" x1="15.21" x2="15.21" y1="11.48" y2="26.12">
-
<stop offset="0" stop-color="#A9AAAD"/>
-
<stop offset="1" stop-color="#000000"/>
-
</linearGradient>
-
<path d="M8.804,25.83h12.82v-0.243c0-2.767-2.043-3.971-2.453-4.184-0.413-0.214-1.73-0.704-2.788-1.097l-0.625-0.232-0.104-0.042-0.135-0.051-0.422-0.169c-0.264-0.363-0.259-1.148-0.111-1.5l0.01-0.018c0.007-0.019,0.016-0.036,0.025-0.05,0.034-0.055,0.068-0.109,0.099-0.165l0.036-0.057c0.281-0.459,0.542-0.944,0.773-1.443h0.038c0.488,0,0.99-0.43,1.25-1.071,0.302-0.746,0.177-1.508-0.277-1.809,0.021-0.092,0.033-0.144,0.033-0.144,0.132-0.592,0.182-1.162,0.166-1.704-4.41,3.3-7.494,8.27-8.336,13.97z" fill="url(#SVGID_27)" fill-opacity="0.4" stroke-opacity="0.4"/>
-
<radialGradient cx="12.38" cy="23.06" gradientUnits="userSpaceOnUse" id="SVGID_28" r="6.87">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.2" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</radialGradient>
-
<path d="M15.17,19.94c-0.646-0.281-0.625-1.656-0.359-2.073,0.047-0.072,0.089-0.145,0.134-0.218h-5.398c0.043,0.073,0.087,0.146,0.133,0.218,0.266,0.417,0.287,1.792-0.359,2.073s3.003,2.725,3.003,2.725,3.5-2.44,2.85-2.72z" fill="url(#SVGID_28)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29" x1="12.24" x2="12.24" y1="19.68" y2="25.34">
-
<stop offset="0" stop-color="#FF7236"/>
-
<stop offset="1" stop-color="#BA1212"/>
-
</linearGradient>
-
<path d="M19.06,21.37c-0.68-0.354-4.047-1.533-4.111-1.606l-2.573,2.138-2.764-2.221c-0.077,0.113-3.406,1.28-4.176,1.689-0.881,0.469-2.321,1.543-2.321,3.967h18.27c0-2.42-1.65-3.61-2.32-3.97z" fill="url(#SVGID_29)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30" x1="12.27" x2="12.27" y1="19.31" y2="22.62">
-
<stop offset="0" stop-color="#BC1C24"/>
-
<stop offset="1" stop-color="#6B1C24"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_30)" points="8.978,19.96,12.37,22.66,15.56,20.02,14.94,19.77,12.37,21.9,9.608,19.68"/>
-
<path d="M9.138,20.39s-4.842,1.264-4.842,4.655h-0.697c0-2.08,1.628-3.7,5.539-4.65z" fill="#FF7B56"/>
-
<path d="M15.29,20.31s4.842,1.265,4.842,4.657h0.697c0-2.09-1.63-3.71-5.54-4.66z" fill="#FF7B56"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31" x1="12.27" x2="12.27" y1="22.91" y2="19.78">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_31)" points="12.37,22.66,8.978,19.96,8.78,20.04,12.37,22.91,15.76,20.09,15.56,20.01"/>
-
<radialGradient cx="12.19" cy="10.32" gradientUnits="userSpaceOnUse" id="SVGID_32" r="9.22">
-
<stop offset="0" stop-color="#FFE2D9"/>
-
<stop offset="0.51" stop-color="#FFC6B3"/>
-
<stop offset="0.76" stop-color="#FFA98E"/>
-
<stop offset="1" stop-color="#E88160"/>
-
</radialGradient>
-
<path d="M16.72,13.61c-0.023-0.012-0.049-0.013-0.072-0.021-0.005-0.001-0.009-0.002-0.013-0.003-0.036-0.01-0.071-0.018-0.108-0.02-4.511-0.784-6.582-3.283-6.737-2.621-0.124,0.526-1.39,1.665-2.051,2.232,0.005,0.026,0.008,0.048,0.013,0.074,0,0,0.024,0.116,0.074,0.315-0.052,0.006-0.104,0.016-0.154,0.038-0.422,0.178-0.553,0.869-0.295,1.543,0.258,0.675,0.809,1.08,1.231,0.902,0.026-0.012,0.048-0.03,0.072-0.045,0.244,0.551,0.546,1.141,0.914,1.733,0.617,0.733,1.563,1.593,2.605,1.593,1.263,0,2.035-0.69,2.567-1.387,0.012-0.029,0.026-0.056,0.042-0.08,0.394-0.615,0.713-1.232,0.971-1.807,0.413,0.143,0.941-0.241,1.204-0.889,0.28-0.65,0.16-1.35-0.26-1.54z" fill="url(#SVGID_32)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33" x1="10.61" x2="14.51" y1="19.76" y2="15.89">
-
<stop offset="0" stop-color="#FFC6B3"/>
-
<stop offset="1" stop-color="#FFA98E"/>
-
</linearGradient>
-
<path d="M12.02,18.98c-0.769,0-1.543-0.358-2.114-0.898,0.604,0.634,1.416,1.251,2.299,1.251,1.263,0,2.035-0.69,2.567-1.387,0.012-0.029,0.026-0.057,0.042-0.081,0.394-0.615,0.713-1.232,0.971-1.806-1.43,2.52-2.5,2.93-3.76,2.93z" fill="url(#SVGID_33)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34" x1="12.17" x2="12.17" y1="7.41" y2="13.15">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
-
<path d="M12.08,7.325c-1.564,0-2.316,0.71-2.897,1.455-0.944,0.145-2.44,1.011-1.383,4.803,0.663-0.568,1.874-2.107,1.998-2.633,0.158-0.669,2.262,1.883,6.859,2.644,0.053-0.213,0.078-0.338,0.078-0.338,0.71-3.23-0.86-5.798-4.66-5.925z" fill="url(#SVGID_34)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35" x1="14.13" x2="8.93" y1="12.9" y2="9.81">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.36" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
-
<path d="M9.799,10.64s2.25,2.954,6.821,2.949c0,0-2.15-0.34-6.821-2.95z" fill="url(#SVGID_35)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_36" x1="8.46" x2="8.51" y1="9.21" y2="12.51">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
-
<path d="M9.258,8.999s-2.203,0.132-1.386,3.865c0,0-0.268-2.55,1.386-3.861z" fill="url(#SVGID_36)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_37" x1="12.9" x2="12.73" y1="7.9" y2="9.4">
-
<stop offset="0" stop-color="#A87C4F"/>
-
<stop offset="1" stop-color="#632F00"/>
-
</linearGradient>
-
<path d="M13.14,9.516c-1.025-0.146-2.76-1.055-3.44-0.73,0,0,2.225-2.539,6.154,0.352,0.01,0-0.93,0.632-2.71,0.378z" fill="url(#SVGID_37)"/>
-
<rect fill="none" height="24.49" width="24.49" y="4.333"/>
-
<path d="M51.07,26.07h-13.09v-0.487c0-2.907,2.152-4.174,2.584-4.4,0.425-0.222,1.75-0.714,2.815-1.11l0.617-0.229,0.109-0.044,0.132-0.05,0.35-0.14c0.162-0.295,0.171-0.922,0.051-1.201l0.214-0.119-0.23,0.082c-0.034-0.056-0.067-0.111-0.103-0.169l-0.035-0.057c-0.262-0.427-0.504-0.875-0.724-1.334-0.545-0.062-1.079-0.534-1.354-1.215-0.315-0.775-0.213-1.58,0.23-1.996-0.148-0.672-0.203-1.319-0.167-1.928,4.59,3.36,7.8,8.5,8.6,14.4z" fill="url(#SVGID_26)" fill-opacity="0.2" stroke-opacity="0.2"/>
-
<path d="M51.04,25.83h-12.82v-0.243c0-2.767,2.042-3.971,2.453-4.184,0.413-0.214,1.729-0.704,2.788-1.097l0.625-0.232,0.104-0.042,0.136-0.051,0.421-0.169c0.266-0.363,0.26-1.148,0.112-1.5l-0.01-0.018c-0.007-0.019-0.016-0.036-0.025-0.05-0.034-0.055-0.067-0.109-0.099-0.165l-0.037-0.057c-0.28-0.459-0.541-0.944-0.773-1.443h-0.037c-0.488,0-0.99-0.43-1.25-1.071-0.302-0.746-0.176-1.508,0.277-1.809-0.021-0.092-0.033-0.144-0.033-0.144-0.132-0.592-0.182-1.162-0.166-1.704,4.39,3.3,7.48,8.27,8.32,13.97z" fill="url(#SVGID_27)" fill-opacity="0.4" stroke-opacity="0.4"/>
-
<radialGradient cx="47.89" cy="23.06" gradientUnits="userSpaceOnUse" id="SVGID_40" r="6.87">
-
<stop offset="0" stop-color="#FFA98E"/>
-
<stop offset="0.2" stop-color="#FFA98E"/>
-
<stop offset="0.96" stop-color="#D45D36"/>
-
<stop offset="1" stop-color="#D45D36"/>
-
</radialGradient>
-
<path d="M50.68,19.94c-0.646-0.281-0.624-1.656-0.358-2.073,0.046-0.072,0.089-0.145,0.133-0.218h-5.4c0.044,0.073,0.087,0.146,0.133,0.218,0.267,0.417,0.287,1.792-0.358,2.073-0.646,0.281,3.003,2.725,3.003,2.725s3.51-2.44,2.86-2.72z" fill="url(#SVGID_40)"/>
-
<path d="M54.56,21.37c-0.68-0.354-4.048-1.533-4.11-1.606l-2.574,2.138-2.764-2.221c-0.076,0.113-3.405,1.28-4.176,1.689-0.881,0.469-2.32,1.543-2.32,3.967h18.27c-0.01-2.42-1.65-3.61-2.33-3.97z" fill="url(#SVGID_29)"/>
-
<polygon fill="url(#SVGID_30)" points="44.48,19.96,47.88,22.66,51.07,20.02,50.45,19.77,47.88,21.9,45.12,19.68"/>
-
<path d="M44.65,20.39s-4.842,1.264-4.842,4.655h-0.697c0-2.08,1.62-3.7,5.54-4.65z" fill="#FF7B56"/>
-
<path d="M50.8,20.31s4.842,1.265,4.842,4.657h0.697c-0.01-2.09-1.64-3.71-5.54-4.66z" fill="#FF7B56"/>
-
<polygon fill="url(#SVGID_31)" points="47.88,22.66,44.48,19.96,44.29,20.04,47.88,22.91,51.27,20.09,51.07,20.01"/>
-
<radialGradient cx="47.7" cy="10.32" gradientUnits="userSpaceOnUse" id="SVGID_44" r="9.22">
-
<stop offset="0" stop-color="#FFE2D9"/>
-
<stop offset="0.51" stop-color="#FFC6B3"/>
-
<stop offset="0.76" stop-color="#FFA98E"/>
-
<stop offset="1" stop-color="#E88160"/>
-
</radialGradient>
-
<path d="M52.23,13.61c-0.022-0.012-0.049-0.013-0.071-0.021-0.005-0.001-0.01-0.002-0.014-0.003-0.035-0.01-0.07-0.018-0.108-0.02-4.511-0.784-6.581-3.283-6.736-2.621-0.124,0.526-1.39,1.665-2.052,2.232,0.006,0.026,0.009,0.048,0.014,0.074,0,0,0.023,0.116,0.073,0.315-0.052,0.006-0.104,0.016-0.153,0.038-0.422,0.178-0.554,0.869-0.295,1.543,0.258,0.675,0.809,1.08,1.23,0.902,0.025-0.012,0.048-0.03,0.072-0.045,0.244,0.551,0.546,1.141,0.914,1.733,0.617,0.733,1.563,1.593,2.605,1.593,1.263,0,2.035-0.69,2.566-1.387,0.012-0.029,0.026-0.056,0.042-0.08,0.394-0.615,0.712-1.232,0.971-1.807,0.413,0.143,0.94-0.241,1.204-0.889,0.29-0.65,0.17-1.35-0.25-1.54z" fill="url(#SVGID_44)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_45" x1="46.12" x2="50.02" y1="19.76" y2="15.89">
-
<stop offset="0" stop-color="#FFC6B3"/>
-
<stop offset="1" stop-color="#FFA98E"/>
-
</linearGradient>
-
<path d="M47.52,18.98c-0.769,0-1.543-0.358-2.113-0.898,0.604,0.634,1.416,1.251,2.299,1.251,1.264,0,2.035-0.69,2.567-1.387,0.013-0.029,0.026-0.057,0.042-0.081,0.393-0.615,0.712-1.232,0.971-1.806-1.43,2.52-2.5,2.93-3.77,2.93z" fill="url(#SVGID_45)"/>
-
<path d="M47.58,7.325c-1.563,0-2.315,0.71-2.896,1.455-0.944,0.145-2.441,1.011-1.383,4.803,0.662-0.568,1.873-2.107,1.998-2.633,0.156-0.669,2.261,1.883,6.857,2.644,0.054-0.213,0.078-0.338,0.078-0.338,0.72-3.23-0.85-5.798-4.66-5.925z" fill="url(#SVGID_34)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_47" x1="49.64" x2="44.44" y1="12.9" y2="9.81">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.36" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
-
<path d="M45.31,10.64s2.25,2.954,6.822,2.949c0,0-2.15-0.34-6.82-2.95z" fill="url(#SVGID_47)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_48" x1="43.97" x2="44.01" y1="9.21" y2="12.51">
-
<stop offset="0" stop-color="#8A5D3B"/>
-
<stop offset="0.38" stop-color="#632F00"/>
-
<stop offset="1" stop-color="#361700"/>
-
</linearGradient>
-
<path d="M44.77,8.999s-2.203,0.132-1.386,3.865c0,0-0.27-2.55,1.39-3.861z" fill="url(#SVGID_48)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_49" x1="48.4" x2="48.24" y1="7.9" y2="9.4">
-
<stop offset="0" stop-color="#A87C4F"/>
-
<stop offset="1" stop-color="#632F00"/>
-
</linearGradient>
-
<path d="M48.65,9.516c-1.025-0.146-2.761-1.055-3.439-0.73,0,0,2.225-2.539,6.153,0.352,0,0-0.93,0.632-2.71,0.378z" fill="url(#SVGID_49)"/>
-
<rect fill="none" height="24.49" width="24.49" x="35.51" y="4.333"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_speaker.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_speaker.svg Thu May 27 13:10:59 2010 +0300
@@ -1,99 +1,97 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.999" x2="29.999" y1="2" y2="57.9149">
- <stop offset="0" style="stop-color:#F0AB62"/>
- <stop offset="1" style="stop-color:#5C2B0F"/>
+<stop offset="0" style="stop-color:#F0AB62"/>
+<stop offset="1" style="stop-color:#5C2B0F"/>
</linearGradient>
<path d="M52.459,55.62c0,1.314-1.065,2.38-2.38,2.38H9.92c-1.314,0-2.38-1.065-2.38-2.38V4.38 C7.54,3.065,8.605,2,9.92,2h40.159c1.314,0,2.38,1.065,2.38,2.38V55.62z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.1904" y2="56.7281">
- <stop offset="0" style="stop-color:#F0CEAA"/>
- <stop offset="0.6364" style="stop-color:#AF733E"/>
- <stop offset="1" style="stop-color:#C18C5B"/>
+<stop offset="0" style="stop-color:#F0CEAA"/>
+<stop offset="0.6364" style="stop-color:#AF733E"/>
+<stop offset="1" style="stop-color:#C18C5B"/>
</linearGradient>
<path d="M9.92,56.81c-0.656,0-1.189-0.533-1.189-1.189V4.38c0-0.656,0.533-1.189,1.189-1.189h40.159 c0.657,0,1.19,0.533,1.19,1.189v51.24c0,0.656-0.533,1.189-1.19,1.189H9.92z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.999" x2="29.999" y1="4.3799" y2="55.5422">
- <stop offset="0" style="stop-color:#D49757"/>
- <stop offset="0.7515" style="stop-color:#8A4117"/>
- <stop offset="1" style="stop-color:#B7763E"/>
+<stop offset="0" style="stop-color:#D49757"/>
+<stop offset="0.7515" style="stop-color:#8A4117"/>
+<stop offset="1" style="stop-color:#B7763E"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="51.24" width="40.159" x="9.92" y="4.38"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="41.4912" y2="7.5526">
- <stop offset="0" style="stop-color:#D49757"/>
- <stop offset="1" style="stop-color:#702200"/>
+<stop offset="0" style="stop-color:#D49757"/>
+<stop offset="1" style="stop-color:#702200"/>
</linearGradient>
<circle cx="30" cy="24.702" fill="url(#SVGID_4_)" r="17.02"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="8.8267" y2="40.4868">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.4" style="stop-color:#D3D6D7"/>
- <stop offset="0.7939" style="stop-color:#959EA2"/>
- <stop offset="1" style="stop-color:#C9CDCF"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.4" style="stop-color:#D3D6D7"/>
+<stop offset="0.7939" style="stop-color:#959EA2"/>
+<stop offset="1" style="stop-color:#C9CDCF"/>
</linearGradient>
<path d="M29.998,40.532c-8.728,0-15.828-7.101-15.828-15.83c0-8.729,7.101-15.83,15.828-15.83 c8.729,0,15.832,7.102,15.832,15.83C45.83,33.432,38.728,40.532,29.998,40.532L29.998,40.532z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="29.9971" x2="29.9971" y1="10.4238" y2="38.8273">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.297" style="stop-color:#E4E5E6"/>
- <stop offset="0.6424" style="stop-color:#949DA1"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.297" style="stop-color:#E4E5E6"/>
+<stop offset="0.6424" style="stop-color:#949DA1"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path d="M29.998,38.983c-7.873,0-14.279-6.407-14.279-14.281s6.406-14.278,14.279-14.278 s14.278,6.404,14.278,14.278S37.871,38.983,29.998,38.983L29.998,38.983z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="29.998" x2="29.998" y1="34.6191" y2="14.6512">
- <stop offset="0" style="stop-color:#CBCBCB"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<circle cx="29.998" cy="24.702" fill="url(#SVGID_7_)" r="10.195"/>
-<path d="M38.205,30.732l-3.368-2.985h-9.063l-3.861,3.148c1.865,2.429,4.787,4.002,8.086,4.002 C33.369,34.897,36.35,33.255,38.205,30.732z" fill="#FFFFFF" opacity="0.3"/>
-<circle cx="29.998" cy="26.336" opacity="0.15" r="6.607"/>
+<path d="M38.205,30.732l-3.368-2.985h-9.063l-3.861,3.148c1.865,2.429,4.787,4.002,8.086,4.002 C33.369,34.897,36.35,33.255,38.205,30.732z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<circle cx="29.998" cy="26.336" fill-opacity="0.15" r="6.607" stroke-opacity="0.15"/>
<radialGradient cx="313.3594" cy="-573.2905" gradientTransform="matrix(0.5638 0 0 0.5638 -146.6494 346.192)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="13.1949">
- <stop offset="0" style="stop-color:#737373"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#737373"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
<circle cx="29.998" cy="24.702" fill="url(#SVGID_8_)" r="6.607"/>
-<path d="M29.998,30.444c-3.166,0-5.742-2.575-5.742-5.742c0-3.165,2.576-5.741,5.742-5.741 s5.74,2.576,5.74,5.741C35.738,27.869,33.164,30.444,29.998,30.444L29.998,30.444z M29.998,20.059c-2.563,0-4.645,2.084-4.645,4.644 c0,2.562,2.082,4.644,4.645,4.644c2.561,0,4.643-2.082,4.643-4.644C34.641,22.143,32.559,20.059,29.998,20.059L29.998,20.059z" fill="#EBEBEB" opacity="0.2"/>
+<path d="M29.998,30.444c-3.166,0-5.742-2.575-5.742-5.742c0-3.165,2.576-5.741,5.742-5.741 s5.74,2.576,5.74,5.741C35.738,27.869,33.164,30.444,29.998,30.444L29.998,30.444z M29.998,20.059c-2.563,0-4.645,2.084-4.645,4.644 c0,2.562,2.082,4.644,4.645,4.644c2.561,0,4.643-2.082,4.643-4.644C34.641,22.143,32.559,20.059,29.998,20.059L29.998,20.059z" fill="#EBEBEB" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="45.7656" x2="45.7656" y1="54.8813" y2="50.5181">
- <stop offset="0" style="stop-color:#D49757"/>
- <stop offset="1" style="stop-color:#702200"/>
+<stop offset="0" style="stop-color:#D49757"/>
+<stop offset="1" style="stop-color:#702200"/>
</linearGradient>
<circle cx="45.766" cy="52.715" fill="url(#SVGID_9_)" r="2.38"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="45.7656" x2="45.7656" y1="53.7988" y2="51.6172">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M45.766,53.905c-0.656,0-1.189-0.533-1.189-1.19c0-0.656,0.533-1.189,1.189-1.189 s1.189,0.533,1.189,1.189C46.955,53.372,46.422,53.905,45.766,53.905L45.766,53.905z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="13.7373" x2="13.7373" y1="54.8813" y2="50.5181">
- <stop offset="0" style="stop-color:#D49757"/>
- <stop offset="1" style="stop-color:#702200"/>
+<stop offset="0" style="stop-color:#D49757"/>
+<stop offset="1" style="stop-color:#702200"/>
</linearGradient>
<circle cx="13.737" cy="52.715" fill="url(#SVGID_11_)" r="2.38"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="13.7373" x2="13.7373" y1="53.7988" y2="51.6172">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M13.737,53.905c-0.657,0-1.19-0.533-1.19-1.19c0-0.656,0.533-1.189,1.19-1.189 c0.656,0,1.189,0.533,1.189,1.189C14.927,53.372,14.394,53.905,13.737,53.905L13.737,53.905z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="45.7656" x2="45.7656" y1="9.9624" y2="5.5991">
- <stop offset="0" style="stop-color:#D49757"/>
- <stop offset="1" style="stop-color:#702200"/>
+<stop offset="0" style="stop-color:#D49757"/>
+<stop offset="1" style="stop-color:#702200"/>
</linearGradient>
<circle cx="45.766" cy="7.796" fill="url(#SVGID_13_)" r="2.38"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="45.7656" x2="45.7656" y1="8.8799" y2="6.6982">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M45.766,8.986c-0.656,0-1.189-0.533-1.189-1.19c0-0.656,0.533-1.189,1.189-1.189 s1.189,0.533,1.189,1.189C46.955,8.453,46.422,8.986,45.766,8.986L45.766,8.986z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="13.7373" x2="13.7373" y1="9.9624" y2="5.5991">
- <stop offset="0" style="stop-color:#D49757"/>
- <stop offset="1" style="stop-color:#702200"/>
+<stop offset="0" style="stop-color:#D49757"/>
+<stop offset="1" style="stop-color:#702200"/>
</linearGradient>
<circle cx="13.737" cy="7.796" fill="url(#SVGID_15_)" r="2.38"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="13.7373" x2="13.7373" y1="8.8799" y2="6.6982">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M13.737,8.986c-0.657,0-1.19-0.533-1.19-1.19c0-0.656,0.533-1.189,1.19-1.189 c0.656,0,1.189,0.533,1.189,1.189C14.927,8.453,14.394,8.986,13.737,8.986L13.737,8.986z" fill="url(#SVGID_16_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_stereo.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_stereo.svg Thu May 27 13:10:59 2010 +0300
@@ -1,95 +1,93 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.3877" x2="30.3877" y1="2.6484" y2="33.7566">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.5879" style="stop-color:#B4BABD"/>
- <stop offset="1" style="stop-color:#F2F2F2"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.5879" style="stop-color:#B4BABD"/>
+<stop offset="1" style="stop-color:#F2F2F2"/>
</linearGradient>
<path d="M50.762,34.911c-0.035-1.49-0.029-3.037-0.025-4.611c0.025-8.141,3.977-23.862-19.914-23.862 S9.998,17.496,9.883,31.411c-0.012,1.19-0.021,2.362-0.049,3.5l-4.436-0.1c0.027-1.118,0.035-2.269,0.047-3.438 C5.559,17.572,2.43,2,30.822,2c28.391,0,24.379,19.689,24.352,28.313c-0.004,1.536-0.008,3.044,0.023,4.498L50.762,34.911 L50.762,34.911z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.3916" x2="30.3916" y1="3.1812" y2="33.2296">
- <stop offset="0" style="stop-color:#9DA5A8"/>
- <stop offset="0.3636" style="stop-color:#C9CDCE"/>
- <stop offset="0.7455" style="stop-color:#949DA1"/>
- <stop offset="1" style="stop-color:#D3D6D7"/>
+<stop offset="0" style="stop-color:#9DA5A8"/>
+<stop offset="0.3636" style="stop-color:#C9CDCE"/>
+<stop offset="0.7455" style="stop-color:#949DA1"/>
+<stop offset="1" style="stop-color:#D3D6D7"/>
</linearGradient>
<path d="M51.297,33.784c-0.012-1.138-0.01-2.303-0.006-3.483c0.004-0.937,0.055-1.977,0.109-3.084 c0.26-5.216,0.582-11.705-3.648-16.153c-3.271-3.438-8.967-5.181-16.93-5.181c-8.865,0-14.729,1.577-17.924,4.823 c-3.801,3.862-3.709,9.713-3.604,16.488c0.021,1.38,0.045,2.787,0.033,4.211l-0.035,2.939l-3.33-0.075l0.01-0.553 C5.986,32.95,5.992,32.168,6,31.379c0.01-1.362-0.008-2.726-0.027-4.077c-0.104-7.34-0.201-14.272,4.461-19.001 c3.813-3.866,10.482-5.746,20.389-5.746c8.961,0,15.471,2.06,19.35,6.124c5.16,5.402,4.803,13.116,4.543,18.748 c-0.049,1.051-0.094,2.022-0.096,2.884l-0.002,0.512c-0.002,0.98-0.004,1.949,0.008,2.898l0.008,0.549l-3.328,0.075L51.297,33.784z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="18.6035" x2="18.6035" y1="29.2012" y2="56.9375">
- <stop offset="0" style="stop-color:#7B7B7B"/>
- <stop offset="0.1455" style="stop-color:#565656"/>
- <stop offset="0.3091" style="stop-color:#8C8C8C"/>
- <stop offset="0.6848" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#646464"/>
+<stop offset="0" style="stop-color:#7B7B7B"/>
+<stop offset="0.1455" style="stop-color:#565656"/>
+<stop offset="0.3091" style="stop-color:#8C8C8C"/>
+<stop offset="0.6848" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
<path d="M22.07,53.608c0,1.831-1.496,3.329-3.328,3.329h-3.605V29.201h3.605c1.832,0,3.328,1.497,3.328,3.329 V53.608z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="7.4629" x2="7.4629" y1="33.2002" y2="52.9385">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.1455" style="stop-color:#959EA2"/>
- <stop offset="0.3697" style="stop-color:#F2F2F2"/>
- <stop offset="0.7576" style="stop-color:#949DA1"/>
- <stop offset="1" style="stop-color:#D3D6D7"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.1455" style="stop-color:#959EA2"/>
+<stop offset="0.3697" style="stop-color:#F2F2F2"/>
+<stop offset="0.7576" style="stop-color:#949DA1"/>
+<stop offset="1" style="stop-color:#D3D6D7"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="19.738" width="6.473" x="4.227" y="33.2"/>
-<rect fill="#FFFFFF" height="19.738" opacity="0.35" width="1.109" x="4.227" y="33.2"/>
-<rect height="27.736" opacity="0.5" width="2.219" x="15.137" y="29.201"/>
+<rect fill="#FFFFFF" fill-opacity="0.35" height="19.738" stroke-opacity="0.35" width="1.109" x="4.227" y="33.2"/>
+<rect fill-opacity="0.5" height="27.736" stroke-opacity="0.5" width="2.219" x="15.137" y="29.201"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.0273" x2="14.0273" y1="28.1387" y2="58">
- <stop offset="0" style="stop-color:#7E7E7E"/>
- <stop offset="0.1394" style="stop-color:#000000"/>
- <stop offset="0.2727" style="stop-color:#555555"/>
- <stop offset="0.6909" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#707070"/>
+<stop offset="0" style="stop-color:#7E7E7E"/>
+<stop offset="0.1394" style="stop-color:#000000"/>
+<stop offset="0.2727" style="stop-color:#555555"/>
+<stop offset="0.6909" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#707070"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="12.918,28.139 11.809,42.446 12.918,58 16.246,58 16.246,28.139 "/>
-<rect fill="#FFFFFF" height="29.861" opacity="0.15" width="1.109" x="15.137" y="28.139"/>
-<rect height="19.738" opacity="0.5" width="1.387" x="9.313" y="33.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.15" height="29.861" stroke-opacity="0.15" width="1.109" x="15.137" y="28.139"/>
+<rect fill-opacity="0.5" height="19.738" stroke-opacity="0.5" width="1.387" x="9.313" y="33.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="11.6699" x2="11.6699" y1="28.1387" y2="58">
- <stop offset="0" style="stop-color:#CAD0D4"/>
- <stop offset="0.1273" style="stop-color:#99A1A5"/>
- <stop offset="0.2848" style="stop-color:#F2F2F2"/>
- <stop offset="0.6485" style="stop-color:#949DA1"/>
- <stop offset="1" style="stop-color:#F2F2F2"/>
+<stop offset="0" style="stop-color:#CAD0D4"/>
+<stop offset="0.1273" style="stop-color:#99A1A5"/>
+<stop offset="0.2848" style="stop-color:#F2F2F2"/>
+<stop offset="0.6485" style="stop-color:#949DA1"/>
+<stop offset="1" style="stop-color:#F2F2F2"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="10.422,30.357 10.422,55.781 12.918,58 12.918,28.139 "/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -43.916 0)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-85.3086" x2="-85.3086" y1="29.2012" y2="56.9375">
- <stop offset="0" style="stop-color:#7B7B7B"/>
- <stop offset="0.1455" style="stop-color:#565656"/>
- <stop offset="0.3091" style="stop-color:#8C8C8C"/>
- <stop offset="0.6848" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#646464"/>
+<stop offset="0" style="stop-color:#7B7B7B"/>
+<stop offset="0.1455" style="stop-color:#565656"/>
+<stop offset="0.3091" style="stop-color:#8C8C8C"/>
+<stop offset="0.6848" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
<path d="M37.926,53.608c0,1.831,1.498,3.329,3.328,3.329h3.605V29.201h-3.605 c-1.83,0-3.328,1.497-3.328,3.329V53.608z" fill="url(#SVGID_7_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -43.916 0)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-96.4502" x2="-96.4502" y1="33.2002" y2="52.9385">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.1455" style="stop-color:#959EA2"/>
- <stop offset="0.3697" style="stop-color:#F2F2F2"/>
- <stop offset="0.7576" style="stop-color:#949DA1"/>
- <stop offset="1" style="stop-color:#D3D6D7"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.1455" style="stop-color:#959EA2"/>
+<stop offset="0.3697" style="stop-color:#F2F2F2"/>
+<stop offset="0.7576" style="stop-color:#949DA1"/>
+<stop offset="1" style="stop-color:#D3D6D7"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="19.738" width="6.471" x="49.299" y="33.2"/>
-<rect fill="#FFFFFF" height="19.738" opacity="0.35" width="1.109" x="54.66" y="33.2"/>
-<rect height="27.736" opacity="0.5" width="2.217" x="42.643" y="29.201"/>
+<rect fill="#FFFFFF" fill-opacity="0.35" height="19.738" stroke-opacity="0.35" width="1.109" x="54.66" y="33.2"/>
+<rect fill-opacity="0.5" height="27.736" stroke-opacity="0.5" width="2.217" x="42.643" y="29.201"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -43.916 0)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-89.8867" x2="-89.8867" y1="28.1387" y2="58">
- <stop offset="0" style="stop-color:#7E7E7E"/>
- <stop offset="0.1394" style="stop-color:#000000"/>
- <stop offset="0.2727" style="stop-color:#555555"/>
- <stop offset="0.6909" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#707070"/>
+<stop offset="0" style="stop-color:#7E7E7E"/>
+<stop offset="0.1394" style="stop-color:#000000"/>
+<stop offset="0.2727" style="stop-color:#555555"/>
+<stop offset="0.6909" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#707070"/>
</linearGradient>
<polygon fill="url(#SVGID_9_)" points="47.08,28.139 48.189,42.446 47.08,58 43.752,58 43.752,28.139 "/>
-<rect fill="#FFFFFF" height="29.861" opacity="0.15" width="1.109" x="43.752" y="28.139"/>
-<rect height="19.738" opacity="0.5" width="1.387" x="49.299" y="33.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.15" height="29.861" stroke-opacity="0.15" width="1.109" x="43.752" y="28.139"/>
+<rect fill-opacity="0.5" height="19.738" stroke-opacity="0.5" width="1.387" x="49.299" y="33.2"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -43.916 0)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-92.2441" x2="-92.2441" y1="28.1387" y2="58">
- <stop offset="0" style="stop-color:#CAD0D4"/>
- <stop offset="0.1273" style="stop-color:#99A1A5"/>
- <stop offset="0.2848" style="stop-color:#F2F2F2"/>
- <stop offset="0.6485" style="stop-color:#949DA1"/>
- <stop offset="1" style="stop-color:#F2F2F2"/>
+<stop offset="0" style="stop-color:#CAD0D4"/>
+<stop offset="0.1273" style="stop-color:#99A1A5"/>
+<stop offset="0.2848" style="stop-color:#F2F2F2"/>
+<stop offset="0.6485" style="stop-color:#949DA1"/>
+<stop offset="1" style="stop-color:#F2F2F2"/>
</linearGradient>
<polygon fill="url(#SVGID_10_)" points="49.576,30.357 49.576,55.781 47.08,58 47.08,28.139 "/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sync.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sync.svg Thu May 27 13:10:59 2010 +0300
@@ -1,61 +1,60 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="26.2671" x2="26.2671" y1="6.1377" y2="31.7569">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M13.69,40.243c-0.309-0.211-7.56-5.245-7.252-12.086 c0.198-4.412,3.463-8.415,9.705-11.898c1.036-0.577,2.176-1.153,3.391-1.711l0.326-0.148c0.21-0.095,0.425-0.189,0.64-0.283 c0.187-0.083,0.378-0.165,0.573-0.248l0.557-0.234c0.256-0.105,1.223-0.493,1.223-0.493c0.176-0.069,0.352-0.138,0.53-0.206V6.081 l22.723,11.33L23.382,28.74v-5.978c-5.189,1.273-8.968,3.829-10.175,6.915c-1.018,2.598-0.306,5.583,2.117,8.872l0.299,0.406 l-1.516,1.572L13.69,40.243z" enable-background="new " fill="url(#SVGID_1_)" opacity="0.2"/>
+<path d="M13.69,40.243c-0.309-0.211-7.56-5.245-7.252-12.086 c0.198-4.412,3.463-8.415,9.705-11.898c1.036-0.577,2.176-1.153,3.391-1.711l0.326-0.148c0.21-0.095,0.425-0.189,0.64-0.283 c0.187-0.083,0.378-0.165,0.573-0.248l0.557-0.234c0.256-0.105,1.223-0.493,1.223-0.493c0.176-0.069,0.352-0.138,0.53-0.206V6.081 l22.723,11.33L23.382,28.74v-5.978c-5.189,1.273-8.968,3.829-10.175,6.915c-1.018,2.598-0.306,5.583,2.117,8.872l0.299,0.406 l-1.516,1.572L13.69,40.243z" fill="url(#SVGID_1_)" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="25.896" x2="25.896" y1="7.0449" y2="37.3736">
- <stop offset="0" style="stop-color:#A9AAAD"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#A9AAAD"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M14.028,39.75c-0.298-0.204-7.287-5.049-6.994-11.566 c0.188-4.191,3.351-8.028,9.4-11.404c1.028-0.573,2.151-1.14,3.349-1.689l0.324-0.148c0.206-0.093,0.418-0.186,0.63-0.278 c0.188-0.082,0.376-0.164,0.568-0.245l0.555-0.234c0.25-0.104,1.213-0.489,1.213-0.489c0.297-0.117,0.599-0.233,0.905-0.349V7.045 l20.789,10.366L23.979,27.776v-5.764c-5.772,1.253-9.982,4.009-11.328,7.448c-1.097,2.802-0.358,5.979,2.193,9.443L14.028,39.75z" enable-background="new " fill="url(#SVGID_2_)" opacity="0.4"/>
+<path d="M14.028,39.75c-0.298-0.204-7.287-5.049-6.994-11.566 c0.188-4.191,3.351-8.028,9.4-11.404c1.028-0.573,2.151-1.14,3.349-1.689l0.324-0.148c0.206-0.093,0.418-0.186,0.63-0.278 c0.188-0.082,0.376-0.164,0.568-0.245l0.555-0.234c0.25-0.104,1.213-0.489,1.213-0.489c0.297-0.117,0.599-0.233,0.905-0.349V7.045 l20.789,10.366L23.979,27.776v-5.764c-5.772,1.253-9.982,4.009-11.328,7.448c-1.097,2.802-0.358,5.979,2.193,9.443L14.028,39.75z" fill="url(#SVGID_2_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="33.7334" x2="33.7334" y1="19.688" y2="51.9872">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M13.896,42.589L36.616,31.26v5.978 c5.19-1.273,8.968-3.829,10.177-6.914c1.017-2.598,0.304-5.583-2.119-8.873l-0.299-0.405l1.517-1.573l0.417,0.284 c0.309,0.211,7.561,5.245,7.253,12.087c-0.198,4.412-3.464,8.415-9.706,11.898l-0.138,0.076c-1.002,0.555-2.102,1.106-3.271,1.641 l-0.303,0.14c-0.216,0.097-0.434,0.193-0.65,0.288l-0.559,0.241l-0.571,0.239c-0.253,0.105-0.508,0.209-0.767,0.312l-0.455,0.182 c-0.174,0.069-0.35,0.137-0.526,0.205v6.855L13.896,42.589z" enable-background="new " fill="url(#SVGID_3_)" opacity="0.2"/>
+<path d="M13.896,42.589L36.616,31.26v5.978 c5.19-1.273,8.968-3.829,10.177-6.914c1.017-2.598,0.304-5.583-2.119-8.873l-0.299-0.405l1.517-1.573l0.417,0.284 c0.309,0.211,7.561,5.245,7.253,12.087c-0.198,4.412-3.464,8.415-9.706,11.898l-0.138,0.076c-1.002,0.555-2.102,1.106-3.271,1.641 l-0.303,0.14c-0.216,0.097-0.434,0.193-0.65,0.288l-0.559,0.241l-0.571,0.239c-0.253,0.105-0.508,0.209-0.767,0.312l-0.455,0.182 c-0.174,0.069-0.35,0.137-0.526,0.205v6.855L13.896,42.589z" fill="url(#SVGID_3_)" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="34.1035" x2="34.1035" y1="20.4546" y2="51.1212">
- <stop offset="0" style="stop-color:#A9AAAD"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#A9AAAD"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M15.234,42.589L36.02,32.224v5.764 c5.773-1.253,9.982-4.009,11.328-7.447c1.098-2.802,0.359-5.979-2.192-9.444l0.815-0.847c0.299,0.204,7.287,5.049,6.994,11.567 c-0.188,4.191-3.351,8.028-9.4,11.404l-0.137,0.076c-0.989,0.547-2.074,1.092-3.229,1.62l-0.304,0.14 c-0.21,0.095-0.426,0.189-0.64,0.283l-0.557,0.24l-0.565,0.237c-0.247,0.103-0.501,0.205-0.756,0.307l-0.457,0.182 c-0.294,0.116-0.595,0.232-0.901,0.348v6.302L15.234,42.589z" enable-background="new " fill="url(#SVGID_4_)" opacity="0.4"/>
+<path d="M15.234,42.589L36.02,32.224v5.764 c5.773-1.253,9.982-4.009,11.328-7.447c1.098-2.802,0.359-5.979-2.192-9.444l0.815-0.847c0.299,0.204,7.287,5.049,6.994,11.567 c-0.188,4.191-3.351,8.028-9.4,11.404l-0.137,0.076c-0.989,0.547-2.074,1.092-3.229,1.62l-0.304,0.14 c-0.21,0.095-0.426,0.189-0.64,0.283l-0.557,0.24l-0.565,0.237c-0.247,0.103-0.501,0.205-0.756,0.307l-0.457,0.182 c-0.294,0.116-0.595,0.232-0.901,0.348v6.302L15.234,42.589z" fill="url(#SVGID_4_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="34.873" x2="34.873" y1="23.2422" y2="46.511">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M18.001,41.993l16.783-8.368v5.271l0.76-0.146c6.556-1.256,11.398-4.38,12.956-8.356 c0.856-2.191,0.736-4.618-0.332-7.152c1.892,2.029,3.939,5.081,3.521,8.503c-0.614,4.992-6.161,9.466-16.488,13.298l-0.416,0.156 v5.161L18.001,41.993z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30.0327" x2="30.0327" y1="51.4287" y2="42.0396">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="1" style="stop-color:#66A00E"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="1" style="stop-color:#66A00E"/>
</linearGradient>
<path d="M16.792,42.103l18.631,9.291v-5.75c3.122-1.16,5.709-2.345,7.851-3.541H16.792z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="25.127" x2="25.127" y1="36.3267" y2="9.0388">
- <stop offset="0" style="stop-color:#45E8FF"/>
- <stop offset="0.5" style="stop-color:#30A4D5"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.5" style="stop-color:#30A4D5"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<path d="M11.831,35.564c-1.891-2.029-3.939-5.082-3.519-8.502c0.613-4.993,6.16-9.467,16.486-13.299 l0.417-0.154V8.445l16.782,8.369l-16.782,8.367v-5.271l-0.759,0.145C17.9,21.313,13.057,24.437,11.5,28.412 C10.643,30.603,10.762,33.03,11.831,35.564L11.831,35.564z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="29.9663" x2="29.9663" y1="8.4697" y2="15.2044">
- <stop offset="0" style="stop-color:#45E8FF"/>
- <stop offset="1" style="stop-color:#30A4D5"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="1" style="stop-color:#30A4D5"/>
</linearGradient>
<path d="M43.207,16.703l-18.631-9.29v5.75c-3.122,1.159-5.709,2.345-7.85,3.54H43.207z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="25.5229" x2="25.5229" y1="8.0708" y2="27.6391">
- <stop offset="0.0061" style="stop-color:#93E1FF"/>
- <stop offset="1" style="stop-color:#1185BF"/>
+<stop offset="0" style="stop-color:#93E1FF"/>
+<stop offset="0.0061" style="stop-color:#93E1FF"/>
+<stop offset="1" style="stop-color:#1185BF"/>
</linearGradient>
<path d="M25.215,8.445l16.782,8.369l-16.782,8.367v-4.498v-0.773l-0.759,0.145 C17.9,21.313,13.058,24.437,11.5,28.412c-0.858,2.193-0.738,4.624,0.335,7.161c-1.892-2.025-3.943-5.077-3.523-8.507 c0.61-4.994,6.158-9.469,16.487-13.303l0.417-0.154v-0.445V8.445 M24.576,7.413v5.75C-6.247,24.602,14.364,38.659,14.364,38.659 c-7.105-9.643,0.429-16.1,10.212-17.976v5.531l18.854-9.4L24.576,7.413L24.576,7.413z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="34.4766" x2="34.4766" y1="29.8569" y2="51.3697">
- <stop offset="0" style="stop-color:#C5FE45"/>
- <stop offset="1" style="stop-color:#4B8B00"/>
+<stop offset="0" style="stop-color:#C5FE45"/>
+<stop offset="1" style="stop-color:#4B8B00"/>
</linearGradient>
<path d="M45.635,20.146c7.105,9.644-0.428,16.101-10.212,17.977v-5.531l-18.854,9.401l18.854,9.401v-5.75 C66.247,34.204,45.635,20.146,45.635,20.146z M35.2,45.043l-0.416,0.156v0.444v4.717l-16.783-8.368l16.783-8.368v4.498v0.773 l0.76-0.146c6.556-1.256,11.399-4.38,12.956-8.356c0.856-2.191,0.736-4.618-0.332-7.152c1.892,2.029,3.94,5.081,3.521,8.503 C51.074,36.737,45.527,41.211,35.2,45.043z" fill="url(#SVGID_10_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_text.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_text.svg Thu May 27 13:10:59 2010 +0300
@@ -1,32 +1,32 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20.6719" x2="23.6638" y1="61.0908" y2="51.1174">
- <stop offset="0" style="stop-color:#E6E9E8"/>
- <stop offset="0.7455" style="stop-color:#ADB2B5"/>
+<stop offset="0" style="stop-color:#E6E9E8"/>
+<stop offset="0.7455" style="stop-color:#ADB2B5"/>
+<stop offset="1" style="stop-color:#ADB2B5"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="53" width="51.291" x="4.354" y="3.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="3.0728" y2="54.3628">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
<path d="M55.645,54.79h-26.5c0,0-13.249-0.381-20.089-3.347c-4.56-1.975-4.702-4.181-4.702-4.181V3.5h51.291 V54.79z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.999" x2="29.999" y1="3.0728" y2="54.3628">
- <stop offset="0" style="stop-color:#E5EBED"/>
- <stop offset="0.703" style="stop-color:#8D9699"/>
- <stop offset="1" style="stop-color:#B7BDBF"/>
+<stop offset="0" style="stop-color:#E5EBED"/>
+<stop offset="0.703" style="stop-color:#8D9699"/>
+<stop offset="1" style="stop-color:#B7BDBF"/>
</linearGradient>
<path d="M4.354,3.5v43.763c0,0,0.048,0.672,0.855,1.611V4.356h49.58v49.582H19.324 c5.195,0.719,9.82,0.852,9.82,0.852h26.5V3.5H4.354z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.7158" x2="16.7993" y1="47.938" y2="54.272">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.1939" style="stop-color:#E6E9E8"/>
- <stop offset="0.9333" style="stop-color:#84878A"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.1939" style="stop-color:#E6E9E8"/>
+<stop offset="0.9333" style="stop-color:#84878A"/>
+<stop offset="1" style="stop-color:#84878A"/>
</linearGradient>
-<path clip-rule="evenodd" d="M31.211,54.79c0,0-12.406,0.569-17.906-8.515 c0,0-7.511,5.564-8.951,0.987C4.967,50.406,10.504,54.903,31.211,54.79z" fill="url(#SVGID_4_)" fill-rule="evenodd"/>
+<path d="M31.211,54.79c0,0-12.406,0.569-17.906-8.515 c0,0-7.511,5.564-8.951,0.987C4.967,50.406,10.504,54.903,31.211,54.79z" fill="url(#SVGID_4_)" fill-rule="evenodd"/>
<rect fill="#F5F5F5" height="0.855" width="42.741" x="8.628" y="39.55"/>
<rect fill="#666666" height="1.71" width="42.741" x="8.628" y="37.84"/>
<rect fill="#F5F5F5" height="0.854" width="42.741" x="8.628" y="31.856"/>
@@ -37,4 +37,4 @@
<rect fill="#666666" height="1.71" width="42.741" x="8.628" y="14.76"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tip.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tip.svg Thu May 27 13:10:59 2010 +0300
@@ -1,41 +1,40 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="29.7026" cy="11.6152" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="38.4093">
- <stop offset="0.0727" style="stop-color:#FFE36A"/>
- <stop offset="0.5152" style="stop-color:#FCB432"/>
- <stop offset="0.703" style="stop-color:#F98A00"/>
- <stop offset="1" style="stop-color:#FCBC3C"/>
+<stop offset="0" style="stop-color:#FFE36A"/>
+<stop offset="0.0727" style="stop-color:#FFE36A"/>
+<stop offset="0.5152" style="stop-color:#FCB432"/>
+<stop offset="0.703" style="stop-color:#F98A00"/>
+<stop offset="1" style="stop-color:#FCBC3C"/>
</radialGradient>
<path d="M30,1C13.868,1,6.945,12.993,8.949,25.372c2.001,12.363,9.413,24.197,21.011,24.367v0.004 c0.015,0,0.026-0.002,0.041-0.002c0.016,0,0.027,0.002,0.041,0.002v-0.004c11.598-0.17,19.01-12.004,21.012-24.367 C53.057,12.993,46.133,1,30,1z" fill="url(#SVGID_1_)"/>
-<path d="M29.794,43.146c-2.909,0-9.646-0.137-14.811-2.203c3,4.275,6.97,7.426,11.806,8.443 c0.037,0.008,0.074,0.014,0.11,0.021c0.284,0.057,0.57,0.107,0.859,0.15c0.239,0.035,0.481,0.061,0.725,0.086 c0.113,0.012,0.226,0.027,0.34,0.037c0.386,0.031,0.776,0.051,1.171,0.057v0.002c0.044,0,0.085-0.004,0.128-0.006 c0.051,0,0.1-0.006,0.15-0.006c0.342-0.01,0.68-0.031,1.014-0.059c0.23-0.021,0.457-0.047,0.684-0.076 c0.094-0.012,0.186-0.023,0.279-0.035c5.588-0.83,10.082-4.459,13.328-9.445C40.303,42.723,32.951,43.146,29.794,43.146z" opacity="0.1"/>
+<path d="M29.794,43.146c-2.909,0-9.646-0.137-14.811-2.203c3,4.275,6.97,7.426,11.806,8.443 c0.037,0.008,0.074,0.014,0.11,0.021c0.284,0.057,0.57,0.107,0.859,0.15c0.239,0.035,0.481,0.061,0.725,0.086 c0.113,0.012,0.226,0.027,0.34,0.037c0.386,0.031,0.776,0.051,1.171,0.057v0.002c0.044,0,0.085-0.004,0.128-0.006 c0.051,0,0.1-0.006,0.15-0.006c0.342-0.01,0.68-0.031,1.014-0.059c0.23-0.021,0.457-0.047,0.684-0.076 c0.094-0.012,0.186-0.023,0.279-0.035c5.588-0.83,10.082-4.459,13.328-9.445C40.303,42.723,32.951,43.146,29.794,43.146z" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="17.9624" x2="42.0391" y1="51.7617" y2="51.7617">
- <stop offset="0" style="stop-color:#A0A8AC"/>
- <stop offset="0.1212" style="stop-color:#BDC3C4"/>
- <stop offset="0.2848" style="stop-color:#E9EFF2"/>
- <stop offset="0.6727" style="stop-color:#949DA1"/>
- <stop offset="0.8182" style="stop-color:#D9DFE1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#A0A8AC"/>
+<stop offset="0.1212" style="stop-color:#BDC3C4"/>
+<stop offset="0.2848" style="stop-color:#E9EFF2"/>
+<stop offset="0.6727" style="stop-color:#949DA1"/>
+<stop offset="0.8182" style="stop-color:#D9DFE1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="17.962,44.523 17.962,56.377 21.099,59 38.9,59 42.039,56.377 42.039,44.523 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="42.0391" x2="17.9629" y1="57.54" y2="57.54">
- <stop offset="0" style="stop-color:#E2E2E2"/>
- <stop offset="0.3" style="stop-color:#969696"/>
- <stop offset="0.6727" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#B3B3B3"/>
+<stop offset="0" style="stop-color:#E2E2E2"/>
+<stop offset="0.3" style="stop-color:#969696"/>
+<stop offset="0.6727" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="17.962,56.377 21.099,59 38.9,59 42.039,56.377 42.039,56.08 17.962,56.08 "/>
<radialGradient cx="29.5933" cy="3.4521" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="18.3714">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#FAD384"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FAD384"/>
</radialGradient>
-<path d="M48.678,14.315c-0.715-2.025-1.75-3.873-3.094-5.452 C42.072,4.738,36.684,2.557,30,2.557c-6.683,0-12.072,2.182-15.583,6.307c-1.344,1.58-2.38,3.427-3.094,5.451 C17.357,14.959,23.618,15.31,30,15.31C36.381,15.312,42.643,14.961,48.678,14.315z" fill="url(#SVGID_4_)" opacity="0.75"/>
-<rect height="2.207" opacity="0.25" width="24.077" x="17.962" y="46.975"/>
-<rect height="2.205" opacity="0.25" width="24.077" x="17.962" y="51.939"/>
+<path d="M48.678,14.315c-0.715-2.025-1.75-3.873-3.094-5.452 C42.072,4.738,36.684,2.557,30,2.557c-6.683,0-12.072,2.182-15.583,6.307c-1.344,1.58-2.38,3.427-3.094,5.451 C17.357,14.959,23.618,15.31,30,15.31C36.381,15.312,42.643,14.961,48.678,14.315z" fill="url(#SVGID_4_)" fill-opacity="0.75" stroke-opacity="0.75"/>
+<rect fill-opacity="0.25" height="2.207" stroke-opacity="0.25" width="24.077" x="17.962" y="46.975"/>
+<rect fill-opacity="0.25" height="2.205" stroke-opacity="0.25" width="24.077" x="17.962" y="51.939"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_todo_alarm.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_todo_alarm.svg Thu May 27 13:10:59 2010 +0300
@@ -1,83 +1,82 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="286.999" x2="286.999" y1="1645.4639" y2="1591.9688">
- <stop offset="0" style="stop-color:#D49757"/>
- <stop offset="1" style="stop-color:#702200"/>
+<stop offset="0" style="stop-color:#D49757"/>
+<stop offset="1" style="stop-color:#702200"/>
</linearGradient>
<path d="M8.526,58c-1.246,0-2.261-1.013-2.261-2.259V6.766c0-1.248,1.015-2.261,2.261-2.261h42.947 c1.247,0,2.262,1.013,2.262,2.261v48.976c0,1.246-1.015,2.259-2.262,2.259H8.526z" fill="url(#SVGID_1_)"/>
-<path d="M51.473,4.505H8.526c-1.246,0-2.261,1.013-2.261,2.261V7.52 c0-1.248,1.015-2.262,2.261-2.262h42.947c1.247,0,2.262,1.014,2.262,2.262V6.766C53.735,5.518,52.72,4.505,51.473,4.505z" enable-background="new " fill="#FFFFFF" opacity="0.6"/>
-<path d="M51.473,57.246H8.526c-1.246,0-2.261-1.013-2.261-2.259v0.754 C6.265,56.987,7.28,58,8.526,58h42.947c1.247,0,2.262-1.013,2.262-2.259v-0.754C53.735,56.233,52.72,57.246,51.473,57.246z" enable-background="new " fill="#FFFFFF" opacity="0.3"/>
+<path d="M51.473,4.505H8.526c-1.246,0-2.261,1.013-2.261,2.261V7.52 c0-1.248,1.015-2.262,2.261-2.262h42.947c1.247,0,2.262,1.014,2.262,2.262V6.766C53.735,5.518,52.72,4.505,51.473,4.505z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M51.473,57.246H8.526c-1.246,0-2.261-1.013-2.261-2.259v0.754 C6.265,56.987,7.28,58,8.526,58h42.947c1.247,0,2.262-1.013,2.262-2.259v-0.754C53.735,56.233,52.72,57.246,51.473,57.246z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="287" x2="287" y1="1641.8242" y2="1594.8197">
- <stop offset="0" style="stop-color:#707173"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#707173"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect enable-background="new " fill="url(#SVGID_2_)" height="46.716" opacity="0.3" width="41.441" x="9.279" y="8.271"/>
+<rect fill="url(#SVGID_2_)" fill-opacity="0.3" height="46.716" stroke-opacity="0.3" width="41.441" x="9.279" y="8.271"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="287" x2="287" y1="1641.0664" y2="1595.578">
- <stop offset="0" style="stop-color:#707173"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#707173"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect enable-background="new " fill="url(#SVGID_3_)" height="45.209" opacity="0.6" width="39.934" x="10.033" y="9.025"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="45.209" stroke-opacity="0.6" width="39.934" x="10.033" y="9.025"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="306.4023" x2="267.6852" y1="1618.7178" y2="1618.7178">
- <stop offset="0" style="stop-color:#737373"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#737373"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="42.948" width="38.427" x="10.787" y="9.778"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="306.2607" x2="267.8748" y1="1619.4707" y2="1619.4707">
- <stop offset="0" style="stop-color:#8A8C8E"/>
- <stop offset="1" style="stop-color:#4A4A4A"/>
+<stop offset="0" style="stop-color:#8A8C8E"/>
+<stop offset="1" style="stop-color:#4A4A4A"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="42.947" width="38.427" x="10.787" y="9.025"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="267.8789" x2="306.4008" y1="1619.8457" y2="1619.8457">
- <stop offset="0" style="stop-color:#737373"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#737373"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="42.194" width="38.427" x="10.787" y="9.025"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="277.0107" x2="271.0243" y1="1610.2334" y2="1604.2468">
- <stop offset="0" style="stop-color:#737373"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#737373"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="41.441" width="38.427" x="10.787" y="9.025"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="286.999" x2="286.999" y1="1624.8262" y2="1607.9667">
- <stop offset="0.25" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#E1E1E1"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.25" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#E1E1E1"/>
</linearGradient>
<path d="M10.787,36.15c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064 h24.864V9.025H10.787V36.15z" fill="url(#SVGID_8_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="286.999" x2="286.999" y1="1640.6797" y2="1600.1635">
- <stop offset="0" style="stop-color:#F0F0F2"/>
- <stop offset="1" style="stop-color:#B3B5B8"/>
+<stop offset="0" style="stop-color:#F0F0F2"/>
+<stop offset="1" style="stop-color:#B3B5B8"/>
</linearGradient>
<path d="M48.46,9.778v39.181H24.349c-0.626,0-1.599-0.401-2.04-0.846l-9.925-9.924 c-0.443-0.441-0.845-1.413-0.845-2.039V9.778H48.46 M49.213,9.025H10.787V36.15c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926 c0.586,0.585,1.743,1.064,2.573,1.064h24.864V9.025L49.213,9.025z" fill="url(#SVGID_9_)"/>
<polygon fill="#929497" points="25.856,23.028 46.199,23.028 46.199,21.521 25.856,21.521 "/>
<polygon fill="#929497" points="25.856,31.93 46.199,31.93 46.199,30.422 25.856,30.422 "/>
<polygon fill="#929497" points="16.815,40.55 46.199,40.55 46.199,39.797 46.199,39.043 16.815,39.043 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="279.4805" x2="273.8942" y1="1611.5459" y2="1605.9596">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.297" style="stop-color:#FFFFFF"/>
- <stop offset="0.5576" style="stop-color:#E6E6E6"/>
- <stop offset="0.7515" style="stop-color:#BCBCBC"/>
- <stop offset="1" style="stop-color:#8E8E8E"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.297" style="stop-color:#FFFFFF"/>
+<stop offset="0.5576" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
</linearGradient>
<path d="M12.177,39.047c-0.314-0.348-0.896-0.695-1.297-2.184c0,0,0.66,3.054,9.701,0.04 c0,12.81,3.768,12.81,3.768,12.81c-0.831,0-1.987-0.479-2.573-1.064L12.177,39.047z" fill="url(#SVGID_10_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="287.001" x2="287.001" y1="1642.542" y2="1638.8584">
- <stop offset="0" style="stop-color:#707173"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#707173"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M43.265,7.045c-0.107-0.35-0.512-0.637-0.9-0.637 h-5.741c-0.388,0-0.779-0.291-0.866-0.645l-0.189-0.748H24.433l-0.191,0.748c-0.088,0.355-0.477,0.645-0.865,0.645h-5.741 c-0.388,0-0.793,0.287-0.9,0.637l-1.024,3.361c-0.108,0.35,0.123,0.637,0.512,0.637h27.554c0.388,0,0.619-0.287,0.513-0.637 L43.265,7.045z" enable-background="new " fill="url(#SVGID_11_)" opacity="0.15"/>
+<path d="M43.265,7.045c-0.107-0.35-0.512-0.637-0.9-0.637 h-5.741c-0.388,0-0.779-0.291-0.866-0.645l-0.189-0.748H24.433l-0.191,0.748c-0.088,0.355-0.477,0.645-0.865,0.645h-5.741 c-0.388,0-0.793,0.287-0.9,0.637l-1.024,3.361c-0.108,0.35,0.123,0.637,0.512,0.637h27.554c0.388,0,0.619-0.287,0.513-0.637 L43.265,7.045z" fill="url(#SVGID_11_)" fill-opacity="0.15" stroke-opacity="0.15"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="287.001" x2="287.001" y1="1641.7881" y2="1638.1045">
- <stop offset="0" style="stop-color:#707173"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#707173"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M43.265,7.8c-0.107-0.351-0.512-0.638-0.9-0.638h-5.741 c-0.388,0-0.779-0.291-0.866-0.645L35.568,5.77H24.433l-0.191,0.748c-0.088,0.355-0.477,0.645-0.865,0.645h-5.741 c-0.388,0-0.793,0.287-0.9,0.638l-1.024,3.359c-0.108,0.351,0.123,0.638,0.512,0.638h27.554c0.388,0,0.619-0.287,0.513-0.638 L43.265,7.8z" enable-background="new " fill="url(#SVGID_12_)" opacity="0.2"/>
-<path d="M44.822,12.55H15.178l-0.218,0.781 c-0.114,0.399,0.128,0.727,0.538,0.727h29.005c0.409,0,0.651-0.327,0.539-0.727L44.822,12.55z" enable-background="new " fill="#6D6E70" opacity="0.5"/>
+<path d="M43.265,7.8c-0.107-0.351-0.512-0.638-0.9-0.638h-5.741 c-0.388,0-0.779-0.291-0.866-0.645L35.568,5.77H24.433l-0.191,0.748c-0.088,0.355-0.477,0.645-0.865,0.645h-5.741 c-0.388,0-0.793,0.287-0.9,0.638l-1.024,3.359c-0.108,0.351,0.123,0.638,0.512,0.638h27.554c0.388,0,0.619-0.287,0.513-0.638 L43.265,7.8z" fill="url(#SVGID_12_)" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M44.822,12.55H15.178l-0.218,0.781 c-0.114,0.399,0.128,0.727,0.538,0.727h29.005c0.409,0,0.651-0.327,0.539-0.727L44.822,12.55z" fill="#6D6E70" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="286.999" x2="286.999" y1="1647.4658" y2="1637.1558">
- <stop offset="0" style="stop-color:#747577"/>
- <stop offset="1" style="stop-color:#D5D7D9"/>
+<stop offset="0" style="stop-color:#747577"/>
+<stop offset="1" style="stop-color:#D5D7D9"/>
</linearGradient>
<path d="M43.964,8.753c-0.113-0.398-0.541-0.724-0.949-0.724h-6.043c-0.409,0-0.819-0.331-0.913-0.735 l-2.131-4.56C33.835,2.33,33.423,2,33.013,2h-6.027c-0.409,0-0.82,0.33-0.911,0.734l-2.133,4.56 c-0.094,0.404-0.504,0.735-0.913,0.735h-6.043c-0.41,0-0.836,0.325-0.949,0.724l-1.078,3.825c-0.113,0.398,0.128,0.726,0.539,0.726 h29.006c0.409,0,0.651-0.327,0.539-0.726L43.964,8.753z" fill="url(#SVGID_13_)"/>
<path d="M26.783,2.755h6.431c0.316,0,0.734,0.179,0.919,0.435c0,0-0.284-1.189-1.125-1.189h-6.022 c-0.835,0-1.118,1.189-1.118,1.189C26.053,2.934,26.467,2.755,26.783,2.755z" fill="#FFFFFF"/>
@@ -87,65 +86,63 @@
<path d="M21.805,27.533v5.834h-5.833v-5.834H21.805 M23.055,26.283h-8.333v8.334h8.333V26.283L23.055,26.283z" fill="#929497"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="0.414,0 0.414,10.485 0,10.899 0.414,11.313 0.414,30 19.1,30 19.514,30.414 19.928,30 30.414,30 30.414,0 "/>
-<path d="M13.769,24.668c-0.003,0.001-0.44,0.125-0.44,0.125l-0.022-0.021L12.8,24.867l-0.025-0.025 c-0.205,0.02-0.411,0.03-0.618,0.03c-1.746,0-3.402-0.694-4.662-1.954c-1.416-1.414-2.113-3.354-1.924-5.279L5.55,17.618l0.09-0.501 L5.634,17.11l0.032-0.128c0.023-0.113,0.049-0.226,0.079-0.338L0,10.899l2.238-2.238c0.623-0.625,1.393-1.296,2.627-1.358 C4.924,7.3,4.988,7.298,5.054,7.298c0.11,0,0.226,0.005,0.346,0.015L5.58,7.334c0.188,0.025,0.352,0.054,0.521,0.092 c0,0,0.277,0.066,0.313,0.076l4.098-4.098C12.707,1.209,15.636,0,18.76,0c2.05,0,4.037,0.526,5.792,1.527 c0.53-0.355,1.14-0.541,1.763-0.541c0.834,0,1.616,0.323,2.203,0.91c1.08,1.08,1.205,2.759,0.375,3.979 c2.574,4.525,1.834,10.311-1.883,14.027l-4.096,4.096c0,0.002,0.068,0.29,0.068,0.29c0.044,0.201,0.072,0.357,0.092,0.505 c0.011,0.083,0.021,0.159,0.026,0.23c0.015,0.178,0.019,0.354,0.011,0.519c-0.062,1.237-0.732,2.009-1.357,2.634l-2.24,2.238 L13.769,24.668z" opacity="0.35"/>
+<path d="M13.769,24.668c-0.003,0.001-0.44,0.125-0.44,0.125l-0.022-0.021L12.8,24.867l-0.025-0.025 c-0.205,0.02-0.411,0.03-0.618,0.03c-1.746,0-3.402-0.694-4.662-1.954c-1.416-1.414-2.113-3.354-1.924-5.279L5.55,17.618l0.09-0.501 L5.634,17.11l0.032-0.128c0.023-0.113,0.049-0.226,0.079-0.338L0,10.899l2.238-2.238c0.623-0.625,1.393-1.296,2.627-1.358 C4.924,7.3,4.988,7.298,5.054,7.298c0.11,0,0.226,0.005,0.346,0.015L5.58,7.334c0.188,0.025,0.352,0.054,0.521,0.092 c0,0,0.277,0.066,0.313,0.076l4.098-4.098C12.707,1.209,15.636,0,18.76,0c2.05,0,4.037,0.526,5.792,1.527 c0.53-0.355,1.14-0.541,1.763-0.541c0.834,0,1.616,0.323,2.203,0.91c1.08,1.08,1.205,2.759,0.375,3.979 c2.574,4.525,1.834,10.311-1.883,14.027l-4.096,4.096c0,0.002,0.068,0.29,0.068,0.29c0.044,0.201,0.072,0.357,0.092,0.505 c0.011,0.083,0.021,0.159,0.026,0.23c0.015,0.178,0.019,0.354,0.011,0.519c-0.062,1.237-0.732,2.009-1.357,2.634l-2.24,2.238 L13.769,24.668z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -924.0166 637.3657)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="218.7148" x2="229.6865" y1="-1096.7686" y2="-1096.7686">
- <stop offset="0" style="stop-color:#676B6D"/>
- <stop offset="0.297" style="stop-color:#A0A3A6"/>
- <stop offset="0.7091" style="stop-color:#474B4D"/>
- <stop offset="1" style="stop-color:#707577"/>
+<stop offset="0" style="stop-color:#676B6D"/>
+<stop offset="0.297" style="stop-color:#A0A3A6"/>
+<stop offset="0.7091" style="stop-color:#474B4D"/>
+<stop offset="1" style="stop-color:#707577"/>
</linearGradient>
<path d="M8,14.656L8,14.656c-2.029,2.029-1.943,5.411,0.201,7.555c2.143,2.143,5.527,2.232,7.557,0.203l0,0 L8,14.656z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(1 0 0 1 0 9.765625e-004)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="3.21" x2="21.4822" y1="8.9229" y2="27.1951">
- <stop offset="0" style="stop-color:#FFB533"/>
- <stop offset="0.2" style="stop-color:#FFE692"/>
- <stop offset="0.3879" style="stop-color:#FBD072"/>
- <stop offset="0.4182" style="stop-color:#F7BC54"/>
- <stop offset="0.6667" style="stop-color:#ED8C0D"/>
- <stop offset="0.8545" style="stop-color:#F9C967"/>
- <stop offset="1" style="stop-color:#FFB81F"/>
+<stop offset="0" style="stop-color:#FFB533"/>
+<stop offset="0.2" style="stop-color:#FFE692"/>
+<stop offset="0.3879" style="stop-color:#FBD072"/>
+<stop offset="0.4182" style="stop-color:#F7BC54"/>
+<stop offset="0.6667" style="stop-color:#ED8C0D"/>
+<stop offset="0.8545" style="stop-color:#F9C967"/>
+<stop offset="1" style="stop-color:#FFB81F"/>
</linearGradient>
<path d="M21.777,23.721L6.693,8.637c-2.041-0.73-2.813-0.205-3.748,0.731l-1.531,1.531L19.514,29l1.533-1.531 C21.982,26.532,22.508,25.761,21.777,23.721z" fill="url(#SVGID_2__)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -924.0166 637.3657)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="221.9707" x2="226.2741" y1="-1120.2998" y2="-1120.2998">
- <stop offset="0" style="stop-color:#FFB533"/>
- <stop offset="0.1939" style="stop-color:#FFE692"/>
- <stop offset="0.703" style="stop-color:#ED8C0D"/>
- <stop offset="0.8848" style="stop-color:#F9C967"/>
- <stop offset="1" style="stop-color:#FFB81F"/>
+<stop offset="0" style="stop-color:#FFB533"/>
+<stop offset="0.1939" style="stop-color:#FFE692"/>
+<stop offset="0.703" style="stop-color:#ED8C0D"/>
+<stop offset="0.8848" style="stop-color:#F9C967"/>
+<stop offset="1" style="stop-color:#FFB81F"/>
</linearGradient>
<path d="M27.057,6.375l0.754-0.755c0.83-0.829,0.83-2.188,0-3.017c-0.83-0.83-2.188-0.83-3.018,0 l-0.754,0.754L27.057,6.375z" fill="url(#SVGID_3__)"/>
-<path d="M27.057,6.375l0.754-0.755c0.045-0.045,0.08-0.098,0.119-0.146 c-0.385-0.581-0.832-1.134-1.344-1.645c-0.512-0.512-1.064-0.96-1.646-1.346c-0.047,0.041-0.1,0.074-0.146,0.12l-0.754,0.754 L27.057,6.375z" fill="#873900" opacity="0.2"/>
-<path d="M26.869,3.546c-0.492-0.492-1.023-0.924-1.58-1.299c-0.178,0.095-0.346,0.207-0.494,0.355 l-0.473,0.473l3.018,3.017l0.471-0.472c0.148-0.148,0.262-0.318,0.357-0.495C27.791,4.568,27.359,4.038,26.869,3.546z" fill="#873900" opacity="0.1"/>
+<path d="M27.057,6.375l0.754-0.755c0.045-0.045,0.08-0.098,0.119-0.146 c-0.385-0.581-0.832-1.134-1.344-1.645c-0.512-0.512-1.064-0.96-1.646-1.346c-0.047,0.041-0.1,0.074-0.146,0.12l-0.754,0.754 L27.057,6.375z" fill="#873900" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M26.869,3.546c-0.492-0.492-1.023-0.924-1.58-1.299c-0.178,0.095-0.346,0.207-0.494,0.355 l-0.473,0.473l3.018,3.017l0.471-0.472c0.148-0.148,0.262-0.318,0.357-0.495C27.791,4.568,27.359,4.038,26.869,3.546z" fill="#873900" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="26.3223" x2="14.1095" y1="4.0923" y2="16.3051">
- <stop offset="0" style="stop-color:#FDE6B1"/>
- <stop offset="1" style="stop-color:#EF951A"/>
+<stop offset="0" style="stop-color:#FDE6B1"/>
+<stop offset="1" style="stop-color:#EF951A"/>
</linearGradient>
<path d="M21.777,23.721l4.525-4.525c4.148-4.147,4.148-10.936,0-15.084s-10.936-4.148-15.084,0L6.693,8.637 L21.777,23.721z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="13.1172" x2="27.4319" y1="2.9941" y2="17.3088">
- <stop offset="0" style="stop-color:#FFB533"/>
- <stop offset="0.2545" style="stop-color:#FFE692"/>
- <stop offset="0.503" style="stop-color:#F8C15B"/>
- <stop offset="0.5152" style="stop-color:#F6B84E"/>
- <stop offset="0.6667" style="stop-color:#ED8C0D"/>
- <stop offset="0.8545" style="stop-color:#F9C967"/>
- <stop offset="1" style="stop-color:#FFB81F"/>
+<stop offset="0" style="stop-color:#FFB533"/>
+<stop offset="0.2545" style="stop-color:#FFE692"/>
+<stop offset="0.503" style="stop-color:#F8C15B"/>
+<stop offset="0.5152" style="stop-color:#F6B84E"/>
+<stop offset="0.6667" style="stop-color:#ED8C0D"/>
+<stop offset="0.8545" style="stop-color:#F9C967"/>
+<stop offset="1" style="stop-color:#FFB81F"/>
</linearGradient>
<path d="M7.258,8.637l4.244-4.242C13.432,2.464,16.01,1.4,18.76,1.4c2.752,0,5.33,1.063,7.26,2.994 c1.932,1.931,2.994,4.509,2.994,7.259c0,2.751-1.063,5.329-2.994,7.26l-4.242,4.242L7.258,8.637z" fill="url(#SVGID_5__)"/>
-<rect fill="#873900" height="0.401" opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.546 -5.4806)" width="21.332" x="3.723" y="15.825"/>
-<path d="M13.619,23.671c0.143-0.041,0.285-0.087,0.426-0.141l-7.162-7.161c-0.053,0.14-0.1,0.281-0.141,0.425 L13.619,23.671z" opacity="0.2"/>
-<rect fill="#873900" height="0.4" opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.429 -5.7637)" width="21.332" x="4.006" y="15.543"/>
-<path d="M13.133,23.786c0.156-0.029,0.309-0.063,0.461-0.106L6.734,16.82c-0.043,0.151-0.078,0.305-0.107,0.459 L13.133,23.786z" opacity="0.1"/>
-<path d="M4.85,8.302l17.262,17.263c0.037-0.485-0.059-1.074-0.334-1.844L6.693,8.637 C5.924,8.36,5.336,8.266,4.85,8.302z" fill="#FFF6C9" opacity="0.5"/>
-<path d="M6.693,8.637c-0.195-0.07-0.379-0.128-0.553-0.176l15.813,15.813 c-0.047-0.173-0.105-0.357-0.176-0.553L6.693,8.637z" fill="#FFF6C9" opacity="0.5"/>
-<rect fill="#753200" height="0.401" opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 17.1142 -1.697)" width="25.598" x="-2.194" y="19.608"/>
-<rect fill="#753200" height="0.398" opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.9952 -1.9808)" width="25.599" x="-1.911" y="19.326"/>
+<rect fill="#873900" fill-opacity="0.2" height="0.401" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.546 -5.4806)" width="21.332" x="3.723" y="15.825"/>
+<path d="M13.619,23.671c0.143-0.041,0.285-0.087,0.426-0.141l-7.162-7.161c-0.053,0.14-0.1,0.281-0.141,0.425 L13.619,23.671z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="#873900" fill-opacity="0.1" height="0.4" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.429 -5.7637)" width="21.332" x="4.006" y="15.543"/>
+<path d="M13.133,23.786c0.156-0.029,0.309-0.063,0.461-0.106L6.734,16.82c-0.043,0.151-0.078,0.305-0.107,0.459 L13.133,23.786z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M4.85,8.302l17.262,17.263c0.037-0.485-0.059-1.074-0.334-1.844L6.693,8.637 C5.924,8.36,5.336,8.266,4.85,8.302z" fill="#FFF6C9" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M6.693,8.637c-0.195-0.07-0.379-0.128-0.553-0.176l15.813,15.813 c-0.047-0.173-0.105-0.357-0.176-0.553L6.693,8.637z" fill="#FFF6C9" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect fill="#753200" fill-opacity="0.2" height="0.401" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 17.1142 -1.697)" width="25.598" x="-2.194" y="19.608"/>
+<rect fill="#753200" fill-opacity="0.1" height="0.398" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.9952 -1.9808)" width="25.599" x="-1.911" y="19.326"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="21.6523" x2="21.6523" y1="1.7822" y2="16.0367">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#F9C966"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#F9C966"/>
</linearGradient>
-<path d="M27.348,15.49c-2.314-1.359-4.715-3.255-6.941-5.482 c-2.229-2.228-4.123-4.628-5.482-6.942l-0.236-0.403l0.436-0.172c1.156-0.455,2.375-0.686,3.627-0.686 c2.615,0,5.162,1.047,6.986,2.873c2.775,2.774,3.635,6.941,2.188,10.614l-0.172,0.435L27.348,15.49z" fill="url(#SVGID_6__)" opacity="0.5"/>
+<path d="M27.348,15.49c-2.314-1.359-4.715-3.255-6.941-5.482 c-2.229-2.228-4.123-4.628-5.482-6.942l-0.236-0.403l0.436-0.172c1.156-0.455,2.375-0.686,3.627-0.686 c2.615,0,5.162,1.047,6.986,2.873c2.775,2.774,3.635,6.941,2.188,10.614l-0.172,0.435L27.348,15.49z" fill="url(#SVGID_6__)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tone.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tone.svg Thu May 27 13:10:59 2010 +0300
@@ -1,61 +1,34 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
+<g>
<rect fill="none" height="60" width="60"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="28.13" x2="28.13" y1="12.29" y2="51.26">
-
<stop offset="0" stop-color="#8CFF24"/>
-
<stop offset="1" stop-color="#15570B"/>
-
</linearGradient>
-
<path d="M48.63,13.08l-3.08-7.497-17.7,7.877,0.028,23.92c-2.712-1.771-6.708-2.354-10.77-1.254-6.405,1.725-10.54,6.951-9.247,11.66,1.3,4.718,7.543,7.142,13.94,5.415,5.412-1.461,9.159-5.324,9.138-9.451-0.018-4.129,0.033-15.34,0-23.44l17.69-7.23z" fill="url(#SVGID_1)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="27.86" x2="27.86" y1="9.02" y2="18.75">
-
<stop offset="0" stop-color="#36B5FF"/>
-
<stop offset="1" stop-color="#1B66D8"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_2)" points="27.88,33.26,27.86,13.46,27.85,13.46,27.87,33.26"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3" x1="39.79" x2="39.79" y1="9.02" y2="18.75">
-
<stop offset="0" stop-color="#9EFF47"/>
-
<stop offset="1" stop-color="#11470A"/>
-
</linearGradient>
-
<path d="M30.94,19.08c0.007,1.306,0.01-0.201,0.012,1.223l17.67-7.225-0.436-1.108-17.24,7.11z" fill="url(#SVGID_3)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4" x1="36.64" x2="36.76" y1="12.18" y2="36.51">
-
<stop offset="0" stop-color="#B3FF6E"/>
-
<stop offset="1" stop-color="#11470A"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_4)" points="28.14,38.06,28.14,14.14,45.89,6.413,45.55,5.582,27.45,13.46,27.45,37.38"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5" x1="19.29" x2="19.29" y1="37.91" y2="52.09">
-
<stop offset="0" stop-color="#B2F56E"/>
-
<stop offset="0.47" stop-color="#40AD00"/>
-
<stop offset="1" stop-color="#074D00"/>
-
</linearGradient>
-
<path d="M17.62,52.39c-4.258,0.021-7.653-1.941-8.447-4.885-0.484-1.785,0.028-3.761,1.444-5.555,1.55-1.964,3.944-3.454,6.747-4.191,1.187-0.317,2.386-0.477,3.573-0.484,4.258-0.021,7.651,1.943,8.45,4.885,1.058,3.9-2.618,8.272-8.196,9.748-1.18,0.31-2.38,0.47-3.57,0.48z" fill="url(#SVGID_5)"/>
-
<rect fill="none" height="60" width="60"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tone_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tone_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,63 +1,45 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="28.13" x2="28.13" y1="12.29" y2="51.26">
-
<stop offset="0" stop-color="#8CFF24"/>
-
<stop offset="1" stop-color="#15570B"/>
-
</linearGradient>
<path d="M48.63,13.08l-3.08-7.497-17.7,7.877,0.028,23.92c-2.712-1.771-6.708-2.354-10.77-1.254-6.405,1.725-10.54,6.951-9.247,11.66,1.3,4.718,7.543,7.142,13.94,5.415,5.412-1.461,9.159-5.324,9.138-9.451-0.018-4.129,0.033-15.34,0-23.44l17.69-7.23z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="27.86" x2="27.86" y1="9.02" y2="18.75">
-
<stop offset="0" stop-color="#36B5FF"/>
-
<stop offset="1" stop-color="#1B66D8"/>
-
</linearGradient>
<polygon fill="url(#SVGID_2)" points="27.88,33.26,27.86,13.46,27.85,13.46,27.87,33.26"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3" x1="39.79" x2="39.79" y1="9.02" y2="18.75">
-
<stop offset="0" stop-color="#9EFF47"/>
-
<stop offset="1" stop-color="#11470A"/>
-
</linearGradient>
<path d="M30.94,19.08c0.007,1.306,0.01-0.201,0.012,1.223l17.67-7.225-0.436-1.108-17.24,7.11z" fill="url(#SVGID_3)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4" x1="36.64" x2="36.76" y1="12.18" y2="36.51">
-
<stop offset="0" stop-color="#B3FF6E"/>
-
<stop offset="1" stop-color="#11470A"/>
-
</linearGradient>
<polygon fill="url(#SVGID_4)" points="28.14,38.06,28.14,14.14,45.89,6.413,45.55,5.582,27.45,13.46,27.45,37.38"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5" x1="19.29" x2="19.29" y1="37.91" y2="52.09">
-
<stop offset="0" stop-color="#B2F56E"/>
-
<stop offset="0.47" stop-color="#40AD00"/>
-
<stop offset="1" stop-color="#074D00"/>
-
</linearGradient>
<path d="M17.62,52.39c-4.258,0.021-7.653-1.941-8.447-4.885-0.484-1.785,0.028-3.761,1.444-5.555,1.55-1.964,3.944-3.454,6.747-4.191,1.187-0.317,2.386-0.477,3.573-0.484,4.258-0.021,7.651,1.943,8.45,4.885,1.058,3.9-2.618,8.272-8.196,9.748-1.18,0.31-2.38,0.47-3.57,0.48z" fill="url(#SVGID_5)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(2 0 0 2 0 0)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<rect height="33.866" opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
+<rect fill-opacity="0.35" height="33.866" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="260" x2="284" y1="655.9761" y2="655.9761">
- <stop offset="0" style="stop-color:#FF4D00"/>
- <stop offset="0.8424" style="stop-color:#CC1414"/>
- <stop offset="1" style="stop-color:#FF4D00"/>
+<stop offset="0" style="stop-color:#FF4D00"/>
+<stop offset="0.8424" style="stop-color:#CC1414"/>
+<stop offset="1" style="stop-color:#FF4D00"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="25.809,26.431 3,4.177 4.191,2.956 27,25.21 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tv_out.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tv_out.svg Thu May 27 13:10:59 2010 +0300
@@ -1,184 +1,184 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
- <stop offset="0.0667" style="stop-color:#E4EBED"/>
- <stop offset="0.2606" style="stop-color:#D6DCDE"/>
- <stop offset="0.6606" style="stop-color:#B2BEC2"/>
- <stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.0667" style="stop-color:#E4EBED"/>
+<stop offset="0.2606" style="stop-color:#D6DCDE"/>
+<stop offset="0.6606" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="37.589" opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
- <stop offset="0" style="stop-color:#6E6E6E"/>
- <stop offset="1" style="stop-color:#333333"/>
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="0.3879" style="stop-color:#2D9BD2"/>
- <stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.3879" style="stop-color:#2D9BD2"/>
+<stop offset="0.8909" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
- <stop offset="0" style="stop-color:#85EFFF"/>
- <stop offset="1" style="stop-color:#3BA1D9"/>
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
<rect fill="#9FE4FF" height="0.767" width="28.383" x="15.809" y="7.37"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D1D7D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D1D7D9"/>
</linearGradient>
<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
- <stop offset="0" style="stop-color:#6C7375"/>
- <stop offset="1" style="stop-color:#BDC2C4"/>
+<stop offset="0" style="stop-color:#6C7375"/>
+<stop offset="1" style="stop-color:#BDC2C4"/>
</linearGradient>
<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" opacity="0.6"/>
-<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" opacity="0.5"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" opacity="0.2"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
- <stop offset="0.0667" style="stop-color:#D1D7D9"/>
- <stop offset="0.2606" style="stop-color:#BDC2C4"/>
- <stop offset="0.6606" style="stop-color:#949DA1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.0667" style="stop-color:#D1D7D9"/>
+<stop offset="0.2606" style="stop-color:#BDC2C4"/>
+<stop offset="0.6606" style="stop-color:#949DA1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" opacity="0.4"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" opacity="0.7"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
- <stop offset="0" style="stop-color:#B6BBBD"/>
- <stop offset="1" style="stop-color:#F0FBFF"/>
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" opacity="0.4"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
- <stop offset="0" style="stop-color:#231F20"/>
- <stop offset="1" style="stop-color:#6D6E70"/>
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" opacity="0.7"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
- <stop offset="0" style="stop-color:#FFC142"/>
- <stop offset="0.7455" style="stop-color:#CF4E18"/>
- <stop offset="1" style="stop-color:#B52100"/>
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.7455" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(-1 0 0 1 60 30)">
-<defs>
-</defs>
<polygon fill="none" points="8.019,0 0,0 0,30 18.231,30 18.84,30.224 18.975,30 30,30 30,0 21.98,0 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="6.5635" x2="23.4365" y1="15.1118" y2="15.1118">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.2727" style="stop-color:#333333"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.2727" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M18.064,29.938c-4.937-1.812-6.404-6.104-6.839-8.368h-0.037l-0.033-0.295h-0.363 c-0.829,0-1.512-0.64-1.581-1.452L8.62,17.166H8.15c-0.875,0-1.587-0.712-1.587-1.586V7.359c0-0.83,0.642-1.514,1.455-1.58V0H21.98 v5.779c0.814,0.066,1.456,0.75,1.456,1.58v8.221c0,0.874-0.712,1.586-1.588,1.586H21.38l-0.592,2.657 c-0.069,0.812-0.751,1.452-1.579,1.452c0.416,0.971,1.1,1.979,2.214,2.472l1.037,0.459l-3.62,6.018L18.064,29.938z" fill="url(#SVGID_1__)" opacity="0.35"/>
+<path d="M18.064,29.938c-4.937-1.812-6.404-6.104-6.839-8.368h-0.037l-0.033-0.295h-0.363 c-0.829,0-1.512-0.64-1.581-1.452L8.62,17.166H8.15c-0.875,0-1.587-0.712-1.587-1.586V7.359c0-0.83,0.642-1.514,1.455-1.58V0H21.98 v5.779c0.814,0.066,1.456,0.75,1.456,1.58v8.221c0,0.874-0.712,1.586-1.588,1.586H21.38l-0.592,2.657 c-0.069,0.812-0.751,1.452-1.579,1.452c0.416,0.971,1.1,1.979,2.214,2.472l1.037,0.459l-3.62,6.018L18.064,29.938z" fill="url(#SVGID_1__)" fill-opacity="0.35" stroke-opacity="0.35"/>
<radialGradient cx="22.252" cy="19.7871" gradientUnits="userSpaceOnUse" id="SVGID_2__" r="9.5452">
- <stop offset="0" style="stop-color:#101010"/>
- <stop offset="0.4727" style="stop-color:#858585"/>
- <stop offset="0.8" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#101010"/>
+<stop offset="0.4727" style="stop-color:#858585"/>
+<stop offset="0.8" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</radialGradient>
<path d="M18.409,29c-5.74-2.107-6.669-7.99-6.358-10.807l5.544,0.615c-0.033,0.371,0.419,4.525,3.424,5.854 L18.409,29L18.409,29z" fill="url(#SVGID_2__)"/>
-<path d="M17.595,18.809l-5.544-0.615c-0.08,0.725-0.077,1.654,0.069,2.67h5.867 C17.657,19.828,17.581,18.969,17.595,18.809z" opacity="0.35"/>
+<path d="M17.595,18.809l-5.544-0.615c-0.08,0.725-0.077,1.654,0.069,2.67h5.867 C17.657,19.828,17.581,18.969,17.595,18.809z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="9.0186" x2="20.9805" y1="3.9355" y2="3.9355">
- <stop offset="0" style="stop-color:#B57201"/>
- <stop offset="0.05" style="stop-color:#FFF173"/>
- <stop offset="0.35" style="stop-color:#F1BC35"/>
- <stop offset="0.65" style="stop-color:#E5B029"/>
- <stop offset="0.95" style="stop-color:#FCE666"/>
- <stop offset="1" style="stop-color:#B57201"/>
+<stop offset="0" style="stop-color:#B57201"/>
+<stop offset="0.05" style="stop-color:#FFF173"/>
+<stop offset="0.35" style="stop-color:#F1BC35"/>
+<stop offset="0.65" style="stop-color:#E5B029"/>
+<stop offset="0.95" style="stop-color:#FCE666"/>
+<stop offset="1" style="stop-color:#B57201"/>
</linearGradient>
<rect fill="url(#SVGID_3__)" height="5.871" width="11.962" x="9.019" y="1"/>
-<path d="M17.595,18.809l-5.544-0.615c-0.072,0.654-0.075,1.477,0.03,2.377h5.818 C17.644,19.67,17.582,18.953,17.595,18.809z" opacity="0.5"/>
+<path d="M17.595,18.809l-5.544-0.615c-0.072,0.654-0.075,1.477,0.03,2.377h5.818 C17.644,19.67,17.582,18.953,17.595,18.809z" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="9.0313" x2="20.9688" y1="17.0469" y2="17.0469">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#7A7A7A"/>
- <stop offset="0.8" style="stop-color:#1A1A1A"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#7A7A7A"/>
+<stop offset="0.8" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<path d="M19.794,19.688c0,0.324-0.263,0.588-0.586,0.588h-8.416c-0.324,0-0.587-0.264-0.587-0.588 l-1.174-5.281c0-0.326,0.263-0.588,0.587-0.588h10.764c0.324,0,0.587,0.262,0.587,0.588L19.794,19.688z" fill="url(#SVGID_4__)"/>
-<path d="M20.382,14.111H9.618c-0.266,0-0.486,0.178-0.56,0.418l0.495,2.225h10.893l0.494-2.225 C20.868,14.289,20.646,14.111,20.382,14.111z" opacity="0.35"/>
-<path d="M9.618,17.047h10.764l0.514-2.316c-0.096-0.189-0.286-0.324-0.514-0.324H9.618 c-0.229,0-0.418,0.135-0.516,0.324L9.618,17.047z" opacity="0.35"/>
-<path d="M20.382,13.818H9.618c-0.324,0-0.587,0.262-0.587,0.588l0.456,2.053h11.025l0.456-2.053 C20.969,14.08,20.706,13.818,20.382,13.818z" opacity="0.5"/>
-<rect height="0.393" opacity="0.35" width="11.962" x="9.019" y="6.479"/>
-<rect height="0.391" opacity="0.15" width="11.962" x="9.019" y="6.088"/>
+<path d="M20.382,14.111H9.618c-0.266,0-0.486,0.178-0.56,0.418l0.495,2.225h10.893l0.494-2.225 C20.868,14.289,20.646,14.111,20.382,14.111z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M9.618,17.047h10.764l0.514-2.316c-0.096-0.189-0.286-0.324-0.514-0.324H9.618 c-0.229,0-0.418,0.135-0.516,0.324L9.618,17.047z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M20.382,13.818H9.618c-0.324,0-0.587,0.262-0.587,0.588l0.456,2.053h11.025l0.456-2.053 C20.969,14.08,20.706,13.818,20.382,13.818z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect fill-opacity="0.35" height="0.393" stroke-opacity="0.35" width="11.962" x="9.019" y="6.479"/>
+<rect fill-opacity="0.15" height="0.391" stroke-opacity="0.15" width="11.962" x="9.019" y="6.088"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="7.5635" x2="22.4365" y1="11.4697" y2="11.4697">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#595959"/>
- <stop offset="0.8" style="stop-color:#1A1A1A"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#595959"/>
+<stop offset="0.8" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<path d="M22.437,15.58c0,0.324-0.264,0.586-0.588,0.586H8.15c-0.324,0-0.587-0.262-0.587-0.586V7.359 c0-0.324,0.263-0.586,0.587-0.586h13.698c0.324,0,0.588,0.262,0.588,0.586V15.58z" fill="url(#SVGID_5__)"/>
-<path d="M21.849,15.873H8.15c-0.324,0-0.587-0.264-0.587-0.588v0.295c0,0.324,0.263,0.586,0.587,0.586h13.698 c0.324,0,0.588-0.262,0.588-0.586v-0.295C22.437,15.609,22.173,15.873,21.849,15.873z" opacity="0.35"/>
-<path d="M21.849,15.58H8.15c-0.324,0-0.587-0.264-0.587-0.588v0.293c0,0.324,0.263,0.588,0.587,0.588h13.698 c0.324,0,0.588-0.264,0.588-0.588v-0.293C22.437,15.316,22.173,15.58,21.849,15.58z" opacity="0.15"/>
-<path d="M21.849,6.773H8.15c-0.324,0-0.587,0.262-0.587,0.586v0.293c0-0.322,0.263-0.586,0.587-0.586 h13.698c0.324,0,0.588,0.264,0.588,0.586V7.359C22.437,7.035,22.173,6.773,21.849,6.773z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M21.849,7.066H8.15c-0.324,0-0.587,0.264-0.587,0.586v0.295c0-0.324,0.263-0.588,0.587-0.588 h13.698c0.324,0,0.588,0.264,0.588,0.588V7.652C22.437,7.33,22.173,7.066,21.849,7.066z" fill="#FFFFFF" opacity="0.25"/>
+<path d="M21.849,15.873H8.15c-0.324,0-0.587-0.264-0.587-0.588v0.295c0,0.324,0.263,0.586,0.587,0.586h13.698 c0.324,0,0.588-0.262,0.588-0.586v-0.295C22.437,15.609,22.173,15.873,21.849,15.873z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M21.849,15.58H8.15c-0.324,0-0.587-0.264-0.587-0.588v0.293c0,0.324,0.263,0.588,0.587,0.588h13.698 c0.324,0,0.588-0.264,0.588-0.588v-0.293C22.437,15.316,22.173,15.58,21.849,15.58z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M21.849,6.773H8.15c-0.324,0-0.587,0.262-0.587,0.586v0.293c0-0.322,0.263-0.586,0.587-0.586 h13.698c0.324,0,0.588,0.264,0.588,0.586V7.359C22.437,7.035,22.173,6.773,21.849,6.773z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M21.849,7.066H8.15c-0.324,0-0.587,0.264-0.587,0.586v0.295c0-0.324,0.263-0.588,0.587-0.588 h13.698c0.324,0,0.588,0.264,0.588,0.588V7.652C22.437,7.33,22.173,7.066,21.849,7.066z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="7.5635" x2="22.4365" y1="8.4355" y2="8.4355">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.2727" style="stop-color:#333333"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.2727" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_6__)" height="0.586" width="14.873" x="7.563" y="8.143"/>
-<rect fill="#FFFFFF" height="0.295" opacity="0.25" width="14.873" x="7.563" y="8.729"/>
-<rect fill="#FFFFFF" height="0.293" opacity="0.25" width="14.873" x="7.563" y="10.197"/>
-<rect fill="#FFFFFF" height="0.295" opacity="0.25" width="14.873" x="7.563" y="11.664"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="0.295" stroke-opacity="0.25" width="14.873" x="7.563" y="8.729"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="0.293" stroke-opacity="0.25" width="14.873" x="7.563" y="10.197"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="0.295" stroke-opacity="0.25" width="14.873" x="7.563" y="11.664"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7__" x1="7.5635" x2="22.4365" y1="9.9033" y2="9.9033">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.2727" style="stop-color:#333333"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.2727" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_7__)" height="0.588" width="14.873" x="7.563" y="9.609"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8__" x1="7.5635" x2="22.4365" y1="11.3711" y2="11.3711">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.2727" style="stop-color:#333333"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.2727" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_8__)" height="0.586" width="14.873" x="7.563" y="11.078"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_unknown.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_unknown.svg Thu May 27 13:10:59 2010 +0300
@@ -1,32 +1,31 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.999" x2="29.999" y1="2.0928" y2="37.9271">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.7636" style="stop-color:#144DA3"/>
- <stop offset="1" style="stop-color:#36B5FF"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.7636" style="stop-color:#144DA3"/>
+<stop offset="1" style="stop-color:#36B5FF"/>
</linearGradient>
<path d="M14.814,10.715V3.508C19.178,2.505,23.314,2,27.238,2c5.785,0,10.221,1.121,13.311,3.364 s4.635,5.532,4.635,9.873c0,2.526-0.596,4.665-1.783,6.417c-1.191,1.752-9.396,9.994-10.205,11.121 c-0.809,1.128-1.213,2.465-1.213,4.01v1.544h-11.51v-2.06c0-2.502,0.547-4.612,1.639-6.342c1.09-1.729,2.994-3.868,5.715-6.419 c2.133-1.985,4.781-6.593,4.781-7.573c0-4.436-2.674-6.655-8.018-6.655C21.576,9.28,18.322,9.759,14.814,10.715z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="2.5591" y2="37.7967">
- <stop offset="0" style="stop-color:#6BCBF2"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#6BCBF2"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M21.223,37.579v-1.31c0-2.343,0.512-4.342,1.521-5.941c1.051-1.666,2.934-3.776,5.596-6.272 c2.016-1.876,5.018-6.732,5.018-8.12c0-3.378-1.521-7.405-8.768-7.405c-2.695,0-5.629,0.383-8.717,1.137l-0.309,0.075V4.107 l0.197-0.043c4.018-0.872,7.879-1.314,11.477-1.314c5.596,0,9.928,1.084,12.869,3.222c2.912,2.112,4.326,5.144,4.326,9.266 c0,2.359-0.557,4.376-1.654,5.996c-0.646,0.95-3.703,4.159-6.158,6.737c-2.273,2.389-3.68,3.872-4.035,4.367 c-0.898,1.254-1.354,2.75-1.354,4.447v0.794H21.223z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="26.6924" x2="26.6924" y1="43.6758" y2="58.1758">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.7636" style="stop-color:#144DA3"/>
- <stop offset="1" style="stop-color:#36B5FF"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.7636" style="stop-color:#144DA3"/>
+<stop offset="1" style="stop-color:#36B5FF"/>
</linearGradient>
<path d="M26.672,58c-1.938,0-3.602-0.686-5-2.059c-1.396-1.373-2.094-3.052-2.094-5.037 c0-1.962,0.693-3.641,2.076-5.038c1.385-1.397,3.059-2.095,5.018-2.095c1.961,0,3.641,0.697,5.037,2.095 c1.398,1.397,2.098,3.076,2.098,5.038c0,1.985-0.699,3.664-2.098,5.037C30.313,57.314,28.633,58,26.672,58z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="26.6924" x2="26.6924" y1="44.436" y2="57.4074">
- <stop offset="0.1152" style="stop-color:#63C1EF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#63C1EF"/>
+<stop offset="0.1152" style="stop-color:#63C1EF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M26.672,57.25c-1.748,0-3.211-0.604-4.475-1.844c-1.258-1.237-1.869-2.71-1.869-4.502 c0-1.771,0.607-3.245,1.859-4.511c1.248-1.26,2.715-1.872,4.484-1.872c1.771,0,3.246,0.613,4.508,1.875 c1.264,1.263,1.877,2.737,1.877,4.508c0,1.792-0.613,3.265-1.873,4.503C29.92,56.647,28.445,57.25,26.672,57.25L26.672,57.25z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_url_address.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_url_address.svg Thu May 27 13:10:59 2010 +0300
@@ -1,81 +1,86 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.999" x2="29.999" y1="2.0776" y2="57.6216">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.4667" style="stop-color:#E6E6E6"/>
- <stop offset="0.9576" style="stop-color:#C2C2C2"/>
-</linearGradient>
-<path d="M53.428,41.199c0,1.027-0.582,2.461-1.297,3.188L40.027,56.681C39.314,57.407,37.904,58,36.891,58 H6.57V2h46.857V41.199z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 5045.8477 1885.916)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5015.8486" x2="5015.8486" y1="1883.5537" y2="1827.7893">
- <stop offset="0" style="stop-color:#F0F0F2"/>
- <stop offset="1" style="stop-color:#B3B5B8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="1.8594" y2="57.8613">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#F2F2F2"/>
</linearGradient>
-<path d="M7.49,2.932h45.02v38.268c0,0.775-0.49,1.979-1.031,2.527l-12.1,12.293 c-0.541,0.549-1.725,1.047-2.488,1.047H7.49V2.932 M6.57,2v56h30.32c1.014,0,2.424-0.593,3.137-1.319l12.104-12.294 c0.715-0.727,1.297-2.16,1.297-3.188V2H6.57L6.57,2z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 5045.8477 1885.916)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="5006.7441" x2="4999.812" y1="1841.873" y2="1834.9412">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.297" style="stop-color:#FFFFFF"/>
- <stop offset="0.5576" style="stop-color:#E6E6E6"/>
- <stop offset="0.7515" style="stop-color:#BCBCBC"/>
- <stop offset="1" style="stop-color:#8E8E8E"/>
+<path d="M6.787,44.293c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064 h32.864V2.145H6.787V44.293z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="3.8799" y2="55.861">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
-<path d="M51.736,44.787c0.379-0.43,1.09-0.859,1.576-2.705c0,0-0.803,3.783-11.83,0.052 C41.482,58,36.891,58,36.891,58c1.014,0,2.424-0.593,3.137-1.319L51.736,44.787z" fill="url(#SVGID_3_)"/>
-<ellipse cx="30" cy="28.558" opacity="0.2" rx="15.107" ry="15.347"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="42.5859" y2="12.1111">
- <stop offset="0" style="stop-color:#004E8C"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<path d="M20.349,55.855c-0.298,0-0.949-0.27-1.16-0.48l-9.924-9.924c-0.21-0.21-0.479-0.859-0.479-1.158 V4.145h42.426v51.71H20.349z" fill="url(#SVGID_2_)"/>
+<path d="M30,46.05c-8.882,0-16.107-7.333-16.107-16.346c0-9.014,7.226-16.348,16.107-16.348 c8.881,0,16.107,7.334,16.107,16.348C46.107,38.717,38.881,46.05,30,46.05L30,46.05z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<ellipse cx="30" cy="29.703" fill-opacity="0.2" rx="15.107" ry="15.347" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.0005" x2="30.0005" y1="43.7314" y2="13.2561">
+<stop offset="0" style="stop-color:#004E8C"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
-<ellipse cx="30" cy="27.416" fill="url(#SVGID_4_)" rx="15.107" ry="15.346"/>
-<radialGradient cx="-11.9336" cy="13.8384" gradientTransform="matrix(0.9797 0 0 0.9952 41.476 8.3351)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="18.5643">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<ellipse cx="30" cy="28.561" fill="url(#SVGID_3_)" rx="15.107" ry="15.346"/>
+<radialGradient cx="-23.8765" cy="20.2261" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="18.5636">
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
-<ellipse cx="30" cy="27.416" fill="url(#SVGID_5_)" rx="14.721" ry="14.953"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="12.3306" y2="42.445">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#88D6EB"/>
+<ellipse cx="30" cy="28.561" fill="url(#SVGID_4_)" rx="14.721" ry="14.953"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.9995" x2="29.9995" y1="13.4756" y2="43.5901">
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#88D6EB"/>
</linearGradient>
-<path d="M30,12.462c-8.129,0-14.721,6.696-14.721,14.954c0,8.26,6.592,14.953,14.721,14.953 c8.131,0,14.721-6.693,14.721-14.953C44.721,19.158,38.131,12.462,30,12.462z M30,41.061c-7.645,0-13.863-6.316-13.863-14.08 c0-7.766,6.219-14.081,13.863-14.081s13.861,6.315,13.861,14.081C43.861,34.744,37.645,41.061,30,41.061z" fill="url(#SVGID_6_)" opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.5195" x2="17.8594" y1="29.4512" y2="29.4512">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<path d="M30,13.607c-8.129,0-14.721,6.696-14.721,14.954c0,8.259,6.592,14.953,14.721,14.953 c8.131,0,14.721-6.693,14.721-14.953C44.721,20.303,38.131,13.607,30,13.607z M30,42.205c-7.645,0-13.862-6.316-13.862-14.079 c0-7.766,6.218-14.082,13.862-14.082s13.861,6.316,13.861,14.082C43.861,35.889,37.645,42.205,30,42.205z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.5205" x2="17.8594" y1="30.5957" y2="30.5957">
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M16.66,27.172c-0.156-0.211-0.51-0.211-0.666-0.211c-0.307,0-0.473,0.223-0.475,0.441 v0.016v0.021c0,0.385,0.021,0.816,0.066,1.34c0.01,0.098,0.02,0.198,0.033,0.297l0.018,0.144c0.039,0.312,0.086,0.617,0.139,0.913 l0.023,0.129c0.023,0.119,0.045,0.232,0.068,0.348c0.064,0.291,0.141,0.592,0.236,0.924c0.012,0.049,0.025,0.098,0.035,0.143 c0.021,0.078,0.039,0.156,0.064,0.231l0.004,0.011l0.008,0.023c0-0.006-0.006-0.018-0.006-0.026l0.844-0.058 c0.014-0.135,0.02-0.273,0.014-0.414c-0.006-0.216-0.016-0.482-0.076-0.709l0.785-1.069l0.084-0.116v-0.145v-0.833v-0.183 l-0.127-0.127L16.66,27.172z" fill="url(#SVGID_7_)" opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="20.0322" x2="44.5176" y1="25.0957" y2="25.0957">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<path d="M16.661,28.317c-0.156-0.211-0.51-0.211-0.666-0.211c-0.308,0-0.473,0.223-0.475,0.442 v0.015v0.022c0,0.384,0.021,0.816,0.065,1.34c0.01,0.098,0.02,0.197,0.033,0.296l0.018,0.144c0.04,0.313,0.086,0.618,0.139,0.913 l0.024,0.13c0.022,0.118,0.044,0.231,0.067,0.347c0.064,0.291,0.141,0.592,0.236,0.924c0.013,0.049,0.025,0.098,0.036,0.144 c0.021,0.078,0.039,0.155,0.063,0.231l0.005,0.01l0.007,0.023c0-0.006-0.005-0.018-0.005-0.025l0.844-0.059 c0.014-0.134,0.019-0.273,0.014-0.413c-0.007-0.216-0.016-0.483-0.077-0.71l0.785-1.069l0.084-0.115v-0.146v-0.833v-0.182 l-0.127-0.127L16.661,28.317z" fill="url(#SVGID_6_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="20.0322" x2="44.5176" y1="26.2412" y2="26.2412">
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M44.512,24.485c-0.01-0.056-0.021-0.099-0.031-0.138 c-0.008-0.029-0.014-0.061-0.021-0.088c-0.072-0.355-0.166-0.72-0.273-1.094l-0.014-0.04c-0.021-0.083-0.047-0.169-0.072-0.251 c-0.133-0.42-0.277-0.822-0.43-1.193c-0.02-0.045-0.041-0.09-0.061-0.134l-0.029-0.071c-0.148-0.34-0.309-0.679-0.477-1.004 l-0.023-0.042c-0.033-0.065-0.066-0.13-0.1-0.194c-0.211-0.381-0.424-0.746-0.648-1.082c-0.021-0.035-0.047-0.072-0.072-0.111 c-0.02-0.021-0.031-0.042-0.047-0.065c-0.213-0.313-0.438-0.618-0.668-0.907l-0.047-0.059c-0.031-0.039-0.061-0.08-0.094-0.12 c-0.268-0.325-0.551-0.644-0.844-0.942c-0.041-0.039-0.084-0.081-0.125-0.125L40.4,16.791c-0.264-0.264-0.545-0.521-0.834-0.768 l-0.057-0.051c-0.027-0.026-0.059-0.051-0.088-0.074c-0.314-0.264-0.656-0.522-1.014-0.771c-0.041-0.029-0.086-0.061-0.131-0.088 l-0.055-0.037c-0.32-0.215-0.656-0.422-0.99-0.611l-0.051-0.029c-0.029-0.017-0.059-0.031-0.084-0.049 c-0.375-0.202-0.764-0.395-1.158-0.566l-0.1-0.041L35.73,13.66c-0.105-0.045-0.209-0.081-0.313-0.119 c-0.055-0.02-0.107-0.037-0.158-0.057l-0.201-0.076l-0.182,0.116c-0.117,0.075-0.59,0.351-0.869,0.511 c-0.309-0.041-1.057-0.137-1.811-0.211c0.23-0.023,0.555-0.05,1.006-0.08l0.064-0.861l-0.033-0.01 c-0.027-0.006-0.055-0.013-0.082-0.02l-0.064-0.012l-0.053-0.012c-0.461-0.094-0.896-0.162-1.326-0.209h-0.004l-0.061-0.006 c-0.492-0.051-0.992-0.076-1.488-0.076c-0.438,0-0.891,0.024-1.385,0.072c-0.078,0.007-0.148,0.015-0.227,0.023 c-0.488,0.055-0.916,0.121-1.32,0.205l-0.016,0.002h-0.008c-0.426,0.092-0.854,0.203-1.311,0.344 c-0.039,0.014-0.08,0.026-0.121,0.039l-0.092,0.031c-0.387,0.125-0.766,0.266-1.125,0.416c-0.027,0.014-0.051,0.021-0.07,0.027 l-0.055,0.023c-0.398,0.172-0.797,0.367-1.191,0.582c-0.041,0.021-0.082,0.047-0.125,0.071l-0.051,0.028 c-0.109,0.064-0.221,0.135-0.33,0.203l-0.143,0.092l-0.791,0.49l0.875,0.297c0.131,0.045,0.271,0.066,0.42,0.066 c0.471,0,0.928-0.236,1.295-0.424c0.146-0.076,0.365-0.189,0.457-0.207c0.107,0.032,0.215,0.049,0.322,0.049 c0.4,0,0.729-0.221,1.02-0.415l0.076-0.05c0.098-0.031,0.258-0.092,0.578-0.213c0.33-0.127,0.928-0.354,1.088-0.393 c0.311-0.004,0.68-0.049,0.943-0.215c0.248,0.041,0.688,0.111,1.143,0.172c-0.033,0.021-0.066,0.041-0.096,0.07 c-0.146,0.137-0.939,0.381-1.184,0.414c-0.457,0.057-0.639,0.291-0.713,0.475c-0.094,0.242-0.039,0.484,0.057,0.68 c-0.174,0.114-0.385,0.244-0.566,0.342c0-0.004,0.002-0.009,0.002-0.014c0.064-0.371,0.113-0.639-0.064-0.852 c-0.09-0.111-0.225-0.172-0.365-0.172c-0.209,0-0.371,0.13-0.502,0.258c-0.365,0.359-0.588,0.809-0.672,0.977l-0.016,0.031 l-0.014,0.025c-0.156,0.311-0.223,0.527-0.135,1.211c-0.039,0.027-0.154,0.072-0.314,0.072c-0.02,0-0.039-0.002-0.055-0.002 c-0.104-0.114-0.246-0.18-0.406-0.18l0,0c-0.369,0-0.873,0.424-1.496,1.258l-0.199,0.268l0.203,0.266l0.188,0.246 c-2.973,2.334-2.994,2.467-3.023,2.66c-0.008,0.02-0.033,0.1-0.068,0.211c-0.443,1.398-0.688,2.445-0.449,3.004 c0.553,1.299,1.178,2.512,1.986,2.578c0.07,0.006,0.148,0.008,0.234,0.008c0.738,0,1.939-0.229,2.518-0.348 c0.105,0.204,0.236,0.441,0.307,0.57l0.129,0.23l0.26-0.008c0,0,0.141-0.006,0.316-0.006c0.203,0,0.338,0.008,0.424,0.014 c0.314,0.938,0.918,3.094,0.805,3.539l-0.002,0.002c-1.014,1.549,0.215,3.563,0.807,4.533c0.049,0.076,0.09,0.145,0.125,0.205 c0.229,0.66,0.506,1.098,1.09,1.098c0.043,0,0.09-0.004,0.131-0.005c0.033-0.003,0.07-0.005,0.104-0.005 c0.066,0,0.111,0.01,0.16,0.027l0.055,0.02l0.055,0.004c0.109,0.009,0.215,0.023,0.32,0.039c0.178,0.025,0.365,0.051,0.557,0.051 c0.508,0,0.908-0.195,1.258-0.613c0.014,0,0.025-0.002,0.037-0.004c0.367-0.051,0.504-0.238,0.549-0.404 c0.029-0.028,0.064-0.063,0.094-0.09c0.146-0.134,0.316-0.293,0.436-0.482c0.051-0.031,0.113-0.068,0.182-0.109 c0.117-0.073,0.25-0.154,0.354-0.209c0.092-0.028,0.174-0.084,0.234-0.161c0.148-0.183,0.119-0.394,0.094-0.562 c-0.025-0.173-0.051-0.35,0.043-0.541c0.52-0.256,1.445-0.882,1.594-0.984v0.012c-0.008,0.083-0.033,0.309-0.07,0.45 c-0.197,0.2-0.359,0.503-0.414,0.606l-0.031,0.066l-0.012,0.074c-0.012,0.098-0.066,0.607,0.215,0.938 c0.143,0.166,0.346,0.258,0.574,0.258c0.07,0,0.146-0.01,0.223-0.027c0.727-0.168,2.01-1.936,2.113-2.91 c0.053-0.473-0.129-0.842-0.494-1.018l-0.273-0.131l-0.217,0.217l-0.791,0.805c-0.268,0.025-0.479,0.107-0.619,0.234 c0.008-0.344-0.025-0.695-0.061-1.039c-0.109-1.037-0.129-1.695,0.496-2.146l0.031-0.023l0.029-0.027 c0.223-0.234,0.475-0.438,0.74-0.654c0.619-0.506,1.26-1.029,1.643-1.975l0.016-0.041c0.123-0.323,0.309-0.811,0.059-1.183 c-0.063-0.091-0.193-0.233-0.441-0.286c0.326-0.131,0.576-0.236,0.6-0.245l0.076-0.032l0.059-0.059l1.34-1.303l0.195-0.192 l-0.086-0.263c-0.012-0.034-0.086-0.24-0.291-0.535c0.391,0.053,0.729,0.148,0.834,0.234c0.043,0.088,0.121,0.283,0.209,0.488 c1.471,3.527,1.678,3.708,2.063,3.715c0.014,0,0.025,0.001,0.035,0.004c0.029,0,0.059,0.002,0.082,0.002 c0.221,0,0.344-0.114,0.398-0.182c0.16-0.195,0.117-0.436,0.1-0.525l-0.006-0.029c-0.018-0.213-0.006-1.162,0.023-1.94 c0.002,0.003,0.004,0.005,0.004,0.007l0.791-0.319L44.512,24.485z M32.908,20.172c-0.061,0.001-0.129,0.006-0.199,0.006 c-0.227,0.014-0.486,0.023-0.742,0.023c-0.672,0-0.826-0.083-0.842-0.094c-0.082-0.057-0.162-0.102-0.248-0.133 c0.154-0.035,0.328-0.156,0.508-0.508c0.176,0.348,0.416,0.656,0.785,0.656c0.1,0,0.195-0.023,0.287-0.07 C32.582,20.055,32.785,20.125,32.908,20.172z M32.645,18.264c-0.053,0-0.094-0.002-0.125-0.005c0.033-0.091,0.076-0.146,0.107-0.175 c0.043,0.066,0.104,0.125,0.166,0.175C32.74,18.262,32.691,18.264,32.645,18.264z M29.963,19.178 c0.23,0.461,0.402,0.658,0.539,0.745c-0.334,0.026-0.586,0.242-0.797,0.448c-0.145-0.053-0.396-0.206-0.473-0.314 c-0.043-0.064-0.096-0.119-0.156-0.168C29.443,19.783,29.766,19.438,29.963,19.178z M28.689,18.842l-0.48-0.025l-1.605-0.078 c0.197-0.164,0.385-0.318,0.492-0.409c0.031-0.013,0.145-0.044,0.428-0.044c0.17,0,0.332,0.013,0.438,0.021L28.689,18.842z" fill="url(#SVGID_8_)" opacity="0.3"/>
-<radialGradient cx="-11.4893" cy="8.5776" gradientTransform="matrix(0.9797 0 0 0.9952 41.476 8.3351)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="16.9394">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<path d="M44.512,25.63c-0.01-0.056-0.021-0.098-0.031-0.137 c-0.008-0.03-0.014-0.061-0.021-0.088c-0.072-0.355-0.166-0.72-0.273-1.094l-0.014-0.04c-0.021-0.083-0.047-0.168-0.072-0.251 c-0.133-0.42-0.277-0.823-0.43-1.193c-0.02-0.045-0.041-0.089-0.061-0.134l-0.029-0.071c-0.148-0.34-0.309-0.679-0.477-1.004 l-0.023-0.042c-0.033-0.065-0.066-0.13-0.1-0.194c-0.211-0.38-0.424-0.746-0.648-1.082c-0.021-0.036-0.047-0.073-0.072-0.111 c-0.02-0.022-0.031-0.042-0.047-0.066c-0.213-0.313-0.438-0.618-0.668-0.907l-0.047-0.059c-0.031-0.038-0.061-0.08-0.094-0.12 c-0.268-0.326-0.551-0.644-0.844-0.943c-0.041-0.039-0.084-0.081-0.125-0.124L40.4,17.936c-0.264-0.263-0.545-0.522-0.834-0.768 l-0.057-0.05c-0.027-0.027-0.059-0.051-0.088-0.075c-0.314-0.264-0.656-0.522-1.014-0.771c-0.041-0.03-0.086-0.06-0.131-0.088 l-0.055-0.037c-0.32-0.215-0.656-0.422-0.99-0.611l-0.051-0.029c-0.029-0.017-0.059-0.031-0.084-0.049 c-0.375-0.202-0.764-0.394-1.158-0.567l-0.1-0.041l-0.109-0.045c-0.105-0.044-0.209-0.081-0.313-0.119 c-0.055-0.019-0.107-0.038-0.158-0.057l-0.201-0.076l-0.182,0.116c-0.117,0.076-0.59,0.351-0.869,0.51 c-0.309-0.041-1.057-0.136-1.811-0.21c0.23-0.023,0.555-0.05,1.006-0.081l0.064-0.861l-0.033-0.009 c-0.027-0.006-0.055-0.013-0.082-0.02l-0.064-0.012l-0.053-0.011c-0.461-0.094-0.896-0.163-1.326-0.208h-0.004l-0.061-0.006 c-0.492-0.051-0.991-0.077-1.488-0.077c-0.438,0-0.891,0.024-1.384,0.072c-0.078,0.007-0.149,0.015-0.228,0.023 c-0.488,0.055-0.915,0.122-1.319,0.205l-0.016,0.002l-0.009,0.001c-0.426,0.091-0.853,0.202-1.311,0.343 c-0.039,0.014-0.08,0.027-0.12,0.04l-0.092,0.03c-0.387,0.125-0.766,0.266-1.125,0.417c-0.028,0.013-0.051,0.021-0.071,0.028 l-0.055,0.023c-0.397,0.172-0.796,0.366-1.19,0.582c-0.042,0.022-0.083,0.047-0.125,0.071l-0.052,0.029 c-0.109,0.064-0.221,0.134-0.33,0.202l-0.143,0.093l-0.791,0.49l0.875,0.297c0.132,0.045,0.272,0.067,0.42,0.067 c0.471,0,0.928-0.236,1.295-0.424c0.147-0.077,0.366-0.19,0.457-0.208c0.107,0.032,0.215,0.049,0.323,0.049 c0.399,0,0.729-0.221,1.019-0.415l0.077-0.05c0.097-0.03,0.258-0.091,0.578-0.213c0.329-0.126,0.928-0.354,1.088-0.392 c0.31-0.004,0.679-0.049,0.942-0.215c0.248,0.042,0.688,0.112,1.143,0.172c-0.033,0.021-0.065,0.042-0.095,0.07 c-0.146,0.137-0.94,0.382-1.185,0.414c-0.457,0.057-0.639,0.292-0.712,0.476c-0.094,0.242-0.04,0.483,0.056,0.679 c-0.174,0.115-0.385,0.244-0.566,0.342c0-0.004,0.002-0.009,0.002-0.014c0.064-0.371,0.114-0.638-0.064-0.852 c-0.09-0.111-0.224-0.172-0.364-0.172c-0.21,0-0.371,0.13-0.502,0.259c-0.366,0.359-0.588,0.808-0.672,0.977l-0.016,0.031 l-0.014,0.025c-0.157,0.31-0.223,0.527-0.136,1.21c-0.039,0.028-0.154,0.073-0.313,0.073c-0.02,0-0.039-0.001-0.055-0.002 c-0.104-0.114-0.246-0.179-0.406-0.179l0,0c-0.37,0-0.873,0.423-1.497,1.257l-0.199,0.268l0.203,0.266l0.188,0.246 c-2.972,2.334-2.994,2.467-3.023,2.661c-0.007,0.02-0.033,0.1-0.068,0.211c-0.442,1.398-0.688,2.445-0.449,3.004 c0.554,1.298,1.179,2.511,1.987,2.577c0.07,0.006,0.147,0.009,0.233,0.009c0.739,0,1.94-0.229,2.518-0.348 c0.105,0.204,0.237,0.442,0.307,0.57l0.129,0.231l0.261-0.009c0,0,0.141-0.005,0.315-0.005c0.203,0,0.338,0.007,0.425,0.014 c0.314,0.937,0.917,3.093,0.805,3.539l-0.003,0.002c-1.014,1.548,0.216,3.563,0.808,4.532c0.048,0.077,0.089,0.146,0.125,0.205 c0.228,0.661,0.505,1.098,1.089,1.098c0.043,0,0.09-0.004,0.132-0.004c0.033-0.003,0.069-0.005,0.104-0.005 c0.066,0,0.11,0.009,0.159,0.026l0.055,0.02l0.056,0.004c0.109,0.01,0.214,0.023,0.32,0.039c0.177,0.025,0.364,0.052,0.556,0.052 c0.508,0,0.909-0.195,1.258-0.614c0.014,0,0.025-0.001,0.037-0.003c0.367-0.052,0.504-0.239,0.549-0.404 c0.029-0.028,0.064-0.063,0.094-0.091c0.146-0.133,0.316-0.292,0.436-0.481c0.051-0.032,0.113-0.068,0.182-0.109 c0.117-0.073,0.25-0.154,0.354-0.21c0.092-0.027,0.174-0.084,0.234-0.16c0.148-0.184,0.119-0.394,0.094-0.563 c-0.025-0.172-0.051-0.35,0.043-0.541c0.52-0.256,1.445-0.881,1.594-0.984v0.012c-0.008,0.084-0.033,0.309-0.07,0.451 c-0.197,0.199-0.359,0.503-0.414,0.605l-0.031,0.066l-0.012,0.074c-0.012,0.098-0.066,0.608,0.215,0.938 c0.143,0.165,0.346,0.258,0.574,0.258c0.07,0,0.146-0.01,0.223-0.028c0.727-0.167,2.01-1.935,2.113-2.91 c0.053-0.473-0.129-0.842-0.494-1.017l-0.273-0.131l-0.217,0.216l-0.791,0.806c-0.268,0.025-0.479,0.106-0.619,0.234 c0.008-0.344-0.025-0.696-0.061-1.04c-0.109-1.036-0.129-1.695,0.496-2.146l0.031-0.023l0.029-0.028 c0.223-0.233,0.475-0.438,0.74-0.654c0.619-0.506,1.26-1.028,1.643-1.975l0.016-0.041c0.123-0.323,0.309-0.811,0.059-1.182 c-0.063-0.091-0.193-0.233-0.441-0.286c0.326-0.131,0.576-0.237,0.6-0.246l0.076-0.032l0.059-0.058l1.34-1.304l0.195-0.192 l-0.086-0.263c-0.012-0.034-0.086-0.239-0.291-0.535c0.391,0.053,0.729,0.148,0.834,0.234c0.043,0.088,0.121,0.283,0.209,0.488 c1.471,3.528,1.678,3.708,2.063,3.715c0.014,0,0.025,0.001,0.035,0.003c0.029,0.001,0.059,0.002,0.082,0.002 c0.221,0,0.344-0.114,0.398-0.181c0.16-0.196,0.117-0.437,0.1-0.526l-0.006-0.03c-0.018-0.212-0.006-1.162,0.023-1.94 c0.002,0.003,0.004,0.004,0.004,0.007l0.791-0.319L44.512,25.63z M32.908,21.317c-0.061,0.001-0.129,0.005-0.199,0.006 c-0.227,0.013-0.486,0.023-0.742,0.023c-0.672,0-0.826-0.083-0.842-0.095c-0.081-0.057-0.162-0.101-0.247-0.133 c0.153-0.035,0.327-0.155,0.507-0.508c0.176,0.348,0.416,0.657,0.785,0.657c0.1,0,0.195-0.024,0.287-0.071 C32.582,21.2,32.785,21.27,32.908,21.317z M32.645,19.408c-0.053,0-0.094-0.002-0.125-0.004c0.033-0.091,0.076-0.145,0.107-0.175 c0.043,0.067,0.104,0.125,0.166,0.175C32.74,19.407,32.691,19.408,32.645,19.408z M29.963,20.323 c0.231,0.46,0.402,0.658,0.539,0.745c-0.334,0.027-0.586,0.242-0.796,0.448c-0.146-0.052-0.397-0.206-0.473-0.314 c-0.043-0.064-0.097-0.119-0.156-0.167C29.444,20.928,29.766,20.583,29.963,20.323z M28.69,19.986l-0.48-0.025l-1.606-0.078 c0.198-0.164,0.385-0.318,0.493-0.409c0.03-0.012,0.145-0.043,0.427-0.043c0.17,0,0.332,0.012,0.438,0.021L28.69,19.986z" fill="url(#SVGID_7_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="-23.4248" cy="14.9639" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="16.9456">
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
+</radialGradient>
+<path d="M15.949,28.552c0,0,0,0,0,0.002c0,0.003,0,0.006,0,0.01c0,0.446,0.029,0.886,0.065,1.32 c0.013,0.144,0.032,0.286,0.048,0.43c0.038,0.298,0.084,0.594,0.135,0.887c0.031,0.153,0.06,0.309,0.09,0.463 c0.066,0.301,0.146,0.6,0.229,0.893c0.035,0.121,0.062,0.246,0.097,0.363c0.007,0.013,0.011,0.025,0.013,0.039 c0.012-0.117,0.016-0.234,0.012-0.355c-0.027-0.86-0.163-0.75-0.163-0.75l0.955-1.305v-0.833l-1.12-1.138 C16.309,28.578,15.949,28.521,15.949,28.552z" fill="url(#SVGID_8_)"/>
+<radialGradient cx="-23.4033" cy="14.9658" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="16.9596">
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
-<path d="M15.949,27.407c0,0,0,0,0,0.003c0,0.002,0,0.006,0,0.01c0,0.445,0.029,0.886,0.064,1.32 c0.014,0.144,0.033,0.285,0.049,0.43c0.037,0.297,0.084,0.594,0.135,0.886c0.031,0.153,0.059,0.31,0.09,0.464 c0.066,0.301,0.145,0.6,0.229,0.893c0.035,0.121,0.061,0.245,0.096,0.363c0.008,0.012,0.012,0.025,0.014,0.038 c0.012-0.116,0.016-0.234,0.012-0.354c-0.027-0.861-0.164-0.75-0.164-0.75l0.955-1.305v-0.833l-1.119-1.138 C16.309,27.434,15.949,27.376,15.949,27.407z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="-11.459" cy="8.5776" gradientTransform="matrix(0.9797 0 0 0.9952 41.476 8.3351)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="16.9575">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<path d="M24.947,15.643c0.412,0.139,0.751-0.143,1.136-0.394c0.136-0.027,1.647-0.641,1.813-0.641 c0.163,0,0.712-0.021,0.849-0.243c0,0,2.365,0.419,2.724,0.279c0.192-0.077,1.009-0.144,1.708-0.189 c-0.037-0.009-0.076-0.02-0.113-0.029c-0.039-0.008-0.074-0.013-0.113-0.021c-0.439-0.091-0.885-0.162-1.336-0.208 c0,0-0.006,0-0.01-0.002c-0.476-0.048-0.957-0.074-1.447-0.074c-0.453,0-0.901,0.027-1.345,0.07 c-0.077,0.007-0.153,0.016-0.233,0.026c-0.428,0.047-0.853,0.11-1.27,0.195c-0.007,0.003-0.016,0.003-0.021,0.004 c-0.433,0.09-0.855,0.203-1.272,0.331c-0.071,0.023-0.141,0.047-0.209,0.069c-0.37,0.123-0.734,0.257-1.091,0.405 c-0.041,0.019-0.084,0.035-0.125,0.051c-0.394,0.171-0.775,0.359-1.15,0.563c-0.056,0.03-0.11,0.064-0.165,0.095 c-0.161,0.09-0.311,0.19-0.467,0.288C23.581,16.479,24.538,15.503,24.947,15.643z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="-23.4023" cy="14.9634" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="16.9557">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.3152" style="stop-color:#B2F56E"/>
+<stop offset="0.7273" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M44.09,25.703c-0.016-0.073-0.037-0.142-0.053-0.213c-0.07-0.356-0.164-0.708-0.266-1.054 c-0.025-0.094-0.051-0.189-0.08-0.282c-0.125-0.394-0.264-0.781-0.416-1.159c-0.029-0.065-0.061-0.131-0.09-0.196 c-0.143-0.333-0.297-0.658-0.463-0.977c-0.037-0.077-0.078-0.155-0.117-0.23c-0.197-0.359-0.406-0.709-0.627-1.051 c-0.041-0.059-0.084-0.114-0.121-0.173c-0.205-0.303-0.42-0.596-0.648-0.881c-0.043-0.055-0.088-0.114-0.135-0.173 c-0.262-0.314-0.533-0.619-0.82-0.914c-0.047-0.05-0.098-0.098-0.15-0.148c-0.26-0.259-0.535-0.511-0.813-0.75 c-0.047-0.04-0.092-0.083-0.141-0.123c-0.316-0.261-0.645-0.511-0.982-0.746c-0.061-0.042-0.119-0.082-0.182-0.121 c-0.311-0.211-0.631-0.411-0.961-0.595c-0.047-0.025-0.088-0.053-0.133-0.077c-0.365-0.199-0.74-0.383-1.123-0.55 c-0.07-0.029-0.139-0.055-0.205-0.085c-0.15-0.063-0.303-0.112-0.455-0.17c-0.182,0.118-1.016,0.597-1.016,0.597 s-3.622-0.502-3.869-0.251c-0.249,0.251-1.213,0.508-1.434,0.537c-0.219,0.03-0.674,0.148-0.129,0.832 c-0.081,0.084-1.642,1.186-1.642,0.686c0-0.502,0.351-1.4-0.139-0.919c-0.351,0.346-0.563,0.813-0.605,0.902 c-0.115,0.223-0.187,0.328-0.104,0.97c0.085,0.642-1.005,0.64-1.08,0.473c-0.196-0.445-1.274,0.999-1.274,0.999l0.455,0.594 c0,0-3.181,2.486-3.206,2.654c-0.028,0.168-0.822,2.328-0.547,2.97c0.274,0.644,0.969,2.262,1.626,2.313 c0.861,0.072,2.951-0.398,2.951-0.398c0.055,0.142,0.45,0.854,0.45,0.854s1.021-0.036,1.081,0.077 c0.018,0.038,1.234,3.668,0.832,4.149c-0.957,1.456,0.547,3.589,0.965,4.312c0.419,1.238,0.688,0.684,1.239,0.889 c0.679,0.058,1.25,0.313,1.826-0.439c0.166-0.141,0.451-0.029,0.451-0.225c0-0.107,0.494-0.427,0.619-0.729 c0.133-0.063,0.475-0.297,0.707-0.41c0.211-0.014-0.201-0.586,0.217-1.191c0.451-0.182,1.666-1.014,1.666-1.014 c0.057-1.223-0.592-2.729,0.617-3.595c0.777-0.807,1.799-1.266,2.295-2.493c0.139-0.361,0.441-1.104-0.438-0.881 c-0.826,0.212-1.75,0.26-1.313-0.109c-0.051-0.456-0.6-0.667-1.092-1.111c-0.254-0.614-0.654-1.704-0.654-1.704l-0.875-1.349 l0.107-0.279l1.041,1.555l1.037,1.276c0.383,1.277,0.711,1.388,0.711,1.388c0.574-0.205,1.939-0.775,1.939-0.775l1.342-1.306 c0,0-0.139-0.417-0.684-0.943l-0.41-0.25c-0.09,0.257-0.566,0.352-0.566,0.352l-1.156-1.406l0.43-0.088l0.332,0.641l0.795,0.279 c0,0,0.219-0.163,0.629,0.267c0.334-0.028,1.635,0.065,1.938,0.457c0.061,0.077,1.611,4.015,1.918,4.02 c0.137,0.001,0.232,0.055,0.189-0.184c-0.055-0.11,0-2.585,0.08-3.115c0.209-0.448,0.242-0.001,0.734,0.853 C44.094,25.745,44.094,25.724,44.09,25.703z M30.432,16.162c0.106-0.329,0.738-0.441,0.738-0.441s-0.183,0.339-0.141,0.514 c0.041,0.177-0.288,0.287-0.323,0.702c-0.038,0.416-0.789,0.171-0.851,0.026S30.319,16.489,30.432,16.162z M33.125,21.748 c-0.467,0-1.863,0.141-2.247-0.138c-0.386-0.278-0.686,0.029-0.962,0.309c-0.182,0.18-0.841-0.187-1.034-0.467 c-0.191-0.279-0.839-0.259-0.839-0.259l0.147-0.796l-1.859-0.09l-1.058,0.315l-0.992,0.028l0.557-0.269l0.693-0.167 c0,0,1.008-0.841,1.31-1.092c0.258-0.212,1.276-0.094,1.276-0.094l1.121,0.821c0,0-0.249,0.643-0.358,0.78 c0.411-0.027,0.896-0.786,0.896-0.786c-0.873-0.816-0.839-1.094-0.839-1.094l1.152,0.822l0.01,0.007c0,0,0.467,1.116,0.661,1.116 c0.189,0,0.436-0.768,0.436-0.768l0.326-0.083c0.146,0.352,0.42,1.147,0.748,0.961c0.189-0.105,0.5-0.01,0.855,0.129 c0.359,0.138,0.602-0.075,0.895,0.185C33.982,22.268,33.318,21.805,33.125,21.748z M33.855,19.828 c-0.479-0.187-2.102,0.418-1.74-0.569c0.193-0.536,0.691-0.646,0.863-0.292c0.043,0.147,0.586,0.374,0.582,0.065 c-0.004-0.308,0.543-0.47,0.621-0.241C33.889,19.003,35.322,20.112,33.855,19.828z M36.918,20.767 c-0.268-0.219,0.117-0.404-0.275-0.746c-0.563-0.491-1.002-0.702-0.234-1.097c0.945-0.122,0.152,0.307,0.309,0.563 c0.084,0.136,0.563,0.593,0.938,1.153C37.963,21.104,37.182,20.984,36.918,20.767z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="-23.4043" cy="14.9697" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="16.9518">
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
-<path d="M24.947,14.498c0.412,0.139,0.75-0.143,1.135-0.395c0.137-0.027,1.648-0.641,1.813-0.641 s0.713-0.021,0.85-0.243c0,0,2.365,0.419,2.723,0.278c0.193-0.076,1.01-0.143,1.709-0.189c-0.037-0.008-0.076-0.02-0.113-0.029 c-0.039-0.008-0.074-0.013-0.113-0.021c-0.439-0.091-0.885-0.161-1.336-0.208c0,0-0.006,0-0.01-0.002 c-0.477-0.048-0.957-0.074-1.447-0.074c-0.453,0-0.902,0.027-1.346,0.07c-0.076,0.008-0.152,0.016-0.232,0.026 c-0.428,0.047-0.854,0.11-1.27,0.195c-0.008,0.003-0.016,0.003-0.021,0.005c-0.432,0.09-0.855,0.203-1.271,0.33 c-0.072,0.023-0.141,0.047-0.209,0.068c-0.371,0.123-0.734,0.258-1.092,0.406c-0.041,0.019-0.084,0.034-0.125,0.051 c-0.393,0.171-0.775,0.359-1.15,0.563c-0.055,0.03-0.109,0.064-0.164,0.096c-0.162,0.09-0.311,0.189-0.467,0.287 C23.58,15.334,24.537,14.357,24.947,14.498z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="-11.458" cy="8.5742" gradientTransform="matrix(0.9797 0 0 0.9952 41.476 8.3351)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="16.9562">
- <stop offset="0.3152" style="stop-color:#B2F56E"/>
- <stop offset="0.7273" style="stop-color:#5CBF1B"/>
- <stop offset="1" style="stop-color:#227A00"/>
-</radialGradient>
-<path d="M44.09,24.559c-0.016-0.073-0.037-0.143-0.053-0.214c-0.07-0.356-0.164-0.708-0.266-1.054 c-0.025-0.094-0.051-0.189-0.08-0.282c-0.125-0.394-0.264-0.781-0.416-1.159c-0.029-0.064-0.061-0.131-0.09-0.195 c-0.143-0.334-0.297-0.658-0.463-0.977c-0.037-0.078-0.078-0.156-0.117-0.23c-0.197-0.359-0.406-0.709-0.627-1.051 c-0.041-0.06-0.084-0.114-0.121-0.174c-0.205-0.303-0.42-0.596-0.648-0.881c-0.043-0.055-0.088-0.113-0.135-0.172 c-0.262-0.314-0.533-0.619-0.82-0.914c-0.047-0.051-0.098-0.099-0.15-0.148c-0.26-0.26-0.535-0.512-0.813-0.75 c-0.047-0.041-0.092-0.083-0.141-0.123c-0.316-0.262-0.645-0.512-0.982-0.746c-0.061-0.041-0.119-0.081-0.182-0.12 c-0.311-0.211-0.631-0.411-0.961-0.595c-0.047-0.025-0.088-0.053-0.133-0.077c-0.365-0.198-0.74-0.383-1.123-0.55 c-0.07-0.029-0.139-0.055-0.205-0.086c-0.15-0.063-0.303-0.111-0.455-0.17c-0.182,0.118-1.016,0.598-1.016,0.598 s-3.623-0.503-3.869-0.252c-0.25,0.252-1.213,0.508-1.434,0.537c-0.219,0.029-0.674,0.148-0.129,0.832 c-0.082,0.084-1.643,1.186-1.643,0.686c0-0.502,0.352-1.4-0.139-0.92c-0.35,0.346-0.563,0.813-0.605,0.902 c-0.115,0.223-0.186,0.328-0.104,0.97c0.084,0.642-1.006,0.64-1.08,0.474c-0.197-0.445-1.275,0.998-1.275,0.998l0.455,0.594 c0,0-3.18,2.486-3.205,2.654c-0.029,0.168-0.822,2.328-0.547,2.971c0.273,0.643,0.969,2.262,1.625,2.313 c0.861,0.072,2.951-0.398,2.951-0.398c0.055,0.143,0.451,0.854,0.451,0.854s1.021-0.035,1.08,0.078 c0.018,0.037,1.234,3.668,0.832,4.148c-0.957,1.457,0.547,3.59,0.965,4.313c0.42,1.238,0.688,0.684,1.24,0.889 c0.678,0.057,1.25,0.313,1.826-0.44c0.166-0.14,0.451-0.028,0.451-0.224c0-0.107,0.494-0.428,0.619-0.729 c0.133-0.063,0.475-0.296,0.707-0.409c0.211-0.014-0.201-0.586,0.217-1.192c0.451-0.181,1.666-1.013,1.666-1.013 c0.057-1.223-0.592-2.729,0.617-3.596c0.777-0.806,1.799-1.266,2.295-2.492c0.139-0.361,0.441-1.104-0.438-0.881 c-0.826,0.211-1.75,0.26-1.313-0.109c-0.051-0.456-0.6-0.668-1.092-1.111c-0.254-0.613-0.654-1.704-0.654-1.704l-0.875-1.349 l0.107-0.279l1.041,1.555l1.037,1.275c0.383,1.277,0.711,1.389,0.711,1.389c0.574-0.205,1.939-0.775,1.939-0.775l1.342-1.307 c0,0-0.139-0.418-0.684-0.943l-0.41-0.25c-0.09,0.258-0.566,0.352-0.566,0.352l-1.156-1.406l0.43-0.088l0.332,0.641l0.795,0.279 c0,0,0.219-0.163,0.629,0.267c0.334-0.028,1.635,0.065,1.938,0.456c0.061,0.078,1.611,4.016,1.918,4.021 c0.137,0.001,0.232,0.055,0.189-0.185c-0.055-0.109,0-2.584,0.08-3.115c0.209-0.447,0.242,0,0.734,0.854 C44.094,24.6,44.094,24.579,44.09,24.559z M30.432,15.017c0.105-0.329,0.738-0.44,0.738-0.44s-0.184,0.339-0.141,0.514 c0.041,0.177-0.289,0.286-0.324,0.701c-0.037,0.416-0.789,0.171-0.85,0.025C29.793,15.672,30.318,15.344,30.432,15.017z M33.125,20.603c-0.467,0-1.863,0.141-2.248-0.138c-0.385-0.279-0.686,0.028-0.961,0.309c-0.182,0.18-0.842-0.187-1.035-0.467 c-0.191-0.279-0.838-0.259-0.838-0.259l0.146-0.796l-1.859-0.09l-1.057,0.314l-0.992,0.027l0.557-0.269l0.693-0.167 c0,0,1.008-0.841,1.309-1.092c0.258-0.213,1.277-0.094,1.277-0.094l1.121,0.821c0,0-0.25,0.644-0.359,0.78 c0.412-0.027,0.896-0.785,0.896-0.785c-0.873-0.816-0.84-1.094-0.84-1.094l1.152,0.822l0.01,0.006c0,0,0.467,1.117,0.662,1.117 c0.189,0,0.436-0.769,0.436-0.769l0.326-0.083c0.146,0.352,0.42,1.146,0.748,0.961c0.189-0.105,0.5-0.011,0.855,0.129 c0.359,0.139,0.602-0.074,0.895,0.186C33.982,21.123,33.318,20.66,33.125,20.603z M33.855,18.684 c-0.479-0.188-2.102,0.418-1.74-0.57c0.193-0.535,0.691-0.646,0.863-0.292c0.043,0.147,0.586,0.374,0.582,0.065 s0.543-0.471,0.621-0.242C33.889,17.857,35.322,18.967,33.855,18.684z M36.918,19.621c-0.268-0.219,0.117-0.404-0.275-0.745 c-0.563-0.491-1.002-0.702-0.234-1.097c0.945-0.122,0.152,0.307,0.309,0.563c0.084,0.136,0.563,0.592,0.938,1.152 C37.963,19.959,37.182,19.84,36.918,19.621z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="-11.4609" cy="8.5801" gradientTransform="matrix(0.9797 0 0 0.9952 41.476 8.3351)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="16.9527">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
-</radialGradient>
-<path d="M37.297,32.337l-0.91,0.925c0,0-0.549,0-0.576,0.224c-0.012,0.095-0.045,0.508-0.135,0.72 c-0.182,0.129-0.402,0.557-0.402,0.557s-0.113,0.822,0.492,0.682C36.373,35.306,38.232,32.785,37.297,32.337z" fill="url(#SVGID_12_)"/>
-<rect fill="none" height="60" width="60"/>
+<path d="M37.297,33.482l-0.91,0.925c0,0-0.549,0-0.576,0.224c-0.012,0.094-0.045,0.508-0.135,0.719 c-0.182,0.13-0.402,0.557-0.402,0.557s-0.113,0.823,0.492,0.683C36.373,36.451,38.232,33.93,37.297,33.482z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="287" x2="287" y1="-288.5059" y2="-343.9819">
+<stop offset="0" style="stop-color:#F0F0F2"/>
+<stop offset="1" style="stop-color:#B3B5B8"/>
+</linearGradient>
+<path d="M52.459,2.898v54.203h-32.11c-0.626,0-1.599-0.401-2.04-0.846l-9.925-9.924 c-0.443-0.441-0.845-1.413-0.845-2.039V2.898H52.459 M53.213,2.145H6.787v42.148c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926 c0.586,0.585,1.743,1.064,2.573,1.064h32.864V2.145L53.213,2.145z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="275.5117" x2="269.9254" y1="-332.5654" y2="-338.1517">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.35" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
+</linearGradient>
+<path d="M8.208,47.189c-0.314-0.348-0.896-0.695-1.297-2.184c0,0,0.66,3.054,9.701,0.04 c0,12.81,3.768,12.81,3.768,12.81c-0.831,0-1.987-0.479-2.573-1.064L8.208,47.189z" fill="url(#SVGID_13_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_url_address_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_url_address_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,124 +1,127 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.999" x2="29.999" y1="2.0776" y2="57.6216">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.4667" style="stop-color:#E6E6E6"/>
- <stop offset="0.9576" style="stop-color:#C2C2C2"/>
-</linearGradient>
-<path d="M53.428,41.199c0,1.027-0.582,2.461-1.297,3.188L40.027,56.681C39.314,57.407,37.904,58,36.891,58 H6.57V2h46.857V41.199z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 5045.8477 1885.916)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5015.8486" x2="5015.8486" y1="1883.5537" y2="1827.7893">
- <stop offset="0" style="stop-color:#F0F0F2"/>
- <stop offset="1" style="stop-color:#B3B5B8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="1.8594" y2="57.8613">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#F2F2F2"/>
</linearGradient>
-<path d="M7.49,2.932h45.02v38.268c0,0.775-0.49,1.979-1.031,2.527l-12.1,12.293 c-0.541,0.549-1.725,1.047-2.488,1.047H7.49V2.932 M6.57,2v56h30.32c1.014,0,2.424-0.593,3.137-1.319l12.104-12.294 c0.715-0.727,1.297-2.16,1.297-3.188V2H6.57L6.57,2z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 5045.8477 1885.916)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="5006.7441" x2="4999.812" y1="1841.873" y2="1834.9412">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.297" style="stop-color:#FFFFFF"/>
- <stop offset="0.5576" style="stop-color:#E6E6E6"/>
- <stop offset="0.7515" style="stop-color:#BCBCBC"/>
- <stop offset="1" style="stop-color:#8E8E8E"/>
+<path d="M6.787,44.293c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064 h32.864V2.145H6.787V44.293z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="3.8799" y2="55.861">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
-<path d="M51.736,44.787c0.379-0.43,1.09-0.859,1.576-2.705c0,0-0.803,3.783-11.83,0.052 C41.482,58,36.891,58,36.891,58c1.014,0,2.424-0.593,3.137-1.319L51.736,44.787z" fill="url(#SVGID_3_)"/>
-<ellipse cx="30" cy="28.558" opacity="0.2" rx="15.107" ry="15.347"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="42.5859" y2="12.1111">
- <stop offset="0" style="stop-color:#004E8C"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<path d="M20.349,55.855c-0.298,0-0.949-0.27-1.16-0.48l-9.924-9.924c-0.21-0.21-0.479-0.859-0.479-1.158 V4.145h42.426v51.71H20.349z" fill="url(#SVGID_2_)"/>
+<path d="M30,46.05c-8.882,0-16.107-7.333-16.107-16.346c0-9.014,7.226-16.348,16.107-16.348 c8.881,0,16.107,7.334,16.107,16.348C46.107,38.717,38.881,46.05,30,46.05L30,46.05z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<ellipse cx="30" cy="29.703" fill-opacity="0.2" rx="15.107" ry="15.347" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.0005" x2="30.0005" y1="43.7314" y2="13.2561">
+<stop offset="0" style="stop-color:#004E8C"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
-<ellipse cx="30" cy="27.416" fill="url(#SVGID_4_)" rx="15.107" ry="15.346"/>
-<radialGradient cx="-11.9336" cy="13.8384" gradientTransform="matrix(0.9797 0 0 0.9952 41.476 8.3351)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="18.5643">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<ellipse cx="30" cy="28.561" fill="url(#SVGID_3_)" rx="15.107" ry="15.346"/>
+<radialGradient cx="-23.8765" cy="20.2261" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="18.5636">
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
-<ellipse cx="30" cy="27.416" fill="url(#SVGID_5_)" rx="14.721" ry="14.953"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="12.3306" y2="42.445">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#88D6EB"/>
+<ellipse cx="30" cy="28.561" fill="url(#SVGID_4_)" rx="14.721" ry="14.953"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.9995" x2="29.9995" y1="13.4756" y2="43.5901">
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#88D6EB"/>
</linearGradient>
-<path d="M30,12.462c-8.129,0-14.721,6.696-14.721,14.954c0,8.26,6.592,14.953,14.721,14.953 c8.131,0,14.721-6.693,14.721-14.953C44.721,19.158,38.131,12.462,30,12.462z M30,41.061c-7.645,0-13.863-6.316-13.863-14.08 c0-7.766,6.219-14.081,13.863-14.081s13.861,6.315,13.861,14.081C43.861,34.744,37.645,41.061,30,41.061z" fill="url(#SVGID_6_)" opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.5195" x2="17.8594" y1="29.4512" y2="29.4512">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<path d="M30,13.607c-8.129,0-14.721,6.696-14.721,14.954c0,8.259,6.592,14.953,14.721,14.953 c8.131,0,14.721-6.693,14.721-14.953C44.721,20.303,38.131,13.607,30,13.607z M30,42.205c-7.645,0-13.862-6.316-13.862-14.079 c0-7.766,6.218-14.082,13.862-14.082s13.861,6.316,13.861,14.082C43.861,35.889,37.645,42.205,30,42.205z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.5205" x2="17.8594" y1="30.5957" y2="30.5957">
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M16.66,27.172c-0.156-0.211-0.51-0.211-0.666-0.211c-0.307,0-0.473,0.223-0.475,0.441 v0.016v0.021c0,0.385,0.021,0.816,0.066,1.34c0.01,0.098,0.02,0.198,0.033,0.297l0.018,0.144c0.039,0.312,0.086,0.617,0.139,0.913 l0.023,0.129c0.023,0.119,0.045,0.232,0.068,0.348c0.064,0.291,0.141,0.592,0.236,0.924c0.012,0.049,0.025,0.098,0.035,0.143 c0.021,0.078,0.039,0.156,0.064,0.231l0.004,0.011l0.008,0.023c0-0.006-0.006-0.018-0.006-0.026l0.844-0.058 c0.014-0.135,0.02-0.273,0.014-0.414c-0.006-0.216-0.016-0.482-0.076-0.709l0.785-1.069l0.084-0.116v-0.145v-0.833v-0.183 l-0.127-0.127L16.66,27.172z" fill="url(#SVGID_7_)" opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="20.0322" x2="44.5176" y1="25.0957" y2="25.0957">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<path d="M16.661,28.317c-0.156-0.211-0.51-0.211-0.666-0.211c-0.308,0-0.473,0.223-0.475,0.442 v0.015v0.022c0,0.384,0.021,0.816,0.065,1.34c0.01,0.098,0.02,0.197,0.033,0.296l0.018,0.144c0.04,0.313,0.086,0.618,0.139,0.913 l0.024,0.13c0.022,0.118,0.044,0.231,0.067,0.347c0.064,0.291,0.141,0.592,0.236,0.924c0.013,0.049,0.025,0.098,0.036,0.144 c0.021,0.078,0.039,0.155,0.063,0.231l0.005,0.01l0.007,0.023c0-0.006-0.005-0.018-0.005-0.025l0.844-0.059 c0.014-0.134,0.019-0.273,0.014-0.413c-0.007-0.216-0.016-0.483-0.077-0.71l0.785-1.069l0.084-0.115v-0.146v-0.833v-0.182 l-0.127-0.127L16.661,28.317z" fill="url(#SVGID_6_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="20.0322" x2="44.5176" y1="26.2412" y2="26.2412">
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M44.512,24.485c-0.01-0.056-0.021-0.099-0.031-0.138 c-0.008-0.029-0.014-0.061-0.021-0.088c-0.072-0.355-0.166-0.72-0.273-1.094l-0.014-0.04c-0.021-0.083-0.047-0.169-0.072-0.251 c-0.133-0.42-0.277-0.822-0.43-1.193c-0.02-0.045-0.041-0.09-0.061-0.134l-0.029-0.071c-0.148-0.34-0.309-0.679-0.477-1.004 l-0.023-0.042c-0.033-0.065-0.066-0.13-0.1-0.194c-0.211-0.381-0.424-0.746-0.648-1.082c-0.021-0.035-0.047-0.072-0.072-0.111 c-0.02-0.021-0.031-0.042-0.047-0.065c-0.213-0.313-0.438-0.618-0.668-0.907l-0.047-0.059c-0.031-0.039-0.061-0.08-0.094-0.12 c-0.268-0.325-0.551-0.644-0.844-0.942c-0.041-0.039-0.084-0.081-0.125-0.125L40.4,16.791c-0.264-0.264-0.545-0.521-0.834-0.768 l-0.057-0.051c-0.027-0.026-0.059-0.051-0.088-0.074c-0.314-0.264-0.656-0.522-1.014-0.771c-0.041-0.029-0.086-0.061-0.131-0.088 l-0.055-0.037c-0.32-0.215-0.656-0.422-0.99-0.611l-0.051-0.029c-0.029-0.017-0.059-0.031-0.084-0.049 c-0.375-0.202-0.764-0.395-1.158-0.566l-0.1-0.041L35.73,13.66c-0.105-0.045-0.209-0.081-0.313-0.119 c-0.055-0.02-0.107-0.037-0.158-0.057l-0.201-0.076l-0.182,0.116c-0.117,0.075-0.59,0.351-0.869,0.511 c-0.309-0.041-1.057-0.137-1.811-0.211c0.23-0.023,0.555-0.05,1.006-0.08l0.064-0.861l-0.033-0.01 c-0.027-0.006-0.055-0.013-0.082-0.02l-0.064-0.012l-0.053-0.012c-0.461-0.094-0.896-0.162-1.326-0.209h-0.004l-0.061-0.006 c-0.492-0.051-0.992-0.076-1.488-0.076c-0.438,0-0.891,0.024-1.385,0.072c-0.078,0.007-0.148,0.015-0.227,0.023 c-0.488,0.055-0.916,0.121-1.32,0.205l-0.016,0.002h-0.008c-0.426,0.092-0.854,0.203-1.311,0.344 c-0.039,0.014-0.08,0.026-0.121,0.039l-0.092,0.031c-0.387,0.125-0.766,0.266-1.125,0.416c-0.027,0.014-0.051,0.021-0.07,0.027 l-0.055,0.023c-0.398,0.172-0.797,0.367-1.191,0.582c-0.041,0.021-0.082,0.047-0.125,0.071l-0.051,0.028 c-0.109,0.064-0.221,0.135-0.33,0.203l-0.143,0.092l-0.791,0.49l0.875,0.297c0.131,0.045,0.271,0.066,0.42,0.066 c0.471,0,0.928-0.236,1.295-0.424c0.146-0.076,0.365-0.189,0.457-0.207c0.107,0.032,0.215,0.049,0.322,0.049 c0.4,0,0.729-0.221,1.02-0.415l0.076-0.05c0.098-0.031,0.258-0.092,0.578-0.213c0.33-0.127,0.928-0.354,1.088-0.393 c0.311-0.004,0.68-0.049,0.943-0.215c0.248,0.041,0.688,0.111,1.143,0.172c-0.033,0.021-0.066,0.041-0.096,0.07 c-0.146,0.137-0.939,0.381-1.184,0.414c-0.457,0.057-0.639,0.291-0.713,0.475c-0.094,0.242-0.039,0.484,0.057,0.68 c-0.174,0.114-0.385,0.244-0.566,0.342c0-0.004,0.002-0.009,0.002-0.014c0.064-0.371,0.113-0.639-0.064-0.852 c-0.09-0.111-0.225-0.172-0.365-0.172c-0.209,0-0.371,0.13-0.502,0.258c-0.365,0.359-0.588,0.809-0.672,0.977l-0.016,0.031 l-0.014,0.025c-0.156,0.311-0.223,0.527-0.135,1.211c-0.039,0.027-0.154,0.072-0.314,0.072c-0.02,0-0.039-0.002-0.055-0.002 c-0.104-0.114-0.246-0.18-0.406-0.18l0,0c-0.369,0-0.873,0.424-1.496,1.258l-0.199,0.268l0.203,0.266l0.188,0.246 c-2.973,2.334-2.994,2.467-3.023,2.66c-0.008,0.02-0.033,0.1-0.068,0.211c-0.443,1.398-0.688,2.445-0.449,3.004 c0.553,1.299,1.178,2.512,1.986,2.578c0.07,0.006,0.148,0.008,0.234,0.008c0.738,0,1.939-0.229,2.518-0.348 c0.105,0.204,0.236,0.441,0.307,0.57l0.129,0.23l0.26-0.008c0,0,0.141-0.006,0.316-0.006c0.203,0,0.338,0.008,0.424,0.014 c0.314,0.938,0.918,3.094,0.805,3.539l-0.002,0.002c-1.014,1.549,0.215,3.563,0.807,4.533c0.049,0.076,0.09,0.145,0.125,0.205 c0.229,0.66,0.506,1.098,1.09,1.098c0.043,0,0.09-0.004,0.131-0.005c0.033-0.003,0.07-0.005,0.104-0.005 c0.066,0,0.111,0.01,0.16,0.027l0.055,0.02l0.055,0.004c0.109,0.009,0.215,0.023,0.32,0.039c0.178,0.025,0.365,0.051,0.557,0.051 c0.508,0,0.908-0.195,1.258-0.613c0.014,0,0.025-0.002,0.037-0.004c0.367-0.051,0.504-0.238,0.549-0.404 c0.029-0.028,0.064-0.063,0.094-0.09c0.146-0.134,0.316-0.293,0.436-0.482c0.051-0.031,0.113-0.068,0.182-0.109 c0.117-0.073,0.25-0.154,0.354-0.209c0.092-0.028,0.174-0.084,0.234-0.161c0.148-0.183,0.119-0.394,0.094-0.562 c-0.025-0.173-0.051-0.35,0.043-0.541c0.52-0.256,1.445-0.882,1.594-0.984v0.012c-0.008,0.083-0.033,0.309-0.07,0.45 c-0.197,0.2-0.359,0.503-0.414,0.606l-0.031,0.066l-0.012,0.074c-0.012,0.098-0.066,0.607,0.215,0.938 c0.143,0.166,0.346,0.258,0.574,0.258c0.07,0,0.146-0.01,0.223-0.027c0.727-0.168,2.01-1.936,2.113-2.91 c0.053-0.473-0.129-0.842-0.494-1.018l-0.273-0.131l-0.217,0.217l-0.791,0.805c-0.268,0.025-0.479,0.107-0.619,0.234 c0.008-0.344-0.025-0.695-0.061-1.039c-0.109-1.037-0.129-1.695,0.496-2.146l0.031-0.023l0.029-0.027 c0.223-0.234,0.475-0.438,0.74-0.654c0.619-0.506,1.26-1.029,1.643-1.975l0.016-0.041c0.123-0.323,0.309-0.811,0.059-1.183 c-0.063-0.091-0.193-0.233-0.441-0.286c0.326-0.131,0.576-0.236,0.6-0.245l0.076-0.032l0.059-0.059l1.34-1.303l0.195-0.192 l-0.086-0.263c-0.012-0.034-0.086-0.24-0.291-0.535c0.391,0.053,0.729,0.148,0.834,0.234c0.043,0.088,0.121,0.283,0.209,0.488 c1.471,3.527,1.678,3.708,2.063,3.715c0.014,0,0.025,0.001,0.035,0.004c0.029,0,0.059,0.002,0.082,0.002 c0.221,0,0.344-0.114,0.398-0.182c0.16-0.195,0.117-0.436,0.1-0.525l-0.006-0.029c-0.018-0.213-0.006-1.162,0.023-1.94 c0.002,0.003,0.004,0.005,0.004,0.007l0.791-0.319L44.512,24.485z M32.908,20.172c-0.061,0.001-0.129,0.006-0.199,0.006 c-0.227,0.014-0.486,0.023-0.742,0.023c-0.672,0-0.826-0.083-0.842-0.094c-0.082-0.057-0.162-0.102-0.248-0.133 c0.154-0.035,0.328-0.156,0.508-0.508c0.176,0.348,0.416,0.656,0.785,0.656c0.1,0,0.195-0.023,0.287-0.07 C32.582,20.055,32.785,20.125,32.908,20.172z M32.645,18.264c-0.053,0-0.094-0.002-0.125-0.005c0.033-0.091,0.076-0.146,0.107-0.175 c0.043,0.066,0.104,0.125,0.166,0.175C32.74,18.262,32.691,18.264,32.645,18.264z M29.963,19.178 c0.23,0.461,0.402,0.658,0.539,0.745c-0.334,0.026-0.586,0.242-0.797,0.448c-0.145-0.053-0.396-0.206-0.473-0.314 c-0.043-0.064-0.096-0.119-0.156-0.168C29.443,19.783,29.766,19.438,29.963,19.178z M28.689,18.842l-0.48-0.025l-1.605-0.078 c0.197-0.164,0.385-0.318,0.492-0.409c0.031-0.013,0.145-0.044,0.428-0.044c0.17,0,0.332,0.013,0.438,0.021L28.689,18.842z" fill="url(#SVGID_8_)" opacity="0.3"/>
-<radialGradient cx="-11.4893" cy="8.5776" gradientTransform="matrix(0.9797 0 0 0.9952 41.476 8.3351)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="16.9394">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<path d="M44.512,25.63c-0.01-0.056-0.021-0.098-0.031-0.137 c-0.008-0.03-0.014-0.061-0.021-0.088c-0.072-0.355-0.166-0.72-0.273-1.094l-0.014-0.04c-0.021-0.083-0.047-0.168-0.072-0.251 c-0.133-0.42-0.277-0.823-0.43-1.193c-0.02-0.045-0.041-0.089-0.061-0.134l-0.029-0.071c-0.148-0.34-0.309-0.679-0.477-1.004 l-0.023-0.042c-0.033-0.065-0.066-0.13-0.1-0.194c-0.211-0.38-0.424-0.746-0.648-1.082c-0.021-0.036-0.047-0.073-0.072-0.111 c-0.02-0.022-0.031-0.042-0.047-0.066c-0.213-0.313-0.438-0.618-0.668-0.907l-0.047-0.059c-0.031-0.038-0.061-0.08-0.094-0.12 c-0.268-0.326-0.551-0.644-0.844-0.943c-0.041-0.039-0.084-0.081-0.125-0.124L40.4,17.936c-0.264-0.263-0.545-0.522-0.834-0.768 l-0.057-0.05c-0.027-0.027-0.059-0.051-0.088-0.075c-0.314-0.264-0.656-0.522-1.014-0.771c-0.041-0.03-0.086-0.06-0.131-0.088 l-0.055-0.037c-0.32-0.215-0.656-0.422-0.99-0.611l-0.051-0.029c-0.029-0.017-0.059-0.031-0.084-0.049 c-0.375-0.202-0.764-0.394-1.158-0.567l-0.1-0.041l-0.109-0.045c-0.105-0.044-0.209-0.081-0.313-0.119 c-0.055-0.019-0.107-0.038-0.158-0.057l-0.201-0.076l-0.182,0.116c-0.117,0.076-0.59,0.351-0.869,0.51 c-0.309-0.041-1.057-0.136-1.811-0.21c0.23-0.023,0.555-0.05,1.006-0.081l0.064-0.861l-0.033-0.009 c-0.027-0.006-0.055-0.013-0.082-0.02l-0.064-0.012l-0.053-0.011c-0.461-0.094-0.896-0.163-1.326-0.208h-0.004l-0.061-0.006 c-0.492-0.051-0.991-0.077-1.488-0.077c-0.438,0-0.891,0.024-1.384,0.072c-0.078,0.007-0.149,0.015-0.228,0.023 c-0.488,0.055-0.915,0.122-1.319,0.205l-0.016,0.002l-0.009,0.001c-0.426,0.091-0.853,0.202-1.311,0.343 c-0.039,0.014-0.08,0.027-0.12,0.04l-0.092,0.03c-0.387,0.125-0.766,0.266-1.125,0.417c-0.028,0.013-0.051,0.021-0.071,0.028 l-0.055,0.023c-0.397,0.172-0.796,0.366-1.19,0.582c-0.042,0.022-0.083,0.047-0.125,0.071l-0.052,0.029 c-0.109,0.064-0.221,0.134-0.33,0.202l-0.143,0.093l-0.791,0.49l0.875,0.297c0.132,0.045,0.272,0.067,0.42,0.067 c0.471,0,0.928-0.236,1.295-0.424c0.147-0.077,0.366-0.19,0.457-0.208c0.107,0.032,0.215,0.049,0.323,0.049 c0.399,0,0.729-0.221,1.019-0.415l0.077-0.05c0.097-0.03,0.258-0.091,0.578-0.213c0.329-0.126,0.928-0.354,1.088-0.392 c0.31-0.004,0.679-0.049,0.942-0.215c0.248,0.042,0.688,0.112,1.143,0.172c-0.033,0.021-0.065,0.042-0.095,0.07 c-0.146,0.137-0.94,0.382-1.185,0.414c-0.457,0.057-0.639,0.292-0.712,0.476c-0.094,0.242-0.04,0.483,0.056,0.679 c-0.174,0.115-0.385,0.244-0.566,0.342c0-0.004,0.002-0.009,0.002-0.014c0.064-0.371,0.114-0.638-0.064-0.852 c-0.09-0.111-0.224-0.172-0.364-0.172c-0.21,0-0.371,0.13-0.502,0.259c-0.366,0.359-0.588,0.808-0.672,0.977l-0.016,0.031 l-0.014,0.025c-0.157,0.31-0.223,0.527-0.136,1.21c-0.039,0.028-0.154,0.073-0.313,0.073c-0.02,0-0.039-0.001-0.055-0.002 c-0.104-0.114-0.246-0.179-0.406-0.179l0,0c-0.37,0-0.873,0.423-1.497,1.257l-0.199,0.268l0.203,0.266l0.188,0.246 c-2.972,2.334-2.994,2.467-3.023,2.661c-0.007,0.02-0.033,0.1-0.068,0.211c-0.442,1.398-0.688,2.445-0.449,3.004 c0.554,1.298,1.179,2.511,1.987,2.577c0.07,0.006,0.147,0.009,0.233,0.009c0.739,0,1.94-0.229,2.518-0.348 c0.105,0.204,0.237,0.442,0.307,0.57l0.129,0.231l0.261-0.009c0,0,0.141-0.005,0.315-0.005c0.203,0,0.338,0.007,0.425,0.014 c0.314,0.937,0.917,3.093,0.805,3.539l-0.003,0.002c-1.014,1.548,0.216,3.563,0.808,4.532c0.048,0.077,0.089,0.146,0.125,0.205 c0.228,0.661,0.505,1.098,1.089,1.098c0.043,0,0.09-0.004,0.132-0.004c0.033-0.003,0.069-0.005,0.104-0.005 c0.066,0,0.11,0.009,0.159,0.026l0.055,0.02l0.056,0.004c0.109,0.01,0.214,0.023,0.32,0.039c0.177,0.025,0.364,0.052,0.556,0.052 c0.508,0,0.909-0.195,1.258-0.614c0.014,0,0.025-0.001,0.037-0.003c0.367-0.052,0.504-0.239,0.549-0.404 c0.029-0.028,0.064-0.063,0.094-0.091c0.146-0.133,0.316-0.292,0.436-0.481c0.051-0.032,0.113-0.068,0.182-0.109 c0.117-0.073,0.25-0.154,0.354-0.21c0.092-0.027,0.174-0.084,0.234-0.16c0.148-0.184,0.119-0.394,0.094-0.563 c-0.025-0.172-0.051-0.35,0.043-0.541c0.52-0.256,1.445-0.881,1.594-0.984v0.012c-0.008,0.084-0.033,0.309-0.07,0.451 c-0.197,0.199-0.359,0.503-0.414,0.605l-0.031,0.066l-0.012,0.074c-0.012,0.098-0.066,0.608,0.215,0.938 c0.143,0.165,0.346,0.258,0.574,0.258c0.07,0,0.146-0.01,0.223-0.028c0.727-0.167,2.01-1.935,2.113-2.91 c0.053-0.473-0.129-0.842-0.494-1.017l-0.273-0.131l-0.217,0.216l-0.791,0.806c-0.268,0.025-0.479,0.106-0.619,0.234 c0.008-0.344-0.025-0.696-0.061-1.04c-0.109-1.036-0.129-1.695,0.496-2.146l0.031-0.023l0.029-0.028 c0.223-0.233,0.475-0.438,0.74-0.654c0.619-0.506,1.26-1.028,1.643-1.975l0.016-0.041c0.123-0.323,0.309-0.811,0.059-1.182 c-0.063-0.091-0.193-0.233-0.441-0.286c0.326-0.131,0.576-0.237,0.6-0.246l0.076-0.032l0.059-0.058l1.34-1.304l0.195-0.192 l-0.086-0.263c-0.012-0.034-0.086-0.239-0.291-0.535c0.391,0.053,0.729,0.148,0.834,0.234c0.043,0.088,0.121,0.283,0.209,0.488 c1.471,3.528,1.678,3.708,2.063,3.715c0.014,0,0.025,0.001,0.035,0.003c0.029,0.001,0.059,0.002,0.082,0.002 c0.221,0,0.344-0.114,0.398-0.181c0.16-0.196,0.117-0.437,0.1-0.526l-0.006-0.03c-0.018-0.212-0.006-1.162,0.023-1.94 c0.002,0.003,0.004,0.004,0.004,0.007l0.791-0.319L44.512,25.63z M32.908,21.317c-0.061,0.001-0.129,0.005-0.199,0.006 c-0.227,0.013-0.486,0.023-0.742,0.023c-0.672,0-0.826-0.083-0.842-0.095c-0.081-0.057-0.162-0.101-0.247-0.133 c0.153-0.035,0.327-0.155,0.507-0.508c0.176,0.348,0.416,0.657,0.785,0.657c0.1,0,0.195-0.024,0.287-0.071 C32.582,21.2,32.785,21.27,32.908,21.317z M32.645,19.408c-0.053,0-0.094-0.002-0.125-0.004c0.033-0.091,0.076-0.145,0.107-0.175 c0.043,0.067,0.104,0.125,0.166,0.175C32.74,19.407,32.691,19.408,32.645,19.408z M29.963,20.323 c0.231,0.46,0.402,0.658,0.539,0.745c-0.334,0.027-0.586,0.242-0.796,0.448c-0.146-0.052-0.397-0.206-0.473-0.314 c-0.043-0.064-0.097-0.119-0.156-0.167C29.444,20.928,29.766,20.583,29.963,20.323z M28.69,19.986l-0.48-0.025l-1.606-0.078 c0.198-0.164,0.385-0.318,0.493-0.409c0.03-0.012,0.145-0.043,0.427-0.043c0.17,0,0.332,0.012,0.438,0.021L28.69,19.986z" fill="url(#SVGID_7_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="-23.4248" cy="14.9639" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="16.9456">
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
-<path d="M15.949,27.407c0,0,0,0,0,0.003c0,0.002,0,0.006,0,0.01c0,0.445,0.029,0.886,0.064,1.32 c0.014,0.144,0.033,0.285,0.049,0.43c0.037,0.297,0.084,0.594,0.135,0.886c0.031,0.153,0.059,0.31,0.09,0.464 c0.066,0.301,0.145,0.6,0.229,0.893c0.035,0.121,0.061,0.245,0.096,0.363c0.008,0.012,0.012,0.025,0.014,0.038 c0.012-0.116,0.016-0.234,0.012-0.354c-0.027-0.861-0.164-0.75-0.164-0.75l0.955-1.305v-0.833l-1.119-1.138 C16.309,27.434,15.949,27.376,15.949,27.407z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="-11.459" cy="8.5776" gradientTransform="matrix(0.9797 0 0 0.9952 41.476 8.3351)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="16.9575">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<path d="M15.949,28.552c0,0,0,0,0,0.002c0,0.003,0,0.006,0,0.01c0,0.446,0.029,0.886,0.065,1.32 c0.013,0.144,0.032,0.286,0.048,0.43c0.038,0.298,0.084,0.594,0.135,0.887c0.031,0.153,0.06,0.309,0.09,0.463 c0.066,0.301,0.146,0.6,0.229,0.893c0.035,0.121,0.062,0.246,0.097,0.363c0.007,0.013,0.011,0.025,0.013,0.039 c0.012-0.117,0.016-0.234,0.012-0.355c-0.027-0.86-0.163-0.75-0.163-0.75l0.955-1.305v-0.833l-1.12-1.138 C16.309,28.578,15.949,28.521,15.949,28.552z" fill="url(#SVGID_8_)"/>
+<radialGradient cx="-23.4033" cy="14.9658" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="16.9596">
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
+</radialGradient>
+<path d="M24.947,15.643c0.412,0.139,0.751-0.143,1.136-0.394c0.136-0.027,1.647-0.641,1.813-0.641 c0.163,0,0.712-0.021,0.849-0.243c0,0,2.365,0.419,2.724,0.279c0.192-0.077,1.009-0.144,1.708-0.189 c-0.037-0.009-0.076-0.02-0.113-0.029c-0.039-0.008-0.074-0.013-0.113-0.021c-0.439-0.091-0.885-0.162-1.336-0.208 c0,0-0.006,0-0.01-0.002c-0.476-0.048-0.957-0.074-1.447-0.074c-0.453,0-0.901,0.027-1.345,0.07 c-0.077,0.007-0.153,0.016-0.233,0.026c-0.428,0.047-0.853,0.11-1.27,0.195c-0.007,0.003-0.016,0.003-0.021,0.004 c-0.433,0.09-0.855,0.203-1.272,0.331c-0.071,0.023-0.141,0.047-0.209,0.069c-0.37,0.123-0.734,0.257-1.091,0.405 c-0.041,0.019-0.084,0.035-0.125,0.051c-0.394,0.171-0.775,0.359-1.15,0.563c-0.056,0.03-0.11,0.064-0.165,0.095 c-0.161,0.09-0.311,0.19-0.467,0.288C23.581,16.479,24.538,15.503,24.947,15.643z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="-23.4023" cy="14.9634" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="16.9557">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.3152" style="stop-color:#B2F56E"/>
+<stop offset="0.7273" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M24.947,14.498c0.412,0.139,0.75-0.143,1.135-0.395c0.137-0.027,1.648-0.641,1.813-0.641 s0.713-0.021,0.85-0.243c0,0,2.365,0.419,2.723,0.278c0.193-0.076,1.01-0.143,1.709-0.189c-0.037-0.008-0.076-0.02-0.113-0.029 c-0.039-0.008-0.074-0.013-0.113-0.021c-0.439-0.091-0.885-0.161-1.336-0.208c0,0-0.006,0-0.01-0.002 c-0.477-0.048-0.957-0.074-1.447-0.074c-0.453,0-0.902,0.027-1.346,0.07c-0.076,0.008-0.152,0.016-0.232,0.026 c-0.428,0.047-0.854,0.11-1.27,0.195c-0.008,0.003-0.016,0.003-0.021,0.005c-0.432,0.09-0.855,0.203-1.271,0.33 c-0.072,0.023-0.141,0.047-0.209,0.068c-0.371,0.123-0.734,0.258-1.092,0.406c-0.041,0.019-0.084,0.034-0.125,0.051 c-0.393,0.171-0.775,0.359-1.15,0.563c-0.055,0.03-0.109,0.064-0.164,0.096c-0.162,0.09-0.311,0.189-0.467,0.287 C23.58,15.334,24.537,14.357,24.947,14.498z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="-11.458" cy="8.5742" gradientTransform="matrix(0.9797 0 0 0.9952 41.476 8.3351)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="16.9562">
- <stop offset="0.3152" style="stop-color:#B2F56E"/>
- <stop offset="0.7273" style="stop-color:#5CBF1B"/>
- <stop offset="1" style="stop-color:#227A00"/>
+<path d="M44.09,25.703c-0.016-0.073-0.037-0.142-0.053-0.213c-0.07-0.356-0.164-0.708-0.266-1.054 c-0.025-0.094-0.051-0.189-0.08-0.282c-0.125-0.394-0.264-0.781-0.416-1.159c-0.029-0.065-0.061-0.131-0.09-0.196 c-0.143-0.333-0.297-0.658-0.463-0.977c-0.037-0.077-0.078-0.155-0.117-0.23c-0.197-0.359-0.406-0.709-0.627-1.051 c-0.041-0.059-0.084-0.114-0.121-0.173c-0.205-0.303-0.42-0.596-0.648-0.881c-0.043-0.055-0.088-0.114-0.135-0.173 c-0.262-0.314-0.533-0.619-0.82-0.914c-0.047-0.05-0.098-0.098-0.15-0.148c-0.26-0.259-0.535-0.511-0.813-0.75 c-0.047-0.04-0.092-0.083-0.141-0.123c-0.316-0.261-0.645-0.511-0.982-0.746c-0.061-0.042-0.119-0.082-0.182-0.121 c-0.311-0.211-0.631-0.411-0.961-0.595c-0.047-0.025-0.088-0.053-0.133-0.077c-0.365-0.199-0.74-0.383-1.123-0.55 c-0.07-0.029-0.139-0.055-0.205-0.085c-0.15-0.063-0.303-0.112-0.455-0.17c-0.182,0.118-1.016,0.597-1.016,0.597 s-3.622-0.502-3.869-0.251c-0.249,0.251-1.213,0.508-1.434,0.537c-0.219,0.03-0.674,0.148-0.129,0.832 c-0.081,0.084-1.642,1.186-1.642,0.686c0-0.502,0.351-1.4-0.139-0.919c-0.351,0.346-0.563,0.813-0.605,0.902 c-0.115,0.223-0.187,0.328-0.104,0.97c0.085,0.642-1.005,0.64-1.08,0.473c-0.196-0.445-1.274,0.999-1.274,0.999l0.455,0.594 c0,0-3.181,2.486-3.206,2.654c-0.028,0.168-0.822,2.328-0.547,2.97c0.274,0.644,0.969,2.262,1.626,2.313 c0.861,0.072,2.951-0.398,2.951-0.398c0.055,0.142,0.45,0.854,0.45,0.854s1.021-0.036,1.081,0.077 c0.018,0.038,1.234,3.668,0.832,4.149c-0.957,1.456,0.547,3.589,0.965,4.312c0.419,1.238,0.688,0.684,1.239,0.889 c0.679,0.058,1.25,0.313,1.826-0.439c0.166-0.141,0.451-0.029,0.451-0.225c0-0.107,0.494-0.427,0.619-0.729 c0.133-0.063,0.475-0.297,0.707-0.41c0.211-0.014-0.201-0.586,0.217-1.191c0.451-0.182,1.666-1.014,1.666-1.014 c0.057-1.223-0.592-2.729,0.617-3.595c0.777-0.807,1.799-1.266,2.295-2.493c0.139-0.361,0.441-1.104-0.438-0.881 c-0.826,0.212-1.75,0.26-1.313-0.109c-0.051-0.456-0.6-0.667-1.092-1.111c-0.254-0.614-0.654-1.704-0.654-1.704l-0.875-1.349 l0.107-0.279l1.041,1.555l1.037,1.276c0.383,1.277,0.711,1.388,0.711,1.388c0.574-0.205,1.939-0.775,1.939-0.775l1.342-1.306 c0,0-0.139-0.417-0.684-0.943l-0.41-0.25c-0.09,0.257-0.566,0.352-0.566,0.352l-1.156-1.406l0.43-0.088l0.332,0.641l0.795,0.279 c0,0,0.219-0.163,0.629,0.267c0.334-0.028,1.635,0.065,1.938,0.457c0.061,0.077,1.611,4.015,1.918,4.02 c0.137,0.001,0.232,0.055,0.189-0.184c-0.055-0.11,0-2.585,0.08-3.115c0.209-0.448,0.242-0.001,0.734,0.853 C44.094,25.745,44.094,25.724,44.09,25.703z M30.432,16.162c0.106-0.329,0.738-0.441,0.738-0.441s-0.183,0.339-0.141,0.514 c0.041,0.177-0.288,0.287-0.323,0.702c-0.038,0.416-0.789,0.171-0.851,0.026S30.319,16.489,30.432,16.162z M33.125,21.748 c-0.467,0-1.863,0.141-2.247-0.138c-0.386-0.278-0.686,0.029-0.962,0.309c-0.182,0.18-0.841-0.187-1.034-0.467 c-0.191-0.279-0.839-0.259-0.839-0.259l0.147-0.796l-1.859-0.09l-1.058,0.315l-0.992,0.028l0.557-0.269l0.693-0.167 c0,0,1.008-0.841,1.31-1.092c0.258-0.212,1.276-0.094,1.276-0.094l1.121,0.821c0,0-0.249,0.643-0.358,0.78 c0.411-0.027,0.896-0.786,0.896-0.786c-0.873-0.816-0.839-1.094-0.839-1.094l1.152,0.822l0.01,0.007c0,0,0.467,1.116,0.661,1.116 c0.189,0,0.436-0.768,0.436-0.768l0.326-0.083c0.146,0.352,0.42,1.147,0.748,0.961c0.189-0.105,0.5-0.01,0.855,0.129 c0.359,0.138,0.602-0.075,0.895,0.185C33.982,22.268,33.318,21.805,33.125,21.748z M33.855,19.828 c-0.479-0.187-2.102,0.418-1.74-0.569c0.193-0.536,0.691-0.646,0.863-0.292c0.043,0.147,0.586,0.374,0.582,0.065 c-0.004-0.308,0.543-0.47,0.621-0.241C33.889,19.003,35.322,20.112,33.855,19.828z M36.918,20.767 c-0.268-0.219,0.117-0.404-0.275-0.746c-0.563-0.491-1.002-0.702-0.234-1.097c0.945-0.122,0.152,0.307,0.309,0.563 c0.084,0.136,0.563,0.593,0.938,1.153C37.963,21.104,37.182,20.984,36.918,20.767z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="-23.4043" cy="14.9697" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="16.9518">
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
-<path d="M44.09,24.559c-0.016-0.073-0.037-0.143-0.053-0.214c-0.07-0.356-0.164-0.708-0.266-1.054 c-0.025-0.094-0.051-0.189-0.08-0.282c-0.125-0.394-0.264-0.781-0.416-1.159c-0.029-0.064-0.061-0.131-0.09-0.195 c-0.143-0.334-0.297-0.658-0.463-0.977c-0.037-0.078-0.078-0.156-0.117-0.23c-0.197-0.359-0.406-0.709-0.627-1.051 c-0.041-0.06-0.084-0.114-0.121-0.174c-0.205-0.303-0.42-0.596-0.648-0.881c-0.043-0.055-0.088-0.113-0.135-0.172 c-0.262-0.314-0.533-0.619-0.82-0.914c-0.047-0.051-0.098-0.099-0.15-0.148c-0.26-0.26-0.535-0.512-0.813-0.75 c-0.047-0.041-0.092-0.083-0.141-0.123c-0.316-0.262-0.645-0.512-0.982-0.746c-0.061-0.041-0.119-0.081-0.182-0.12 c-0.311-0.211-0.631-0.411-0.961-0.595c-0.047-0.025-0.088-0.053-0.133-0.077c-0.365-0.198-0.74-0.383-1.123-0.55 c-0.07-0.029-0.139-0.055-0.205-0.086c-0.15-0.063-0.303-0.111-0.455-0.17c-0.182,0.118-1.016,0.598-1.016,0.598 s-3.623-0.503-3.869-0.252c-0.25,0.252-1.213,0.508-1.434,0.537c-0.219,0.029-0.674,0.148-0.129,0.832 c-0.082,0.084-1.643,1.186-1.643,0.686c0-0.502,0.352-1.4-0.139-0.92c-0.35,0.346-0.563,0.813-0.605,0.902 c-0.115,0.223-0.186,0.328-0.104,0.97c0.084,0.642-1.006,0.64-1.08,0.474c-0.197-0.445-1.275,0.998-1.275,0.998l0.455,0.594 c0,0-3.18,2.486-3.205,2.654c-0.029,0.168-0.822,2.328-0.547,2.971c0.273,0.643,0.969,2.262,1.625,2.313 c0.861,0.072,2.951-0.398,2.951-0.398c0.055,0.143,0.451,0.854,0.451,0.854s1.021-0.035,1.08,0.078 c0.018,0.037,1.234,3.668,0.832,4.148c-0.957,1.457,0.547,3.59,0.965,4.313c0.42,1.238,0.688,0.684,1.24,0.889 c0.678,0.057,1.25,0.313,1.826-0.44c0.166-0.14,0.451-0.028,0.451-0.224c0-0.107,0.494-0.428,0.619-0.729 c0.133-0.063,0.475-0.296,0.707-0.409c0.211-0.014-0.201-0.586,0.217-1.192c0.451-0.181,1.666-1.013,1.666-1.013 c0.057-1.223-0.592-2.729,0.617-3.596c0.777-0.806,1.799-1.266,2.295-2.492c0.139-0.361,0.441-1.104-0.438-0.881 c-0.826,0.211-1.75,0.26-1.313-0.109c-0.051-0.456-0.6-0.668-1.092-1.111c-0.254-0.613-0.654-1.704-0.654-1.704l-0.875-1.349 l0.107-0.279l1.041,1.555l1.037,1.275c0.383,1.277,0.711,1.389,0.711,1.389c0.574-0.205,1.939-0.775,1.939-0.775l1.342-1.307 c0,0-0.139-0.418-0.684-0.943l-0.41-0.25c-0.09,0.258-0.566,0.352-0.566,0.352l-1.156-1.406l0.43-0.088l0.332,0.641l0.795,0.279 c0,0,0.219-0.163,0.629,0.267c0.334-0.028,1.635,0.065,1.938,0.456c0.061,0.078,1.611,4.016,1.918,4.021 c0.137,0.001,0.232,0.055,0.189-0.185c-0.055-0.109,0-2.584,0.08-3.115c0.209-0.447,0.242,0,0.734,0.854 C44.094,24.6,44.094,24.579,44.09,24.559z M30.432,15.017c0.105-0.329,0.738-0.44,0.738-0.44s-0.184,0.339-0.141,0.514 c0.041,0.177-0.289,0.286-0.324,0.701c-0.037,0.416-0.789,0.171-0.85,0.025C29.793,15.672,30.318,15.344,30.432,15.017z M33.125,20.603c-0.467,0-1.863,0.141-2.248-0.138c-0.385-0.279-0.686,0.028-0.961,0.309c-0.182,0.18-0.842-0.187-1.035-0.467 c-0.191-0.279-0.838-0.259-0.838-0.259l0.146-0.796l-1.859-0.09l-1.057,0.314l-0.992,0.027l0.557-0.269l0.693-0.167 c0,0,1.008-0.841,1.309-1.092c0.258-0.213,1.277-0.094,1.277-0.094l1.121,0.821c0,0-0.25,0.644-0.359,0.78 c0.412-0.027,0.896-0.785,0.896-0.785c-0.873-0.816-0.84-1.094-0.84-1.094l1.152,0.822l0.01,0.006c0,0,0.467,1.117,0.662,1.117 c0.189,0,0.436-0.769,0.436-0.769l0.326-0.083c0.146,0.352,0.42,1.146,0.748,0.961c0.189-0.105,0.5-0.011,0.855,0.129 c0.359,0.139,0.602-0.074,0.895,0.186C33.982,21.123,33.318,20.66,33.125,20.603z M33.855,18.684 c-0.479-0.188-2.102,0.418-1.74-0.57c0.193-0.535,0.691-0.646,0.863-0.292c0.043,0.147,0.586,0.374,0.582,0.065 s0.543-0.471,0.621-0.242C33.889,17.857,35.322,18.967,33.855,18.684z M36.918,19.621c-0.268-0.219,0.117-0.404-0.275-0.745 c-0.563-0.491-1.002-0.702-0.234-1.097c0.945-0.122,0.152,0.307,0.309,0.563c0.084,0.136,0.563,0.592,0.938,1.152 C37.963,19.959,37.182,19.84,36.918,19.621z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="-11.4609" cy="8.5801" gradientTransform="matrix(0.9797 0 0 0.9952 41.476 8.3351)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="16.9527">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
-</radialGradient>
-<path d="M37.297,32.337l-0.91,0.925c0,0-0.549,0-0.576,0.224c-0.012,0.095-0.045,0.508-0.135,0.72 c-0.182,0.129-0.402,0.557-0.402,0.557s-0.113,0.822,0.492,0.682C36.373,35.306,38.232,32.785,37.297,32.337z" fill="url(#SVGID_12_)"/>
-<rect fill="none" height="60" width="60"/>
+<path d="M37.297,33.482l-0.91,0.925c0,0-0.549,0-0.576,0.224c-0.012,0.094-0.045,0.508-0.135,0.719 c-0.182,0.13-0.402,0.557-0.402,0.557s-0.113,0.823,0.492,0.683C36.373,36.451,38.232,33.93,37.297,33.482z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="287" x2="287" y1="-288.5059" y2="-343.9819">
+<stop offset="0" style="stop-color:#F0F0F2"/>
+<stop offset="1" style="stop-color:#B3B5B8"/>
+</linearGradient>
+<path d="M52.459,2.898v54.203h-32.11c-0.626,0-1.599-0.401-2.04-0.846l-9.925-9.924 c-0.443-0.441-0.845-1.413-0.845-2.039V2.898H52.459 M53.213,2.145H6.787v42.148c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926 c0.586,0.585,1.743,1.064,2.573,1.064h32.864V2.145L53.213,2.145z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="275.5117" x2="269.9254" y1="-332.5654" y2="-338.1517">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.35" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
+</linearGradient>
+<path d="M8.208,47.189c-0.314-0.348-0.896-0.695-1.297-2.184c0,0,0.66,3.054,9.701,0.04 c0,12.81,3.768,12.81,3.768,12.81c-0.831,0-1.987-0.479-2.573-1.064L8.208,47.189z" fill="url(#SVGID_13_)"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="30.414,14.408 30.414,0 0.414,0 0.414,14.41 0,14.824 0.414,15.237 0.414,30 30.414,30 30.414,15.236 30.828,14.821 "/>
-<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" opacity="0.35"/>
+<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.415" x2="15.415" y1="28.6694" y2="12.5688">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.6606" style="stop-color:#E0E1E2"/>
- <stop offset="1" style="stop-color:#B9BCBD"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E0E1E2"/>
+<stop offset="1" style="stop-color:#B9BCBD"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="27.081,28.823 3.749,28.823 3.749,14.473 15.414,5.489 27.081,14.473 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.415" x2="15.415" y1="17.313" y2="28.6013">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.6606" style="stop-color:#E0E1E2"/>
- <stop offset="1" style="stop-color:#B9BCBD"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E0E1E2"/>
+<stop offset="1" style="stop-color:#B9BCBD"/>
</linearGradient>
<path d="M15.414,6.668l10.736,8.264V27.89H4.682V14.932L15.414,6.668 M15.414,5.489L3.749,14.473v14.351 h23.333V14.473L15.414,5.489L15.414,5.489z" fill="url(#SVGID_2__)"/>
-<polygon opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 "/>
+<polygon fill-opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 " stroke-opacity="0.2"/>
<polygon fill="#727272" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,6.655 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.416" x2="15.416" y1="17.9946" y2="29.1519">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<rect fill="url(#SVGID_3__)" height="10.501" width="7.001" x="11.916" y="18.322"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.416" x2="15.416" y1="28.7466" y2="18.3602">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<path d="M17.98,19.257v8.633h-5.133v-8.633H17.98 M18.917,18.322h-7.001v10.501h7.001V18.322L18.917,18.322z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.4136" x2="15.4136" y1="0.0352" y2="17.7271">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="0.2606" style="stop-color:#DE4E29"/>
- <stop offset="1" style="stop-color:#D82E09"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="0.2606" style="stop-color:#DE4E29"/>
+<stop offset="1" style="stop-color:#D82E09"/>
</linearGradient>
<path d="M15.414,5.489l11.667,11.667l2.333-2.333c0,0-12.586-12.554-13.171-13.175 c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333L15.414,5.489z" fill="url(#SVGID_5__)"/>
<radialGradient cx="15.2969" cy="1.7559" gradientUnits="userSpaceOnUse" id="SVGID_6__" r="18.6679">
- <stop offset="0" style="stop-color:#F7D481"/>
- <stop offset="1" style="stop-color:#F5340A"/>
+<stop offset="0" style="stop-color:#F7D481"/>
+<stop offset="1" style="stop-color:#F5340A"/>
</radialGradient>
<path d="M14.553,2.616c0.724-0.688,1.102-0.653,1.689-0.034c0.516,0.549,10.433,10.442,12.705,12.709 l0.467-0.468c0,0-12.586-12.554-13.171-13.175c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14 l0.467,0.465C4.134,13.029,13.917,3.225,14.553,2.616z" fill="url(#SVGID_6__)"/>
-<rect height="1.168" opacity="0.2" width="7.001" x="11.916" y="18.322"/>
+<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.916" y="18.322"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_url_address_work.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_url_address_work.svg Thu May 27 13:10:59 2010 +0300
@@ -1,246 +1,191 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.999" x2="29.999" y1="2.0776" y2="57.6216">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.4667" style="stop-color:#E6E6E6"/>
- <stop offset="0.9576" style="stop-color:#C2C2C2"/>
-</linearGradient>
-<path d="M53.428,41.199c0,1.027-0.582,2.461-1.297,3.188L40.027,56.681C39.314,57.407,37.904,58,36.891,58 H6.57V2h46.857V41.199z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 5045.8477 1885.916)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5015.8486" x2="5015.8486" y1="1883.5537" y2="1827.7893">
- <stop offset="0" style="stop-color:#F0F0F2"/>
- <stop offset="1" style="stop-color:#B3B5B8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="1.8594" y2="57.8613">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#F2F2F2"/>
</linearGradient>
-<path d="M7.49,2.932h45.02v38.268c0,0.775-0.49,1.979-1.031,2.527l-12.1,12.293 c-0.541,0.549-1.725,1.047-2.488,1.047H7.49V2.932 M6.57,2v56h30.32c1.014,0,2.424-0.593,3.137-1.319l12.104-12.294 c0.715-0.727,1.297-2.16,1.297-3.188V2H6.57L6.57,2z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 5045.8477 1885.916)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="5006.7441" x2="4999.812" y1="1841.873" y2="1834.9412">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.297" style="stop-color:#FFFFFF"/>
- <stop offset="0.5576" style="stop-color:#E6E6E6"/>
- <stop offset="0.7515" style="stop-color:#BCBCBC"/>
- <stop offset="1" style="stop-color:#8E8E8E"/>
+<path d="M6.787,44.293c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064 h32.864V2.145H6.787V44.293z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="3.8799" y2="55.861">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
-<path d="M51.736,44.787c0.379-0.43,1.09-0.859,1.576-2.705c0,0-0.803,3.783-11.83,0.052 C41.482,58,36.891,58,36.891,58c1.014,0,2.424-0.593,3.137-1.319L51.736,44.787z" fill="url(#SVGID_3_)"/>
-<ellipse cx="30" cy="28.558" opacity="0.2" rx="15.107" ry="15.347"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="42.5859" y2="12.1111">
- <stop offset="0" style="stop-color:#004E8C"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<path d="M20.349,55.855c-0.298,0-0.949-0.27-1.16-0.48l-9.924-9.924c-0.21-0.21-0.479-0.859-0.479-1.158 V4.145h42.426v51.71H20.349z" fill="url(#SVGID_2_)"/>
+<path d="M30,46.05c-8.882,0-16.107-7.333-16.107-16.346c0-9.014,7.226-16.348,16.107-16.348 c8.881,0,16.107,7.334,16.107,16.348C46.107,38.717,38.881,46.05,30,46.05L30,46.05z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<ellipse cx="30" cy="29.703" fill-opacity="0.2" rx="15.107" ry="15.347" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.0005" x2="30.0005" y1="43.7314" y2="13.2561">
+<stop offset="0" style="stop-color:#004E8C"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
-<ellipse cx="30" cy="27.416" fill="url(#SVGID_4_)" rx="15.107" ry="15.346"/>
-<radialGradient cx="-11.9336" cy="13.8384" gradientTransform="matrix(0.9797 0 0 0.9952 41.476 8.3351)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="18.5643">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<ellipse cx="30" cy="28.561" fill="url(#SVGID_3_)" rx="15.107" ry="15.346"/>
+<radialGradient cx="-23.8765" cy="20.2261" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="18.5636">
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
-<ellipse cx="30" cy="27.416" fill="url(#SVGID_5_)" rx="14.721" ry="14.953"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="12.3306" y2="42.445">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#88D6EB"/>
+<ellipse cx="30" cy="28.561" fill="url(#SVGID_4_)" rx="14.721" ry="14.953"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.9995" x2="29.9995" y1="13.4756" y2="43.5901">
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#88D6EB"/>
</linearGradient>
-<path d="M30,12.462c-8.129,0-14.721,6.696-14.721,14.954c0,8.26,6.592,14.953,14.721,14.953 c8.131,0,14.721-6.693,14.721-14.953C44.721,19.158,38.131,12.462,30,12.462z M30,41.061c-7.645,0-13.863-6.316-13.863-14.08 c0-7.766,6.219-14.081,13.863-14.081s13.861,6.315,13.861,14.081C43.861,34.744,37.645,41.061,30,41.061z" fill="url(#SVGID_6_)" opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.5195" x2="17.8594" y1="29.4512" y2="29.4512">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<path d="M30,13.607c-8.129,0-14.721,6.696-14.721,14.954c0,8.259,6.592,14.953,14.721,14.953 c8.131,0,14.721-6.693,14.721-14.953C44.721,20.303,38.131,13.607,30,13.607z M30,42.205c-7.645,0-13.862-6.316-13.862-14.079 c0-7.766,6.218-14.082,13.862-14.082s13.861,6.316,13.861,14.082C43.861,35.889,37.645,42.205,30,42.205z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.5205" x2="17.8594" y1="30.5957" y2="30.5957">
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M16.66,27.172c-0.156-0.211-0.51-0.211-0.666-0.211c-0.307,0-0.473,0.223-0.475,0.441 v0.016v0.021c0,0.385,0.021,0.816,0.066,1.34c0.01,0.098,0.02,0.198,0.033,0.297l0.018,0.144c0.039,0.312,0.086,0.617,0.139,0.913 l0.023,0.129c0.023,0.119,0.045,0.232,0.068,0.348c0.064,0.291,0.141,0.592,0.236,0.924c0.012,0.049,0.025,0.098,0.035,0.143 c0.021,0.078,0.039,0.156,0.064,0.231l0.004,0.011l0.008,0.023c0-0.006-0.006-0.018-0.006-0.026l0.844-0.058 c0.014-0.135,0.02-0.273,0.014-0.414c-0.006-0.216-0.016-0.482-0.076-0.709l0.785-1.069l0.084-0.116v-0.145v-0.833v-0.183 l-0.127-0.127L16.66,27.172z" fill="url(#SVGID_7_)" opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="20.0322" x2="44.5176" y1="25.0957" y2="25.0957">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#000000"/>
+<path d="M16.661,28.317c-0.156-0.211-0.51-0.211-0.666-0.211c-0.308,0-0.473,0.223-0.475,0.442 v0.015v0.022c0,0.384,0.021,0.816,0.065,1.34c0.01,0.098,0.02,0.197,0.033,0.296l0.018,0.144c0.04,0.313,0.086,0.618,0.139,0.913 l0.024,0.13c0.022,0.118,0.044,0.231,0.067,0.347c0.064,0.291,0.141,0.592,0.236,0.924c0.013,0.049,0.025,0.098,0.036,0.144 c0.021,0.078,0.039,0.155,0.063,0.231l0.005,0.01l0.007,0.023c0-0.006-0.005-0.018-0.005-0.025l0.844-0.059 c0.014-0.134,0.019-0.273,0.014-0.413c-0.007-0.216-0.016-0.483-0.077-0.71l0.785-1.069l0.084-0.115v-0.146v-0.833v-0.182 l-0.127-0.127L16.661,28.317z" fill="url(#SVGID_6_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="20.0322" x2="44.5176" y1="26.2412" y2="26.2412">
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M44.512,24.485c-0.01-0.056-0.021-0.099-0.031-0.138 c-0.008-0.029-0.014-0.061-0.021-0.088c-0.072-0.355-0.166-0.72-0.273-1.094l-0.014-0.04c-0.021-0.083-0.047-0.169-0.072-0.251 c-0.133-0.42-0.277-0.822-0.43-1.193c-0.02-0.045-0.041-0.09-0.061-0.134l-0.029-0.071c-0.148-0.34-0.309-0.679-0.477-1.004 l-0.023-0.042c-0.033-0.065-0.066-0.13-0.1-0.194c-0.211-0.381-0.424-0.746-0.648-1.082c-0.021-0.035-0.047-0.072-0.072-0.111 c-0.02-0.021-0.031-0.042-0.047-0.065c-0.213-0.313-0.438-0.618-0.668-0.907l-0.047-0.059c-0.031-0.039-0.061-0.08-0.094-0.12 c-0.268-0.325-0.551-0.644-0.844-0.942c-0.041-0.039-0.084-0.081-0.125-0.125L40.4,16.791c-0.264-0.264-0.545-0.521-0.834-0.768 l-0.057-0.051c-0.027-0.026-0.059-0.051-0.088-0.074c-0.314-0.264-0.656-0.522-1.014-0.771c-0.041-0.029-0.086-0.061-0.131-0.088 l-0.055-0.037c-0.32-0.215-0.656-0.422-0.99-0.611l-0.051-0.029c-0.029-0.017-0.059-0.031-0.084-0.049 c-0.375-0.202-0.764-0.395-1.158-0.566l-0.1-0.041L35.73,13.66c-0.105-0.045-0.209-0.081-0.313-0.119 c-0.055-0.02-0.107-0.037-0.158-0.057l-0.201-0.076l-0.182,0.116c-0.117,0.075-0.59,0.351-0.869,0.511 c-0.309-0.041-1.057-0.137-1.811-0.211c0.23-0.023,0.555-0.05,1.006-0.08l0.064-0.861l-0.033-0.01 c-0.027-0.006-0.055-0.013-0.082-0.02l-0.064-0.012l-0.053-0.012c-0.461-0.094-0.896-0.162-1.326-0.209h-0.004l-0.061-0.006 c-0.492-0.051-0.992-0.076-1.488-0.076c-0.438,0-0.891,0.024-1.385,0.072c-0.078,0.007-0.148,0.015-0.227,0.023 c-0.488,0.055-0.916,0.121-1.32,0.205l-0.016,0.002h-0.008c-0.426,0.092-0.854,0.203-1.311,0.344 c-0.039,0.014-0.08,0.026-0.121,0.039l-0.092,0.031c-0.387,0.125-0.766,0.266-1.125,0.416c-0.027,0.014-0.051,0.021-0.07,0.027 l-0.055,0.023c-0.398,0.172-0.797,0.367-1.191,0.582c-0.041,0.021-0.082,0.047-0.125,0.071l-0.051,0.028 c-0.109,0.064-0.221,0.135-0.33,0.203l-0.143,0.092l-0.791,0.49l0.875,0.297c0.131,0.045,0.271,0.066,0.42,0.066 c0.471,0,0.928-0.236,1.295-0.424c0.146-0.076,0.365-0.189,0.457-0.207c0.107,0.032,0.215,0.049,0.322,0.049 c0.4,0,0.729-0.221,1.02-0.415l0.076-0.05c0.098-0.031,0.258-0.092,0.578-0.213c0.33-0.127,0.928-0.354,1.088-0.393 c0.311-0.004,0.68-0.049,0.943-0.215c0.248,0.041,0.688,0.111,1.143,0.172c-0.033,0.021-0.066,0.041-0.096,0.07 c-0.146,0.137-0.939,0.381-1.184,0.414c-0.457,0.057-0.639,0.291-0.713,0.475c-0.094,0.242-0.039,0.484,0.057,0.68 c-0.174,0.114-0.385,0.244-0.566,0.342c0-0.004,0.002-0.009,0.002-0.014c0.064-0.371,0.113-0.639-0.064-0.852 c-0.09-0.111-0.225-0.172-0.365-0.172c-0.209,0-0.371,0.13-0.502,0.258c-0.365,0.359-0.588,0.809-0.672,0.977l-0.016,0.031 l-0.014,0.025c-0.156,0.311-0.223,0.527-0.135,1.211c-0.039,0.027-0.154,0.072-0.314,0.072c-0.02,0-0.039-0.002-0.055-0.002 c-0.104-0.114-0.246-0.18-0.406-0.18l0,0c-0.369,0-0.873,0.424-1.496,1.258l-0.199,0.268l0.203,0.266l0.188,0.246 c-2.973,2.334-2.994,2.467-3.023,2.66c-0.008,0.02-0.033,0.1-0.068,0.211c-0.443,1.398-0.688,2.445-0.449,3.004 c0.553,1.299,1.178,2.512,1.986,2.578c0.07,0.006,0.148,0.008,0.234,0.008c0.738,0,1.939-0.229,2.518-0.348 c0.105,0.204,0.236,0.441,0.307,0.57l0.129,0.23l0.26-0.008c0,0,0.141-0.006,0.316-0.006c0.203,0,0.338,0.008,0.424,0.014 c0.314,0.938,0.918,3.094,0.805,3.539l-0.002,0.002c-1.014,1.549,0.215,3.563,0.807,4.533c0.049,0.076,0.09,0.145,0.125,0.205 c0.229,0.66,0.506,1.098,1.09,1.098c0.043,0,0.09-0.004,0.131-0.005c0.033-0.003,0.07-0.005,0.104-0.005 c0.066,0,0.111,0.01,0.16,0.027l0.055,0.02l0.055,0.004c0.109,0.009,0.215,0.023,0.32,0.039c0.178,0.025,0.365,0.051,0.557,0.051 c0.508,0,0.908-0.195,1.258-0.613c0.014,0,0.025-0.002,0.037-0.004c0.367-0.051,0.504-0.238,0.549-0.404 c0.029-0.028,0.064-0.063,0.094-0.09c0.146-0.134,0.316-0.293,0.436-0.482c0.051-0.031,0.113-0.068,0.182-0.109 c0.117-0.073,0.25-0.154,0.354-0.209c0.092-0.028,0.174-0.084,0.234-0.161c0.148-0.183,0.119-0.394,0.094-0.562 c-0.025-0.173-0.051-0.35,0.043-0.541c0.52-0.256,1.445-0.882,1.594-0.984v0.012c-0.008,0.083-0.033,0.309-0.07,0.45 c-0.197,0.2-0.359,0.503-0.414,0.606l-0.031,0.066l-0.012,0.074c-0.012,0.098-0.066,0.607,0.215,0.938 c0.143,0.166,0.346,0.258,0.574,0.258c0.07,0,0.146-0.01,0.223-0.027c0.727-0.168,2.01-1.936,2.113-2.91 c0.053-0.473-0.129-0.842-0.494-1.018l-0.273-0.131l-0.217,0.217l-0.791,0.805c-0.268,0.025-0.479,0.107-0.619,0.234 c0.008-0.344-0.025-0.695-0.061-1.039c-0.109-1.037-0.129-1.695,0.496-2.146l0.031-0.023l0.029-0.027 c0.223-0.234,0.475-0.438,0.74-0.654c0.619-0.506,1.26-1.029,1.643-1.975l0.016-0.041c0.123-0.323,0.309-0.811,0.059-1.183 c-0.063-0.091-0.193-0.233-0.441-0.286c0.326-0.131,0.576-0.236,0.6-0.245l0.076-0.032l0.059-0.059l1.34-1.303l0.195-0.192 l-0.086-0.263c-0.012-0.034-0.086-0.24-0.291-0.535c0.391,0.053,0.729,0.148,0.834,0.234c0.043,0.088,0.121,0.283,0.209,0.488 c1.471,3.527,1.678,3.708,2.063,3.715c0.014,0,0.025,0.001,0.035,0.004c0.029,0,0.059,0.002,0.082,0.002 c0.221,0,0.344-0.114,0.398-0.182c0.16-0.195,0.117-0.436,0.1-0.525l-0.006-0.029c-0.018-0.213-0.006-1.162,0.023-1.94 c0.002,0.003,0.004,0.005,0.004,0.007l0.791-0.319L44.512,24.485z M32.908,20.172c-0.061,0.001-0.129,0.006-0.199,0.006 c-0.227,0.014-0.486,0.023-0.742,0.023c-0.672,0-0.826-0.083-0.842-0.094c-0.082-0.057-0.162-0.102-0.248-0.133 c0.154-0.035,0.328-0.156,0.508-0.508c0.176,0.348,0.416,0.656,0.785,0.656c0.1,0,0.195-0.023,0.287-0.07 C32.582,20.055,32.785,20.125,32.908,20.172z M32.645,18.264c-0.053,0-0.094-0.002-0.125-0.005c0.033-0.091,0.076-0.146,0.107-0.175 c0.043,0.066,0.104,0.125,0.166,0.175C32.74,18.262,32.691,18.264,32.645,18.264z M29.963,19.178 c0.23,0.461,0.402,0.658,0.539,0.745c-0.334,0.026-0.586,0.242-0.797,0.448c-0.145-0.053-0.396-0.206-0.473-0.314 c-0.043-0.064-0.096-0.119-0.156-0.168C29.443,19.783,29.766,19.438,29.963,19.178z M28.689,18.842l-0.48-0.025l-1.605-0.078 c0.197-0.164,0.385-0.318,0.492-0.409c0.031-0.013,0.145-0.044,0.428-0.044c0.17,0,0.332,0.013,0.438,0.021L28.689,18.842z" fill="url(#SVGID_8_)" opacity="0.3"/>
-<radialGradient cx="-11.4893" cy="8.5776" gradientTransform="matrix(0.9797 0 0 0.9952 41.476 8.3351)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="16.9394">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<path d="M44.512,25.63c-0.01-0.056-0.021-0.098-0.031-0.137 c-0.008-0.03-0.014-0.061-0.021-0.088c-0.072-0.355-0.166-0.72-0.273-1.094l-0.014-0.04c-0.021-0.083-0.047-0.168-0.072-0.251 c-0.133-0.42-0.277-0.823-0.43-1.193c-0.02-0.045-0.041-0.089-0.061-0.134l-0.029-0.071c-0.148-0.34-0.309-0.679-0.477-1.004 l-0.023-0.042c-0.033-0.065-0.066-0.13-0.1-0.194c-0.211-0.38-0.424-0.746-0.648-1.082c-0.021-0.036-0.047-0.073-0.072-0.111 c-0.02-0.022-0.031-0.042-0.047-0.066c-0.213-0.313-0.438-0.618-0.668-0.907l-0.047-0.059c-0.031-0.038-0.061-0.08-0.094-0.12 c-0.268-0.326-0.551-0.644-0.844-0.943c-0.041-0.039-0.084-0.081-0.125-0.124L40.4,17.936c-0.264-0.263-0.545-0.522-0.834-0.768 l-0.057-0.05c-0.027-0.027-0.059-0.051-0.088-0.075c-0.314-0.264-0.656-0.522-1.014-0.771c-0.041-0.03-0.086-0.06-0.131-0.088 l-0.055-0.037c-0.32-0.215-0.656-0.422-0.99-0.611l-0.051-0.029c-0.029-0.017-0.059-0.031-0.084-0.049 c-0.375-0.202-0.764-0.394-1.158-0.567l-0.1-0.041l-0.109-0.045c-0.105-0.044-0.209-0.081-0.313-0.119 c-0.055-0.019-0.107-0.038-0.158-0.057l-0.201-0.076l-0.182,0.116c-0.117,0.076-0.59,0.351-0.869,0.51 c-0.309-0.041-1.057-0.136-1.811-0.21c0.23-0.023,0.555-0.05,1.006-0.081l0.064-0.861l-0.033-0.009 c-0.027-0.006-0.055-0.013-0.082-0.02l-0.064-0.012l-0.053-0.011c-0.461-0.094-0.896-0.163-1.326-0.208h-0.004l-0.061-0.006 c-0.492-0.051-0.991-0.077-1.488-0.077c-0.438,0-0.891,0.024-1.384,0.072c-0.078,0.007-0.149,0.015-0.228,0.023 c-0.488,0.055-0.915,0.122-1.319,0.205l-0.016,0.002l-0.009,0.001c-0.426,0.091-0.853,0.202-1.311,0.343 c-0.039,0.014-0.08,0.027-0.12,0.04l-0.092,0.03c-0.387,0.125-0.766,0.266-1.125,0.417c-0.028,0.013-0.051,0.021-0.071,0.028 l-0.055,0.023c-0.397,0.172-0.796,0.366-1.19,0.582c-0.042,0.022-0.083,0.047-0.125,0.071l-0.052,0.029 c-0.109,0.064-0.221,0.134-0.33,0.202l-0.143,0.093l-0.791,0.49l0.875,0.297c0.132,0.045,0.272,0.067,0.42,0.067 c0.471,0,0.928-0.236,1.295-0.424c0.147-0.077,0.366-0.19,0.457-0.208c0.107,0.032,0.215,0.049,0.323,0.049 c0.399,0,0.729-0.221,1.019-0.415l0.077-0.05c0.097-0.03,0.258-0.091,0.578-0.213c0.329-0.126,0.928-0.354,1.088-0.392 c0.31-0.004,0.679-0.049,0.942-0.215c0.248,0.042,0.688,0.112,1.143,0.172c-0.033,0.021-0.065,0.042-0.095,0.07 c-0.146,0.137-0.94,0.382-1.185,0.414c-0.457,0.057-0.639,0.292-0.712,0.476c-0.094,0.242-0.04,0.483,0.056,0.679 c-0.174,0.115-0.385,0.244-0.566,0.342c0-0.004,0.002-0.009,0.002-0.014c0.064-0.371,0.114-0.638-0.064-0.852 c-0.09-0.111-0.224-0.172-0.364-0.172c-0.21,0-0.371,0.13-0.502,0.259c-0.366,0.359-0.588,0.808-0.672,0.977l-0.016,0.031 l-0.014,0.025c-0.157,0.31-0.223,0.527-0.136,1.21c-0.039,0.028-0.154,0.073-0.313,0.073c-0.02,0-0.039-0.001-0.055-0.002 c-0.104-0.114-0.246-0.179-0.406-0.179l0,0c-0.37,0-0.873,0.423-1.497,1.257l-0.199,0.268l0.203,0.266l0.188,0.246 c-2.972,2.334-2.994,2.467-3.023,2.661c-0.007,0.02-0.033,0.1-0.068,0.211c-0.442,1.398-0.688,2.445-0.449,3.004 c0.554,1.298,1.179,2.511,1.987,2.577c0.07,0.006,0.147,0.009,0.233,0.009c0.739,0,1.94-0.229,2.518-0.348 c0.105,0.204,0.237,0.442,0.307,0.57l0.129,0.231l0.261-0.009c0,0,0.141-0.005,0.315-0.005c0.203,0,0.338,0.007,0.425,0.014 c0.314,0.937,0.917,3.093,0.805,3.539l-0.003,0.002c-1.014,1.548,0.216,3.563,0.808,4.532c0.048,0.077,0.089,0.146,0.125,0.205 c0.228,0.661,0.505,1.098,1.089,1.098c0.043,0,0.09-0.004,0.132-0.004c0.033-0.003,0.069-0.005,0.104-0.005 c0.066,0,0.11,0.009,0.159,0.026l0.055,0.02l0.056,0.004c0.109,0.01,0.214,0.023,0.32,0.039c0.177,0.025,0.364,0.052,0.556,0.052 c0.508,0,0.909-0.195,1.258-0.614c0.014,0,0.025-0.001,0.037-0.003c0.367-0.052,0.504-0.239,0.549-0.404 c0.029-0.028,0.064-0.063,0.094-0.091c0.146-0.133,0.316-0.292,0.436-0.481c0.051-0.032,0.113-0.068,0.182-0.109 c0.117-0.073,0.25-0.154,0.354-0.21c0.092-0.027,0.174-0.084,0.234-0.16c0.148-0.184,0.119-0.394,0.094-0.563 c-0.025-0.172-0.051-0.35,0.043-0.541c0.52-0.256,1.445-0.881,1.594-0.984v0.012c-0.008,0.084-0.033,0.309-0.07,0.451 c-0.197,0.199-0.359,0.503-0.414,0.605l-0.031,0.066l-0.012,0.074c-0.012,0.098-0.066,0.608,0.215,0.938 c0.143,0.165,0.346,0.258,0.574,0.258c0.07,0,0.146-0.01,0.223-0.028c0.727-0.167,2.01-1.935,2.113-2.91 c0.053-0.473-0.129-0.842-0.494-1.017l-0.273-0.131l-0.217,0.216l-0.791,0.806c-0.268,0.025-0.479,0.106-0.619,0.234 c0.008-0.344-0.025-0.696-0.061-1.04c-0.109-1.036-0.129-1.695,0.496-2.146l0.031-0.023l0.029-0.028 c0.223-0.233,0.475-0.438,0.74-0.654c0.619-0.506,1.26-1.028,1.643-1.975l0.016-0.041c0.123-0.323,0.309-0.811,0.059-1.182 c-0.063-0.091-0.193-0.233-0.441-0.286c0.326-0.131,0.576-0.237,0.6-0.246l0.076-0.032l0.059-0.058l1.34-1.304l0.195-0.192 l-0.086-0.263c-0.012-0.034-0.086-0.239-0.291-0.535c0.391,0.053,0.729,0.148,0.834,0.234c0.043,0.088,0.121,0.283,0.209,0.488 c1.471,3.528,1.678,3.708,2.063,3.715c0.014,0,0.025,0.001,0.035,0.003c0.029,0.001,0.059,0.002,0.082,0.002 c0.221,0,0.344-0.114,0.398-0.181c0.16-0.196,0.117-0.437,0.1-0.526l-0.006-0.03c-0.018-0.212-0.006-1.162,0.023-1.94 c0.002,0.003,0.004,0.004,0.004,0.007l0.791-0.319L44.512,25.63z M32.908,21.317c-0.061,0.001-0.129,0.005-0.199,0.006 c-0.227,0.013-0.486,0.023-0.742,0.023c-0.672,0-0.826-0.083-0.842-0.095c-0.081-0.057-0.162-0.101-0.247-0.133 c0.153-0.035,0.327-0.155,0.507-0.508c0.176,0.348,0.416,0.657,0.785,0.657c0.1,0,0.195-0.024,0.287-0.071 C32.582,21.2,32.785,21.27,32.908,21.317z M32.645,19.408c-0.053,0-0.094-0.002-0.125-0.004c0.033-0.091,0.076-0.145,0.107-0.175 c0.043,0.067,0.104,0.125,0.166,0.175C32.74,19.407,32.691,19.408,32.645,19.408z M29.963,20.323 c0.231,0.46,0.402,0.658,0.539,0.745c-0.334,0.027-0.586,0.242-0.796,0.448c-0.146-0.052-0.397-0.206-0.473-0.314 c-0.043-0.064-0.097-0.119-0.156-0.167C29.444,20.928,29.766,20.583,29.963,20.323z M28.69,19.986l-0.48-0.025l-1.606-0.078 c0.198-0.164,0.385-0.318,0.493-0.409c0.03-0.012,0.145-0.043,0.427-0.043c0.17,0,0.332,0.012,0.438,0.021L28.69,19.986z" fill="url(#SVGID_7_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="-23.4248" cy="14.9639" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="16.9456">
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
-<path d="M15.949,27.407c0,0,0,0,0,0.003c0,0.002,0,0.006,0,0.01c0,0.445,0.029,0.886,0.064,1.32 c0.014,0.144,0.033,0.285,0.049,0.43c0.037,0.297,0.084,0.594,0.135,0.886c0.031,0.153,0.059,0.31,0.09,0.464 c0.066,0.301,0.145,0.6,0.229,0.893c0.035,0.121,0.061,0.245,0.096,0.363c0.008,0.012,0.012,0.025,0.014,0.038 c0.012-0.116,0.016-0.234,0.012-0.354c-0.027-0.861-0.164-0.75-0.164-0.75l0.955-1.305v-0.833l-1.119-1.138 C16.309,27.434,15.949,27.376,15.949,27.407z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="-11.459" cy="8.5776" gradientTransform="matrix(0.9797 0 0 0.9952 41.476 8.3351)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="16.9575">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
+<path d="M15.949,28.552c0,0,0,0,0,0.002c0,0.003,0,0.006,0,0.01c0,0.446,0.029,0.886,0.065,1.32 c0.013,0.144,0.032,0.286,0.048,0.43c0.038,0.298,0.084,0.594,0.135,0.887c0.031,0.153,0.06,0.309,0.09,0.463 c0.066,0.301,0.146,0.6,0.229,0.893c0.035,0.121,0.062,0.246,0.097,0.363c0.007,0.013,0.011,0.025,0.013,0.039 c0.012-0.117,0.016-0.234,0.012-0.355c-0.027-0.86-0.163-0.75-0.163-0.75l0.955-1.305v-0.833l-1.12-1.138 C16.309,28.578,15.949,28.521,15.949,28.552z" fill="url(#SVGID_8_)"/>
+<radialGradient cx="-23.4033" cy="14.9658" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="16.9596">
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
+</radialGradient>
+<path d="M24.947,15.643c0.412,0.139,0.751-0.143,1.136-0.394c0.136-0.027,1.647-0.641,1.813-0.641 c0.163,0,0.712-0.021,0.849-0.243c0,0,2.365,0.419,2.724,0.279c0.192-0.077,1.009-0.144,1.708-0.189 c-0.037-0.009-0.076-0.02-0.113-0.029c-0.039-0.008-0.074-0.013-0.113-0.021c-0.439-0.091-0.885-0.162-1.336-0.208 c0,0-0.006,0-0.01-0.002c-0.476-0.048-0.957-0.074-1.447-0.074c-0.453,0-0.901,0.027-1.345,0.07 c-0.077,0.007-0.153,0.016-0.233,0.026c-0.428,0.047-0.853,0.11-1.27,0.195c-0.007,0.003-0.016,0.003-0.021,0.004 c-0.433,0.09-0.855,0.203-1.272,0.331c-0.071,0.023-0.141,0.047-0.209,0.069c-0.37,0.123-0.734,0.257-1.091,0.405 c-0.041,0.019-0.084,0.035-0.125,0.051c-0.394,0.171-0.775,0.359-1.15,0.563c-0.056,0.03-0.11,0.064-0.165,0.095 c-0.161,0.09-0.311,0.19-0.467,0.288C23.581,16.479,24.538,15.503,24.947,15.643z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="-23.4023" cy="14.9634" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="16.9557">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.3152" style="stop-color:#B2F56E"/>
+<stop offset="0.7273" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M24.947,14.498c0.412,0.139,0.75-0.143,1.135-0.395c0.137-0.027,1.648-0.641,1.813-0.641 s0.713-0.021,0.85-0.243c0,0,2.365,0.419,2.723,0.278c0.193-0.076,1.01-0.143,1.709-0.189c-0.037-0.008-0.076-0.02-0.113-0.029 c-0.039-0.008-0.074-0.013-0.113-0.021c-0.439-0.091-0.885-0.161-1.336-0.208c0,0-0.006,0-0.01-0.002 c-0.477-0.048-0.957-0.074-1.447-0.074c-0.453,0-0.902,0.027-1.346,0.07c-0.076,0.008-0.152,0.016-0.232,0.026 c-0.428,0.047-0.854,0.11-1.27,0.195c-0.008,0.003-0.016,0.003-0.021,0.005c-0.432,0.09-0.855,0.203-1.271,0.33 c-0.072,0.023-0.141,0.047-0.209,0.068c-0.371,0.123-0.734,0.258-1.092,0.406c-0.041,0.019-0.084,0.034-0.125,0.051 c-0.393,0.171-0.775,0.359-1.15,0.563c-0.055,0.03-0.109,0.064-0.164,0.096c-0.162,0.09-0.311,0.189-0.467,0.287 C23.58,15.334,24.537,14.357,24.947,14.498z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="-11.458" cy="8.5742" gradientTransform="matrix(0.9797 0 0 0.9952 41.476 8.3351)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="16.9562">
- <stop offset="0.3152" style="stop-color:#B2F56E"/>
- <stop offset="0.7273" style="stop-color:#5CBF1B"/>
- <stop offset="1" style="stop-color:#227A00"/>
+<path d="M44.09,25.703c-0.016-0.073-0.037-0.142-0.053-0.213c-0.07-0.356-0.164-0.708-0.266-1.054 c-0.025-0.094-0.051-0.189-0.08-0.282c-0.125-0.394-0.264-0.781-0.416-1.159c-0.029-0.065-0.061-0.131-0.09-0.196 c-0.143-0.333-0.297-0.658-0.463-0.977c-0.037-0.077-0.078-0.155-0.117-0.23c-0.197-0.359-0.406-0.709-0.627-1.051 c-0.041-0.059-0.084-0.114-0.121-0.173c-0.205-0.303-0.42-0.596-0.648-0.881c-0.043-0.055-0.088-0.114-0.135-0.173 c-0.262-0.314-0.533-0.619-0.82-0.914c-0.047-0.05-0.098-0.098-0.15-0.148c-0.26-0.259-0.535-0.511-0.813-0.75 c-0.047-0.04-0.092-0.083-0.141-0.123c-0.316-0.261-0.645-0.511-0.982-0.746c-0.061-0.042-0.119-0.082-0.182-0.121 c-0.311-0.211-0.631-0.411-0.961-0.595c-0.047-0.025-0.088-0.053-0.133-0.077c-0.365-0.199-0.74-0.383-1.123-0.55 c-0.07-0.029-0.139-0.055-0.205-0.085c-0.15-0.063-0.303-0.112-0.455-0.17c-0.182,0.118-1.016,0.597-1.016,0.597 s-3.622-0.502-3.869-0.251c-0.249,0.251-1.213,0.508-1.434,0.537c-0.219,0.03-0.674,0.148-0.129,0.832 c-0.081,0.084-1.642,1.186-1.642,0.686c0-0.502,0.351-1.4-0.139-0.919c-0.351,0.346-0.563,0.813-0.605,0.902 c-0.115,0.223-0.187,0.328-0.104,0.97c0.085,0.642-1.005,0.64-1.08,0.473c-0.196-0.445-1.274,0.999-1.274,0.999l0.455,0.594 c0,0-3.181,2.486-3.206,2.654c-0.028,0.168-0.822,2.328-0.547,2.97c0.274,0.644,0.969,2.262,1.626,2.313 c0.861,0.072,2.951-0.398,2.951-0.398c0.055,0.142,0.45,0.854,0.45,0.854s1.021-0.036,1.081,0.077 c0.018,0.038,1.234,3.668,0.832,4.149c-0.957,1.456,0.547,3.589,0.965,4.312c0.419,1.238,0.688,0.684,1.239,0.889 c0.679,0.058,1.25,0.313,1.826-0.439c0.166-0.141,0.451-0.029,0.451-0.225c0-0.107,0.494-0.427,0.619-0.729 c0.133-0.063,0.475-0.297,0.707-0.41c0.211-0.014-0.201-0.586,0.217-1.191c0.451-0.182,1.666-1.014,1.666-1.014 c0.057-1.223-0.592-2.729,0.617-3.595c0.777-0.807,1.799-1.266,2.295-2.493c0.139-0.361,0.441-1.104-0.438-0.881 c-0.826,0.212-1.75,0.26-1.313-0.109c-0.051-0.456-0.6-0.667-1.092-1.111c-0.254-0.614-0.654-1.704-0.654-1.704l-0.875-1.349 l0.107-0.279l1.041,1.555l1.037,1.276c0.383,1.277,0.711,1.388,0.711,1.388c0.574-0.205,1.939-0.775,1.939-0.775l1.342-1.306 c0,0-0.139-0.417-0.684-0.943l-0.41-0.25c-0.09,0.257-0.566,0.352-0.566,0.352l-1.156-1.406l0.43-0.088l0.332,0.641l0.795,0.279 c0,0,0.219-0.163,0.629,0.267c0.334-0.028,1.635,0.065,1.938,0.457c0.061,0.077,1.611,4.015,1.918,4.02 c0.137,0.001,0.232,0.055,0.189-0.184c-0.055-0.11,0-2.585,0.08-3.115c0.209-0.448,0.242-0.001,0.734,0.853 C44.094,25.745,44.094,25.724,44.09,25.703z M30.432,16.162c0.106-0.329,0.738-0.441,0.738-0.441s-0.183,0.339-0.141,0.514 c0.041,0.177-0.288,0.287-0.323,0.702c-0.038,0.416-0.789,0.171-0.851,0.026S30.319,16.489,30.432,16.162z M33.125,21.748 c-0.467,0-1.863,0.141-2.247-0.138c-0.386-0.278-0.686,0.029-0.962,0.309c-0.182,0.18-0.841-0.187-1.034-0.467 c-0.191-0.279-0.839-0.259-0.839-0.259l0.147-0.796l-1.859-0.09l-1.058,0.315l-0.992,0.028l0.557-0.269l0.693-0.167 c0,0,1.008-0.841,1.31-1.092c0.258-0.212,1.276-0.094,1.276-0.094l1.121,0.821c0,0-0.249,0.643-0.358,0.78 c0.411-0.027,0.896-0.786,0.896-0.786c-0.873-0.816-0.839-1.094-0.839-1.094l1.152,0.822l0.01,0.007c0,0,0.467,1.116,0.661,1.116 c0.189,0,0.436-0.768,0.436-0.768l0.326-0.083c0.146,0.352,0.42,1.147,0.748,0.961c0.189-0.105,0.5-0.01,0.855,0.129 c0.359,0.138,0.602-0.075,0.895,0.185C33.982,22.268,33.318,21.805,33.125,21.748z M33.855,19.828 c-0.479-0.187-2.102,0.418-1.74-0.569c0.193-0.536,0.691-0.646,0.863-0.292c0.043,0.147,0.586,0.374,0.582,0.065 c-0.004-0.308,0.543-0.47,0.621-0.241C33.889,19.003,35.322,20.112,33.855,19.828z M36.918,20.767 c-0.268-0.219,0.117-0.404-0.275-0.746c-0.563-0.491-1.002-0.702-0.234-1.097c0.945-0.122,0.152,0.307,0.309,0.563 c0.084,0.136,0.563,0.593,0.938,1.153C37.963,21.104,37.182,20.984,36.918,20.767z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="-23.4043" cy="14.9697" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="16.9518">
+<stop offset="0" style="stop-color:#7AF200"/>
+<stop offset="0.3152" style="stop-color:#7AF200"/>
+<stop offset="0.7273" style="stop-color:#1CAD0F"/>
+<stop offset="1" style="stop-color:#007A3A"/>
</radialGradient>
-<path d="M44.09,24.559c-0.016-0.073-0.037-0.143-0.053-0.214c-0.07-0.356-0.164-0.708-0.266-1.054 c-0.025-0.094-0.051-0.189-0.08-0.282c-0.125-0.394-0.264-0.781-0.416-1.159c-0.029-0.064-0.061-0.131-0.09-0.195 c-0.143-0.334-0.297-0.658-0.463-0.977c-0.037-0.078-0.078-0.156-0.117-0.23c-0.197-0.359-0.406-0.709-0.627-1.051 c-0.041-0.06-0.084-0.114-0.121-0.174c-0.205-0.303-0.42-0.596-0.648-0.881c-0.043-0.055-0.088-0.113-0.135-0.172 c-0.262-0.314-0.533-0.619-0.82-0.914c-0.047-0.051-0.098-0.099-0.15-0.148c-0.26-0.26-0.535-0.512-0.813-0.75 c-0.047-0.041-0.092-0.083-0.141-0.123c-0.316-0.262-0.645-0.512-0.982-0.746c-0.061-0.041-0.119-0.081-0.182-0.12 c-0.311-0.211-0.631-0.411-0.961-0.595c-0.047-0.025-0.088-0.053-0.133-0.077c-0.365-0.198-0.74-0.383-1.123-0.55 c-0.07-0.029-0.139-0.055-0.205-0.086c-0.15-0.063-0.303-0.111-0.455-0.17c-0.182,0.118-1.016,0.598-1.016,0.598 s-3.623-0.503-3.869-0.252c-0.25,0.252-1.213,0.508-1.434,0.537c-0.219,0.029-0.674,0.148-0.129,0.832 c-0.082,0.084-1.643,1.186-1.643,0.686c0-0.502,0.352-1.4-0.139-0.92c-0.35,0.346-0.563,0.813-0.605,0.902 c-0.115,0.223-0.186,0.328-0.104,0.97c0.084,0.642-1.006,0.64-1.08,0.474c-0.197-0.445-1.275,0.998-1.275,0.998l0.455,0.594 c0,0-3.18,2.486-3.205,2.654c-0.029,0.168-0.822,2.328-0.547,2.971c0.273,0.643,0.969,2.262,1.625,2.313 c0.861,0.072,2.951-0.398,2.951-0.398c0.055,0.143,0.451,0.854,0.451,0.854s1.021-0.035,1.08,0.078 c0.018,0.037,1.234,3.668,0.832,4.148c-0.957,1.457,0.547,3.59,0.965,4.313c0.42,1.238,0.688,0.684,1.24,0.889 c0.678,0.057,1.25,0.313,1.826-0.44c0.166-0.14,0.451-0.028,0.451-0.224c0-0.107,0.494-0.428,0.619-0.729 c0.133-0.063,0.475-0.296,0.707-0.409c0.211-0.014-0.201-0.586,0.217-1.192c0.451-0.181,1.666-1.013,1.666-1.013 c0.057-1.223-0.592-2.729,0.617-3.596c0.777-0.806,1.799-1.266,2.295-2.492c0.139-0.361,0.441-1.104-0.438-0.881 c-0.826,0.211-1.75,0.26-1.313-0.109c-0.051-0.456-0.6-0.668-1.092-1.111c-0.254-0.613-0.654-1.704-0.654-1.704l-0.875-1.349 l0.107-0.279l1.041,1.555l1.037,1.275c0.383,1.277,0.711,1.389,0.711,1.389c0.574-0.205,1.939-0.775,1.939-0.775l1.342-1.307 c0,0-0.139-0.418-0.684-0.943l-0.41-0.25c-0.09,0.258-0.566,0.352-0.566,0.352l-1.156-1.406l0.43-0.088l0.332,0.641l0.795,0.279 c0,0,0.219-0.163,0.629,0.267c0.334-0.028,1.635,0.065,1.938,0.456c0.061,0.078,1.611,4.016,1.918,4.021 c0.137,0.001,0.232,0.055,0.189-0.185c-0.055-0.109,0-2.584,0.08-3.115c0.209-0.447,0.242,0,0.734,0.854 C44.094,24.6,44.094,24.579,44.09,24.559z M30.432,15.017c0.105-0.329,0.738-0.44,0.738-0.44s-0.184,0.339-0.141,0.514 c0.041,0.177-0.289,0.286-0.324,0.701c-0.037,0.416-0.789,0.171-0.85,0.025C29.793,15.672,30.318,15.344,30.432,15.017z M33.125,20.603c-0.467,0-1.863,0.141-2.248-0.138c-0.385-0.279-0.686,0.028-0.961,0.309c-0.182,0.18-0.842-0.187-1.035-0.467 c-0.191-0.279-0.838-0.259-0.838-0.259l0.146-0.796l-1.859-0.09l-1.057,0.314l-0.992,0.027l0.557-0.269l0.693-0.167 c0,0,1.008-0.841,1.309-1.092c0.258-0.213,1.277-0.094,1.277-0.094l1.121,0.821c0,0-0.25,0.644-0.359,0.78 c0.412-0.027,0.896-0.785,0.896-0.785c-0.873-0.816-0.84-1.094-0.84-1.094l1.152,0.822l0.01,0.006c0,0,0.467,1.117,0.662,1.117 c0.189,0,0.436-0.769,0.436-0.769l0.326-0.083c0.146,0.352,0.42,1.146,0.748,0.961c0.189-0.105,0.5-0.011,0.855,0.129 c0.359,0.139,0.602-0.074,0.895,0.186C33.982,21.123,33.318,20.66,33.125,20.603z M33.855,18.684 c-0.479-0.188-2.102,0.418-1.74-0.57c0.193-0.535,0.691-0.646,0.863-0.292c0.043,0.147,0.586,0.374,0.582,0.065 s0.543-0.471,0.621-0.242C33.889,17.857,35.322,18.967,33.855,18.684z M36.918,19.621c-0.268-0.219,0.117-0.404-0.275-0.745 c-0.563-0.491-1.002-0.702-0.234-1.097c0.945-0.122,0.152,0.307,0.309,0.563c0.084,0.136,0.563,0.592,0.938,1.152 C37.963,19.959,37.182,19.84,36.918,19.621z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="-11.4609" cy="8.5801" gradientTransform="matrix(0.9797 0 0 0.9952 41.476 8.3351)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="16.9527">
- <stop offset="0.3152" style="stop-color:#7AF200"/>
- <stop offset="0.7273" style="stop-color:#1CAD0F"/>
- <stop offset="1" style="stop-color:#007A3A"/>
-</radialGradient>
-<path d="M37.297,32.337l-0.91,0.925c0,0-0.549,0-0.576,0.224c-0.012,0.095-0.045,0.508-0.135,0.72 c-0.182,0.129-0.402,0.557-0.402,0.557s-0.113,0.822,0.492,0.682C36.373,35.306,38.232,32.785,37.297,32.337z" fill="url(#SVGID_12_)"/>
-<rect fill="none" height="60" width="60"/>
+<path d="M37.297,33.482l-0.91,0.925c0,0-0.549,0-0.576,0.224c-0.012,0.094-0.045,0.508-0.135,0.719 c-0.182,0.13-0.402,0.557-0.402,0.557s-0.113,0.823,0.492,0.683C36.373,36.451,38.232,33.93,37.297,33.482z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="287" x2="287" y1="-288.5059" y2="-343.9819">
+<stop offset="0" style="stop-color:#F0F0F2"/>
+<stop offset="1" style="stop-color:#B3B5B8"/>
+</linearGradient>
+<path d="M52.459,2.898v54.203h-32.11c-0.626,0-1.599-0.401-2.04-0.846l-9.925-9.924 c-0.443-0.441-0.845-1.413-0.845-2.039V2.898H52.459 M53.213,2.145H6.787v42.148c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926 c0.586,0.585,1.743,1.064,2.573,1.064h32.864V2.145L53.213,2.145z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="275.5117" x2="269.9254" y1="-332.5654" y2="-338.1517">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.35" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
+</linearGradient>
+<path d="M8.208,47.189c-0.314-0.348-0.896-0.695-1.297-2.184c0,0,0.66,3.054,9.701,0.04 c0,12.81,3.768,12.81,3.768,12.81c-0.831,0-1.987-0.479-2.573-1.064L8.208,47.189z" fill="url(#SVGID_13_)"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="654.6" x2="654.6" y1="-558.3" y2="-601.7">
-
<stop offset="0" stop-color="#DFE1E6"/>
-
<stop offset="1" stop-color="#BDBEC3"/>
-
</linearGradient>
<rect fill="url(#SVGID_1__)" height="21.5" width="17.33" x="5.158" y="3.499"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="654.6" x2="654.6" y1="-558.9" y2="-602.2">
-
<stop offset="0" stop-color="#E7E9EF"/>
-
<stop offset="1" stop-color="#C8C9CE"/>
-
</linearGradient>
<path d="M21.99,3.999v20.5h-16.33v-20.5h16.33m0.5-0.501h-17.33v21.5h17.33v-21.5z" fill="url(#SVGID_2__)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="642.6" x2="642.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_3__)" height="3" width="3" x="6.324" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="650.6" x2="650.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_4__)" height="3" width="3" x="10.32" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="666.6" x2="666.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_5__)" height="3" width="3" x="18.32" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="658.6" x2="658.6" y1="-567.9" y2="-562.2">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_6__)" height="3" width="3" x="14.32" y="5.146"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_7__" x1="642.6" x2="642.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_7__)" height="3" width="3" x="6.324" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_8__" x1="650.6" x2="650.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_8__)" height="3" width="3" x="10.32" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_9__" x1="666.6" x2="666.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_9__)" height="3" width="3" x="18.32" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_10__" x1="658.6" x2="658.6" y1="-576.5" y2="-570.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_10__)" height="3" width="3" x="14.32" y="9.458"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_11__" x1="642.6" x2="642.6" y1="-594.5" y2="-588.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_11__)" height="3" width="3" x="6.324" y="18.46"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_12__" x1="650.6" x2="650.6" y1="-594.5" y2="-588.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_12__)" height="3" width="3" x="10.32" y="18.46"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="666.6" x2="666.6" y1="-594.5" y2="-588.8">
-
+<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_13__" x1="666.6" x2="666.6" y1="-594.5" y2="-588.8">
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
-<rect fill="url(#SVGID_13_)" height="3" width="3" x="18.32" y="18.46"/>
+<rect fill="url(#SVGID_13__)" height="3" width="3" x="18.32" y="18.46"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="658.6" x2="658.6" y1="-594.5" y2="-588.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_14_)" height="3" width="3" x="14.32" y="18.46"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="642.6" x2="642.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_15_)" height="3" width="3" x="6.324" y="13.96"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="650.6" x2="650.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_16_)" height="3" width="3" x="10.32" y="13.96"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="666.6" x2="666.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_17_)" height="3" width="3" x="18.32" y="13.96"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="658.6" x2="658.6" y1="-585.5" y2="-579.8">
-
<stop offset="0" stop-color="#75BCFF"/>
-
<stop offset="1" stop-color="#0070A1"/>
-
</linearGradient>
<rect fill="url(#SVGID_18_)" height="3" width="3" x="14.32" y="13.96"/>
-<polygon opacity="0.3" points="22.49,25,22.49,14.85,12.51,11.92,12.51,25" style="enable-background:new;"/>
+<polygon fill-opacity="0.3" points="22.49,25,22.49,14.85,12.51,11.92,12.51,25" stroke-opacity="0.3" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="665.4" x2="665.4" y1="-582.2" y2="-604.8">
-
<stop offset="0" stop-color="#CCCCCC"/>
-
<stop offset="1" stop-color="#949494"/>
-
</linearGradient>
<polygon fill="url(#SVGID_19_)" points="24.84,16.25,13.51,12.92,13.51,26.5,24.84,26.5"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="665.4" x2="665.4" y1="-582" y2="-605.1">
-
<stop offset="0" stop-color="#DBDDE2"/>
-
<stop offset="1" stop-color="#B5B6BA"/>
-
</linearGradient>
<path d="M14.01,13.58l10.33,3.039v9.38h-10.33v-12.42m-0.5-0.665v13.58h11.33v-10.25l-11.33-3.33z" fill="url(#SVGID_20_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_usb.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_usb.svg Thu May 27 13:10:59 2010 +0300
@@ -1,31 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="4.2583" y2="55.2583">
- <stop offset="0" style="stop-color:#E8E8E8"/>
- <stop offset="0.3576" style="stop-color:#B2BDC2"/>
- <stop offset="0.7576" style="stop-color:#595C5E"/>
- <stop offset="1" style="stop-color:#A1ABB0"/>
+<stop offset="0" style="stop-color:#E8E8E8"/>
+<stop offset="0.3576" style="stop-color:#B2BDC2"/>
+<stop offset="0.7576" style="stop-color:#595C5E"/>
+<stop offset="1" style="stop-color:#A1ABB0"/>
</linearGradient>
<path d="M7.9,55.5c-1.875,0-3.4-1.525-3.4-3.4V7.9c0-1.876,1.525-3.4,3.4-3.4H52.1c1.874,0,3.4,1.524,3.4,3.4 V52.1c0,1.875-1.526,3.4-3.4,3.4H7.9z" fill="url(#SVGID_1_)"/>
<path d="M7.9,54.771c-1.473,0-2.672-1.198-2.672-2.672V7.9c0-1.474,1.199-2.672,2.672-2.672H52.1 c1.473,0,2.672,1.198,2.672,2.672V52.1c0,1.474-1.199,2.672-2.672,2.672H7.9z" fill="#FFFFFF" fill-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="6.2002" y2="53.7998">
- <stop offset="0" style="stop-color:#D7DDDE"/>
- <stop offset="0.3697" style="stop-color:#FFFFFF"/>
- <stop offset="0.8061" style="stop-color:#AFB5B7"/>
- <stop offset="1" style="stop-color:#E0E4E5"/>
+<stop offset="0" style="stop-color:#D7DDDE"/>
+<stop offset="0.3697" style="stop-color:#FFFFFF"/>
+<stop offset="0.8061" style="stop-color:#AFB5B7"/>
+<stop offset="1" style="stop-color:#E0E4E5"/>
</linearGradient>
<path d="M7.9,53.8c-0.938,0-1.7-0.764-1.7-1.7V7.9c0-0.938,0.763-1.7,1.7-1.7H52.1 c0.938,0,1.699,0.762,1.699,1.7V52.1c0,0.937-0.762,1.7-1.699,1.7H7.9z" fill="url(#SVGID_2_)"/>
<path d="M42.355,34.462v-2.344H28.438l5.785,8.718h2.457v-1.702h5.697v5.438H36.68v-1.194h-3.084l-8.278-11.259 H19.01c-0.463,1.753-1.877,3.036-3.543,3.036c-2.047,0-3.698-1.896-3.698-4.239c0-2.334,1.651-4.236,3.69-4.236 c1.644,0,3.025,1.217,3.519,2.892h2.839l7.508-10.796l4.557-0.072c0.463-1.075,1.432-1.816,2.535-1.816 c2.379,0,3.333,1.468,3.333,3.271c0,1.807-0.897,3.261-3.333,3.265c-1.232,0-2.279-0.919-2.678-2.183h-2.855L24.95,29.57h17.405 v-2.913l5.875,3.909L42.355,34.462z" fill="#FFFFFF"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -275.8623 -411.166)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="305.8613" x2="305.8613" y1="427.3232" y2="455.0088">
- <stop offset="0" style="stop-color:#797C80"/>
- <stop offset="1" style="stop-color:#3F4243"/>
+<stop offset="0" style="stop-color:#797C80"/>
+<stop offset="1" style="stop-color:#3F4243"/>
</linearGradient>
<path d="M42.355,33.734v-2.343H28.438l5.785,8.715h2.457v-1.701h5.697v5.438H36.68v-1.193h-3.084 l-8.278-11.258H19.01c-0.463,1.752-1.877,3.034-3.543,3.034c-2.047,0-3.698-1.896-3.698-4.238c0-2.335,1.651-4.237,3.69-4.237 c1.644,0,3.025,1.217,3.519,2.892h2.839l7.508-10.796l4.557-0.072c0.463-1.075,1.432-1.816,2.535-1.816 c2.379,0,3.333,1.468,3.333,3.271c0,1.807-0.897,3.262-3.333,3.264c-1.232,0-2.279-0.918-2.678-2.183h-2.855l-5.933,8.333h17.405 v-2.913l5.875,3.91L42.355,33.734z" fill="url(#SVGID_3_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_usb_memory.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_usb_memory.svg Thu May 27 13:10:59 2010 +0300
@@ -1,64 +1,63 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="23.2222" y2="0.7603">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.1576" style="stop-color:#E6E6E6"/>
- <stop offset="1" style="stop-color:#B3B3B3"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.1576" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="22.462" width="28.305" x="15.848" y="1"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -3087.1172 11754.375)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-3117.1167" x2="-3117.1167" y1="11752.4258" y2="11731.4102">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.1576" style="stop-color:#E6E6E6"/>
- <stop offset="1" style="stop-color:#B3B3B3"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.1576" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="21.016" width="26.859" x="16.57" y="1.724"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -3087.1172 11754.375)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-3117.1177" x2="-3117.1177" y1="11731.7617" y2="11752.7773">
- <stop offset="0" style="stop-color:#E6E6E6"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path d="M17.227,22.083V2.378h25.547v19.705H17.227 M16.57,22.739H43.43V1.724H16.57V22.739L16.57,22.739z" fill="url(#SVGID_3_)"/>
-<rect fill="#231F20" height="0.638" opacity="0.4" width="26.859" x="16.57" y="21.034"/>
-<rect fill="#231F20" height="0.639" opacity="0.15" width="26.859" x="16.57" y="20.378"/>
+<rect fill="#231F20" fill-opacity="0.4" height="0.638" stroke-opacity="0.4" width="26.859" x="16.57" y="21.034"/>
+<rect fill="#231F20" fill-opacity="0.15" height="0.639" stroke-opacity="0.15" width="26.859" x="16.57" y="20.378"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="59" y2="22.2708">
- <stop offset="0" style="stop-color:#EBEBEB"/>
- <stop offset="0.7455" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#8B8B8B"/>
+<stop offset="0" style="stop-color:#EBEBEB"/>
+<stop offset="0.7455" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#8B8B8B"/>
</linearGradient>
<path d="M29.939,59c-15.299,0-19.092-11.501-19.092-13.139V23.695c0-1.121,0.912-2.034,2.035-2.034h34.232 c1.123,0,2.037,0.913,2.037,2.034v22.166C49.152,47.583,45.57,59,29.939,59L29.939,59z" fill="url(#SVGID_4_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -3087.1172 11754.375)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-3117.1167" x2="-3117.1167" y1="11731.9902" y2="11696.6816">
- <stop offset="0" style="stop-color:#EBEBEB"/>
- <stop offset="0.7455" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#8B8B8B"/>
+<stop offset="0" style="stop-color:#EBEBEB"/>
+<stop offset="0.7455" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#8B8B8B"/>
</linearGradient>
<path d="M11.57,23.695c0-0.722,0.592-1.311,1.313-1.311h34.232c0.725,0,1.314,0.589,1.314,1.311v22.166 c0,2.077-4.049,12.417-18.49,12.417C15.5,58.278,11.57,47.61,11.57,45.861V23.695z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="23.4189" y2="57.8808">
- <stop offset="0" style="stop-color:#8E8E8E"/>
- <stop offset="1" style="stop-color:#0A0A0A"/>
+<stop offset="0" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#0A0A0A"/>
</linearGradient>
<path d="M29.939,57.62c-13.973,0-17.713-10.361-17.713-11.759V23.695c0-0.362,0.293-0.655,0.656-0.655h34.232 c0.363,0,0.658,0.293,0.658,0.655v22.166C47.773,47.327,44.23,57.62,29.939,57.62L29.939,57.62z" fill="url(#SVGID_6_)"/>
-<path d="M30.943,40.104c6.248,0,12.32-0.324,18.143-0.928V24.351c0-0.721-0.592-1.311-1.313-1.311 H13.539c-0.723,0-1.313,0.59-1.313,1.311v14.767C18.223,39.759,24.49,40.104,30.943,40.104z" fill="#FFFFFF" opacity="0.15"/>
+<path d="M30.943,40.104c6.248,0,12.32-0.324,18.143-0.928V24.351c0-0.721-0.592-1.311-1.313-1.311 H13.539c-0.723,0-1.313,0.59-1.313,1.311v14.767C18.223,39.759,24.49,40.104,30.943,40.104z" fill="#FFFFFF" fill-opacity="0.15" stroke-opacity="0.15"/>
<rect fill="#FFFFFF" height="5.468" width="5.471" x="33.445" y="12.966"/>
<rect fill="#FFFFFF" height="5.468" width="5.471" x="21.084" y="12.966"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.1807" x2="36.1807" y1="17.499" y2="12.0196">
- <stop offset="0" style="stop-color:#8E8E8E"/>
- <stop offset="1" style="stop-color:#0A0A0A"/>
+<stop offset="0" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#0A0A0A"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="5.469" width="5.471" x="33.445" y="12.002"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="23.8193" x2="23.8193" y1="17.3184" y2="12.0085">
- <stop offset="0" style="stop-color:#8E8E8E"/>
- <stop offset="1" style="stop-color:#0A0A0A"/>
+<stop offset="0" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#0A0A0A"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="5.469" width="5.471" x="21.084" y="12.002"/>
<linearGradient gradientTransform="matrix(-1 0 0 -1 -3087.1172 11754.375)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-3117.2319" x2="-3117.2319" y1="11726.4707" y2="11705.0322">
- <stop offset="0.297" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#D9D9D9"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.297" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
<path d="M35.699,34.294c0-0.804-0.652-1.453-1.455-1.453s-1.455,0.649-1.455,1.453 c0,0.676,0.465,1.239,1.09,1.402c-0.195,1.042-1.01,4.4-3.27,4.526V31.67h1.686l-2.359-4.087l-2.359,4.087h1.686v11.897 c-1.912-0.455-2.654-3.352-2.863-4.404c0.6-0.179,1.041-0.729,1.041-1.387c0-0.801-0.65-1.456-1.453-1.456 c-0.805,0-1.455,0.655-1.455,1.456c0,0.639,0.414,1.176,0.988,1.371c0.178,1.027,1.029,4.852,3.742,5.295v1.745 c-0.646,0.267-1.105,0.902-1.105,1.644c0,0.982,0.797,1.777,1.779,1.777s1.777-0.795,1.777-1.777c0-0.741-0.457-1.377-1.104-1.644 v-5.102c3.137-0.122,4.016-4.567,4.156-5.439C35.311,35.438,35.699,34.913,35.699,34.294z" fill="url(#SVGID_9_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video.svg Thu May 27 13:10:59 2010 +0300
@@ -1,37 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
- <stop offset="0" style="stop-color:#757575"/>
- <stop offset="0.2424" style="stop-color:#000000"/>
- <stop offset="0.8606" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#363636"/>
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
-<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" enable-background="new " fill="#FFFFFF" opacity="0.55"/>
-<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" enable-background="new " fill="#FFFFFF" opacity="0.1"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.5" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
-<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" enable-background="new " fill="#FFFFFF" opacity="0.5"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#404040"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
-<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" enable-background="new " fill="#FFFFFF" opacity="0.2"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,188 +1,130 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<rect fill="url(#SVGID_1__)" height="7.853" width="5.105" x="12.45" y="19.72"/>
<path d="M12.45,24.66c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.285z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M12.45,24.02c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.288z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.975" y2="23.67">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="0.3212" stop-color="#E6E6E6"/>
-
<stop offset="1" stop-color="#666666"/>
-
</linearGradient>
<path d="M15,23.7c-5.98,0-10.85-4.867-10.85-10.85s4.87-10.85,10.85-10.85c5.982,0,10.85,4.866,10.85,10.85s-4.87,10.85-10.85,10.85z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="2.614" y2="23.03">
-
<stop offset="0" stop-color="#D1D7D9"/>
-
<stop offset="0.0667" stop-color="#D1D7D9"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#7C8487"/>
-
<stop offset="1" stop-color="#ADB3B5"/>
-
</linearGradient>
<circle cx="15" cy="12.85" fill="url(#SVGID_3__)" r="10.21"/>
<path d="M15,21.99c-5.315,0-9.657-4.23-9.843-9.5-0.004,0.116-0.009,0.231-0.009,0.349,0,5.431,4.419,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.117-0.005-0.232-0.009-0.349-0.18,5.27-4.52,9.5-9.84,9.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<path d="M23.3,12.41c0,4.704-3.715,9.346-8.299,9.345-4.58-0.003-8.292-4.646-8.291-9.35,0.002-4.706,3.718-8.517,8.298-8.517,4.57,0.001,8.29,3.814,8.29,8.517z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M15,21.07c-2.387-0.002-4.63-0.932-6.315-2.619-1.688-1.688-2.615-3.932-2.614-6.318,0-4.923,4.009-8.929,8.935-8.929,2.387,0,4.632,0.931,6.317,2.618,1.688,1.688,2.616,3.933,2.615,6.318-0.002,4.924-4.01,8.93-8.934,8.93h-0.014z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="3.721" y2="20.35">
-
<stop offset="0" stop-color="#CFCFCF"/>
-
<stop offset="0.1091" stop-color="#CFCFCF"/>
-
<stop offset="0.6848" stop-color="#121212"/>
-
<stop offset="1" stop-color="#A6A6A6"/>
-
</linearGradient>
<path d="M15,20.43c-2.216-0.002-4.298-0.864-5.864-2.432-1.567-1.566-2.428-3.65-2.427-5.866,0-4.573,3.723-8.293,8.296-8.293,2.218,0.001,4.3,0.864,5.866,2.432s2.43,3.651,2.428,5.867c-0.001,4.573-3.723,8.292-8.295,8.292h-0.004z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15" x2="15" y1="4.368" y2="19.72">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="1" stop-color="#606769"/>
-
</linearGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_5__)" r="7.657"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="15" x2="15" y1="5.772" y2="18.45">
-
<stop offset="0" stop-color="#1A1A1A"/>
-
<stop offset="0.503" stop-color="#343434"/>
-
<stop offset="0.7515" stop-color="#9E9E9E"/>
-
<stop offset="1" stop-color="#CFCFCF"/>
-
</linearGradient>
<path d="M15,18.51c-1.706-0.001-3.309-0.666-4.514-1.871-1.204-1.206-1.867-2.808-1.867-4.512,0-3.517,2.862-6.378,6.382-6.378,1.706,0,3.308,0.664,4.513,1.871,1.205,1.205,1.868,2.808,1.867,4.513,0,3.51-2.86,6.37-6.38,6.37z" fill="url(#SVGID_6__)"/>
<radialGradient cx="25.77" cy="10.27" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="6.499">
-
<stop offset="0" stop-color="#000000"/>
-
<stop offset="0.5917" stop-color="#000000"/>
-
<stop offset="0.627" stop-color="#050505"/>
-
<stop offset="0.7652" stop-color="#121212"/>
-
<stop offset="0.8876" stop-color="#171717"/>
-
<stop offset="1" stop-color="#171717"/>
-
</radialGradient>
<path d="M20.74,12.14c0,3.172-2.574,5.74-5.744,5.74-3.175-0.001-5.743-2.573-5.741-5.745,0-3.171,2.573-5.742,5.745-5.74,3.17-0.009,5.74,2.562,5.74,5.74z" fill="url(#SVGID_7_)"/>
<radialGradient cx="21.65" cy="5.066" gradientTransform="matrix(1.0143 0 0 1.0141 -9.5579 3.1299)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="10.35">
-
<stop offset="0" stop-color="#242424"/>
-
<stop offset="0.4303" stop-color="#242424"/>
-
<stop offset="0.7818" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_8_)" r="4.712"/>
<radialGradient cx="23.96" cy="3.55" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="11.36">
-
<stop offset="0" stop-color="#A700F5"/>
-
<stop offset="0.3091" stop-color="#A700F5"/>
-
<stop offset="0.4364" stop-color="#5E008A"/>
-
<stop offset="0.8061" stop-color="#0E1402"/>
-
<stop offset="1" stop-color="#0E1402"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0.004-2.327,1.89-4.21,4.213-4.21,2.33,0.003,4.21,1.888,4.21,4.21z" fill="url(#SVGID_9_)"/>
<radialGradient cx="25.17" cy="13.25" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="4.611">
-
<stop offset="0" stop-color="#48630C"/>
-
<stop offset="0.7879" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0,0,1.444,2.569,4.213,2.569,2.77,0,4.21-2.57,4.21-2.57z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="14.98" x2="14.98" y1="7.065" y2="12.09">
-
<stop offset="0" stop-color="#F8FBFF"/>
-
<stop offset="1" stop-color="#808080"/>
-
</linearGradient>
<path d="M14.98,12.07c1.828,0,3.549-0.277,5.067-0.765-0.431-2.41-2.532-4.239-5.067-4.239-2.532,0-4.632,1.83-5.065,4.239,1.515,0.49,3.235,0.77,5.065,0.77z" fill="url(#SVGID_11_)" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="5.762" x2="24.29" y1="26.72" y2="26.72">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<path d="M24.24,28c0.025-0.635,0.04-0.508,0.04-0.639v-0.035c0-1.037-0.852-1.879-1.901-1.879h-14.72c-1.05,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.04,0.639h18.44z" fill="url(#SVGID_12_)"/>
<path d="M5.879,26.7h18.29c-0.084-0.234-0.212-0.444-0.377-0.626h-17.53c-0.164,0.19-0.293,0.4-0.377,0.63z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
@@ -190,4 +132,4 @@
<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call_active.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call_active.svg Thu May 27 13:10:59 2010 +0300
@@ -1,179 +1,121 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<rect fill="url(#SVGID_1__)" height="7.853" width="5.105" x="12.45" y="19.72"/>
<path d="M12.45,24.66c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.285z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M12.45,24.02c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.288z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.975" y2="23.67">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="0.3212" stop-color="#E6E6E6"/>
-
<stop offset="1" stop-color="#666666"/>
-
</linearGradient>
<path d="M15,23.7c-5.98,0-10.85-4.867-10.85-10.85s4.87-10.85,10.85-10.85c5.982,0,10.85,4.866,10.85,10.85s-4.87,10.85-10.85,10.85z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="2.614" y2="23.03">
-
<stop offset="0" stop-color="#D1D7D9"/>
-
<stop offset="0.0667" stop-color="#D1D7D9"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#7C8487"/>
-
<stop offset="1" stop-color="#ADB3B5"/>
-
</linearGradient>
<circle cx="15" cy="12.85" fill="url(#SVGID_3__)" r="10.21"/>
<path d="M15,21.99c-5.315,0-9.657-4.23-9.843-9.5-0.004,0.116-0.009,0.231-0.009,0.349,0,5.431,4.419,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.117-0.005-0.232-0.009-0.349-0.18,5.27-4.52,9.5-9.84,9.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<path d="M23.3,12.41c0,4.704-3.715,9.346-8.299,9.345-4.58-0.003-8.292-4.646-8.291-9.35,0.002-4.706,3.718-8.517,8.298-8.517,4.57,0.001,8.29,3.814,8.29,8.517z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M15,21.07c-2.387-0.002-4.63-0.932-6.315-2.619-1.688-1.688-2.615-3.932-2.614-6.318,0-4.923,4.009-8.929,8.935-8.929,2.387,0,4.632,0.931,6.317,2.618,1.688,1.688,2.616,3.933,2.615,6.318-0.002,4.924-4.01,8.93-8.934,8.93h-0.014z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="3.721" y2="20.35">
-
<stop offset="0" stop-color="#CFCFCF"/>
-
<stop offset="0.1091" stop-color="#CFCFCF"/>
-
<stop offset="0.6848" stop-color="#121212"/>
-
<stop offset="1" stop-color="#A6A6A6"/>
-
</linearGradient>
<path d="M15,20.43c-2.216-0.002-4.298-0.864-5.864-2.432-1.567-1.566-2.428-3.65-2.427-5.866,0-4.573,3.723-8.293,8.296-8.293,2.218,0.001,4.3,0.864,5.866,2.432s2.43,3.651,2.428,5.867c-0.001,4.573-3.723,8.292-8.295,8.292h-0.004z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="4.368" y2="19.72">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="1" stop-color="#606769"/>
-
</linearGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_5_)" r="7.657"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="5.772" y2="18.45">
-
<stop offset="0" stop-color="#1A1A1A"/>
-
<stop offset="0.503" stop-color="#343434"/>
-
<stop offset="0.7515" stop-color="#9E9E9E"/>
-
<stop offset="1" stop-color="#CFCFCF"/>
-
</linearGradient>
<path d="M15,18.51c-1.706-0.001-3.309-0.666-4.514-1.871-1.204-1.206-1.867-2.808-1.867-4.512,0-3.517,2.862-6.378,6.382-6.378,1.706,0,3.308,0.664,4.513,1.871,1.205,1.205,1.868,2.808,1.867,4.513,0,3.51-2.86,6.37-6.38,6.37z" fill="url(#SVGID_6_)"/>
<radialGradient cx="25.77" cy="10.27" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="6.499">
-
<stop offset="0" stop-color="#000000"/>
-
<stop offset="0.5917" stop-color="#000000"/>
-
<stop offset="0.627" stop-color="#050505"/>
-
<stop offset="0.7652" stop-color="#121212"/>
-
<stop offset="0.8876" stop-color="#171717"/>
-
<stop offset="1" stop-color="#171717"/>
-
</radialGradient>
<path d="M20.74,12.14c0,3.172-2.574,5.74-5.744,5.74-3.175-0.001-5.743-2.573-5.741-5.745,0-3.171,2.573-5.742,5.745-5.74,3.17-0.009,5.74,2.562,5.74,5.74z" fill="url(#SVGID_7_)"/>
<radialGradient cx="21.65" cy="5.066" gradientTransform="matrix(1.0143 0 0 1.0141 -9.5579 3.1299)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="10.35">
-
<stop offset="0" stop-color="#242424"/>
-
<stop offset="0.4303" stop-color="#242424"/>
-
<stop offset="0.7818" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_8_)" r="4.712"/>
<radialGradient cx="23.96" cy="3.55" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="11.36">
-
<stop offset="0" stop-color="#A700F5"/>
-
<stop offset="0.3091" stop-color="#A700F5"/>
-
<stop offset="0.4364" stop-color="#5E008A"/>
-
<stop offset="0.8061" stop-color="#0E1402"/>
-
<stop offset="1" stop-color="#0E1402"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0.004-2.327,1.89-4.21,4.213-4.21,2.33,0.003,4.21,1.888,4.21,4.21z" fill="url(#SVGID_9_)"/>
<radialGradient cx="25.17" cy="13.25" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="4.611">
-
<stop offset="0" stop-color="#48630C"/>
-
<stop offset="0.7879" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0,0,1.444,2.569,4.213,2.569,2.77,0,4.21-2.57,4.21-2.57z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="14.98" x2="14.98" y1="7.065" y2="12.09">
-
<stop offset="0" stop-color="#F8FBFF"/>
-
<stop offset="1" stop-color="#808080"/>
-
</linearGradient>
<path d="M14.98,12.07c1.828,0,3.549-0.277,5.067-0.765-0.431-2.41-2.532-4.239-5.067-4.239-2.532,0-4.632,1.83-5.065,4.239,1.515,0.49,3.235,0.77,5.065,0.77z" fill="url(#SVGID_11_)" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="5.762" x2="24.29" y1="26.72" y2="26.72">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<path d="M24.24,28c0.025-0.635,0.04-0.508,0.04-0.639v-0.035c0-1.037-0.852-1.879-1.901-1.879h-14.72c-1.05,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.04,0.639h18.44z" fill="url(#SVGID_12_)"/>
<path d="M5.879,26.7h18.29c-0.084-0.234-0.212-0.444-0.377-0.626h-17.53c-0.164,0.19-0.293,0.4-0.377,0.63z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
@@ -181,4 +123,4 @@
<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call_end.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call_end.svg Thu May 27 13:10:59 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<rect fill="none" height="60" width="60"/>
<g>
@@ -42,148 +42,90 @@
</g>
<g transform="matrix(1 0 0 1 30 30)">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<rect fill="url(#SVGID_1__)" height="7.853" width="5.105" x="12.45" y="19.72"/>
<path d="M12.45,24.66c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.285z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M12.45,24.02c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.288z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.975" y2="23.67">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="0.3212" stop-color="#E6E6E6"/>
-
<stop offset="1" stop-color="#666666"/>
-
</linearGradient>
<path d="M15,23.7c-5.98,0-10.85-4.867-10.85-10.85s4.87-10.85,10.85-10.85c5.982,0,10.85,4.866,10.85,10.85s-4.87,10.85-10.85,10.85z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="2.614" y2="23.03">
-
<stop offset="0" stop-color="#D1D7D9"/>
-
<stop offset="0.0667" stop-color="#D1D7D9"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#7C8487"/>
-
<stop offset="1" stop-color="#ADB3B5"/>
-
</linearGradient>
<circle cx="15" cy="12.85" fill="url(#SVGID_3__)" r="10.21"/>
<path d="M15,21.99c-5.315,0-9.657-4.23-9.843-9.5-0.004,0.116-0.009,0.231-0.009,0.349,0,5.431,4.419,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.117-0.005-0.232-0.009-0.349-0.18,5.27-4.52,9.5-9.84,9.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<path d="M23.3,12.41c0,4.704-3.715,9.346-8.299,9.345-4.58-0.003-8.292-4.646-8.291-9.35,0.002-4.706,3.718-8.517,8.298-8.517,4.57,0.001,8.29,3.814,8.29,8.517z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M15,21.07c-2.387-0.002-4.63-0.932-6.315-2.619-1.688-1.688-2.615-3.932-2.614-6.318,0-4.923,4.009-8.929,8.935-8.929,2.387,0,4.632,0.931,6.317,2.618,1.688,1.688,2.616,3.933,2.615,6.318-0.002,4.924-4.01,8.93-8.934,8.93h-0.014z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="3.721" y2="20.35">
-
<stop offset="0" stop-color="#CFCFCF"/>
-
<stop offset="0.1091" stop-color="#CFCFCF"/>
-
<stop offset="0.6848" stop-color="#121212"/>
-
<stop offset="1" stop-color="#A6A6A6"/>
-
</linearGradient>
<path d="M15,20.43c-2.216-0.002-4.298-0.864-5.864-2.432-1.567-1.566-2.428-3.65-2.427-5.866,0-4.573,3.723-8.293,8.296-8.293,2.218,0.001,4.3,0.864,5.866,2.432s2.43,3.651,2.428,5.867c-0.001,4.573-3.723,8.292-8.295,8.292h-0.004z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15" x2="15" y1="4.368" y2="19.72">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="1" stop-color="#606769"/>
-
</linearGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_5__)" r="7.657"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="15" x2="15" y1="5.772" y2="18.45">
-
<stop offset="0" stop-color="#1A1A1A"/>
-
<stop offset="0.503" stop-color="#343434"/>
-
<stop offset="0.7515" stop-color="#9E9E9E"/>
-
<stop offset="1" stop-color="#CFCFCF"/>
-
</linearGradient>
<path d="M15,18.51c-1.706-0.001-3.309-0.666-4.514-1.871-1.204-1.206-1.867-2.808-1.867-4.512,0-3.517,2.862-6.378,6.382-6.378,1.706,0,3.308,0.664,4.513,1.871,1.205,1.205,1.868,2.808,1.867,4.513,0,3.51-2.86,6.37-6.38,6.37z" fill="url(#SVGID_6__)"/>
<radialGradient cx="25.77" cy="10.27" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="6.499">
-
<stop offset="0" stop-color="#000000"/>
-
<stop offset="0.5917" stop-color="#000000"/>
-
<stop offset="0.627" stop-color="#050505"/>
-
<stop offset="0.7652" stop-color="#121212"/>
-
<stop offset="0.8876" stop-color="#171717"/>
-
<stop offset="1" stop-color="#171717"/>
-
</radialGradient>
<path d="M20.74,12.14c0,3.172-2.574,5.74-5.744,5.74-3.175-0.001-5.743-2.573-5.741-5.745,0-3.171,2.573-5.742,5.745-5.74,3.17-0.009,5.74,2.562,5.74,5.74z" fill="url(#SVGID_7_)"/>
<radialGradient cx="21.65" cy="5.066" gradientTransform="matrix(1.0143 0 0 1.0141 -9.5579 3.1299)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="10.35">
-
<stop offset="0" stop-color="#242424"/>
-
<stop offset="0.4303" stop-color="#242424"/>
-
<stop offset="0.7818" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_8_)" r="4.712"/>
<radialGradient cx="23.96" cy="3.55" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="11.36">
-
<stop offset="0" stop-color="#A700F5"/>
-
<stop offset="0.3091" stop-color="#A700F5"/>
-
<stop offset="0.4364" stop-color="#5E008A"/>
-
<stop offset="0.8061" stop-color="#0E1402"/>
-
<stop offset="1" stop-color="#0E1402"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0.004-2.327,1.89-4.21,4.213-4.21,2.33,0.003,4.21,1.888,4.21,4.21z" fill="url(#SVGID_9_)"/>
<radialGradient cx="25.17" cy="13.25" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="4.611">
-
<stop offset="0" stop-color="#48630C"/>
-
<stop offset="0.7879" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0,0,1.444,2.569,4.213,2.569,2.77,0,4.21-2.57,4.21-2.57z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="14.98" x2="14.98" y1="7.065" y2="12.09">
-
<stop offset="0" stop-color="#F8FBFF"/>
-
<stop offset="1" stop-color="#808080"/>
-
</linearGradient>
<path d="M14.98,12.07c1.828,0,3.549-0.277,5.067-0.765-0.431-2.41-2.532-4.239-5.067-4.239-2.532,0-4.632,1.83-5.065,4.239,1.515,0.49,3.235,0.77,5.065,0.77z" fill="url(#SVGID_11_)" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="5.762" x2="24.29" y1="26.72" y2="26.72">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<path d="M24.24,28c0.025-0.635,0.04-0.508,0.04-0.639v-0.035c0-1.037-0.852-1.879-1.901-1.879h-14.72c-1.05,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.04,0.639h18.44z" fill="url(#SVGID_12_)"/>
<path d="M5.879,26.7h18.29c-0.084-0.234-0.212-0.444-0.377-0.626h-17.53c-0.164,0.19-0.293,0.4-0.377,0.63z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
@@ -191,4 +133,4 @@
<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call_waiting.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call_waiting.svg Thu May 27 13:10:59 2010 +0300
@@ -1,187 +1,129 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3691" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#FFC144"/>
- <stop offset="0.6667" style="stop-color:#EF6902"/>
- <stop offset="0.7939" style="stop-color:#FEB037"/>
+<stop offset="0" style="stop-color:#FFC144"/>
+<stop offset="0.297" style="stop-color:#FFC144"/>
+<stop offset="0.6667" style="stop-color:#EF6902"/>
+<stop offset="0.7939" style="stop-color:#FEB037"/>
+<stop offset="1" style="stop-color:#FEB037"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.259-1.333c-0.616-0.665-2.566-3.083-2.968-3.735 c-0.353-0.575-0.411-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.084-7.646,9.955-8.107 c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.523-1.778c-2.477-2.889-8.594-5.015-10.75-5.399 c-1.924-0.345-3.877-0.872-6.568,0.235c-2.559,1.054-13.074,8.536-21.11,16.572C11.203,27.277,3.723,37.795,2.668,40.352 c-1.107,2.691-0.58,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.853,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3418" x2="-1638.9102" y1="-2494.9819" y2="-2491.4063">
- <stop offset="0" style="stop-color:#E17B15"/>
- <stop offset="1" style="stop-color:#B05004"/>
+<stop offset="0" style="stop-color:#E17B15"/>
+<stop offset="1" style="stop-color:#B05004"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.035,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.738,2.119-1.514 c-0.252-0.204-3.469-2.809-4.801-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3462" x2="-1638.9143" y1="4063.0557" y2="4066.6326">
- <stop offset="0" style="stop-color:#E17B15"/>
- <stop offset="1" style="stop-color:#B05004"/>
+<stop offset="0" style="stop-color:#E17B15"/>
+<stop offset="1" style="stop-color:#B05004"/>
</linearGradient>
<path d="M17.093,35.188c-0.401,0.763-0.347,1.039,0.034,1.713c0.376,0.666,2.352,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.297c-0.034,0.048-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.203-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.093,35.188,17.093,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="48.4072" x2="4.0833" y1="3.4473" y2="47.7712">
- <stop offset="0" style="stop-color:#FFD06E"/>
- <stop offset="1" style="stop-color:#FAB56E"/>
+<stop offset="0" style="stop-color:#FFD06E"/>
+<stop offset="1" style="stop-color:#FAB56E"/>
</linearGradient>
-<path d="M2.979,47.467c-0.345-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.34,4.269,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236 c1.98,0.354,7.297,2.178,10.07,4.711c-2.553-2.815-8.496-4.879-10.617-5.258c-1.924-0.345-3.877-0.872-6.568,0.235 c-2.559,1.054-13.074,8.536-21.11,16.572C11.203,27.277,3.723,37.795,2.668,40.352c-1.107,2.691-0.58,4.645-0.236,6.567 c0.379,2.122,2.441,8.065,5.259,10.617C5.155,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.979,47.467c-0.345-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.34,4.269,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236 c1.98,0.354,7.297,2.178,10.07,4.711c-2.553-2.815-8.496-4.879-10.617-5.258c-1.924-0.345-3.877-0.872-6.568,0.235 c-2.559,1.054-13.074,8.536-21.11,16.572C11.203,27.277,3.723,37.795,2.668,40.352c-1.107,2.691-0.58,4.645-0.236,6.567 c0.379,2.122,2.441,8.065,5.259,10.617C5.155,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="53.9023" x2="3.4732" y1="3.6543" y2="54.0835">
- <stop offset="0" style="stop-color:#FFD06E"/>
- <stop offset="1" style="stop-color:#FAB56E"/>
+<stop offset="0" style="stop-color:#FFD06E"/>
+<stop offset="1" style="stop-color:#FAB56E"/>
</linearGradient>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.259-1.333 c-0.616-0.665-2.566-3.083-2.968-3.735c-0.353-0.575-0.411-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.084-7.646,9.955-8.107c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.523-1.778 c-0.291-0.339-0.635-0.665-1.012-0.982c0.488,0.657,0.197,1.134-0.607,1.666c-1.4,0.933-14.475,10.225-15.227,10.775 c-0.43,0.314-0.768,0.219-1.299-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.949-0.436-1.711-0.034 c-0.869,0.46-3.763,1.914-9.954,8.106c-6.193,6.192-7.636,9.092-8.108,9.956c-0.378,0.69-0.319,1.135,0.036,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.492,0.533,0.559,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195 c-0.534,0.803-1.009,1.098-1.665,0.606c0.314,0.378,0.643,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.853,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.259-1.333 c-0.616-0.665-2.566-3.083-2.968-3.735c-0.353-0.575-0.411-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.084-7.646,9.955-8.107c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.523-1.778 c-0.291-0.339-0.635-0.665-1.012-0.982c0.488,0.657,0.197,1.134-0.607,1.666c-1.4,0.933-14.475,10.225-15.227,10.775 c-0.43,0.314-0.768,0.219-1.299-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.949-0.436-1.711-0.034 c-0.869,0.46-3.763,1.914-9.954,8.106c-6.193,6.192-7.636,9.092-8.108,9.956c-0.378,0.69-0.319,1.135,0.036,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.492,0.533,0.559,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195 c-0.534,0.803-1.009,1.098-1.665,0.606c0.314,0.378,0.643,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.853,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1610.521" x2="-1610.521" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#CF8122"/>
- <stop offset="0.5" style="stop-color:#8C4105"/>
- <stop offset="1" style="stop-color:#CF8122"/>
+<stop offset="0" style="stop-color:#CF8122"/>
+<stop offset="0.5" style="stop-color:#8C4105"/>
+<stop offset="1" style="stop-color:#CF8122"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31 c8.506-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.533,18.959S3.489,41.869,2.195,44.688 c-0.038,0.087-0.063,0.166-0.101,0.251c0.07,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31 c8.506-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.533,18.959S3.489,41.869,2.195,44.688 c-0.038,0.087-0.063,0.166-0.101,0.251c0.07,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<rect fill="url(#SVGID_1__)" height="7.853" width="5.105" x="12.45" y="19.72"/>
<path d="M12.45,24.66c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.285z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M12.45,24.02c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.288z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.975" y2="23.67">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="0.3212" stop-color="#E6E6E6"/>
-
<stop offset="1" stop-color="#666666"/>
-
</linearGradient>
<path d="M15,23.7c-5.98,0-10.85-4.867-10.85-10.85s4.87-10.85,10.85-10.85c5.982,0,10.85,4.866,10.85,10.85s-4.87,10.85-10.85,10.85z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="2.614" y2="23.03">
-
<stop offset="0" stop-color="#D1D7D9"/>
-
<stop offset="0.0667" stop-color="#D1D7D9"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#7C8487"/>
-
<stop offset="1" stop-color="#ADB3B5"/>
-
</linearGradient>
<circle cx="15" cy="12.85" fill="url(#SVGID_3__)" r="10.21"/>
<path d="M15,21.99c-5.315,0-9.657-4.23-9.843-9.5-0.004,0.116-0.009,0.231-0.009,0.349,0,5.431,4.419,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.117-0.005-0.232-0.009-0.349-0.18,5.27-4.52,9.5-9.84,9.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<path d="M23.3,12.41c0,4.704-3.715,9.346-8.299,9.345-4.58-0.003-8.292-4.646-8.291-9.35,0.002-4.706,3.718-8.517,8.298-8.517,4.57,0.001,8.29,3.814,8.29,8.517z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M15,21.07c-2.387-0.002-4.63-0.932-6.315-2.619-1.688-1.688-2.615-3.932-2.614-6.318,0-4.923,4.009-8.929,8.935-8.929,2.387,0,4.632,0.931,6.317,2.618,1.688,1.688,2.616,3.933,2.615,6.318-0.002,4.924-4.01,8.93-8.934,8.93h-0.014z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="3.721" y2="20.35">
-
<stop offset="0" stop-color="#CFCFCF"/>
-
<stop offset="0.1091" stop-color="#CFCFCF"/>
-
<stop offset="0.6848" stop-color="#121212"/>
-
<stop offset="1" stop-color="#A6A6A6"/>
-
</linearGradient>
<path d="M15,20.43c-2.216-0.002-4.298-0.864-5.864-2.432-1.567-1.566-2.428-3.65-2.427-5.866,0-4.573,3.723-8.293,8.296-8.293,2.218,0.001,4.3,0.864,5.866,2.432s2.43,3.651,2.428,5.867c-0.001,4.573-3.723,8.292-8.295,8.292h-0.004z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15" x2="15" y1="4.368" y2="19.72">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="1" stop-color="#606769"/>
-
</linearGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_5__)" r="7.657"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="15" x2="15" y1="5.772" y2="18.45">
-
<stop offset="0" stop-color="#1A1A1A"/>
-
<stop offset="0.503" stop-color="#343434"/>
-
<stop offset="0.7515" stop-color="#9E9E9E"/>
-
<stop offset="1" stop-color="#CFCFCF"/>
-
</linearGradient>
<path d="M15,18.51c-1.706-0.001-3.309-0.666-4.514-1.871-1.204-1.206-1.867-2.808-1.867-4.512,0-3.517,2.862-6.378,6.382-6.378,1.706,0,3.308,0.664,4.513,1.871,1.205,1.205,1.868,2.808,1.867,4.513,0,3.51-2.86,6.37-6.38,6.37z" fill="url(#SVGID_6__)"/>
<radialGradient cx="25.77" cy="10.27" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="6.499">
-
<stop offset="0" stop-color="#000000"/>
-
<stop offset="0.5917" stop-color="#000000"/>
-
<stop offset="0.627" stop-color="#050505"/>
-
<stop offset="0.7652" stop-color="#121212"/>
-
<stop offset="0.8876" stop-color="#171717"/>
-
<stop offset="1" stop-color="#171717"/>
-
</radialGradient>
<path d="M20.74,12.14c0,3.172-2.574,5.74-5.744,5.74-3.175-0.001-5.743-2.573-5.741-5.745,0-3.171,2.573-5.742,5.745-5.74,3.17-0.009,5.74,2.562,5.74,5.74z" fill="url(#SVGID_7_)"/>
<radialGradient cx="21.65" cy="5.066" gradientTransform="matrix(1.0143 0 0 1.0141 -9.5579 3.1299)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="10.35">
-
<stop offset="0" stop-color="#242424"/>
-
<stop offset="0.4303" stop-color="#242424"/>
-
<stop offset="0.7818" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_8_)" r="4.712"/>
<radialGradient cx="23.96" cy="3.55" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="11.36">
-
<stop offset="0" stop-color="#A700F5"/>
-
<stop offset="0.3091" stop-color="#A700F5"/>
-
<stop offset="0.4364" stop-color="#5E008A"/>
-
<stop offset="0.8061" stop-color="#0E1402"/>
-
<stop offset="1" stop-color="#0E1402"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0.004-2.327,1.89-4.21,4.213-4.21,2.33,0.003,4.21,1.888,4.21,4.21z" fill="url(#SVGID_9_)"/>
<radialGradient cx="25.17" cy="13.25" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="4.611">
-
<stop offset="0" stop-color="#48630C"/>
-
<stop offset="0.7879" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0,0,1.444,2.569,4.213,2.569,2.77,0,4.21-2.57,4.21-2.57z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="14.98" x2="14.98" y1="7.065" y2="12.09">
-
<stop offset="0" stop-color="#F8FBFF"/>
-
<stop offset="1" stop-color="#808080"/>
-
</linearGradient>
<path d="M14.98,12.07c1.828,0,3.549-0.277,5.067-0.765-0.431-2.41-2.532-4.239-5.067-4.239-2.532,0-4.632,1.83-5.065,4.239,1.515,0.49,3.235,0.77,5.065,0.77z" fill="url(#SVGID_11_)" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="5.762" x2="24.29" y1="26.72" y2="26.72">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<path d="M24.24,28c0.025-0.635,0.04-0.508,0.04-0.639v-0.035c0-1.037-0.852-1.879-1.901-1.879h-14.72c-1.05,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.04,0.639h18.44z" fill="url(#SVGID_12_)"/>
<path d="M5.879,26.7h18.29c-0.084-0.234-0.212-0.444-0.377-0.626h-17.53c-0.164,0.19-0.293,0.4-0.377,0.63z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
@@ -189,4 +131,4 @@
<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_capture.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_capture.svg Thu May 27 13:10:59 2010 +0300
@@ -1,138 +1,149 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
- <stop offset="0" style="stop-color:#757575"/>
- <stop offset="0.2424" style="stop-color:#000000"/>
- <stop offset="0.8606" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#363636"/>
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
-<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" enable-background="new " fill="#FFFFFF" opacity="0.55"/>
-<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" enable-background="new " fill="#FFFFFF" opacity="0.1"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.5" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
-<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" enable-background="new " fill="#FFFFFF" opacity="0.5"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#404040"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
-<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" enable-background="new " fill="#FFFFFF" opacity="0.2"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="30,22.402 30,12.467 30,0 0,0 0,30 30,30 "/>
-<path d="M2.609,27.517c-1.533,0-2.604-1.071-2.604-2.604L0,10.432c0-4.383,3.566-7.949,7.951-7.949 c4.386,0.002,7.953,3.571,7.951,7.956v0.398c0.064-0.008,0.13-0.012,0.195-0.012h12.262c0.904,0,1.641,0.736,1.641,1.642v9.936 c0,0.905-0.736,1.642-1.641,1.642H16.098c-0.067,0-0.135-0.005-0.2-0.013l-0.001,0.882c0,1.386-1.217,2.604-2.604,2.604H2.609z" opacity="0.35"/>
+<path d="M2.609,27.517c-1.533,0-2.604-1.071-2.604-2.604L0,10.432c0-4.383,3.566-7.949,7.951-7.949 c4.386,0.002,7.953,3.571,7.951,7.956v0.398c0.064-0.008,0.13-0.012,0.195-0.012h12.262c0.904,0,1.641,0.736,1.641,1.642v9.936 c0,0.905-0.736,1.642-1.641,1.642H16.098c-0.067,0-0.135-0.005-0.2-0.013l-0.001,0.882c0,1.386-1.217,2.604-2.604,2.604H2.609z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="7.9512" x2="7.9512" y1="3.3208" y2="26.41">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.3212" style="stop-color:#E6E6E6"/>
- <stop offset="1" style="stop-color:#666666"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.3212" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
<path d="M14.902,10.438c0.002-3.84-3.109-6.953-6.949-6.955C4.113,3.481,1,6.594,1,10.432 c0,0.088,0.006,14.48,0.006,14.48c0,0.936,0.588,1.604,1.604,1.604h10.684c0.842,0,1.604-0.788,1.604-1.604 C14.896,24.912,14.902,10.524,14.902,10.438z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="7.9512" x2="7.9512" y1="3.646" y2="26.0921">
- <stop offset="0.1212" style="stop-color:#D0D4D5"/>
- <stop offset="0.5091" style="stop-color:#B0B6B8"/>
- <stop offset="0.5091" style="stop-color:#9FA6A8"/>
- <stop offset="0.6606" style="stop-color:#7D8588"/>
- <stop offset="0.9758" style="stop-color:#ADB3B5"/>
- <stop offset="0.9758" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D0D4D5"/>
+<stop offset="0.1212" style="stop-color:#D0D4D5"/>
+<stop offset="0.5091" style="stop-color:#B0B6B8"/>
+<stop offset="0.5091" style="stop-color:#9FA6A8"/>
+<stop offset="0.6606" style="stop-color:#7D8588"/>
+<stop offset="0.9758" style="stop-color:#ADB3B5"/>
+<stop offset="0.9758" style="stop-color:#595C5E"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M2.609,26.195c-0.803,0-1.283-0.479-1.283-1.283c0,0-0.006-14.393-0.006-14.48 c0-3.654,2.975-6.629,6.631-6.629c3.658,0.002,6.633,2.979,6.631,6.635c0,0.087-0.006,14.475-0.006,14.475 c0,0.648-0.637,1.283-1.283,1.283H2.609z" fill="url(#SVGID_2__)"/>
-<path d="M13.986,10.71c-0.002,3.333-2.703,6.621-6.037,6.619c-3.332-0.001-6.033-3.291-6.033-6.622 c0.002-3.334,2.705-6.032,6.037-6.032C11.287,4.676,13.986,7.378,13.986,10.71z" fill="#231F20" opacity="0.5"/>
+<path d="M13.986,10.71c-0.002,3.333-2.703,6.621-6.037,6.619c-3.332-0.001-6.033-3.291-6.033-6.622 c0.002-3.334,2.705-6.032,6.037-6.032C11.287,4.676,13.986,7.378,13.986,10.71z" fill="#231F20" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="7.9512" x2="7.9512" y1="4.4121" y2="16.5024">
- <stop offset="0.1091" style="stop-color:#CFCFCF"/>
- <stop offset="0.6848" style="stop-color:#121212"/>
- <stop offset="1" style="stop-color:#A6A6A6"/>
+<stop offset="0" style="stop-color:#CFCFCF"/>
+<stop offset="0.1091" style="stop-color:#CFCFCF"/>
+<stop offset="0.6848" style="stop-color:#121212"/>
+<stop offset="1" style="stop-color:#A6A6A6"/>
</linearGradient>
<circle cx="7.951" cy="10.464" fill="url(#SVGID_3__)" r="6.012"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="7.9512" x2="7.9512" y1="4.6738" y2="16.122">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#606769"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#606769"/>
</linearGradient>
<circle cx="7.951" cy="10.465" fill="url(#SVGID_4__)" r="5.711"/>
<linearGradient gradientTransform="matrix(1 3.000000e-004 -3.000000e-004 1 -0.7997 -0.83)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="5.46" x2="12.0483" y1="7.9976" y2="14.5859">
- <stop offset="0" style="stop-color:#1A1A1A"/>
- <stop offset="0.503" style="stop-color:#343434"/>
- <stop offset="0.7515" style="stop-color:#9E9E9E"/>
- <stop offset="1" style="stop-color:#CFCFCF"/>
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.503" style="stop-color:#343434"/>
+<stop offset="0.7515" style="stop-color:#9E9E9E"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
<circle cx="7.952" cy="10.464" fill="url(#SVGID_5_)" r="4.659"/>
<radialGradient cx="148.6523" cy="-52.0352" gradientTransform="matrix(0.9568 3.000000e-004 -3.000000e-004 0.9568 -133.8237 60.5787)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="5.2276">
- <stop offset="0.5917" style="stop-color:#000000"/>
- <stop offset="0.627" style="stop-color:#050505"/>
- <stop offset="0.7652" style="stop-color:#121212"/>
- <stop offset="0.8876" style="stop-color:#171717"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5917" style="stop-color:#000000"/>
+<stop offset="0.627" style="stop-color:#050505"/>
+<stop offset="0.7652" style="stop-color:#121212"/>
+<stop offset="0.8876" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#171717"/>
</radialGradient>
<circle cx="7.952" cy="10.464" fill="url(#SVGID_6_)" r="4.358"/>
<radialGradient cx="145.7949" cy="-41.3301" gradientTransform="matrix(0.9651 0 0 0.965 -134.7423 47.3895)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="8.3282">
- <stop offset="0.4303" style="stop-color:#242424"/>
- <stop offset="0.7818" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#242424"/>
+<stop offset="0.4303" style="stop-color:#242424"/>
+<stop offset="0.7818" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
<circle cx="7.951" cy="10.464" fill="url(#SVGID_7_)" r="3.607"/>
<radialGradient cx="146.1094" cy="-80.7524" gradientTransform="matrix(0.9448 3.000000e-004 -3.000000e-004 0.9449 -131.0246 81.9801)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="9.1349">
- <stop offset="0.3091" style="stop-color:#A700F5"/>
- <stop offset="0.4364" style="stop-color:#5E008A"/>
- <stop offset="0.8061" style="stop-color:#0E1402"/>
+<stop offset="0" style="stop-color:#A700F5"/>
+<stop offset="0.3091" style="stop-color:#A700F5"/>
+<stop offset="0.4364" style="stop-color:#5E008A"/>
+<stop offset="0.8061" style="stop-color:#0E1402"/>
+<stop offset="1" style="stop-color:#0E1402"/>
</radialGradient>
<circle cx="7.951" cy="10.464" fill="url(#SVGID_8_)" r="3.156"/>
<radialGradient cx="147.0527" cy="-162.396" gradientTransform="matrix(0.9448 3.000000e-004 -3.000000e-004 0.8996 -131.0251 159.1253)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="3.709">
- <stop offset="0" style="stop-color:#48630C"/>
- <stop offset="0.7879" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#48630C"/>
+<stop offset="0.7879" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
<path d="M11.107,10.575c-0.001,1.659-1.414,3.005-3.156,3.004s-3.156-1.348-3.156-3.006 c0,0,1.082,1.833,3.156,1.833C10.025,12.407,11.107,10.575,11.107,10.575z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="7.9346" x2="7.9346" y1="6.584" y2="10.4348">
- <stop offset="0" style="stop-color:#F8FBFF"/>
- <stop offset="1" style="stop-color:#808080"/>
+<stop offset="0" style="stop-color:#F8FBFF"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<path d="M7.936,10.416c1.398,0,2.717-0.213,3.879-0.586c-0.33-1.846-1.939-3.246-3.879-3.246 s-3.549,1.4-3.881,3.245C5.219,10.203,6.537,10.416,7.936,10.416z" fill="url(#SVGID_10_)" opacity="0.35"/>
+<path d="M7.936,10.416c1.398,0,2.717-0.213,3.879-0.586c-0.33-1.846-1.939-3.246-3.879-3.246 s-3.549,1.4-3.881,3.245C5.219,10.203,6.537,10.416,7.936,10.416z" fill="url(#SVGID_10_)" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="22.2285" x2="22.2285" y1="11.7466" y2="22.9921">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="0.3212" style="stop-color:#E6E6E6"/>
- <stop offset="1" style="stop-color:#666666"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.3212" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
<path d="M29,22.402c0,0.354-0.287,0.642-0.641,0.642H16.098c-0.354,0-0.641-0.288-0.641-0.642v-9.936 c0-0.354,0.287-0.642,0.641-0.642h12.262c0.354,0,0.641,0.288,0.641,0.642V22.402z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="22.2285" x2="22.2285" y1="12.0703" y2="22.6757">
- <stop offset="0.1212" style="stop-color:#D0D4D5"/>
- <stop offset="0.5091" style="stop-color:#B0B6B8"/>
- <stop offset="0.5091" style="stop-color:#9FA6A8"/>
- <stop offset="0.6606" style="stop-color:#7D8588"/>
- <stop offset="0.9758" style="stop-color:#ADB3B5"/>
- <stop offset="0.9758" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#D0D4D5"/>
+<stop offset="0.1212" style="stop-color:#D0D4D5"/>
+<stop offset="0.5091" style="stop-color:#B0B6B8"/>
+<stop offset="0.5091" style="stop-color:#9FA6A8"/>
+<stop offset="0.6606" style="stop-color:#7D8588"/>
+<stop offset="0.9758" style="stop-color:#ADB3B5"/>
+<stop offset="0.9758" style="stop-color:#595C5E"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<path d="M16.098,22.725c-0.178,0-0.32-0.145-0.32-0.322v-9.936c0-0.178,0.143-0.322,0.32-0.322h12.262 c0.176,0,0.32,0.145,0.32,0.322v9.936c0,0.178-0.145,0.322-0.32,0.322H16.098z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="14.9092" x2="13.6655" y1="17.4346" y2="17.4346">
- <stop offset="0" style="stop-color:#D3D3D4"/>
- <stop offset="1" style="stop-color:#EDEDED"/>
+<stop offset="0" style="stop-color:#D3D3D4"/>
+<stop offset="1" style="stop-color:#EDEDED"/>
</linearGradient>
<path d="M14.9,13.788h-1.279v7.293h1.275C14.898,18.812,14.9,15.968,14.9,13.788z" fill="url(#SVGID_13_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="14.9092" x2="13.975" y1="17.4341" y2="17.4341">
- <stop offset="0" style="stop-color:#5F5F5F"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#5F5F5F"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_14_)" height="6.651" width="0.961" x="13.941" y="14.108"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="15.4912" x2="14.3045" y1="17.4346" y2="17.4346">
- <stop offset="0.1091" style="stop-color:#CFCFCF"/>
- <stop offset="0.6848" style="stop-color:#121212"/>
- <stop offset="1" style="stop-color:#A6A6A6"/>
+<stop offset="0" style="stop-color:#CFCFCF"/>
+<stop offset="0.1091" style="stop-color:#CFCFCF"/>
+<stop offset="0.6848" style="stop-color:#121212"/>
+<stop offset="1" style="stop-color:#A6A6A6"/>
</linearGradient>
<rect fill="url(#SVGID_15_)" height="6.01" width="1.221" x="14.262" y="14.43"/>
-<rect height="6.01" opacity="0.25" width="0.346" x="15.137" y="14.43"/>
+<rect fill-opacity="0.25" height="6.01" stroke-opacity="0.25" width="0.346" x="15.137" y="14.43"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_collection.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_collection.svg Thu May 27 13:10:59 2010 +0300
@@ -1,207 +1,105 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="0.3882" y2="59.65">
-
<stop offset="0" stop-color="#A6A8AB"/>
-
<stop offset="1" stop-color="#231F20"/>
-
-</linearGradient>
-
-<path d="M0,60v-59.69h60v59.69h-60zm50.25-5.68l-20.25-20.15-20.25,20.15h40.49zm4.04-4.02v-40.29l-20.25,20.14,20.25,20.15zm-48.58,0l20.25-20.15-20.25-20.14v40.29zm24.29-24.17l20.25-20.14h-40.5l20.25,20.14z" fill="url(#SVGID_1_)" fill-opacity="0.2" stroke-opacity="0.2"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="1.097" y2="58.95">
-
-<stop offset="0" stop-color="#A9AAAD"/>
-
-<stop offset="1" stop-color="#000000"/>
-
</linearGradient>
-
-<path d="M0.714,59.29v-58.27h58.57v58.27m-7.32-4.26l-21.97-21.86-21.97,21.86h43.94zm3.03-3.02v-43.72l-21.97,21.86,21.97,21.86zm-50,0l21.97-21.86-21.97-21.86v43.72zm25-24.87l21.97-21.86h-43.94l21.97,21.86z" fill="url(#SVGID_2_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="1.095" y2="57.53">
-
-<stop offset="0" stop-color="#F4FCFF"/>
-
-<stop offset="0.6242" stop-color="#C9CED1"/>
-
-<stop offset="1" stop-color="#9CA4A7"/>
-
-</linearGradient>
-
-<path d="M1.428,1.017v56.85h57.14v-56.85h-57.14zm26.55,28.42l-23.7,23.58v-47.15l23.7,23.57zm-21.68-25.58h47.39l-23.7,23.57-23.7-23.57zm23.7,27.59l23.7,23.57h-47.4l23.7-23.57zm2.02-2.01l23.7-23.57v47.15l-23.7-23.58z" fill="url(#SVGID_3_)"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="4.57" y2="53.6">
-
-<stop offset="0" stop-color="#A6A8AB"/>
-
-<stop offset="1" stop-color="#231F20"/>
-
-</linearGradient>
-
-<path d="M20,53.6c-1.924,0-3.583-1.555-3.698-3.462l-1.13-17.86h-0.17c-1.576,0-2.856-1.276-2.856-2.843v-4.264c0-1.567,1.281-2.842,2.856-2.842h12.5v-3.604c-0.361,0.029-0.728,0.043-1.099,0.043-2.795,0-5.822-0.82-8.524-2.312-4.18-2.304-7.19-6.002-7.856-9.653l-0.214-1.197,1.147-0.402c1.227-0.43,2.592-0.647,4.056-0.647,2.797,0,5.831,0.823,8.541,2.317,2.809,1.548,5.054,3.648,6.45,6.008,1.396-2.36,3.642-4.461,6.45-6.009,2.709-1.494,5.743-2.317,8.54-2.317,1.464,0,2.829,0.218,4.056,0.647l1.149,0.402-0.217,1.192c-0.666,3.65-3.676,7.349-7.855,9.654-2.703,1.49-5.73,2.31-8.523,2.31-0.372,0-0.738-0.014-1.1-0.043v3.604h12.5c1.575,0,2.855,1.275,2.855,2.842v4.264c0,1.567-1.28,2.843-2.855,2.843h-0.17l-1.132,17.86c-0.115,1.907-1.773,3.462-3.698,3.462h-20z" fill="url(#SVGID_4_)" fill-opacity="0.2" stroke-opacity="0.2"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="5.281" y2="52.9">
-
+<path d="M0,60v-59.69h60v59.69h-60zm50.25-5.68l-20.25-20.15-20.25,20.15h40.49zm4.04-4.02v-40.29l-20.25,20.14,20.25,20.15zm-48.58,0l20.25-20.15-20.25-20.14v40.29zm24.29-24.17l20.25-20.14h-40.5l20.25,20.14z" fill="url(#SVGID_1_)" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="1.097" y2="58.95">
<stop offset="0" stop-color="#A9AAAD"/>
-
<stop offset="1" stop-color="#000000"/>
-
+</linearGradient>
+<path d="M0.714,59.29v-58.27h58.57v58.27m-7.32-4.26l-21.97-21.86-21.97,21.86h43.94zm3.03-3.02v-43.72l-21.97,21.86,21.97,21.86zm-50,0l21.97-21.86-21.97-21.86v43.72zm25-24.87l21.97-21.86h-43.94l21.97,21.86z" fill="url(#SVGID_2_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="1.095" y2="57.53">
+<stop offset="0" stop-color="#F4FCFF"/>
+<stop offset="0.6242" stop-color="#C9CED1"/>
+<stop offset="1" stop-color="#9CA4A7"/>
</linearGradient>
-
+<path d="M1.428,1.017v56.85h57.14v-56.85h-57.14zm26.55,28.42l-23.7,23.58v-47.15l23.7,23.57zm-21.68-25.58h47.39l-23.7,23.57-23.7-23.57zm23.7,27.59l23.7,23.57h-47.4l23.7-23.57zm2.02-2.01l23.7-23.57v47.15l-23.7-23.58z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="4.57" y2="53.6">
+<stop offset="0" stop-color="#A6A8AB"/>
+<stop offset="1" stop-color="#231F20"/>
+</linearGradient>
+<path d="M20,53.6c-1.924,0-3.583-1.555-3.698-3.462l-1.13-17.86h-0.17c-1.576,0-2.856-1.276-2.856-2.843v-4.264c0-1.567,1.281-2.842,2.856-2.842h12.5v-3.604c-0.361,0.029-0.728,0.043-1.099,0.043-2.795,0-5.822-0.82-8.524-2.312-4.18-2.304-7.19-6.002-7.856-9.653l-0.214-1.197,1.147-0.402c1.227-0.43,2.592-0.647,4.056-0.647,2.797,0,5.831,0.823,8.541,2.317,2.809,1.548,5.054,3.648,6.45,6.008,1.396-2.36,3.642-4.461,6.45-6.009,2.709-1.494,5.743-2.317,8.54-2.317,1.464,0,2.829,0.218,4.056,0.647l1.149,0.402-0.217,1.192c-0.666,3.65-3.676,7.349-7.855,9.654-2.703,1.49-5.73,2.31-8.523,2.31-0.372,0-0.738-0.014-1.1-0.043v3.604h12.5c1.575,0,2.855,1.275,2.855,2.842v4.264c0,1.567-1.28,2.843-2.855,2.843h-0.17l-1.132,17.86c-0.115,1.907-1.773,3.462-3.698,3.462h-20z" fill="url(#SVGID_4_)" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="5.281" y2="52.9">
+<stop offset="0" stop-color="#A9AAAD"/>
+<stop offset="1" stop-color="#000000"/>
+</linearGradient>
<path d="M33.6,18.06h0.002c2.675,0,5.578-0.788,8.177-2.221,3.998-2.204,6.871-5.714,7.499-9.159l0.107-0.596-0.58-0.197c-1.151-0.403-2.437-0.607-3.819-0.607-2.678,0-5.589,0.791-8.194,2.228-3.18,1.751-5.6,4.251-6.8,6.931-1.199-2.687-3.617-5.185-6.795-6.936-2.607-1.438-5.518-2.228-8.195-2.228-1.383,0-2.668,0.204-3.819,0.607l-0.573,0.201,0.107,0.596c0.628,3.445,3.501,6.955,7.499,9.159,2.599,1.433,5.503,2.221,8.178,2.221,0.622,0,1.229-0.042,1.813-0.125v5.106h-13.21c-1.182,0-2.143,0.957-2.143,2.132v4.264c0,1.176,0.961,2.131,2.143,2.131h0.843l1.17,18.53c0.094,1.54,1.434,2.796,2.986,2.796h20c1.553,0,2.893-1.256,2.986-2.796l1.171-18.53h0.844c1.181,0,2.143-0.955,2.143-2.131v-4.264c0-1.175-0.962-2.132-2.143-2.132h-13.22v-5.11c0.585,0.08,1.195,0.12,1.815,0.12z" fill="url(#SVGID_5_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="43.37" x2="16.62" y1="39.75" y2="39.75">
-
<stop offset="0" stop-color="#BC5800"/>
-
<stop offset="0.3" stop-color="#A23600"/>
-
<stop offset="1" stop-color="#D07100"/>
-
</linearGradient>
-
<path d="M43.57,28.02h-27.14l1.299,21.32c0.072,1.17,1.094,2.129,2.273,2.129h20c1.18,0,2.201-0.959,2.273-2.129l1.3-21.32z" fill="url(#SVGID_6_)"/>
-
<path d="M40.27,50.76h-20.54c-0.795,0-1.515-0.419-1.939-1.04,0.242,0.992,1.162,1.752,2.211,1.752h20c1.05,0,1.97-0.76,2.212-1.752-0.42,0.62-1.14,1.04-1.94,1.04z" fill="#600909" fill-opacity="0.7" stroke-opacity="0.7"/>
-
<path d="M30,30.86c6.11,0,10.08,0.573,13.37,1.227l0.205-3.359h-27.15l0.205,3.359c3.29-0.65,7.26-1.23,13.37-1.23z" fill="#600909" fill-opacity="0.4" stroke-opacity="0.4"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="28.87" x2="31.01" y1="21.27" y2="21.27">
-
<stop offset="0" stop-color="#8BC53F"/>
-
<stop offset="0.3758" stop-color="#33773B"/>
-
<stop offset="0.6303" stop-color="#004F3C"/>
-
<stop offset="1" stop-color="#007338"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_7_)" height="9.238" width="2.142" x="28.93" y="16.65"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="46.43" x2="13.57" y1="26.6" y2="26.6">
-
<stop offset="0" stop-color="#BC5800"/>
-
<stop offset="0.3" stop-color="#A23600"/>
-
<stop offset="1" stop-color="#D07100"/>
-
</linearGradient>
-
<path d="M46.43,28.73c0,0.781-0.645,1.42-1.429,1.42h-30c-0.785,0-1.429-0.639-1.429-1.42v-4.264c0-0.782,0.644-1.421,1.429-1.421h30c0.784,0,1.429,0.64,1.429,1.421v4.262z" fill="url(#SVGID_8_)"/>
-
<path d="M45,29.44h-30c-0.785,0-1.429-0.64-1.429-1.42v0.71c0,0.781,0.644,1.42,1.429,1.42h30c0.784,0,1.429-0.639,1.429-1.42v-0.71c0,0.78-0.65,1.42-1.43,1.42z" fill="#600909" fill-opacity="0.7" stroke-opacity="0.7"/>
-
<path d="M45,23.05h-30c-0.785,0-1.429,0.64-1.429,1.421v0.71c0-0.781,0.644-1.421,1.429-1.421h30c0.784,0,1.429,0.64,1.429,1.421v-0.71c0-0.78-0.65-1.42-1.43-1.42z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.42" x2="30.04" y1="5.904" y2="16.9">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M22.86,8.13c-3.974-2.19-8.299-2.669-11.43-1.572,0.57,3.138,3.167,6.474,7.142,8.665,3.973,2.19,8.299,2.669,11.43,1.572-0.57-3.13-3.17-6.47-7.14-8.66z" fill="url(#SVGID_9_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="42.12" x2="39.54" y1="18.21" y2="12.26">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M37.14,8.13c3.974-2.19,8.299-2.669,11.43-1.572-0.569,3.138-3.167,6.474-7.142,8.665-3.973,2.19-8.299,2.669-11.43,1.572,0.57-3.13,3.17-6.47,7.14-8.66z" fill="url(#SVGID_10_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="18.88" x2="20.66" y1="18.17" y2="11.88">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M18.57,15.22c3.973,2.19,8.299,2.669,11.43,1.572,0,0-7.308-3.236-9.777-4.551-3.304-1.759-8.794-5.685-8.794-5.685,0.57,3.141,3.17,6.475,7.14,8.665z" fill="url(#SVGID_11_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="48.8" x2="29.48" y1="4.137" y2="15.73">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M37.14,8.13c-3.975,2.19-6.57,5.527-7.142,8.665,0,0,6.843-2.558,9.867-4.285,3.393-1.937,8.704-5.952,8.704-5.952-3.13-1.107-7.45-0.628-11.43,1.562z" fill="url(#SVGID_12_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="20.71" x2="20.71" y1="6.366" y2="15.88">
-
<stop offset="0" stop-color="#D2FF8A"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M22.86,8.13c-3.974-2.19-8.299-2.669-11.43-1.572,3.953-0.562,7.701,0.2,11.08,2.193,3.334,1.965,5.657,4.691,7.488,8.043-0.57-3.13-3.17-6.47-7.14-8.66z" fill="url(#SVGID_13_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="39.29" x2="39.29" y1="6.069" y2="16.06">
-
<stop offset="0" stop-color="#D2FF8A"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M37.49,8.751c5.281-3.037,11.08-2.193,11.08-2.193-3.13-1.097-7.45-0.618-11.43,1.572-3.975,2.19-6.57,5.527-7.142,8.665,0-0.01,1.95-4.86,7.49-8.049z" fill="url(#SVGID_14_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="18.88" x2="20.66" y1="18.17" y2="11.88">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="0.2303" stop-color="#D6FF61"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M18.92,14.6c-5.35-2.86-7.487-8.042-7.487-8.042,0.57,3.138,3.167,6.474,7.142,8.665,3.973,2.19,8.299,2.669,11.43,1.572,0,0-5,1.06-11.08-2.19z" fill="url(#SVGID_15_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="40.85" x2="39.69" y1="17.8" y2="13.28">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="0.2303" stop-color="#D6FF61"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M41.08,14.6c-3.312,1.95-6.667,2.734-11.08,2.194,3.131,1.097,7.457,0.618,11.43-1.572,3.975-2.19,6.572-5.527,7.142-8.665-1.26,3.228-3.26,5.555-7.49,8.045z" fill="url(#SVGID_16_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="30" x2="30" y1="1.095" y2="57.53">
-
<stop offset="0" stop-color="#C9CDCE"/>
-
<stop offset="1" stop-color="#6E7273"/>
-
</linearGradient>
-
<path d="M1.428,1.017v56.85h57.14v-56.85h-57.14zm56.43,56.14h-55.72v-55.43h55.72v55.43z" fill="url(#SVGID_17_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="30" x2="30" y1="1.806" y2="57.12">
-
<stop offset="0" stop-color="#E6E9E8"/>
-
<stop offset="1" stop-color="#ADB2B5"/>
-
</linearGradient>
-
<path d="M2.142,1.727v55.43h55.72v-55.43h-55.72zm55,54.72h-54.28v-54.01h54.29v54.01z" fill="url(#SVGID_18_)"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_dialled_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_dialled_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,58 +1,58 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g>
-<defs>
-</defs>
<polygon fill="none" points="30.152,0.436 15.607,0.436 15.186,0 14.762,0.436 0.152,0.436 0.152,15.436 0,15.592 0.152,15.592 0.152,30.436 30.152,30.436 30.152,15.594 30.295,15.594 30.152,15.447 "/>
-<polygon opacity="0.35" points="8.484,30.434 8.48,15.594 0.4,15.594 0,15.592 15.186,0 30.295,15.594 21.907,15.594 21.915,30.436 "/>
+<polygon fill-opacity="0.35" points="8.484,30.434 8.48,15.594 0.4,15.594 0,15.592 15.186,0 30.295,15.594 21.907,15.594 21.915,30.436 " stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8438)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2176.5103" x2="-2176.5103" y1="2985.5796" y2="2956.2766">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#30A4D5"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#30A4D5"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="27.438,14.594 15.184,1.861 2.814,14.594 9.48,14.594 9.484,29.142 20.91,29.145 20.907,14.594 "/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8438)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2176.4844" x2="-2176.4844" y1="2984.1128" y2="2970.6938">
- <stop offset="0.4182" style="stop-color:#B3FCFF"/>
- <stop offset="1" style="stop-color:#5FBAD8"/>
+<stop offset="0" style="stop-color:#B3FCFF"/>
+<stop offset="0.4182" style="stop-color:#B3FCFF"/>
+<stop offset="1" style="stop-color:#5FBAD8"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="3.195,14.592 15.182,2.286 27.108,14.594 27.934,14.594 15.184,1.436 2.37,14.592 "/>
<line fill="none" x1="9.484" x2="20.91" y1="29.138" y2="29.14"/>
@@ -61,148 +61,90 @@
</g>
<g transform="matrix(1 0 0 1 30 30)">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<rect fill="url(#SVGID_1___)" height="7.853" width="5.105" x="12.45" y="19.72"/>
<path d="M12.45,24.66c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.285z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M12.45,24.02c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.288z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="15" x2="15" y1="1.975" y2="23.67">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="0.3212" stop-color="#E6E6E6"/>
-
<stop offset="1" stop-color="#666666"/>
-
</linearGradient>
<path d="M15,23.7c-5.98,0-10.85-4.867-10.85-10.85s4.87-10.85,10.85-10.85c5.982,0,10.85,4.866,10.85,10.85s-4.87,10.85-10.85,10.85z" fill="url(#SVGID_2___)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="2.614" y2="23.03">
-
<stop offset="0" stop-color="#D1D7D9"/>
-
<stop offset="0.0667" stop-color="#D1D7D9"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#7C8487"/>
-
<stop offset="1" stop-color="#ADB3B5"/>
-
</linearGradient>
<circle cx="15" cy="12.85" fill="url(#SVGID_3__)" r="10.21"/>
<path d="M15,21.99c-5.315,0-9.657-4.23-9.843-9.5-0.004,0.116-0.009,0.231-0.009,0.349,0,5.431,4.419,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.117-0.005-0.232-0.009-0.349-0.18,5.27-4.52,9.5-9.84,9.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<path d="M23.3,12.41c0,4.704-3.715,9.346-8.299,9.345-4.58-0.003-8.292-4.646-8.291-9.35,0.002-4.706,3.718-8.517,8.298-8.517,4.57,0.001,8.29,3.814,8.29,8.517z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M15,21.07c-2.387-0.002-4.63-0.932-6.315-2.619-1.688-1.688-2.615-3.932-2.614-6.318,0-4.923,4.009-8.929,8.935-8.929,2.387,0,4.632,0.931,6.317,2.618,1.688,1.688,2.616,3.933,2.615,6.318-0.002,4.924-4.01,8.93-8.934,8.93h-0.014z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="3.721" y2="20.35">
-
<stop offset="0" stop-color="#CFCFCF"/>
-
<stop offset="0.1091" stop-color="#CFCFCF"/>
-
<stop offset="0.6848" stop-color="#121212"/>
-
<stop offset="1" stop-color="#A6A6A6"/>
-
</linearGradient>
<path d="M15,20.43c-2.216-0.002-4.298-0.864-5.864-2.432-1.567-1.566-2.428-3.65-2.427-5.866,0-4.573,3.723-8.293,8.296-8.293,2.218,0.001,4.3,0.864,5.866,2.432s2.43,3.651,2.428,5.867c-0.001,4.573-3.723,8.292-8.295,8.292h-0.004z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15" x2="15" y1="4.368" y2="19.72">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="1" stop-color="#606769"/>
-
</linearGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_5__)" r="7.657"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="15" x2="15" y1="5.772" y2="18.45">
-
<stop offset="0" stop-color="#1A1A1A"/>
-
<stop offset="0.503" stop-color="#343434"/>
-
<stop offset="0.7515" stop-color="#9E9E9E"/>
-
<stop offset="1" stop-color="#CFCFCF"/>
-
</linearGradient>
<path d="M15,18.51c-1.706-0.001-3.309-0.666-4.514-1.871-1.204-1.206-1.867-2.808-1.867-4.512,0-3.517,2.862-6.378,6.382-6.378,1.706,0,3.308,0.664,4.513,1.871,1.205,1.205,1.868,2.808,1.867,4.513,0,3.51-2.86,6.37-6.38,6.37z" fill="url(#SVGID_6__)"/>
<radialGradient cx="25.77" cy="10.27" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="6.499">
-
<stop offset="0" stop-color="#000000"/>
-
<stop offset="0.5917" stop-color="#000000"/>
-
<stop offset="0.627" stop-color="#050505"/>
-
<stop offset="0.7652" stop-color="#121212"/>
-
<stop offset="0.8876" stop-color="#171717"/>
-
<stop offset="1" stop-color="#171717"/>
-
</radialGradient>
<path d="M20.74,12.14c0,3.172-2.574,5.74-5.744,5.74-3.175-0.001-5.743-2.573-5.741-5.745,0-3.171,2.573-5.742,5.745-5.74,3.17-0.009,5.74,2.562,5.74,5.74z" fill="url(#SVGID_7_)"/>
<radialGradient cx="21.65" cy="5.066" gradientTransform="matrix(1.0143 0 0 1.0141 -9.5579 3.1299)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="10.35">
-
<stop offset="0" stop-color="#242424"/>
-
<stop offset="0.4303" stop-color="#242424"/>
-
<stop offset="0.7818" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_8_)" r="4.712"/>
<radialGradient cx="23.96" cy="3.55" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="11.36">
-
<stop offset="0" stop-color="#A700F5"/>
-
<stop offset="0.3091" stop-color="#A700F5"/>
-
<stop offset="0.4364" stop-color="#5E008A"/>
-
<stop offset="0.8061" stop-color="#0E1402"/>
-
<stop offset="1" stop-color="#0E1402"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0.004-2.327,1.89-4.21,4.213-4.21,2.33,0.003,4.21,1.888,4.21,4.21z" fill="url(#SVGID_9_)"/>
<radialGradient cx="25.17" cy="13.25" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="4.611">
-
<stop offset="0" stop-color="#48630C"/>
-
<stop offset="0.7879" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0,0,1.444,2.569,4.213,2.569,2.77,0,4.21-2.57,4.21-2.57z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="14.98" x2="14.98" y1="7.065" y2="12.09">
-
<stop offset="0" stop-color="#F8FBFF"/>
-
<stop offset="1" stop-color="#808080"/>
-
</linearGradient>
<path d="M14.98,12.07c1.828,0,3.549-0.277,5.067-0.765-0.431-2.41-2.532-4.239-5.067-4.239-2.532,0-4.632,1.83-5.065,4.239,1.515,0.49,3.235,0.77,5.065,0.77z" fill="url(#SVGID_11_)" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="5.762" x2="24.29" y1="26.72" y2="26.72">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<path d="M24.24,28c0.025-0.635,0.04-0.508,0.04-0.639v-0.035c0-1.037-0.852-1.879-1.901-1.879h-14.72c-1.05,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.04,0.639h18.44z" fill="url(#SVGID_12_)"/>
<path d="M5.879,26.7h18.29c-0.084-0.234-0.212-0.444-0.377-0.626h-17.53c-0.164,0.19-0.293,0.4-0.377,0.63z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
@@ -210,4 +152,4 @@
<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_download.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_download.svg Thu May 27 13:10:59 2010 +0300
@@ -1,48 +1,44 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
- <stop offset="0" style="stop-color:#757575"/>
- <stop offset="0.2424" style="stop-color:#000000"/>
- <stop offset="0.8606" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#363636"/>
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
-<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" enable-background="new " fill="#FFFFFF" opacity="0.55"/>
-<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" enable-background="new " fill="#FFFFFF" opacity="0.1"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.5" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
-<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" enable-background="new " fill="#FFFFFF" opacity="0.5"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#404040"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
-<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" enable-background="new " fill="#FFFFFF" opacity="0.2"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="30.096,0 0.096,0 0.096,14.833 0,14.833 0.096,14.933 0.096,30 14.601,30 15.021,30.438 15.447,30 30.096,30 30.096,14.963 30.215,14.841 30.096,14.841 "/>
-<polygon opacity="0.35" points="0,14.833 3.596,14.828 3.625,14.859 8.375,14.859 8.375,0 21.73,0.001 21.73,14.843 30.215,14.841 15.021,30.438 "/>
+<polygon fill-opacity="0.35" points="0,14.833 3.596,14.828 3.625,14.859 8.375,14.859 8.375,0 21.73,0.001 21.73,14.843 30.215,14.841 15.021,30.438 " stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2176.5142" x2="-2176.5142" y1="2984.646" y2="2957.3247">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="2.846,15.859 15.025,28.575 27.398,15.845 20.732,15.843 20.727,1.292 9.375,1.291 9.375,15.859 "/>
<line fill="none" x1="20.727" x2="9.375" y1="1.297" y2="1.296"/>
@@ -50,10 +46,10 @@
<polygon fill="#E7FFB9" points="20.555,15.867 27.527,15.867 27,16.458 20.555,16.458 "/>
<polygon fill="#E7FFB9" points="2.459,15.859 9.365,15.859 9.365,16.451 3.08,16.451 "/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2165.6621" x2="-2187.9482" y1="2963.2173" y2="2963.2173">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="27.016,15.844 15.025,28.15 3.172,15.829 2.348,15.83 15.025,29 27.842,15.844 "/>
<rect fill="none" height="30" width="30" x="0.096"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_missed_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_missed_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,210 +1,150 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g>
-<defs>
-</defs>
<polygon fill="none" points="15.053,0 14.626,0.439 0,0.439 0,30.439 30,30.439 30,0.439 15.476,0.439 "/>
-<path d="M24.884,30.438c-10.001,0-15.735-4.635-15.735-12.715v-4.339H2.053L15.053,0l12.88,13.385h-6.962v4.339 c0,2.189,2.56,2.768,3.913,2.768h1v9.947H24.884z" opacity="0.35"/>
+<path d="M24.884,30.438c-10.001,0-15.735-4.635-15.735-12.715v-4.339H2.053L15.053,0l12.88,13.385h-6.962v4.339 c0,2.189,2.56,2.768,3.913,2.768h1v9.947H24.884z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3014.6338)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179" x2="-2179" y1="3012.1528" y2="2984.2842">
- <stop offset="0" style="stop-color:#FF7042"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FF7042"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<path d="M19.971,17.724v-5.339h5.611L15.049,1.438L4.418,12.385h5.73v5.339 c0,9.024,7.509,11.715,14.735,11.715v-7.947C22.658,21.491,19.971,20.392,19.971,17.724z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.7129" y2="22.5894">
- <stop offset="0" style="stop-color:#FFB259"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FFB259"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="15.049,2.438 24.62,12.385 25.582,12.385 15.049,1.438 4.418,12.385 5.389,12.385 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="22.4268" x2="22.4268" y1="1.7129" y2="22.5894">
- <stop offset="0" style="stop-color:#FF7042"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FF7042"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<path d="M19.971,17.724v1c0,2.668,2.688,3.768,4.913,3.768v-1C22.658,21.491,19.971,20.392,19.971,17.724z" fill="url(#SVGID_3__)"/>
<rect fill="none" height="30" width="30" y="0.439"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<rect fill="url(#SVGID_1___)" height="7.853" width="5.105" x="12.45" y="19.72"/>
<path d="M12.45,24.66c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.285z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M12.45,24.02c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.288z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="15" x2="15" y1="1.975" y2="23.67">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="0.3212" stop-color="#E6E6E6"/>
-
<stop offset="1" stop-color="#666666"/>
-
</linearGradient>
<path d="M15,23.7c-5.98,0-10.85-4.867-10.85-10.85s4.87-10.85,10.85-10.85c5.982,0,10.85,4.866,10.85,10.85s-4.87,10.85-10.85,10.85z" fill="url(#SVGID_2___)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3___" x1="15" x2="15" y1="2.614" y2="23.03">
-
<stop offset="0" stop-color="#D1D7D9"/>
-
<stop offset="0.0667" stop-color="#D1D7D9"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#7C8487"/>
-
<stop offset="1" stop-color="#ADB3B5"/>
-
</linearGradient>
<circle cx="15" cy="12.85" fill="url(#SVGID_3___)" r="10.21"/>
<path d="M15,21.99c-5.315,0-9.657-4.23-9.843-9.5-0.004,0.116-0.009,0.231-0.009,0.349,0,5.431,4.419,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.117-0.005-0.232-0.009-0.349-0.18,5.27-4.52,9.5-9.84,9.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<path d="M23.3,12.41c0,4.704-3.715,9.346-8.299,9.345-4.58-0.003-8.292-4.646-8.291-9.35,0.002-4.706,3.718-8.517,8.298-8.517,4.57,0.001,8.29,3.814,8.29,8.517z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M15,21.07c-2.387-0.002-4.63-0.932-6.315-2.619-1.688-1.688-2.615-3.932-2.614-6.318,0-4.923,4.009-8.929,8.935-8.929,2.387,0,4.632,0.931,6.317,2.618,1.688,1.688,2.616,3.933,2.615,6.318-0.002,4.924-4.01,8.93-8.934,8.93h-0.014z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="3.721" y2="20.35">
-
<stop offset="0" stop-color="#CFCFCF"/>
-
<stop offset="0.1091" stop-color="#CFCFCF"/>
-
<stop offset="0.6848" stop-color="#121212"/>
-
<stop offset="1" stop-color="#A6A6A6"/>
-
</linearGradient>
<path d="M15,20.43c-2.216-0.002-4.298-0.864-5.864-2.432-1.567-1.566-2.428-3.65-2.427-5.866,0-4.573,3.723-8.293,8.296-8.293,2.218,0.001,4.3,0.864,5.866,2.432s2.43,3.651,2.428,5.867c-0.001,4.573-3.723,8.292-8.295,8.292h-0.004z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15" x2="15" y1="4.368" y2="19.72">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="1" stop-color="#606769"/>
-
</linearGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_5__)" r="7.657"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="15" x2="15" y1="5.772" y2="18.45">
-
<stop offset="0" stop-color="#1A1A1A"/>
-
<stop offset="0.503" stop-color="#343434"/>
-
<stop offset="0.7515" stop-color="#9E9E9E"/>
-
<stop offset="1" stop-color="#CFCFCF"/>
-
</linearGradient>
<path d="M15,18.51c-1.706-0.001-3.309-0.666-4.514-1.871-1.204-1.206-1.867-2.808-1.867-4.512,0-3.517,2.862-6.378,6.382-6.378,1.706,0,3.308,0.664,4.513,1.871,1.205,1.205,1.868,2.808,1.867,4.513,0,3.51-2.86,6.37-6.38,6.37z" fill="url(#SVGID_6__)"/>
<radialGradient cx="25.77" cy="10.27" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="6.499">
-
<stop offset="0" stop-color="#000000"/>
-
<stop offset="0.5917" stop-color="#000000"/>
-
<stop offset="0.627" stop-color="#050505"/>
-
<stop offset="0.7652" stop-color="#121212"/>
-
<stop offset="0.8876" stop-color="#171717"/>
-
<stop offset="1" stop-color="#171717"/>
-
</radialGradient>
<path d="M20.74,12.14c0,3.172-2.574,5.74-5.744,5.74-3.175-0.001-5.743-2.573-5.741-5.745,0-3.171,2.573-5.742,5.745-5.74,3.17-0.009,5.74,2.562,5.74,5.74z" fill="url(#SVGID_7_)"/>
<radialGradient cx="21.65" cy="5.066" gradientTransform="matrix(1.0143 0 0 1.0141 -9.5579 3.1299)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="10.35">
-
<stop offset="0" stop-color="#242424"/>
-
<stop offset="0.4303" stop-color="#242424"/>
-
<stop offset="0.7818" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_8_)" r="4.712"/>
<radialGradient cx="23.96" cy="3.55" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="11.36">
-
<stop offset="0" stop-color="#A700F5"/>
-
<stop offset="0.3091" stop-color="#A700F5"/>
-
<stop offset="0.4364" stop-color="#5E008A"/>
-
<stop offset="0.8061" stop-color="#0E1402"/>
-
<stop offset="1" stop-color="#0E1402"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0.004-2.327,1.89-4.21,4.213-4.21,2.33,0.003,4.21,1.888,4.21,4.21z" fill="url(#SVGID_9_)"/>
<radialGradient cx="25.17" cy="13.25" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="4.611">
-
<stop offset="0" stop-color="#48630C"/>
-
<stop offset="0.7879" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0,0,1.444,2.569,4.213,2.569,2.77,0,4.21-2.57,4.21-2.57z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="14.98" x2="14.98" y1="7.065" y2="12.09">
-
<stop offset="0" stop-color="#F8FBFF"/>
-
<stop offset="1" stop-color="#808080"/>
-
</linearGradient>
<path d="M14.98,12.07c1.828,0,3.549-0.277,5.067-0.765-0.431-2.41-2.532-4.239-5.067-4.239-2.532,0-4.632,1.83-5.065,4.239,1.515,0.49,3.235,0.77,5.065,0.77z" fill="url(#SVGID_11_)" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="5.762" x2="24.29" y1="26.72" y2="26.72">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<path d="M24.24,28c0.025-0.635,0.04-0.508,0.04-0.639v-0.035c0-1.037-0.852-1.879-1.901-1.879h-14.72c-1.05,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.04,0.639h18.44z" fill="url(#SVGID_12_)"/>
<path d="M5.879,26.7h18.29c-0.084-0.234-0.212-0.444-0.377-0.626h-17.53c-0.164,0.19-0.293,0.4-0.377,0.63z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
@@ -212,4 +152,4 @@
<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_player.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_player.svg Thu May 27 13:10:59 2010 +0300
@@ -1,60 +1,56 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
- <stop offset="0" style="stop-color:#757575"/>
- <stop offset="0.2424" style="stop-color:#000000"/>
- <stop offset="0.8606" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#363636"/>
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
-<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" enable-background="new " fill="#FFFFFF" opacity="0.55"/>
-<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" enable-background="new " fill="#FFFFFF" opacity="0.1"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.5" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
-<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" enable-background="new " fill="#FFFFFF" opacity="0.5"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#404040"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
-<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" enable-background="new " fill="#FFFFFF" opacity="0.2"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.999C6.729,29.999,0,23.271,0,15S6.729,0.001,15,0.001c8.271,0,15,6.729,15,14.999 S23.271,29.999,15,29.999L15,29.999z" opacity="0.35"/>
+<path d="M15,29.999C6.729,29.999,0,23.271,0,15S6.729,0.001,15,0.001c8.271,0,15,6.729,15,14.999 S23.271,29.999,15,29.999L15,29.999z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(0.5 0 0 0.5 579.9604 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-1129.9209" x2="-1129.9209" y1="3388.3521" y2="3444.3481">
- <stop offset="0" style="stop-color:#D5F5B5"/>
- <stop offset="1" style="stop-color:#40AD00"/>
+<stop offset="0" style="stop-color:#D5F5B5"/>
+<stop offset="1" style="stop-color:#40AD00"/>
</linearGradient>
<path d="M15,28.999C7.279,28.999,1,22.72,1,15C1,7.281,7.279,1.001,15,1.001c7.718,0,14,6.28,14,13.999 C29,22.72,22.718,28.999,15,28.999L15,28.999z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179.0005" x2="-2179.0005" y1="2906.6362" y2="2878.8359">
- <stop offset="0" style="stop-color:#8CFF24"/>
- <stop offset="1" style="stop-color:#15570B"/>
+<stop offset="0" style="stop-color:#8CFF24"/>
+<stop offset="1" style="stop-color:#15570B"/>
</linearGradient>
<path d="M28.599,15c0,7.512-6.09,13.6-13.599,13.6C7.486,28.6,1.4,22.512,1.4,15C1.4,7.491,7.486,1.4,15,1.4 C22.509,1.4,28.599,7.491,28.599,15z" fill="url(#SVGID_2__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="16.5117" x2="16.5117" y1="21.3633" y2="7.2163">
- <stop offset="0" style="stop-color:#82DA3B"/>
- <stop offset="1" style="stop-color:#11470A"/>
+<stop offset="0" style="stop-color:#82DA3B"/>
+<stop offset="1" style="stop-color:#11470A"/>
</linearGradient>
<polygon fill="url(#SVGID_3__)" points="10.353,7.134 22.671,14.21 10.353,21.429 "/>
<polygon fill="#FFFFFF" points="11.11,8.444 22.008,14.734 11.11,21.026 "/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_podcast.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_podcast.svg Thu May 27 13:10:59 2010 +0300
@@ -1,60 +1,56 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
- <stop offset="0" style="stop-color:#757575"/>
- <stop offset="0.2424" style="stop-color:#000000"/>
- <stop offset="0.8606" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#363636"/>
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
-<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" enable-background="new " fill="#FFFFFF" opacity="0.55"/>
-<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" enable-background="new " fill="#FFFFFF" opacity="0.1"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.5" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
-<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" enable-background="new " fill="#FFFFFF" opacity="0.5"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#404040"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
-<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" enable-background="new " fill="#FFFFFF" opacity="0.2"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M4.452,29.001c-1.903,0-3.451-1.549-3.451-3.453V4.453c0-1.903,1.548-3.452,3.451-3.452h21.095 c1.905,0,3.454,1.548,3.454,3.452v21.095c0,1.904-1.549,3.453-3.454,3.453H4.452z" opacity="0.35"/>
+<path d="M4.452,29.001c-1.903,0-3.451-1.549-3.451-3.453V4.453c0-1.903,1.548-3.452,3.451-3.452h21.095 c1.905,0,3.454,1.548,3.454,3.452v21.095c0,1.904-1.549,3.453-3.454,3.453H4.452z" fill-opacity="0.35" stroke-opacity="0.35"/>
<path d="M27.932,25.493c0,1.346-1.092,2.438-2.44,2.438H4.508c-1.347,0-2.438-1.093-2.438-2.438V4.509 c0-1.348,1.091-2.44,2.438-2.44h20.983c1.348,0,2.44,1.093,2.44,2.44V25.493z" fill="#F7B388"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2190.8022" x2="-2167.4888" y1="3344.4668" y2="3321.1533">
- <stop offset="0" style="stop-color:#DF4F20"/>
- <stop offset="0.5" style="stop-color:#F48228"/>
- <stop offset="1" style="stop-color:#CF3A21"/>
+<stop offset="0" style="stop-color:#DF4F20"/>
+<stop offset="0.5" style="stop-color:#F48228"/>
+<stop offset="1" style="stop-color:#CF3A21"/>
</linearGradient>
<path d="M4.508,27.188c-0.935,0-1.697-0.761-1.697-1.695V4.509c0-0.937,0.763-1.696,1.697-1.696h20.983 c0.937,0,1.697,0.762,1.697,1.696v20.984c0,0.935-0.76,1.695-1.697,1.695H4.508z" fill="url(#SVGID_1__)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2178.999" x2="-2178.999" y1="3345.792" y2="3319.6384">
- <stop offset="0" style="stop-color:#C5422B"/>
- <stop offset="0.5" style="stop-color:#F48228"/>
- <stop offset="1" style="stop-color:#AD1B00"/>
+<stop offset="0" style="stop-color:#C5422B"/>
+<stop offset="0.5" style="stop-color:#F48228"/>
+<stop offset="1" style="stop-color:#AD1B00"/>
</linearGradient>
<path d="M25.547,2.413c1.125,0,2.041,0.916,2.041,2.04v21.095c0,1.124-0.917,2.04-2.041,2.04H4.452 c-1.124,0-2.038-0.916-2.038-2.04V4.453c0-1.124,0.915-2.04,2.038-2.04H25.547 M25.547,2.001H4.452 c-1.353,0-2.451,1.098-2.451,2.452v21.095c0,1.354,1.098,2.453,2.451,2.453h21.095c1.354,0,2.454-1.1,2.454-2.453V4.453 C28.001,3.099,26.901,2.001,25.547,2.001L25.547,2.001z" fill="url(#SVGID_2__)"/>
<circle cx="8.615" cy="21.385" fill="#FFFFFF" r="2.508"/>
<path d="M20.547,23.614h3.345c0-9.651-7.854-17.506-17.505-17.506v3.344C14.196,9.453,20.547,15.805,20.547,23.614z" fill="#FFFFFF"/>
<path d="M14.466,23.614h3.343c0-6.299-5.124-11.424-11.422-11.424v3.345C10.842,15.535,14.466,19.158,14.466,23.614z " fill="#FFFFFF"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_received_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_received_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,53 +1,51 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g>
-<defs>
-</defs>
<polygon fill="none" points="30.096,0 0.096,0 0.096,14.833 0,14.833 0.096,14.933 0.096,30 14.601,30 15.021,30.438 15.447,30 30.096,30 30.096,14.963 30.215,14.841 30.096,14.841 "/>
-<polygon opacity="0.35" points="0,14.833 3.596,14.828 3.625,14.859 8.375,14.859 8.375,0 21.73,0.001 21.73,14.843 30.215,14.841 15.021,30.438 "/>
+<polygon fill-opacity="0.35" points="0,14.833 3.596,14.828 3.625,14.859 8.375,14.859 8.375,0 21.73,0.001 21.73,14.843 30.215,14.841 15.021,30.438 " stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2176.5142" x2="-2176.5142" y1="2984.646" y2="2957.3247">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="2.846,15.859 15.025,28.575 27.398,15.845 20.732,15.843 20.727,1.292 9.375,1.291 9.375,15.859 "/>
<line fill="none" x1="20.727" x2="9.375" y1="1.297" y2="1.296"/>
@@ -55,156 +53,98 @@
<polygon fill="#E7FFB9" points="20.555,15.867 27.527,15.867 27,16.458 20.555,16.458 "/>
<polygon fill="#E7FFB9" points="2.459,15.859 9.365,15.859 9.365,16.451 3.08,16.451 "/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2165.6621" x2="-2187.9482" y1="2963.2173" y2="2963.2173">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="27.016,15.844 15.025,28.15 3.172,15.829 2.348,15.83 15.025,29 27.842,15.844 "/>
<rect fill="none" height="30" width="30" x="0.096"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<rect fill="url(#SVGID_1___)" height="7.853" width="5.105" x="12.45" y="19.72"/>
<path d="M12.45,24.66c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.285z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M12.45,24.02c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.288z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="15" x2="15" y1="1.975" y2="23.67">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="0.3212" stop-color="#E6E6E6"/>
-
<stop offset="1" stop-color="#666666"/>
-
</linearGradient>
<path d="M15,23.7c-5.98,0-10.85-4.867-10.85-10.85s4.87-10.85,10.85-10.85c5.982,0,10.85,4.866,10.85,10.85s-4.87,10.85-10.85,10.85z" fill="url(#SVGID_2___)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="2.614" y2="23.03">
-
<stop offset="0" stop-color="#D1D7D9"/>
-
<stop offset="0.0667" stop-color="#D1D7D9"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#7C8487"/>
-
<stop offset="1" stop-color="#ADB3B5"/>
-
</linearGradient>
<circle cx="15" cy="12.85" fill="url(#SVGID_3__)" r="10.21"/>
<path d="M15,21.99c-5.315,0-9.657-4.23-9.843-9.5-0.004,0.116-0.009,0.231-0.009,0.349,0,5.431,4.419,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.117-0.005-0.232-0.009-0.349-0.18,5.27-4.52,9.5-9.84,9.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<path d="M23.3,12.41c0,4.704-3.715,9.346-8.299,9.345-4.58-0.003-8.292-4.646-8.291-9.35,0.002-4.706,3.718-8.517,8.298-8.517,4.57,0.001,8.29,3.814,8.29,8.517z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M15,21.07c-2.387-0.002-4.63-0.932-6.315-2.619-1.688-1.688-2.615-3.932-2.614-6.318,0-4.923,4.009-8.929,8.935-8.929,2.387,0,4.632,0.931,6.317,2.618,1.688,1.688,2.616,3.933,2.615,6.318-0.002,4.924-4.01,8.93-8.934,8.93h-0.014z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="3.721" y2="20.35">
-
<stop offset="0" stop-color="#CFCFCF"/>
-
<stop offset="0.1091" stop-color="#CFCFCF"/>
-
<stop offset="0.6848" stop-color="#121212"/>
-
<stop offset="1" stop-color="#A6A6A6"/>
-
</linearGradient>
<path d="M15,20.43c-2.216-0.002-4.298-0.864-5.864-2.432-1.567-1.566-2.428-3.65-2.427-5.866,0-4.573,3.723-8.293,8.296-8.293,2.218,0.001,4.3,0.864,5.866,2.432s2.43,3.651,2.428,5.867c-0.001,4.573-3.723,8.292-8.295,8.292h-0.004z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15" x2="15" y1="4.368" y2="19.72">
-
<stop offset="0" stop-color="#F2F2F2"/>
-
<stop offset="1" stop-color="#606769"/>
-
</linearGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_5__)" r="7.657"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="15" x2="15" y1="5.772" y2="18.45">
-
<stop offset="0" stop-color="#1A1A1A"/>
-
<stop offset="0.503" stop-color="#343434"/>
-
<stop offset="0.7515" stop-color="#9E9E9E"/>
-
<stop offset="1" stop-color="#CFCFCF"/>
-
</linearGradient>
<path d="M15,18.51c-1.706-0.001-3.309-0.666-4.514-1.871-1.204-1.206-1.867-2.808-1.867-4.512,0-3.517,2.862-6.378,6.382-6.378,1.706,0,3.308,0.664,4.513,1.871,1.205,1.205,1.868,2.808,1.867,4.513,0,3.51-2.86,6.37-6.38,6.37z" fill="url(#SVGID_6__)"/>
<radialGradient cx="25.77" cy="10.27" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="6.499">
-
<stop offset="0" stop-color="#000000"/>
-
<stop offset="0.5917" stop-color="#000000"/>
-
<stop offset="0.627" stop-color="#050505"/>
-
<stop offset="0.7652" stop-color="#121212"/>
-
<stop offset="0.8876" stop-color="#171717"/>
-
<stop offset="1" stop-color="#171717"/>
-
</radialGradient>
<path d="M20.74,12.14c0,3.172-2.574,5.74-5.744,5.74-3.175-0.001-5.743-2.573-5.741-5.745,0-3.171,2.573-5.742,5.745-5.74,3.17-0.009,5.74,2.562,5.74,5.74z" fill="url(#SVGID_7_)"/>
<radialGradient cx="21.65" cy="5.066" gradientTransform="matrix(1.0143 0 0 1.0141 -9.5579 3.1299)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="10.35">
-
<stop offset="0" stop-color="#242424"/>
-
<stop offset="0.4303" stop-color="#242424"/>
-
<stop offset="0.7818" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_8_)" r="4.712"/>
<radialGradient cx="23.96" cy="3.55" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="11.36">
-
<stop offset="0" stop-color="#A700F5"/>
-
<stop offset="0.3091" stop-color="#A700F5"/>
-
<stop offset="0.4364" stop-color="#5E008A"/>
-
<stop offset="0.8061" stop-color="#0E1402"/>
-
<stop offset="1" stop-color="#0E1402"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0.004-2.327,1.89-4.21,4.213-4.21,2.33,0.003,4.21,1.888,4.21,4.21z" fill="url(#SVGID_9_)"/>
<radialGradient cx="25.17" cy="13.25" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="4.611">
-
<stop offset="0" stop-color="#48630C"/>
-
<stop offset="0.7879" stop-color="#000000"/>
-
<stop offset="1" stop-color="#000000"/>
-
</radialGradient>
<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0,0,1.444,2.569,4.213,2.569,2.77,0,4.21-2.57,4.21-2.57z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="14.98" x2="14.98" y1="7.065" y2="12.09">
-
<stop offset="0" stop-color="#F8FBFF"/>
-
<stop offset="1" stop-color="#808080"/>
-
</linearGradient>
<path d="M14.98,12.07c1.828,0,3.549-0.277,5.067-0.765-0.431-2.41-2.532-4.239-5.067-4.239-2.532,0-4.632,1.83-5.065,4.239,1.515,0.49,3.235,0.77,5.065,0.77z" fill="url(#SVGID_11_)" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="5.762" x2="24.29" y1="26.72" y2="26.72">
-
<stop offset="0" stop-color="#878A8C"/>
-
<stop offset="0.2606" stop-color="#BDC2C4"/>
-
<stop offset="0.6606" stop-color="#5B6163"/>
-
<stop offset="1" stop-color="#959A9C"/>
-
</linearGradient>
<path d="M24.24,28c0.025-0.635,0.04-0.508,0.04-0.639v-0.035c0-1.037-0.852-1.879-1.901-1.879h-14.72c-1.05,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.04,0.639h18.44z" fill="url(#SVGID_12_)"/>
<path d="M5.879,26.7h18.29c-0.084-0.234-0.212-0.444-0.377-0.626h-17.53c-0.164,0.19-0.293,0.4-0.377,0.63z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
@@ -212,4 +152,4 @@
<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_recent.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_recent.svg Thu May 27 13:10:59 2010 +0300
@@ -1,74 +1,71 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
- <stop offset="0" style="stop-color:#757575"/>
- <stop offset="0.2424" style="stop-color:#000000"/>
- <stop offset="0.8606" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#363636"/>
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
-<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" enable-background="new " fill="#FFFFFF" opacity="0.55"/>
-<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" enable-background="new " fill="#FFFFFF" opacity="0.1"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.5" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
-<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" enable-background="new " fill="#FFFFFF" opacity="0.5"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#404040"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
-<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" enable-background="new " fill="#FFFFFF" opacity="0.2"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M14.999,30C6.729,30,0,23.271,0,15S6.729,0,14.999,0C23.271,0,30,6.729,30,15S23.271,30,14.999,30L14.999,30 z" opacity="0.35"/>
+<path d="M14.999,30C6.729,30,0,23.271,0,15S6.729,0,14.999,0C23.271,0,30,6.729,30,15S23.271,30,14.999,30L14.999,30 z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="1.1948" y2="28.8709">
- <stop offset="0" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#454B4D"/>
+<stop offset="0" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#454B4D"/>
</linearGradient>
<path d="M14.999,29C7.281,29,1,22.72,1,15S7.281,1,14.999,1C22.72,1,29,7.28,29,15S22.72,29,14.999,29 L14.999,29z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.5835" y2="28.5506">
- <stop offset="0" style="stop-color:#D1D7D9"/>
- <stop offset="0.2364" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#697173"/>
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.2364" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#697173"/>
</linearGradient>
<circle cx="15" cy="15" fill="url(#SVGID_2__)" r="13.611"/>
-<path d="M15.474,15.476c4.559,0,8.961-0.286,13.127-0.81C28.425,7.305,22.406,1.389,14.999,1.389 c-7.36,0-13.357,5.847-13.6,13.151C5.846,15.143,10.568,15.476,15.474,15.476z" fill="#F1F1F2" opacity="0.35"/>
+<path d="M15.474,15.476c4.559,0,8.961-0.286,13.127-0.81C28.425,7.305,22.406,1.389,14.999,1.389 c-7.36,0-13.357,5.847-13.6,13.151C5.846,15.143,10.568,15.476,15.474,15.476z" fill="#F1F1F2" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="1.5186" x2="28.6768" y1="8.2915" y2="8.2915">
- <stop offset="0" style="stop-color:#C0C5C7"/>
- <stop offset="0.2" style="stop-color:#F7FDFF"/>
- <stop offset="0.8" style="stop-color:#F7FDFF"/>
- <stop offset="1" style="stop-color:#CDD3D5"/>
+<stop offset="0" style="stop-color:#C0C5C7"/>
+<stop offset="0.2" style="stop-color:#F7FDFF"/>
+<stop offset="0.8" style="stop-color:#F7FDFF"/>
+<stop offset="1" style="stop-color:#CDD3D5"/>
</linearGradient>
<path d="M14.999,1.778c7.453,0,13.503,5.99,13.605,13.416c0.002-0.063,0.007-0.129,0.007-0.194 c0-7.517-6.095-13.611-13.612-13.611C7.482,1.389,1.389,7.483,1.389,15c0,0.065,0.003,0.131,0.005,0.194 C1.498,7.769,7.548,1.778,14.999,1.778z" fill="url(#SVGID_3__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="14.999" x2="14.999" y1="27.249" y2="2.9914">
- <stop offset="0" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#454B4D"/>
+<stop offset="0" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#454B4D"/>
</linearGradient>
<path d="M14.999,27.055C8.352,27.055,2.944,21.648,2.944,15S8.352,2.945,14.999,2.945 c6.648,0,12.056,5.406,12.056,12.055S21.647,27.055,14.999,27.055L14.999,27.055z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15.001" x2="15.001" y1="26.3296" y2="3.0368">
- <stop offset="0.4" style="stop-color:#FAF9F9"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#FAF9F9"/>
+<stop offset="0.4" style="stop-color:#FAF9F9"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<path d="M14.999,26.666C8.566,26.666,3.333,21.432,3.333,15S8.566,3.334,14.999,3.334S26.668,8.568,26.668,15 S21.432,26.666,14.999,26.666L14.999,26.666z" fill="url(#SVGID_5_)"/>
-<path d="M14.999,15.832c3.849,0,7.521-0.322,10.89-0.905C25.848,8.956,20.98,4.111,14.999,4.111 c-5.979,0-10.846,4.845-10.886,10.815C7.479,15.51,11.15,15.832,14.999,15.832z" fill="#FFFFFF" opacity="0.7"/>
+<path d="M14.999,15.832c3.849,0,7.521-0.322,10.89-0.905C25.848,8.956,20.98,4.111,14.999,4.111 c-5.979,0-10.846,4.845-10.886,10.815C7.479,15.51,11.15,15.832,14.999,15.832z" fill="#FFFFFF" fill-opacity="0.7" stroke-opacity="0.7"/>
<rect fill="#404041" height="2.335" width="0.777" x="14.611" y="4.396"/>
<rect fill="#404041" height="2.333" width="0.777" x="14.611" y="23.842"/>
<rect fill="#404041" height="0.779" width="2.333" x="23.556" y="14.896"/>
@@ -81,23 +78,23 @@
<rect fill="#404041" height="1.882" transform="matrix(0.8678 -0.497 0.497 0.8678 -9.1555 13.0056)" width="0.627" x="19.548" y="22.766"/>
<rect fill="#404041" height="1.884" transform="matrix(0.497 -0.8678 0.8678 0.497 -5.7368 10.9541)" width="0.627" x="6.267" y="9.483"/>
<rect fill="#404041" height="1.882" transform="matrix(0.4991 -0.8665 0.8665 0.4991 -5.7273 30.3844)" width="0.63" x="23.105" y="19.206"/>
-<path d="M15.953,15.552c-0.04-0.188-0.133-0.352-0.261-0.482l1.34-4.418l-1.117-0.34l-1.392,4.587 c-0.24,0.138-0.42,0.372-0.475,0.653h-2.55v0.389h2.55c0.009,0.05,0.024,0.101,0.043,0.148L8.091,22.09l0.505,0.506l5.978-5.979 c0.129,0.063,0.273,0.102,0.427,0.102c0.471,0,0.862-0.333,0.953-0.777h9.158v-0.389H15.953z" fill="#231F20" opacity="0.2"/>
+<path d="M15.953,15.552c-0.04-0.188-0.133-0.352-0.261-0.482l1.34-4.418l-1.117-0.34l-1.392,4.587 c-0.24,0.138-0.42,0.372-0.475,0.653h-2.55v0.389h2.55c0.009,0.05,0.024,0.101,0.043,0.148L8.091,22.09l0.505,0.506l5.978-5.979 c0.129,0.063,0.273,0.102,0.427,0.102c0.471,0,0.862-0.333,0.953-0.777h9.158v-0.389H15.953z" fill="#231F20" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(0.9569 0.2903 -0.2903 0.9569 409.6663 189.0642)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-428.2788" x2="-428.2788" y1="-57.4336" y2="-51.435">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="17.032,10.101 15.915,9.763 14.22,15.344 15.339,15.684 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="8.3799" x2="15.2201" y1="21.7544" y2="14.9142">
- <stop offset="0" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#231F20"/>
+<stop offset="0" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#231F20"/>
</linearGradient>
<polygon fill="url(#SVGID_7_)" points="15.479,15.16 14.974,14.655 8.091,21.539 8.596,22.044 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="18.3057" x2="18.3057" y1="14.9443" y2="15.5124">
- <stop offset="0" style="stop-color:#FF0000"/>
- <stop offset="1" style="stop-color:#A8000B"/>
+<stop offset="0" style="stop-color:#FF0000"/>
+<stop offset="1" style="stop-color:#A8000B"/>
</linearGradient>
<path d="M25.111,15h-9.158c-0.091-0.442-0.482-0.778-0.953-0.778S14.138,14.558,14.049,15h-2.55v0.389h2.55 c0.089,0.443,0.48,0.778,0.951,0.778s0.862-0.335,0.953-0.778h9.158V15z" fill="url(#SVGID_8_)"/>
<circle cx="15" cy="15.194" fill="#F99792" r="0.583"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_service.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_service.svg Thu May 27 13:10:59 2010 +0300
@@ -1,70 +1,66 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
- <stop offset="0" style="stop-color:#757575"/>
- <stop offset="0.2424" style="stop-color:#000000"/>
- <stop offset="0.8606" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#363636"/>
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
-<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" enable-background="new " fill="#FFFFFF" opacity="0.55"/>
-<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" enable-background="new " fill="#FFFFFF" opacity="0.1"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.5" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
-<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" enable-background="new " fill="#FFFFFF" opacity="0.5"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#404040"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
-<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" enable-background="new " fill="#FFFFFF" opacity="0.2"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" enable-background="new " opacity="0.35"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
-<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" enable-background="new " opacity="0.3"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" enable-background="new " fill="url(#SVGID_2__)" opacity="0.3"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_tv.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_tv.svg Thu May 27 13:10:59 2010 +0300
@@ -1,74 +1,71 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
- <stop offset="0" style="stop-color:#757575"/>
- <stop offset="0.2424" style="stop-color:#000000"/>
- <stop offset="0.8606" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#363636"/>
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
-<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" enable-background="new " fill="#FFFFFF" opacity="0.55"/>
-<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" enable-background="new " fill="#FFFFFF" opacity="0.1"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.5" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
-<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" enable-background="new " fill="#FFFFFF" opacity="0.5"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#404040"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
-<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" enable-background="new " fill="#FFFFFF" opacity="0.2"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<polygon fill="none" points="0,4.111 0,24.333 0,30 30,30 30,24.333 30,4.111 30,0 0,0 "/>
-<path d="M8.389,27.667c-0.893,0-1.633-0.681-1.74-1.557H1.777C0.797,26.11,0,25.313,0,24.333V4.111 c0-0.98,0.797-1.777,1.777-1.777h26.444c0.98,0,1.778,0.797,1.778,1.777v20.222c0,0.98-0.798,1.777-1.778,1.777h-4.87 c-0.108,0.876-0.848,1.557-1.74,1.557H8.389z" opacity="0.35"/>
+<path d="M8.389,27.667c-0.893,0-1.633-0.681-1.74-1.557H1.777C0.797,26.11,0,25.313,0,24.333V4.111 c0-0.98,0.797-1.777,1.777-1.777h26.444c0.98,0,1.778,0.797,1.778,1.777v20.222c0,0.98-0.798,1.777-1.778,1.777h-4.87 c-0.108,0.876-0.848,1.557-1.74,1.557H8.389z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="26.5859" y2="24.8039">
- <stop offset="0" style="stop-color:#404040"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#404040"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M22.365,25.889c0,0.431-0.338,0.778-0.754,0.778H8.389c-0.416,0-0.754-0.348-0.754-0.778l0,0 c0-0.43-0.023-1.166-0.023-1.166h14.777C22.389,24.723,22.365,25.459,22.365,25.889L22.365,25.889z" fill="url(#SVGID_1__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="3.2046" y2="25.112">
- <stop offset="0.1212" style="stop-color:#F2F2F2"/>
- <stop offset="0.5515" style="stop-color:#ADB2B5"/>
- <stop offset="1" style="stop-color:#E6E9E8"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.1212" style="stop-color:#F2F2F2"/>
+<stop offset="0.5515" style="stop-color:#ADB2B5"/>
+<stop offset="1" style="stop-color:#E6E9E8"/>
</linearGradient>
<path d="M29,24.333c0,0.431-0.35,0.777-0.778,0.777H1.777C1.348,25.11,1,24.764,1,24.333V4.111 c0-0.429,0.348-0.777,0.777-0.777h26.444C28.65,3.334,29,3.683,29,4.111V24.333z" fill="url(#SVGID_2__)"/>
-<path d="M28.222,24.723H1.777C1.348,24.723,1,24.374,1,23.944v0.389c0,0.431,0.348,0.777,0.777,0.777 h26.444c0.429,0,0.778-0.347,0.778-0.777v-0.389C29,24.374,28.65,24.723,28.222,24.723z" fill="#231F20" opacity="0.3"/>
+<path d="M28.222,24.723H1.777C1.348,24.723,1,24.374,1,23.944v0.389c0,0.431,0.348,0.777,0.777,0.777 h26.444c0.429,0,0.778-0.347,0.778-0.777v-0.389C29,24.374,28.65,24.723,28.222,24.723z" fill="#231F20" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="14.999" x2="14.999" y1="20.7036" y2="5.2349">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<rect fill="url(#SVGID_3__)" height="15.943" width="24.889" x="2.555" y="4.89"/>
<rect fill="#FFFFFF" height="0.39" width="24.889" x="2.555" y="20.443"/>
-<polygon fill="#FFFFFF" opacity="0.2" points="2.95,13.056 27.055,9.876 27.055,5.277 2.943,5.277 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2.95,13.056 27.055,9.876 27.055,5.277 2.943,5.277 " stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="14.999" x2="14.999" y1="24.2773" y2="21.3131">
- <stop offset="0" style="stop-color:#57CDEA"/>
- <stop offset="1" style="stop-color:#196BDE"/>
+<stop offset="0" style="stop-color:#57CDEA"/>
+<stop offset="1" style="stop-color:#196BDE"/>
</linearGradient>
<path d="M15,21.806c0.537,0,0.971,0.436,0.971,0.972S15.537,23.75,15,23.75c-0.535,0-0.973-0.437-0.973-0.973 S14.465,21.806,15,21.806 M15,21.222c-0.859,0-1.557,0.697-1.557,1.556c0,0.859,0.697,1.556,1.557,1.556s1.555-0.696,1.555-1.556 C16.555,21.919,15.859,21.222,15,21.222L15,21.222z" fill="url(#SVGID_4__)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="3.7866" y2="24.3979">
- <stop offset="0" style="stop-color:#E6E9E8"/>
- <stop offset="1" style="stop-color:#ADB2B5"/>
+<stop offset="0" style="stop-color:#E6E9E8"/>
+<stop offset="1" style="stop-color:#ADB2B5"/>
</linearGradient>
<path d="M27.832,3.722H2.166c-0.43,0-0.777,0.349-0.777,0.778v19.055c0,0.431,0.348,0.778,0.777,0.778h11.369 c-0.414-0.39-0.674-0.941-0.674-1.556c0-0.613,0.26-1.165,0.674-1.556H2.166V4.5h25.666v16.722H16.465 c0.414,0.391,0.674,0.942,0.674,1.556c0,0.614-0.26,1.166-0.674,1.556h11.367c0.43,0,0.779-0.348,0.779-0.778V4.5 C28.611,4.07,28.262,3.722,27.832,3.722z" fill="url(#SVGID_5_)"/>
-<path d="M21.611,26.277H8.389c-0.35,0-0.643-0.248-0.727-0.583c-0.016,0.063-0.027,0.127-0.027,0.194 c0,0.431,0.338,0.778,0.754,0.778h13.223c0.416,0,0.754-0.348,0.754-0.778c0-0.067-0.012-0.132-0.027-0.194 C22.254,26.029,21.963,26.277,21.611,26.277z" fill="#FFFFFF" opacity="0.35"/>
+<path d="M21.611,26.277H8.389c-0.35,0-0.643-0.248-0.727-0.583c-0.016,0.063-0.027,0.127-0.027,0.194 c0,0.431,0.338,0.778,0.754,0.778h13.223c0.416,0,0.754-0.348,0.754-0.778c0-0.067-0.012-0.132-0.027-0.194 C22.254,26.029,21.963,26.277,21.611,26.277z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voice_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voice_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,42 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voice_recorder.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voice_recorder.svg Thu May 27 13:10:59 2010 +0300
@@ -1,42 +1,40 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
-<path d="M49.816,18.774L49.816,18.774c2.203-4.334,1.499-9.768-2.128-13.393c-3.624-3.624-9.056-4.33-13.391-2.127 l0,0c0,0-0.002,0.001-0.005,0.002c-1.055,0.538-2.049,1.242-2.932,2.125L21.019,15.725c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544 v-0.002l-2.177,2.179c-0.299,0.3-0.299,0.789,0,1.089l-4.897,4.897c-4.51,4.51-4.51,11.821,0,16.33 c2.907,2.907,6.978,3.929,10.711,3.087c0.18-0.039,0.357-0.081,0.535-0.131c0.151-0.041,0.301-0.088,0.449-0.135 c0.041-0.015,0.083-0.024,0.125-0.038v3.85c-0.892,0.086-1.541,0.4-1.541,1.388v5.367h-5.405c-0.166,0-0.327,0.02-0.482,0.055 c-0.028,0.005-0.05,0.016-0.077,0.021c-0.13,0.033-0.258,0.074-0.378,0.128c-0.012,0.005-0.023,0.013-0.036,0.017 c-0.776,0.364-1.32,1.14-1.32,2.046v0.506c0,0.084,0.005,0.166,0.014,0.333c0.008,0.153,0.02,0.377,0.033,0.745h0.002h22.994h0.001 c0.032-0.767,0.048-0.92,0.048-1.078v-0.506c0-0.906-0.542-1.682-1.321-2.046c-0.01-0.004-0.021-0.012-0.033-0.017 c-0.122-0.054-0.248-0.095-0.378-0.128c-0.027-0.006-0.051-0.017-0.077-0.021c-0.156-0.035-0.317-0.055-0.482-0.055h-5.405 l-0.001-5.367c0-0.987-0.649-1.302-1.538-1.388v-6.742l4.788-4.79c0.301,0.3,0.79,0.3,1.09,0l2.721-2.721 c0.3-0.299,0.3-0.789,0-1.089c0,0,10.687-10.718,10.854-10.906v-0.001c0.645-0.736,1.186-1.529,1.613-2.367L49.816,18.774z" opacity="0.1"/>
+<path d="M49.816,18.774L49.816,18.774c2.203-4.334,1.499-9.768-2.128-13.393c-3.624-3.624-9.056-4.33-13.391-2.127 l0,0c0,0-0.002,0.001-0.005,0.002c-1.055,0.538-2.049,1.242-2.932,2.125L21.019,15.725c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544 v-0.002l-2.177,2.179c-0.299,0.3-0.299,0.789,0,1.089l-4.897,4.897c-4.51,4.51-4.51,11.821,0,16.33 c2.907,2.907,6.978,3.929,10.711,3.087c0.18-0.039,0.357-0.081,0.535-0.131c0.151-0.041,0.301-0.088,0.449-0.135 c0.041-0.015,0.083-0.024,0.125-0.038v3.85c-0.892,0.086-1.541,0.4-1.541,1.388v5.367h-5.405c-0.166,0-0.327,0.02-0.482,0.055 c-0.028,0.005-0.05,0.016-0.077,0.021c-0.13,0.033-0.258,0.074-0.378,0.128c-0.012,0.005-0.023,0.013-0.036,0.017 c-0.776,0.364-1.32,1.14-1.32,2.046v0.506c0,0.084,0.005,0.166,0.014,0.333c0.008,0.153,0.02,0.377,0.033,0.745h0.002h22.994h0.001 c0.032-0.767,0.048-0.92,0.048-1.078v-0.506c0-0.906-0.542-1.682-1.321-2.046c-0.01-0.004-0.021-0.012-0.033-0.017 c-0.122-0.054-0.248-0.095-0.378-0.128c-0.027-0.006-0.051-0.017-0.077-0.021c-0.156-0.035-0.317-0.055-0.482-0.055h-5.405 l-0.001-5.367c0-0.987-0.649-1.302-1.538-1.388v-6.742l4.788-4.79c0.301,0.3,0.79,0.3,1.09,0l2.721-2.721 c0.3-0.299,0.3-0.789,0-1.089c0,0,10.687-10.718,10.854-10.906v-0.001c0.645-0.736,1.186-1.529,1.613-2.367L49.816,18.774z" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="267.0962" x2="290.189" y1="468.0112" y2="468.0112">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.3818" style="stop-color:#FFFFFF"/>
- <stop offset="0.7091" style="stop-color:#686E70"/>
- <stop offset="1" style="stop-color:#A6B0B3"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#686E70"/>
+<stop offset="1" style="stop-color:#A6B0B3"/>
</linearGradient>
<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0L21.019,15.725l16.328,16.328l10.341-10.342 C52.198,17.202,52.199,9.893,47.688,5.382z" fill="url(#SVGID_1_)"/>
-<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0l-1.634,1.633 c4.51-4.509,9.643-2.331,14.151,2.178c4.511,4.51,6.687,9.644,2.178,14.151l1.632-1.633C52.198,17.202,52.199,9.893,47.688,5.382z" fill="#FFFFFF" opacity="0.2"/>
-<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0l-1.634,1.633 c4.51-4.509,11.821-4.509,16.33,0c4.51,4.511,4.508,11.821,0,16.329l1.632-1.633C52.198,17.202,52.199,9.893,47.688,5.382z" fill="#FFFFFF" opacity="0.2"/>
+<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0l-1.634,1.633 c4.51-4.509,9.643-2.331,14.151,2.178c4.511,4.51,6.687,9.644,2.178,14.151l1.632-1.633C52.198,17.202,52.199,9.893,47.688,5.382z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0l-1.634,1.633 c4.51-4.509,11.821-4.509,16.33,0c4.51,4.511,4.508,11.821,0,16.329l1.632-1.633C52.198,17.202,52.199,9.893,47.688,5.382z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="267.0962" x2="290.1899" y1="493.0283" y2="493.0283">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.3818" style="stop-color:#7A7A7A"/>
- <stop offset="0.7091" style="stop-color:#1A1A1A"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#7A7A7A"/>
+<stop offset="0.7091" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<path d="M21.019,15.725l-8.709,8.707c-4.51,4.51-4.51,11.821,0,16.33c4.508,4.51,11.821,4.51,16.33,0 l8.708-8.709L21.019,15.725z" fill="url(#SVGID_2_)"/>
-<path d="M16.664,36.407c-4.51-4.509-8.318-8.01-3.81-12.52l-0.544,0.544c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0.543-0.545C24.674,44.728,21.173,40.916,16.664,36.407z" opacity="0.1"/>
-<path d="M15.031,38.04c-4.508-4.508-6.685-9.643-2.177-14.152l-0.544,0.544c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0.543-0.545C24.674,44.728,19.541,42.55,15.031,38.04z" opacity="0.2"/>
-<path d="M13.398,39.674C8.889,35.164,7.8,28.941,12.31,24.432l0,0c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0,0C24.131,45.271,17.909,44.183,13.398,39.674z" opacity="0.2"/>
+<path d="M16.664,36.407c-4.51-4.509-8.318-8.01-3.81-12.52l-0.544,0.544c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0.543-0.545C24.674,44.728,21.173,40.916,16.664,36.407z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M15.031,38.04c-4.508-4.508-6.685-9.643-2.177-14.152l-0.544,0.544c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0.543-0.545C24.674,44.728,19.541,42.55,15.031,38.04z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M13.398,39.674C8.889,35.164,7.8,28.941,12.31,24.432l0,0c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0,0C24.131,45.271,17.909,44.183,13.398,39.674z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="266.3257" x2="290.9585" y1="483.7915" y2="483.7915">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.3818" style="stop-color:#7A7A7A"/>
- <stop offset="0.7091" style="stop-color:#1A1A1A"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#7A7A7A"/>
+<stop offset="0.7091" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<path d="M34.626,35.862c-0.301,0.3-0.79,0.3-1.09,0L17.208,19.534c-0.299-0.3-0.299-0.789,0-1.089 l2.721-2.721c0.301-0.3,0.791-0.3,1.09,0l16.328,16.328c0.3,0.3,0.3,0.79,0,1.089L34.626,35.862z" fill="url(#SVGID_3_)"/>
-<path d="M37.347,32.053L21.019,15.725c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544 c0.301-0.299,0.79-0.299,1.09,0l16.328,16.328c0.3,0.3,0.3,0.79,0,1.089l0.544-0.544C37.647,32.843,37.647,32.353,37.347,32.053z" fill="#FFFFFF" opacity="0.2"/>
-<rect height="0.77" opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.5824 -8.4675)" width="23.093" x="12.465" y="28.674"/>
-<rect fill="#FFFFFF" height="0.771" opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 25.326 -13.911)" width="23.091" x="17.909" y="23.23"/>
-<rect height="0.769" opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.3549 -9.0122)" width="23.091" x="13.01" y="28.13"/>
-<rect height="0.769" opacity="0.4" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.131 -9.5558)" width="23.092" x="13.554" y="27.586"/>
+<path d="M37.347,32.053L21.019,15.725c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544 c0.301-0.299,0.79-0.299,1.09,0l16.328,16.328c0.3,0.3,0.3,0.79,0,1.089l0.544-0.544C37.647,32.843,37.647,32.353,37.347,32.053z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill-opacity="0.1" height="0.77" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.5824 -8.4675)" width="23.093" x="12.465" y="28.674"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="0.771" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 25.326 -13.911)" width="23.091" x="17.909" y="23.23"/>
+<rect fill-opacity="0.2" height="0.769" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.3549 -9.0122)" width="23.091" x="13.01" y="28.13"/>
+<rect fill-opacity="0.4" height="0.769" stroke-opacity="0.4" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.131 -9.5558)" width="23.092" x="13.554" y="27.586"/>
<path d="M22.652,15.179c0.301-0.299,0.301-0.786,0-1.087l-1.089,1.087C21.864,15.481,22.351,15.48,22.652,15.179z" fill="#FFFFFF"/>
<path d="M27.005,10.824c0.301-0.3,0.301-0.787,0-1.088l-1.087,1.088C26.217,11.126,26.705,11.125,27.005,10.824z" fill="#FFFFFF"/>
<path d="M31.361,6.471c0.291-0.291,0.293-0.753,0.021-1.055c-0.19,0.167-0.384,0.329-0.566,0.511l-0.544,0.544 C30.571,6.771,31.059,6.771,31.361,6.471z" fill="#FFFFFF"/>
@@ -59,174 +57,196 @@
<circle cx="36.803" cy="16.269" fill="#FFFFFF" r="0.769"/>
<circle cx="41.157" cy="11.914" fill="#FFFFFF" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="267.4819" x2="267.4819" y1="462.314" y2="479.7079">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M23.196,14.637c0.301-0.302,0.301-0.788,0-1.091l-1.088,1.091 C22.409,14.937,22.895,14.937,23.196,14.637z" fill="url(#SVGID_4_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="267.481" x2="267.481" y1="462.3311" y2="479.7029">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M27.549,10.28c0.302-0.3,0.302-0.788,0-1.088l-1.087,1.088C26.763,10.582,27.249,10.581,27.549,10.28 z" fill="url(#SVGID_5_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="267.481" x2="267.481" y1="462.3467" y2="479.6524">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M31.903,5.927c0.292-0.291,0.294-0.754,0.023-1.057c-0.192,0.168-0.386,0.33-0.566,0.512 l-0.545,0.545C31.116,6.228,31.603,6.228,31.903,5.927z" fill="url(#SVGID_6_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="270.9458" x2="270.9458" y1="462.3418" y2="479.7027">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="27.549" cy="14.635" fill="url(#SVGID_7_)" r="0.769"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="270.9458" x2="270.9458" y1="462.3311" y2="479.6974">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="31.905" cy="10.28" fill="url(#SVGID_8_)" r="0.769"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="270.9458" x2="270.9458" y1="462.3247" y2="479.6966">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="36.26" cy="5.926" fill="url(#SVGID_9_)" r="0.769"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="274.7954" x2="274.7954" y1="462.314" y2="479.7079">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="28.094" cy="19.534" fill="url(#SVGID_10_)" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="274.7944" x2="274.7944" y1="462.3257" y2="479.7086">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="32.448" cy="15.181" fill="url(#SVGID_11_)" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="274.7944" x2="274.7944" y1="462.3267" y2="479.6985">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="36.803" cy="10.825" fill="url(#SVGID_12_)" r="0.769"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="289.8052" x2="289.8052" y1="462.335" y2="479.7068">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M38.437,29.876c-0.301,0.301-0.301,0.788,0,1.088l1.088-1.088 C39.225,29.574,38.737,29.575,38.437,29.876z" fill="url(#SVGID_13_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="289.8052" x2="289.8052" y1="462.3247" y2="479.7076">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M42.79,25.521c-0.301,0.301-0.301,0.787,0,1.09l1.088-1.09C43.579,25.22,43.091,25.22,42.79,25.521z " fill="url(#SVGID_14_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="289.8032" x2="289.8032" y1="462.3516" y2="479.6407">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M48.201,21.146c-0.302-0.274-0.765-0.271-1.057,0.02c-0.301,0.302-0.301,0.788,0,1.089l0.544-0.544 C47.871,21.529,48.034,21.335,48.201,21.146z" fill="url(#SVGID_15_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="286.3403" x2="286.3403" y1="462.3247" y2="479.7076">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="38.436" cy="25.521" fill="url(#SVGID_16_)" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="286.3403" x2="286.3403" y1="462.3271" y2="479.7046">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="42.79" cy="21.167" fill="url(#SVGID_17_)" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="286.3403" x2="286.3403" y1="462.3262" y2="479.7036">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M47.688,17.357c-0.297,0.3-0.786,0.3-1.088,0c-0.301-0.301-0.301-0.788,0-1.089s0.787-0.301,1.088,0 C47.991,16.569,47.989,17.057,47.688,17.357z" fill="url(#SVGID_18_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="282.4907" x2="282.4907" y1="462.3296" y2="479.707">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M34.08,25.521c-0.298,0.301-0.786,0.301-1.088,0c-0.301-0.301-0.301-0.788,0-1.089 c0.301-0.3,0.789-0.301,1.088,0C34.383,24.734,34.381,25.22,34.08,25.521z" fill="url(#SVGID_19_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="282.4917" x2="282.4917" y1="462.3237" y2="479.7066">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="37.892" cy="20.622" fill="url(#SVGID_20_)" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="282.4917" x2="282.4917" y1="462.3267" y2="479.7041">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="42.246" cy="16.269" fill="url(#SVGID_21_)" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="278.6431" x2="278.6431" y1="462.3335" y2="479.7054">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="32.992" cy="20.078" fill="url(#SVGID_22_)" r="0.769"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="278.6431" x2="278.6431" y1="462.3223" y2="479.7107">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="37.347" cy="15.724" fill="url(#SVGID_23_)" r="0.77"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="278.6431" x2="278.6431" y1="462.3242" y2="479.7016">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2" style="stop-color:#504E4E"/>
- <stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#504E4E"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="41.702" cy="11.369" fill="url(#SVGID_24_)" r="0.769"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -374.1758 -502.9102)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="404.7837" x2="396.38" y1="554.8911" y2="554.8911">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.2545" style="stop-color:#1A1A1A"/>
- <stop offset="0.6182" style="stop-color:#7A7A7A"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2545" style="stop-color:#1A1A1A"/>
+<stop offset="0.6182" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<path d="M30.288,54.397c-0.001,1.216-0.979,2.203-2.185,2.203h-3.328c-1.207,0-2.185-0.987-2.185-2.2v-5.618 c0-1.215,0.978-1.42,2.185-1.42h3.327c1.207,0,2.184,0.205,2.184,1.42L30.288,54.397z" fill="url(#SVGID_25_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="14.8921" x2="37.9844" y1="56.0747" y2="56.0747">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.3818" style="stop-color:#999999"/>
- <stop offset="0.7515" style="stop-color:#1A1A1A"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#999999"/>
+<stop offset="0.7515" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<path d="M37.937,58c0.032-0.767,0.048-0.92,0.048-1.078v-0.506c0-1.251-1.026-2.267-2.292-2.267H17.186 c-1.266,0-2.293,1.016-2.293,2.267v0.506c0,0.158,0.019,0.312,0.049,1.078H37.937z" fill="url(#SVGID_26_)"/>
-<path d="M15.032,55.661h22.811c-0.101-0.282-0.255-0.537-0.453-0.755H15.488 C15.29,55.124,15.135,55.379,15.032,55.661z" fill="#FFFFFF" opacity="0.2"/>
-<path d="M14.904,57.243c0.009,0.154,0.02,0.381,0.035,0.757h22.997c0.017-0.376,0.028-0.603,0.037-0.757H14.904z" opacity="0.35"/>
-<path d="M15.488,54.906H37.39c-0.42-0.462-1.021-0.757-1.698-0.757H17.186 C16.509,54.149,15.908,54.444,15.488,54.906z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M30,49.086v-0.304c0-1.215-0.906-1.42-2.022-1.42h-3.079c-1.115,0-2.02,0.205-2.02,1.42v0.304 c0.391,0.721,1.147,1.216,2.02,1.216h3.079C28.854,50.302,29.606,49.807,30,49.086z" opacity="0.1"/>
-<path d="M29.518,47.992v-0.294c-0.371-0.265-0.918-0.336-1.54-0.336h-3.079c-0.62,0-1.169,0.071-1.539,0.336v0.294 c0,0.85,0.69,1.54,1.539,1.54h3.079C28.827,49.532,29.518,48.842,29.518,47.992z" opacity="0.2"/>
-<path d="M28.64,40.762l1.648-1.649V25.67c0-0.298-0.062-0.58-0.164-0.84l-1.305-1.307 c-0.261-0.104-0.542-0.163-0.841-0.163h-3.079c-1.273,0-2.309,1.036-2.309,2.31v18.275C24.807,43.534,26.924,42.476,28.64,40.762z" opacity="0.1"/>
-<path d="M28.64,40.762l0.878-0.879V25.67c0-0.85-0.691-1.54-1.54-1.54h-3.079c-0.849,0-1.539,0.69-1.539,1.54v18.097 C25.293,43.269,27.125,42.275,28.64,40.762z" opacity="0.2"/>
+<path d="M15.032,55.661h22.811c-0.101-0.282-0.255-0.537-0.453-0.755H15.488 C15.29,55.124,15.135,55.379,15.032,55.661z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M14.904,57.243c0.009,0.154,0.02,0.381,0.035,0.757h22.997c0.017-0.376,0.028-0.603,0.037-0.757H14.904z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M15.488,54.906H37.39c-0.42-0.462-1.021-0.757-1.698-0.757H17.186 C16.509,54.149,15.908,54.444,15.488,54.906z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M30,49.086v-0.304c0-1.215-0.906-1.42-2.022-1.42h-3.079c-1.115,0-2.02,0.205-2.02,1.42v0.304 c0.391,0.721,1.147,1.216,2.02,1.216h3.079C28.854,50.302,29.606,49.807,30,49.086z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M29.518,47.992v-0.294c-0.371-0.265-0.918-0.336-1.54-0.336h-3.079c-0.62,0-1.169,0.071-1.539,0.336v0.294 c0,0.85,0.69,1.54,1.539,1.54h3.079C28.827,49.532,29.518,48.842,29.518,47.992z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M28.64,40.762l1.648-1.649V25.67c0-0.298-0.062-0.58-0.164-0.84l-1.305-1.307 c-0.261-0.104-0.542-0.163-0.841-0.163h-3.079c-1.273,0-2.309,1.036-2.309,2.31v18.275C24.807,43.534,26.924,42.476,28.64,40.762z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M28.64,40.762l0.878-0.879V25.67c0-0.85-0.691-1.54-1.54-1.54h-3.079c-0.849,0-1.539,0.69-1.539,1.54v18.097 C25.293,43.269,27.125,42.275,28.64,40.762z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="26.4395" x2="26.4395" y1="25.1289" y2="48.4234">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.3818" style="stop-color:#7A7A7A"/>
- <stop offset="0.7091" style="stop-color:#1A1A1A"/>
- <stop offset="1" style="stop-color:#4D4D4D"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#7A7A7A"/>
+<stop offset="0.7091" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
<path d="M28.748,47.992c0,0.426-0.344,0.77-0.77,0.77h-3.079c-0.425,0-0.768-0.344-0.768-0.77V25.67 c0-0.425,0.343-0.771,0.768-0.771h3.079c0.426,0,0.77,0.346,0.77,0.771V47.992z" fill="url(#SVGID_27_)"/>
-<path d="M26.439,29.237c-2.124,0-3.849-1.727-3.849-3.848c0-2.123,1.725-3.85,3.849-3.85 c2.121,0,3.848,1.727,3.848,3.85C30.288,27.511,28.56,29.237,26.439,29.237L26.439,29.237z" opacity="0.35"/>
+<path d="M26.439,29.237c-2.124,0-3.849-1.727-3.849-3.848c0-2.123,1.725-3.85,3.849-3.85 c2.121,0,3.848,1.727,3.848,3.85C30.288,27.511,28.56,29.237,26.439,29.237L26.439,29.237z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="26.439" x2="26.439" y1="22.3696" y2="28.3803">
- <stop offset="0" style="stop-color:#9D9B9C"/>
- <stop offset="0.1515" style="stop-color:#D6D4D4"/>
- <stop offset="0.703" style="stop-color:#555557"/>
- <stop offset="0.9879" style="stop-color:#575757"/>
+<stop offset="0" style="stop-color:#9D9B9C"/>
+<stop offset="0.1515" style="stop-color:#D6D4D4"/>
+<stop offset="0.703" style="stop-color:#555557"/>
+<stop offset="0.9879" style="stop-color:#575757"/>
+<stop offset="1" style="stop-color:#575757"/>
</linearGradient>
<circle cx="26.439" cy="25.39" fill="url(#SVGID_28_)" r="3.079"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="26.4385" x2="26.4385" y1="23.8794" y2="26.8862">
- <stop offset="0" style="stop-color:#646464"/>
- <stop offset="1" style="stop-color:#EBEBEB"/>
+<stop offset="0" style="stop-color:#646464"/>
+<stop offset="1" style="stop-color:#EBEBEB"/>
</linearGradient>
<path d="M26.439,26.93c-0.851,0-1.541-0.691-1.541-1.54c0-0.85,0.69-1.54,1.541-1.54 c0.847,0,1.539,0.69,1.539,1.54C27.978,26.238,27.287,26.93,26.439,26.93L26.439,26.93z" fill="url(#SVGID_29_)"/>
-<rect height="0.769" opacity="0.2" width="7.697" x="22.59" y="53.381"/>
-<rect height="0.77" opacity="0.1" width="7.697" x="22.59" y="52.611"/>
+<rect fill-opacity="0.2" height="0.769" stroke-opacity="0.2" width="7.697" x="22.59" y="53.381"/>
+<rect fill-opacity="0.1" height="0.77" stroke-opacity="0.1" width="7.697" x="22.59" y="52.611"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip.svg Thu May 27 13:10:59 2010 +0300
@@ -1,75 +1,73 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" enable-background="new " opacity="0.35"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
-<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" enable-background="new " opacity="0.3"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" enable-background="new " fill="url(#SVGID_2__)" opacity="0.3"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_active.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_active.svg Thu May 27 13:10:59 2010 +0300
@@ -1,66 +1,64 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#A7E722"/>
- <stop offset="0.6667" style="stop-color:#428C0F"/>
- <stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="0" style="stop-color:#A7E722"/>
+<stop offset="0.297" style="stop-color:#A7E722"/>
+<stop offset="0.6667" style="stop-color:#428C0F"/>
+<stop offset="0.7939" style="stop-color:#5CA617"/>
+<stop offset="1" style="stop-color:#5CA617"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
- <stop offset="0" style="stop-color:#559D13"/>
- <stop offset="1" style="stop-color:#284F09"/>
+<stop offset="0" style="stop-color:#559D13"/>
+<stop offset="1" style="stop-color:#284F09"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" opacity="0.5"/>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" opacity="0.6"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B5DC77" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B5DC77" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#447F0F"/>
- <stop offset="0.5" style="stop-color:#284F09"/>
- <stop offset="1" style="stop-color:#40790E"/>
+<stop offset="0" style="stop-color:#447F0F"/>
+<stop offset="0.5" style="stop-color:#284F09"/>
+<stop offset="1" style="stop-color:#40790E"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" enable-background="new " opacity="0.35"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
-<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" enable-background="new " opacity="0.3"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" enable-background="new " fill="url(#SVGID_2__)" opacity="0.3"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_end.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_end.svg Thu May 27 13:10:59 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<rect fill="none" height="60" width="60"/>
<g>
@@ -41,36 +41,34 @@
</g>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" enable-background="new " opacity="0.35"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
-<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" enable-background="new " opacity="0.3"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" enable-background="new " fill="url(#SVGID_2__)" opacity="0.3"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_hold.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_hold.svg Thu May 27 13:10:59 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<radialGradient cx="-2349.8247" cy="1517.2324" gradientTransform="matrix(4.489659e-010 -1 -1 -4.489659e-010 1546.7637 -2331.9561)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="36.2594">
<stop offset="0" style="stop-color:#FFC144"/>
@@ -39,36 +39,34 @@
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" enable-background="new " opacity="0.35"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
-<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" enable-background="new " opacity="0.3"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" enable-background="new " fill="url(#SVGID_2__)" opacity="0.3"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_waiting.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_waiting.svg Thu May 27 13:10:59 2010 +0300
@@ -1,74 +1,72 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3691" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#FFC144"/>
- <stop offset="0.6667" style="stop-color:#EF6902"/>
- <stop offset="0.7939" style="stop-color:#FEB037"/>
+<stop offset="0" style="stop-color:#FFC144"/>
+<stop offset="0.297" style="stop-color:#FFC144"/>
+<stop offset="0.6667" style="stop-color:#EF6902"/>
+<stop offset="0.7939" style="stop-color:#FEB037"/>
+<stop offset="1" style="stop-color:#FEB037"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.259-1.333c-0.616-0.665-2.566-3.083-2.968-3.735 c-0.353-0.575-0.411-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.084-7.646,9.955-8.107 c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.523-1.778c-2.477-2.889-8.594-5.015-10.75-5.399 c-1.924-0.345-3.877-0.872-6.568,0.235c-2.559,1.054-13.074,8.536-21.11,16.572C11.203,27.277,3.723,37.795,2.668,40.352 c-1.107,2.691-0.58,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.853,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3418" x2="-1638.9102" y1="-2494.9819" y2="-2491.4063">
- <stop offset="0" style="stop-color:#E17B15"/>
- <stop offset="1" style="stop-color:#B05004"/>
+<stop offset="0" style="stop-color:#E17B15"/>
+<stop offset="1" style="stop-color:#B05004"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.035,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.738,2.119-1.514 c-0.252-0.204-3.469-2.809-4.801-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3462" x2="-1638.9143" y1="4063.0557" y2="4066.6326">
- <stop offset="0" style="stop-color:#E17B15"/>
- <stop offset="1" style="stop-color:#B05004"/>
+<stop offset="0" style="stop-color:#E17B15"/>
+<stop offset="1" style="stop-color:#B05004"/>
</linearGradient>
<path d="M17.093,35.188c-0.401,0.763-0.347,1.039,0.034,1.713c0.376,0.666,2.352,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.297c-0.034,0.048-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.203-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.093,35.188,17.093,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="48.4072" x2="4.0833" y1="3.4473" y2="47.7712">
- <stop offset="0" style="stop-color:#FFD06E"/>
- <stop offset="1" style="stop-color:#FAB56E"/>
+<stop offset="0" style="stop-color:#FFD06E"/>
+<stop offset="1" style="stop-color:#FAB56E"/>
</linearGradient>
-<path d="M2.979,47.467c-0.345-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.34,4.269,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236 c1.98,0.354,7.297,2.178,10.07,4.711c-2.553-2.815-8.496-4.879-10.617-5.258c-1.924-0.345-3.877-0.872-6.568,0.235 c-2.559,1.054-13.074,8.536-21.11,16.572C11.203,27.277,3.723,37.795,2.668,40.352c-1.107,2.691-0.58,4.645-0.236,6.567 c0.379,2.122,2.441,8.065,5.259,10.617C5.155,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.979,47.467c-0.345-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.34,4.269,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236 c1.98,0.354,7.297,2.178,10.07,4.711c-2.553-2.815-8.496-4.879-10.617-5.258c-1.924-0.345-3.877-0.872-6.568,0.235 c-2.559,1.054-13.074,8.536-21.11,16.572C11.203,27.277,3.723,37.795,2.668,40.352c-1.107,2.691-0.58,4.645-0.236,6.567 c0.379,2.122,2.441,8.065,5.259,10.617C5.155,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="53.9023" x2="3.4732" y1="3.6543" y2="54.0835">
- <stop offset="0" style="stop-color:#FFD06E"/>
- <stop offset="1" style="stop-color:#FAB56E"/>
+<stop offset="0" style="stop-color:#FFD06E"/>
+<stop offset="1" style="stop-color:#FAB56E"/>
</linearGradient>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.259-1.333 c-0.616-0.665-2.566-3.083-2.968-3.735c-0.353-0.575-0.411-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.084-7.646,9.955-8.107c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.523-1.778 c-0.291-0.339-0.635-0.665-1.012-0.982c0.488,0.657,0.197,1.134-0.607,1.666c-1.4,0.933-14.475,10.225-15.227,10.775 c-0.43,0.314-0.768,0.219-1.299-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.949-0.436-1.711-0.034 c-0.869,0.46-3.763,1.914-9.954,8.106c-6.193,6.192-7.636,9.092-8.108,9.956c-0.378,0.69-0.319,1.135,0.036,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.492,0.533,0.559,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195 c-0.534,0.803-1.009,1.098-1.665,0.606c0.314,0.378,0.643,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.853,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.259-1.333 c-0.616-0.665-2.566-3.083-2.968-3.735c-0.353-0.575-0.411-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.084-7.646,9.955-8.107c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.523-1.778 c-0.291-0.339-0.635-0.665-1.012-0.982c0.488,0.657,0.197,1.134-0.607,1.666c-1.4,0.933-14.475,10.225-15.227,10.775 c-0.43,0.314-0.768,0.219-1.299-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.949-0.436-1.711-0.034 c-0.869,0.46-3.763,1.914-9.954,8.106c-6.193,6.192-7.636,9.092-8.108,9.956c-0.378,0.69-0.319,1.135,0.036,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.492,0.533,0.559,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195 c-0.534,0.803-1.009,1.098-1.665,0.606c0.314,0.378,0.643,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.853,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1610.521" x2="-1610.521" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#CF8122"/>
- <stop offset="0.5" style="stop-color:#8C4105"/>
- <stop offset="1" style="stop-color:#CF8122"/>
+<stop offset="0" style="stop-color:#CF8122"/>
+<stop offset="0.5" style="stop-color:#8C4105"/>
+<stop offset="1" style="stop-color:#CF8122"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31 c8.506-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.533,18.959S3.489,41.869,2.195,44.688 c-0.038,0.087-0.063,0.166-0.101,0.251c0.07,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31 c8.506-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.533,18.959S3.489,41.869,2.195,44.688 c-0.038,0.087-0.063,0.166-0.101,0.251c0.07,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" enable-background="new " opacity="0.35"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
-<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" enable-background="new " opacity="0.3"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" enable-background="new " fill="url(#SVGID_2__)" opacity="0.3"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_dialled_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_dialled_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,95 +1,93 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" enable-background="new " opacity="0.35"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
-<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" enable-background="new " opacity="0.3"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" enable-background="new " fill="url(#SVGID_2__)" opacity="0.3"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
<g>
-<defs>
-</defs>
<polygon fill="none" points="30.152,0.436 15.607,0.436 15.186,0 14.762,0.436 0.152,0.436 0.152,15.436 0,15.592 0.152,15.592 0.152,30.436 30.152,30.436 30.152,15.594 30.295,15.594 30.152,15.447 "/>
-<polygon opacity="0.35" points="8.484,30.434 8.48,15.594 0.4,15.594 0,15.592 15.186,0 30.295,15.594 21.907,15.594 21.915,30.436 "/>
+<polygon fill-opacity="0.35" points="8.484,30.434 8.48,15.594 0.4,15.594 0,15.592 15.186,0 30.295,15.594 21.907,15.594 21.915,30.436 " stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8438)" gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="-2176.5103" x2="-2176.5103" y1="2985.5796" y2="2956.2766">
- <stop offset="0.1455" style="stop-color:#45E8FF"/>
- <stop offset="0.5576" style="stop-color:#30A4D5"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#45E8FF"/>
+<stop offset="0.1455" style="stop-color:#45E8FF"/>
+<stop offset="0.5576" style="stop-color:#30A4D5"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<polygon fill="url(#SVGID_1___)" points="27.438,14.594 15.184,1.861 2.814,14.594 9.48,14.594 9.484,29.142 20.91,29.145 20.907,14.594 "/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8438)" gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="-2176.4844" x2="-2176.4844" y1="2984.1128" y2="2970.6938">
- <stop offset="0.4182" style="stop-color:#B3FCFF"/>
- <stop offset="1" style="stop-color:#5FBAD8"/>
+<stop offset="0" style="stop-color:#B3FCFF"/>
+<stop offset="0.4182" style="stop-color:#B3FCFF"/>
+<stop offset="1" style="stop-color:#5FBAD8"/>
</linearGradient>
<polygon fill="url(#SVGID_2___)" points="3.195,14.592 15.182,2.286 27.108,14.594 27.934,14.594 15.184,1.436 2.37,14.592 "/>
<line fill="none" x1="9.484" x2="20.91" y1="29.138" y2="29.14"/>
<polygon fill="#33AEDB" points="20.912,29.436 9.484,29.434 9.484,28.842 20.912,28.844 "/>
<rect fill="none" height="30" width="30" x="0.152" y="0.436"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_missed_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_missed_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,97 +1,93 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" enable-background="new " opacity="0.35"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
-<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" enable-background="new " opacity="0.3"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" enable-background="new " fill="url(#SVGID_2__)" opacity="0.3"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
<g>
-<defs>
-</defs>
<polygon fill="none" points="15.053,0 14.626,0.439 0,0.439 0,30.439 30,30.439 30,0.439 15.476,0.439 "/>
-<path d="M24.884,30.438c-10.001,0-15.735-4.635-15.735-12.715v-4.339H2.053L15.053,0l12.88,13.385h-6.962v4.339 c0,2.189,2.56,2.768,3.913,2.768h1v9.947H24.884z" opacity="0.35"/>
+<path d="M24.884,30.438c-10.001,0-15.735-4.635-15.735-12.715v-4.339H2.053L15.053,0l12.88,13.385h-6.962v4.339 c0,2.189,2.56,2.768,3.913,2.768h1v9.947H24.884z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3014.6338)" gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="-2179" x2="-2179" y1="3012.1528" y2="2984.2842">
- <stop offset="0" style="stop-color:#FF7042"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FF7042"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<path d="M19.971,17.724v-5.339h5.611L15.049,1.438L4.418,12.385h5.73v5.339 c0,9.024,7.509,11.715,14.735,11.715v-7.947C22.658,21.491,19.971,20.392,19.971,17.724z" fill="url(#SVGID_1___)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="15" x2="15" y1="1.7129" y2="22.5894">
- <stop offset="0" style="stop-color:#FFB259"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FFB259"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<polygon fill="url(#SVGID_2___)" points="15.049,2.438 24.62,12.385 25.582,12.385 15.049,1.438 4.418,12.385 5.389,12.385 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3___" x1="22.4268" x2="22.4268" y1="1.7129" y2="22.5894">
- <stop offset="0" style="stop-color:#FF7042"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FF7042"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<path d="M19.971,17.724v1c0,2.668,2.688,3.768,4.913,3.768v-1C22.658,21.491,19.971,20.392,19.971,17.724z" fill="url(#SVGID_3___)"/>
<rect fill="none" height="30" width="30" y="0.439"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_received_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_received_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,86 +1,82 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
- <stop offset="0.297" style="stop-color:#3AC5EA"/>
- <stop offset="0.6667" style="stop-color:#1754C9"/>
- <stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="0" style="stop-color:#3AC5EA"/>
+<stop offset="0.297" style="stop-color:#3AC5EA"/>
+<stop offset="0.6667" style="stop-color:#1754C9"/>
+<stop offset="0.7939" style="stop-color:#33ADE1"/>
+<stop offset="1" style="stop-color:#33ADE1"/>
</radialGradient>
<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="1" style="stop-color:#081D45"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="1" style="stop-color:#081D45"/>
</linearGradient>
<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.6"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
- <stop offset="0" style="stop-color:#ABEEFF"/>
- <stop offset="1" style="stop-color:#539FDE"/>
+<stop offset="0" style="stop-color:#ABEEFF"/>
+<stop offset="1" style="stop-color:#539FDE"/>
</linearGradient>
-<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.6"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
- <stop offset="0" style="stop-color:#2685D2"/>
- <stop offset="0.5091" style="stop-color:#081D45"/>
- <stop offset="1" style="stop-color:#2275BD"/>
+<stop offset="0" style="stop-color:#2685D2"/>
+<stop offset="0.5091" style="stop-color:#081D45"/>
+<stop offset="1" style="stop-color:#2275BD"/>
</linearGradient>
<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" enable-background="new " opacity="0.35"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
-<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" enable-background="new " opacity="0.3"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" enable-background="new " fill="url(#SVGID_2__)" opacity="0.3"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
- <stop offset="0" style="stop-color:#94FF26"/>
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
<g>
-<defs>
-</defs>
<polygon fill="none" points="30.096,0 0.096,0 0.096,14.833 0,14.833 0.096,14.933 0.096,30 14.601,30 15.021,30.438 15.447,30 30.096,30 30.096,14.963 30.215,14.841 30.096,14.841 "/>
-<polygon opacity="0.35" points="0,14.833 3.596,14.828 3.625,14.859 8.375,14.859 8.375,0 21.73,0.001 21.73,14.843 30.215,14.841 15.021,30.438 "/>
+<polygon fill-opacity="0.35" points="0,14.833 3.596,14.828 3.625,14.859 8.375,14.859 8.375,0 21.73,0.001 21.73,14.843 30.215,14.841 15.021,30.438 " stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="-2176.5142" x2="-2176.5142" y1="2984.646" y2="2957.3247">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<polygon fill="url(#SVGID_1___)" points="2.846,15.859 15.025,28.575 27.398,15.845 20.732,15.843 20.727,1.292 9.375,1.291 9.375,15.859 "/>
<line fill="none" x1="20.727" x2="9.375" y1="1.297" y2="1.296"/>
@@ -88,10 +84,10 @@
<polygon fill="#E7FFB9" points="20.555,15.867 27.527,15.867 27,16.458 20.555,16.458 "/>
<polygon fill="#E7FFB9" points="2.459,15.859 9.365,15.859 9.365,16.451 3.08,16.451 "/>
<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="-2165.6621" x2="-2187.9482" y1="2963.2173" y2="2963.2173">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<polygon fill="url(#SVGID_2___)" points="27.016,15.844 15.025,28.15 3.172,15.829 2.348,15.83 15.025,29 27.842,15.844 "/>
<rect fill="none" height="30" width="30" x="0.096"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_waiting_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_waiting_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,41 +1,41 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<radialGradient cx="-1627.3691" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
- <stop offset="0.297" style="stop-color:#FFC144"/>
- <stop offset="0.6667" style="stop-color:#EF6902"/>
- <stop offset="0.7939" style="stop-color:#FEB037"/>
+<stop offset="0" style="stop-color:#FFC144"/>
+<stop offset="0.297" style="stop-color:#FFC144"/>
+<stop offset="0.6667" style="stop-color:#EF6902"/>
+<stop offset="0.7939" style="stop-color:#FEB037"/>
+<stop offset="1" style="stop-color:#FEB037"/>
</radialGradient>
<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.259-1.333c-0.616-0.665-2.566-3.083-2.968-3.735 c-0.353-0.575-0.411-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.084-7.646,9.955-8.107 c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.523-1.778c-2.477-2.889-8.594-5.015-10.75-5.399 c-1.924-0.345-3.877-0.872-6.568,0.235c-2.559,1.054-13.074,8.536-21.11,16.572C11.203,27.277,3.723,37.795,2.668,40.352 c-1.107,2.691-0.58,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.853,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3418" x2="-1638.9102" y1="-2494.9819" y2="-2491.4063">
- <stop offset="0" style="stop-color:#E17B15"/>
- <stop offset="1" style="stop-color:#B05004"/>
+<stop offset="0" style="stop-color:#E17B15"/>
+<stop offset="1" style="stop-color:#B05004"/>
</linearGradient>
<path d="M35.172,17.108c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.035,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.738,2.119-1.514 c-0.252-0.204-3.469-2.809-4.801-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3462" x2="-1638.9143" y1="4063.0557" y2="4066.6326">
- <stop offset="0" style="stop-color:#E17B15"/>
- <stop offset="1" style="stop-color:#B05004"/>
+<stop offset="0" style="stop-color:#E17B15"/>
+<stop offset="1" style="stop-color:#B05004"/>
</linearGradient>
<path d="M17.093,35.188c-0.401,0.763-0.347,1.039,0.034,1.713c0.376,0.666,2.352,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.297c-0.034,0.048-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.203-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.093,35.188,17.093,35.188z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="48.4072" x2="4.0833" y1="3.4473" y2="47.7712">
- <stop offset="0" style="stop-color:#FFD06E"/>
- <stop offset="1" style="stop-color:#FAB56E"/>
+<stop offset="0" style="stop-color:#FFD06E"/>
+<stop offset="1" style="stop-color:#FAB56E"/>
</linearGradient>
-<path d="M2.979,47.467c-0.345-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.34,4.269,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236 c1.98,0.354,7.297,2.178,10.07,4.711c-2.553-2.815-8.496-4.879-10.617-5.258c-1.924-0.345-3.877-0.872-6.568,0.235 c-2.559,1.054-13.074,8.536-21.11,16.572C11.203,27.277,3.723,37.795,2.668,40.352c-1.107,2.691-0.58,4.645-0.236,6.567 c0.379,2.122,2.441,8.065,5.259,10.617C5.155,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" opacity="0.5"/>
+<path d="M2.979,47.467c-0.345-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.34,4.269,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236 c1.98,0.354,7.297,2.178,10.07,4.711c-2.553-2.815-8.496-4.879-10.617-5.258c-1.924-0.345-3.877-0.872-6.568,0.235 c-2.559,1.054-13.074,8.536-21.11,16.572C11.203,27.277,3.723,37.795,2.668,40.352c-1.107,2.691-0.58,4.645-0.236,6.567 c0.379,2.122,2.441,8.065,5.259,10.617C5.155,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="53.9023" x2="3.4732" y1="3.6543" y2="54.0835">
- <stop offset="0" style="stop-color:#FFD06E"/>
- <stop offset="1" style="stop-color:#FAB56E"/>
+<stop offset="0" style="stop-color:#FFD06E"/>
+<stop offset="1" style="stop-color:#FAB56E"/>
</linearGradient>
-<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.259-1.333 c-0.616-0.665-2.566-3.083-2.968-3.735c-0.353-0.575-0.411-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.084-7.646,9.955-8.107c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.523-1.778 c-0.291-0.339-0.635-0.665-1.012-0.982c0.488,0.657,0.197,1.134-0.607,1.666c-1.4,0.933-14.475,10.225-15.227,10.775 c-0.43,0.314-0.768,0.219-1.299-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.949-0.436-1.711-0.034 c-0.869,0.46-3.763,1.914-9.954,8.106c-6.193,6.192-7.636,9.092-8.108,9.956c-0.378,0.69-0.319,1.135,0.036,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.492,0.533,0.559,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195 c-0.534,0.803-1.009,1.098-1.665,0.606c0.314,0.378,0.643,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.853,42.705,20.37,41.951z" fill="url(#SVGID_5_)" opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.259-1.333 c-0.616-0.665-2.566-3.083-2.968-3.735c-0.353-0.575-0.411-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.084-7.646,9.955-8.107c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.523-1.778 c-0.291-0.339-0.635-0.665-1.012-0.982c0.488,0.657,0.197,1.134-0.607,1.666c-1.4,0.933-14.475,10.225-15.227,10.775 c-0.43,0.314-0.768,0.219-1.299-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.949-0.436-1.711-0.034 c-0.869,0.46-3.763,1.914-9.954,8.106c-6.193,6.192-7.636,9.092-8.108,9.956c-0.378,0.69-0.319,1.135,0.036,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.492,0.533,0.559,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195 c-0.534,0.803-1.009,1.098-1.665,0.606c0.314,0.378,0.643,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.853,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1610.521" x2="-1610.521" y1="-2533.3467" y2="-2471.428">
- <stop offset="0" style="stop-color:#CF8122"/>
- <stop offset="0.5" style="stop-color:#8C4105"/>
- <stop offset="1" style="stop-color:#CF8122"/>
+<stop offset="0" style="stop-color:#CF8122"/>
+<stop offset="0.5" style="stop-color:#8C4105"/>
+<stop offset="1" style="stop-color:#CF8122"/>
</linearGradient>
-<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31 c8.506-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.533,18.959S3.489,41.869,2.195,44.688 c-0.038,0.087-0.063,0.166-0.101,0.251c0.07,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)" opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31 c8.506-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.533,18.959S3.489,41.869,2.195,44.688 c-0.038,0.087-0.063,0.166-0.101,0.251c0.07,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_warning.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_warning.svg Thu May 27 13:10:59 2010 +0300
@@ -1,34 +1,33 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="5.937" y2="55.9156">
- <stop offset="0" style="stop-color:#FEF4CE"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEF4CE"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="2,54.248 30,5.752 58,54.248 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="8.3774" y2="52.771">
- <stop offset="0.1394" style="stop-color:#FEE16E"/>
- <stop offset="0.7879" style="stop-color:#F6A800"/>
- <stop offset="1" style="stop-color:#FED43A"/>
+<stop offset="0" style="stop-color:#FEE16E"/>
+<stop offset="0.1394" style="stop-color:#FEE16E"/>
+<stop offset="0.7879" style="stop-color:#F6A800"/>
+<stop offset="1" style="stop-color:#FED43A"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="4.564,52.768 30,8.713 55.436,52.768 "/>
-<rect height="18.612" opacity="0.1" width="5.91" x="26.86" y="22.119"/>
-<circle cx="29.815" cy="46.689" opacity="0.1" r="3.242"/>
-<rect height="18.612" opacity="0.2" width="5.91" x="26.86" y="21.511"/>
-<circle cx="29.815" cy="46.08" opacity="0.2" r="3.242"/>
+<rect fill-opacity="0.1" height="18.612" stroke-opacity="0.1" width="5.91" x="26.86" y="22.119"/>
+<circle cx="29.815" cy="46.689" fill-opacity="0.1" r="3.242" stroke-opacity="0.1"/>
+<rect fill-opacity="0.2" height="18.612" stroke-opacity="0.2" width="5.91" x="26.86" y="21.511"/>
+<circle cx="29.815" cy="46.08" fill-opacity="0.2" r="3.242" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.8145" x2="29.8145" y1="20.8052" y2="48.7668">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="18.612" width="5.91" x="26.86" y="20.902"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.8145" x2="29.8145" y1="42.1816" y2="48.7683">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="29.815" cy="45.475" fill="url(#SVGID_4_)" r="3.242"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_web_feeds.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_web_feeds.svg Thu May 27 13:10:59 2010 +0300
@@ -1,25 +1,23 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<path d="M56.858,51.79c0,2.797-2.269,5.066-5.069,5.066H8.211c-2.801,0-5.066-2.27-5.066-5.066V8.212 c0-2.8,2.267-5.068,5.066-5.068h43.578c2.801,0,5.069,2.269,5.069,5.068V51.79L56.858,51.79z" fill="#F7B388"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="287.9697" x2="336.3918" y1="-351.5146" y2="-399.9242">
- <stop offset="0" style="stop-color:#DF4F20"/>
- <stop offset="0.5" style="stop-color:#F48228"/>
- <stop offset="1" style="stop-color:#CF3A21"/>
+<stop offset="0" style="stop-color:#DF4F20"/>
+<stop offset="0.5" style="stop-color:#F48228"/>
+<stop offset="1" style="stop-color:#CF3A21"/>
</linearGradient>
<path d="M8.211,55.314c-1.943,0-3.524-1.582-3.524-3.524V8.212c0-1.945,1.581-3.526,3.524-3.526h43.578 c1.944,0,3.526,1.581,3.526,3.526V51.79c0,1.942-1.582,3.524-3.526,3.524H8.211z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="312.4805" x2="312.4805" y1="-348.7539" y2="-403.0745">
- <stop offset="0" style="stop-color:#C5422B"/>
- <stop offset="0.5" style="stop-color:#F48228"/>
- <stop offset="1" style="stop-color:#AD1B00"/>
+<stop offset="0" style="stop-color:#C5422B"/>
+<stop offset="0.5" style="stop-color:#F48228"/>
+<stop offset="1" style="stop-color:#AD1B00"/>
</linearGradient>
<path d="M51.904,3.857c2.338,0,4.238,1.901,4.238,4.236v43.814c0,2.336-1.9,4.234-4.238,4.234H8.093 c-2.335,0-4.236-1.901-4.236-4.234V8.093c0-2.335,1.902-4.236,4.236-4.236H51.904 M51.904,2.999H8.093 c-2.812,0-5.092,2.282-5.092,5.094v43.814c0,2.81,2.28,5.095,5.092,5.095h43.812c2.815,0,5.097-2.285,5.097-5.095V8.093 C57.001,5.281,54.72,2.999,51.904,2.999L51.904,2.999z" fill="url(#SVGID_2_)"/>
<circle cx="16.742" cy="43.259" fill="#FFFFFF" r="5.208"/>
<path d="M41.524,47.889h6.942c0-20.047-16.309-36.354-36.355-36.354v6.942C28.33,18.476,41.524,31.671,41.524,47.889 z" fill="#FFFFFF"/>
<path d="M28.892,47.889h6.943c0-13.082-10.642-23.721-23.722-23.721v6.942 C21.364,31.108,28.892,38.636,28.892,47.889z" fill="#FFFFFF"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_widget.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_widget.svg Thu May 27 13:10:59 2010 +0300
@@ -1,88 +1,96 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<linearGradient gradientTransform="matrix(0.9999 0.0024 -0.0024 0.9999 48.3995 33.6767)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-32.1763" x2="-32.1763" y1="-30.9438" y2="-3.796">
- <stop offset="0.3576" style="stop-color:#F2C352"/>
- <stop offset="0.8909" style="stop-color:#DE7600"/>
- <stop offset="1" style="stop-color:#E79A26"/>
+<stop offset="0" style="stop-color:#F2C352"/>
+<stop offset="0.3576" style="stop-color:#F2C352"/>
+<stop offset="0.8909" style="stop-color:#DE7600"/>
+<stop offset="1" style="stop-color:#E79A26"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="16.246,25.604 7.274,30.295 9.009,20.321 1.775,13.238 11.796,11.81 16.299,2.737 20.758,11.826 30.772,13.307 23.507,20.355 25.195,30.336 "/>
<radialGradient cx="-111.4019" cy="-59.6338" gradientTransform="matrix(0.972 0.0144 -0.0144 0.972 123.6391 66.2654)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="23.7106">
- <stop offset="0.1394" style="stop-color:#FEE16E"/>
- <stop offset="0.5515" style="stop-color:#FFC501"/>
- <stop offset="0.7273" style="stop-color:#F6A800"/>
- <stop offset="1" style="stop-color:#FED43A"/>
+<stop offset="0" style="stop-color:#FEE16E"/>
+<stop offset="0.1394" style="stop-color:#FEE16E"/>
+<stop offset="0.5515" style="stop-color:#FFC501"/>
+<stop offset="0.7273" style="stop-color:#F6A800"/>
+<stop offset="1" style="stop-color:#FED43A"/>
</radialGradient>
<polygon fill="url(#SVGID_2_)" points="9.787,20.071 3.331,13.748 12.277,12.471 16.294,4.375 20.273,12.488 29.212,13.81 22.727,20.1 24.235,29.008 16.246,24.785 8.239,28.973 "/>
<radialGradient cx="-111.1436" cy="-41.29" gradientTransform="matrix(0.972 0.0144 -0.0144 0.972 123.6391 66.2654)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="8.4911">
- <stop offset="0" style="stop-color:#FED95A"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FED95A"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<polygon fill="url(#SVGID_3_)" points="16.259,24.059 8.378,28.182 8.239,28.973 16.246,24.785 24.235,29.008 24.1,28.206 "/>
<radialGradient cx="-111.1377" cy="-56.7529" gradientTransform="matrix(0.972 0.0144 -0.0144 0.972 123.6391 66.2654)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="32.9523">
- <stop offset="0" style="stop-color:#FEF4CE"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEF4CE"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<polygon fill="url(#SVGID_4_)" points="12.629,13.199 16.273,5.825 19.9,13.209 28.561,14.442 29.212,13.81 20.273,12.488 16.294,4.375 12.277,12.471 3.331,13.748 3.981,14.384 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="16.2739" x2="16.2739" y1="31.8535" y2="56.5747">
- <stop offset="0.0424" style="stop-color:#E9F0F2"/>
- <stop offset="0.3152" style="stop-color:#BDC2C4"/>
- <stop offset="0.6727" style="stop-color:#949DA1"/>
- <stop offset="1" style="stop-color:#98A1A4"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.0424" style="stop-color:#E9F0F2"/>
+<stop offset="0.3152" style="stop-color:#BDC2C4"/>
+<stop offset="0.6727" style="stop-color:#949DA1"/>
+<stop offset="1" style="stop-color:#98A1A4"/>
</linearGradient>
<path d="M26.754,31.854H5.795c-0.891,0-1.613,0.721-1.613,1.611v20.961c0,0.889,0.722,1.611,1.613,1.611 h20.959c0.89,0,1.612-0.723,1.612-1.611V33.465C28.366,32.574,27.644,31.854,26.754,31.854z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="43.6836" x2="43.6836" y1="31.8535" y2="56.5747">
- <stop offset="0.0424" style="stop-color:#E9F0F2"/>
- <stop offset="0.3152" style="stop-color:#BDC2C4"/>
- <stop offset="0.6727" style="stop-color:#949DA1"/>
- <stop offset="1" style="stop-color:#98A1A4"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.0424" style="stop-color:#E9F0F2"/>
+<stop offset="0.3152" style="stop-color:#BDC2C4"/>
+<stop offset="0.6727" style="stop-color:#949DA1"/>
+<stop offset="1" style="stop-color:#98A1A4"/>
</linearGradient>
<path d="M54.163,31.854H33.204c-0.891,0-1.613,0.721-1.613,1.611v20.961c0,0.889,0.723,1.611,1.613,1.611 h20.959c0.891,0,1.613-0.723,1.613-1.611V33.465C55.776,32.574,55.054,31.854,54.163,31.854z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="43.6836" x2="43.6836" y1="4.4453" y2="29.167">
- <stop offset="0.0424" style="stop-color:#E9F0F2"/>
- <stop offset="0.3152" style="stop-color:#BDC2C4"/>
- <stop offset="0.6727" style="stop-color:#949DA1"/>
- <stop offset="1" style="stop-color:#98A1A4"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.0424" style="stop-color:#E9F0F2"/>
+<stop offset="0.3152" style="stop-color:#BDC2C4"/>
+<stop offset="0.6727" style="stop-color:#949DA1"/>
+<stop offset="1" style="stop-color:#98A1A4"/>
</linearGradient>
<path d="M54.163,4.445H33.204c-0.891,0-1.613,0.721-1.613,1.611v20.959c0,0.893,0.723,1.613,1.613,1.613 h20.959c0.891,0,1.613-0.721,1.613-1.613V6.057C55.776,5.166,55.054,4.445,54.163,4.445z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="16.2739" x2="16.2739" y1="31.8535" y2="56.0371">
- <stop offset="0.0424" style="stop-color:#E9F0F2"/>
- <stop offset="0.7455" style="stop-color:#98A1A4"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.0424" style="stop-color:#E9F0F2"/>
+<stop offset="0.7455" style="stop-color:#98A1A4"/>
+<stop offset="1" style="stop-color:#98A1A4"/>
</linearGradient>
<path d="M28.366,54.426c0,0.889-0.723,1.611-1.612,1.611H5.795c-0.891,0-1.613-0.723-1.613-1.611V33.465 c0-0.891,0.722-1.611,1.613-1.611h20.959c0.89,0,1.612,0.721,1.612,1.611V54.426z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="16.2739" x2="16.2739" y1="31.8535" y2="56.0371">
- <stop offset="0" style="stop-color:#F6FDFF"/>
- <stop offset="0.3152" style="stop-color:#D1D7D9"/>
- <stop offset="0.6727" style="stop-color:#949DA1"/>
- <stop offset="1" style="stop-color:#B7C3C7"/>
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="0.3152" style="stop-color:#D1D7D9"/>
+<stop offset="0.6727" style="stop-color:#949DA1"/>
+<stop offset="1" style="stop-color:#B7C3C7"/>
</linearGradient>
<path d="M26.754,31.854H5.795c-0.891,0-1.613,0.721-1.613,1.611v20.961c0,0.889,0.722,1.611,1.613,1.611 h20.959c0.89,0,1.612-0.723,1.612-1.611V33.465C28.366,32.574,27.644,31.854,26.754,31.854z M27.561,54.426 c0,0.443-0.363,0.807-0.807,0.807H5.795c-0.445,0-0.807-0.363-0.807-0.807V33.465c0-0.443,0.362-0.805,0.807-0.805h20.959 c0.444,0,0.807,0.361,0.807,0.805V54.426z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="43.6836" x2="43.6836" y1="31.8535" y2="56.0371">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="0.5818" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="0.5818" style="stop-color:#1B66D8"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<path d="M55.776,54.426c0,0.889-0.723,1.611-1.613,1.611H33.204c-0.891,0-1.613-0.723-1.613-1.611V33.465 c0-0.891,0.723-1.611,1.613-1.611h20.959c0.891,0,1.613,0.721,1.613,1.611V54.426z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="43.6836" x2="43.6836" y1="31.8535" y2="57.1121">
- <stop offset="0" style="stop-color:#36DBFF"/>
- <stop offset="0.7394" style="stop-color:#12428C"/>
- <stop offset="1" style="stop-color:#2AA9D9"/>
+<stop offset="0" style="stop-color:#36DBFF"/>
+<stop offset="0.7394" style="stop-color:#12428C"/>
+<stop offset="1" style="stop-color:#2AA9D9"/>
</linearGradient>
<path d="M54.163,31.854H33.204c-0.891,0-1.613,0.721-1.613,1.611v20.961c0,0.889,0.723,1.611,1.613,1.611 h20.959c0.891,0,1.613-0.723,1.613-1.611V33.465C55.776,32.574,55.054,31.854,54.163,31.854z M54.97,54.426 c0,0.443-0.363,0.807-0.807,0.807H33.204c-0.445,0-0.807-0.363-0.807-0.807V33.465c0-0.443,0.361-0.805,0.807-0.805h20.959 c0.443,0,0.807,0.361,0.807,0.805V54.426z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="43.6836" x2="43.6836" y1="4.4453" y2="29.167">
- <stop offset="0.0424" style="stop-color:#E9F0F2"/>
- <stop offset="0.7455" style="stop-color:#98A1A4"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.0424" style="stop-color:#E9F0F2"/>
+<stop offset="0.7455" style="stop-color:#98A1A4"/>
+<stop offset="1" style="stop-color:#98A1A4"/>
</linearGradient>
<path d="M55.776,27.016c0,0.893-0.723,1.613-1.613,1.613H33.204c-0.891,0-1.613-0.721-1.613-1.613V6.057 c0-0.891,0.723-1.611,1.613-1.611h20.959c0.891,0,1.613,0.721,1.613,1.611V27.016z" fill="url(#SVGID_12_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="43.6836" x2="43.6836" y1="4.4453" y2="29.167">
- <stop offset="0" style="stop-color:#F6FDFF"/>
- <stop offset="0.3152" style="stop-color:#D1D7D9"/>
- <stop offset="0.6727" style="stop-color:#949DA1"/>
- <stop offset="1" style="stop-color:#B7C3C7"/>
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="0.3152" style="stop-color:#D1D7D9"/>
+<stop offset="0.6727" style="stop-color:#949DA1"/>
+<stop offset="1" style="stop-color:#B7C3C7"/>
</linearGradient>
<path d="M54.163,4.445H33.204c-0.891,0-1.613,0.721-1.613,1.611v20.959c0,0.893,0.723,1.613,1.613,1.613 h20.959c0.891,0,1.613-0.721,1.613-1.613V6.057C55.776,5.166,55.054,4.445,54.163,4.445z M54.97,27.016 c0,0.443-0.363,0.807-0.807,0.807H33.204c-0.445,0-0.807-0.363-0.807-0.807V6.057c0-0.443,0.361-0.805,0.807-0.805h20.959 c0.443,0,0.807,0.361,0.807,0.805V27.016z" fill="url(#SVGID_13_)"/>
<rect fill="none" height="60" width="60.001"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_wire_connect.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_wire_connect.svg Thu May 27 13:10:59 2010 +0300
@@ -1,80 +1,50 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="37.82" y2="57.77">
-
<stop offset="0" stop-color="#707070"/>
-
<stop offset="0.7939" stop-color="#080808"/>
-
<stop offset="1" stop-color="#585858"/>
-
</linearGradient>
<path d="M12.21,58c-0.875,0-1.592-0.717-1.592-1.593l-1.599-12.65c0-0.876,0.684-1.814,1.518-2.085l10.38-3.372c0.834-0.271,2.232-0.492,3.107-0.492h11.94c0.875,0,2.273,0.222,3.107,0.492l10.38,3.372c0.832,0.271,1.514,1.209,1.514,2.085l-1.592,12.64c0,0.876-0.717,1.593-1.594,1.593h-35.59z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="38.61" y2="56.99">
-
<stop offset="0" stop-color="#4D4D4D"/>
-
<stop offset="1" stop-color="#1A1A1A"/>
-
</linearGradient>
<path d="M12.21,57.2c-0.438,0-0.795-0.357-0.795-0.796l-1.602-12.64c0-0.532,0.461-1.164,0.965-1.328l10.37-3.367c0.771-0.249,2.084-0.457,2.877-0.457h11.94c0.793,0,2.104,0.208,2.861,0.454l10.4,3.376c0.488,0.158,0.949,0.79,0.949,1.322l-1.594,12.64c0,0.438-0.357,0.796-0.797,0.796h-35.59z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="40.2" y2="55.43">
-
<stop offset="0" stop-color="#707070"/>
-
<stop offset="1" stop-color="#323232"/>
-
</linearGradient>
<path d="M13,55.61l-1.59-11.7,10.2-3.314c0.639-0.207,1.783-0.392,2.418-0.392h11.94c0.635,0,1.764,0.179,2.369,0.376l10.25,3.332-1.592,11.7h-34.01z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="25.52" x2="34.48" y1="8.511" y2="8.511">
-
<stop offset="0" stop-color="#A8B1B3"/>
-
<stop offset="0.3818" stop-color="#FFFFFF"/>
-
<stop offset="0.7091" stop-color="#686E70"/>
-
<stop offset="1" stop-color="#A6B0B3"/>
-
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="30.48,2,29.45,2,25.52,5.596,25.52,15.02,34.48,15.02,34.48,5.596"/>
<polygon fill="#FFFFFF" fill-opacity="0.6" points="30.48,2,29.45,2,25.52,5.596,25.52,6.391,29.45,2.796,30.48,2.796,34.48,6.391,34.48,5.596" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="24.82" x2="35.18" y1="26.08" y2="26.08">
-
<stop offset="0" stop-color="#A8B1B3"/>
-
<stop offset="0.3818" stop-color="#FFFFFF"/>
-
<stop offset="0.7091" stop-color="#686E70"/>
-
<stop offset="1" stop-color="#A6B0B3"/>
-
</linearGradient>
<rect fill="url(#SVGID_5_)" height="23.46" width="10.35" x="24.82" y="14.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="24.82" x2="35.18" y1="22.17" y2="22.17">
-
<stop offset="0" stop-color="#4D4D4D"/>
-
<stop offset="0.3818" stop-color="#7A7A7A"/>
-
<stop offset="0.7091" stop-color="#1A1A1A"/>
-
<stop offset="1" stop-color="#4D4D4D"/>
-
</linearGradient>
<rect fill="url(#SVGID_6_)" height="4.777" width="10.35" x="24.82" y="19.78"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="24.82" x2="35.18" y1="29.07" y2="29.07">
-
<stop offset="0" stop-color="#4D4D4D"/>
-
<stop offset="0.3818" stop-color="#7A7A7A"/>
-
<stop offset="0.7091" stop-color="#1A1A1A"/>
-
<stop offset="1" stop-color="#4D4D4D"/>
-
</linearGradient>
<rect fill="url(#SVGID_7_)" height="2.388" width="10.35" x="24.82" y="27.88"/>
<rect fill="#FFFFFF" fill-opacity="0.3" height="0.797" stroke-opacity="0.3" width="10.35" x="24.82" y="30.27"/>
@@ -86,4 +56,4 @@
<rect fill="#FFFFFF" fill-opacity="0.3" height="0.796" stroke-opacity="0.3" width="10.35" x="24.82" y="15.15"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_wlan.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_wlan.svg Thu May 27 13:10:59 2010 +0300
@@ -1,74 +1,73 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="22.8379" x2="37.5014" y1="31.7412" y2="31.7412">
- <stop offset="0.097" style="stop-color:#DBDBDB"/>
- <stop offset="0.6848" style="stop-color:#919191"/>
- <stop offset="1" style="stop-color:#B8B8B8"/>
+<stop offset="0" style="stop-color:#DBDBDB"/>
+<stop offset="0.097" style="stop-color:#DBDBDB"/>
+<stop offset="0.6848" style="stop-color:#919191"/>
+<stop offset="1" style="stop-color:#B8B8B8"/>
</linearGradient>
<path d="M37.109,51.521H22.957l3.86-36.345c0-1.776,1.44-3.216,3.216-3.216l0,0 c1.776,0,3.216,1.439,3.216,3.216L37.109,51.521z" fill="url(#SVGID_1_)"/>
-<polygon opacity="0.2" points="23.212,48.949 36.854,48.949 36.726,47.662 23.34,47.662 "/>
-<polygon opacity="0.1" points="23.34,47.662 36.726,47.662 36.599,46.375 23.467,46.375 "/>
-<polygon opacity="0.3" points="23.083,50.235 36.982,50.235 36.854,48.949 23.212,48.949 "/>
+<polygon fill-opacity="0.2" points="23.212,48.949 36.854,48.949 36.726,47.662 23.34,47.662 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.1" points="23.34,47.662 36.726,47.662 36.599,46.375 23.467,46.375 " stroke-opacity="0.1"/>
+<polygon fill-opacity="0.3" points="23.083,50.235 36.982,50.235 36.854,48.949 23.212,48.949 " stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.4971" x2="48.7082" y1="54.1401" y2="54.1401">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#919191"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#919191"/>
</linearGradient>
<path d="M48.688,58v-3.859c0-2.133-1.729-3.86-3.859-3.86H15.237c-2.131,0-3.859,1.728-3.859,3.86V58H48.688z " fill="url(#SVGID_2_)"/>
-<path d="M44.828,50.28H15.237c-2.131,0-3.859,1.728-3.859,3.86v1.286c0-2.132,1.729-3.86,3.859-3.86 h29.591c2.131,0,3.859,1.729,3.859,3.86v-1.286C48.688,52.008,46.959,50.28,44.828,50.28z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M44.828,50.28H15.237c-2.131,0-3.859,1.728-3.859,3.86v1.286c0-2.132,1.729-3.86,3.859-3.86 h29.591c2.131,0,3.859,1.729,3.859,3.86v-1.286C48.688,52.008,46.959,50.28,44.828,50.28z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 1644.7402 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="1671.6611" x2="1651.5664" y1="642.4497" y2="662.2676">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M9.31,2l4.156,4.152c-5.422,5.422-5.42,14.244,0,19.665l-4.154,4.155 C1.601,22.258,1.601,9.711,9.31,2z" fill="url(#SVGID_3_)"/>
<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 1644.7402 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="1664.2842" x2="1644.192" y1="634.9834" y2="654.7988">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M18.738,7.264l4.153,4.152c-2.52,2.52-2.52,6.617,0,9.136l-4.153,4.153 C13.928,19.898,13.928,12.074,18.738,7.264z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.5073" x2="8.5073" y1="29.6333" y2="-3.0658">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<path d="M9.312,28.686c-3.692-3.693-5.597-8.497-5.753-13.344C3.388,20.618,5.293,25.95,9.312,29.973 l4.154-4.155c-0.217-0.218-0.411-0.448-0.61-0.677L9.312,28.686z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.0176" x2="19.0176" y1="24.7275" y2="9.0601">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<path d="M18.738,23.419c-2.242-2.24-3.424-5.136-3.577-8.077c-0.174,3.369,1.009,6.797,3.577,9.363 l4.153-4.153c-0.22-0.22-0.397-0.466-0.578-0.708L18.738,23.419z" fill="url(#SVGID_6_)"/>
<path d="M9.31,3.286l3.546,3.542c0.2-0.228,0.393-0.459,0.61-0.676L9.31,2c-4.018,4.02-5.921,9.352-5.75,14.628 C3.715,11.779,5.619,6.979,9.31,3.286z" fill="#FFFFFF"/>
<path d="M18.738,8.551l3.576,3.574c0.181-0.242,0.358-0.487,0.578-0.709l-4.153-4.152 c-2.568,2.568-3.751,5.996-3.577,9.364C15.314,13.688,16.496,10.792,18.738,8.551z" fill="#FFFFFF"/>
<linearGradient gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -1770.332 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="1802.8955" x2="1782.8008" y1="773.6841" y2="793.502">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M50.69,2l-4.156,4.152c5.422,5.422,5.42,14.244,0,19.665l4.154,4.155 C58.399,22.258,58.399,9.711,50.69,2z" fill="url(#SVGID_7_)"/>
<linearGradient gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -1770.332 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="1795.5195" x2="1775.4272" y1="766.2183" y2="786.0338">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M41.262,7.264l-4.153,4.152c2.52,2.52,2.52,6.617,0,9.136l4.153,4.153 C46.072,19.898,46.072,12.074,41.262,7.264z" fill="url(#SVGID_8_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -125.5918 0)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-177.0845" x2="-177.0845" y1="29.6333" y2="-3.0658">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<path d="M50.688,28.686c3.692-3.693,5.597-8.497,5.753-13.344c0.171,5.276-1.734,10.608-5.753,14.631 l-4.154-4.155c0.217-0.218,0.411-0.448,0.61-0.677L50.688,28.686z" fill="url(#SVGID_9_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -125.5918 0)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-166.5747" x2="-166.5747" y1="24.7275" y2="9.0601">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<path d="M41.262,23.419c2.242-2.24,3.424-5.136,3.577-8.077c0.175,3.369-1.009,6.797-3.577,9.363 l-4.153-4.153c0.22-0.22,0.397-0.466,0.578-0.708L41.262,23.419z" fill="url(#SVGID_10_)"/>
<path d="M50.69,3.286l-3.546,3.542c-0.2-0.228-0.393-0.459-0.61-0.676L50.69,2c4.018,4.02,5.921,9.352,5.75,14.628 C56.285,11.779,54.381,6.979,50.69,3.286z" fill="#FFFFFF"/>
<path d="M41.262,8.551l-3.576,3.574c-0.181-0.242-0.358-0.487-0.578-0.709l4.153-4.152 c2.568,2.568,3.752,5.996,3.577,9.364C44.686,13.688,43.504,10.792,41.262,8.551z" fill="#FFFFFF"/>
-<rect height="1.287" opacity="0.1" width="37.31" x="11.378" y="56.713"/>
+<rect fill-opacity="0.1" height="1.287" stroke-opacity="0.1" width="37.31" x="11.378" y="56.713"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_wlan_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_wlan_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,87 +1,84 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="22.8379" x2="37.5014" y1="31.7412" y2="31.7412">
- <stop offset="0.097" style="stop-color:#DBDBDB"/>
- <stop offset="0.6848" style="stop-color:#919191"/>
- <stop offset="1" style="stop-color:#B8B8B8"/>
+<stop offset="0" style="stop-color:#DBDBDB"/>
+<stop offset="0.097" style="stop-color:#DBDBDB"/>
+<stop offset="0.6848" style="stop-color:#919191"/>
+<stop offset="1" style="stop-color:#B8B8B8"/>
</linearGradient>
<path d="M37.109,51.521H22.957l3.86-36.345c0-1.776,1.44-3.216,3.216-3.216l0,0 c1.776,0,3.216,1.439,3.216,3.216L37.109,51.521z" fill="url(#SVGID_1_)"/>
-<polygon opacity="0.2" points="23.212,48.949 36.854,48.949 36.726,47.662 23.34,47.662 "/>
-<polygon opacity="0.1" points="23.34,47.662 36.726,47.662 36.599,46.375 23.467,46.375 "/>
-<polygon opacity="0.3" points="23.083,50.235 36.982,50.235 36.854,48.949 23.212,48.949 "/>
+<polygon fill-opacity="0.2" points="23.212,48.949 36.854,48.949 36.726,47.662 23.34,47.662 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.1" points="23.34,47.662 36.726,47.662 36.599,46.375 23.467,46.375 " stroke-opacity="0.1"/>
+<polygon fill-opacity="0.3" points="23.083,50.235 36.982,50.235 36.854,48.949 23.212,48.949 " stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.4971" x2="48.7082" y1="54.1401" y2="54.1401">
- <stop offset="0" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#919191"/>
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#919191"/>
</linearGradient>
<path d="M48.688,58v-3.859c0-2.133-1.729-3.86-3.859-3.86H15.237c-2.131,0-3.859,1.728-3.859,3.86V58H48.688z " fill="url(#SVGID_2_)"/>
-<path d="M44.828,50.28H15.237c-2.131,0-3.859,1.728-3.859,3.86v1.286c0-2.132,1.729-3.86,3.859-3.86 h29.591c2.131,0,3.859,1.729,3.859,3.86v-1.286C48.688,52.008,46.959,50.28,44.828,50.28z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M44.828,50.28H15.237c-2.131,0-3.859,1.728-3.859,3.86v1.286c0-2.132,1.729-3.86,3.859-3.86 h29.591c2.131,0,3.859,1.729,3.859,3.86v-1.286C48.688,52.008,46.959,50.28,44.828,50.28z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 1644.7402 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="1671.6611" x2="1651.5664" y1="642.4497" y2="662.2676">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M9.31,2l4.156,4.152c-5.422,5.422-5.42,14.244,0,19.665l-4.154,4.155 C1.601,22.258,1.601,9.711,9.31,2z" fill="url(#SVGID_3_)"/>
<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 1644.7402 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="1664.2842" x2="1644.192" y1="634.9834" y2="654.7988">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M18.738,7.264l4.153,4.152c-2.52,2.52-2.52,6.617,0,9.136l-4.153,4.153 C13.928,19.898,13.928,12.074,18.738,7.264z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.5073" x2="8.5073" y1="29.6333" y2="-3.0658">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<path d="M9.312,28.686c-3.692-3.693-5.597-8.497-5.753-13.344C3.388,20.618,5.293,25.95,9.312,29.973 l4.154-4.155c-0.217-0.218-0.411-0.448-0.61-0.677L9.312,28.686z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.0176" x2="19.0176" y1="24.7275" y2="9.0601">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<path d="M18.738,23.419c-2.242-2.24-3.424-5.136-3.577-8.077c-0.174,3.369,1.009,6.797,3.577,9.363 l4.153-4.153c-0.22-0.22-0.397-0.466-0.578-0.708L18.738,23.419z" fill="url(#SVGID_6_)"/>
<path d="M9.31,3.286l3.546,3.542c0.2-0.228,0.393-0.459,0.61-0.676L9.31,2c-4.018,4.02-5.921,9.352-5.75,14.628 C3.715,11.779,5.619,6.979,9.31,3.286z" fill="#FFFFFF"/>
<path d="M18.738,8.551l3.576,3.574c0.181-0.242,0.358-0.487,0.578-0.709l-4.153-4.152 c-2.568,2.568-3.751,5.996-3.577,9.364C15.314,13.688,16.496,10.792,18.738,8.551z" fill="#FFFFFF"/>
<linearGradient gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -1770.332 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="1802.8955" x2="1782.8008" y1="773.6841" y2="793.502">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M50.69,2l-4.156,4.152c5.422,5.422,5.42,14.244,0,19.665l4.154,4.155 C58.399,22.258,58.399,9.711,50.69,2z" fill="url(#SVGID_7_)"/>
<linearGradient gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -1770.332 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="1795.5195" x2="1775.4272" y1="766.2183" y2="786.0338">
- <stop offset="0" style="stop-color:#C6FF45"/>
- <stop offset="0.7273" style="stop-color:#66A00E"/>
- <stop offset="1" style="stop-color:#387300"/>
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
<path d="M41.262,7.264l-4.153,4.152c2.52,2.52,2.52,6.617,0,9.136l4.153,4.153 C46.072,19.898,46.072,12.074,41.262,7.264z" fill="url(#SVGID_8_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -125.5918 0)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-177.0845" x2="-177.0845" y1="29.6333" y2="-3.0658">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<path d="M50.688,28.686c3.692-3.693,5.597-8.497,5.753-13.344c0.171,5.276-1.734,10.608-5.753,14.631 l-4.154-4.155c0.217-0.218,0.411-0.448,0.61-0.677L50.688,28.686z" fill="url(#SVGID_9_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -125.5918 0)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-166.5747" x2="-166.5747" y1="24.7275" y2="9.0601">
- <stop offset="0" style="stop-color:#AAE535"/>
- <stop offset="1" style="stop-color:#5D9C0A"/>
+<stop offset="0" style="stop-color:#AAE535"/>
+<stop offset="1" style="stop-color:#5D9C0A"/>
</linearGradient>
<path d="M41.262,23.419c2.242-2.24,3.424-5.136,3.577-8.077c0.175,3.369-1.009,6.797-3.577,9.363 l-4.153-4.153c0.22-0.22,0.397-0.466,0.578-0.708L41.262,23.419z" fill="url(#SVGID_10_)"/>
<path d="M50.69,3.286l-3.546,3.542c-0.2-0.228-0.393-0.459-0.61-0.676L50.69,2c4.018,4.02,5.921,9.352,5.75,14.628 C56.285,11.779,54.381,6.979,50.69,3.286z" fill="#FFFFFF"/>
<path d="M41.262,8.551l-3.576,3.574c-0.181-0.242-0.358-0.487-0.578-0.709l4.153-4.152 c2.568,2.568,3.752,5.996,3.577,9.364C44.686,13.688,43.504,10.792,41.262,8.551z" fill="#FFFFFF"/>
-<rect height="1.287" opacity="0.1" width="37.31" x="11.378" y="56.713"/>
+<rect fill-opacity="0.1" height="1.287" stroke-opacity="0.1" width="37.31" x="11.378" y="56.713"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(2 0 0 2 0 0)">
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<rect height="33.866" opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
+<rect fill-opacity="0.35" height="33.866" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="260" x2="284" y1="655.9761" y2="655.9761">
- <stop offset="0" style="stop-color:#FF4D00"/>
- <stop offset="0.8424" style="stop-color:#CC1414"/>
- <stop offset="1" style="stop-color:#FF4D00"/>
+<stop offset="0" style="stop-color:#FF4D00"/>
+<stop offset="0.8424" style="stop-color:#CC1414"/>
+<stop offset="1" style="stop-color:#FF4D00"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="25.809,26.431 3,4.177 4.191,2.956 27,25.21 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_zipmgr.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_zipmgr.svg Thu May 27 13:10:59 2010 +0300
@@ -1,147 +1,145 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60">
<g>
-<defs>
-</defs>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1188.8574" x2="-1185.7031" y1="44.1982" y2="44.1982">
- <stop offset="0" style="stop-color:#959A9C"/>
- <stop offset="0.3394" style="stop-color:#5B6163"/>
- <stop offset="0.7394" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#878A8C"/>
+<stop offset="0" style="stop-color:#959A9C"/>
+<stop offset="0.3394" style="stop-color:#5B6163"/>
+<stop offset="0.7394" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#878A8C"/>
</linearGradient>
<path d="M36.705,55.458c0,0.969,0.705,1.754,1.576,1.754l0,0c0.871,0,1.578-0.785,1.578-1.754V32.937 c0-0.969-0.707-1.752-1.578-1.752l0,0c-0.871,0-1.576,0.784-1.576,1.752V55.458z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1190.4336" x2="-1184.125" y1="50.5068" y2="50.5068">
- <stop offset="0" style="stop-color:#B7BDBF"/>
- <stop offset="0.297" style="stop-color:#8D9699"/>
- <stop offset="0.7333" style="stop-color:#E5EBED"/>
- <stop offset="1" style="stop-color:#B4BDBF"/>
+<stop offset="0" style="stop-color:#B7BDBF"/>
+<stop offset="0.297" style="stop-color:#8D9699"/>
+<stop offset="0.7333" style="stop-color:#E5EBED"/>
+<stop offset="1" style="stop-color:#B4BDBF"/>
</linearGradient>
<path d="M35.127,50.901c0,0.437,0.352,0.789,0.789,0.789h4.73c0.438,0,0.789-0.353,0.789-0.789v-0.789 c0-0.436-0.352-0.789-0.789-0.789h-4.73c-0.438,0-0.789,0.354-0.789,0.789V50.901z" fill="url(#SVGID_2_)"/>
-<path d="M35.916,49.324h4.73c0.438,0,0.789,0.354,0.789,0.789v0.789c0-0.435-0.352-0.789-0.789-0.789 h-4.73c-0.438,0-0.789,0.354-0.789,0.789v-0.789C35.127,49.677,35.479,49.324,35.916,49.324z" fill="#FFFFFF" opacity="0.3"/>
-<rect height="0.789" opacity="0.2" width="3.154" x="36.705" y="51.69"/>
+<path d="M35.916,49.324h4.73c0.438,0,0.789,0.354,0.789,0.789v0.789c0-0.435-0.352-0.789-0.789-0.789 h-4.73c-0.438,0-0.789,0.354-0.789,0.789v-0.789C35.127,49.677,35.479,49.324,35.916,49.324z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<rect fill-opacity="0.2" height="0.789" stroke-opacity="0.2" width="3.154" x="36.705" y="51.69"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1190.4336" x2="-1184.125" y1="46.5635" y2="46.5635">
- <stop offset="0" style="stop-color:#B7BDBF"/>
- <stop offset="0.297" style="stop-color:#8D9699"/>
- <stop offset="0.7333" style="stop-color:#E5EBED"/>
- <stop offset="1" style="stop-color:#B4BDBF"/>
+<stop offset="0" style="stop-color:#B7BDBF"/>
+<stop offset="0.297" style="stop-color:#8D9699"/>
+<stop offset="0.7333" style="stop-color:#E5EBED"/>
+<stop offset="1" style="stop-color:#B4BDBF"/>
</linearGradient>
<path d="M35.127,46.958c0,0.437,0.352,0.789,0.789,0.789h4.73c0.438,0,0.789-0.352,0.789-0.789v-0.789 c0-0.435-0.352-0.788-0.789-0.788h-4.73c-0.438,0-0.789,0.353-0.789,0.788V46.958z" fill="url(#SVGID_3_)"/>
-<path d="M35.916,45.38h4.73c0.438,0,0.789,0.353,0.789,0.788v0.789c0-0.436-0.352-0.789-0.789-0.789h-4.73 c-0.438,0-0.789,0.354-0.789,0.789v-0.789C35.127,45.733,35.479,45.38,35.916,45.38z" opacity="0.3"/>
-<rect height="0.789" opacity="0.2" width="3.154" x="36.705" y="47.746"/>
+<path d="M35.916,45.38h4.73c0.438,0,0.789,0.353,0.789,0.788v0.789c0-0.436-0.352-0.789-0.789-0.789h-4.73 c-0.438,0-0.789,0.354-0.789,0.789v-0.789C35.127,45.733,35.479,45.38,35.916,45.38z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<rect fill-opacity="0.2" height="0.789" stroke-opacity="0.2" width="3.154" x="36.705" y="47.746"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1190.4336" x2="-1184.125" y1="39.4648" y2="39.4648">
- <stop offset="0" style="stop-color:#B7BDBF"/>
- <stop offset="0.297" style="stop-color:#8D9699"/>
- <stop offset="0.7333" style="stop-color:#E5EBED"/>
- <stop offset="1" style="stop-color:#B4BDBF"/>
+<stop offset="0" style="stop-color:#B7BDBF"/>
+<stop offset="0.297" style="stop-color:#8D9699"/>
+<stop offset="0.7333" style="stop-color:#E5EBED"/>
+<stop offset="1" style="stop-color:#B4BDBF"/>
</linearGradient>
<path d="M35.127,39.859c0,0.436,0.352,0.789,0.789,0.789h4.73c0.438,0,0.789-0.354,0.789-0.789v-0.789 c0-0.437-0.352-0.789-0.789-0.789h-4.73c-0.438,0-0.789,0.353-0.789,0.789V39.859z" fill="url(#SVGID_4_)"/>
-<path d="M35.916,38.282h4.73c0.438,0,0.789,0.353,0.789,0.789v0.789c0-0.437-0.352-0.789-0.789-0.789 h-4.73c-0.438,0-0.789,0.352-0.789,0.789v-0.789C35.127,38.634,35.479,38.282,35.916,38.282z" fill="#FFFFFF" opacity="0.3"/>
-<rect height="0.789" opacity="0.2" width="3.154" x="36.705" y="40.648"/>
+<path d="M35.916,38.282h4.73c0.438,0,0.789,0.353,0.789,0.789v0.789c0-0.437-0.352-0.789-0.789-0.789 h-4.73c-0.438,0-0.789,0.352-0.789,0.789v-0.789C35.127,38.634,35.479,38.282,35.916,38.282z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<rect fill-opacity="0.2" height="0.789" stroke-opacity="0.2" width="3.154" x="36.705" y="40.648"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-1190.4336" x2="-1184.125" y1="35.521" y2="35.521">
- <stop offset="0" style="stop-color:#B7BDBF"/>
- <stop offset="0.297" style="stop-color:#8D9699"/>
- <stop offset="0.7333" style="stop-color:#E5EBED"/>
- <stop offset="1" style="stop-color:#B4BDBF"/>
+<stop offset="0" style="stop-color:#B7BDBF"/>
+<stop offset="0.297" style="stop-color:#8D9699"/>
+<stop offset="0.7333" style="stop-color:#E5EBED"/>
+<stop offset="1" style="stop-color:#B4BDBF"/>
</linearGradient>
<path d="M35.127,35.916c0,0.437,0.352,0.789,0.789,0.789h4.73c0.438,0,0.789-0.352,0.789-0.789v-0.789 c0-0.435-0.352-0.789-0.789-0.789h-4.73c-0.438,0-0.789,0.354-0.789,0.789V35.916z" fill="url(#SVGID_5_)"/>
-<path d="M35.916,35.916h4.73c0.438,0,0.789-0.353,0.789-0.789v0.789c0,0.437-0.352,0.789-0.789,0.789h-4.73 c-0.438,0-0.789-0.352-0.789-0.789v-0.789C35.127,35.563,35.479,35.916,35.916,35.916z" opacity="0.2"/>
-<path d="M35.916,46.958h4.73c0.438,0,0.789-0.353,0.789-0.789v0.789c0,0.437-0.352,0.789-0.789,0.789h-4.73 c-0.438,0-0.789-0.352-0.789-0.789v-0.789C35.127,46.605,35.479,46.958,35.916,46.958z" opacity="0.2"/>
-<path d="M35.916,50.901h4.73c0.438,0,0.789-0.352,0.789-0.789v0.789c0,0.437-0.352,0.789-0.789,0.789h-4.73 c-0.438,0-0.789-0.353-0.789-0.789v-0.789C35.127,50.549,35.479,50.901,35.916,50.901z" opacity="0.2"/>
-<path d="M35.916,34.338h4.73c0.438,0,0.789,0.354,0.789,0.789v0.789c0-0.436-0.352-0.789-0.789-0.789 h-4.73c-0.438,0-0.789,0.354-0.789,0.789v-0.789C35.127,34.691,35.479,34.338,35.916,34.338z" fill="#FFFFFF" opacity="0.3"/>
-<rect height="0.789" opacity="0.2" width="3.154" x="36.705" y="36.704"/>
+<path d="M35.916,35.916h4.73c0.438,0,0.789-0.353,0.789-0.789v0.789c0,0.437-0.352,0.789-0.789,0.789h-4.73 c-0.438,0-0.789-0.352-0.789-0.789v-0.789C35.127,35.563,35.479,35.916,35.916,35.916z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M35.916,46.958h4.73c0.438,0,0.789-0.353,0.789-0.789v0.789c0,0.437-0.352,0.789-0.789,0.789h-4.73 c-0.438,0-0.789-0.352-0.789-0.789v-0.789C35.127,46.605,35.479,46.958,35.916,46.958z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M35.916,50.901h4.73c0.438,0,0.789-0.352,0.789-0.789v0.789c0,0.437-0.352,0.789-0.789,0.789h-4.73 c-0.438,0-0.789-0.353-0.789-0.789v-0.789C35.127,50.549,35.479,50.901,35.916,50.901z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M35.916,34.338h4.73c0.438,0,0.789,0.354,0.789,0.789v0.789c0-0.436-0.352-0.789-0.789-0.789 h-4.73c-0.438,0-0.789,0.354-0.789,0.789v-0.789C35.127,34.691,35.479,34.338,35.916,34.338z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<rect fill-opacity="0.2" height="0.789" stroke-opacity="0.2" width="3.154" x="36.705" y="36.704"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1196.7441" x2="-1177.8145" y1="31.5776" y2="31.5776">
- <stop offset="0" style="stop-color:#959A9C"/>
- <stop offset="0.3394" style="stop-color:#5B6163"/>
- <stop offset="0.7394" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#878A8C"/>
+<stop offset="0" style="stop-color:#959A9C"/>
+<stop offset="0.3394" style="stop-color:#5B6163"/>
+<stop offset="0.7394" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#878A8C"/>
</linearGradient>
<path d="M47.746,31.184c0,0.871-0.707,1.576-1.576,1.576H30.395c-0.871,0-1.578-0.706-1.578-1.576v-0.789 h18.93V31.184z" fill="url(#SVGID_6_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-1203.8418" x2="-1170.7168" y1="26.8457" y2="26.8457">
- <stop offset="0" style="stop-color:#67AD1A"/>
- <stop offset="0.2606" style="stop-color:#358C0C"/>
- <stop offset="1" style="stop-color:#AFED23"/>
+<stop offset="0" style="stop-color:#67AD1A"/>
+<stop offset="0.2606" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#AFED23"/>
</linearGradient>
<path d="M21.719,28.817c0,0.871,0.705,1.578,1.578,1.578h29.971c0.871,0,1.576-0.707,1.576-1.578v-3.944 c0-0.871-0.705-1.578-1.576-1.578H23.297c-0.873,0-1.578,0.707-1.578,1.578V28.817z" fill="url(#SVGID_7_)"/>
-<path d="M23.297,29.606h29.971c0.871,0,1.576-0.707,1.576-1.578v0.789c0,0.871-0.705,1.578-1.576,1.578H23.297 c-0.873,0-1.578-0.707-1.578-1.578v-0.789C21.719,28.899,22.424,29.606,23.297,29.606z" opacity="0.2"/>
-<path d="M23.297,23.296h29.971c0.871,0,1.576,0.707,1.576,1.578v0.789 c0-0.871-0.705-1.578-1.576-1.578H23.297c-0.873,0-1.578,0.707-1.578,1.578v-0.789C21.719,24.003,22.424,23.296,23.297,23.296z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M23.297,29.606h29.971c0.871,0,1.576-0.707,1.576-1.578v0.789c0,0.871-0.705,1.578-1.576,1.578H23.297 c-0.873,0-1.578-0.707-1.578-1.578v-0.789C21.719,28.899,22.424,29.606,23.297,29.606z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M23.297,23.296h29.971c0.871,0,1.576,0.707,1.576,1.578v0.789 c0-0.871-0.705-1.578-1.576-1.578H23.297c-0.873,0-1.578,0.707-1.578,1.578v-0.789C21.719,24.003,22.424,23.296,23.297,23.296z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-1203.8418" x2="-1170.7168" y1="19.7471" y2="19.7471">
- <stop offset="0" style="stop-color:#FFC501"/>
- <stop offset="0.2545" style="stop-color:#F6A800"/>
- <stop offset="1" style="stop-color:#FEEFA7"/>
+<stop offset="0" style="stop-color:#FFC501"/>
+<stop offset="0.2545" style="stop-color:#F6A800"/>
+<stop offset="1" style="stop-color:#FEEFA7"/>
</linearGradient>
<path d="M21.719,21.718c0,0.872,0.705,1.578,1.578,1.578h29.971c0.871,0,1.576-0.706,1.576-1.578v-3.943 c0-0.872-0.705-1.578-1.576-1.578H23.297c-0.873,0-1.578,0.706-1.578,1.578V21.718z" fill="url(#SVGID_8_)"/>
-<path d="M23.297,22.507h29.971c0.871,0,1.576-0.706,1.576-1.578v0.789c0,0.872-0.705,1.578-1.576,1.578H23.297 c-0.873,0-1.578-0.706-1.578-1.578v-0.789C21.719,21.801,22.424,22.507,23.297,22.507z" opacity="0.2"/>
-<path d="M23.297,16.198h29.971c0.871,0,1.576,0.706,1.576,1.578v0.789 c0-0.872-0.705-1.578-1.576-1.578H23.297c-0.873,0-1.578,0.706-1.578,1.578v-0.789C21.719,16.904,22.424,16.198,23.297,16.198z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M23.297,22.507h29.971c0.871,0,1.576-0.706,1.576-1.578v0.789c0,0.872-0.705,1.578-1.576,1.578H23.297 c-0.873,0-1.578-0.706-1.578-1.578v-0.789C21.719,21.801,22.424,22.507,23.297,22.507z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M23.297,16.198h29.971c0.871,0,1.576,0.706,1.576,1.578v0.789 c0-0.872-0.705-1.578-1.576-1.578H23.297c-0.873,0-1.578,0.706-1.578,1.578v-0.789C21.719,16.904,22.424,16.198,23.297,16.198z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-1203.8418" x2="-1170.7168" y1="12.6484" y2="12.6484">
- <stop offset="0" style="stop-color:#E8522A"/>
- <stop offset="0.2061" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#FF7236"/>
+<stop offset="0" style="stop-color:#E8522A"/>
+<stop offset="0.2061" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#FF7236"/>
</linearGradient>
<path d="M21.719,14.62c0,0.871,0.705,1.578,1.578,1.578h29.971c0.871,0,1.576-0.707,1.576-1.578v-3.944 c0-0.871-0.705-1.578-1.576-1.578H23.297c-0.873,0-1.578,0.707-1.578,1.578V14.62z" fill="url(#SVGID_9_)"/>
-<path d="M23.297,15.409h29.971c0.871,0,1.576-0.707,1.576-1.578v0.789c0,0.871-0.705,1.578-1.576,1.578H23.297 c-0.873,0-1.578-0.707-1.578-1.578v-0.789C21.719,14.702,22.424,15.409,23.297,15.409z" opacity="0.2"/>
-<path d="M23.297,9.099h29.971c0.871,0,1.576,0.707,1.576,1.578v0.789c0-0.871-0.705-1.578-1.576-1.578 H23.297c-0.873,0-1.578,0.707-1.578,1.578v-0.789C21.719,9.806,22.424,9.099,23.297,9.099z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M23.297,15.409h29.971c0.871,0,1.576-0.707,1.576-1.578v0.789c0,0.871-0.705,1.578-1.576,1.578H23.297 c-0.873,0-1.578-0.707-1.578-1.578v-0.789C21.719,14.702,22.424,15.409,23.297,15.409z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M23.297,9.099h29.971c0.871,0,1.576,0.707,1.576,1.578v0.789c0-0.871-0.705-1.578-1.576-1.578 H23.297c-0.873,0-1.578,0.707-1.578,1.578v-0.789C21.719,9.806,22.424,9.099,23.297,9.099z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-1195.9551" x2="-1178.3573" y1="55.6343" y2="55.6343">
- <stop offset="0" style="stop-color:#959A9C"/>
- <stop offset="0.3394" style="stop-color:#5B6163"/>
- <stop offset="0.7394" style="stop-color:#BDC2C4"/>
- <stop offset="1" style="stop-color:#878A8C"/>
+<stop offset="0" style="stop-color:#959A9C"/>
+<stop offset="0.3394" style="stop-color:#5B6163"/>
+<stop offset="0.7394" style="stop-color:#BDC2C4"/>
+<stop offset="1" style="stop-color:#878A8C"/>
</linearGradient>
<path d="M29.605,56.423c0,0.871,0.705,1.578,1.578,1.578h14.197c0.869,0,1.576-0.707,1.576-1.578v-1.578 c0-0.872-0.707-1.577-1.576-1.577H31.184c-0.873,0-1.578,0.706-1.578,1.577V56.423z" fill="url(#SVGID_10_)"/>
-<path d="M31.184,57.212h14.197c0.869,0,1.576-0.708,1.576-1.578v0.789c0,0.871-0.707,1.578-1.576,1.578H31.184 c-0.873,0-1.578-0.707-1.578-1.578v-0.789C29.605,56.504,30.311,57.212,31.184,57.212z" opacity="0.2"/>
-<path d="M31.184,53.268h14.197c0.869,0,1.576,0.706,1.576,1.577v0.789 c0-0.872-0.707-1.578-1.576-1.578H31.184c-0.873,0-1.578,0.706-1.578,1.578v-0.789C29.605,53.974,30.311,53.268,31.184,53.268z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M31.184,57.212h14.197c0.869,0,1.576-0.708,1.576-1.578v0.789c0,0.871-0.707,1.578-1.576,1.578H31.184 c-0.873,0-1.578-0.707-1.578-1.578v-0.789C29.605,56.504,30.311,57.212,31.184,57.212z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M31.184,53.268h14.197c0.869,0,1.576,0.706,1.576,1.577v0.789 c0-0.872-0.707-1.578-1.576-1.578H31.184c-0.873,0-1.578,0.706-1.578,1.578v-0.789C29.605,53.974,30.311,53.268,31.184,53.268z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-1176.2363" x2="-1176.2363" y1="38.8081" y2="45.1177">
- <stop offset="0" style="stop-color:#B6B6B6"/>
- <stop offset="0.4727" style="stop-color:#949D9D"/>
- <stop offset="0.8909" style="stop-color:#464B4D"/>
- <stop offset="1" style="stop-color:#676D6E"/>
+<stop offset="0" style="stop-color:#B6B6B6"/>
+<stop offset="0.4727" style="stop-color:#949D9D"/>
+<stop offset="0.8909" style="stop-color:#464B4D"/>
+<stop offset="1" style="stop-color:#676D6E"/>
</linearGradient>
<path d="M5.154,43.804c0,0.87,0.707,1.577,1.578,1.577h41.014c0.871,0,1.576-0.707,1.576-1.577v-3.155 c0-0.873-0.705-1.578-1.576-1.578H6.732C5.861,39.071,5.154,43.804,5.154,43.804z" fill="url(#SVGID_11_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-1176.2363" x2="-1176.2363" y1="38.8081" y2="45.1177">
- <stop offset="0" style="stop-color:#E0E0E0"/>
- <stop offset="0.4727" style="stop-color:#ABB5B5"/>
- <stop offset="0.8909" style="stop-color:#464B4D"/>
- <stop offset="1" style="stop-color:#676D6E"/>
+<stop offset="0" style="stop-color:#E0E0E0"/>
+<stop offset="0.4727" style="stop-color:#ABB5B5"/>
+<stop offset="0.8909" style="stop-color:#464B4D"/>
+<stop offset="1" style="stop-color:#676D6E"/>
</linearGradient>
<path d="M5.154,43.804c0,0.87,0.707,1.577,1.578,1.577h41.014c0.871,0,1.576-0.707,1.576-1.577v-3.155 c0-0.873-0.705-1.578-1.576-1.578H6.732C5.861,39.071,5.154,43.804,5.154,43.804z M5.943,40.648c0-0.434,0.354-0.789,0.789-0.789 h41.014c0.436,0,0.789,0.355,0.789,0.789v3.155c0,0.434-0.354,0.789-0.789,0.789H6.732c-0.436,0-0.789-0.355-0.789-0.789V40.648z" fill="url(#SVGID_12_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-1177.8145" x2="-1177.8145" y1="2.0005" y2="8.3101">
- <stop offset="0" style="stop-color:#D9D9D9"/>
- <stop offset="0.4727" style="stop-color:#AFBABA"/>
- <stop offset="0.8909" style="stop-color:#646B6E"/>
- <stop offset="1" style="stop-color:#757C7D"/>
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.4727" style="stop-color:#AFBABA"/>
+<stop offset="0.8909" style="stop-color:#646B6E"/>
+<stop offset="1" style="stop-color:#757C7D"/>
</linearGradient>
<path d="M6.732,8.31H50.9c0.871,0,1.578-0.706,1.578-1.577V3.578C52.479,2.707,51.771,2,50.9,2H6.732 C5.861,2,5.154,2.707,5.154,3.578C5.154,3.578,5.861,8.31,6.732,8.31z" fill="url(#SVGID_13_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-1177.8145" x2="-1177.8145" y1="2.0005" y2="8.3101">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="0.4727" style="stop-color:#D0DEDE"/>
- <stop offset="0.8909" style="stop-color:#646B6E"/>
- <stop offset="1" style="stop-color:#757C7D"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.4727" style="stop-color:#D0DEDE"/>
+<stop offset="0.8909" style="stop-color:#646B6E"/>
+<stop offset="1" style="stop-color:#757C7D"/>
</linearGradient>
<path d="M5.154,3.578c0,0,0.707,4.732,1.578,4.732H50.9c0.871,0,1.578-0.706,1.578-1.577V3.578 C52.479,2.707,51.771,2,50.9,2H6.732C5.861,2,5.154,2.707,5.154,3.578z M5.943,3.578c0-0.435,0.354-0.789,0.789-0.789H50.9 c0.436,0,0.789,0.354,0.789,0.789v3.155c0,0.434-0.354,0.788-0.789,0.788H6.732C6.297,7.521,5.943,3.578,5.943,3.578z" fill="url(#SVGID_14_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-1160.0684" x2="-1160.0684" y1="2.0005" y2="45.4">
- <stop offset="0" style="stop-color:#DAE0E3"/>
- <stop offset="0.5273" style="stop-color:#8C9A9B"/>
- <stop offset="1" style="stop-color:#292F36"/>
+<stop offset="0" style="stop-color:#DAE0E3"/>
+<stop offset="0.5273" style="stop-color:#8C9A9B"/>
+<stop offset="1" style="stop-color:#292F36"/>
</linearGradient>
<path d="M5.775,2.332L16.986,8.31v30.761L5.775,45.049c-0.375-0.288-0.621-0.736-0.621-1.245V3.578 C5.154,3.067,5.4,2.62,5.775,2.332z" fill="url(#SVGID_15_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-1154.9414" x2="-1154.9414" y1="2.2153" y2="45.1406">
- <stop offset="0" style="stop-color:#EBF2F5"/>
- <stop offset="0.2545" style="stop-color:#C8D0D2"/>
- <stop offset="0.5273" style="stop-color:#A1B1B3"/>
- <stop offset="1" style="stop-color:#292F36"/>
+<stop offset="0" style="stop-color:#EBF2F5"/>
+<stop offset="0.2545" style="stop-color:#C8D0D2"/>
+<stop offset="0.5273" style="stop-color:#A1B1B3"/>
+<stop offset="1" style="stop-color:#292F36"/>
</linearGradient>
<path d="M5.775,2.332l0.957,0.509V44.54l-0.957,0.509c-0.375-0.288-0.621-0.736-0.621-1.245V3.578 C5.154,3.067,5.4,2.62,5.775,2.332z" fill="url(#SVGID_16_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="-1164.0117" x2="-1164.0117" y1="1.7437" y2="45.7098">
- <stop offset="0" style="stop-color:#B5BABD"/>
- <stop offset="0.5273" style="stop-color:#758182"/>
- <stop offset="1" style="stop-color:#292F36"/>
+<stop offset="0" style="stop-color:#B5BABD"/>
+<stop offset="0.5273" style="stop-color:#758182"/>
+<stop offset="1" style="stop-color:#292F36"/>
</linearGradient>
<polygon fill="url(#SVGID_17_)" points="13.041,6.208 16.986,8.31 16.986,39.071 13.041,41.173 "/>
-<path d="M16.986,39.071L5.775,45.049c-0.338-0.26-0.563-0.655-0.604-1.104C5.232,44.097,16.986,39.071,16.986,39.071z " opacity="0.1"/>
-<path d="M5.172,3.436c0.041-0.449,0.266-0.844,0.604-1.104L16.986,8.31 C16.986,8.31,5.232,3.284,5.172,3.436z" fill="#FFFFFF" opacity="0.3"/>
-<rect height="0.789" opacity="0.2" width="18.93" x="28.816" y="30.395"/>
-<rect height="0.788" opacity="0.2" width="3.154" x="36.705" y="32.76"/>
+<path d="M16.986,39.071L5.775,45.049c-0.338-0.26-0.563-0.655-0.604-1.104C5.232,44.097,16.986,39.071,16.986,39.071z " fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M5.172,3.436c0.041-0.449,0.266-0.844,0.604-1.104L16.986,8.31 C16.986,8.31,5.232,3.284,5.172,3.436z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<rect fill-opacity="0.2" height="0.789" stroke-opacity="0.2" width="18.93" x="28.816" y="30.395"/>
+<rect fill-opacity="0.2" height="0.788" stroke-opacity="0.2" width="3.154" x="36.705" y="32.76"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_0_3mp.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_0_3mp.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
-<g opacity="0.5">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30" x="0.002"/>
-
</g>
-
<path d="M1,3v24h28v-24h-28zm25,21h-22v-18h22v18z"/>
-
<path d="M7.488,11.28c0.752,0,1.32,0.267,1.705,0.801,0.383,0.534,0.576,1.477,0.576,2.827,0,1.481-0.195,2.485-0.584,3.016-0.389,0.528-0.963,0.793-1.721,0.793-0.664,0-1.166-0.176-1.504-0.526-0.34-0.353-0.561-0.797-0.662-1.334-0.104-0.537-0.154-1.187-0.154-1.947,0-1.325,0.197-2.261,0.592-2.808,0.393-0.54,0.979-0.82,1.752-0.82zm-0.033,6.63c0.332,0,0.574-0.187,0.729-0.56,0.156-0.373,0.232-1.187,0.232-2.438,0-1.204-0.08-1.975-0.238-2.313-0.16-0.336-0.4-0.505-0.723-0.505-0.293,0-0.51,0.117-0.648,0.352-0.137,0.234-0.225,0.54-0.258,0.918-0.035,0.378-0.051,0.894-0.051,1.548,0,1.289,0.076,2.11,0.229,2.466,0.154,0.34,0.396,0.52,0.728,0.52z"/>
-
<path d="M11.42,18.72c-0.215,0-0.398-0.075-0.553-0.229-0.152-0.153-0.229-0.335-0.229-0.548,0-0.215,0.074-0.396,0.227-0.547,0.15-0.148,0.336-0.225,0.555-0.225,0.215,0,0.396,0.075,0.549,0.225,0.15,0.149,0.227,0.332,0.227,0.547,0,0.216-0.076,0.397-0.227,0.551-0.15,0.16-0.33,0.24-0.55,0.24z"/>
-
<path d="M13.78,14.38c0.957,0,1.555-0.098,1.793-0.293,0.236-0.195,0.354-0.495,0.354-0.898,0-0.354-0.096-0.622-0.284-0.801-0.191-0.179-0.476-0.269-0.853-0.269-0.332,0-0.799,0.083-1.402,0.249h-0.01v-0.859c0.613-0.153,1.166-0.229,1.66-0.229,0.746,0,1.307,0.149,1.68,0.449,0.375,0.3,0.563,0.749,0.563,1.348,0,0.413-0.113,0.769-0.338,1.067-0.226,0.297-0.547,0.508-0.967,0.632,0.457,0.081,0.805,0.272,1.047,0.573,0.244,0.301,0.365,0.678,0.365,1.131,0,0.744-0.22,1.305-0.652,1.678-0.437,0.372-1.086,0.559-1.956,0.559-0.521,0-1.055-0.076-1.602-0.229v-0.85h0.01c0.637,0.158,1.141,0.238,1.508,0.238,0.443,0,0.775-0.111,0.999-0.334,0.225-0.225,0.336-0.559,0.336-1.004,0-0.479-0.135-0.822-0.4-1.03-0.268-0.208-0.885-0.313-1.852-0.313v-0.828z"/>
-
<path d="M24.86,11.36v7.28h-1.328v-5.04l-1.373,2.617h-0.561l-1.38-2.62v5.039h-1.334v-7.28h1.123l1.871,3.56,1.869-3.56h1.107z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_12mp.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_12mp.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
-<g opacity="0.5">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30" x="0.001"/>
-
</g>
-
<path d="M0.999,3v24h28v-24h-28zm25,21h-22v-18h22v18z"/>
-
<path d="M10.74,17.9v0.781h-4.31v-0.781h1.533v-5.448l-1.529,0.35v-0.781l2.152-0.679h0.709v6.559h1.449v-0.004z"/>
-
<path d="M16.18,17.83v0.851h-4.354v-0.533c0-0.508,0.088-0.959,0.264-1.353s0.393-0.729,0.65-1.008c0.256-0.279,0.582-0.584,0.977-0.916,0.471-0.397,0.77-0.705,0.893-0.923,0.125-0.218,0.186-0.435,0.186-0.649,0-0.378-0.1-0.662-0.301-0.852-0.199-0.191-0.5-0.286-0.9-0.286-0.422,0-0.936,0.109-1.537,0.327h-0.01v-0.869c0.631-0.198,1.246-0.298,1.846-0.298,0.738,0,1.301,0.162,1.684,0.485,0.385,0.324,0.576,0.802,0.576,1.434,0,0.354-0.087,0.704-0.259,1.047-0.174,0.344-0.58,0.784-1.22,1.321-0.359,0.303-0.639,0.555-0.84,0.757-0.203,0.202-0.373,0.424-0.512,0.665-0.137,0.244-0.213,0.51-0.227,0.8h3.084z"/>
-
<path d="M23.57,11.4v7.28h-1.328v-5.04l-1.371,2.617h-0.563l-1.378-2.617v5.04h-1.331v-7.281h1.122l1.869,3.56,1.871-3.56h1.11z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_1_3mp.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_1_3mp.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M0.998,3v24h28v-24h-28zm25,21h-22v-18h22v18z"/>
-
<path d="M9.573,17.86v0.781h-4.31v-0.781h1.533v-5.45l-1.533,0.352v-0.78l2.152-0.68h0.709v6.559h1.449z"/>
-
<path d="M11.3,18.72c-0.215,0-0.398-0.076-0.553-0.23-0.152-0.152-0.229-0.334-0.229-0.547,0-0.215,0.074-0.396,0.227-0.547,0.15-0.148,0.336-0.225,0.555-0.225,0.215,0,0.396,0.076,0.549,0.225,0.15,0.15,0.227,0.332,0.227,0.547s-0.076,0.398-0.227,0.551c-0.16,0.16-0.34,0.24-0.55,0.24z"/>
-
<path d="M13.66,14.38c0.957,0,1.555-0.098,1.793-0.293,0.236-0.195,0.355-0.496,0.355-0.898,0-0.355-0.096-0.623-0.285-0.801-0.191-0.18-0.475-0.27-0.852-0.27-0.332,0-0.799,0.084-1.402,0.25h-0.01v-0.859c0.613-0.154,1.166-0.23,1.66-0.23,0.746,0,1.307,0.15,1.68,0.449,0.375,0.301,0.563,0.75,0.563,1.348,0,0.414-0.113,0.77-0.338,1.068-0.225,0.297-0.547,0.508-0.967,0.631,0.457,0.082,0.805,0.273,1.047,0.574,0.244,0.301,0.365,0.678,0.365,1.131,0,0.744-0.219,1.305-0.652,1.678-0.436,0.371-1.086,0.559-1.955,0.559-0.521,0-1.055-0.076-1.602-0.23v-0.85h0.01c0.637,0.16,1.141,0.24,1.508,0.24,0.443,0,0.775-0.111,0.998-0.334,0.225-0.225,0.336-0.559,0.336-1.004,0-0.479-0.135-0.822-0.4-1.031-0.268-0.207-0.885-0.313-1.852-0.313v-0.827z"/>
-
<path d="M24.74,11.36v7.281h-1.328v-5.039l-1.373,2.617h-0.561l-1.377-2.617v5.039h-1.334v-7.281h1.123l1.871,3.561,1.869-3.561h1.105z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_3mp.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_3mp.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
-<g opacity="0.5">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30" x="0.003"/>
-
</g>
-
<path d="M1,3v24h28v-24h-28zm25,21h-22v-18h22v18z"/>
-
<path d="M9.762,14.38c0.957,0,1.555-0.098,1.793-0.293,0.236-0.195,0.355-0.494,0.355-0.898,0-0.354-0.096-0.621-0.285-0.801-0.191-0.178-0.475-0.268-0.852-0.268-0.332,0-0.799,0.082-1.402,0.248h-0.01v-0.86c0.613-0.152,1.166-0.229,1.66-0.229,0.746,0,1.307,0.148,1.68,0.449,0.375,0.299,0.563,0.748,0.563,1.348,0,0.412-0.113,0.768-0.338,1.066-0.225,0.297-0.547,0.508-0.967,0.633,0.457,0.08,0.805,0.271,1.047,0.572,0.244,0.303,0.365,0.68,0.365,1.131,0,0.746-0.219,1.305-0.652,1.678-0.436,0.373-1.086,0.559-1.955,0.559-0.521,0-1.055-0.076-1.602-0.229v-0.85h0.01c0.637,0.157,1.141,0.237,1.508,0.237,0.443,0,0.775-0.11,0.998-0.334,0.225-0.224,0.336-0.558,0.336-1.004,0-0.479-0.135-0.822-0.4-1.029-0.268-0.209-0.885-0.313-1.852-0.313v-0.829z"/>
-
<path d="M20.84,11.36v7.28h-1.328v-5.04l-1.373,2.617h-0.56l-1.38-2.62v5.039h-1.334v-7.28h1.123l1.871,3.559,1.869-3.559h1.11z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_9mp.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_9mp.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
-<g opacity="0.5">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30" x="0.002"/>
-
</g>
-
<path d="M1,3v24h28v-24h-28zm25,21h-22v-18h22v18z"/>
-
<path d="M9.594,18.6v-0.84c0.303,0.078,0.637,0.117,1.006,0.117,0.539,0,0.947-0.168,1.221-0.506,0.273-0.336,0.434-0.889,0.482-1.652-0.334,0.305-0.764,0.459-1.283,0.459-0.625,0-1.102-0.203-1.43-0.604-0.326-0.41-0.49-0.98-0.49-1.72,0-0.813,0.195-1.447,0.584-1.898,0.389-0.453,0.951-0.68,1.688-0.68,0.764,0,1.342,0.268,1.732,0.805,0.391,0.535,0.586,1.443,0.586,2.727,0,1.26-0.246,2.225-0.736,2.898-0.492,0.672-1.219,1.009-2.184,1.009-0.35,0-0.74-0.04-1.176-0.12zm1.746-3.24c0.318,0,0.563-0.119,0.734-0.354,0.17-0.236,0.256-0.572,0.256-1.004,0-0.635-0.08-1.111-0.238-1.432-0.16-0.318-0.398-0.479-0.713-0.479-0.311,0-0.545,0.119-0.707,0.357-0.16,0.236-0.24,0.707-0.24,1.41,0,0.535,0.074,0.918,0.227,1.15,0.15,0.22,0.38,0.34,0.68,0.34z"/>
-
<path d="M20.9,11.36v7.282h-1.328v-5.04l-1.373,2.617h-0.561l-1.377-2.617v5.04h-1.334v-7.282h1.123l1.871,3.561,1.869-3.561h1.112z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_accented_characters.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_accented_characters.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<polygon points="7.79,8.82,5.865,5.946,4.046,5.946,6.243,8.82"/>
-
<polygon points="16.47,8.303,19,5,17.42,5,15.72,7,14,5,12.42,5,14.96,8.303"/>
-
<path d="M5.394,8.9c-1.107,0-2.283,0.171-3.527,0.513v1.528c1.217-0.362,2.259-0.544,3.128-0.544,0.533,0,0.967,0.087,1.302,0.262,0.335,0.174,0.574,0.42,0.718,0.738,0.144,0.317,0.215,0.774,0.215,1.368v1.118c-1.107,0-2.037,0.05-2.789,0.148-0.752,0.1-1.401,0.305-1.947,0.615-0.548,0.312-0.952,0.718-1.216,1.221-0.263,0.502-0.395,1.105-0.395,1.81,0,1.101,0.304,1.957,0.913,2.568,0.607,0.612,1.452,0.918,2.532,0.918,1.559,0,2.707-0.629,3.445-1.887l0.44,1.71h1.2v-8.295c0-1.313-0.358-2.275-1.077-2.887-0.717-0.607-1.698-0.913-2.942-0.913zm1.835,8.11c0,0.827-0.21,1.481-0.63,1.963-0.421,0.482-1.004,0.723-1.749,0.723-0.588,0-1.032-0.177-1.332-0.533-0.302-0.354-0.451-0.857-0.451-1.507,0-0.766,0.229-1.369,0.687-1.81s1.278-0.662,2.461-0.662h1.015v1.832z"/>
-
<polygon points="19.86,10.4,19.86,9.074,11.94,9.074,11.94,10.6,17.28,10.6,11.52,19.66,11.52,21,19.99,21,19.99,19.46,14.09,19.46"/>
-
<path d="M29,19.44c-0.471,0.157-1.142,0.236-2.01,0.236-1.004,0-1.764-0.409-2.275-1.226-0.514-0.817-0.77-1.991-0.77-3.522,0-1.429,0.258-2.541,0.774-3.338,0.516-0.796,1.272-1.194,2.271-1.194,0.772,0,1.416,0.082,1.928,0.246v-1.494c-0.725-0.17-1.397-0.256-2.02-0.256-1.702,0-2.999,0.521-3.892,1.563-0.892,1.043-1.338,2.518-1.338,4.425,0,2.044,0.41,3.601,1.23,4.671,0.82,1.069,2.051,1.604,3.691,1.604,0.175,0,0.332-0.022,0.501-0.03-0.234,0.652-0.441,1.331-0.612,1.866h-1.48v1h2v-0.001h1c0.088,0.04,0.368-1.64,0.73-3.089,0.087-0.021,0.183-0.029,0.268-0.054v-1.409z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_activitystream.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_activitystream.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M10.37,17.18c-0.731-0.662-1.288-1.417-1.714-2.314-1.002-2.12-0.705-5.979-0.611-6.944,0.072-2.494,2.419-4.848,4.767-5.638-0.98-1.273-2.62-2.288-3.874-2.288h-1.214c-1.915,0-4.342,2.367-4.342,4.388,0,0-0.29,4.066,0.575,6.022,0.475,1.067,0.918,1.963,1.889,2.645,0.003,0.14,0.012,0.733,0.003,0.87-0.118,1.98-5.847,4.35-5.847,4.35v5.72h4v-1.927l0.407-0.536c0.296-0.391,0.623-0.597,1.705-1.277,2.241-1.4,3.669-2.44,4.258-3.07z"/>
-
<path d="M19.52,14.01c0.908-1.782,0.423-5.978,0.423-5.978,0-1.858-2.47-4.034-4.35-4.034h-1.191c-1.88,0-4.354,2.176-4.354,4.034,0,0-0.431,4.175,0.419,5.972,0.467,0.982,1.139,1.708,2.092,2.334,0.003,0.128,0.01,0.794,0.002,0.921-0.006,0.087-0.037,0.179-0.068,0.271h3.143c0.659-1.187,1.783-2.071,3.138-2.391,0.29-0.33,0.53-0.7,0.75-1.12z"/>
-
<path d="M21.94,7.903c0.108,0.996,0.446,4.888-0.639,7.017-0.015,0.028-0.035,0.052-0.05,0.08h3.439c-0.311-0.36-0.514-0.724-0.534-1.075-0.009-0.146,0-0.75,0.003-0.896,0.947-0.685,1.361-1.57,1.861-2.618,0.926-1.938,0.587-6.022,0.587-6.022,0-2.011-2.43-4.378-4.34-4.378h-1.214c-1.253,0-2.889,1.016-3.874,2.282,2.33,0.791,4.67,3.135,4.75,5.621z"/>
-
<path d="M15,24.82l-2.916-6.596c-1.45,1.83-5.827,4.19-6.08,4.53v5.25h9.09c-0.05-0.29-0.09-0.58-0.09-0.89v-2.294z"/>
-
<path d="M27.11,17h-7.223c-1.6,0-2.89,1.29-2.89,2.89v7.221c0,1.596,1.294,2.89,2.889,2.89h7.223c1.6,0,2.89-1.29,2.89-2.89v-7.22c0-1.6-1.29-2.89-2.89-2.89zm-7.3,11.56c-0.752,0-1.361-0.608-1.361-1.359s0.609-1.36,1.361-1.36,1.363,0.609,1.363,1.36-0.61,1.36-1.36,1.36zm5.29,0h-1.93c0.002-0.08,0.012-0.159,0.012-0.241,0-2.48-2.021-4.5-4.506-4.5-0.078,0-0.154,0.008-0.23,0.012v-1.928c0.076-0.002,0.152-0.012,0.23-0.012,3.549,0,6.438,2.884,6.438,6.428,0,0.08-0.01,0.16-0.01,0.24zm3.44,0h-1.93c0.003-0.082,0.013-0.164,0.013-0.245,0-4.377-3.564-7.937-7.947-7.937-0.078,0-0.154,0.009-0.23,0.012v-1.929c0.078-0.001,0.152-0.011,0.23-0.011,5.448,0,9.879,4.424,9.879,9.864,0.01,0.08-0.01,0.16-0.01,0.25z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_account.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
-</g>
-<polygon points="9.49,8.148 17.801,10.801 19.199,8 13.601,6.601 "/>
-<path d="M26.276,13.787c-0.674-1.237-1.272-2.938-1.272-2.938l-1.788-0.328L21.608,9.9l0.913,1.239l0.656-0.291
- c0,0,0.804,0.767,0.766,1.021c-0.023,0.18-0.61,0.795-0.967,1.155C24.143,13.082,25.256,13.344,26.276,13.787z"/>
-<path d="M11.898,20.631c0-0.656,0.365-1.461,0.365-1.461c0.072-0.948-0.95-3.501-0.95-3.501h-1.058l-0.367-0.806
- c-3.43,0.729-3.575-0.146-4.088-1.096c-0.51-0.95,0.075-3.503,0.403-3.906c0.328-0.4,2.885-2.153,2.885-2.153L8.76,7.233
- C8.538,6.758,9.964,6.102,9.964,6.102c0.548,0.367,0.912,0,0.912,0l0.146-0.366l-0.146-0.546l1.132-1.405l1.082-0.25
- c0.624-0.103,1.259-0.171,1.911-0.171c1.384,0,2.705,0.255,3.936,0.7l-1.136,1.136l1.398,1.401l1.401-1.401l-0.772-0.771
- c3.694,1.698,6.348,5.271,6.739,9.499c0.886,0.422,1.694,0.975,2.404,1.637C28.979,15.376,29,15.19,29,15c0-7.733-6.267-14-14-14
- S1,7.267,1,15s6.267,14,14,14c0.19,0,0.376-0.021,0.564-0.028c-1.408-1.509-2.334-3.47-2.522-5.644
- C12.803,22.758,11.898,21.202,11.898,20.631z M5.199,22l-1.398-4.199l1.986-0.393l1.401,2.801L5.199,22z"/>
-<path d="M19.979,13.35c0.332-0.091,0.67-0.163,1.016-0.219l-0.736-0.605l-1.06-0.874l0.656,1.569L19.979,13.35z"/>
-<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28
- c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
-<polygon points="24,21 24,18 21,18 21,21 18,21 18,24 21,24 21,27 24,27 24,24 27,24 27,21 "/>
-</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_contact.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_contact.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M8.648,14.904c0.002,0.148,0.014,0.419,0.004,0.566c-0.007,0.102-0.043,0.209-0.08,0.317h5.857
- c-0.037-0.108-0.072-0.216-0.079-0.317c-0.011-0.157,0-0.437,0.003-0.596c1.086-0.732,2.027-1.654,2.6-2.776
- c1.061-2.08,0.672-7.392,0.672-7.392C17.625,2.538,14.383,0,12.189,0h-1.391C8.605,0,5.375,2.538,5.375,4.707
- c0,0-0.332,5.294,0.658,7.392C6.577,13.243,7.536,14.175,8.648,14.904z"/>
-<path d="M13,22.5c0-0.768,0.102-1.51,0.273-2.225L11.5,24.286l-3.401-7.694C6.402,18.725,1.295,21.482,1,21.87V28h13.769
- C13.66,26.446,13,24.551,13,22.5z"/>
-<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28
- c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
+<path d="M8.648,14.904c0.002,0.148,0.014,0.419,0.004,0.566c-0.007,0.102-0.043,0.209-0.08,0.317h5.857 c-0.037-0.108-0.072-0.216-0.079-0.317c-0.011-0.157,0-0.437,0.003-0.596c1.086-0.732,2.027-1.654,2.6-2.776 c1.061-2.08,0.672-7.392,0.672-7.392C17.625,2.538,14.383,0,12.189,0h-1.391C8.605,0,5.375,2.538,5.375,4.707 c0,0-0.332,5.294,0.658,7.392C6.577,13.243,7.536,14.175,8.648,14.904z"/>
+<path d="M13,22.5c0-0.768,0.102-1.51,0.273-2.225L11.5,24.286l-3.401-7.694C6.402,18.725,1.295,21.482,1,21.87V28h13.769 C13.66,26.446,13,24.551,13,22.5z"/>
+<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28 c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
<polygon points="24,21 24,18 21,18 21,21 18,21 18,24 21,24 21,27 24,27 24,24 27,24 27,21 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_field.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
-</g>
-<rect x="2" y="2" width="26" height="7"/>
-<path d="M28,13.828V11h-3.656c0.512,0,1.023,0.195,1.414,0.586L28,13.828z"/>
-<path d="M18.515,16H4v-3h17.515l1.414-1.414C23.319,11.195,23.831,11,24.344,11H2v7h14.515L18.515,16z"/>
-<path d="M24.343,13L13.736,23.606l-0.707,6.364l6.364-0.707L30,18.657L24.343,13z M18.687,27.142l-2.828-2.828l8.484-8.485
- l2.829,2.829L18.687,27.142z"/>
-</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_calendar.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_calendar.svg Thu May 27 13:10:59 2010 +0300
@@ -1,27 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M18.881,18.278c-1.127,0.918-1.888,1.747-2.285,2.485C16.199,21.499,16,22.26,16,23.042V24h7v-1.035h-4.652
- c0.029-0.588,0.141-1.068,0.308-1.378c0.165-0.308,0.396-0.613,0.687-0.911c0.295-0.3,0.761-0.712,1.4-1.237
- c0.582-0.478,1.019-0.882,1.314-1.215c0.296-0.335,0.519-0.69,0.672-1.07c0.15-0.38,0.226-0.798,0.226-1.256
- c0-0.953-0.306-1.673-0.915-2.164C21.428,13.245,20.531,13,19.35,13c-0.963,0-1.953,0.149-2.971,0.445v1.481
- c0.928-0.329,1.71-0.496,2.346-0.496c1.142,0,1.714,0.52,1.714,1.555c0,0.399-0.111,0.759-0.332,1.076
- C19.885,17.381,19.477,17.786,18.881,18.278z"/>
-<path d="M23,3V1h-3v2h-4.137c0.496,0.919,0.836,1.932,1.006,3H26v3h-9.131c-0.11,0.694-0.293,1.364-0.546,2H26v16H6V16.87
- c-1.068-0.171-2.081-0.51-3-1.007V30h26V3H23z"/>
+<path d="M18.881,18.278c-1.127,0.918-1.888,1.747-2.285,2.485C16.199,21.499,16,22.26,16,23.042V24h7v-1.035h-4.652 c0.029-0.588,0.141-1.068,0.308-1.378c0.165-0.308,0.396-0.613,0.687-0.911c0.295-0.3,0.761-0.712,1.4-1.237 c0.582-0.478,1.019-0.882,1.314-1.215c0.296-0.335,0.519-0.69,0.672-1.07c0.15-0.38,0.226-0.798,0.226-1.256 c0-0.953-0.306-1.673-0.915-2.164C21.428,13.245,20.531,13,19.35,13c-0.963,0-1.953,0.149-2.971,0.445v1.481 c0.928-0.329,1.71-0.496,2.346-0.496c1.142,0,1.714,0.52,1.714,1.555c0,0.399-0.111,0.759-0.332,1.076 C19.885,17.381,19.477,17.786,18.881,18.278z"/>
+<path d="M23,3V1h-3v2h-4.137c0.496,0.919,0.836,1.932,1.006,3H26v3h-9.131c-0.11,0.694-0.293,1.364-0.546,2H26v16H6V16.87 c-1.068-0.171-2.081-0.51-3-1.007V30h26V3H23z"/>
<path d="M11,16.323V23H9v1h6v-1h-1.563v-8.096C12.706,15.492,11.885,15.971,11,16.323z"/>
-<path d="M15,7.5C15,3.364,11.636,0,7.5,0S0,3.364,0,7.5S3.364,15,7.5,15S15,11.636,15,7.5z M13,7.5c0,2.857-2.192,5.212-4.982,5.474
- L12,7H8.973C8.788,4.948,7.568,3.19,5.838,2.258C6.363,2.091,6.921,2,7.5,2C10.533,2,13,4.468,13,7.5z M2,7.5
- c0-1.521,0.621-2.898,1.622-3.896C5.353,3.878,6.706,5.257,6.945,7H4l3.983,5.976C7.824,12.989,7.663,13,7.5,13
- C4.467,13,2,10.532,2,7.5z"/>
+<path d="M15,7.5C15,3.364,11.636,0,7.5,0S0,3.364,0,7.5S3.364,15,7.5,15S15,11.636,15,7.5z M13,7.5c0,2.857-2.192,5.212-4.982,5.474 L12,7H8.973C8.788,4.948,7.568,3.19,5.838,2.258C6.363,2.091,6.921,2,7.5,2C10.533,2,13,4.468,13,7.5z M2,7.5 c0-1.521,0.621-2.898,1.622-3.896C5.353,3.878,6.706,5.257,6.945,7H4l3.983,5.976C7.824,12.989,7.663,13,7.5,13 C4.467,13,2,10.532,2,7.5z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_contact.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_contact.svg Thu May 27 13:10:59 2010 +0300
@@ -1,24 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<path d="M22,19.5c-0.169-0.222-3.088-1.801-4.056-3.02L16,21l-1.943-4.521c-0.968,1.22-3.888,2.797-4.057,3.019V23h12V19.5z"/>
-<path d="M19.294,9.689c0-1.053-1.188-2.249-2.314-2.588C16.985,7.234,17,7.365,17,7.5c0,2.868-1.283,5.438-3.299,7.181
- c0.198,0.195,0.415,0.378,0.67,0.546c0.002,0.086,0.007,0.53,0.001,0.614c-0.004,0.058-0.024,0.12-0.046,0.183
- c0-0.001,0.001-0.002,0.001-0.002h3.347c0,0,0,0.001,0.001,0.001c-0.021-0.062-0.042-0.124-0.046-0.182
- c-0.007-0.09,0-0.523,0.001-0.614c0.621-0.418,1.056-0.91,1.382-1.553C19.618,12.487,19.294,9.689,19.294,9.689z"/>
-<path d="M15.231,2c0.641,0.897,1.125,1.909,1.424,3H24v20H8v-8.025C7.833,16.983,7.669,17,7.5,17c-0.866,0-1.702-0.127-2.5-0.345V19
- H3v2h2v3H3v2h2v2h22V2H15.231z"/>
-<path d="M7.5,0C3.364,0,0,3.364,0,7.5S3.364,15,7.5,15S15,11.636,15,7.5S11.636,0,7.5,0z M2,7.5c0-1.521,0.62-2.898,1.621-3.896
- C5.353,3.878,6.706,5.257,6.945,7H4l3.983,5.976C7.824,12.989,7.663,13,7.5,13C4.467,13,2,10.532,2,7.5z M8.018,12.974L12,7H8.973
- C8.788,4.948,7.568,3.19,5.838,2.258C6.363,2.091,6.921,2,7.5,2C10.533,2,13,4.468,13,7.5C13,10.357,10.809,12.712,8.018,12.974z"/>
+<path d="M19.294,9.689c0-1.053-1.188-2.249-2.314-2.588C16.985,7.234,17,7.365,17,7.5c0,2.868-1.283,5.438-3.299,7.181 c0.198,0.195,0.415,0.378,0.67,0.546c0.002,0.086,0.007,0.53,0.001,0.614c-0.004,0.058-0.024,0.12-0.046,0.183 c0-0.001,0.001-0.002,0.001-0.002h3.347c0,0,0,0.001,0.001,0.001c-0.021-0.062-0.042-0.124-0.046-0.182 c-0.007-0.09,0-0.523,0.001-0.614c0.621-0.418,1.056-0.91,1.382-1.553C19.618,12.487,19.294,9.689,19.294,9.689z"/>
+<path d="M15.231,2c0.641,0.897,1.125,1.909,1.424,3H24v20H8v-8.025C7.833,16.983,7.669,17,7.5,17c-0.866,0-1.702-0.127-2.5-0.345V19 H3v2h2v3H3v2h2v2h22V2H15.231z"/>
+<path d="M7.5,0C3.364,0,0,3.364,0,7.5S3.364,15,7.5,15S15,11.636,15,7.5S11.636,0,7.5,0z M2,7.5c0-1.521,0.62-2.898,1.621-3.896 C5.353,3.878,6.706,5.257,6.945,7H4l3.983,5.976C7.824,12.989,7.663,13,7.5,13C4.467,13,2,10.532,2,7.5z M8.018,12.974L12,7H8.973 C8.788,4.948,7.568,3.19,5.838,2.258C6.363,2.091,6.921,2,7.5,2C10.533,2,13,4.468,13,7.5C13,10.357,10.809,12.712,8.018,12.974z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_favourites.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_favourites.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,9 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M29,13l-8.982-1.1l-3.212-6.315C16.934,6.204,17,6.844,17,7.5c0,5.238-4.262,9.5-9.5,9.5c-0.137,0-0.27-0.015-0.405-0.021
- L9.5,19.316L8,28l8-4.1l8,4.1l-1.5-8.684L29,13z"/>
-<path d="M15,7.5C15,3.364,11.636,0,7.5,0S0,3.364,0,7.5S3.364,15,7.5,15S15,11.636,15,7.5z M13,7.5c0,2.857-2.191,5.212-4.982,5.474
- L12,7H8.973C8.787,4.948,7.568,3.19,5.838,2.258C6.363,2.092,6.921,2,7.5,2C10.533,2,13,4.468,13,7.5z M2,7.5
- c0-1.521,0.621-2.898,1.621-3.896C5.354,3.878,6.706,5.258,6.945,7H4l3.983,5.976C7.824,12.989,7.663,13,7.5,13
- C4.467,13,2,10.532,2,7.5z"/>
+<path d="M29,13l-8.982-1.1l-3.212-6.315C16.934,6.204,17,6.844,17,7.5c0,5.238-4.262,9.5-9.5,9.5c-0.137,0-0.27-0.015-0.405-0.021 L9.5,19.316L8,28l8-4.1l8,4.1l-1.5-8.684L29,13z"/>
+<path d="M15,7.5C15,3.364,11.636,0,7.5,0S0,3.364,0,7.5S3.364,15,7.5,15S15,11.636,15,7.5z M13,7.5c0,2.857-2.191,5.212-4.982,5.474 L12,7H8.973C8.787,4.948,7.568,3.19,5.838,2.258C6.363,2.092,6.921,2,7.5,2C10.533,2,13,4.468,13,7.5z M2,7.5 c0-1.521,0.621-2.898,1.621-3.896C5.354,3.878,6.706,5.258,6.945,7H4l3.983,5.976C7.824,12.989,7.663,13,7.5,13 C4.467,13,2,10.532,2,7.5z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_groups.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
-</g>
-<path d="M24.155,15.925c-0.009-0.146,0-0.75,0.003-0.896c0.947-0.685,1.361-1.57,1.861-2.618c0.926-1.938,0.587-6.022,0.587-6.022
- C26.606,4.367,24.183,2,22.269,2h-1.214c-1.252,0-2.888,1.014-3.872,2.279c2.331,0.78,4.674,3.089,4.756,5.625
- c0.119,1.085,0.433,4.913-0.639,7.016c-0.443,0.869-0.993,1.603-1.683,2.243c0.58,0.635,2.017,1.678,4.27,3.099
- c1.084,0.683,1.412,0.889,1.708,1.28l0.304,0.402C25.965,24.031,26,24.137,26,24.246V26h4v-5.72
- C30,20.28,24.273,17.909,24.155,15.925z"/>
-<path d="M17.916,20.221L15,26.816l-2.915-6.596C10.631,22.049,6.253,24.413,6,24.746V30h18v-5.25
- C23.747,24.416,19.369,22.05,17.916,20.221z"/>
-<path d="M19.518,16.012c0.908-1.782,0.423-5.978,0.423-5.978c0-1.439-1.482-3.064-3.023-3.727C16.966,6.699,17,7.096,17,7.5
- c0,4.112-2.632,7.612-6.295,8.932c0.45,0.768,1.045,1.379,1.852,1.908c0.003,0.128,0.01,0.794,0.002,0.921
- c-0.006,0.087-0.036,0.179-0.068,0.271h5.021c-0.031-0.093-0.062-0.185-0.067-0.271c-0.009-0.135-0.001-0.784,0.001-0.921
- C18.375,17.712,19.027,16.975,19.518,16.012z"/>
-<path d="M10.372,19.177c-0.711-0.645-1.262-1.385-1.685-2.259C8.298,16.967,7.903,17,7.5,17c-0.691,0-1.365-0.079-2.015-0.22
- C4.217,18.53,0,20.276,0,20.276V26h4v-1.759c0-0.109,0.036-0.216,0.103-0.303l0.306-0.401c0.297-0.394,0.623-0.599,1.703-1.277
- C8.348,20.852,9.781,19.814,10.372,19.177z"/>
-<path d="M7.5,15c4.136,0,7.5-3.364,7.5-7.5S11.636,0,7.5,0S0,3.364,0,7.5S3.364,15,7.5,15z M13,7.5c0,2.857-2.191,5.212-4.982,5.474
- L12,7H8.973C8.788,4.948,7.568,3.19,5.838,2.258C6.363,2.091,6.921,2,7.5,2C10.533,2,13,4.468,13,7.5z M3.621,3.604
- C5.353,3.878,6.706,5.257,6.945,7H4l3.983,5.976C7.824,12.989,7.663,13,7.5,13C4.467,13,2,10.532,2,7.5
- C2,5.979,2.62,4.602,3.621,3.604z"/>
-</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_homescreen.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_homescreen.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,9 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M24,1h-9.591c0.565,0.601,1.06,1.269,1.454,2H25v18H11v-4.677c-0.636,0.253-1.306,0.436-2,0.547V26c0,1.65,1.35,3,3,3h12
- c1.65,0,3-1.35,3-3V4C27,2.35,25.65,1,24,1z M14,26h-3v-2h3V26z M18,27c-1.104,0-2-0.896-2-2s0.896-2,2-2c1.105,0,2,0.896,2,2
- S19.105,27,18,27z M25,26h-3v-2h3V26z"/>
-<path d="M15,7.5C15,3.364,11.636,0,7.5,0S0,3.364,0,7.5S3.364,15,7.5,15S15,11.636,15,7.5z M2,7.5c0-1.521,0.621-2.898,1.621-3.896
- C5.354,3.878,6.706,5.257,6.945,7H4l3.983,5.976C7.824,12.989,7.663,13,7.5,13C4.467,13,2,10.532,2,7.5z M8.018,12.974L12,7H8.973
- C8.787,4.948,7.568,3.19,5.838,2.258C6.363,2.091,6.921,2,7.5,2C10.533,2,13,4.468,13,7.5C13,10.357,10.809,12.712,8.018,12.974z"/>
+<path d="M24,1h-9.591c0.565,0.601,1.06,1.269,1.454,2H25v18H11v-4.677c-0.636,0.253-1.306,0.436-2,0.547V26c0,1.65,1.35,3,3,3h12 c1.65,0,3-1.35,3-3V4C27,2.35,25.65,1,24,1z M14,26h-3v-2h3V26z M18,27c-1.104,0-2-0.896-2-2s0.896-2,2-2c1.105,0,2,0.896,2,2 S19.105,27,18,27z M25,26h-3v-2h3V26z"/>
+<path d="M15,7.5C15,3.364,11.636,0,7.5,0S0,3.364,0,7.5S3.364,15,7.5,15S15,11.636,15,7.5z M2,7.5c0-1.521,0.621-2.898,1.621-3.896 C5.354,3.878,6.706,5.257,6.945,7H4l3.983,5.976C7.824,12.989,7.663,13,7.5,13C4.467,13,2,10.532,2,7.5z M8.018,12.974L12,7H8.973 C8.787,4.948,7.568,3.19,5.838,2.258C6.363,2.091,6.921,2,7.5,2C10.533,2,13,4.468,13,7.5C13,10.357,10.809,12.712,8.018,12.974z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_phonebook.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
-<path d="M0,0v30h30v-30h-30zm28.24,26.99l-6.012-6.012-0.454,2.042,5.218,5.219h-24.37l5.535-5.534-0.454-2.042-5.942,5.941v-23.6l9.352,9.352h2.119v-0.377l-2.467-2.467c-0.202-0.056-0.401-0.12-0.594-0.202-2.479-1.04-3.137-2.756-3.311-3.69l-3.856-3.856h23.59l-3.413,3.413c-0.041,0.684-0.408,2.89-3.363,4.141-0.348,0.147-0.714,0.25-1.093,0.315l-1.968,1.968v0.763h1.732l9.738-9.738v24.36z" fill-opacity="0.5" stroke-opacity="0.5"/>
-
-<rect height="3.519" width="17.65" x="6.177" y="13.25"/>
-
-<polygon points="9.706,25.59,20.29,25.59,22.06,17.65,7.941,17.65"/>
-
-<path d="M10.52,8.506c1.35,0.571,2.732,0.287,3.599-0.017v3.875h1.766v-3.871c0.866,0.304,2.249,0.588,3.599,0.017,2.926-1.238,2.831-3.499,2.831-3.499s-1.41-1.298-4.335-0.06c-2.645,1.12-2.94,2.791-2.973,3.101h-0.01c-0.032-0.31-0.328-1.98-2.973-3.101-2.925-1.238-4.335,0.06-4.335,0.06s-0.102,2.261,2.825,3.499z"/>
-
-</svg>
\ No newline at end of file
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_video_collection.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_video_collection.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M19,13v-2h-2.677c-0.284,0.714-0.651,1.383-1.092,2h1.77v1h-2v-0.69c-0.875,1.127-1.995,2.049-3.283,2.69h3.28v3h-5v-2.345c-0.643,0.176-1.312,0.283-2,0.319v2.02h-2v2h2v1h-2v2h13v-2h-1v-1h1v-2h-2v-3h2v-2h-1v-1h1zm-8,9h-2v-1h2v1zm3,0h-2v-1h2v1zm3,0h-2v-1h2v1z"/>
-
<path d="M16.87,6c0.08,0.49,0.13,0.988,0.13,1.5s-0.05,1.01-0.13,1.5h4.13v17h-17v-9.677c-1.121-0.446-2.135-1.1-3-1.914v14.59h23v-23h-7.131z"/>
-
<path d="M14.41,1c0.813,0.865,1.468,1.879,1.914,3h9.68v20h3v-23h-14.59z"/>
-
<path d="M7.5,0c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5,7.5-3.36,7.5-7.5-3.36-7.5-7.5-7.5zm-5.5,7.5c0-1.521,0.621-2.898,1.621-3.896,1.733,0.274,3.085,1.653,3.324,3.396h-2.945l3.983,5.976c-0.159,0.01-0.32,0.02-0.483,0.02-3.033,0-5.5-2.47-5.5-5.5zm6.018,5.47l3.982-5.97h-3.027c-0.186-2.052-1.405-3.81-3.135-4.742,0.525-0.167,1.083-0.258,1.662-0.258,3.03,0,5.5,2.468,5.5,5.5,0,2.86-2.19,5.21-4.982,5.47z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_addcity.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_addcity.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,12 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<rect fill="none" width="30" height="30"/>
-<rect x="5" y="5" width="4" height="3"/>
-<rect x="5" y="10" width="4" height="3"/>
-<rect x="5" y="15" width="4" height="3"/>
-<path d="M13.025,23H3V3h11v2h-3v3h3v2h-3v3h3v2h-3v3h3v0.283c0.877-1.76,2.274-3.215,4-4.146V14h0.283c1.272-0.634,2.701-1,4.217-1
- c1.627,0,3.16,0.412,4.5,1.137V11H17V0H0v26h13.677C13.304,25.063,13.08,24.055,13.025,23z"/>
-<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28
- c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
-<rect x="18" y="21" width="9" height="3"/>
-<rect x="21" y="18" width="3" height="9"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
+<rect height="3" width="4" x="5" y="5"/>
+<rect height="3" width="4" x="5" y="10"/>
+<rect height="3" width="4" x="5" y="15"/>
+<path d="M13.025,23H3V3h11v2h-3v3h3v2h-3v3h3v2h-3v3h3v0.283c0.877-1.76,2.274-3.215,4-4.146V14h0.283c1.272-0.634,2.701-1,4.217-1 c1.627,0,3.16,0.412,4.5,1.137V11H17V0H0v26h13.677C13.304,25.063,13.08,24.055,13.025,23z"/>
+<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28 c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
+<rect height="3" width="9" x="18" y="21"/>
+<rect height="9" width="3" x="21" y="18"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alarm.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alarm.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<path d="M23.09,4.084l0.707-0.707c0.779-0.777,2.053-0.777,2.83,0,0.777,0.778,0.777,2.051,0,2.828l-0.707,0.708-2.83-2.829z"/>
-
<path d="M25.21,4.791c-3.891-3.89-10.25-3.89-14.14,0l-4.247,4.243c-1.913-0.685-2.636-0.192-3.514,0.686l-1.436,1.435,16.97,16.97,1.438-1.438c0.879-0.877,1.371-1.602,0.686-3.514l4.244-4.244c3.89-3.9,3.89-10.26,0-14.15z"/>
-
<path d="M12.47,23.87c-1.675,0.432-3.569-0.033-4.935-1.396-1.363-1.365-1.83-3.262-1.399-4.938l6.334,6.34z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alarm_inactive.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alarm_inactive.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<rect fill="none" width="30" height="30"/>
-<path d="M22.213,3.21l0.707-0.707c0.779-0.777,2.053-0.777,2.83,0c0.777,0.778,0.777,2.051,0,2.828l-0.707,0.708L22.213,3.21z"/>
-<path d="M11.593,22.994c-1.675,0.431-3.569-0.033-4.935-1.397c-1.363-1.364-1.83-3.262-1.399-4.937L11.593,22.994z"/>
-<path d="M22.5,13c1.539,0,2.989,0.376,4.276,1.028c1.092-3.451,0.283-7.387-2.44-10.111c-3.891-3.89-10.254-3.89-14.143,0L5.95,8.16
- C4.037,7.475,3.313,7.968,2.436,8.846L1,10.281l12.011,12.011C13.123,17.15,17.332,13,22.5,13z"/>
-<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28
- c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
-<rect x="18" y="20.999" transform="matrix(0.7071 0.7071 -0.7071 0.7071 22.4997 -9.3199)" width="8.999" height="3"/>
-<rect x="18" y="21" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -9.3199 22.4997)" width="8.999" height="3"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="29.999"/>
+<path d="M23.085,4.084l0.707-0.707c0.778-0.777,2.054-0.777,2.83,0c0.776,0.779,0.776,2.051,0,2.828l-0.707,0.709L23.085,4.084z"/>
+<path d="M12.467,23.869c-1.676,0.43-3.57-0.033-4.936-1.398c-1.363-1.363-1.83-3.262-1.398-4.936L12.467,23.869z"/>
+<path d="M4.652,8.801C4.137,8.952,3.74,9.289,3.309,9.721l-1.436,1.436l16.97,16.971l1.437-1.437c0.432-0.433,0.77-0.827,0.92-1.346 L4.652,8.801z"/>
+<path d="M24.146,19.996l1.063-1.063c3.889-3.89,3.889-10.252,0-14.144c-3.891-3.889-10.253-3.889-14.142,0l-1.063,1.063 L24.146,19.996z"/>
+<rect height="35.828" transform="matrix(-0.7061 0.7082 -0.7082 -0.7061 36.2137 14.9664)" width="1.867" x="14.067" y="-2.915"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alarm_new.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alarm_new.svg Thu May 27 13:10:59 2010 +0300
@@ -1,22 +1,13 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<path d="M22.213,3.21l0.707-0.707c0.779-0.777,2.053-0.777,2.83,0c0.777,0.778,0.777,2.051,0,2.828l-0.707,0.708L22.213,3.21z"/>
<path d="M11.593,22.994c-1.675,0.431-3.569-0.033-4.935-1.397c-1.363-1.364-1.83-3.262-1.399-4.937L11.593,22.994z"/>
-<path d="M22.5,13c1.539,0,2.989,0.376,4.276,1.028c1.092-3.451,0.283-7.387-2.44-10.111c-3.891-3.89-10.254-3.89-14.143,0L5.95,8.16
- C4.037,7.475,3.313,7.968,2.436,8.846L1,10.281l12.011,12.011C13.123,17.15,17.332,13,22.5,13z"/>
-<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28
- c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
-<rect x="18" y="21" width="9" height="3"/>
-<rect x="21" y="18" width="3" height="9"/>
+<path d="M22.5,13c1.539,0,2.989,0.376,4.276,1.028c1.092-3.451,0.283-7.387-2.44-10.111c-3.891-3.89-10.254-3.89-14.143,0L5.95,8.16 C4.037,7.475,3.313,7.968,2.436,8.846L1,10.281l12.011,12.011C13.123,17.15,17.332,13,22.5,13z"/>
+<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28 c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
+<rect height="3" width="9" x="18" y="21"/>
+<rect height="9" width="3" x="21" y="18"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alarm_snooze.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
-<rect fill="none" height="30" width="30"/>
-
-<path d="M22.21,3.211l0.707-0.707c0.779-0.777,2.054-0.777,2.83,0s0.776,2.051,0,2.828l-0.707,0.707-2.83-2.828z"/>
-
-<path d="M18.9,29v-1.805l6.233-9.879h-5.823v-2.02h9.551v1.771l-6.271,9.914h6.41v2.02h-10.1z"/>
-
-<path d="M9.701,21.1l-4.442-4.44c-0.431,1.676,0.036,3.572,1.399,4.938,0.865,0.863,1.943,1.365,3.043,1.508v-2.006z"/>
-
-<path d="M24.34,3.918c-3.892-3.891-10.25-3.891-14.14,0l-4.25,4.242c-1.913-0.685-2.637-0.191-3.514,0.686l-1.436,1.434,8.729,8.729h7.58v-5.709h9.664c0.77-3.26-0.1-6.849-2.63-9.382z"/>
-
-<path d="M11.46,29v-1.053l3.637-5.762h-3.398v-1.18h5.571v1.031l-3.657,5.783h3.739v1.18h-5.887z"/>
-
-</svg>
\ No newline at end of file
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alpha_mode.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alpha_mode.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M8.898,13h2.273l-3.217-11.65h-2.531l-3.359,11.65h1.953l0.688-2.563h3.523l0.671,2.56zm-3.89-3.875l1.469-5.789,1.43,5.789h-2.899z"/>
-
<path d="M18.96,12.18c0.651-0.547,0.977-1.367,0.977-2.461,0-1.567-0.742-2.521-2.227-2.859,1.292-0.458,1.938-1.354,1.938-2.688,0-0.938-0.278-1.642-0.836-2.113s-1.394-0.707-2.508-0.707h-3.891v11.65h3.617c1.3,0,2.28-0.27,2.93-0.82zm-4.4-9.516h1.281c0.542,0,0.949,0.144,1.223,0.43s0.41,0.714,0.41,1.281c0,0.667-0.149,1.153-0.449,1.461s-0.77,0.461-1.41,0.461h-1.055v-3.633zm0,9.026v-4.081h1.164c0.683,0,1.184,0.164,1.504,0.492s0.48,0.836,0.48,1.523c0,0.734-0.155,1.262-0.465,1.582s-0.812,0.48-1.504,0.48h-1.177z"/>
-
<path d="M25.95,2.57c0.484,0,1.034,0.091,1.648,0.273v-1.366c-0.62-0.167-1.237-0.25-1.852-0.25-1.505,0-2.634,0.485-3.387,1.457s-1.129,2.426-1.129,4.363c0,2.161,0.374,3.715,1.121,4.66s1.863,1.418,3.348,1.418c0.646,0,1.278-0.083,1.898-0.25v-1.328c-0.558,0.156-1.083,0.234-1.578,0.234-0.849,0-1.485-0.372-1.91-1.117s-0.637-1.972-0.637-3.68c0-1.469,0.206-2.571,0.617-3.309s1.03-1.101,1.86-1.101z"/>
-
<polygon points="17,18,21,18,21,22.93,12,22.93,12,18.93,5,23.97,12,29,12,25.93,24,25.93,24,16,17,16"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_app_exit.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_app_exit.svg Thu May 27 13:10:59 2010 +0300
@@ -1,11 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<rect fill="none" height="30" width="30"/>
-
<polygon points="12,6.75,12,3,3,9.75,12,16.5,12,10.5,22.5,10.5,22.5,20.25,17.25,20.25,17.25,24,26.25,24,26.25,6.75"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_applications_all.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_applications_all.svg Thu May 27 13:10:59 2010 +0300
@@ -1,18 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<path d="M16,3v11h11V3H16z M24,11h-5V6h5V11z"/>
<path d="M16,27h11V16H16V27z M19,19h5v5h-5V19z"/>
-<rect x="2" y="2" width="12" height="12"/>
+<rect height="12" width="12" x="2" y="2"/>
<path d="M3,27h11V16H3V27z M6,19h5v5H6V19z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_applications_collections.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_applications_collections.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,12 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<polygon points="5.999,1 5.999,4 26,4 26,24 29,24 29,1 "/>
<path d="M1,29h23V6H1V29z M4,9h17v17H4V9z"/>
-<rect x="6" y="11" width="6" height="6"/>
+<rect height="6" width="6" x="6" y="11"/>
<path d="M13,17h6v-6h-6V17z M15,13h2v2h-2V13z"/>
<path d="M6,24h6v-6H6V24z M8,20h2v2H8V20z"/>
<path d="M13,24h6v-6h-6V24z M15,20h2v2h-2V20z"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_arrow_down.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_arrow_down.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<polygon points="2,5 15,27 28,5 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_arrow_up.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_arrow_up.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<polygon points="2,25 15,3 28,25 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_artists.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_artists.svg Thu May 27 13:10:59 2010 +0300
@@ -1,22 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M8.648,14.904c0.002,0.148,0.014,0.419,0.004,0.566c-0.007,0.102-0.043,0.209-0.08,0.317h5.857l0.001,0.001
- c-0.037-0.108-0.073-0.217-0.08-0.318c-0.011-0.157,0-0.437,0.003-0.596c1.086-0.732,2.027-1.654,2.6-2.776
- c1.061-2.08,0.672-7.392,0.672-7.392C17.625,2.538,14.383,0,12.189,0h-1.391C8.605,0,5.375,2.538,5.375,4.707
- c0,0-0.332,5.294,0.658,7.392C6.577,13.243,7.536,14.175,8.648,14.904z"/>
-<path d="M21,22.021v-0.839c-1.642-1.041-4.826-2.992-6.097-4.591L11.5,24.286l-3.401-7.694C6.401,18.725,1.294,21.482,1,21.87V28
- h15.111C16.038,27.677,16,27.343,16,27C16,24.396,18.2,22.251,21,22.021z"/>
-<path d="M23,15v9.3c-0.456-0.187-0.961-0.3-1.5-0.3c-1.934,0-3.5,1.343-3.5,3c0,1.656,1.566,3,3.5,3s3.5-1.344,3.5-3v-7.333L29,21
- v-4L23,15z"/>
+<path d="M8.648,14.904c0.002,0.148,0.014,0.419,0.004,0.566c-0.007,0.102-0.043,0.209-0.08,0.317h5.857l0.001,0.001 c-0.037-0.108-0.073-0.217-0.08-0.318c-0.011-0.157,0-0.437,0.003-0.596c1.086-0.732,2.027-1.654,2.6-2.776 c1.061-2.08,0.672-7.392,0.672-7.392C17.625,2.538,14.383,0,12.189,0h-1.391C8.605,0,5.375,2.538,5.375,4.707 c0,0-0.332,5.294,0.658,7.392C6.577,13.243,7.536,14.175,8.648,14.904z"/>
+<path d="M21,22.021v-0.839c-1.642-1.041-4.826-2.992-6.097-4.591L11.5,24.286l-3.401-7.694C6.401,18.725,1.294,21.482,1,21.87V28 h15.111C16.038,27.677,16,27.343,16,27C16,24.396,18.2,22.251,21,22.021z"/>
+<path d="M23,15v9.3c-0.456-0.187-0.961-0.3-1.5-0.3c-1.934,0-3.5,1.343-3.5,3c0,1.656,1.566,3,3.5,3s3.5-1.344,3.5-3v-7.333L29,21 v-4L23,15z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_aspect_ratio_natural.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_aspect_ratio_natural.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M2,3v24h26v-24h-26zm23,21h-20v-18h20v18z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_aspect_ratio_stretched.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_aspect_ratio_stretched.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M2,3v24h26v-24h-26zm23,21h-20v-18h20v18z"/>
-
<path d="M19,12h-8v6h8v-6zm-2,4h-4v-2h4v2z"/>
-
<polygon points="15,7,12,10,18,10"/>
-
<polygon points="15,23,18,20,12,20"/>
-
<polygon points="21,12,21,18,24,15"/>
-
<polygon points="9,12,6,15,9,18"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_aspect_ratio_zoom.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_aspect_ratio_zoom.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M25,22.28v1.72h-4.914c-0.518,0.064-1.04,0.109-1.57,0.109-0.535,0-1.061-0.044-1.582-0.109h-4.455l-3,3h18.52v-7.275c-0.213,0.248-0.428,0.496-0.662,0.729-0.71,0.72-1.5,1.32-2.34,1.83z"/>
-
<path d="M5,6h2.348c0.539-1.081,1.244-2.093,2.107-3h-7.455v18.75l3-3.001v-12.75z"/>
-
<rect height="2" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 -15.0422 48.8201)" width="4.999" x="0.09" y="26.52"/>
-
<path d="M10.72,21.52l1.499-1.498c4.112,3.081,9.965,2.763,13.7-0.977,4.102-4.101,4.102-10.75,0-14.85-4.1-4.102-10.75-4.102-14.85,0-3.739,3.738-4.058,9.591-0.977,13.7l-1.49,1.5-0.707-0.707-4.949,4.95,3.535,3.535,4.95-4.95-0.71-0.69zm2.48-15.21c2.924-2.925,7.682-2.924,10.6,0s2.925,7.682,0,10.6c-2.924,2.925-7.683,2.924-10.6,0-2.93-2.91-2.93-7.674,0-10.6z"/>
-
<polygon points="17,16,20,16,20,13,23,13,23,10,20,10,20,7,17,7,17,10,14,10,14,13,17,13"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_attach.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_attach.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M11,1v19.5c0,2.205,1.794,4,4,4c2.205,0,4-1.795,4-4V8h-3v12.5c0,0.551-0.449,1-1,1s-1-0.449-1-1V4h7v18.5
- c0,2.481-2.019,4.5-4.5,4.5h-3C11.019,27,9,24.981,9,22.5V8H6v14.5c0,4.136,3.364,7.5,7.5,7.5h3c4.136,0,7.5-3.364,7.5-7.5V1H11z"/>
+<path d="M11,1v19.5c0,2.205,1.794,4,4,4c2.205,0,4-1.795,4-4V8h-3v12.5c0,0.551-0.449,1-1,1s-1-0.449-1-1V4h7v18.5 c0,2.481-2.019,4.5-4.5,4.5h-3C11.019,27,9,24.981,9,22.5V8H6v14.5c0,4.136,3.364,7.5,7.5,7.5h3c4.136,0,7.5-3.364,7.5-7.5V1H11z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_audio.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_audio.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M10,3v17.44c-0.751-0.28-1.599-0.44-2.5-0.44-3.037,0-5.5,1.79-5.5,4s2.463,4,5.5,4,5.5-1.791,5.5-4v-15h11v9.44c-0.75-0.28-1.6-0.44-2.5-0.44-3.037,0-5.5,1.791-5.5,4s2.463,4,5.5,4,5.5-1.791,5.5-4v-19h-17z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_autoflash.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_autoflash.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M11.25,29l-1.008-3.844h-5.279l-1.031,3.84h-2.93l5.039-17.47h3.797l4.824,17.47h-3.406zm-1.484-5.81l-2.145-8.684-2.203,8.684h4.348z"/>
-
<polygon points="24.13,21,28,9.999,19.36,10,22.54,1,17.24,1,13,13,21.64,13,18.83,21,14,21,21.5,29,29,21"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_automatic.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_automatic.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M17.28,20.82h2.273l-3.21-11.64h-2.532l-3.359,11.65h1.953l0.688-2.563h3.524l0.67,2.55zm-3.89-3.87l1.469-5.789,1.431,5.789h-2.899z"/>
-
<path d="M1,3v24h28v-24h-28zm25,21h-22v-18h22v18z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_back.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_back.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<polygon points="11,8 11,3 1,10 11,17 11,12 25,12 25,22 17,22 17,26 29,26 29,8 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_backspace1.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_backspace1.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<polygon points="28,13,10,13,10,9,1,15,10,21,10,17,28,17"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_backspace2.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_backspace2.svg Thu May 27 13:10:59 2010 +0300
@@ -1,11 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M12,5l-12,10,12,10h18v-20h-18zm15,17h-13.91l-8.4-7,8.4-7h13.91v14z"/>
-
<polygon points="15.81,20.31,19.34,16.78,22.88,20.31,25,18.19,21.46,14.66,25,11.12,22.88,9,19.34,12.54,15.81,9,13.69,11.12,17.22,14.66,13.69,18.19"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bluetooth.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bluetooth.svg Thu May 27 13:10:59 2010 +0300
@@ -1,11 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.133"/>
-
<path d="M22,9.767l-8.541-8.55v9.767l-3.671-3.66-1.677,1.681s3.792,3.794,5.344,5.342v0.612c-1.552,1.544-5.344,5.341-5.344,5.341l1.676,1.676,3.668-3.659v9.767l8.542-8.549s-3.717-3.717-4.883-4.88c1.16-1.18,4.88-4.883,4.88-4.883zm-3.36,9.763c-0.606,0.604-1.711,1.713-2.755,2.754v-5.502c1.05,1.05,2.2,2.19,2.76,2.75zm-2.74-7.02v-5.496c1.036,1.043,2.141,2.147,2.747,2.753-0.57,0.553-1.72,1.703-2.75,2.743z"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.133"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bluetooth_headset.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bluetooth_headset.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,12 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<path d="M1,17.5C1,19.985,2.791,22,5,22v-9C2.791,13,1,15.015,1,17.5z"/>
<path d="M29,17.5c0,2.485-1.791,4.5-4,4.5v-9C27.209,13,29,15.015,29,17.5z"/>
<polygon points="24,21.173 24,16.829 22,18.829 22,19.173 "/>
<path d="M15,5c3.379,0,6.206,2.406,6.858,5.595L24,13.094V12c0-4.971-4.029-9-9-9s-9,4.029-9,9v11h2V12C8,8.141,11.141,5,15,5z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M17,8v8.778l-3.736-3.666L12,14.446l5,4.555l-5,4.612l1.264,1.332l3.743-3.486
- L17,30l6-6.999l-4-4l4-4L17,8z M20.473,23.001l-1.998,2.5V21.28L20.473,23.001z M18.475,16.779v-4.223l1.998,2.444L18.475,16.779z"
- />
+<path d="M17,8v8.778l-3.736-3.666L12,14.446l5,4.555l-5,4.612l1.264,1.332l3.743-3.486 L17,30l6-6.999l-4-4l4-4L17,8z M20.473,23.001l-1.998,2.5V21.28L20.473,23.001z M18.475,16.779v-4.223l1.998,2.444L18.475,16.779z" fill-rule="evenodd"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bluetooth_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bluetooth_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,11 +1,7 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="31px" height="31px" viewBox="0 0 31 31" enable-background="new 0 0 31 31" xml:space="preserve">
-<path d="M15.87,7.11c1.071,1.078,2.212,2.219,2.839,2.845c-0.524,0.52-1.54,1.536-2.521,2.519l1.735,1.73
- c1.587-1.591,4.252-4.249,4.252-4.249L13.348,1.12v8.52l2.522,2.516V7.11z"/>
-<path d="M15.862,22.891v-4.349l-2.874-2.867c-1.762,1.756-5.163,5.162-5.163,5.162l1.732,1.731l3.79-3.781V28.88l6.427-6.434
- l-1.735-1.731C17.417,21.337,16.628,22.127,15.862,22.891z"/>
-<rect x="-2.414" y="14.566" transform="matrix(-0.7079 -0.7063 0.7063 -0.7079 15.5243 37.4201)" width="35.827" height="1.867"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="31px" version="1.1" viewBox="0 0 31 31" width="31px" x="0px" y="0px">
+<path d="M15.87,7.11c1.071,1.078,2.212,2.219,2.839,2.845c-0.524,0.52-1.54,1.536-2.521,2.519l1.735,1.73 c1.587-1.591,4.252-4.249,4.252-4.249L13.348,1.12v8.52l2.522,2.516V7.11z"/>
+<path d="M15.862,22.891v-4.349l-2.874-2.867c-1.762,1.756-5.163,5.162-5.163,5.162l1.732,1.731l3.79-3.781V28.88l6.427-6.434 l-1.735-1.731C17.417,21.337,16.628,22.127,15.862,22.891z"/>
+<rect height="1.867" transform="matrix(-0.7079 -0.7063 0.7063 -0.7079 15.5243 37.4201)" width="35.827" x="-2.414" y="14.566"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bold.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bold.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M15.08,27c2.705,0,4.755-0.568,6.148-1.706,1.396-1.138,2.093-2.823,2.093-5.055,0-1.696-0.392-3.015-1.175-3.96-0.783-0.944-1.947-1.589-3.493-1.931,2.792-0.967,4.186-2.812,4.186-5.538,0-1.48-0.336-2.664-1.005-3.549-0.672-0.885-1.542-1.484-2.609-1.795-1.07-0.312-2.45-0.468-4.15-0.468h-8.402v24h8.402zm-2.96-13.97v-6.923h1.981c1.319,0,2.199,0.286,2.639,0.861,0.44,0.574,0.66,1.371,0.66,2.391,0,1.179-0.246,2.087-0.74,2.72-0.493,0.633-1.502,0.949-3.026,0.949h-1.513zm0,10.86v-7.838h1.578c0.924,0,1.661,0.105,2.214,0.321,0.552,0.215,0.998,0.598,1.337,1.15,0.337,0.552,0.507,1.372,0.507,2.454,0,1.321-0.264,2.303-0.79,2.947-0.523,0.644-1.594,0.965-3.203,0.965h-1.653z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_add_new.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_add_new.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M13.914,18.463c0.347-0.736,0.777-1.424,1.294-2.041l-2.747-2.537L18,9l-8-8v10.282L5.563,6.986L4,8.549l5.543,5.336
- L4,19.286l1.563,1.562L10,16.554V27l3.113-3.113C13.046,23.433,13,22.973,13,22.5c0-0.79,0.107-1.554,0.29-2.288l-1.286,1.286
- v-4.944L13.914,18.463z M12.004,6.336l2.473,2.473l-2.473,2.474V6.336z"/>
-<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28
- c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
+<path d="M13.914,18.463c0.347-0.736,0.777-1.424,1.294-2.041l-2.747-2.537L18,9l-8-8v10.282L5.563,6.986L4,8.549l5.543,5.336 L4,19.286l1.563,1.562L10,16.554V27l3.113-3.113C13.046,23.433,13,22.973,13,22.5c0-0.79,0.107-1.554,0.29-2.288l-1.286,1.286 v-4.944L13.914,18.463z M12.004,6.336l2.473,2.473l-2.473,2.474V6.336z"/>
+<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28 c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
<polygon points="24,21 24,18 21,18 21,21 18,21 18,24 21,24 21,27 24,27 24,24 27,24 27,21 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_pair.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_pair.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M7,0v10.28l-4.437-4.294-1.563,1.563,5.543,5.336-5.543,5.41,1.563,1.562,4.437-4.3v10.45l8-8-5.539-5.115,5.539-4.88-8-8zm4.48,18.02l-2.473,2.473v-4.944l2.473,2.47zm-2.476-7.74v-4.944l2.473,2.473-2.476,2.471z" fill-rule="evenodd"/>
-
<path d="M20,4v10.28l-4.438-4.296-1.56,1.566,5.543,5.336-5.54,5.4,1.563,1.562,4.44-4.3v10.45l8-8-5.539-5.115,5.54-4.88-8-8zm4.48,18.02l-2.473,2.473v-4.944l2.47,2.47zm-2.48-7.74v-4.944l2.473,2.473-2.47,2.47z" fill-rule="evenodd"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_show_all.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_show_all.svg Thu May 27 13:10:59 2010 +0300
@@ -1,24 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M12,24.028c1.14-1.123,2.367-2.026,3.658-2.688L17,20l-3.561-3.071L17,14l-5-5
- v6.327l-2.996-2.645L8,13.645l3.563,3.284L8,20.253l1.004,0.961L12,18.57V24.028z M13.146,12.283l1.589,1.521l-1.589,1.522V12.283z
- M13.146,18.57l1.589,1.521l-1.589,1.522V18.57z"/>
-<path d="M10.428,28.235C9.914,27.583,9.889,26.7,10.3,26H5V8h15v12.065C20.332,20.035,20.665,20,21,20c0.673,0,1.339,0.083,2,0.203
- V5H2v24h9.086C10.865,28.748,10.641,28.506,10.428,28.235z"/>
+<path d="M12,24.028c1.14-1.123,2.367-2.026,3.658-2.688L17,20l-3.561-3.071L17,14l-5-5 v6.327l-2.996-2.645L8,13.645l3.563,3.284L8,20.253l1.004,0.961L12,18.57V24.028z M13.146,12.283l1.589,1.521l-1.589,1.522V12.283z M13.146,18.57l1.589,1.521l-1.589,1.522V18.57z" fill-rule="evenodd"/>
+<path d="M10.428,28.235C9.914,27.583,9.889,26.7,10.3,26H5V8h15v12.065C20.332,20.035,20.665,20,21,20c0.673,0,1.339,0.083,2,0.203 V5H2v24h9.086C10.865,28.748,10.641,28.506,10.428,28.235z"/>
<path d="M25,20.748c1.034,0.386,2.041,0.906,3,1.581V0H7v3h18V20.748z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M30,27c-2.454-3.123-5.586-5-9-5s-6.546,1.877-9,5h2.654
- c0.695-0.709,1.521-1.386,2.463-1.921C17.047,25.376,17,25.682,17,26c0,2.21,1.792,4,4,4s4-1.79,4-4
- c0-0.318-0.047-0.624-0.117-0.921c0.941,0.535,1.768,1.212,2.463,1.921H30z M21,28c-1.104,0-2-0.447-2-1s0.896-1,2-1s2,0.447,2,1
- S22.104,28,21,28z"/>
+<path d="M30,27c-2.454-3.123-5.586-5-9-5s-6.546,1.877-9,5h2.654 c0.695-0.709,1.521-1.386,2.463-1.921C17.047,25.376,17,25.682,17,26c0,2.21,1.792,4,4,4s4-1.79,4-4 c0-0.318-0.047-0.624-0.117-0.921c0.941,0.535,1.768,1.212,2.463,1.921H30z M21,28c-1.104,0-2-0.447-2-1s0.896-1,2-1s2,0.447,2,1 S22.104,28,21,28z" fill-rule="evenodd"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_show_pair.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_show_pair.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M7,0v10.282L2.563,5.986L1,7.549l5.543,5.336L1,18.286l1.563,1.562L7,15.554V26
- l8-8l-5.539-5.115L15,8L7,0z M11.477,18.025l-2.473,2.473v-4.944L11.477,18.025z M9.004,10.282V5.336l2.473,2.473L9.004,10.282z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M16.262,21.057c1.367-0.612,2.792-0.959,4.243-1.024L21,19.554V20
- c0.675,0,1.342,0.083,2.004,0.204v-0.65l0.811,0.811c1.595,0.411,3.129,1.183,4.563,2.259L29,22l-5.539-5.115L29,12l-8-8v10.282
- l-4.438-4.296L15,11.549l5.543,5.336L16.262,21.057z M23.004,9.336l2.473,2.473l-2.473,2.474V9.336z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M30,27c-2.454-3.123-5.586-5-9-5s-6.546,1.877-9,5h2.654
- c0.695-0.709,1.522-1.386,2.463-1.921C17.047,25.376,17,25.682,17,26c0,2.21,1.792,4,4,4s4-1.79,4-4
- c0-0.318-0.047-0.624-0.117-0.921c0.94,0.535,1.768,1.212,2.463,1.921H30z M21,28c-1.104,0-2-0.447-2-1s0.896-1,2-1s2,0.447,2,1
- S22.104,28,21,28z"/>
+<path d="M7,0v10.282L2.563,5.986L1,7.549l5.543,5.336L1,18.286l1.563,1.562L7,15.554V26 l8-8l-5.539-5.115L15,8L7,0z M11.477,18.025l-2.473,2.473v-4.944L11.477,18.025z M9.004,10.282V5.336l2.473,2.473L9.004,10.282z" fill-rule="evenodd"/>
+<path d="M16.262,21.057c1.367-0.612,2.792-0.959,4.243-1.024L21,19.554V20 c0.675,0,1.342,0.083,2.004,0.204v-0.65l0.811,0.811c1.595,0.411,3.129,1.183,4.563,2.259L29,22l-5.539-5.115L29,12l-8-8v10.282 l-4.438-4.296L15,11.549l5.543,5.336L16.262,21.057z M23.004,9.336l2.473,2.473l-2.473,2.474V9.336z" fill-rule="evenodd"/>
+<path d="M30,27c-2.454-3.123-5.586-5-9-5s-6.546,1.877-9,5h2.654 c0.695-0.709,1.522-1.386,2.463-1.921C17.047,25.376,17,25.682,17,26c0,2.21,1.792,4,4,4s4-1.79,4-4 c0-0.318-0.047-0.624-0.117-0.921c0.94,0.535,1.768,1.212,2.463,1.921H30z M21,28c-1.104,0-2-0.447-2-1s0.896-1,2-1s2,0.447,2,1 S22.104,28,21,28z" fill-rule="evenodd"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_unpair.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_unpair.svg Thu May 27 13:10:59 2010 +0300
@@ -1,24 +1,12 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M15,8L7,0v10.282L2.563,5.986L1,7.549l5.543,5.336L1,18.286l1.563,1.562L7,15.554V26l6.489-6.489
- c0.238-0.717,0.563-1.394,0.956-2.023l-4.984-4.603L15,8z M9.004,5.336l2.473,2.473l-2.473,2.474V5.336z M11.477,18.025
- l-2.473,2.473v-4.944L11.477,18.025z"/>
-<path d="M22.004,9.336l2.473,2.473l-1.229,1.229c0.99,0.077,1.939,0.305,2.822,0.664L28,12l-8-8v9.345
- c0.644-0.176,1.313-0.284,2.004-0.319V9.336z"/>
+<path d="M15,8L7,0v10.282L2.563,5.986L1,7.549l5.543,5.336L1,18.286l1.563,1.562L7,15.554V26l6.489-6.489 c0.238-0.717,0.563-1.394,0.956-2.023l-4.984-4.603L15,8z M9.004,5.336l2.473,2.473l-2.473,2.474V5.336z M11.477,18.025 l-2.473,2.473v-4.944L11.477,18.025z"/>
+<path d="M22.004,9.336l2.473,2.473l-1.229,1.229c0.99,0.077,1.939,0.305,2.822,0.664L28,12l-8-8v9.345 c0.644-0.176,1.313-0.284,2.004-0.319V9.336z"/>
<path d="M17.194,14.623c0.64-0.432,1.34-0.778,2.077-1.046l-3.709-3.591L14,11.549L17.194,14.623z"/>
-<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28
- c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
-<polygon points="26.742,20.378 24.621,18.257 22.5,20.378 20.379,18.257 18.257,20.378 20.379,22.5 18.257,24.621 20.379,26.742
- 22.5,24.621 24.621,26.742 26.742,24.621 24.621,22.5 "/>
+<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28 c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
+<polygon points="26.742,20.378 24.621,18.257 22.5,20.378 20.379,18.257 18.257,20.378 20.379,22.5 18.257,24.621 20.379,26.742 22.5,24.621 24.621,26.742 26.742,24.621 24.621,22.5 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bullet.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bullet.svg Thu May 27 13:10:59 2010 +0300
@@ -1,27 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<rect height="2" width="17" x="9" y="4"/>
-
<circle cx="5.5" cy="5" r="1.5"/>
-
<rect height="2" width="17" x="9" y="9"/>
-
<circle cx="5.5" cy="10" r="1.5"/>
-
<rect height="2" width="17" x="9" y="14"/>
-
<rect height="2" width="17" x="8.999" y="19"/>
-
<rect height="2" width="17" x="8.999" y="24"/>
-
<circle cx="5.5" cy="15" r="1.5"/>
-
<circle cx="5.5" cy="20" r="1.5"/>
-
<circle cx="5.5" cy="25" r="1.5"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M28.58,7.523l-7.359,4.248c-0.364,0.152-0.771,0.057-0.953-0.256l-1.277-2.142c-0.002,0.002-0.006,0.007-0.007,0.008-0.001-0.001,0-0.003-0.001-0.004-1.119,0.582-3.617,2.223-5.187,3.79-1.632,1.635-3.149,3.394-4.417,5.576,0,0-0.006,0.008-0.008,0.01,0.009,0.002,0.018,0.002,0.027,0.003l2.725,1.743c0.344,0.222,0.412,0.706,0.158,1.078l-4.794,7.05c-0.254,0.37-0.736,0.491-1.081,0.268,0,0-0.298-0.194-1.021-0.83h-0.003c-0.394-0.347-0.411-0.476-0.785-0.925-0.319-0.385-0.573-0.765-0.783-1.114-0.001-0.001-0.004,0-0.005-0.002-0.043-0.071-0.081-0.139-0.119-0.207-0.005-0.009-0.01-0.018-0.015-0.024-0.391-0.698-0.56-1.211-0.56-1.211-0.178-0.688-0.252-3.057,0.563-5.205,0.52-1.364,3.24-5.672,6.42-8.854,3.181-3.182,8.125-6.349,10.3-7.005,2.176-0.656,3.903-0.556,4.417-0.374,0,0,1.326,0.434,2.53,1.536,0.401,0.367,0.439,0.382,0.751,0.765,0.002,0.003,0,0.006,0.002,0.008-0.002-0.002-0.002-0.004-0.004-0.005,0.615,0.757,0.818,1.062,0.818,1.062,0.19,0.327,0.04,0.787-0.34,1.006z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_call_diverted.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_call_diverted.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<polygon points="28,8 19,8 22.086,11.086 17.171,16 2,16 2,19.95 18.879,19.95 18.879,19.849 18.93,19.899 24.914,13.914 28,17 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_camcoder_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_camcoder_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,12 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<polygon points="2,20 5,18 5,9 2,7 "/>
<polygon points="11.174,7.025 13.148,9 24.026,9 24.026,19.876 26,21.85 26,11.75 29,14 29,8 26,10.25 26,7.025 "/>
<polygon points="15.854,20 8,20 8,12.147 6.027,10.175 6.027,21.975 17.828,21.975 "/>
<polygon points="17.149,13 21.999,13 21.999,12 16.149,12 "/>
-<rect x="13.74" y="-3.242" transform="matrix(0.7063 -0.7079 0.7079 0.7063 -6.0767 14.6963)" width="1.868" height="35.827"/>
+<rect height="35.827" transform="matrix(0.7063 -0.7079 0.7079 0.7063 -6.0767 14.6963)" width="1.868" x="13.74" y="-3.242"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_camcorder.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_camcorder.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,9 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
<polygon points="29,14 25,11 29,8 "/>
<path d="M6.027,7.025v14.949H26V7.025H6.027z M24.026,20H8V9h16.026V20z"/>
<polygon points="5,9 2,7 2,20 5,18 "/>
-<rect x="10" y="12" width="11.999" height="1"/>
+<rect height="1" width="11.999" x="10" y="12"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_camera.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_camera.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<rect height="2" width="5" x="20" y="3.5"/>
-
<path d="M2,6.5v20h26v-20h-26zm23,17h-20v-14h20v14z"/>
-
<path d="M15.5,10.5c-3.314,0-6,2.686-6,6s2.686,6,6,6,6-2.686,6-6-2.69-6-6-6zm0,9c-1.656,0-3-1.344-3-3s1.344-3,3-3,3,1.344,3,3-1.34,3-3,3z"/>
-
<circle cx="7.688" cy="12.17" r="1.5"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_capture.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_capture.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<circle cx="6.688" cy="14.67" r="1.5"/>
-
<path d="M17.44,19.6c-0.28,1.37-1.49,2.4-2.94,2.4-1.657,0-3-1.344-3-3,0-1.657,1.343-3,3-3,0.891,0,1.682,0.396,2.231,1.012l0.311-3.44c-0.77-0.36-1.63-0.57-2.54-0.57-3.314,0-6,2.686-6,6,0,3.313,2.686,6,6,6s6-2.687,6-6c0-0.805-0.161-1.57-0.447-2.271l-2.61,2.87z"/>
-
<polygon points="24,12.64,24,26,4,26,4,12,17.18,12,17.38,9.798,16.51,9,1,9,1,29,27,29,27,12.9"/>
-
<polygon points="24.54,7.014,29,11.08,22.99,10.53,18.92,15,19.46,8.988,15,4.922,21.01,5.465,25.08,1"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_change_cam_mode.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_change_cam_mode.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<circle cx="4.665" cy="8.688" r="1"/>
-
<rect height="2" width="3.999" x="13" y="2"/>
-
<path d="M12,16v12h15v-12h-15zm13,10h-11v-8h11v8z"/>
-
<polygon points="29,19.37,29,21.08,27.52,20.22,26.04,19.37,27.52,18.51,29,17.66"/>
-
<path d="M7.396,14.34l3.281,1.894c0.109-0.018,0.216-0.033,0.322-0.059v-1.17h2.078c0.763-0.777,1.236-1.84,1.236-3.014,0-2.377-1.935-4.313-4.313-4.313s-4.313,1.936-4.313,4.313c0,1.396,0.677,2.627,1.708,3.415v-1.064zm2.604-4.666c1.275,0,2.313,1.039,2.313,2.313,0,1.275-1.038,2.313-2.313,2.313s-2.313-1.038-2.313-2.313c0.004-1.28,1.041-2.316,2.316-2.316z"/>
-
<polygon points="7.396,16.99,3,16.99,3,6.986,17,6.986,17,15,19,15,19,4.986,1,4.986,1,18.99,7.396,18.99"/>
-
<polygon points="10.99,17.57,8.396,16.07,8.396,20.87,8.396,25.67,10.99,24.17"/>
-
<rect height="1" width="8.999" x="15" y="19.01"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_ciphering_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_ciphering_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M13.52,17.666C13.2,18.021,13,18.485,13,19c0,0.738,0.404,1.376,1,1.723V22c0,0.553,0.447,1,1,1s1-0.447,1-1v-1.277
- c0.119-0.069,0.225-0.158,0.326-0.249L13.52,17.666z"/>
+<path d="M13.52,17.666C13.2,18.021,13,18.485,13,19c0,0.738,0.404,1.376,1,1.723V22c0,0.553,0.447,1,1,1s1-0.447,1-1v-1.277 c0.119-0.069,0.225-0.158,0.326-0.249L13.52,17.666z"/>
<polygon points="20.854,25 7,25 7,15 10.853,15 7,11.147 7,12 4,12 4,28 23.854,28 "/>
-<path d="M11.413,7.264C12.062,5.93,13.419,5,15,5c2.206,0,4,1.794,4,4v3h-2.851l3,3H23v3.851l3,2.999V12h-3V9c0-4.4-3.6-8-8-8
- c-2.67,0-5.04,1.33-6.495,3.356L11.413,7.264z"/>
-<rect x="13.74" y="-3.242" transform="matrix(0.7063 -0.7079 0.7079 0.7063 -6.0767 14.6963)" width="1.868" height="35.827"/>
+<path d="M11.413,7.264C12.062,5.93,13.419,5,15,5c2.206,0,4,1.794,4,4v3h-2.851l3,3H23v3.851l3,2.999V12h-3V9c0-4.4-3.6-8-8-8 c-2.67,0-5.04,1.33-6.495,3.356L11.413,7.264z"/>
+<rect height="35.827" transform="matrix(0.7063 -0.7079 0.7079 0.7063 -6.0767 14.6963)" width="1.868" x="13.74" y="-3.242"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_close_up.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_close_up.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<path d="M20.46,2.445l-2.465,6.77-3-8.215-2.994,8.215-2.465-6.77c-1.886,1.567-3.086,3.926-3.086,6.567,0,4.717,3.825,8.541,8.542,8.541s8.541-3.824,8.541-8.541c0-2.64-1.2-4.999-3.08-6.564z"/>
-
<path d="M5.016,25.12c3.401,1.809,7.383,0.973,8.887-1.869l-12.32-6.55c-1.508,2.84,0.034,6.61,3.438,8.42z"/>
-
<path d="M24.98,25.12c-3.402,1.809-7.385,0.973-8.889-1.869l12.33-6.549c1.51,2.84-0.03,6.61-3.44,8.42z"/>
-
<rect height="11.94" width="3" x="13.5" y="17.06"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_collapse.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_collapse.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M2,2v26h26v-26h-26zm23,23h-20v-20h20v20z"/>
-
<rect height="4" width="14" x="8" y="13"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_communication.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_communication.svg Thu May 27 13:10:59 2010 +0300
@@ -1,26 +1,7 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<rect fill="none" width="29.999" height="30"/>
-<path d="M19.675,3.48l-5.661,3.269c-0.279,0.117-0.592,0.042-0.732-0.196l-0.984-1.648c-0.002,0.001-0.002,0.006-0.004,0.007
- c0-0.001,0-0.003,0-0.004c-0.861,0.447-2.783,1.709-3.99,2.916c-1.256,1.257-2.422,2.609-3.398,4.289c0,0-0.004,0.008-0.006,0.008
- c0.008,0,0.014,0,0.021,0.002l2.096,1.342c0.264,0.17,0.318,0.543,0.123,0.828l-3.689,5.418c-0.195,0.283-0.566,0.377-0.83,0.205
- c0,0-0.229-0.148-0.787-0.639c0,0,0,0-0.002,0c-0.301-0.267-0.314-0.365-0.604-0.711c-0.244-0.295-0.439-0.588-0.602-0.857
- c0-0.002-0.004,0-0.004-0.002c-0.034-0.057-0.063-0.107-0.093-0.16c-0.004-0.008-0.008-0.016-0.01-0.02
- c-0.301-0.537-0.43-0.932-0.43-0.932c-0.139-0.529-0.195-2.351,0.432-4.005c0.399-1.048,2.493-4.361,4.938-6.81
- c2.445-2.448,6.25-4.884,7.924-5.389c1.674-0.505,3.002-0.427,3.396-0.286c0,0,1.021,0.333,1.945,1.18
- c0.308,0.283,0.338,0.295,0.578,0.589c0,0.002,0,0.005,0,0.006c0-0.001,0-0.003-0.002-0.004c0.473,0.583,0.629,0.817,0.629,0.817
- C20.085,2.958,19.968,3.312,19.675,3.48z"/>
-<path d="M26.773,11.223C24.634,9.085,22.02,8,18.999,8c-3.005,0-5.618,1.087-7.767,3.228C9.088,13.375,8,15.982,8,18.984
- c0,3.014,1.086,5.633,3.227,7.783C13.363,28.912,15.979,30,18.999,30h0.269v-2.775h-0.269c-2.265,0-4.22-0.811-5.812-2.412
- c-1.598-1.594-2.406-3.555-2.406-5.828c0-2.268,0.807-4.222,2.396-5.813c1.588-1.588,3.548-2.391,5.821-2.391
- c2.266,0,4.232,0.811,5.848,2.409c1.619,1.604,2.441,3.553,2.441,5.794c0,0.979-0.162,1.875-0.496,2.738
- c-0.426,1.086-0.994,1.613-1.738,1.613c-0.563,0-1.313-0.209-1.313-2.008v-8.082h-2.799v0.412c-0.662-0.439-1.494-0.662-2.486-0.662
- c-1.646,0-2.978,0.615-3.951,1.832c-0.907,1.119-1.368,2.523-1.368,4.172c0,1.639,0.459,3.049,1.367,4.195
- c0.99,1.252,2.32,1.887,3.952,1.887c1.258,0,2.32-0.395,3.17-1.174c0.748,1.42,1.9,2.141,3.428,2.141
- c1.687,0,2.99-0.832,3.875-2.469c0.711-1.295,1.07-2.842,1.07-4.596C29.999,15.969,28.915,13.357,26.773,11.223z M18.456,15.74
- c1.58,0,2.349,1.033,2.349,3.158c0,2.311-0.769,3.436-2.351,3.436c-1.591,0-2.366-1.09-2.366-3.334c0-0.875,0.188-1.602,0.574-2.221
- C17.086,16.08,17.673,15.74,18.456,15.74z"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="29.999"/>
+<path d="M19.675,3.48l-5.661,3.269c-0.279,0.117-0.592,0.042-0.732-0.196l-0.984-1.648c-0.002,0.001-0.002,0.006-0.004,0.007 c0-0.001,0-0.003,0-0.004c-0.861,0.447-2.783,1.709-3.99,2.916c-1.256,1.257-2.422,2.609-3.398,4.289c0,0-0.004,0.008-0.006,0.008 c0.008,0,0.014,0,0.021,0.002l2.096,1.342c0.264,0.17,0.318,0.543,0.123,0.828l-3.689,5.418c-0.195,0.283-0.566,0.377-0.83,0.205 c0,0-0.229-0.148-0.787-0.639c0,0,0,0-0.002,0c-0.301-0.267-0.314-0.365-0.604-0.711c-0.244-0.295-0.439-0.588-0.602-0.857 c0-0.002-0.004,0-0.004-0.002c-0.034-0.057-0.063-0.107-0.093-0.16c-0.004-0.008-0.008-0.016-0.01-0.02 c-0.301-0.537-0.43-0.932-0.43-0.932c-0.139-0.529-0.195-2.351,0.432-4.005c0.399-1.048,2.493-4.361,4.938-6.81 c2.445-2.448,6.25-4.884,7.924-5.389c1.674-0.505,3.002-0.427,3.396-0.286c0,0,1.021,0.333,1.945,1.18 c0.308,0.283,0.338,0.295,0.578,0.589c0,0.002,0,0.005,0,0.006c0-0.001,0-0.003-0.002-0.004c0.473,0.583,0.629,0.817,0.629,0.817 C20.085,2.958,19.968,3.312,19.675,3.48z"/>
+<path d="M26.773,11.223C24.634,9.085,22.02,8,18.999,8c-3.005,0-5.618,1.087-7.767,3.228C9.088,13.375,8,15.982,8,18.984 c0,3.014,1.086,5.633,3.227,7.783C13.363,28.912,15.979,30,18.999,30h0.269v-2.775h-0.269c-2.265,0-4.22-0.811-5.812-2.412 c-1.598-1.594-2.406-3.555-2.406-5.828c0-2.268,0.807-4.222,2.396-5.813c1.588-1.588,3.548-2.391,5.821-2.391 c2.266,0,4.232,0.811,5.848,2.409c1.619,1.604,2.441,3.553,2.441,5.794c0,0.979-0.162,1.875-0.496,2.738 c-0.426,1.086-0.994,1.613-1.738,1.613c-0.563,0-1.313-0.209-1.313-2.008v-8.082h-2.799v0.412c-0.662-0.439-1.494-0.662-2.486-0.662 c-1.646,0-2.978,0.615-3.951,1.832c-0.907,1.119-1.368,2.523-1.368,4.172c0,1.639,0.459,3.049,1.367,4.195 c0.99,1.252,2.32,1.887,3.952,1.887c1.258,0,2.32-0.395,3.17-1.174c0.748,1.42,1.9,2.141,3.428,2.141 c1.687,0,2.99-0.832,3.875-2.469c0.711-1.295,1.07-2.842,1.07-4.596C29.999,15.969,28.915,13.357,26.773,11.223z M18.456,15.74 c1.58,0,2.349,1.033,2.349,3.158c0,2.311-0.769,3.436-2.351,3.436c-1.591,0-2.366-1.09-2.366-3.334c0-0.875,0.188-1.602,0.574-2.221 C17.086,16.08,17.673,15.74,18.456,15.74z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_conference.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_conference.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M0,0v30h30v-30h-30zm28.24,26.99l-6.012-6.012-0.454,2.042,5.218,5.219h-24.37l5.535-5.534-0.454-2.042-5.942,5.941v-23.6l9.352,9.352h2.119v-0.377l-2.467-2.467c-0.202-0.056-0.401-0.12-0.594-0.202-2.479-1.04-3.137-2.756-3.311-3.69l-3.856-3.856h23.59l-3.413,3.413c-0.041,0.684-0.408,2.89-3.363,4.141-0.348,0.147-0.714,0.25-1.093,0.315l-1.968,1.968v0.763h1.732l9.738-9.738v24.36z" fill-opacity="0.5" stroke-opacity="0.5"/>
-
<rect height="3.519" width="17.65" x="6.177" y="13.25"/>
-
<polygon points="9.706,25.59,20.29,25.59,22.06,17.65,7.941,17.65"/>
-
<path d="M10.52,8.506c1.35,0.571,2.732,0.287,3.599-0.017v3.875h1.766v-3.871c0.866,0.304,2.249,0.588,3.599,0.017,2.926-1.238,2.831-3.499,2.831-3.499s-1.41-1.298-4.335-0.06c-2.645,1.12-2.94,2.791-2.973,3.101h-0.01c-0.032-0.31-0.328-1.98-2.973-3.101-2.925-1.238-4.335,0.06-4.335,0.06s-0.102,2.261,2.825,3.499z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contact_all.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contact_all.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M11,26c-1.104,0-2-0.896-2-2s0.896-2,2-2c0.718,0,1.343,0.381,1.695,0.949c0.083-0.055,0.167-0.109,0.262-0.171
- c1.875-1.218,3.101-2.121,3.656-2.697c-0.025-0.025-0.044-0.056-0.069-0.081H4V2h14v4.68c0.638-0.346,1.318-0.577,2-0.65V3
- c0-1.65-1.35-3-3-3H5C3.35,0,2,1.35,2,3v22c0,1.65,1.35,3,3,3h6V26z M7,25H4v-2h3V25z"/>
-<path d="M18.828,19.312c0.002,0.117,0.009,0.728,0.001,0.844c-0.005,0.079-0.032,0.164-0.061,0.249h4.464
- c-0.028-0.085-0.056-0.17-0.061-0.249c-0.008-0.123,0-0.719,0-0.844c0.828-0.575,1.407-1.251,1.844-2.134
- c0.808-1.634,0.375-5.479,0.375-5.479C25.391,9.994,23.196,8,21.525,8h-1.06c-1.67,0-3.869,1.994-3.869,3.698
- c0,0-0.383,3.827,0.372,5.474C17.384,18.072,17.981,18.737,18.828,19.312z"/>
-<path d="M23.593,21.035L21,27.082l-2.592-6.047c-1.292,1.677-5.184,3.844-5.408,4.148V30h16v-4.813
- C28.775,24.882,24.884,22.713,23.593,21.035z"/>
+<path d="M11,26c-1.104,0-2-0.896-2-2s0.896-2,2-2c0.718,0,1.343,0.381,1.695,0.949c0.083-0.055,0.167-0.109,0.262-0.171 c1.875-1.218,3.101-2.121,3.656-2.697c-0.025-0.025-0.044-0.056-0.069-0.081H4V2h14v4.68c0.638-0.346,1.318-0.577,2-0.65V3 c0-1.65-1.35-3-3-3H5C3.35,0,2,1.35,2,3v22c0,1.65,1.35,3,3,3h6V26z M7,25H4v-2h3V25z"/>
+<path d="M18.828,19.312c0.002,0.117,0.009,0.728,0.001,0.844c-0.005,0.079-0.032,0.164-0.061,0.249h4.464 c-0.028-0.085-0.056-0.17-0.061-0.249c-0.008-0.123,0-0.719,0-0.844c0.828-0.575,1.407-1.251,1.844-2.134 c0.808-1.634,0.375-5.479,0.375-5.479C25.391,9.994,23.196,8,21.525,8h-1.06c-1.67,0-3.869,1.994-3.869,3.698 c0,0-0.383,3.827,0.372,5.474C17.384,18.072,17.981,18.737,18.828,19.312z"/>
+<path d="M23.593,21.035L21,27.082l-2.592-6.047c-1.292,1.677-5.184,3.844-5.408,4.148V30h16v-4.813 C28.775,24.882,24.884,22.713,23.593,21.035z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contacts.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contacts.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<path d="M5,2v2H3v2h2v3H3v2h2v3H3v2h2v3H3v2h2v3H3v2h2v2h22V2H5z M24,25H8V5h16V25z"/>
-<path d="M14.371,15.227c0.002,0.086,0.007,0.53,0.001,0.614c-0.004,0.058-0.024,0.12-0.046,0.183c0-0.001,0.001-0.002,0.001-0.002
- h3.347c0,0,0,0.001,0.001,0.001c-0.021-0.062-0.042-0.124-0.046-0.182c-0.007-0.09,0-0.523,0.001-0.614
- c0.621-0.418,1.056-0.91,1.382-1.553c0.606-1.187,0.282-3.984,0.282-3.984C19.294,8.45,17.647,7,16.395,7H15.6
- c-1.254,0-2.902,1.45-2.902,2.689c0,0-0.287,2.783,0.278,3.981C13.288,14.325,13.735,14.809,14.371,15.227z"/>
+<path d="M14.371,15.227c0.002,0.086,0.007,0.53,0.001,0.614c-0.004,0.058-0.024,0.12-0.046,0.183c0-0.001,0.001-0.002,0.001-0.002 h3.347c0,0,0,0.001,0.001,0.001c-0.021-0.062-0.042-0.124-0.046-0.182c-0.007-0.09,0-0.523,0.001-0.614 c0.621-0.418,1.056-0.91,1.382-1.553c0.606-1.187,0.282-3.984,0.282-3.984C19.294,8.45,17.647,7,16.395,7H15.6 c-1.254,0-2.902,1.45-2.902,2.689c0,0-0.287,2.783,0.278,3.981C13.288,14.325,13.735,14.809,14.371,15.227z"/>
<path d="M22,19.5c-0.169-0.222-3.088-1.801-4.056-3.02L16,21l-1.943-4.521c-0.968,1.22-3.888,2.797-4.057,3.019V23h12V19.5z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_continuous_capture.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_continuous_capture.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M1,2v16h18v-16h-18zm15,13h-12v-10h12v10z"/>
-
<polygon points="26,12,26,25,14,25,11,25,11,28,29,28,29,12"/>
-
<polygon points="21,7,21,20,9,20,6,20,6,23,24,23,24,7"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contrast.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contrast.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M15,2C7.82,2,2,7.82,2,14.999c0,7.18,5.82,13,13,13s13-5.82,13-13C28,7.82,22.18,2,15,2z M15,24.999
- c-5.514,0-10-4.486-10-10C5,9.486,9.486,5,15,5V24.999z"/>
+<path d="M15,2C7.82,2,2,7.82,2,14.999c0,7.18,5.82,13,13,13s13-5.82,13-13C28,7.82,22.18,2,15,2z M15,24.999 c-5.514,0-10-4.486-10-10C5,9.486,9.486,5,15,5V24.999z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_corrupted.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_corrupted.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M16.65,4l-3.458,7.778l5.952,5.951L16.387,26H29V4H16.65z M26,23h-6.505l1.938-5.811l-5.854-5.854L17.505,7H26V23z"/>
-<path d="M10.808,12.222L14.461,4H1v22h13.279l2.576-7.729L10.808,12.222z M13.171,23H4V7h6.939l-2.518,5.664l6.146,6.146L13.171,23z
- "/>
+<polygon points="10,29 10,21 2,21 "/>
+<polygon points="11.484,17.257 16.484,11.257 11.691,8.381 15.382,1 2,1 2,20 5,20 5,4 11.646,4 9.074,9.144 13.453,11.771 8.453,17.771 13.987,21.091 11.31,26 11,26 11,29 11.952,29 16.662,20.363 "/>
+<path d="M17.618,1l-3.31,6.619l5.207,3.124l-5,6l4.822,2.894L14.23,29H28V1H17.618z M25,26h-6.855l3.868-7.091l-4.466-2.68l5-6 l-5.621-3.373L18.354,4H25V26z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_countdown_timer.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
-</g>
-<path d="M15,2c-1.942,0-3.779,0.438-5.434,1.202l2.306,2.306C12.857,5.183,13.907,5,15,5c5.514,0,10,4.486,10,10s-4.486,10-10,10
- S5,20.514,5,15c0-1.093,0.183-2.143,0.508-3.127L3.201,9.566C2.438,11.221,2,13.058,2,15c0,7.18,5.82,13,13,13s13-5.82,13-13
- S22.18,2,15,2z"/>
-<rect x="7.864" y="3.864" transform="matrix(0.707 -0.7072 0.7072 0.707 -4.2932 10.3659)" width="5" height="13"/>
-</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_create_email.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_create_email.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M9.293,14.96c0,1.567,0.373,2.805,1.121,3.712,0.747,0.907,1.668,1.36,2.762,1.36,0.608,0,1.148-0.108,1.626-0.32l1.918-1.918c0.072-0.123,0.146-0.239,0.216-0.373,0.012,0.041,0.029,0.076,0.041,0.115l2.424-2.423c0.02-1.68,0.336-4.327,0.953-7.96h-3.787c-2.206,0-3.97,0.692-5.291,2.078-1.317,1.382-1.977,3.292-1.977,5.722zm4.237-4.17c0.665-0.993,1.472-1.49,2.42-1.49h0.848l-0.506,4.006c-0.219,1.695-0.497,2.885-0.834,3.568-0.338,0.684-0.779,1.025-1.326,1.025-0.611,0-1.03-0.246-1.258-0.738-0.229-0.492-0.342-1.271-0.342-2.338,0-1.69,0.33-3.04,1-4.03z"/>
-
<path d="M6.736,13.33c0-2.825,0.818-5.033,2.454-6.624s3.762-2.386,6.378-2.386c2.479,0,4.391,0.754,5.735,2.263,1.062,1.19,1.696,2.781,1.921,4.758,0.777-0.527,1.844-0.448,2.533,0.241l0.206,0.206c-0.173-2.918-1.066-5.232-2.691-6.935-1.82-1.903-4.41-2.855-7.77-2.855-3.373,0-6.157,1.019-8.354,3.056s-3.295,4.842-3.295,8.415c0,3.746,1.068,6.629,3.206,8.647,1.26,1.189,2.782,2.02,4.554,2.508l0.138-1.24c0.044-0.399,0.212-0.769,0.471-1.072-3.65-1.1-5.484-4.09-5.484-8.99z"/>
-
<path d="M24.34,13l-10.6,10.61-0.707,6.364,6.364-0.707,10.61-10.6-5.66-5.66zm-5.65,14.14l-2.828-2.828,8.484-8.485,2.829,2.829-8.48,8.49z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_create_event.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_create_event.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,12 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<rect x="7" y="6" width="2" height="2"/>
-<rect x="10" y="6" width="10" height="2"/>
+<rect height="2" width="2" x="7" y="6"/>
+<rect height="2" width="10" x="10" y="6"/>
<path d="M5,3h18v8.557c0.785-0.716,1.999-0.7,2.758,0.059L26,11.857V0H2v29h9.128l0.333-3H5V3z"/>
<polygon points="26,29 26,25.515 22.515,29 "/>
-<path d="M24.343,13.029L13.736,23.636L13.029,30l6.364-0.707L30,18.687L24.343,13.029z M18.687,27.171l-2.828-2.828l8.484-8.485
- l2.829,2.829L18.687,27.171z"/>
+<path d="M24.343,13.029L13.736,23.636L13.029,30l6.364-0.707L30,18.687L24.343,13.029z M18.687,27.171l-2.828-2.828l8.484-8.485 l2.829,2.829L18.687,27.171z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_create_group.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
-</g>
-<path d="M10.372,17.177c-0.732-0.662-1.289-1.417-1.714-2.314c-1.002-2.12-0.705-5.979-0.611-6.944
- c0.072-2.494,2.419-4.848,4.768-5.638C11.827,1.015,10.188,0,8.936,0H7.722C5.807,0,3.38,2.367,3.38,4.388
- c0,0-0.29,4.066,0.575,6.022c0.475,1.067,0.918,1.963,1.889,2.645c0.003,0.14,0.012,0.733,0.003,0.87
- C5.729,15.909,0,18.276,0,18.276V24h4v-1.927l0.407-0.536c0.296-0.391,0.623-0.597,1.705-1.277
- C8.353,18.849,9.781,17.814,10.372,17.177z"/>
-<path d="M13.179,20.696l-1.094-2.476C10.631,20.049,6.253,22.413,6,22.746V28h8.769C13.66,26.446,13,24.551,13,22.5
- C13,21.883,13.065,21.281,13.179,20.696z"/>
-<path d="M10.046,8.034c0,0-0.43,4.175,0.419,5.972c0.466,0.982,1.139,1.708,2.092,2.334c0.002,0.128,0.01,0.794,0.001,0.921
- c-0.005,0.087-0.037,0.179-0.068,0.271h1.921c1.206-1.953,3.094-3.442,5.334-4.122c0.585-1.979,0.194-5.376,0.194-5.376
- c0-1.858-2.47-4.034-4.35-4.034h-1.191C12.52,4,10.046,6.176,10.046,8.034z"/>
-<path d="M21.938,7.903c0.081,0.743,0.289,3.097-0.061,5.128C22.084,13.018,22.29,13,22.5,13c0.566,0,1.117,0.059,1.656,0.154
- c0-0.049,0.001-0.101,0.002-0.126c0.947-0.685,1.361-1.57,1.861-2.618c0.926-1.938,0.587-6.022,0.587-6.022
- C26.606,2.367,24.183,0,22.269,0h-1.214c-1.253,0-2.889,1.016-3.874,2.282C19.521,3.073,21.859,5.417,21.938,7.903z"/>
-<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28
- c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
-<polygon points="24,21 24,18 21,18 21,21 18,21 18,24 21,24 21,27 24,27 24,24 27,24 27,21 "/>
-</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_create_message.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_create_message.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,9 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M11.749,23.386c0.05-0.452,0.252-0.872,0.573-1.193L13.515,21H4.414l6.115-6.115L14,18.355l3.471-3.471l1.08,1.08
- l0.707-0.707l-1.08-1.08L24,8.355v2.677c0.619-0.107,1.279,0.075,1.758,0.553L27,12.828V4H1v20h10.681L11.749,23.386z M22.527,7
- L14,15.527L5.473,7H22.527z M4,8.355l5.822,5.822L4,20V8.355z"/>
-<path d="M24.343,13L13.736,23.606l-0.707,6.364l6.364-0.707L30,18.657L24.343,13z M18.687,27.142l-2.828-2.828l8.484-8.485
- l2.829,2.829L18.687,27.142z"/>
+<path d="M11.749,23.386c0.05-0.452,0.252-0.872,0.573-1.193L13.515,21H4.414l6.115-6.115L14,18.355l3.471-3.471l1.08,1.08 l0.707-0.707l-1.08-1.08L24,8.355v2.677c0.619-0.107,1.279,0.075,1.758,0.553L27,12.828V4H1v20h10.681L11.749,23.386z M22.527,7 L14,15.527L5.473,7H22.527z M4,8.355l5.822,5.822L4,20V8.355z"/>
+<path d="M24.343,13L13.736,23.606l-0.707,6.364l6.364-0.707L30,18.657L24.343,13z M18.687,27.142l-2.828-2.828l8.484-8.485 l2.829,2.829L18.687,27.142z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_day_light_saving_time.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_day_light_saving_time.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<path d="M14.95,8.815h0.005c3.328,0,6.036,2.705,6.042,6.031h1.5c-0.006-4.152-3.387-7.531-7.542-7.531h-0.005v1.496z"/>
-
<polygon points="21.78,14.74,24.1,14.74,22.94,16.75,21.78,18.76,20.62,16.75,19.46,14.74"/>
-
<path d="M15,1c-7.732,0-14,6.268-14,14,0,7.73,6.268,14,14,14,7.731,0,14-6.27,14-14,0-7.732-6.27-14-14-14zm0,25c-6.075,0-11-4.92-11-11,0-6.076,4.925-11,11-11s11,4.924,11,11c0,6.08-4.92,11-11,11z"/>
-
<rect height="9" width="2" x="14.04" y="6.009"/>
-
<rect height="9.001" transform="matrix(0.8281 0.5605 -0.5605 0.8281 9.3921 -7.8538)" width="2" x="16.5" y="6.888"/>
-
<circle cx="15.03" cy="15.01" r="1"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_delete.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_delete.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<path d="M19,4V1h-8v3H5v3h20V4H19z M13,3h4v1h-4V3z"/>
<path d="M6,29h18V8H6V29z M19,11h2v14h-2V11z M14,11h2v14h-2V11z M9,11h2v14H9V11z"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_details.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_details.svg Thu May 27 13:10:59 2010 +0300
@@ -1,28 +1,18 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<rect x="6" y="6" width="2" height="2"/>
-<rect x="9.059" y="6" width="9.941" height="2"/>
-<rect x="6" y="11" width="2" height="2"/>
-<rect x="6" y="16" width="2" height="2"/>
-<rect x="6" y="21" width="2" height="2"/>
+<rect height="2" width="2" x="6" y="6"/>
+<rect height="2" width="9.941" x="9.059" y="6"/>
+<rect height="2" width="2" x="6" y="11"/>
+<rect height="2" width="2" x="6" y="16"/>
+<rect height="2" width="2" x="6" y="21"/>
<path d="M9.059,23h0.71c-0.264-0.369-0.501-0.756-0.71-1.161V23z"/>
<path d="M9.059,11v2h0.078c0.395-0.731,0.889-1.399,1.454-2H9.059z"/>
-<path d="M21.45,26.129C20.246,26.683,18.91,27,17.5,27c-1.516,0-2.944-0.366-4.217-1H4V3h18v6.137c1.171,0.633,2.188,1.509,3,2.554
- V0H1v29h23.326C24.078,28.745,21.45,26.129,21.45,26.129z"/>
-<rect x="25.878" y="25.9" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -10.8558 27.5915)" width="4" height="2"/>
-<path d="M24.349,20.542C24.765,19.611,25,18.584,25,17.5c0-4.136-3.364-7.5-7.5-7.5S10,13.364,10,17.5s3.364,7.5,7.5,7.5
- c1.596,0,3.074-0.505,4.291-1.358l2.552,2.551l2.828-2.828L24.349,20.542z M12,17.5c0-3.032,2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5
- S20.533,23,17.5,23S12,20.532,12,17.5z"/>
+<path d="M21.45,26.129C20.246,26.683,18.91,27,17.5,27c-1.516,0-2.944-0.366-4.217-1H4V3h18v6.137c1.171,0.633,2.188,1.509,3,2.554 V0H1v29h23.326C24.078,28.745,21.45,26.129,21.45,26.129z"/>
+<rect height="2" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -10.8558 27.5915)" width="4" x="25.878" y="25.9"/>
+<path d="M24.349,20.542C24.765,19.611,25,18.584,25,17.5c0-4.136-3.364-7.5-7.5-7.5S10,13.364,10,17.5s3.364,7.5,7.5,7.5 c1.596,0,3.074-0.505,4.291-1.358l2.552,2.551l2.828-2.828L24.349,20.542z M12,17.5c0-3.032,2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5 S20.533,23,17.5,23S12,20.532,12,17.5z"/>
<polygon points="22,19 22,16 19,16 19,13 16,13 16,16 13,16 13,19 16,19 16,22 19,22 19,19 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_dialer.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_dialer.svg Thu May 27 13:10:59 2010 +0300
@@ -1,24 +1,17 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<rect x="12" y="2" width="5" height="5"/>
-<rect x="12" y="9" width="5" height="5"/>
-<rect x="12" y="16" width="5" height="5"/>
-<rect x="5" y="2" width="5" height="5"/>
-<rect x="5" y="9" width="5" height="5"/>
-<rect x="5" y="16" width="5" height="5"/>
-<rect x="19" y="2" width="5" height="5"/>
-<rect x="19" y="9" width="5" height="5"/>
-<rect x="19" y="16" width="5" height="5"/>
-<rect x="12" y="23" width="5" height="5"/>
+<rect height="5" width="5" x="12" y="2"/>
+<rect height="5" width="5" x="12" y="9"/>
+<rect height="5" width="5" x="12" y="16"/>
+<rect height="5" width="5" x="5" y="2"/>
+<rect height="5" width="5" x="5" y="9"/>
+<rect height="5" width="5" x="5" y="16"/>
+<rect height="5" width="5" x="19" y="2"/>
+<rect height="5" width="5" x="19" y="9"/>
+<rect height="5" width="5" x="19" y="16"/>
+<rect height="5" width="5" x="12" y="23"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_disconnect.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_disconnect.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,12 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<polygon points="16.854,21 12.854,17 1,17 11,27 14,24.344 10.657,21 "/>
<polygon points="25.15,21 28,21 28,17 21.149,17 "/>
<polygon points="13.148,9 17.149,13 29,13 19,3 16,5.657 19.343,9 "/>
<polygon points="4.853,9 2,9 2,13 8.853,13 "/>
-<rect x="13.74" y="-3.242" transform="matrix(0.7063 -0.7079 0.7079 0.7063 -6.0767 14.6963)" width="1.868" height="35.827"/>
+<rect height="35.827" transform="matrix(0.7063 -0.7079 0.7079 0.7063 -6.0767 14.6963)" width="1.868" x="13.74" y="-3.242"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_drm_rights_expired.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_drm_rights_expired.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M11,5h6c0.553,0,1,0.447,1,1s-0.447,1-1,1h-5.851L19,14.851v-2.626c1.041-0.593,2.136-1.309,2.136-1.309
- c0.529-0.418,0.915-1.316,0.858-1.996c0,0-0.68-4.737-1.039-5.313c0,0-1.628-2.606-7.067-2.606C9.759,1,7.98,2.492,7.361,3.213
- l2.664,2.663C10.089,5.385,10.491,5,11,5z"/>
-<polygon points="17.785,21.932 15.061,19.208 14.572,19.71 15.846,21.081 14.568,22.456 16,23.846 16,24.278 14,26.691 12,24.279
- 12,16.147 9,13.147 9,15.998 10,15.998 10,25 13.315,29 14.684,29 18,25 18,23 17.365,22.384 "/>
-<rect x="13.741" y="-3.24" transform="matrix(0.7076 -0.7066 0.7066 0.7076 -6.0779 14.6588)" width="1.866" height="35.827"/>
+<path d="M11,5h6c0.553,0,1,0.447,1,1s-0.447,1-1,1h-5.851L19,14.851v-2.626c1.041-0.593,2.136-1.309,2.136-1.309 c0.529-0.418,0.915-1.316,0.858-1.996c0,0-0.68-4.737-1.039-5.313c0,0-1.628-2.606-7.067-2.606C9.759,1,7.98,2.492,7.361,3.213 l2.664,2.663C10.089,5.385,10.491,5,11,5z"/>
+<polygon points="17.785,21.932 15.061,19.208 14.572,19.71 15.846,21.081 14.568,22.456 16,23.846 16,24.278 14,26.691 12,24.279 12,16.147 9,13.147 9,15.998 10,15.998 10,25 13.315,29 14.684,29 18,25 18,23 17.365,22.384 "/>
+<rect height="35.827" transform="matrix(0.7076 -0.7066 0.7066 0.7076 -6.0779 14.6588)" width="1.866" x="13.741" y="-3.24"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_drop_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_drop_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M7.129,14.84c-0.006-0.09,0-0.523,0-0.614,0.621-0.419,1.057-0.91,1.383-1.552,0.605-1.188,0.281-3.985,0.281-3.985,0-1.245-1.647-2.695-2.898-2.695h-0.795c-1.254,0-2.903,1.45-2.903,2.689,0,0-0.287,2.783,0.279,3.981,0.311,0.654,0.76,1.139,1.395,1.556,0.002,0.085,0.007,0.529,0.002,0.614-0.078,1.22-3.673,3.39-3.873,3.66v3.5h11.5v-3.5c-0.2-0.26-4.295-2.44-4.371-3.66z"/>
-
<path d="M11.02,12.17l2.82-2.818c-0.124-0.181-0.2-0.352-0.21-0.507-0.006-0.09,0-0.523,0-0.614,0.621-0.419,1.057-0.91,1.383-1.552,0.605-1.188,0.281-3.985,0.281-3.985,0-1.244-1.64-2.694-2.89-2.694h-0.8c-1.254,0-2.902,1.45-2.902,2.689,0,0-0.118,1.153-0.052,2.294,1.202,0.875,2.088,2.216,2.145,3.568,0.098,0.898,0.291,3.486-0.496,5.031-0.215,0.422-0.468,0.806-0.762,1.156,0.403,0.321,1.018,0.747,1.815,1.261h3.505l-3.82-3.83z"/>
-
<path d="M24.26,17.11c0.001-0.137,0.002-0.266,0.003-0.314,0.814-0.549,1.385-1.194,1.814-2.037,0.795-1.559,0.369-5.229,0.369-5.229,0-1.626-2.16-3.53-3.805-3.53h-1.04c-1.645,0-3.81,1.904-3.81,3.53,0,0-0.043,0.425-0.071,1.04l6.54,6.54z"/>
-
<path d="M30,22.85v-0.444c-0.079-0.104-0.616-0.434-1.328-0.884l1.33,1.32z"/>
-
<path d="M18.41,19.56c-1.64,1.318-3.989,2.618-4.161,2.844v4.6h11.6l-7.44-7.44z"/>
-
<rect height="20.98" transform="matrix(0.7066 -0.7076 0.7076 0.7066 -6.9576 21.0662)" width="1.867" x="20.99" y="8.434"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_edit.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_edit.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M25.502,4.497c-3.124-3.124-6.923-4.391-8.485-2.828c-0.001,0.001-0.002,0.002-0.003,0.003L2.871,15.814l-0.008,0.07l0,0
- l-0.019,0.173L1.489,28.445l-0.032,0.097l0.098-0.032l12.595-1.415l0.542-0.539c0,0,0,0,0-0.001l13.635-13.569
- c0.001-0.001,0.002-0.002,0.004-0.003C29.893,11.42,28.626,7.621,25.502,4.497z M7.257,25.857l-3.13-3.131l0.656-5.995l0.082-0.082
- c1.639,0.432,3.549,1.566,5.266,3.282c1.665,1.665,2.781,3.512,3.241,5.117l-0.137,0.137L7.257,25.857z M26.916,11.568
- l-12.15,12.093c-0.459-1.606-1.575-3.456-3.241-5.123c-1.708-1.709-3.617-2.856-5.253-3.295L18.428,3.086
- c0.355-0.355,2.922,0.087,5.66,2.825S27.269,11.216,26.916,11.568z"/>
+<path d="M25.502,4.497c-3.124-3.124-6.923-4.391-8.485-2.828c-0.001,0.001-0.002,0.002-0.003,0.003L2.871,15.814l-0.008,0.07l0,0 l-0.019,0.173L1.489,28.445l-0.032,0.097l0.098-0.032l12.595-1.415l0.542-0.539c0,0,0,0,0-0.001l13.635-13.569 c0.001-0.001,0.002-0.002,0.004-0.003C29.893,11.42,28.626,7.621,25.502,4.497z M7.257,25.857l-3.13-3.131l0.656-5.995l0.082-0.082 c1.639,0.432,3.549,1.566,5.266,3.282c1.665,1.665,2.781,3.512,3.241,5.117l-0.137,0.137L7.257,25.857z M26.916,11.568 l-12.15,12.093c-0.459-1.606-1.575-3.456-3.241-5.123c-1.708-1.709-3.617-2.856-5.253-3.295L18.428,3.086 c0.355-0.355,2.922,0.087,5.66,2.825S27.269,11.216,26.916,11.568z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="29,7.309,29,1.119,1,1.119,1,28.87,29,28.88,29,22.68,7.012,22.68,7.012,18.01,23.77,18.01,23.77,11.99,7.012,11.99,7.012,7.309"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_attach.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_attach.svg Thu May 27 13:10:59 2010 +0300
@@ -1,31 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="9.647,24.81,9.653,24.81,8.141,22.38,5.279,22.38,9.481,29.1,11.52,27.82,10.82,26.68"/>
-
<polygon points="10.49,22.38,12.01,24.81,16.13,24.81,14.62,22.38"/>
-
<polygon points="16.97,22.38,18.48,24.81,22.63,24.81,21.12,22.38"/>
-
<polygon points="23.47,22.38,24.72,24.4,24.72,22.38"/>
-
<polygon points="23.47,22.38,24.72,24.4,24.72,22.38"/>
-
<polygon points="20.3,17.36,21.81,19.8,24.72,19.8,20.52,13.07,18.45,14.36,20.32,17.36"/>
-
<polygon points="19.46,19.8,17.95,17.36,13.86,17.36,15.37,19.8"/>
-
<polygon points="13.02,19.8,11.51,17.36,7.38,17.36,8.891,19.8"/>
-
<polygon points="5.279,17.76,5.279,19.8,6.541,19.8"/>
-
<polygon points="5.279,17.76,5.279,19.8,6.541,19.8"/>
-
<polygon points="20.33,3.264,20.33,0.895,9.633,0.895,9.633,11.51,20.33,11.51,20.33,9.141,11.93,9.141,11.93,7.354,18.34,7.354,18.34,5.051,11.93,5.051,11.93,3.264"/>
-
<polygon points="20.33,3.264,20.33,0.895,9.633,0.895,9.633,11.51,20.33,11.51,20.33,9.141,11.93,9.141,11.93,7.354,18.34,7.354,18.34,5.051,11.93,5.051,11.93,3.264"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_context.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_context.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="24.72,22.38,5.279,22.38,9.481,29.1,11.55,27.82,9.671,24.81,9.683,24.81,9.683,24.81,24.72,24.81"/>
-
<polygon points="20.52,13.07,18.45,14.36,20.32,17.36,5.279,17.36,5.279,19.8,24.72,19.8"/>
-
<polygon points="20.34,3.263,20.34,0.895,9.633,0.895,9.633,11.51,20.34,11.51,20.34,9.14,11.93,9.14,11.93,7.353,18.34,7.353,18.34,5.051,11.93,5.051,11.93,3.263"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_multipdp.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_multipdp.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="20.52,13.03,18.46,14.32,20.32,17.33,17.27,17.33,14.59,13.03,12.52,14.32,14.39,17.33,5.279,17.33,5.279,19.76,24.72,19.76"/>
-
<polygon points="9.48,29.07,11.55,27.78,9.68,24.78,12.73,24.78,15.41,29.07,17.48,27.78,15.6,24.78,24.72,24.78,24.72,22.34,5.279,22.34"/>
-
<polygon points="20.34,3.297,20.34,0.928,9.633,0.928,9.633,11.54,20.34,11.54,20.34,9.175,11.93,9.175,11.93,7.387,18.34,7.387,18.34,5.085,11.93,5.085,11.93,3.297"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_suspended.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_suspended.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="24.72,22.28,24.72,24.72,20.32,24.72,20.32,24.72,14.34,24.72,16.38,22.28"/>
-
<polygon points="5.279,22.28,10.58,22.28,8.524,24.72,5.279,24.72"/>
-
<polygon points="24.72,17.27,24.72,19.7,18.53,19.7,20.56,17.27"/>
-
<polygon points="5.279,19.7,5.279,17.27,14.8,17.27,12.75,19.7"/>
-
<polygon points="21.42,14.55,21.5,14.61,21.45,14.67,10.38,27.86,9.381,29.05,7.515,27.48,8.938,25.79,19.63,13.04"/>
-
<polygon points="20.34,3.321,20.34,0.952,9.633,0.952,9.633,11.57,20.34,11.57,20.34,9.199,11.93,9.199,11.93,7.411,18.34,7.411,18.34,5.109,11.93,5.109,11.93,3.321"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_end_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_end_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M28.91,18.24l-7.671-2.057c-0.341-0.139-0.547-0.472-0.461-0.798l0.571-2.261c-0.002,0.001-0.008,0.001-0.01,0.001,0.001-0.001,0.002-0.002,0.002-0.003-1.125-0.355-3.859-0.922-5.933-0.923-2.159,0.001-4.325,0.161-6.604,0.766,0,0-0.009,0.002-0.012,0.002,0.006,0.007,0.012,0.013,0.017,0.02l0.648,2.953c0.081,0.374-0.194,0.738-0.608,0.816l-7.822,1.486c-0.412,0.076-0.811-0.162-0.891-0.537,0,0-0.068-0.325-0.126-1.224-0.001,0-0.001,0-0.001-0.002-0.031-0.489,0.042-0.586,0.092-1.13,0.043-0.466,0.126-0.885,0.219-1.254,0-0.001-0.003-0.003-0.002-0.005,0.019-0.074,0.039-0.145,0.059-0.216,0.002-0.009,0.005-0.018,0.006-0.025,0.203-0.72,0.43-1.17,0.43-1.17,0.338-0.572,1.855-2.187,3.813-3.068,1.239-0.572,5.882-1.621,10.09-1.622,4.205-0.001,9.565,1.174,11.44,2.178s2.946,2.212,3.165,2.671,0.59,1.164,0.658,2.688c0.023,0.509,0.037,0.543-0.01,1.002,0,0.003-0.003,0.004-0.003,0.007v-0.007c-0.094,0.907-0.161,1.243-0.161,1.243-0.1,0.36-0.5,0.56-0.9,0.46z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_enter.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_enter.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<polygon points="24,8,24,16,10,16,10,12,1,18,10,24,10,20,28,20,28,8"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_exit.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_exit.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<polygon points="26.314,6.515 23.485,3.686 15,12.171 6.515,3.686 3.687,6.515 12.172,15 3.687,23.485 6.515,26.313 15,17.828
- 23.485,26.313 26.314,23.485 17.828,15 "/>
+<polygon points="26.314,6.515 23.485,3.686 15,12.171 6.515,3.686 3.687,6.515 12.172,15 3.687,23.485 6.515,26.313 15,17.828 23.485,26.313 26.314,23.485 17.828,15 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_expand.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_expand.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M2,2v26h26v-26h-26zm23,23h-20v-20h20v20z"/>
-
<polygon points="13,22,17,22,17,17,22,17,22,13,17,13,17,8,13,8,13,13,8,13,8,17,13,17"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_exposure.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_exposure.svg Thu May 27 13:10:59 2010 +0300
@@ -1,11 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M3,3v24h24v-24h-24zm21,18h-9v-3h9v3zm-18,3v-18h18l-18,18z"/>
-
<rect height="3" width="9" x="7" y="10"/>
-
<rect height="9" width="3" x="10" y="7"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_face_tracking.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_face_tracking.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<polygon points="4,10,4,5,11,5,11,2,1,2,1,10"/>
-
<polygon points="4,20,1,20,1,28,11,28,11,25,4,25"/>
-
<polygon points="26,10,29,10,29,2,19,2,19,5,26,5"/>
-
<polygon points="26,20,26,25,19,25,19,28,29,28,29,20"/>
-
<path d="M8.006,22.35l-0.006,1.2h14l-0.006-1.205s-4.371-2.604-4.81-4.053c-0.019-0.061-0.04-0.121-0.044-0.178v-0.738c0.001-0.023,0.001-0.059,0.001-0.072,0.819-0.553,1.394-1.201,1.824-2.049,0.8-1.568,0.372-5.262,0.372-5.262,0-1.635-2.173-3.549-3.827-3.549h-1.049c-1.654,0-3.831,1.914-3.831,3.549,0,0-0.38,3.676,0.368,5.256,0.411,0.865,1.002,1.504,1.841,2.055,0.003,0.113,0.009,0.699,0.002,0.811-0.005,0.076-0.032,0.156-0.061,0.238h0.018c-0.53,1.46-4.784,4-4.784,4z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_face_tracking_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_face_tracking_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,29 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M10.93,15.08c0.023,0.059,0.044,0.121,0.07,0.175,0.411,0.865,1.002,1.503,1.841,2.054,0.003,0.113,0.009,0.699,0.002,0.811-0.005,0.076-0.032,0.156-0.061,0.238h0.018c-0.539,1.459-4.793,3.992-4.793,3.992l-0.007,1.2h11.4l-8.47-8.47z"/>
-
<path d="M19.1,14.95c0.617-1.695,0.24-4.953,0.24-4.953,0-1.635-2.173-3.549-3.827-3.549h-1.049c-0.86,0-1.854,0.521-2.618,1.248l7.26,7.254z"/>
-
<polygon points="4,20,1,20,1,28,11,28,11,25,4,25"/>
-
<polygon points="26,10,29,10,29,2,19,2,19,5,26,5"/>
-
<polygon points="9.148,5,11,5,11,2,6.148,2"/>
-
<polygon points="1,5.148,1,10,4,10,4,8.148"/>
-
<polygon points="29,24.85,29,20,26,20,26,21.85"/>
-
<polygon points="20.85,25,19,25,19,28,23.85,28"/>
-
<rect height="35.83" transform="matrix(0.7061 -0.7082 0.7082 0.7061 -6.212 15.0307)" width="1.867" x="14.07" y="-2.915"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_failed.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_failed.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<rect fill="none" width="30" height="30"/>
-<path fill="none" d="M23.041,9.079L9.08,23.041C10.74,24.266,12.783,25,15,25c5.514,0,10-4.486,10-10
- C25,12.783,24.266,10.739,23.041,9.079z"/>
-<path fill="none" d="M20.92,6.958C19.26,5.733,17.217,4.999,15,4.999C9.486,4.999,5,9.485,5,15c0,2.216,0.733,4.26,1.958,5.919
- L20.92,6.958z"/>
-<path d="M15,1.999C7.82,1.999,2,7.819,2,15c0,7.18,5.82,13,13,13s13-5.82,13-13C28,7.819,22.18,1.999,15,1.999z M15,4.999
- c2.217,0,4.26,0.734,5.92,1.959L6.958,20.919C5.733,19.26,5,17.216,5,15C5,9.485,9.486,4.999,15,4.999z M15,25
- c-2.217,0-4.26-0.734-5.92-1.959L23.041,9.079C24.266,10.739,25,12.783,25,15C25,20.514,20.514,25,15,25z"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
+<path d="M23.041,9.079L9.08,23.041C10.74,24.266,12.783,25,15,25c5.514,0,10-4.486,10-10 C25,12.783,24.266,10.739,23.041,9.079z" fill="none"/>
+<path d="M20.92,6.958C19.26,5.733,17.217,4.999,15,4.999C9.486,4.999,5,9.485,5,15c0,2.216,0.733,4.26,1.958,5.919 L20.92,6.958z" fill="none"/>
+<path d="M15,1.999C7.82,1.999,2,7.819,2,15c0,7.18,5.82,13,13,13s13-5.82,13-13C28,7.819,22.18,1.999,15,1.999z M15,4.999 c2.217,0,4.26,0.734,5.92,1.959L6.958,20.919C5.733,19.26,5,17.216,5,15C5,9.485,9.486,4.999,15,4.999z M15,25 c-2.217,0-4.26-0.734-5.92-1.959L23.041,9.079C24.266,10.739,25,12.783,25,15C25,20.514,20.514,25,15,25z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_favourites.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_favourites.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<polygon points="15,22.9 7,27 8.5,18.316 2,12 10.982,10.9 15,3 19.018,10.9 28,12 21.5,18.316 23,27 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_favourites_remove.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_favourites_remove.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M22.5,13c0.749,0,1.475,0.096,2.174,0.261L27,11l-8.982-1.1L14,2L9.982,9.9L1,11l6.5,6.316L6,26l7.004-3.59
- C13.053,17.214,17.292,13,22.5,13z"/>
-<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28
- c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
-<rect x="18" y="21" width="9" height="3"/>
+<path d="M22.5,13c0.749,0,1.475,0.096,2.174,0.261L27,11l-8.982-1.1L14,2L9.982,9.9L1,11l6.5,6.316L6,26l7.004-3.59 C13.053,17.214,17.292,13,22.5,13z"/>
+<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28 c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
+<rect height="3" width="9" x="18" y="21"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_filter.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_filter.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M23.663,4.066L25,2H3l9,13.91V29l4-3V15.909L18.529,12H23c2.209,0,4-1.791,4-4
- C27,6.018,25.555,4.384,23.663,4.066z M21.323,4l-2.588,4H9.265L6.676,4H21.323z M23,10h-3.177l2.589-4H23c1.103,0,2,0.897,2,2
- S24.103,10,23,10z"/>
+<path d="M23.663,4.066L25,2H3l9,13.91V29l4-3V15.909L18.529,12H23c2.209,0,4-1.791,4-4 C27,6.018,25.555,4.384,23.663,4.066z M21.323,4l-2.588,4H9.265L6.676,4H21.323z M23,10h-3.177l2.589-4H23c1.103,0,2,0.897,2,2 S24.103,10,23,10z" fill-rule="evenodd"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_flash.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_flash.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="18.21,20.57,21.18,10.92,13.57,10.92,15.86,3.5,11.4,3.5,8.436,13.15,16.04,13.15,13.76,20.57,10.43,20.57,16,26.5,21.56,20.57"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_flash_charging.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_flash_charging.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<path d="M1,14v15h11v-15h-11zm8,12h-5v-9h5v9z"/>
-
<rect height="2" width="5" x="4" y="11"/>
-
<polygon points="24.13,21,28,10,19.36,10,22.54,1,17.24,1,13,13,21.64,13,18.83,21,14,21,21.5,29,29,21"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_flash_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_flash_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<rect height="35.83" transform="matrix(0.7061 -0.7082 0.7082 0.7061 -6.248 14.9445)" width="1.867" x="13.94" y="-2.915"/>
-
<polygon points="19.84,15.81,21.88,10,14.03,10"/>
-
<polygon points="13.44,9.416,16.42,1,11.12,1,9.527,5.499"/>
-
<polygon points="7.362,11.63,6.878,13,8.732,13"/>
-
<polygon points="13.75,18.02,12.71,21,7.878,21,15.38,29,19.9,24.17"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_folder.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_folder.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M14,6v-3h-12v22h26v-19h-14zm11,16h-20v-16h6v3h14v13z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_forward.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_forward.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<polygon points="5,26,16,15,5,4"/>
-
<polygon points="27,15,16,4,16,15,16,26"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_forward_email.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_forward_email.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M15,25v-1.232c-5.504-0.278-8.264-3.418-8.264-9.434,0-2.825,0.818-5.033,2.454-6.624s3.762-2.386,6.378-2.386c2.479,0,4.391,0.754,5.735,2.263s2.017,3.648,2.017,6.419c0,0.165-0.014,0.313-0.019,0.471l2.437,1.827c0.158-0.74,0.262-1.54,0.262-2.448,0-3.427-0.909-6.093-2.728-7.998s-4.41-2.862-7.77-2.862c-3.372,0-6.157,1.019-8.354,3.056s-3.295,4.842-3.295,8.415c0,3.746,1.068,6.629,3.206,8.647,2.072,1.957,4.843,2.957,8.298,3.017-0.23-0.33-0.36-0.72-0.36-1.14z"/>
-
<path d="M11.28,10.23c-1.321,1.386-1.982,3.295-1.982,5.729,0,1.567,0.374,2.805,1.121,3.712s1.668,1.36,2.762,1.36c0.696,0,1.301-0.146,1.824-0.423v-1.61c0-0.205,0.04-0.398,0.097-0.584-0.274,0.314-0.593,0.484-0.964,0.484-0.61,0-1.03-0.246-1.258-0.738s-0.342-1.271-0.342-2.338c0-1.695,0.333-3.04,0.998-4.033s1.472-1.49,2.42-1.49h0.848l-0.506,4.006c-0.195,1.513-0.44,2.6-0.729,3.307,0.36-0.38,0.87-0.62,1.43-0.62h2.416c-0.013-0.217-0.02-0.451-0.02-0.711,0-1.668,0.319-4.38,0.957-8.135h-3.787c-2.21-0.001-3.97,0.692-5.29,2.075z"/>
-
<polygon points="30,22,22,16,22,19,17,19,17,25,22,25,22,28"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_forward_msg.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_forward_msg.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M5.414,21l6.115-6.115,3.47,3.48v-0.36c0-1.104,0.896-2,2-2h0.355l1.115-1.115,1.11,1.12h0.41v-1l-0.822-0.822,5.82-5.825v6.395l3,2.25v-13h-26v20h13v-3h-9.586zm18.12-14l-8.53,8.53-8.527-8.53h17.05zm-18.53,1.355l5.822,5.822-5.82,5.82v-11.64z"/>
-
<polygon points="30,21,22,15,22,18,17,18,17,24,22,24,22,27"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_genres.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_genres.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M14.18,10.2c0.559,0,0.954,0.538,1.188,0.989l0.728,1.406-1.15,1.151,1.159,1.401c0.223,0.27,0.445,0.515,0.681,0.75,0.296,0.297,0.625,0.552,0.969,0.77-1.075,0.782-2.249,1.651-3.119,2.521-1.016,1.015-1.342,2.373-1.657,3.687-0.337,1.404-0.656,2.73-1.724,3.799-0.231,0.231-0.386,0.251-0.523,0.251-1.333,0-3.588-2.265-4.55-3.231l-0.214-0.21-0.206-0.21c-0.966-0.961-3.227-3.213-3.229-4.546,0-0.139,0.019-0.294,0.249-0.524,1.069-1.067,2.397-1.387,3.802-1.724,1.313-0.315,2.668-0.641,3.683-1.652,0.942-0.942,1.294-1.738,1.577-2.379,0.243-0.552,0.42-0.95,1.1-1.631,0.39-0.4,0.84-0.63,1.22-0.63m13.68-8.421l-5.897,2.418s0.26,0.99-0.418,1.669l-4.405,4.405c-0.736-1.422-1.833-2.07-2.964-2.07-0.918,0-1.857,0.427-2.644,1.213-1.79,1.79-1.242,2.575-2.677,4.009-1.437,1.434-4.917,0.813-7.483,3.376-2.566,2.568,1.433,6.354,3.185,8.105,1.347,1.348,3.896,4.022,6.169,4.022,0.685,0,1.344-0.243,1.938-0.837,2.565-2.565,1.941-6.048,3.38-7.483,1.433-1.434,4.124-3.1,4.9-3.874,0.359-0.358,0.688-0.977,0.091-0.995-0.632-0.019-2.012-0.424-2.84-1.252-0.204-0.204-0.386-0.407-0.554-0.61l6.291-6.293c0.849-0.842,2.048-0.861,2.157-0.861h0.008l3.549-4.117-1.8-0.83z"/>
-
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_geotag.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_geotag.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<rect height="9.914" width="8" x="11" y="5"/>
-
<rect height="2" width="12" x="9.041" y="2.021"/>
-
<path d="M15,9.633c-4.417,0-8,4.198-8,9.375h16c0-5.18-3.58-9.377-8-9.377z"/>
-
<rect height="14.25" width="2" x="14.02" y="13.77"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_geotag_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_geotag_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<rect height="2" width="12" x="9.041" y="2.021"/>
-
<path d="M22.99,18.84c-0.051-3.396-1.641-6.347-3.99-7.942v-5.9h-8v1.852l11.99,11.99z"/>
-
<path d="M8.87,13.02c-1.161,1.62-1.87,3.7-1.87,5.99h7.021v9.014h2v-7.85l-7.15-7.15z"/>
-
<rect height="35.83" transform="matrix(0.7061 -0.7082 0.7082 0.7061 -6.2123 15.031)" width="1.867" x="14.07" y="-2.915"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_go.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_go.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<polygon points="27,15,15,6,15,11,4,11,4,19,15,19,15,24"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_gps.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_gps.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<rect height="10" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 -4.2124 42.9407)" width="6.001" x="3.787" y="17.34"/>
-
<rect height="10" transform="matrix(0.7071 0.7071 -0.7071 0.7071 11.3431 -13.8113)" width="5.999" x="19.34" y="1.786"/>
-
<polygon points="19.28,16.92,20.93,15.27,13.86,8.201,10.15,8.731,7.494,6.079,6.08,7.493,8.731,10.15,8.201,13.86,15.27,20.93,16.92,19.28,17.39,24.46,20.22,21.64,23.05,24.46,24.46,23.05,21.64,20.22,24.46,17.39"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_gps_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_gps_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,14 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<rect x="3.787" y="17.343" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 -4.2124 42.9407)" width="6.001" height="10"/>
-<rect x="19.344" y="1.786" transform="matrix(0.7071 0.7071 -0.7071 0.7071 11.3431 -13.8113)" width="5.999" height="10"/>
+<rect height="10" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 -4.2124 42.9407)" width="6.001" x="3.787" y="17.343"/>
+<rect height="10" transform="matrix(0.7071 0.7071 -0.7071 0.7071 11.3431 -13.8113)" width="5.999" x="19.344" y="1.786"/>
<polygon points="20.176,16.025 20.93,15.271 13.858,8.201 12.539,8.39 "/>
<polygon points="23.004,18.854 24.465,17.394 21.251,17.102 "/>
<polygon points="17.101,21.248 17.394,24.464 18.855,23.002 "/>
<polygon points="8.39,12.537 8.201,13.857 15.272,20.929 16.027,20.174 "/>
-<rect x="13.74" y="-3.242" transform="matrix(0.7063 -0.7079 0.7079 0.7063 -6.0767 14.6963)" width="1.868" height="35.827"/>
+<rect height="35.827" transform="matrix(0.7063 -0.7079 0.7079 0.7063 -6.0767 14.6963)" width="1.868" x="13.74" y="-3.242"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_group.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_group.svg Thu May 27 13:10:59 2010 +0300
@@ -1,28 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M24.155,14.925c-0.009-0.146,0-0.75,0.003-0.896c0.947-0.685,1.361-1.57,1.861-2.618c0.926-1.938,0.587-6.022,0.587-6.022
- C26.606,3.367,24.183,1,22.269,1h-1.214c-1.253,0-2.89,1.015-3.874,2.282c2.34,0.791,4.678,3.135,4.758,5.621
- c0.108,0.996,0.446,4.888-0.639,7.017c-0.438,0.86-0.994,1.603-1.683,2.243c0.582,0.637,2.014,1.676,4.27,3.099
- c1.084,0.683,1.411,0.889,1.707,1.28L26,23.078V25h4v-5.72C30,19.28,24.273,16.909,24.155,14.925z"/>
-<path d="M4,23.073l0.407-0.536c0.296-0.391,0.622-0.597,1.704-1.277c2.242-1.411,3.67-2.445,4.261-3.083
- c-0.731-0.662-1.288-1.417-1.714-2.314c-1.002-2.12-0.705-5.979-0.611-6.944c0.071-2.494,2.42-4.848,4.768-5.638
- C11.827,2.014,10.188,1,8.936,1H7.722C5.807,1,3.38,3.367,3.38,5.388c0,0-0.29,4.066,0.575,6.022
- c0.475,1.067,0.918,1.963,1.889,2.645c0.003,0.14,0.012,0.733,0.004,0.87C5.729,16.909,0,19.276,0,19.276V25h4V23.073z"/>
-<path d="M17.916,19.221L15,25.816l-2.915-6.596C10.631,21.049,6.253,23.413,6,23.746V29h18v-5.25
- C23.747,23.416,19.369,21.05,17.916,19.221z"/>
-<path d="M12.557,17.34c0.003,0.128,0.01,0.794,0.002,0.921c-0.006,0.087-0.036,0.179-0.068,0.271h5.021
- c-0.031-0.093-0.062-0.185-0.067-0.271c-0.009-0.135-0.001-0.784,0.001-0.921c0.931-0.628,1.583-1.365,2.073-2.328
- c0.908-1.782,0.423-5.978,0.423-5.978c0-1.858-2.47-4.034-4.35-4.034h-1.191c-1.88,0-4.354,2.176-4.354,4.034
- c0,0-0.431,4.175,0.419,5.972C10.932,15.988,11.604,16.714,12.557,17.34z"/>
+<path d="M24.155,14.925c-0.009-0.146,0-0.75,0.003-0.896c0.947-0.685,1.361-1.57,1.861-2.618c0.926-1.938,0.587-6.022,0.587-6.022 C26.606,3.367,24.183,1,22.269,1h-1.214c-1.253,0-2.89,1.015-3.874,2.282c2.34,0.791,4.678,3.135,4.758,5.621 c0.108,0.996,0.446,4.888-0.639,7.017c-0.438,0.86-0.994,1.603-1.683,2.243c0.582,0.637,2.014,1.676,4.27,3.099 c1.084,0.683,1.411,0.889,1.707,1.28L26,23.078V25h4v-5.72C30,19.28,24.273,16.909,24.155,14.925z"/>
+<path d="M4,23.073l0.407-0.536c0.296-0.391,0.622-0.597,1.704-1.277c2.242-1.411,3.67-2.445,4.261-3.083 c-0.731-0.662-1.288-1.417-1.714-2.314c-1.002-2.12-0.705-5.979-0.611-6.944c0.071-2.494,2.42-4.848,4.768-5.638 C11.827,2.014,10.188,1,8.936,1H7.722C5.807,1,3.38,3.367,3.38,5.388c0,0-0.29,4.066,0.575,6.022 c0.475,1.067,0.918,1.963,1.889,2.645c0.003,0.14,0.012,0.733,0.004,0.87C5.729,16.909,0,19.276,0,19.276V25h4V23.073z"/>
+<path d="M17.916,19.221L15,25.816l-2.915-6.596C10.631,21.049,6.253,23.413,6,23.746V29h18v-5.25 C23.747,23.416,19.369,21.05,17.916,19.221z"/>
+<path d="M12.557,17.34c0.003,0.128,0.01,0.794,0.002,0.921c-0.006,0.087-0.036,0.179-0.068,0.271h5.021 c-0.031-0.093-0.062-0.185-0.067-0.271c-0.009-0.135-0.001-0.784,0.001-0.921c0.931-0.628,1.583-1.365,2.073-2.328 c0.908-1.782,0.423-5.978,0.423-5.978c0-1.858-2.47-4.034-4.35-4.034h-1.191c-1.88,0-4.354,2.176-4.354,4.034 c0,0-0.431,4.175,0.419,5.972C10.932,15.988,11.604,16.714,12.557,17.34z"/>
</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hard_disk.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<path d="M24,1H6C4.9,1,4,1.9,4,3v24c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C26,1.9,25.1,1,24,1z M14,27H6v-8.695 c0.81,1.153,1.844,2.131,3.025,2.901L12,16v6.563c0.646,0.184,1.311,0.324,2,0.387V27z M24,27h-8v-3h8V27z M15,21 c-0.688,0-1.356-0.084-2-0.23V16c0-0.453-0.305-0.851-0.743-0.967C12.171,15.011,12.085,15,12,15c-0.353,0-0.687,0.187-0.868,0.504 l-1.929,3.375C7.246,17.229,6,14.761,6,12c0-4.971,4.029-9,9-9s9,4.029,9,9S19.971,21,15,21z"/>
+<path d="M15,9c-1.654,0-3,1.346-3,3s1.346,3,3,3s3-1.346,3-3S16.654,9,15,9z M15,13c-0.551,0-1-0.448-1-1s0.449-1,1-1s1,0.448,1,1 S15.551,13,15,13z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hd.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hd.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
<path d="M0.998,3v24h28V3H0.998z M25.998,24h-22V6h22V24z"/>
<path d="M14.057,10.632v8.736H12.44V15.12H9.943v4.248H8.332v-8.736h1.611v3.492h2.496v-3.492H14.057z"/>
-<path d="M15.785,10.632h2.484c1.141,0,1.991,0.338,2.555,1.014c0.563,0.676,0.844,1.742,0.844,3.199
- c0,1.594-0.296,2.746-0.889,3.457c-0.592,0.712-1.486,1.066-2.687,1.066h-2.309L15.785,10.632L15.785,10.632z M17.396,11.628v6.731
- h0.731c0.608,0,1.073-0.244,1.392-0.734c0.319-0.49,0.479-1.395,0.479-2.71c0-1.168-0.156-2.008-0.469-2.52
- c-0.313-0.512-0.787-0.768-1.424-0.768L17.396,11.628L17.396,11.628z"/>
+<path d="M15.785,10.632h2.484c1.141,0,1.991,0.338,2.555,1.014c0.563,0.676,0.844,1.742,0.844,3.199 c0,1.594-0.296,2.746-0.889,3.457c-0.592,0.712-1.486,1.066-2.687,1.066h-2.309L15.785,10.632L15.785,10.632z M17.396,11.628v6.731 h0.731c0.608,0,1.073-0.244,1.392-0.734c0.319-0.49,0.479-1.395,0.479-2.71c0-1.168-0.156-2.008-0.469-2.52 c-0.313-0.512-0.787-0.768-1.424-0.768L17.396,11.628L17.396,11.628z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_help_all.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_help_all.svg Thu May 27 13:10:59 2010 +0300
@@ -1,31 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M17.479,20.006c-0.683,0-1.26,0.239-1.735,0.726c-0.478,0.483-0.714,1.071-0.714,1.764c0,0.693,0.236,1.286,0.714,1.771
- C16.22,24.757,16.797,25,17.479,25c0.674,0,1.249-0.243,1.729-0.733c0.483-0.485,0.721-1.078,0.721-1.771
- c0-0.692-0.235-1.28-0.711-1.764C18.74,20.245,18.163,20.006,17.479,20.006z"/>
-<path d="M23.146,2.437C21.915,1.479,20.128,1,17.791,1C16.385,1,14.788,1.248,13,1.741V3.34c0.692,0.158,1.332,0.37,1.915,0.641
- c0.793-0.152,1.524-0.238,2.178-0.238c1.179,0,2.063,0.265,2.65,0.788c0.591,0.524,0.884,1.313,0.884,2.364
- c0,0.504-0.12,1.02-0.363,1.545c-0.189,0.409-0.627,0.974-1.295,1.682C18.979,10.306,19,10.479,19,10.674
- c0,1.055-0.233,2.135-0.694,3.209c-0.457,1.045-1.35,2.23-2.795,3.724v0.114h3.938v-1.433c0-0.643,0.168-1.205,0.498-1.696
- c0.329-0.487,0.987-1.226,1.97-2.213c1.343-1.368,2.191-2.461,2.552-3.284C24.822,8.268,25,7.46,25,6.674
- C25,4.804,24.382,3.393,23.146,2.437z"/>
-<path d="M5,8.452V5.741C6.788,5.248,8.385,5,9.791,5c2.337,0,4.124,0.479,5.355,1.437C16.382,7.393,17,8.804,17,10.674
- c0,0.786-0.178,1.594-0.532,2.421c-0.36,0.823-1.209,1.916-2.552,3.284c-0.982,0.987-1.641,1.726-1.97,2.213
- c-0.33,0.491-0.498,1.054-0.498,1.696v1.433H7.511v-1.653c0-1.062,0.233-1.982,0.698-2.76c0.464-0.776,1.183-1.634,2.155-2.567
- c1.024-1.01,1.657-1.778,1.899-2.301c0.243-0.525,0.363-1.041,0.363-1.545c0-1.052-0.293-1.84-0.884-2.364
- c-0.588-0.523-1.472-0.788-2.65-0.788C7.944,7.742,6.582,7.979,5,8.452z M9.479,29c-0.683,0-1.26-0.243-1.735-0.733
- c-0.478-0.485-0.714-1.078-0.714-1.771c0-0.692,0.236-1.28,0.714-1.764c0.476-0.486,1.053-0.726,1.735-0.726
- c0.684,0,1.261,0.239,1.738,0.726c0.476,0.483,0.711,1.071,0.711,1.764c0,0.693-0.237,1.286-0.721,1.771
- C10.729,28.757,10.153,29,9.479,29z"/>
+<path d="M17.479,20.006c-0.683,0-1.26,0.239-1.735,0.726c-0.478,0.483-0.714,1.071-0.714,1.764c0,0.693,0.236,1.286,0.714,1.771 C16.22,24.757,16.797,25,17.479,25c0.674,0,1.249-0.243,1.729-0.733c0.483-0.485,0.721-1.078,0.721-1.771 c0-0.692-0.235-1.28-0.711-1.764C18.74,20.245,18.163,20.006,17.479,20.006z"/>
+<path d="M23.146,2.437C21.915,1.479,20.128,1,17.791,1C16.385,1,14.788,1.248,13,1.741V3.34c0.692,0.158,1.332,0.37,1.915,0.641 c0.793-0.152,1.524-0.238,2.178-0.238c1.179,0,2.063,0.265,2.65,0.788c0.591,0.524,0.884,1.313,0.884,2.364 c0,0.504-0.12,1.02-0.363,1.545c-0.189,0.409-0.627,0.974-1.295,1.682C18.979,10.306,19,10.479,19,10.674 c0,1.055-0.233,2.135-0.694,3.209c-0.457,1.045-1.35,2.23-2.795,3.724v0.114h3.938v-1.433c0-0.643,0.168-1.205,0.498-1.696 c0.329-0.487,0.987-1.226,1.97-2.213c1.343-1.368,2.191-2.461,2.552-3.284C24.822,8.268,25,7.46,25,6.674 C25,4.804,24.382,3.393,23.146,2.437z"/>
+<path d="M5,8.452V5.741C6.788,5.248,8.385,5,9.791,5c2.337,0,4.124,0.479,5.355,1.437C16.382,7.393,17,8.804,17,10.674 c0,0.786-0.178,1.594-0.532,2.421c-0.36,0.823-1.209,1.916-2.552,3.284c-0.982,0.987-1.641,1.726-1.97,2.213 c-0.33,0.491-0.498,1.054-0.498,1.696v1.433H7.511v-1.653c0-1.062,0.233-1.982,0.698-2.76c0.464-0.776,1.183-1.634,2.155-2.567 c1.024-1.01,1.657-1.778,1.899-2.301c0.243-0.525,0.363-1.041,0.363-1.545c0-1.052-0.293-1.84-0.884-2.364 c-0.588-0.523-1.472-0.788-2.65-0.788C7.944,7.742,6.582,7.979,5,8.452z M9.479,29c-0.683,0-1.26-0.243-1.735-0.733 c-0.478-0.485-0.714-1.078-0.714-1.771c0-0.692,0.236-1.28,0.714-1.764c0.476-0.486,1.053-0.726,1.735-0.726 c0.684,0,1.261,0.239,1.738,0.726c0.476,0.483,0.711,1.071,0.711,1.764c0,0.693-0.237,1.286-0.721,1.771 C10.729,28.757,10.153,29,9.479,29z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_history.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_history.svg Thu May 27 13:10:59 2010 +0300
@@ -1,27 +1,18 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<rect x="6" y="6" width="2" height="2"/>
-<rect x="9" y="6" width="10" height="2"/>
-<rect x="6" y="11" width="2" height="2"/>
-<rect x="9" y="11" width="10" height="2"/>
-<rect x="6" y="16" width="2" height="2"/>
-<rect x="6" y="21" width="2" height="2"/>
+<rect height="2" width="2" x="6" y="6"/>
+<rect height="2" width="10" x="9" y="6"/>
+<rect height="2" width="2" x="6" y="11"/>
+<rect height="2" width="10" x="9" y="11"/>
+<rect height="2" width="2" x="6" y="16"/>
+<rect height="2" width="2" x="6" y="21"/>
<path d="M9,21v2h4.025C13.017,22.833,13,22.669,13,22.5c0-0.512,0.052-1.01,0.131-1.5H9z"/>
<path d="M15.591,16H9v2h5.137C14.531,17.269,15.025,16.601,15.591,16z"/>
-<path d="M4,26V3h18v10.025C22.166,13.017,22.331,13,22.5,13c0.866,0,1.702,0.127,2.5,0.345V0H1v29h14.591
- c-0.813-0.865-1.468-1.879-1.914-3H4z"/>
-<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28
- c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
+<path d="M4,26V3h18v10.025C22.166,13.017,22.331,13,22.5,13c0.866,0,1.702,0.127,2.5,0.345V0H1v29h14.591 c-0.813-0.865-1.468-1.879-1.914-3H4z"/>
+<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28 c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
<polygon points="23,22 23,18 21,18 21,22 21,24 23,24 27,24 27,22 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hold_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hold_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M28.91,10.03l-7.671,2.057c-0.341,0.139-0.547,0.472-0.461,0.798l0.571,2.261c-0.002-0.001-0.008-0.001-0.01-0.001,0.001,0.001,0.002,0.002,0.002,0.003-1.125,0.355-3.859,0.922-5.933,0.923-2.159-0.001-4.325-0.161-6.604-0.766,0,0-0.009-0.002-0.012-0.002,0.006-0.007,0.012-0.013,0.017-0.02l0.648-2.953c0.081-0.374-0.194-0.738-0.608-0.816l-7.822-1.486c-0.412-0.076-0.811,0.162-0.891,0.537,0,0-0.068,0.325-0.126,1.224-0.001,0-0.001,0-0.001,0.002-0.031,0.489,0.042,0.586,0.092,1.13,0.043,0.466,0.126,0.885,0.219,1.254,0,0.001-0.003,0.003-0.002,0.005,0.019,0.074,0.039,0.145,0.059,0.216,0.002,0.009,0.005,0.018,0.006,0.025,0.203,0.72,0.43,1.17,0.43,1.17,0.338,0.572,1.855,2.187,3.813,3.068,1.244,0.559,5.891,1.607,10.1,1.608,4.205,0.001,9.565-1.174,11.44-2.178s2.946-2.212,3.165-2.671,0.59-1.164,0.658-2.688c0.023-0.509,0.037-0.543-0.01-1.002,0-0.003-0.003-0.004-0.003-0.007v0.007c-0.094-0.907-0.161-1.243-0.161-1.243-0.12-0.35-0.52-0.549-0.92-0.44z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M29,14l-14-13-14,13,3,3v12h22v-12l3-2.999zm-6.46,0h-15.08l7.539-7,7.54,7zm0.46,12h-5v-7h-6v7h-5v-10h16v10z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M25.34,17.21v2.332h1.691v2.277c-0.228,0.082-0.528,0.148-1.005,0.148-1.754,0-2.802-1.453-2.802-3.889,0-1.189,0.382-5.021,4.613-3.446l0.46,0.289,0.536-2.296s-0.991-0.788-2.648-0.788c-2.989,0-5.13,2.537-5.005,6.31,0.188,5.582,3.314,6.182,4.773,6.182,1.977,0,3.043-0.787,3.043-0.787v-6.332h-3.647z"/>
-
<path d="M12.68,5.949h6.298v3.392h-3.878v2.937s4.93-0.916,4.631,6.4c0,0,0.152,5.113-3.726,5.584-1.121,0.139-3.352-0.305-3.352-0.305l0.026-3.436s4.743,1.521,4.743-2.199c0-3.982-4.743-2.626-4.743-2.626v-9.741z"/>
-
<rect height="2.625" width="2.144" x="8.896" y="21.54"/>
-
<path d="M6.864,14.16c0.727-0.922,1.144-2.201,1.144-3.72,0-1.288-0.417-4.766-3.377-4.766-2.039,0-3.266,1.814-3.266,1.814l0.755,3.327s1.138-1.578,2.245-1.578c0.545,0,1.199,0.266,1.199,1.552,0,1.524-1.21,1.86-1.67,1.86h-1.291v3.435h1.295c0.33,0,2.188,0.4,2.015,2.369-0.331,3.822-3.281,1.695-3.613,1.373l-0.562-0.559-0.738,3.37s1.095,1.631,3.228,1.631c2.848,0,4.159-2.992,4.159-5.771,0-1.85-0.58-3.43-1.523-4.33z"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_attach.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_attach.svg Thu May 27 13:10:59 2010 +0300
@@ -1,31 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="8.182,22.26,5.341,22.26,9.513,28.94,11.54,27.67"/>
-
<polygon points="10.52,22.26,12.02,24.68,16.12,24.68,14.61,22.26"/>
-
<polygon points="16.95,22.26,18.45,24.68,22.56,24.68,21.06,22.26"/>
-
<polygon points="23.4,22.26,24.64,24.26,24.64,22.26"/>
-
<polygon points="21.76,19.7,24.64,19.7,20.47,13.02,18.42,14.3"/>
-
<polygon points="19.42,19.7,17.92,17.28,13.86,17.28,15.36,19.7"/>
-
<polygon points="13.03,19.7,11.53,17.28,7.427,17.28,8.927,19.7"/>
-
<polygon points="5.341,17.68,5.341,19.7,6.594,19.7"/>
-
<path d="M22.18,7.594v1.319h1.179v1.291c-0.159,0.045-0.368,0.083-0.699,0.083-1.218,0-1.942-0.823-1.942-2.201,0-0.674,0.261-2.843,3.199-1.952l0.32,0.164,0.374-1.299s-0.691-0.447-1.841-0.447c-2.076,0-3.559,1.437-3.474,3.575,0.13,3.16,2.3,3.499,3.311,3.499,1.373,0,2.112-0.448,2.112-0.448v-3.576h-2.538z"/>
-
<path d="M13.39,1.219h4.371v1.917h-2.691v1.663s3.421-0.518,3.215,3.622c0,0,0.107,2.896-2.588,3.165-0.778,0.079-2.327-0.174-2.327-0.174l0.021-1.946s3.291,0.862,3.291-1.245c0-2.252-3.291-1.487-3.291-1.487v-5.523z"/>
-
<rect height="1.487" width="1.486" x="10.76" y="10.04"/>
-
<path d="M9.353,5.866c0.506-0.523,0.79-1.249,0.79-2.107,0-0.728-0.288-2.7-2.343-2.7-1.415,0-2.266,1.029-2.266,1.029l0.527,1.883s0.788-0.896,1.557-0.896c0.379,0,0.828,0.152,0.828,0.879,0,0.866-0.836,1.051-1.158,1.051h-0.891v1.946h0.897c0.232,0,1.52,0.223,1.402,1.342-0.231,2.167-2.279,0.961-2.51,0.777l-0.393-0.315-0.512,1.903s0.761,0.925,2.245,0.925c1.977,0,2.885-1.693,2.885-3.266,0-1.045-0.4-1.936-1.057-2.448z"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_context.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_context.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="24.72,22.22,5.481,22.22,9.64,28.88,11.68,27.6,9.827,24.63,9.839,24.63,9.839,24.63,24.72,24.63"/>
-
<polygon points="20.56,13,18.52,14.28,20.37,17.25,5.481,17.26,5.481,19.66,24.72,19.66"/>
-
<path d="M22.12,7.638v1.314h1.176v1.287c-0.156,0.045-0.365,0.083-0.697,0.083-1.211,0-1.936-0.821-1.936-2.193,0-0.672,0.261-2.834,3.19-1.947l0.32,0.164,0.37-1.295s-0.688-0.447-1.833-0.447c-2.073,0-3.55,1.433-3.463,3.563,0.128,3.151,2.293,3.489,3.301,3.489,1.366,0,2.104-0.447,2.104-0.447v-3.562h-2.525z"/>
-
<path d="M13.37,1.285h4.357v1.911h-2.687v1.656s3.413-0.515,3.208,3.611c0,0,0.106,2.887-2.58,3.154-0.775,0.079-2.318-0.175-2.318-0.175l0.02-1.938s3.28,0.86,3.28-1.241c0-2.244-3.28-1.482-3.28-1.482v-5.494z"/>
-
<rect height="1.482" width="1.482" x="10.74" y="10.08"/>
-
<path d="M9.341,5.917c0.501-0.521,0.79-1.245,0.79-2.101,0-0.726-0.289-2.691-2.339-2.691-1.407,0-2.258,1.026-2.258,1.026l0.527,1.876s0.785-0.893,1.552-0.893c0.378,0,0.826,0.152,0.826,0.877,0,0.861-0.834,1.048-1.154,1.048h-0.892v1.938h0.892c0.231,0,1.517,0.223,1.397,1.337-0.229,2.161-2.27,0.958-2.499,0.775l-0.393-0.313-0.51,1.897s0.761,0.921,2.24,0.921c1.968,0,2.873-1.688,2.873-3.255,0-1.042-0.398-1.928-1.049-2.438z"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_multipdp.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_multipdp.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="20.47,13.06,18.42,14.34,20.28,17.32,17.24,17.32,14.58,13.06,12.53,14.34,14.39,17.32,5.341,17.32,5.341,19.74,24.64,19.74"/>
-
<polygon points="9.512,28.89,11.56,27.61,9.71,24.63,12.74,24.63,15.4,28.89,17.45,27.61,15.59,24.63,24.64,24.63,24.64,22.21,5.341,22.21"/>
-
<path d="M22.18,7.645v1.318h1.179v1.291c-0.159,0.044-0.368,0.083-0.699,0.083-1.218,0-1.943-0.822-1.943-2.201,0-0.674,0.262-2.843,3.2-1.953l0.32,0.164,0.374-1.299s-0.691-0.447-1.841-0.447c-2.076,0-3.559,1.437-3.474,3.574,0.13,3.161,2.3,3.5,3.311,3.5,1.373,0,2.112-0.449,2.112-0.449v-3.575h-2.538z"/>
-
<path d="M13.39,1.271h4.371v1.917h-2.691v1.662s3.421-0.518,3.215,3.622c0,0,0.107,2.898-2.588,3.166-0.778,0.077-2.327-0.174-2.327-0.174l0.021-1.945s3.291,0.862,3.291-1.246c0-2.251-3.291-1.487-3.291-1.487v-5.521z"/>
-
<rect height="1.487" width="1.486" x="10.76" y="10.09"/>
-
<path d="M9.353,5.917c0.506-0.523,0.79-1.248,0.79-2.108,0-0.729-0.288-2.7-2.343-2.7-1.413,0-2.264,1.029-2.264,1.029l0.529,1.884s0.786-0.897,1.554-0.897c0.38,0,0.83,0.153,0.83,0.88,0,0.865-0.837,1.052-1.158,1.052h-0.894v1.945h0.897c0.232,0,1.52,0.224,1.402,1.342-0.231,2.167-2.28,0.964-2.51,0.777l-0.393-0.313-0.512,1.902s0.761,0.924,2.245,0.924c1.977,0,2.884-1.693,2.884-3.265,0-1.047-0.4-1.937-1.057-2.448z"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_suspended.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_suspended.svg Thu May 27 13:10:59 2010 +0300
@@ -1,25 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="24.64,22.19,24.64,24.61,14.34,24.6,16.36,22.19"/>
-
<polygon points="5.342,22.19,10.6,22.19,8.563,24.6,5.342,24.6"/>
-
<polygon points="24.64,17.21,24.64,19.63,18.5,19.62,20.52,17.21"/>
-
<polygon points="5.342,19.62,5.342,17.21,14.8,17.21,12.76,19.62"/>
-
<polygon points="21.39,14.63,9.415,28.9,7.564,27.35,19.59,13.01"/>
-
<path d="M22.18,7.633v1.318h1.179v1.29c-0.159,0.044-0.368,0.082-0.699,0.082-1.218,0-1.943-0.823-1.943-2.2,0-0.675,0.262-2.843,3.2-1.953l0.32,0.165,0.374-1.299s-0.691-0.448-1.841-0.448c-2.076-0.002-3.559,1.436-3.474,3.573,0.13,3.16,2.3,3.499,3.311,3.499,1.373,0,2.112-0.447,2.112-0.447v-3.577h-2.537z"/>
-
<path d="M13.39,1.257h4.371v1.917h-2.691v1.661s3.421-0.517,3.215,3.623c0,0,0.107,2.897-2.588,3.165-0.778,0.08-2.327-0.175-2.327-0.175l0.021-1.945s3.291,0.863,3.291-1.245c0-2.252-3.291-1.487-3.291-1.487v-5.506z"/>
-
<rect height="1.487" width="1.486" x="10.77" y="10.08"/>
-
<path d="M9.354,5.904c0.506-0.524,0.79-1.247,0.79-2.107,0-0.73-0.288-2.7-2.343-2.7-1.415,0-2.266,1.029-2.266,1.029l0.527,1.883s0.788-0.896,1.557-0.896c0.379,0,0.828,0.152,0.828,0.88,0,0.864-0.836,1.05-1.158,1.05h-0.89v1.945h0.897c0.232,0,1.52,0.225,1.402,1.342-0.231,2.167-2.28,0.962-2.51,0.778l-0.393-0.315-0.512,1.903s0.761,0.925,2.245,0.925c1.977,0,2.884-1.695,2.884-3.267,0-1.047-0.4-1.936-1.056-2.449z"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_img_quality.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_img_quality.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<rect height="3.375" width="3.375" x="24.38" y="13.31"/>
-
<rect height="3.375" width="3.375" x="19.69" y="7.781"/>
-
<rect height="3.375" width="3.375" x="19.69" y="18.84"/>
-
<rect height="3.375" width="3.375" x="19.69" y="13.31"/>
-
<polygon points="18.38,5.625,18.38,2.25,15,2.25,2.25,15,15,27.75,18.38,27.75,18.38,24.38,15,24.38,15,22.22,18.38,22.22,18.38,18.84,15,18.84,15,16.69,18.38,16.69,18.38,13.31,15,13.31,15,11.16,18.38,11.16,18.38,7.781,15,7.781,15,5.625"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_info.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_info.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M15,1.702c-7.182,0-13,5.818-13,13s5.818,13,13,13,13-5.818,13-13-5.82-13-13-13zm0,3.672c1.576,0,2.854,1.204,2.854,2.688s-1.277,2.688-2.854,2.688-2.854-1.203-2.854-2.688,1.28-2.688,2.85-2.688zm4.12,18.04h-8.229v-1.443h1.123v-7.612h-1.123v-1.444h7.107v9.057h1.121v1.426z"/>
-
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_iso.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_iso.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M2.854,21.55v-1.512h1.081v-10.08h-1.081v-1.512h4.588v1.512h-1.082v10.08h1.081v1.512h-4.587z"/>
-
<path d="M11.58,21.69c-0.955,0-1.896-0.12-2.821-0.36v-1.564c1.014,0.275,1.913,0.413,2.698,0.413,0.744,0,1.325-0.167,1.745-0.501,0.418-0.334,0.628-0.809,0.628-1.424,0-0.58-0.173-1.035-0.519-1.366s-0.987-0.764-1.925-1.297c-1.025-0.574-1.717-1.152-2.074-1.736-0.357-0.582-0.536-1.246-0.536-1.99,0-1.184,0.396-2.072,1.191-2.668,0.793-0.594,1.829-0.892,3.106-0.892,0.926,0,1.778,0.088,2.558,0.264v1.529c-0.826-0.188-1.594-0.281-2.303-0.281-0.645,0-1.16,0.152-1.547,0.457s-0.58,0.727-0.58,1.266c0,0.521,0.168,0.939,0.506,1.253,0.336,0.313,0.912,0.695,1.727,1.146,1.125,0.627,1.878,1.233,2.259,1.819s0.571,1.245,0.571,1.978c0,1.318-0.391,2.307-1.174,2.967-0.79,0.65-1.96,0.98-3.52,0.98z"/>
-
<path d="M22.36,21.69c-1.582,0-2.772-0.554-3.573-1.661-0.799-1.107-1.199-2.845-1.199-5.212,0-2.227,0.4-3.868,1.199-4.926,0.801-1.058,1.991-1.587,3.573-1.587,1.594,0,2.79,0.544,3.591,1.63,0.799,1.088,1.199,2.715,1.199,4.883,0,2.361-0.401,4.098-1.204,5.207-0.81,1.11-2.01,1.66-3.59,1.66zm0-1.51c0.732,0,1.29-0.383,1.675-1.146,0.383-0.766,0.575-2.17,0.575-4.215,0-1.852-0.19-3.147-0.571-3.889s-0.94-1.112-1.679-1.112c-0.732,0-1.291,0.354-1.675,1.06s-0.575,2.02-0.575,3.941c0,1.893,0.19,3.26,0.571,4.1,0.37,0.84,0.93,1.26,1.67,1.26z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_italic.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_italic.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<polygon fill-rule="evenodd" points="11,3,11,6,14,6,10,24,7,24,7,27,20,27,20,24,17,24,21,6,24,6,24,3"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_join_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_join_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M10.21,8.109c0.054,0.038,0.102,0.08,0.158,0.117,0.002,0.085,0.007,0.529,0.002,0.614-0.004,0.053-0.023,0.109-0.042,0.166,0.089,1.067,0.151,3.104-0.483,4.349-0.273,0.539-0.615,1.011-1.033,1.424,0.305,0.294,0.856,0.707,1.623,1.221h6.824c-0.354-0.427-0.67-0.879-0.912-1.389-0.469-0.993-0.623-2.394-0.651-3.634-1.034-0.719-2.032-1.543-2.069-2.137-0.006-0.09,0-0.523,0-0.614,0.621-0.419,1.057-0.91,1.383-1.552,0.605-1.188,0.281-3.985,0.281-3.985,0-1.242-1.64-2.692-2.89-2.692h-0.8c-1.254,0-2.902,1.45-2.902,2.689,0,0-0.172,1.68,0.018,2.992,0.761,0.665,1.314,1.533,1.494,2.428z"/>
-
<path d="M19.99,15.8c0.003,0.112,0.009,0.695,0.001,0.807-0.005,0.076-0.032,0.158-0.061,0.24,0-0.001,0.002-0.002,0.002-0.003h4.393c-0.027-0.081-0.055-0.162-0.06-0.237-0.007-0.118-0.001-0.687,0.001-0.807,0.814-0.549,1.385-1.194,1.814-2.037,0.795-1.559,0.369-5.229,0.369-5.229,0-1.626-2.16-3.53-3.805-3.53h-1.04c-1.645,0-3.81,1.904-3.81,3.53,0,0-0.376,3.652,0.367,5.225,0.4,0.86,0.99,1.49,1.83,2.04z"/>
-
<path d="M24.68,17.44l-2.552,5.771-2.551-5.771c-0.549,0.688-1.57,1.464-2.574,2.146v6.41h13v-4.594c-0.23-0.3-4.06-2.37-5.33-3.97z"/>
-
<path d="M7.129,14.84c-0.006-0.09,0-0.523,0-0.614,0.621-0.419,1.057-0.91,1.383-1.552,0.605-1.188,0.281-3.985,0.281-3.985,0-1.245-1.647-2.695-2.898-2.695h-0.795c-1.254,0-2.903,1.45-2.903,2.689,0,0-0.287,2.783,0.279,3.981,0.311,0.654,0.76,1.139,1.395,1.556,0.002,0.085,0.007,0.529,0.002,0.614-0.062,0.98-2.734,2.58-3.873,3.31v3.85h1.454l7.665-5.078c-1.004-0.7-1.953-1.5-1.99-2.08z"/>
-
<polygon points="11,18.08,2,23.54,11,29,11,26,15,26,15,21,11,21"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_landscape.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_landscape.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
-<g opacity="0.5">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30" x="0.002"/>
-
</g>
-
<path d="M29,28c0.002-0.07,0.006-0.141,0.006-0.211,0-6.719-2.422-12.16-5.41-12.16-1.65,0-3.125,1.667-4.117,4.286-1.57-7.04-4.9-11.92-8.78-11.92-5.234,0-9.488,8.881-9.703,20h28z"/>
-
<circle cx="23.5" cy="4.891" r="2.891"/>
-
<circle cx="23.5" cy="7.438" r="2.5"/>
-
<path d="M29,6.438c0,1.381-1.119,2.5-2.5,2.5h-6c-1.381,0-2.5-1.119-2.5-2.5s1.119-2.5,2.5-2.5h6c1.38,0,2.5,1.119,2.5,2.5z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_lap.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
-</g>
-<rect x="20" y="15" width="2" height="6"/>
-<path d="M19.5,10.115C19.991,10.047,20.49,10,21,10s1.009,0.047,1.5,0.115V9.634H24V8.75C24,8.334,23.664,8,23.249,8h-4.5
- C18.334,8,18,8.334,18,8.75v0.884h1.5V10.115z"/>
-<path d="M21,12c-4.971,0-9,4.029-9,9c0,4.972,4.029,9,9,9s9-4.028,9-9C30,16.029,25.971,12,21,12z M21,28c-3.866,0-7-3.134-7-7
- s3.134-7,7-7s7,3.134,7,7S24.866,28,21,28z"/>
-<path d="M29.697,14.291C29.886,13.898,30,13.464,30,13c0-1.656-1.344-3-3-3c-0.766,0-1.457,0.296-1.987,0.769
- C26.877,11.502,28.49,12.729,29.697,14.291z"/>
-<path d="M16.987,10.769C16.457,10.296,15.766,10,15,10c-1.656,0-3,1.344-3,3c0,0.464,0.114,0.898,0.303,1.291
- C13.51,12.729,15.123,11.502,16.987,10.769z"/>
-<path d="M7.5,2.115C7.991,2.047,8.49,2,9,2s1.009,0.047,1.5,0.115V1.634H12V0.75C12,0.334,11.664,0,11.249,0h-4.5
- C6.334,0,6,0.334,6,0.75v0.884h1.5V2.115z"/>
-<path d="M17.697,6.291C17.886,5.898,18,5.464,18,5c0-1.656-1.344-3-3-3c-0.766,0-1.457,0.296-1.987,0.769
- C14.877,3.502,16.49,4.729,17.697,6.291z"/>
-<path d="M4.987,2.769C4.457,2.296,3.766,2,3,2C1.344,2,0,3.344,0,5c0,0.464,0.114,0.898,0.303,1.291
- C1.51,4.729,3.123,3.502,4.987,2.769z"/>
-<path d="M10,21c0-0.368,0.025-0.73,0.063-1.089C9.715,19.964,9.362,20,9,20c-3.866,0-7-3.134-7-7s3.134-7,7-7
- c1.958,0,3.727,0.806,4.996,2.102C14.32,8.035,14.656,8,15,8c0.365,0,0.724,0.054,1.076,0.133c0.037-0.164,0.092-0.32,0.157-0.472
- C14.594,5.444,11.969,4,9,4c-4.971,0-9,4.029-9,9c0,4.972,4.029,9,9,9c0.355,0,0.703-0.025,1.047-0.066
- C10.021,21.625,10,21.315,10,21z"/>
-<rect x="8" y="7" width="2" height="6"/>
-</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_last_result.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_last_result.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<rect x="7" y="18" width="20" height="4"/>
+<rect height="4" width="20" x="7" y="18"/>
<path d="M16.655,10c-0.415,1.519-1.196,2.885-2.246,4H27v-4H16.655z"/>
-<path d="M15,7.5C15,3.364,11.636,0,7.5,0S0,3.364,0,7.5S3.364,15,7.5,15S15,11.636,15,7.5z M7.5,2C10.532,2,13,4.467,13,7.5
- c0,0.579-0.092,1.137-0.258,1.662c-0.934-1.73-2.69-2.95-4.742-3.135V3L2.026,6.982C2.288,4.191,4.643,2,7.5,2z M2,7.5
- c0-0.163,0.011-0.324,0.024-0.483L8,11V8.055c1.742,0.239,3.122,1.593,3.395,3.324C10.398,12.38,9.021,13,7.5,13
- C4.468,13,2,10.533,2,7.5z"/>
+<path d="M15,7.5C15,3.364,11.636,0,7.5,0S0,3.364,0,7.5S3.364,15,7.5,15S15,11.636,15,7.5z M7.5,2C10.532,2,13,4.467,13,7.5 c0,0.579-0.092,1.137-0.258,1.662c-0.934-1.73-2.69-2.95-4.742-3.135V3L2.026,6.982C2.288,4.191,4.643,2,7.5,2z M2,7.5 c0-0.163,0.011-0.324,0.024-0.483L8,11V8.055c1.742,0.239,3.122,1.593,3.395,3.324C10.398,12.38,9.021,13,7.5,13 C4.468,13,2,10.533,2,7.5z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_light.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_light.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<rect height="4" width="2" x="14" y="0"/>
-
<rect height="4" width="6" x="12" y="26"/>
-
<path d="M15,6.214c-5.002,0-8.495,3.298-8.495,8.019,0,0.695,0,2.539,4.627,8.769l0.899,1.213h5.95l0.899-1.213c4.624-6.23,4.624-8.074,4.624-8.769,0-4.718-3.49-8.016-8.5-8.016zm1.47,15.01h-2.932s-4.035-5.436-4.035-6.982c0-3.355,2.464-5.021,5.5-5.019,3.038-0.002,5.5,1.663,5.5,5.019,0,1.54-4.03,6.98-4.03,6.98z"/>
-
<rect height="2" width="4" y="10"/>
-
<rect height="2" width="4" x="26" y="10"/>
-
<rect height="4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -0.7621 5.2862)" width="2" x="5" y="1.563"/>
-
<rect height="4" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 38.4511 23.053)" width="2" x="23" y="1.563"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_light_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_light_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<rect fill="none" height="30" width="30"/>
-
<rect height="3.75" width="5.25" x="12.33" y="21.75"/>
-
<path d="M11.13,8.065c0.958-0.876,2.313-1.317,3.822-1.315,2.901-0.002,5.25,1.612,5.25,4.861,0,0.715-0.877,2.285-1.793,3.734l1.641,1.641c1.595-2.465,2.402-4.267,2.402-5.375,0-4.252-3.012-7.111-7.506-7.111-2.239,0-4.111,0.713-5.424,1.958l1.614,1.618z"/>
-
<path d="M15.22,18.38h-1.666s-1.937-2.652-3.063-4.727l-2.979-2.981c-0.035,0.308-0.058,0.621-0.058,0.944,0,1.482,1.441,4.205,4.283,8.093l0.674,0.922h5.057l-2.25-2.24z"/>
-
<rect height="33.24" transform="matrix(-0.7062 0.708 -0.708 -0.7062 36.1343 15.0037)" width="1.4" x="14.25" y="-1.62"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_location.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_location.svg Thu May 27 13:10:59 2010 +0300
@@ -1,11 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<path d="M24.64,2.317c-1.588,1.121-4.315,2.698-5.496,2.698h-0.004c-0.271-0.031-0.67-0.292-1.092-0.568-0.836-0.548-1.982-1.299-3.654-1.31-0.963,0-2.313,0.739-3.456,1.504l5.146,13.32c0.676-1.401,1.627-3.068,2.503-3.689,0.306-0.218,1.161-0.649,1.849-0.995,0.693-0.351,1.294-0.653,1.648-0.878,2.91-1.868,3.971-8.409,4.082-9.149l0.33-2.251-1.86,1.317z"/>
-
<polygon points="8.435,3.566,3.5,5.465,4.802,8.84,5.583,8.539,12.58,26.66,15.88,29,16.74,25.07"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_location_collection.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_location_collection.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<path d="M17.59,10.22c-0.906,0.64-2.466,1.541-3.142,1.541h-0.002c-0.154-0.018-0.383-0.167-0.623-0.324-0.479-0.314-1.133-0.742-2.09-0.749-0.551,0-1.32,0.422-1.975,0.859l2.935,7.61c0.387-0.801,0.93-1.753,1.432-2.108,0.176-0.124,0.664-0.371,1.057-0.568,0.396-0.2,0.738-0.373,0.942-0.502,1.664-1.067,2.27-4.806,2.332-5.228l0.193-1.287-1.06,0.757z"/>
-
<polygon points="8.333,10.93,5.513,12.02,6.257,13.95,6.704,13.77,10.7,24.13,12.59,25.47,13.08,23.22"/>
-
<polygon points="5.999,1,5.999,4,26,4,26,24,29,24,29,1"/>
-
<path d="M1,29h23v-23h-23v23zm3-20h17v17h-17v-17z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_log.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_log.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M0,0v30h30v-30h-30zm28.24,26.99l-6.012-6.012-0.454,2.042,5.218,5.219h-24.37l5.535-5.534-0.454-2.042-5.942,5.941v-23.6l9.352,9.352h2.119v-0.377l-2.467-2.467c-0.202-0.056-0.401-0.12-0.594-0.202-2.479-1.04-3.137-2.756-3.311-3.69l-3.856-3.856h23.59l-3.413,3.413c-0.041,0.684-0.408,2.89-3.363,4.141-0.348,0.147-0.714,0.25-1.093,0.315l-1.968,1.968v0.763h1.732l9.738-9.738v24.36z" fill-opacity="0.5" stroke-opacity="0.5"/>
-
<rect height="3.519" width="17.65" x="6.177" y="13.25"/>
-
<polygon points="9.706,25.59,20.29,25.59,22.06,17.65,7.941,17.65"/>
-
<path d="M10.52,8.506c1.35,0.571,2.732,0.287,3.599-0.017v3.875h1.766v-3.871c0.866,0.304,2.249,0.588,3.599,0.017,2.926-1.238,2.831-3.499,2.831-3.499s-1.41-1.298-4.335-0.06c-2.645,1.12-2.94,2.791-2.973,3.101h-0.01c-0.032-0.31-0.328-1.98-2.973-3.101-2.925-1.238-4.335,0.06-4.335,0.06s-0.102,2.261,2.825,3.499z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_low_light.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_low_light.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<rect height="4" width="2" x="14" y="0"/>
-
<rect height="4" width="6" x="12" y="26"/>
-
<path d="M15,6.215c-5.001,0-8.495,3.297-8.495,8.019,0,0.694,0,2.538,4.627,8.769l0.898,1.213h5.951l0.898-1.213c4.625-6.23,4.625-8.074,4.625-8.769,0-4.718-3.49-8.015-8.5-8.015zm1.47,15h-2.931s-4.036-5.435-4.036-6.981c0-3.355,2.463-5.021,5.5-5.019,3.037-0.002,5.5,1.663,5.5,5.019,0,1.54-4.03,6.98-4.03,6.98z"/>
-
<rect height="4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -0.7621 5.2862)" width="2" x="5" y="1.563"/>
-
<rect height="4" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 38.4511 23.053)" width="2" x="23" y="1.563"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_lsk_horizontal.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_lsk_horizontal.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M19,10h-18v4h18c3.309,0,6,2.691,6,6h4c0-5.51-4.49-10-10-10z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_lsk_vertical.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_lsk_vertical.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M10,11v18h4v-18c0-3.309,2.691-6,6-6v-4c-5.51,0-10,4.486-10,10z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_memory_in_use.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_memory_in_use.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M18.24,1h-14.24v28h22v-20.24l-7.76-7.758zm4.76,25h-16v-22h10l6,6v16z"/>
-
<polygon points="16.75,5,16,5,16,7,14,7,14,5,12,5,12,7,10,7,10,5,8,5,8,15,22,15,22,10.25"/>
-
<rect height="2" width="14" x="8" y="23"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_merge.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
-</g>
-<path d="M29,17l-8-6v4h-4v-0.025C12.5,14.738,8.827,11.364,8.13,7H4.089c0.346,3.111,1.762,5.895,3.858,8H1v4h20v4L29,17z"/>
-</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_mic_mute.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_mic_mute.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M12.39,8.243l4.364-4.364c1.17-1.17,3.073-1.17,4.242,0l2.13,2.121c1.169,1.17,1.169,3.073,0,4.243l-4.363,4.363,1.414,1.414,4.363-4.363c1.953-1.953,1.953-5.118,0-7.071l-2.121-2.121c-1.953-1.953-5.119-1.953-7.071,0l-4.364,4.364,1.41,1.421z"/>
-
<path d="M17,12.5c0-1.93-1.57-3.5-3.5-3.5-0.109,0-0.212,0.021-0.318,0.032l3.786,3.785c0.01-0.11,0.03-0.21,0.03-0.32z"/>
-
<path d="M20,26h-5v-4.808l1.023-1.022-9.19-9.19-1.387,1.388c-0.791,0.791-1.245,1.782-1.396,2.81l-0.019,0.019,0.016,0.016c-0.209,1.499,0.245,3.074,1.398,4.228l2.121,2.121c1.153,1.153,2.728,1.607,4.227,1.398l0.016,0.016,0.019-0.019c0.059-0.009,0.117-0.007,0.175-0.017v3.05h-5c-0.553,0-1,0.447-1,1v2h15v-2c0-0.55-0.45-1-1-1z"/>
-
<rect height="35.83" transform="matrix(0.7066 -0.7076 0.7076 0.7066 -6.1479 14.8607)" width="1.867" x="13.91" y="-3.069"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_mic_unmute.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_mic_unmute.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M24.56,4.586l-2.121-2.121c-1.953-1.953-5.119-1.953-7.071,0l-4.95,4.95-1.42-1.415-2.121,2.121,1.414,1.415-2.828,2.828c-0.791,0.791-1.245,1.782-1.396,2.81l-0.019,0.019,0.016,0.016c-0.209,1.499,0.245,3.074,1.398,4.228l2.121,2.121c1.153,1.153,2.728,1.607,4.227,1.398l0.016,0.016,0.019-0.019c0.059-0.009,0.117-0.007,0.175-0.017v3.06h-5c-0.553,0-1,0.447-1,1v2h15v-2c0-0.553-0.447-1-1-1h-5v-4.808l2.464-2.464,1.414,1.414,2.121-2.121-1.414-1.414,4.95-4.95c1.96-1.956,1.96-5.121,0.01-7.074zm-11.04,9.914c-1.104,0-2-0.896-2-2s0.896-2,2-2,2,0.896,2,2-0.89,2-2,2zm9.62-4.26l-4.95,4.95-1.419-1.42c0.155-0.396,0.248-0.823,0.248-1.273,0-1.93-1.57-3.5-3.5-3.5-0.45,0-0.878,0.093-1.273,0.248l-0.42-0.419,4.95-4.95c1.17-1.17,3.073-1.17,4.242,0l2.12,2.121c1.17,1.17,1.17,3.073,0,4.24z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_minus.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_minus.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,6 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<rect fill="none" width="30" height="30"/>
-<rect x="4" y="13" width="22" height="4"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
+<rect height="4" width="22" x="4" y="13"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_missed_call_unseen.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_missed_call_unseen.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<path d="M22,14L13,2L4,14h5v6c0,4.418,3.582,8,8,8h5v-5h-3c-1.103,0-2-0.897-2-2v-7H22z"/>
-<rect x="23.244" y="6.175" transform="matrix(0.9029 -0.4298 0.4298 0.9029 -0.8692 12.117)" width="6.284" height="3.615"/>
-<rect x="19.413" y="0.456" transform="matrix(0.9206 0.3906 -0.3906 0.9206 3.0913 -8.0028)" width="3.615" height="6.285"/>
+<rect height="3.615" transform="matrix(0.9029 -0.4298 0.4298 0.9029 -0.8692 12.117)" width="6.284" x="23.244" y="6.175"/>
+<rect height="6.285" transform="matrix(0.9206 0.3906 -0.3906 0.9206 3.0913 -8.0028)" width="3.615" x="19.413" y="0.456"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_mobile.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_mobile.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M21,1H9C7.35,1,6,2.35,6,4v22c0,1.65,1.35,3,3,3h12c1.65,0,3-1.35,3-3V4C24,2.35,22.65,1,21,1z M11,26H8v-2h3V26z M15,27
- c-1.104,0-2-0.896-2-2s0.896-2,2-2c1.105,0,2,0.896,2,2S16.105,27,15,27z M22,26h-3v-2h3V26z M22,21H8V3h14V21z"/>
+<path d="M21,1H9C7.35,1,6,2.35,6,4v22c0,1.65,1.35,3,3,3h12c1.65,0,3-1.35,3-3V4C24,2.35,22.65,1,21,1z M11,26H8v-2h3V26z M15,27 c-1.104,0-2-0.896-2-2s0.896-2,2-2c1.105,0,2,0.896,2,2S16.105,27,15,27z M22,26h-3v-2h3V26z M22,21H8V3h14V21z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_mono_recognize_song.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_mono_recognize_song.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,9 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M23,5L13,2v17.357C12.31,19.129,11.549,19,10.75,19C7.574,19,5,21.016,5,23.5S7.574,28,10.75,28S17,25.984,17,23.5
- c0-0.168,0-13.449,0-13.449L23,12V5z"/>
-<path d="M20,17.014v-1.581C21.043,15.145,21.975,15,22.795,15c1.363,0,2.405,0.279,3.124,0.838C26.64,16.396,27,17.219,27,18.31
- c0,0.459-0.104,0.93-0.311,1.412c-0.21,0.48-0.705,1.118-1.488,1.916c-0.573,0.576-0.957,1.007-1.149,1.291
- c-0.192,0.286-0.29,0.614-0.29,0.989v0.836h-2.297v-0.965c0-0.619,0.136-1.156,0.407-1.609c0.271-0.453,0.689-0.953,1.257-1.498
- c0.598-0.589,0.967-1.037,1.108-1.342c0.142-0.307,0.212-0.607,0.212-0.901c0-0.613-0.171-1.073-0.516-1.379
- c-0.343-0.306-0.858-0.46-1.546-0.46C21.718,16.6,20.923,16.737,20,17.014z M22.613,29c-0.398,0-0.735-0.142-1.013-0.428
- c-0.278-0.283-0.416-0.629-0.416-1.033s0.138-0.747,0.416-1.029c0.277-0.283,0.614-0.423,1.013-0.423s0.735,0.14,1.014,0.423
- c0.277,0.282,0.415,0.625,0.415,1.029s-0.139,0.75-0.421,1.033C23.342,28.858,23.006,29,22.613,29z"/>
+<path d="M23,5L13,2v17.357C12.31,19.129,11.549,19,10.75,19C7.574,19,5,21.016,5,23.5S7.574,28,10.75,28S17,25.984,17,23.5 c0-0.168,0-13.449,0-13.449L23,12V5z"/>
+<path d="M20,17.014v-1.581C21.043,15.145,21.975,15,22.795,15c1.363,0,2.405,0.279,3.124,0.838C26.64,16.396,27,17.219,27,18.31 c0,0.459-0.104,0.93-0.311,1.412c-0.21,0.48-0.705,1.118-1.488,1.916c-0.573,0.576-0.957,1.007-1.149,1.291 c-0.192,0.286-0.29,0.614-0.29,0.989v0.836h-2.297v-0.965c0-0.619,0.136-1.156,0.407-1.609c0.271-0.453,0.689-0.953,1.257-1.498 c0.598-0.589,0.967-1.037,1.108-1.342c0.142-0.307,0.212-0.607,0.212-0.901c0-0.613-0.171-1.073-0.516-1.379 c-0.343-0.306-0.858-0.46-1.546-0.46C21.718,16.6,20.923,16.737,20,17.014z M22.613,29c-0.398,0-0.735-0.142-1.013-0.428 c-0.278-0.283-0.416-0.629-0.416-1.033s0.138-0.747,0.416-1.029c0.277-0.283,0.614-0.423,1.013-0.423s0.735,0.14,1.014,0.423 c0.277,0.282,0.415,0.625,0.415,1.029s-0.139,0.75-0.421,1.033C23.342,28.858,23.006,29,22.613,29z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_more.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_more.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<circle cx="4.5" cy="14.5" r="3.5"/>
-
<circle cx="15.5" cy="14.5" r="3.5"/>
-
<circle cx="25.5" cy="14.5" r="3.5"/>
-
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_music_albums.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_music_albums.svg Thu May 27 13:10:59 2010 +0300
@@ -1,18 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M10.5,22c1.934,0,3.5-1.344,3.5-3v-7.333L18,13V9l-6-2v9.3c-0.456-0.187-0.961-0.3-1.5-0.3C8.566,16,7,17.343,7,19
- C7,20.656,8.566,22,10.5,22z"/>
+<path d="M10.5,22c1.934,0,3.5-1.344,3.5-3v-7.333L18,13V9l-6-2v9.3c-0.456-0.187-0.961-0.3-1.5-0.3C8.566,16,7,17.343,7,19 C7,20.656,8.566,22,10.5,22z"/>
<path d="M23,6h1V5.268V3H1v24h23v-2.268V24h-1V6z M20,24H4V6h16V24z"/>
<path d="M25,6.079V7h-1v16h1v0.921c2.449-2.195,4-5.372,4-8.921S27.449,8.274,25,6.079z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_new_event.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_new_event.svg Thu May 27 13:10:59 2010 +0300
@@ -1,11 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<polygon points="18.88,18,21.13,1,8.867,1,11.12,18"/>
-
<path d="M15,19c-2.756,0-5,2.243-5,5,0,2.756,2.244,5,5,5s4.999-2.244,4.999-5c0-2.76-2.24-5-5-5z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_next.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_next.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<polygon points="20,4 20,15 20,26 24,26 24,4 "/>
<polygon points="6,26 20,15 6,4 "/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_night.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_night.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M15.25,15c0-5.596,3.541-10.35,8.5-12.18-1.4-0.521-2.92-0.82-4.5-0.82-7.18,0-13,5.82-13,13s5.821,13,13,13c1.584,0,3.096-0.297,4.5-0.816-4.96-1.83-8.5-6.58-8.5-12.18z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_night_portrait.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_night_portrait.svg Thu May 27 13:10:59 2010 +0300
@@ -1,18 +1,7 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<rect fill="none" width="30" height="30"/>
-<path d="M22.443,18.261c-0.01-0.135-0.002-0.785,0-0.922c0.932-0.627,1.584-1.365,2.074-2.328c0.908-1.781,0.422-5.977,0.422-5.977
- C24.939,7.175,22.471,5,20.59,5h-1.191c-1.879,0-4.354,2.176-4.354,4.035c0,0-0.43,4.174,0.42,5.971
- c0.467,0.982,1.139,1.709,2.092,2.334c0.002,0.129,0.01,0.795,0.002,0.922c-0.117,1.822-6.258,5.09-6.559,5.484V29h2.988v-2h2v2h8
- v-2h2v2H29v-5.25C28.699,23.353,22.559,20.083,22.443,18.261z"/>
-<path d="M6.143,8.5c0-3.229,2.023-5.971,4.857-7.029C10.197,1.173,9.334,1,8.428,1C4.324,1,1,4.357,1,8.5S4.324,16,8.428,16
- c0.906,0,1.77-0.17,2.572-0.471C8.166,14.472,6.143,11.728,6.143,8.5z"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
+<path d="M22.443,18.261c-0.01-0.135-0.002-0.785,0-0.922c0.932-0.627,1.584-1.365,2.074-2.328c0.908-1.781,0.422-5.977,0.422-5.977 C24.939,7.175,22.471,5,20.59,5h-1.191c-1.879,0-4.354,2.176-4.354,4.035c0,0-0.43,4.174,0.42,5.971 c0.467,0.982,1.139,1.709,2.092,2.334c0.002,0.129,0.01,0.795,0.002,0.922c-0.117,1.822-6.258,5.09-6.559,5.484V29h2.988v-2h2v2h8 v-2h2v2H29v-5.25C28.699,23.353,22.559,20.083,22.443,18.261z"/>
+<path d="M6.143,8.5c0-3.229,2.023-5.971,4.857-7.029C10.197,1.173,9.334,1,8.428,1C4.324,1,1,4.357,1,8.5S4.324,16,8.428,16 c0.906,0,1.77-0.17,2.572-0.471C8.166,14.472,6.143,11.728,6.143,8.5z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_notes_all.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_notes_all.svg Thu May 27 13:10:59 2010 +0300
@@ -1,22 +1,15 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<polygon points="19,29 27,21 19,21 "/>
-<rect x="9" y="14" width="2" height="2"/>
-<rect x="12" y="14" width="8.999" height="2"/>
-<rect x="9" y="9" width="2" height="2"/>
-<rect x="12" y="9" width="8.999" height="2"/>
-<polygon points="22,2 22,5 24,5 24,20 27,20 27,2 "/>
-<polygon points="6,5 8,5 8,2 3,2 3,29 18,29 18,26 6,26 "/>
-<rect x="10" width="10" height="5"/>
+<polygon points="11,29 11,21 3,21 "/>
+<rect height="2" width="2" x="9" y="14"/>
+<rect height="2" width="9" x="12" y="14"/>
+<rect height="2" width="2" x="9" y="9"/>
+<rect height="2" width="9" x="12" y="9"/>
+<polygon points="6,5 8,5 8,2 3,2 3,20 6,20 "/>
+<polygon points="22,2 22,5 24,5 24,26 12,26 12,29 27,29 27,2 "/>
+<rect height="5" width="10" x="10"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_notes_collections.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_notes_collections.svg Thu May 27 13:10:59 2010 +0300
@@ -1,22 +1,14 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<polygon points="6,1 6,4 26,4 26,16 29,16 29,1 "/>
-<polygon points="17,29 24,22 17,22 "/>
-<polygon points="26,20 29,17 26,17 "/>
-<polygon points="1,29 16,29 16,26 4,26 4,9 21,9 21,21 24,21 24,6 1,6 "/>
-<rect x="7" y="17" width="2" height="2"/>
-<rect x="10" y="17" width="8" height="2"/>
-<rect x="7" y="12" width="2" height="2"/>
-<rect x="10" y="12" width="8" height="2"/>
+<polygon points="5.999,1 5.999,4 26,4 26,24 29,24 29,1 "/>
+<polygon points="1,21 4,21 4,9 21,9 21,26 9,26 9,29 24,29 24,6 1,6 "/>
+<polygon points="8,29 8,22 1,22 "/>
+<rect height="2" width="2" x="7" y="17"/>
+<rect height="2" width="8" x="10" y="17"/>
+<rect height="2" width="2" x="7" y="12"/>
+<rect height="2" width="8" x="10" y="12"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_offline.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_offline.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon fill="none" points="20.22,5.712,13.87,5.712,13.87,12.74,20.22,7.489"/>
-
<polygon fill="none" points="4.585,5.712,4.585,7.453,10.79,12.69,10.79,5.712"/>
-
<path d="M1.509,2.634v6.247l9.281,7.836v10.59h3.079v-10.58l9.43-7.788v-6.305h-21.79zm3.076,4.819v-1.741h6.205v6.98l-6.205-5.237zm9.285-1.741h6.349v1.776l-6.349,5.249v-7.028z"/>
-
<polygon points="28.6,17.96,26.54,15.9,22.72,19.73,18.9,15.9,16.83,17.96,20.66,21.79,16.83,25.61,18.9,27.67,22.72,23.85,26.54,27.67,28.6,25.61,24.78,21.79"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.639"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.639"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_one.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_one.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<path d="M22,22.813V25H10.01v-2.188H14V7l-4,1V6l6-2h2v18.813H22z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_online_support.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_online_support.svg Thu May 27 13:10:59 2010 +0300
@@ -1,28 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<polygon points="9.49,8.148 17.801,10.801 19.199,8 13.601,6.601 "/>
-<path d="M15,1C7.267,1,1,7.267,1,15c0,0.278,0.025,0.55,0.042,0.824c0.045-0.025,0.082-0.062,0.13-0.083l4.591-2.088
- c-0.423-1.019,0.124-3.402,0.441-3.792c0.328-0.4,2.885-2.153,2.885-2.153L8.76,7.233C8.538,6.758,9.964,6.102,9.964,6.102
- c0.548,0.367,0.912,0,0.912,0l0.146-0.366l-0.146-0.546l1.132-1.405l1.082-0.25c0.624-0.103,1.259-0.171,1.911-0.171
- c1.384,0,2.705,0.255,3.936,0.7l-1.136,1.136l1.398,1.401l1.401-1.401l-0.772-0.771c3.815,1.754,6.528,5.505,6.777,9.915
- c-0.795-1.197-1.602-3.495-1.602-3.495l-1.788-0.328L21.608,9.9l0.913,1.239l0.656-0.291c0,0,0.804,0.767,0.766,1.021
- c-0.034,0.258-1.237,1.424-1.237,1.424l-1.057,0.377l-1.391-1.145l-1.06-0.874l0.656,1.569l0.878,0.913c0,0,1.534-0.219,1.753-0.037
- c0.22,0.181-0.293,1.572-0.293,1.572l-2.557,2.626l-0.253,2.627c-1.426,0.734-1.571,1.859-1.571,1.859s-0.365-0.069-1.313,0.991
- c-0.95,1.057-1.973,0.78-1.973,0.78c-1.206,0-1.425-0.78-1.425-1.037c0-0.107-0.212-0.519-0.457-1.004
- c0.017,0.693-0.313,1.353-0.901,1.731c-0.329,0.212-0.706,0.318-1.083,0.318c-0.345,0-0.69-0.089-1-0.268l-0.866-0.501l-0.839,1.453
- c-0.129,0.752-0.032,1.416,0.099,1.899C10.103,28.319,12.47,29,15,29c7.733,0,14-6.267,14-14S22.733,1,15,1z M24.172,22.484
- c-0.474,0.579-1.002,1.112-1.575,1.593l-1.185-1.067l1.399-2.801l1.989,0.392L24.172,22.484z"/>
-<path d="M6.062,24.525l2-3.464l2.599,1.5L9.83,14L2,17.562l2.598,1.5l-2,3.464c0,0-1.938,5.475,4.063,6.475
- C6.66,29,5.463,27.051,6.062,24.525z"/>
+<path d="M15,1C7.267,1,1,7.267,1,15c0,0.278,0.025,0.55,0.042,0.824c0.045-0.025,0.082-0.062,0.13-0.083l4.591-2.088 c-0.423-1.019,0.124-3.402,0.441-3.792c0.328-0.4,2.885-2.153,2.885-2.153L8.76,7.233C8.538,6.758,9.964,6.102,9.964,6.102 c0.548,0.367,0.912,0,0.912,0l0.146-0.366l-0.146-0.546l1.132-1.405l1.082-0.25c0.624-0.103,1.259-0.171,1.911-0.171 c1.384,0,2.705,0.255,3.936,0.7l-1.136,1.136l1.398,1.401l1.401-1.401l-0.772-0.771c3.815,1.754,6.528,5.505,6.777,9.915 c-0.795-1.197-1.602-3.495-1.602-3.495l-1.788-0.328L21.608,9.9l0.913,1.239l0.656-0.291c0,0,0.804,0.767,0.766,1.021 c-0.034,0.258-1.237,1.424-1.237,1.424l-1.057,0.377l-1.391-1.145l-1.06-0.874l0.656,1.569l0.878,0.913c0,0,1.534-0.219,1.753-0.037 c0.22,0.181-0.293,1.572-0.293,1.572l-2.557,2.626l-0.253,2.627c-1.426,0.734-1.571,1.859-1.571,1.859s-0.365-0.069-1.313,0.991 c-0.95,1.057-1.973,0.78-1.973,0.78c-1.206,0-1.425-0.78-1.425-1.037c0-0.107-0.212-0.519-0.457-1.004 c0.017,0.693-0.313,1.353-0.901,1.731c-0.329,0.212-0.706,0.318-1.083,0.318c-0.345,0-0.69-0.089-1-0.268l-0.866-0.501l-0.839,1.453 c-0.129,0.752-0.032,1.416,0.099,1.899C10.103,28.319,12.47,29,15,29c7.733,0,14-6.267,14-14S22.733,1,15,1z M24.172,22.484 c-0.474,0.579-1.002,1.112-1.575,1.593l-1.185-1.067l1.399-2.801l1.989,0.392L24.172,22.484z"/>
+<path d="M6.062,24.525l2-3.464l2.599,1.5L9.83,14L2,17.562l2.598,1.5l-2,3.464c0,0-1.938,5.475,4.063,6.475 C6.66,29,5.463,27.051,6.062,24.525z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_options_menu.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_options_menu.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="28.5,7,15,25,1.5,7"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_organize.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_organize.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="12,13,8.526,13,8.526,10,1,15.03,8.526,20,8.526,17,12,17"/>
-
<polygon points="18,17,21.47,17,21.47,20,29,14.97,21.47,10,21.47,13,18,13"/>
-
<polygon points="17,12,17,8.526,20,8.526,14.97,1,10,8.526,13,8.526,13,12"/>
-
<polygon points="13,18,13,21.47,10,21.47,15.03,29,20,21.47,17,21.47,17,18"/>
-
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_outbox.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_outbox.svg Thu May 27 13:10:59 2010 +0300
@@ -1,14 +1,7 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
<polygon points="26,20 26,24 4,24 4,20 1,20 1,29 2,29 4,29 26,29 28,29 29,29 29,20 "/>
<polygon points="11,19 19,19 19,11 23,11 15,1 7,11 11,11 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_ovistore.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_ovistore.svg Thu May 27 13:10:59 2010 +0300
@@ -1,53 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M14.54,22.262c-0.276,0-0.479,0.133-0.639,0.418c-0.175,0.316-0.265,0.792-0.265,1.413c0,1.836,0.68,1.836,0.903,1.836
- c0.278,0,0.479-0.134,0.635-0.421c0.171-0.316,0.257-0.792,0.257-1.415c0-0.622-0.086-1.099-0.257-1.415
- C15.021,22.394,14.818,22.262,14.54,22.262z"/>
-<path d="M23.822,22.263c-0.183,0-0.339,0.11-0.479,0.336c-0.13,0.212-0.207,0.476-0.229,0.786h1.362
- c-0.021-0.313-0.094-0.578-0.215-0.793C24.074,22.263,23.885,22.263,23.822,22.263z"/>
-<path d="M8.616,10.402c-1.563,0-1.686,1.897-1.686,3.354c0,1.493,0.069,3.776,1.686,3.776c1.614,0,1.703-2.038,1.703-3.776
- C10.319,12.404,10.109,10.402,8.616,10.402z"/>
-<path d="M21.452,4C20.397,1.653,17.91,0,15,0S9.603,1.653,8.548,4H2v25h26V4H21.452z M24.5,5.399c0.836,0,1.5,0.475,1.5,1.3
- C26,7.543,25.37,8,24.5,8S23,7.543,23,6.7C23,5.856,23.613,5.399,24.5,5.399z M22.574,9.173c0.154-0.211,0.377-0.218,0.647-0.218
- c0.09,0,0.188,0,0.188,0L26,9v8.711c0,0.255,0,0.728-0.397,1.008C25.396,18.867,25.079,19,24.598,19c-0.463,0-0.612-0.18-0.82-0.326
- c-0.395-0.279-0.395-0.753-0.395-1.008v-7.098c0,0-0.071,0-0.161,0c-0.271,0-0.493-0.001-0.647-0.212
- c-0.073-0.098-0.174-0.262-0.174-0.592C22.4,9.448,22.501,9.271,22.574,9.173z M15,1.625c1.813,0,3.377,0.96,4.249,2.375h-8.498
- C11.623,2.585,13.188,1.625,15,1.625z M7.36,26.744c-0.371,0.301-0.935,0.455-1.676,0.455c-0.413,0-0.758-0.029-1.026-0.084
- c-0.26-0.055-0.486-0.123-0.67-0.203l-0.12-0.053v-1.4l0.298,0.166c0.167,0.094,0.378,0.177,0.625,0.246
- c0.25,0.07,0.521,0.105,0.806,0.105c0.223,0,0.389-0.045,0.492-0.137c0.098-0.086,0.145-0.219,0.145-0.409
- c0-0.089-0.016-0.168-0.048-0.243c-0.03-0.066-0.087-0.139-0.168-0.209c-0.06-0.051-0.21-0.152-0.574-0.337
- c-0.469-0.23-0.788-0.43-0.972-0.608c-0.188-0.183-0.319-0.379-0.387-0.585c-0.067-0.194-0.101-0.429-0.101-0.696
- c0-0.555,0.201-0.996,0.598-1.309c0.379-0.305,0.872-0.459,1.466-0.459c0.356,0,0.667,0.029,0.926,0.085
- c0.263,0.058,0.482,0.126,0.668,0.208l0.12,0.053v1.392l-0.296-0.161c-0.174-0.094-0.384-0.178-0.625-0.249
- c-0.238-0.073-0.454-0.108-0.645-0.108c-0.184,0-0.319,0.041-0.411,0.129c-0.092,0.086-0.134,0.193-0.134,0.338
- c0,0.078,0.015,0.143,0.044,0.188c0.042,0.061,0.095,0.119,0.159,0.172c0.072,0.055,0.248,0.154,0.524,0.295
- c0.438,0.219,0.747,0.4,0.942,0.557c0.212,0.17,0.371,0.371,0.471,0.6c0.1,0.226,0.148,0.504,0.148,0.851
- C7.94,25.957,7.745,26.432,7.36,26.744z M11.795,26.958l-0.129,0.05c-0.117,0.044-0.268,0.088-0.453,0.128
- c-0.178,0.042-0.403,0.062-0.703,0.062c-0.598,0-1.053-0.18-1.351-0.537c-0.289-0.347-0.436-0.843-0.436-1.475v-2.827H7.969v-1.291
- h0.754v-0.675l1.71-0.893v1.567h1.277v1.291h-1.276v2.705c0,0.438,0.06,0.636,0.11,0.724c0.033,0.059,0.103,0.137,0.319,0.137
- c0.114,0,0.228-0.017,0.338-0.049c0.119-0.032,0.22-0.07,0.304-0.113l0.289-0.143V26.958z M8.491,19C5.147,19,4,16.729,4,13.847
- C4,11,5.559,9,8.525,9C11.594,9,13,11.017,13,13.916C12.998,16.95,11.576,19,8.491,19z M16.461,26.398
- c-0.473,0.531-1.119,0.801-1.921,0.801c-0.8,0-1.448-0.27-1.927-0.801c-0.471-0.526-0.71-1.302-0.71-2.305
- c0-0.995,0.234-1.768,0.695-2.297c0.469-0.538,1.122-0.812,1.942-0.812c0.813,0,1.465,0.278,1.934,0.825
- c0.461,0.536,0.694,1.305,0.694,2.283C17.168,25.097,16.93,25.872,16.461,26.398z M15.383,17.523L12.859,9h2.934l1.793,7.375
- L19.484,9h2.477l-2.652,8.523C19.016,18.4,18.578,19,17.346,19C16.112,19,15.656,18.4,15.383,17.523z M21.17,22.447l-0.25-0.063
- c-0.121-0.029-0.238-0.045-0.359-0.045c-0.383,0-0.629,0.097-0.752,0.295c-0.098,0.156-0.213,0.488-0.213,1.179v3.309h-1.71v-4.786
- c0-0.252-0.011-0.607-0.028-1.061l-0.008-0.208h1.64c0,0,0.038,0.28,0.045,0.332c0.05-0.054,0.104-0.103,0.161-0.147
- c0.227-0.176,0.49-0.267,0.785-0.267c0.189,0,0.373,0.026,0.545,0.076l0.145,0.042V22.447z M26.203,24.67h-3.102
- c0.022,0.383,0.115,0.683,0.275,0.893c0.179,0.232,0.434,0.346,0.779,0.346c0.344,0,0.644-0.024,0.893-0.072
- c0.245-0.051,0.463-0.117,0.645-0.201l0.283-0.129v1.35l-0.116,0.053c-0.216,0.099-0.47,0.172-0.756,0.219
- c-0.284,0.049-0.688,0.073-1.2,0.073c-0.833,0-1.477-0.271-1.911-0.803c-0.425-0.521-0.64-1.284-0.64-2.267
- c0-0.972,0.207-1.742,0.617-2.292c0.423-0.566,1.046-0.854,1.852-0.854c0.821,0,1.434,0.271,1.818,0.802
- c0.373,0.509,0.563,1.277,0.563,2.281V24.67z"/>
+<path d="M14.54,22.262c-0.276,0-0.479,0.133-0.639,0.418c-0.175,0.316-0.265,0.792-0.265,1.413c0,1.836,0.68,1.836,0.903,1.836 c0.278,0,0.479-0.134,0.635-0.421c0.171-0.316,0.257-0.792,0.257-1.415c0-0.622-0.086-1.099-0.257-1.415 C15.021,22.394,14.818,22.262,14.54,22.262z"/>
+<path d="M23.822,22.263c-0.183,0-0.339,0.11-0.479,0.336c-0.13,0.212-0.207,0.476-0.229,0.786h1.362 c-0.021-0.313-0.094-0.578-0.215-0.793C24.074,22.263,23.885,22.263,23.822,22.263z"/>
+<path d="M8.616,10.402c-1.563,0-1.686,1.897-1.686,3.354c0,1.493,0.069,3.776,1.686,3.776c1.614,0,1.703-2.038,1.703-3.776 C10.319,12.404,10.109,10.402,8.616,10.402z"/>
+<path d="M21.452,4C20.397,1.653,17.91,0,15,0S9.603,1.653,8.548,4H2v25h26V4H21.452z M24.5,5.399c0.836,0,1.5,0.475,1.5,1.3 C26,7.543,25.37,8,24.5,8S23,7.543,23,6.7C23,5.856,23.613,5.399,24.5,5.399z M22.574,9.173c0.154-0.211,0.377-0.218,0.647-0.218 c0.09,0,0.188,0,0.188,0L26,9v8.711c0,0.255,0,0.728-0.397,1.008C25.396,18.867,25.079,19,24.598,19c-0.463,0-0.612-0.18-0.82-0.326 c-0.395-0.279-0.395-0.753-0.395-1.008v-7.098c0,0-0.071,0-0.161,0c-0.271,0-0.493-0.001-0.647-0.212 c-0.073-0.098-0.174-0.262-0.174-0.592C22.4,9.448,22.501,9.271,22.574,9.173z M15,1.625c1.813,0,3.377,0.96,4.249,2.375h-8.498 C11.623,2.585,13.188,1.625,15,1.625z M7.36,26.744c-0.371,0.301-0.935,0.455-1.676,0.455c-0.413,0-0.758-0.029-1.026-0.084 c-0.26-0.055-0.486-0.123-0.67-0.203l-0.12-0.053v-1.4l0.298,0.166c0.167,0.094,0.378,0.177,0.625,0.246 c0.25,0.07,0.521,0.105,0.806,0.105c0.223,0,0.389-0.045,0.492-0.137c0.098-0.086,0.145-0.219,0.145-0.409 c0-0.089-0.016-0.168-0.048-0.243c-0.03-0.066-0.087-0.139-0.168-0.209c-0.06-0.051-0.21-0.152-0.574-0.337 c-0.469-0.23-0.788-0.43-0.972-0.608c-0.188-0.183-0.319-0.379-0.387-0.585c-0.067-0.194-0.101-0.429-0.101-0.696 c0-0.555,0.201-0.996,0.598-1.309c0.379-0.305,0.872-0.459,1.466-0.459c0.356,0,0.667,0.029,0.926,0.085 c0.263,0.058,0.482,0.126,0.668,0.208l0.12,0.053v1.392l-0.296-0.161c-0.174-0.094-0.384-0.178-0.625-0.249 c-0.238-0.073-0.454-0.108-0.645-0.108c-0.184,0-0.319,0.041-0.411,0.129c-0.092,0.086-0.134,0.193-0.134,0.338 c0,0.078,0.015,0.143,0.044,0.188c0.042,0.061,0.095,0.119,0.159,0.172c0.072,0.055,0.248,0.154,0.524,0.295 c0.438,0.219,0.747,0.4,0.942,0.557c0.212,0.17,0.371,0.371,0.471,0.6c0.1,0.226,0.148,0.504,0.148,0.851 C7.94,25.957,7.745,26.432,7.36,26.744z M11.795,26.958l-0.129,0.05c-0.117,0.044-0.268,0.088-0.453,0.128 c-0.178,0.042-0.403,0.062-0.703,0.062c-0.598,0-1.053-0.18-1.351-0.537c-0.289-0.347-0.436-0.843-0.436-1.475v-2.827H7.969v-1.291 h0.754v-0.675l1.71-0.893v1.567h1.277v1.291h-1.276v2.705c0,0.438,0.06,0.636,0.11,0.724c0.033,0.059,0.103,0.137,0.319,0.137 c0.114,0,0.228-0.017,0.338-0.049c0.119-0.032,0.22-0.07,0.304-0.113l0.289-0.143V26.958z M8.491,19C5.147,19,4,16.729,4,13.847 C4,11,5.559,9,8.525,9C11.594,9,13,11.017,13,13.916C12.998,16.95,11.576,19,8.491,19z M16.461,26.398 c-0.473,0.531-1.119,0.801-1.921,0.801c-0.8,0-1.448-0.27-1.927-0.801c-0.471-0.526-0.71-1.302-0.71-2.305 c0-0.995,0.234-1.768,0.695-2.297c0.469-0.538,1.122-0.812,1.942-0.812c0.813,0,1.465,0.278,1.934,0.825 c0.461,0.536,0.694,1.305,0.694,2.283C17.168,25.097,16.93,25.872,16.461,26.398z M15.383,17.523L12.859,9h2.934l1.793,7.375 L19.484,9h2.477l-2.652,8.523C19.016,18.4,18.578,19,17.346,19C16.112,19,15.656,18.4,15.383,17.523z M21.17,22.447l-0.25-0.063 c-0.121-0.029-0.238-0.045-0.359-0.045c-0.383,0-0.629,0.097-0.752,0.295c-0.098,0.156-0.213,0.488-0.213,1.179v3.309h-1.71v-4.786 c0-0.252-0.011-0.607-0.028-1.061l-0.008-0.208h1.64c0,0,0.038,0.28,0.045,0.332c0.05-0.054,0.104-0.103,0.161-0.147 c0.227-0.176,0.49-0.267,0.785-0.267c0.189,0,0.373,0.026,0.545,0.076l0.145,0.042V22.447z M26.203,24.67h-3.102 c0.022,0.383,0.115,0.683,0.275,0.893c0.179,0.232,0.434,0.346,0.779,0.346c0.344,0,0.644-0.024,0.893-0.072 c0.245-0.051,0.463-0.117,0.645-0.201l0.283-0.129v1.35l-0.116,0.053c-0.216,0.099-0.47,0.172-0.756,0.219 c-0.284,0.049-0.688,0.073-1.2,0.073c-0.833,0-1.477-0.271-1.911-0.803c-0.425-0.521-0.64-1.284-0.64-2.267 c0-0.972,0.207-1.742,0.617-2.292c0.423-0.566,1.046-0.854,1.852-0.854c0.821,0,1.434,0.271,1.818,0.802 c0.373,0.509,0.563,1.277,0.563,2.281V24.67z"/>
</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_page_1_2.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<path d="M6.249,10.773H6.213l-2.035,1.098l-0.306-1.206l2.557-1.368H7.78V21H6.249V10.773z"/>
+<path d="M19.811,21v-0.973l1.242-1.206c2.988-2.845,4.357-4.357,4.357-6.122c0-1.188-0.559-2.286-2.305-2.286 c-1.063,0-1.945,0.54-2.484,0.99l-0.505-1.116c0.792-0.666,1.963-1.188,3.295-1.188c2.521,0,3.583,1.729,3.583,3.403 c0,2.16-1.566,3.906-4.033,6.283l-0.918,0.864v0.036h5.239V21H19.811z"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<polygon points="14,23 13,23 16,7 17,7 14,23 "/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_page_1_3.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<path d="M6.249,10.773H6.213l-2.034,1.098l-0.306-1.206L6.43,9.297h1.35V21h-1.53V10.773z"/>
+<path d="M20.188,19.199c0.45,0.271,1.477,0.721,2.593,0.721c2.017,0,2.664-1.278,2.646-2.269c-0.018-1.639-1.494-2.341-3.025-2.341 h-0.882v-1.188h0.882c1.152,0,2.611-0.595,2.611-1.98c0-0.937-0.594-1.765-2.053-1.765c-0.936,0-1.836,0.414-2.34,0.774 l-0.433-1.152c0.63-0.45,1.818-0.9,3.079-0.9c2.305,0,3.349,1.368,3.349,2.791c0,1.224-0.738,2.25-2.161,2.772v0.036 c1.441,0.27,2.594,1.351,2.611,2.989c0,1.872-1.477,3.511-4.268,3.511c-1.314,0-2.467-0.414-3.043-0.792L20.188,19.199z"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<polygon points="14,23 13,23 16,7 17,7 14,23 "/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_page_1_4.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<path d="M6.249,10.773H6.213l-2.034,1.098l-0.306-1.206L6.43,9.297h1.35V21h-1.53V10.773z"/>
+<path d="M24.707,21v-3.205H19.27v-1.026l5.223-7.472h1.71v7.273h1.639v1.225h-1.639V21H24.707z M24.707,16.57v-3.907 c0-0.611,0.019-1.224,0.055-1.836h-0.055c-0.359,0.684-0.647,1.188-0.972,1.729l-2.862,3.979v0.035H24.707z"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<polygon points="14,23 13,23 16,7 17,7 14,23 "/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_page_1_5.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<path d="M6.249,10.773H6.213l-2.034,1.098l-0.306-1.206L6.43,9.297h1.35V21h-1.53V10.773z"/>
+<path d="M26.797,10.629h-4.466l-0.45,3.007c0.27-0.036,0.521-0.054,0.954-0.054c0.919,0,1.801,0.18,2.521,0.63 c0.919,0.504,1.675,1.53,1.675,2.989c0,2.286-1.818,3.997-4.357,3.997c-1.278,0-2.341-0.36-2.917-0.721l0.396-1.206 c0.486,0.288,1.44,0.648,2.521,0.648c1.477,0,2.772-0.973,2.755-2.539c0-1.513-1.026-2.574-3.349-2.574 c-0.685,0-1.206,0.054-1.639,0.107l0.757-5.617h5.6V10.629z"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<polygon points="14,23 13,23 16,7 17,7 14,23 "/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_page_2_2.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<path d="M2.81,21v-0.973l1.243-1.206c2.989-2.845,4.357-4.357,4.357-6.122c0-1.188-0.559-2.286-2.305-2.286 c-1.063,0-1.945,0.54-2.485,0.99l-0.504-1.116c0.792-0.666,1.963-1.188,3.295-1.188c2.521,0,3.583,1.729,3.583,3.403 c0,2.16-1.566,3.906-4.033,6.283l-0.918,0.864v0.036h5.239V21H2.81z"/>
+<path d="M19.811,21v-0.973l1.242-1.206c2.988-2.845,4.357-4.357,4.357-6.122c0-1.188-0.559-2.286-2.305-2.286 c-1.063,0-1.945,0.54-2.484,0.99l-0.505-1.116c0.792-0.666,1.963-1.188,3.295-1.188c2.521,0,3.583,1.729,3.583,3.403 c0,2.16-1.566,3.906-4.033,6.283l-0.918,0.864v0.036h5.239V21H19.811z"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<polygon points="14,23 13,23 16,7 17,7 14,23 "/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_page_2_3.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<path d="M2.811,21v-0.973l1.242-1.206c2.988-2.845,4.357-4.357,4.357-6.122c0-1.188-0.559-2.286-2.305-2.286 c-1.063,0-1.945,0.54-2.484,0.99l-0.505-1.116c0.792-0.666,1.963-1.188,3.295-1.188c2.521,0,3.583,1.729,3.583,3.403 c0,2.16-1.566,3.906-4.033,6.283l-0.918,0.864v0.036h5.239V21H2.811z"/>
+<path d="M20.188,19.199c0.45,0.271,1.477,0.721,2.593,0.721c2.017,0,2.664-1.278,2.646-2.269c-0.018-1.639-1.494-2.341-3.025-2.341 h-0.882v-1.188h0.882c1.152,0,2.611-0.595,2.611-1.98c0-0.937-0.594-1.765-2.053-1.765c-0.936,0-1.836,0.414-2.34,0.774 l-0.433-1.152c0.63-0.45,1.818-0.9,3.079-0.9c2.305,0,3.349,1.368,3.349,2.791c0,1.224-0.738,2.25-2.161,2.772v0.036 c1.441,0.27,2.594,1.351,2.611,2.989c0,1.872-1.477,3.511-4.268,3.511c-1.314,0-2.467-0.414-3.043-0.792L20.188,19.199z"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<polygon points="14,23 13,23 16,7 17,7 14,23 "/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_page_2_4.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<path d="M2.811,21v-0.973l1.242-1.206c2.988-2.845,4.357-4.357,4.357-6.122c0-1.188-0.559-2.286-2.305-2.286 c-1.063,0-1.945,0.54-2.484,0.99l-0.505-1.116c0.792-0.666,1.963-1.188,3.295-1.188c2.521,0,3.583,1.729,3.583,3.403 c0,2.16-1.566,3.906-4.033,6.283l-0.918,0.864v0.036h5.239V21H2.811z"/>
+<path d="M24.707,21v-3.205H19.27v-1.026l5.223-7.472h1.71v7.273h1.639v1.225h-1.639V21H24.707z M24.707,16.57v-3.907 c0-0.611,0.019-1.224,0.055-1.836h-0.055c-0.359,0.684-0.647,1.188-0.972,1.729l-2.862,3.979v0.035H24.707z"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<polygon points="14,23 13,23 16,7 17,7 14,23 "/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_page_2_5.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<path d="M2.811,21v-0.973l1.242-1.206c2.988-2.845,4.357-4.357,4.357-6.122c0-1.188-0.559-2.286-2.305-2.286 c-1.063,0-1.945,0.54-2.484,0.99l-0.505-1.116c0.792-0.666,1.963-1.188,3.295-1.188c2.521,0,3.583,1.729,3.583,3.403 c0,2.16-1.566,3.906-4.033,6.283l-0.918,0.864v0.036h5.239V21H2.811z"/>
+<path d="M26.797,10.629h-4.466l-0.45,3.007c0.27-0.036,0.521-0.054,0.954-0.054c0.919,0,1.801,0.18,2.521,0.63 c0.919,0.504,1.675,1.53,1.675,2.989c0,2.286-1.818,3.997-4.357,3.997c-1.278,0-2.341-0.36-2.917-0.721l0.396-1.206 c0.486,0.288,1.44,0.648,2.521,0.648c1.477,0,2.772-0.973,2.755-2.539c0-1.513-1.026-2.574-3.349-2.574 c-0.685,0-1.206,0.054-1.639,0.107l0.757-5.617h5.6V10.629z"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<polygon points="14,23 13,23 16,7 17,7 14,23 "/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_page_3_3.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<path d="M3.188,19.199c0.45,0.271,1.477,0.721,2.593,0.721c2.017,0,2.664-1.278,2.646-2.269c-0.018-1.639-1.494-2.341-3.025-2.341 H4.521v-1.188h0.882c1.152,0,2.611-0.595,2.611-1.98c0-0.937-0.594-1.765-2.053-1.765c-0.936,0-1.836,0.414-2.34,0.774L3.188,9.999 c0.63-0.45,1.818-0.9,3.079-0.9c2.305,0,3.349,1.368,3.349,2.791c0,1.224-0.738,2.25-2.161,2.772v0.036 c1.441,0.27,2.594,1.351,2.611,2.989c0,1.872-1.477,3.511-4.268,3.511c-1.314,0-2.467-0.414-3.043-0.792L3.188,19.199z"/>
+<path d="M20.188,19.199c0.45,0.271,1.477,0.721,2.593,0.721c2.017,0,2.664-1.278,2.646-2.269c-0.018-1.639-1.494-2.341-3.025-2.341 h-0.882v-1.188h0.882c1.152,0,2.611-0.595,2.611-1.98c0-0.937-0.594-1.765-2.053-1.765c-0.936,0-1.836,0.414-2.34,0.774 l-0.433-1.152c0.63-0.45,1.818-0.9,3.079-0.9c2.305,0,3.349,1.368,3.349,2.791c0,1.224-0.738,2.25-2.161,2.772v0.036 c1.441,0.27,2.594,1.351,2.611,2.989c0,1.872-1.477,3.511-4.268,3.511c-1.314,0-2.467-0.414-3.043-0.792L20.188,19.199z"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<polygon points="14,23 13,23 16,7 17,7 14,23 "/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_page_3_4.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<path d="M3.188,19.199c0.45,0.271,1.477,0.721,2.593,0.721c2.017,0,2.664-1.278,2.646-2.269c-0.018-1.639-1.494-2.341-3.025-2.341 H4.521v-1.188h0.882c1.152,0,2.611-0.595,2.611-1.98c0-0.937-0.594-1.765-2.053-1.765c-0.936,0-1.836,0.414-2.34,0.774L3.188,9.999 c0.63-0.45,1.818-0.9,3.079-0.9c2.305,0,3.349,1.368,3.349,2.791c0,1.224-0.738,2.25-2.161,2.772v0.036 c1.441,0.27,2.594,1.351,2.611,2.989c0,1.872-1.477,3.511-4.268,3.511c-1.314,0-2.467-0.414-3.043-0.792L3.188,19.199z"/>
+<path d="M24.707,21v-3.205H19.27v-1.026l5.223-7.472h1.71v7.273h1.639v1.225h-1.639V21H24.707z M24.707,16.57v-3.907 c0-0.611,0.019-1.224,0.055-1.836h-0.055c-0.359,0.684-0.647,1.188-0.972,1.729l-2.862,3.979v0.035H24.707z"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<polygon points="14,23 13,23 16,7 17,7 14,23 "/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_page_3_5.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<path d="M3.188,19.199c0.45,0.271,1.477,0.721,2.593,0.721c2.017,0,2.664-1.278,2.646-2.269c-0.018-1.639-1.494-2.341-3.025-2.341 H4.521v-1.188h0.882c1.152,0,2.611-0.595,2.611-1.98c0-0.937-0.594-1.765-2.053-1.765c-0.936,0-1.836,0.414-2.34,0.774L3.188,9.999 c0.63-0.45,1.818-0.9,3.079-0.9c2.305,0,3.349,1.368,3.349,2.791c0,1.224-0.738,2.25-2.161,2.772v0.036 c1.441,0.27,2.594,1.351,2.611,2.989c0,1.872-1.477,3.511-4.268,3.511c-1.314,0-2.467-0.414-3.043-0.792L3.188,19.199z"/>
+<path d="M26.797,10.629h-4.466l-0.45,3.007c0.27-0.036,0.521-0.054,0.954-0.054c0.919,0,1.801,0.18,2.521,0.63 c0.919,0.504,1.675,1.53,1.675,2.989c0,2.286-1.818,3.997-4.357,3.997c-1.278,0-2.341-0.36-2.917-0.721l0.396-1.206 c0.486,0.288,1.44,0.648,2.521,0.648c1.477,0,2.772-0.973,2.755-2.539c0-1.513-1.026-2.574-3.349-2.574 c-0.685,0-1.206,0.054-1.639,0.107l0.757-5.617h5.6V10.629z"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<polygon points="14,23 13,23 16,7 17,7 14,23 "/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_page_4_4.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<path d="M7.707,21v-3.205H2.27v-1.026l5.223-7.472h1.71v7.273h1.639v1.225H9.202V21H7.707z M7.707,16.57v-3.907 c0-0.611,0.019-1.224,0.055-1.836H7.707c-0.359,0.684-0.647,1.188-0.972,1.729l-2.862,3.979v0.035H7.707z"/>
+<path d="M24.707,21v-3.205H19.27v-1.026l5.223-7.472h1.71v7.273h1.639v1.225h-1.639V21H24.707z M24.707,16.57v-3.907 c0-0.611,0.019-1.224,0.055-1.836h-0.055c-0.359,0.684-0.647,1.188-0.972,1.729l-2.862,3.979v0.035H24.707z"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<polygon points="14,23 13,23 16,7 17,7 14,23 "/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_page_4_5.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<path d="M7.707,21v-3.205H2.27v-1.026l5.223-7.472h1.71v7.273h1.639v1.225H9.202V21H7.707z M7.707,16.57v-3.907 c0-0.611,0.019-1.224,0.055-1.836H7.707c-0.359,0.684-0.647,1.188-0.972,1.729l-2.862,3.979v0.035H7.707z"/>
+<path d="M26.797,10.629h-4.466l-0.45,3.007c0.27-0.036,0.521-0.054,0.954-0.054c0.919,0,1.801,0.18,2.521,0.63 c0.919,0.504,1.675,1.53,1.675,2.989c0,2.286-1.818,3.997-4.357,3.997c-1.278,0-2.341-0.36-2.917-0.721l0.396-1.206 c0.486,0.288,1.44,0.648,2.521,0.648c1.477,0,2.772-0.973,2.755-2.539c0-1.513-1.026-2.574-3.349-2.574 c-0.685,0-1.206,0.054-1.639,0.107l0.757-5.617h5.6V10.629z"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<polygon points="14,23 13,23 16,7 17,7 14,23 "/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_page_5_5.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<path d="M9.797,10.629H5.331l-0.45,3.007c0.27-0.036,0.521-0.054,0.954-0.054c0.919,0,1.801,0.18,2.521,0.63 c0.919,0.504,1.675,1.53,1.675,2.989c0,2.286-1.818,3.997-4.357,3.997c-1.278,0-2.341-0.36-2.917-0.721l0.396-1.206 c0.486,0.288,1.44,0.648,2.521,0.648c1.477,0,2.772-0.973,2.755-2.539c0-1.513-1.026-2.574-3.349-2.574 c-0.685,0-1.206,0.054-1.639,0.107l0.757-5.617h5.6V10.629z"/>
+<path d="M26.797,10.629h-4.466l-0.45,3.007c0.27-0.036,0.521-0.054,0.954-0.054c0.919,0,1.801,0.18,2.521,0.63 c0.919,0.504,1.675,1.53,1.675,2.989c0,2.286-1.818,3.997-4.357,3.997c-1.278,0-2.341-0.36-2.917-0.721l0.396-1.206 c0.486,0.288,1.44,0.648,2.521,0.648c1.477,0,2.772-0.973,2.755-2.539c0-1.513-1.026-2.574-3.349-2.574 c-0.685,0-1.206,0.054-1.639,0.107l0.757-5.617h5.6V10.629z"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<polygon points="14,23 13,23 16,7 17,7 14,23 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pause.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pause.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<rect height="22" width="4" x="7" y="4"/>
-
<rect height="22" width="4" x="19" y="4"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_attach.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_attach.svg Thu May 27 13:10:59 2010 +0300
@@ -1,31 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon fill="none" points="10.94,4.257,13.74,6.627,13.74,3.691,10.94,3.691"/>
-
<polygon fill="none" points="15.86,3.691,15.86,6.66,18.74,4.276,18.74,3.691"/>
-
<path d="M8.826,1.578v3.663l4.916,4.153v5.738h2.115v-5.73l4.994-4.128v-3.694h-12.02zm7.034,5.082v-2.969h2.879v0.584l-2.88,2.385zm-2.12-0.033l-2.807-2.37v-0.566h2.805v2.936h0.002z"/>
-
<polygon points="16.74,22.22,18.21,24.58,22.22,24.58,20.76,22.22"/>
-
<polygon points="10.48,22.22,11.94,24.58,15.93,24.58,14.47,22.22"/>
-
<polygon points="23.03,22.22,24.25,24.17,24.25,22.22"/>
-
<polygon points="9.66,24.58,9.667,24.58,8.199,22.22,5.432,22.22,9.496,28.73,11.48,27.49,10.79,26.39"/>
-
<polygon points="19.97,17.36,21.43,19.72,24.24,19.72,20.18,13.21,18.18,14.46,19.99,17.36"/>
-
<polygon points="19.15,19.72,17.69,17.36,13.74,17.37,15.2,19.72"/>
-
<polygon points="5.432,17.76,5.432,19.72,6.655,19.72"/>
-
<polygon points="12.92,19.72,11.46,17.37,7.463,17.37,8.929,19.72"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.323" y="0.639"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.323" y="0.639"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_context.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_context.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="24.67,22.22,5.854,22.22,9.92,28.73,11.92,27.48,10.11,24.58,10.12,24.58,10.12,24.58,24.67,24.58"/>
-
<polygon points="20.6,13.21,18.6,14.46,20.41,17.37,5.854,17.37,5.854,19.72,24.67,19.72"/>
-
<polygon fill="none" points="11.36,4.258,14.17,6.627,14.17,3.692,11.36,3.692"/>
-
<polygon fill="none" points="16.28,3.692,16.28,6.661,19.16,4.277,19.16,3.692"/>
-
<path d="M9.249,1.578v3.663l4.917,4.154v5.738h2.115v-5.728l4.992-4.128v-3.696h-12.02zm7.031,5.083v-2.969h2.879v0.585l-2.88,2.384zm-2.11-0.034l-2.807-2.369v-0.566h2.804v2.935h0.006z"/>
-
+<rect fill="none" height="29.03" width="29.03" x="0.746" y="0.639"/>
<rect fill="none" height="29.03" width="29.03" x="0.746" y="0.639"/>
-
-<rect fill="none" height="29.03" width="29.03" x="0.746" y="0.639"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_multipdp.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_multipdp.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon fill="none" points="10.75,4.258,13.56,6.627,13.56,3.691,10.75,3.691"/>
-
<polygon fill="none" points="15.68,3.691,15.68,6.661,18.55,4.277,18.55,3.691"/>
-
<path d="M8.642,1.577v3.664l4.918,4.154v5.738h2.115v-5.728l4.993-4.129v-3.696h-12.03zm7.038,5.084v-2.97h2.88v0.586l-2.88,2.384zm-2.12-0.034l-2.808-2.369v-0.567h2.805v2.935,0.001z"/>
-
<polygon points="20,13.3,18,14.55,19.8,17.46,5.247,17.46,5.247,19.81,24.06,19.81"/>
-
<polygon points="9.313,28.73,11.31,27.48,9.503,24.58,12.46,24.58,15.05,28.73,17.05,27.48,15.24,24.58,24.06,24.58,24.06,22.22,5.247,22.22"/>
-
+<rect fill="none" height="29.03" width="29.03" x="0.14" y="0.639"/>
<rect fill="none" height="29.03" width="29.03" x="0.14" y="0.639"/>
-
-<rect fill="none" height="29.03" width="29.03" x="0.14" y="0.639"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_suspended.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_suspended.svg Thu May 27 13:10:59 2010 +0300
@@ -1,25 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon fill="none" points="19.27,4.229,16.46,6.598,16.46,3.663,19.27,3.663"/>
-
<polygon fill="none" points="14.34,3.663,14.34,6.632,11.46,4.247,11.46,3.663"/>
-
<path d="M21.38,1.548v3.664l-4.918,4.154v5.74h-2.115v-5.737l-4.994-4.13v-3.695h12.03zm-7.04,5.084v-2.969h-2.881v0.585l2.88,2.384zm2.12-0.034l2.803-2.369v-0.566h-2.803v2.935z"/>
-
<polygon points="24.77,22.22,24.77,24.57,20.51,24.57,20.51,24.57,14.72,24.57,16.69,22.22"/>
-
<polygon points="5.954,22.22,11.08,22.22,9.095,24.57,5.954,24.57"/>
-
<polygon points="24.77,17.36,24.77,19.72,18.78,19.72,20.75,17.36"/>
-
<polygon points="5.954,19.72,5.954,17.36,15.17,17.36,13.19,19.72"/>
-
<polygon points="21.57,14.73,21.65,14.79,21.6,14.85,10.89,27.61,9.923,28.76,8.117,27.25,9.493,25.61,19.84,13.27"/>
-
+<rect fill="none" height="29.03" width="29.03" x="0.846" y="0.639"/>
<rect fill="none" height="29.03" width="29.03" x="0.846" y="0.639"/>
-
-<rect fill="none" height="29.03" width="29.03" x="0.846" y="0.639"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_person_activitystream.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_person_activitystream.svg Thu May 27 13:10:59 2010 +0300
@@ -1,27 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M8.649,14.904c0.002,0.148,0.013,0.419,0.003,0.566c-0.006,0.102-0.042,0.209-0.08,0.317h5.857
- c-0.037-0.108-0.073-0.216-0.079-0.317c-0.01-0.157,0-0.437,0.002-0.596c1.086-0.732,2.028-1.654,2.6-2.776
- c1.061-2.08,0.672-7.392,0.672-7.392C17.625,2.538,14.382,0,12.19,0h-1.391C8.606,0,5.375,2.538,5.375,4.707
- c0,0-0.333,5.294,0.659,7.392C6.577,13.243,7.536,14.175,8.649,14.904z"/>
-<path d="M13,27.11v-6.216l-1.5,3.392l-3.401-7.694C6.402,18.725,1.294,21.482,1,21.87V28h12.09C13.036,27.711,13,27.415,13,27.11z"
- />
-<path d="M25.111,17h-7.223C16.294,17,15,18.294,15,19.89v7.221c0,1.596,1.294,2.89,2.889,2.89h7.223C26.706,30,28,28.706,28,27.11
- V19.89C28,18.294,26.706,17,25.111,17z M17.807,28.555c-0.752,0-1.361-0.608-1.361-1.359s0.609-1.36,1.361-1.36
- s1.363,0.609,1.363,1.36S18.559,28.555,17.807,28.555z M23.102,28.555H21.17c0.002-0.08,0.012-0.159,0.012-0.241
- c0-2.48-2.021-4.5-4.506-4.5c-0.078,0-0.154,0.008-0.23,0.012v-1.928c0.076-0.002,0.152-0.012,0.23-0.012
- c3.549,0,6.438,2.884,6.438,6.428C23.113,28.396,23.105,28.475,23.102,28.555z M26.543,28.555H24.61
- c0.003-0.082,0.013-0.164,0.013-0.245c0-4.377-3.564-7.937-7.947-7.937c-0.078,0-0.154,0.009-0.23,0.012v-1.929
- c0.078-0.001,0.152-0.011,0.23-0.011c5.448,0,9.879,4.424,9.879,9.864C26.555,28.391,26.544,28.473,26.543,28.555z"/>
+<path d="M8.649,14.904c0.002,0.148,0.013,0.419,0.003,0.566c-0.006,0.102-0.042,0.209-0.08,0.317h5.857 c-0.037-0.108-0.073-0.216-0.079-0.317c-0.01-0.157,0-0.437,0.002-0.596c1.086-0.732,2.028-1.654,2.6-2.776 c1.061-2.08,0.672-7.392,0.672-7.392C17.625,2.538,14.382,0,12.19,0h-1.391C8.606,0,5.375,2.538,5.375,4.707 c0,0-0.333,5.294,0.659,7.392C6.577,13.243,7.536,14.175,8.649,14.904z"/>
+<path d="M13,27.11v-6.216l-1.5,3.392l-3.401-7.694C6.402,18.725,1.294,21.482,1,21.87V28h12.09C13.036,27.711,13,27.415,13,27.11z"/>
+<path d="M25.111,17h-7.223C16.294,17,15,18.294,15,19.89v7.221c0,1.596,1.294,2.89,2.889,2.89h7.223C26.706,30,28,28.706,28,27.11 V19.89C28,18.294,26.706,17,25.111,17z M17.807,28.555c-0.752,0-1.361-0.608-1.361-1.359s0.609-1.36,1.361-1.36 s1.363,0.609,1.363,1.36S18.559,28.555,17.807,28.555z M23.102,28.555H21.17c0.002-0.08,0.012-0.159,0.012-0.241 c0-2.48-2.021-4.5-4.506-4.5c-0.078,0-0.154,0.008-0.23,0.012v-1.928c0.076-0.002,0.152-0.012,0.23-0.012 c3.549,0,6.438,2.884,6.438,6.428C23.113,28.396,23.105,28.475,23.102,28.555z M26.543,28.555H24.61 c0.003-0.082,0.013-0.164,0.013-0.245c0-4.377-3.564-7.937-7.947-7.937c-0.078,0-0.154,0.009-0.23,0.012v-1.929 c0.078-0.001,0.152-0.011,0.23-0.011c5.448,0,9.879,4.424,9.879,9.864C26.555,28.391,26.544,28.473,26.543,28.555z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_person_history.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
-</g>
-<path d="M8.649,14.904c0.002,0.148,0.013,0.419,0.003,0.566C8.646,15.572,8.609,15.68,8.572,16h5.857
- c-0.037-0.32-0.073-0.428-0.079-0.529c-0.01-0.157,0-0.437,0.002-0.596c1.086-0.732,2.028-1.654,2.6-2.776
- c1.061-2.08,0.672-7.392,0.672-7.392C17.625,2.538,14.382,0,12.19,0h-1.391C8.606,0,5.375,2.538,5.375,4.707
- c0,0-0.333,5.294,0.659,7.392C6.577,13.243,7.536,14.175,8.649,14.904z"/>
-<path d="M13.274,20.275L11.5,24.286l-3.401-7.694C6.402,18.725,1.294,21.482,1,21.87V28h13.769C13.66,26.446,13,24.551,13,22.5
- C13,21.732,13.102,20.99,13.274,20.275z"/>
-<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28
- c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
-<polygon points="23,22 23,18 21,18 21,24 27,24 27,22 "/>
-</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_photo_albums.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_photo_albums.svg Thu May 27 13:10:59 2010 +0300
@@ -1,27 +1,9 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<path d="M3,5v3H1v2h2v2H1v2h2v2H1v2h2v2H1v2h2v3h26V5H3z M26,22H6V8h20V22z"/>
-<path d="M9.243,13.314c0.405-0.221,0.651-0.603,0.789-0.881c0.477,0.275,1.009,0.524,1.556,0.742
- c0.449,0.179,1.003,0.36,1.614,0.547c-0.47,0.105-0.979,0.303-1.479,0.687c-1.603,1.229-1.786,2.46-1.328,2.87
- s2.097,0.743,3.708-0.974c0.615-0.657,0.835-1.519,0.915-2.057c2.166,0.609,4.643,1.29,6.448,2.117
- c-0.907-0.107-2.054-0.052-3.058,0.594c-2.037,1.308-1.852,3.128-1.268,3.564c0.581,0.436,3.111,1.079,5.158-0.747
- c0.801-0.713,0.885-1.773,0.85-2.429c0.75,0.569,1.361,1.122,1.852,1.634v-1.914v-0.006v-4.936
- c-0.469,0.524-0.889,1.192-1.162,2.033c-0.306,0.938-0.02,1.781,0.281,2.341c-0.028-0.015-0.052-0.031-0.08-0.046
- c-1.096-0.558-3.502-1.213-6.131-1.951c0.393-0.042,0.869-0.146,1.301-0.405c1.086-0.652,1.352-1.691,0.963-2.256
- c-0.278-0.399-1.191-0.742-2.199,0.359c-0.504,0.552-0.749,1.623-0.834,2.084c-1.775-0.503-3.599-1.042-5.155-1.613
- c0.403-0.036,0.907-0.14,1.36-0.411c1.086-0.654,1.27-1.371,0.985-1.691c-0.321-0.358-1.2-0.783-2.381,0.307
- c-0.487,0.449-0.639,1.129-0.688,1.51c-3.417-1.469-2.146-2.951-2.146-2.951c-0.092-0.359-0.32-0.717-0.687-0.102
- C7.902,10.217,8.24,11.016,9.002,11.7c-0.236-0.012-0.497,0.014-0.771,0.106c-1.072,0.363-1.365,1.003-1.178,1.317
- C7.24,13.439,8.09,13.943,9.243,13.314z"/>
+<path d="M9.243,13.314c0.405-0.221,0.651-0.603,0.789-0.881c0.477,0.275,1.009,0.524,1.556,0.742 c0.449,0.179,1.003,0.36,1.614,0.547c-0.47,0.105-0.979,0.303-1.479,0.687c-1.603,1.229-1.786,2.46-1.328,2.87 s2.097,0.743,3.708-0.974c0.615-0.657,0.835-1.519,0.915-2.057c2.166,0.609,4.643,1.29,6.448,2.117 c-0.907-0.107-2.054-0.052-3.058,0.594c-2.037,1.308-1.852,3.128-1.268,3.564c0.581,0.436,3.111,1.079,5.158-0.747 c0.801-0.713,0.885-1.773,0.85-2.429c0.75,0.569,1.361,1.122,1.852,1.634v-1.914v-0.006v-4.936 c-0.469,0.524-0.889,1.192-1.162,2.033c-0.306,0.938-0.02,1.781,0.281,2.341c-0.028-0.015-0.052-0.031-0.08-0.046 c-1.096-0.558-3.502-1.213-6.131-1.951c0.393-0.042,0.869-0.146,1.301-0.405c1.086-0.652,1.352-1.691,0.963-2.256 c-0.278-0.399-1.191-0.742-2.199,0.359c-0.504,0.552-0.749,1.623-0.834,2.084c-1.775-0.503-3.599-1.042-5.155-1.613 c0.403-0.036,0.907-0.14,1.36-0.411c1.086-0.654,1.27-1.371,0.985-1.691c-0.321-0.358-1.2-0.783-2.381,0.307 c-0.487,0.449-0.639,1.129-0.688,1.51c-3.417-1.469-2.146-2.951-2.146-2.951c-0.092-0.359-0.32-0.717-0.687-0.102 C7.902,10.217,8.24,11.016,9.002,11.7c-0.236-0.012-0.497,0.014-0.771,0.106c-1.072,0.363-1.365,1.003-1.178,1.317 C7.24,13.439,8.09,13.943,9.243,13.314z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_photos.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_photos.svg Thu May 27 13:10:59 2010 +0300
@@ -1,26 +1,9 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<path d="M2,5v20h26V5H2z M26,23H4V7h22V23z"/>
-<path d="M25,8H5v14h20V8z M24,21h-2.9c0.117-0.1,0.234-0.206,0.35-0.324c0.756-0.773,0.836-1.923,0.802-2.632
- c0.708,0.617,1.286,1.216,1.749,1.771V21z M24,12.388c-0.443,0.568-0.839,1.292-1.098,2.202c-0.288,1.017-0.02,1.929,0.266,2.535
- c-0.026-0.016-0.049-0.033-0.075-0.049c-1.035-0.604-3.308-1.314-5.79-2.114c0.371-0.045,0.82-0.158,1.229-0.438
- c1.024-0.707,1.275-1.832,0.908-2.443c-0.262-0.434-1.124-0.805-2.076,0.389c-0.477,0.598-0.707,1.759-0.788,2.258
- c-1.677-0.545-3.397-1.129-4.868-1.747c0.381-0.04,0.857-0.152,1.284-0.446c1.026-0.708,1.2-1.485,0.931-1.832
- c-0.303-0.389-1.133-0.849-2.248,0.332c-0.461,0.487-0.604,1.223-0.65,1.636c-3.228-1.591-2.025-3.197-2.025-3.197
- c-0.087-0.39-0.303-0.776-0.648-0.11c-0.498,0.957-0.178,1.822,0.541,2.564c-0.224-0.013-0.469,0.015-0.729,0.115
- c-1.014,0.393-1.289,1.086-1.111,1.427c0.176,0.342,0.979,0.888,2.068,0.206c0.382-0.239,0.615-0.652,0.744-0.954
- c0.45,0.299,0.953,0.568,1.47,0.804c0.425,0.194,0.947,0.391,1.525,0.593c-0.444,0.114-0.925,0.327-1.397,0.744
- c-1.514,1.332-1.688,2.664-1.255,3.108s1.979,0.806,3.502-1.055c0.581-0.711,0.789-1.645,0.864-2.228
- c2.046,0.66,4.385,1.397,6.091,2.295c-0.856-0.118-1.94-0.058-2.889,0.642c-1.522,1.121-1.723,2.579-1.47,3.377H6V9h18V12.388z"/>
+<path d="M25,8H5v14h20V8z M24,21h-2.9c0.117-0.1,0.234-0.206,0.35-0.324c0.756-0.773,0.836-1.923,0.802-2.632 c0.708,0.617,1.286,1.216,1.749,1.771V21z M24,12.388c-0.443,0.568-0.839,1.292-1.098,2.202c-0.288,1.017-0.02,1.929,0.266,2.535 c-0.026-0.016-0.049-0.033-0.075-0.049c-1.035-0.604-3.308-1.314-5.79-2.114c0.371-0.045,0.82-0.158,1.229-0.438 c1.024-0.707,1.275-1.832,0.908-2.443c-0.262-0.434-1.124-0.805-2.076,0.389c-0.477,0.598-0.707,1.759-0.788,2.258 c-1.677-0.545-3.397-1.129-4.868-1.747c0.381-0.04,0.857-0.152,1.284-0.446c1.026-0.708,1.2-1.485,0.931-1.832 c-0.303-0.389-1.133-0.849-2.248,0.332c-0.461,0.487-0.604,1.223-0.65,1.636c-3.228-1.591-2.025-3.197-2.025-3.197 c-0.087-0.39-0.303-0.776-0.648-0.11c-0.498,0.957-0.178,1.822,0.541,2.564c-0.224-0.013-0.469,0.015-0.729,0.115 c-1.014,0.393-1.289,1.086-1.111,1.427c0.176,0.342,0.979,0.888,2.068,0.206c0.382-0.239,0.615-0.652,0.744-0.954 c0.45,0.299,0.953,0.568,1.47,0.804c0.425,0.194,0.947,0.391,1.525,0.593c-0.444,0.114-0.925,0.327-1.397,0.744 c-1.514,1.332-1.688,2.664-1.255,3.108s1.979,0.806,3.502-1.055c0.581-0.711,0.789-1.645,0.864-2.228 c2.046,0.66,4.385,1.397,6.091,2.295c-0.856-0.118-1.94-0.058-2.889,0.642c-1.522,1.121-1.723,2.579-1.47,3.377H6V9h18V12.388z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_play.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_play.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<polygon points="5,15,5,3,15.39,9,25.78,15,15.39,21,5,27"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_play_history.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_play_history.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M22.5,13c0.232,0,0.461,0.019,0.688,0.035l1.81-1.04-21-12v24l9.998-5.713c1.56-3.13,4.78-5.29,8.5-5.29z"/>
-
<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5,7.5-3.364,7.5-7.5-3.36-7.5-7.5-7.5zm0,13c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5,5.5,2.468,5.5,5.5-2.47,5.5-5.5,5.5z"/>
-
<polygon points="23,22,23,18,21,18,21,22,21,24,23,24,27,24,27,22"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_playlist.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_playlist.svg Thu May 27 13:10:59 2010 +0300
@@ -1,26 +1,17 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<rect x="7" y="6" width="2" height="2"/>
-<rect x="10.059" y="6" width="9.941" height="2"/>
-<rect x="7" y="11" width="2" height="2"/>
-<rect x="10.059" y="11" width="9.941" height="2"/>
-<rect x="7" y="16" width="2" height="2"/>
-<rect x="10.059" y="16" width="9.941" height="2"/>
-<rect x="7" y="21" width="2" height="2"/>
-<rect x="10.059" y="21" width="9.941" height="2"/>
-<path d="M16.115,26H5V3h18v10c0.213,0,0.426,0.034,0.633,0.103L26,13.892V0H2v29h14.463C16.167,28.387,16,27.711,16,27
- C16,26.657,16.043,26.324,16.115,26z"/>
-<path d="M23,15v9.3c-0.456-0.187-0.961-0.3-1.5-0.3c-1.934,0-3.5,1.343-3.5,3c0,1.656,1.566,3,3.5,3s3.5-1.344,3.5-3v-7.333L29,21
- v-4L23,15z"/>
+<rect height="2" width="2" x="7" y="6"/>
+<rect height="2" width="9.941" x="10.059" y="6"/>
+<rect height="2" width="2" x="7" y="11"/>
+<rect height="2" width="9.941" x="10.059" y="11"/>
+<rect height="2" width="2" x="7" y="16"/>
+<rect height="2" width="9.941" x="10.059" y="16"/>
+<rect height="2" width="2" x="7" y="21"/>
+<rect height="2" width="9.941" x="10.059" y="21"/>
+<path d="M16.115,26H5V3h18v10c0.213,0,0.426,0.034,0.633,0.103L26,13.892V0H2v29h14.463C16.167,28.387,16,27.711,16,27 C16,26.657,16.043,26.324,16.115,26z"/>
+<path d="M23,15v9.3c-0.456-0.187-0.961-0.3-1.5-0.3c-1.934,0-3.5,1.343-3.5,3c0,1.656,1.566,3,3.5,3s3.5-1.344,3.5-3v-7.333L29,21 v-4L23,15z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_plus.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_plus.svg Thu May 27 13:10:59 2010 +0300
@@ -1,14 +1,7 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<rect fill="none" width="30" height="30"/>
-<rect x="4" y="13" width="22" height="4"/>
-<rect x="13" y="4" width="4" height="22"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
+<rect height="4" width="22" x="4" y="13"/>
+<rect height="22" width="4" x="13" y="4"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_podcast.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_podcast.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M18.8,8.537l-1.735-1.735c-1.598-1.598-4.188-1.598-5.784,0l-4.05,4.05-1.155-1.157-1.735,1.737,1.157,1.157-2.313,2.31c-0.646,0.647-1.019,1.458-1.142,2.299l-0.015,0.015,0.013,0.014c-0.171,1.226,0.2,2.515,1.144,3.457l1.735,1.735c0.943,0.944,2.231,1.315,3.457,1.145l0.014,0.013,0.015-0.016c0.048-0.007,0.096-0.005,0.144-0.013v2.506h-4.092c-0.451,0-0.818,0.366-0.818,0.818v1.636h12.27v-1.636c0-0.452-0.366-0.818-0.818-0.818h-4.09v-3.933l2.016-2.016,1.156,1.156,1.735-1.734-1.157-1.157,4.05-4.049c1.59-1.6,1.59-4.18-0.01-5.783zm-9.026,8.113c-0.903,0-1.636-0.732-1.636-1.636s0.732-1.636,1.636-1.636,1.636,0.731,1.636,1.636c0,0.91-0.73,1.64-1.636,1.64zm7.866-3.48l-4.049,4.049-1.161-1.162c0.127-0.323,0.203-0.673,0.203-1.041,0-1.579-1.284-2.863-2.863-2.863-0.368,0-0.718,0.076-1.042,0.203l-0.335-0.35,4.049-4.05c0.957-0.957,2.514-0.957,3.471,0l1.735,1.734c0.96,0.956,0.96,2.516,0,3.476z"/>
-
<path d="M22.21,1.066l-1.09,1.739c4.889,3.068,6.369,9.545,3.302,14.44l1.738,1.09c3.67-5.85,1.9-13.59-3.95-17.26z"/>
-
<path d="M20.03,4.544l-1.091,1.738c2.972,1.867,3.874,5.803,2.007,8.773l1.739,1.094c2.46-3.93,1.27-9.138-2.66-11.61z"/>
-
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_portrait.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_portrait.svg Thu May 27 13:10:59 2010 +0300
@@ -1,11 +1,6 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<rect fill="none" width="30" height="30"/>
-<path d="M17.852,16.471c-0.013-0.158,0-0.438,0.002-0.596c1.086-0.732,2.026-1.654,2.6-2.777c1.061-2.08,0.672-7.391,0.672-7.391
- c0-2.17-3.242-4.707-5.436-4.707h-1.392c-2.193,0-5.424,2.537-5.424,4.707c0,0-0.331,5.293,0.658,7.391
- c0.545,1.145,1.504,2.076,2.615,2.807c0.002,0.147,0.014,0.418,0.004,0.565c-0.137,2.127-7.302,5.938-7.651,6.398V29h3v-2h1.999v2
- h11v-2h2v2h3v-6.125C25.148,22.412,17.984,18.598,17.852,16.471z"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
+<path d="M17.852,16.471c-0.013-0.158,0-0.438,0.002-0.596c1.086-0.732,2.026-1.654,2.6-2.777c1.061-2.08,0.672-7.391,0.672-7.391 c0-2.17-3.242-4.707-5.436-4.707h-1.392c-2.193,0-5.424,2.537-5.424,4.707c0,0-0.331,5.293,0.658,7.391 c0.545,1.145,1.504,2.076,2.615,2.807c0.002,0.147,0.014,0.418,0.004,0.565c-0.137,2.127-7.302,5.938-7.651,6.398V29h3v-2h1.999v2 h11v-2h2v2h3v-6.125C25.148,22.412,17.984,18.598,17.852,16.471z"/>
</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_power.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<path d="M12.871,3.721c0.038,12.177,0.038,12.177,0.038,12.177s0.008,2.131,2.138,2.137c2.13,0.008,2.124-2.124,2.124-2.124 C17.131,3.735,17.131,3.735,17.131,3.735s-0.158-2.284-2.138-2.138C12.863,1.59,12.871,3.721,12.871,3.721L12.871,3.721z"/>
+<path d="M18.112,5.663v3.796c2.921,1.176,4.832,4.033,4.832,7.37c0,4.382-3.563,7.945-7.945,7.945c-4.379,0-7.943-3.563-7.943-7.945 c0-3.279,1.831-6.101,4.674-7.313V5.704C6.927,7.12,3.408,11.563,3.408,16.818c0,6.392,5.201,11.591,11.591,11.591 c6.393,0,11.593-5.199,11.593-11.591C26.592,11.505,22.995,7.027,18.112,5.663z"/>
+<rect fill="none" height="30" width="30"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_predictive_text_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_predictive_text_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M25.502,4.497c-3.124-3.124-6.923-4.391-8.485-2.828c-0.001,0.001-0.002,0.002-0.003,0.003L2.871,15.814l-0.008,0.07l0,0
- l-0.019,0.173L1.489,28.445l-0.032,0.097l0.098-0.032l12.595-1.415l0.542-0.539c0,0,0,0,0-0.001l13.635-13.569
- c0.001-0.001,0.002-0.002,0.004-0.003C29.893,11.42,28.626,7.621,25.502,4.497z M7.257,25.857l-3.13-3.131l0.656-5.995l0.082-0.082
- c1.639,0.432,3.549,1.566,5.266,3.282c1.665,1.665,2.781,3.512,3.24,5.117l-0.137,0.137L7.257,25.857z M26.916,11.568l-12.15,12.093
- c-0.459-1.606-1.574-3.456-3.241-5.123c-1.708-1.709-3.617-2.856-5.253-3.295L18.428,3.086c0.355-0.355,2.922,0.087,5.66,2.825
- S27.269,11.216,26.916,11.568z"/>
+<path d="M25.502,4.497c-3.124-3.124-6.923-4.391-8.485-2.828c-0.001,0.001-0.002,0.002-0.003,0.003L2.871,15.814l-0.008,0.07l0,0 l-0.019,0.173L1.489,28.445l-0.032,0.097l0.098-0.032l12.595-1.415l0.542-0.539c0,0,0,0,0-0.001l13.635-13.569 c0.001-0.001,0.002-0.002,0.004-0.003C29.893,11.42,28.626,7.621,25.502,4.497z M7.257,25.857l-3.13-3.131l0.656-5.995l0.082-0.082 c1.639,0.432,3.549,1.566,5.266,3.282c1.665,1.665,2.781,3.512,3.24,5.117l-0.137,0.137L7.257,25.857z M26.916,11.568l-12.15,12.093 c-0.459-1.606-1.574-3.456-3.241-5.123c-1.708-1.709-3.617-2.856-5.253-3.295L18.428,3.086c0.355-0.355,2.922,0.087,5.66,2.825 S27.269,11.216,26.916,11.568z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_predictive_text_on.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_predictive_text_on.svg Thu May 27 13:10:59 2010 +0300
@@ -1,22 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M25.502,4.497c-3.124-3.124-6.923-4.391-8.485-2.828c-0.001,0.001-0.002,0.002-0.003,0.003L2.871,15.814l-0.008,0.07l0,0
- l-0.019,0.173L1.489,28.445l-0.032,0.097l0.098-0.032l12.595-1.415l0.542-0.539c0,0,0,0,0-0.001l13.635-13.569
- c0.001-0.001,0.002-0.002,0.004-0.003C29.893,11.42,28.626,7.621,25.502,4.497z M7.257,25.857l-3.13-3.131l0.656-5.995l0.082-0.082
- c1.639,0.432,3.549,1.566,5.266,3.282c1.665,1.665,2.781,3.512,3.24,5.117l-0.137,0.137L7.257,25.857z M26.916,11.568l-12.15,12.093
- c-0.459-1.606-1.574-3.456-3.241-5.123c-1.708-1.709-3.617-2.856-5.253-3.295L18.428,3.086c0.355-0.355,2.922,0.087,5.66,2.825
- S27.269,11.216,26.916,11.568z"/>
-<rect x="16.014" y="28.005" width="11.986" height="1.995"/>
-<rect x="20" y="24.005" width="8" height="1.995"/>
+<path d="M25.502,4.497c-3.124-3.124-6.923-4.391-8.485-2.828c-0.001,0.001-0.002,0.002-0.003,0.003L2.871,15.814l-0.008,0.07l0,0 l-0.019,0.173L1.489,28.445l-0.032,0.097l0.098-0.032l12.595-1.415l0.542-0.539c0,0,0,0,0-0.001l13.635-13.569 c0.001-0.001,0.002-0.002,0.004-0.003C29.893,11.42,28.626,7.621,25.502,4.497z M7.257,25.857l-3.13-3.131l0.656-5.995l0.082-0.082 c1.639,0.432,3.549,1.566,5.266,3.282c1.665,1.665,2.781,3.512,3.24,5.117l-0.137,0.137L7.257,25.857z M26.916,11.568l-12.15,12.093 c-0.459-1.606-1.574-3.456-3.241-5.123c-1.708-1.709-3.617-2.856-5.253-3.295L18.428,3.086c0.355-0.355,2.922,0.087,5.66,2.825 S27.269,11.216,26.916,11.568z"/>
+<rect height="1.995" width="11.986" x="16.014" y="28.005"/>
+<rect height="1.995" width="8" x="20" y="24.005"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_presentation.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_presentation.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M29,7v-4h-28v4h1v16h-1v4h28v-4h-1v-16h1zm-3,16h-22v-16h22v16z"/>
-
<polygon points="5,22,25,22,25,21,24,21,24,10,21,10,21,21,19,21,19,13,16,13,16,21,14,21,14,17,11,17,11,21,9,21,9,15,6,15,6,21,5,21"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_previous.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_previous.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<polygon points="6,4 6,26 10,26 10,15 10,4 "/>
<polygon points="10,15 24,26 24,4 "/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_private_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_private_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,25 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M7.129,15.84c-0.006-0.09,0-0.523,0-0.614,0.621-0.419,1.057-0.91,1.383-1.552,0.605-1.188,0.281-3.985,0.281-3.985,0-1.245-1.647-2.695-2.898-2.695h-0.795c-1.254,0-2.903,1.45-2.903,2.689,0,0-0.287,2.783,0.279,3.981,0.311,0.654,0.76,1.139,1.395,1.556,0.002,0.085,0.007,0.529,0.002,0.614-0.078,1.22-3.673,3.39-3.873,3.66v3.5h11.5v-3.5c-0.2-0.26-4.295-2.44-4.371-3.66z"/>
-
<path d="M16.35,16.61c-0.603-1.273-0.687-3.219-0.65-4.633-1.034-0.719-2.033-1.543-2.07-2.138-0.006-0.09,0-0.523,0-0.614,0.621-0.419,1.057-0.91,1.383-1.552,0.605-1.188,0.281-3.985,0.281-3.985,0-1.241-1.64-2.691-2.89-2.691h-0.8c-1.254,0-2.902,1.45-2.902,2.689,0,0-0.118,1.153-0.052,2.294,1.202,0.875,2.088,2.216,2.145,3.568,0.098,0.898,0.291,3.486-0.496,5.031-0.215,0.422-0.468,0.806-0.762,1.156,0.403,0.321,1.018,0.747,1.815,1.261h5.229c-0.07-0.13-0.15-0.25-0.22-0.39z"/>
-
<path d="M26.45,10.53c0-0.746-0.465-1.543-1.115-2.195l-7.244,7.245c0.022,0.059,0.044,0.121,0.069,0.175,0.361,0.764,0.877,1.345,1.569,1.85l6.752-6.752c-0.03-0.21-0.04-0.33-0.04-0.33z"/>
-
<path d="M24.26,18.6c-0.007-0.118-0.001-0.687,0.001-0.807,0.814-0.549,1.385-1.194,1.814-2.037,0.297-0.583,0.424-1.461,0.466-2.332l-12.29,12.3v2.28h1.386l8.84-8.84c-0.12-0.2-0.21-0.38-0.22-0.56z"/>
-
<path d="M23.76,7.263c-0.38-0.159-0.76-0.263-1.12-0.263h-1.04c-1.645,0-3.81,1.904-3.81,3.53,0,0-0.14,1.365-0.079,2.785l6.05-6.057z"/>
-
<path d="M25.77,20.5l-7.49,7.5h3.665l5.967-5.968c-0.71-0.46-1.48-0.99-2.14-1.53z"/>
-
<path d="M30,23.41c-0.042-0.055-0.223-0.179-0.479-0.346l-4.94,4.94h3.665l1.76-1.75v-2.844z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_qcif.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_qcif.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
<path d="M1,3v24h28V3H1z M26,24H4V6h22V24z"/>
-<path d="M7.854,18.328c-0.639-0.164-1.121-0.543-1.445-1.141c-0.326-0.599-0.488-1.465-0.488-2.601c0-1.238,0.223-2.15,0.666-2.736
- c0.444-0.587,1.104-0.882,1.983-0.882c0.883,0,1.547,0.295,1.992,0.885c0.447,0.588,0.67,1.5,0.67,2.734
- c0,1.139-0.172,2.023-0.516,2.65c-0.344,0.629-0.859,1.002-1.545,1.119c0.059,0.272,0.15,0.479,0.277,0.619
- c0.127,0.141,0.391,0.211,0.791,0.211v0.771H9.918c-0.602,0-1.059-0.121-1.371-0.362C8.234,19.352,8.002,18.93,7.854,18.328z
- M8.57,17.566c0.408,0,0.717-0.213,0.932-0.637c0.213-0.427,0.318-1.207,0.318-2.343c0-1.029-0.105-1.75-0.316-2.16
- c-0.213-0.411-0.524-0.618-0.934-0.618c-0.406,0-0.717,0.199-0.93,0.6c-0.213,0.398-0.32,1.125-0.32,2.18
- c0,0.992,0.105,1.736,0.313,2.234C7.842,17.318,8.154,17.566,8.57,17.566z"/>
-<path d="M14.953,18.406c-0.928,0-1.625-0.295-2.092-0.887c-0.469-0.59-0.701-1.563-0.701-2.912c0-1.211,0.234-2.122,0.705-2.728
- c0.471-0.607,1.176-0.912,2.117-0.912c0.383,0,0.77,0.053,1.156,0.156v0.856c-0.384-0.115-0.728-0.172-1.029-0.172
- c-0.519,0-0.906,0.23-1.162,0.691c-0.258,0.461-0.387,1.15-0.387,2.067c0,1.066,0.133,1.834,0.397,2.3
- c0.267,0.467,0.664,0.698,1.192,0.698c0.312,0,0.64-0.049,0.986-0.146v0.83C15.752,18.354,15.355,18.406,14.953,18.406z"/>
+<path d="M7.854,18.328c-0.639-0.164-1.121-0.543-1.445-1.141c-0.326-0.599-0.488-1.465-0.488-2.601c0-1.238,0.223-2.15,0.666-2.736 c0.444-0.587,1.104-0.882,1.983-0.882c0.883,0,1.547,0.295,1.992,0.885c0.447,0.588,0.67,1.5,0.67,2.734 c0,1.139-0.172,2.023-0.516,2.65c-0.344,0.629-0.859,1.002-1.545,1.119c0.059,0.272,0.15,0.479,0.277,0.619 c0.127,0.141,0.391,0.211,0.791,0.211v0.771H9.918c-0.602,0-1.059-0.121-1.371-0.362C8.234,19.352,8.002,18.93,7.854,18.328z M8.57,17.566c0.408,0,0.717-0.213,0.932-0.637c0.213-0.427,0.318-1.207,0.318-2.343c0-1.029-0.105-1.75-0.316-2.16 c-0.213-0.411-0.524-0.618-0.934-0.618c-0.406,0-0.717,0.199-0.93,0.6c-0.213,0.398-0.32,1.125-0.32,2.18 c0,0.992,0.105,1.736,0.313,2.234C7.842,17.318,8.154,17.566,8.57,17.566z"/>
+<path d="M14.953,18.406c-0.928,0-1.625-0.295-2.092-0.887c-0.469-0.59-0.701-1.563-0.701-2.912c0-1.211,0.234-2.122,0.705-2.728 c0.471-0.607,1.176-0.912,2.117-0.912c0.383,0,0.77,0.053,1.156,0.156v0.856c-0.384-0.115-0.728-0.172-1.029-0.172 c-0.519,0-0.906,0.23-1.162,0.691c-0.258,0.461-0.387,1.15-0.387,2.067c0,1.066,0.133,1.834,0.397,2.3 c0.267,0.467,0.664,0.698,1.192,0.698c0.312,0,0.64-0.049,0.986-0.146v0.83C15.752,18.354,15.355,18.406,14.953,18.406z"/>
<path d="M16.725,18.328v-0.84h0.603v-5.601h-0.603v-0.84h2.549v0.84h-0.6v5.602h0.6v0.84L16.725,18.328L16.725,18.328z"/>
<path d="M20.344,18.328v-7.281h3.74v0.84h-2.398v2.301h1.871v0.85h-1.871v3.291L20.344,18.328L20.344,18.328z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_radio_collections.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_radio_collections.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<path d="M15.46,20.81l-1.366-1.366c0.058-0.056,0.121-0.104,0.179-0.162,1.753-1.754,1.753-4.611-0.004-6.368-0.056-0.056-0.114-0.104-0.171-0.155l1.362-1.362c0.056,0.052,0.116,0.099,0.172,0.154,2.509,2.51,2.513,6.591,0.007,9.097-0.06,0.05-0.12,0.1-0.18,0.16zm2.44,2.43l-1.367-1.366c0.061-0.056,0.125-0.106,0.184-0.164,3.094-3.095,3.092-8.133-0.008-11.23-0.057-0.056-0.115-0.104-0.172-0.155l1.363-1.363c0.057,0.055,0.115,0.1,0.172,0.155,3.852,3.853,3.857,10.11,0.01,13.96-0.05,0.06-0.11,0.11-0.17,0.17z"/>
-
<polygon points="5,0,5,3,27,3,27,25,30,25,30,0"/>
-
<path d="M0,30h25v-25h-25v25zm3-22h19v19h-19v-19z"/>
-
<path d="M8.082,16.93v4.336c-0.374-0.152-0.787-0.244-1.228-0.244-1.582,0-2.864,1.098-2.864,2.454,0,1.355,1.282,2.454,2.864,2.454,1.581,0,2.863-1.099,2.863-2.454v-6.001l3.272,1.092v-3.272l-4.908-1.636v3.267z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_radio_stations.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_radio_stations.svg Thu May 27 13:10:59 2010 +0300
@@ -1,35 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<rect height="2" width="2" x="7" y="6"/>
-
<rect height="2" width="2" x="7" y="11"/>
-
<rect height="2" width="2" x="7" y="16"/>
-
<rect height="2" width="2" x="7" y="21"/>
-
<rect height="2" width="9.942" x="10.06" y="6"/>
-
<rect height="2" width="9.942" x="10.06" y="11"/>
-
<rect height="2" width="4.941" x="10.06" y="21"/>
-
<path d="M15,17c0-0.357,0.103-0.699,0.277-1h-5.219v2h4.94v-1z"/>
-
<path d="M11.32,26h-6.32v-23h18v10.84c0.23-0.124,0.473-0.216,0.727-0.243,0.101-0.24,0.246-0.461,0.435-0.648l1.362-1.363c0.145-0.144,0.308-0.252,0.478-0.342v-11.25h-24v29h9.325c-0.18-0.469-0.296-0.963-0.296-1.486,0.01-0.53,0.12-1.04,0.3-1.51z"/>
-
<path d="M22.58,23.63l1.36,1.37c0.06-0.055,0.119-0.104,0.179-0.163,2.506-2.506,2.502-6.587-0.006-9.097-0.058-0.057-0.117-0.104-0.173-0.154l-1.362,1.361c0.058,0.053,0.114,0.101,0.172,0.156,1.757,1.756,1.759,4.613,0.004,6.367-0.05,0.05-0.11,0.1-0.17,0.15z"/>
-
<path d="M27.11,13.16c-0.055-0.056-0.112-0.101-0.17-0.155l-1.362,1.363c0.055,0.052,0.114,0.1,0.17,0.155,3.101,3.099,3.104,8.136,0.008,11.23-0.058,0.058-0.121,0.108-0.183,0.164l1.367,1.366c0.06-0.057,0.123-0.107,0.183-0.166,3.83-3.84,3.83-10.1-0.02-13.95z"/>
-
<path d="M22.03,19l-5.03-2v8.305c-0.254-0.152-0.666-0.244-1.107-0.244-1.583,0-2.864,1.098-2.864,2.453s1.28,2.49,2.86,2.49c1.59,0,3.11-1,3.11-2.49v-6.51l3.029,1v-3z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_recentlog.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_recentlog.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M0,0v30h30v-30h-30zm28.24,26.99l-6.012-6.012-0.454,2.042,5.218,5.219h-24.37l5.535-5.534-0.454-2.042-5.942,5.941v-23.6l9.352,9.352h2.119v-0.377l-2.467-2.467c-0.202-0.056-0.401-0.12-0.594-0.202-2.479-1.04-3.137-2.756-3.311-3.69l-3.856-3.856h23.59l-3.413,3.413c-0.041,0.684-0.408,2.89-3.363,4.141-0.348,0.147-0.714,0.25-1.093,0.315l-1.968,1.968v0.763h1.732l9.738-9.738v24.36z" fill-opacity="0.5" stroke-opacity="0.5"/>
-
<rect height="3.519" width="17.65" x="6.177" y="13.25"/>
-
<polygon points="9.706,25.59,20.29,25.59,22.06,17.65,7.941,17.65"/>
-
<path d="M10.52,8.506c1.35,0.571,2.732,0.287,3.599-0.017v3.875h1.766v-3.871c0.866,0.304,2.249,0.588,3.599,0.017,2.926-1.238,2.831-3.499,2.831-3.499s-1.41-1.298-4.335-0.06c-2.645,1.12-2.94,2.791-2.973,3.101h-0.01c-0.032-0.31-0.328-1.98-2.973-3.101-2.925-1.238-4.335,0.06-4.335,0.06s-0.102,2.261,2.825,3.499z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_redeye.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_redeye.svg Thu May 27 13:10:59 2010 +0300
@@ -1,11 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<path d="M24.13,21l3.87-11h-8.639l3.179-9h-5.302l-3.275,9.273c2.109,0.408,4.498,1.305,6.408,2.727h1.268l-0.29,0.824c0.824,0.778,1.511,1.672,1.962,2.698l0.874,1.988-0.874,1.99c-0.965,2.193-2.979,3.809-5.204,4.881l3.39,3.62,7.5-8h-4.869z"/>
-
<path d="M21.48,17.33c-1.524-3.469-6.775-5.315-9.979-5.315-3.205,0-8.457,1.848-9.98,5.315l-0.52,1.17,0.52,1.184c1.523,3.471,6.777,5.318,9.982,5.318,3.203,0,8.453-1.848,9.978-5.316l0.52-1.18-0.52-1.18zm-17.14,1.18c0.793-1.807,4.152-3.297,6.66-3.479v0.031c-1.693,0.244-3,1.688-3,3.449s1.307,3.205,3,3.449v0.031c-2.51-0.18-5.867-1.67-6.66-3.48zm7.66,3.48v-0.031c1.694-0.244,3-1.688,3-3.449s-1.306-3.205-3-3.449v-0.031c2.507,0.182,5.866,1.672,6.66,3.479-0.8,1.81-4.15,3.3-6.66,3.48z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_refresh.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,11 +0,0 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
-<rect fill="none" height="30" width="30"/>
-
-<path d="M8,15c0-1.931,0.799-3.666,2.069-4.932l3.517,3.518,1.061-10.25-10.26,1.054,3.539,3.538c-1.811,1.809-2.933,4.308-2.933,7.068,0,5.021,3.705,9.166,8.528,9.88l0.309-2.984c-3.31-0.56-5.84-3.44-5.84-6.9z"/>
-
-<path d="M16.41,16.41l-1.061,10.25,10.25-1.061-3.538-3.539c1.82-1.8,2.94-4.3,2.94-7.06,0-5.021-3.705-9.166-8.528-9.88l-0.309,2.984c3.31,0.557,5.84,3.436,5.84,6.896,0,1.93-0.793,3.673-2.061,4.939l-3.53-3.53z"/>
-
-</svg>
\ No newline at end of file
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reject_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reject_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M15.69,11.54c1.257-0.96,2.563-1.786,3.289-2.164,0.001,0.001,0,0.003,0.001,0.004,0.001-0.001,0.005-0.006,0.007-0.008l1.277,2.142c0.183,0.313,0.589,0.408,0.953,0.256l7.359-4.248c0.383-0.22,0.533-0.68,0.334-1.022,0,0-0.203-0.305-0.818-1.062,0.002,0.001,0.002,0.003,0.004,0.005-0.002-0.002,0-0.005-0.002-0.008-0.312-0.383-0.35-0.397-0.751-0.765-1.204-1.103-2.53-1.536-2.53-1.536-0.514-0.182-2.241-0.282-4.417,0.374-1.677,0.506-4.996,2.505-7.888,4.851l3.19,3.181z"/>
-
<path d="M9.396,18.76c-0.01-0.001-0.019-0.001-0.027-0.003,0.002-0.002,0.008-0.01,0.008-0.01,0.652-1.125,1.375-2.136,2.143-3.077l-3.205-3.205c-2.367,2.794-4.219,5.808-4.637,6.907-0.814,2.148-0.74,4.517-0.563,5.205,0,0,0.169,0.513,0.56,1.211,0.005,0.007,0.01,0.016,0.015,0.024,0.038,0.068,0.076,0.136,0.119,0.207,0.001,0.002,0.004,0.001,0.005,0.002,0.21,0.35,0.464,0.729,0.783,1.114,0.374,0.449,0.392,0.578,0.785,0.925h0.003c0.723,0.636,1.021,0.83,1.021,0.83,0.345,0.224,0.827,0.103,1.08-0.268l4.794-7.042c0.254-0.372,0.186-0.856-0.158-1.078l-2.724-1.74z"/>
-
<rect height="35.83" transform="matrix(0.7066 -0.7076 0.7076 0.7066 -6.0774 14.6889)" width="1.867" x="13.74" y="-3.24"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_remove_from_collection.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_remove_from_collection.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M0,0v30h30v-30h-30zm28.24,26.99l-6.012-6.012-0.454,2.042,5.218,5.219h-24.37l5.535-5.534-0.454-2.042-5.942,5.941v-23.6l9.352,9.352h2.119v-0.377l-2.467-2.467c-0.202-0.056-0.401-0.12-0.594-0.202-2.479-1.04-3.137-2.756-3.311-3.69l-3.856-3.856h23.59l-3.413,3.413c-0.041,0.684-0.408,2.89-3.363,4.141-0.348,0.147-0.714,0.25-1.093,0.315l-1.968,1.968v0.763h1.732l9.738-9.738v24.36z" fill-opacity="0.5" stroke-opacity="0.5"/>
-
<rect height="3.519" width="17.65" x="6.177" y="13.25"/>
-
<polygon points="9.706,25.59,20.29,25.59,22.06,17.65,7.941,17.65"/>
-
<path d="M10.52,8.506c1.35,0.571,2.732,0.287,3.599-0.017v3.875h1.766v-3.871c0.866,0.304,2.249,0.588,3.599,0.017,2.926-1.238,2.831-3.499,2.831-3.499s-1.41-1.298-4.335-0.06c-2.645,1.12-2.94,2.791-2.973,3.101h-0.01c-0.032-0.31-0.328-1.98-2.973-3.101-2.925-1.238-4.335,0.06-4.335,0.06s-0.102,2.261,2.825,3.499z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_remove_from_video_collection.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_remove_from_video_collection.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M13,22.5c0-0.169,0.017-0.333,0.025-0.5h-1.02v-1h1.131c0.11-0.693,0.293-1.364,0.546-2h-3.68v-3h5v0.689c0.875-1.127,1.995-2.048,3.283-2.689h-0.28v-1h1v-2h-13v2h2v1h-2v2h2v3h-2v2h2v1h-2v2h7.131c-0.08-0.49-0.13-0.99-0.13-1.5zm2-9.5h2v1h-2v-1zm-3,0h2v1h-2v-1zm-3,0h2v1h-2v-1zm2,9h-2v-1h2v1z"/>
-
<path d="M13.68,26h-9.68v-17h17v4.13c0.49-0.078,0.988-0.13,1.5-0.13s1.01,0.052,1.5,0.13v-7.13h-23v23h14.59c-0.81-0.86-1.47-1.88-1.91-3z"/>
-
<path d="M26,13.68c1.121,0.446,2.135,1.1,3,1.914v-14.59h-23v3h20v9.677z"/>
-
<path d="M22.5,15c-4.137,0-7.5,3.364-7.5,7.5s3.363,7.5,7.5,7.5,7.5-3.364,7.5-7.5-3.36-7.5-7.5-7.5zm0,13c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5,5.5,2.468,5.5,5.5-2.47,5.5-5.5,5.5z"/>
-
<rect height="3" width="9" x="18" y="21"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_repeat.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_repeat.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M15,2C8.158,2,2.563,7.289,2.051,14h3C5.554,8.954,9.824,5,15,5c5.514,0,10,4.486,10,10c0,5.515-4.486,10-10,10
- c-3.523,0-6.621-1.836-8.402-4.598L10,17H2v8l2.445-2.445C6.8,25.848,10.642,28,15,28c7.18,0,13-5.82,13-13S22.18,2,15,2z"/>
+<path d="M15,2C8.158,2,2.563,7.289,2.051,14h3C5.554,8.954,9.824,5,15,5c5.514,0,10,4.486,10,10c0,5.515-4.486,10-10,10 c-3.523,0-6.621-1.836-8.402-4.598L10,17H2v8l2.445-2.445C6.8,25.848,10.642,28,15,28c7.18,0,13-5.82,13-13S22.18,2,15,2z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_repeat_exception.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_repeat_exception.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<path d="M3.98,8.128C2.902,9.856,2.214,11.854,2.051,14h3c0.132-1.319,0.526-2.562,1.122-3.681L3.98,8.128z"/>
-<path d="M15,5c5.514,0,10,4.486,10,10c0,1.691-0.426,3.283-1.169,4.681l2.19,2.19C27.268,19.876,28,17.526,28,15
- c0-7.18-5.82-13-13-13c-2.528,0-4.883,0.726-6.877,1.975l2.198,2.197C11.719,5.428,13.309,5,15,5z"/>
-<path d="M15,25c-3.523,0-6.621-1.836-8.402-4.598L10,17H2v8l2.445-2.445C6.8,25.848,10.642,28,15,28c2.527,0,4.877-0.732,6.873-1.98
- l-2.189-2.189C18.285,24.574,16.691,25,15,25z"/>
-<rect x="-3.24" y="13.738" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 14.6748 35.4224)" width="35.827" height="1.868"/>
+<path d="M15,5c5.514,0,10,4.486,10,10c0,1.691-0.426,3.283-1.169,4.681l2.19,2.19C27.268,19.876,28,17.526,28,15 c0-7.18-5.82-13-13-13c-2.528,0-4.883,0.726-6.877,1.975l2.198,2.197C11.719,5.428,13.309,5,15,5z"/>
+<path d="M15,25c-3.523,0-6.621-1.836-8.402-4.598L10,17H2v8l2.445-2.445C6.8,25.848,10.642,28,15,28c2.527,0,4.877-0.732,6.873-1.98 l-2.189-2.189C18.285,24.574,16.691,25,15,25z"/>
+<rect height="1.868" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 14.6748 35.4224)" width="35.827" x="-3.24" y="13.738"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_replace_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_replace_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,11 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M27.58,6.523l-7.36,4.248c-0.363,0.152-0.77,0.057-0.952-0.256l-1.278-2.142c-0.001,0.002-0.004,0.007-0.006,0.008v-0.004c-1.121,0.582-3.618,2.223-5.188,3.79-1.632,1.635-3.15,3.394-4.417,5.576,0,0-0.006,0.008-0.008,0.01,0.009,0.002,0.018,0.002,0.027,0.003l2.725,1.743c0.344,0.222,0.412,0.706,0.158,1.078l-4.795,7.05c-0.253,0.37-0.735,0.491-1.08,0.268,0,0-0.298-0.194-1.021-0.83h-0.003c-0.394-0.347-0.411-0.476-0.785-0.925-0.319-0.385-0.573-0.765-0.783-1.114-0.001-0.001-0.004,0-0.005-0.002-0.043-0.071-0.081-0.139-0.119-0.207-0.005-0.009-0.01-0.018-0.015-0.024-0.391-0.698-0.56-1.211-0.56-1.211-0.178-0.688-0.252-3.057,0.563-5.205,0.52-1.364,3.24-5.672,6.42-8.854,3.181-3.182,8.124-6.349,10.3-7.005s3.903-0.556,4.416-0.374,1.326,0.434,2.531,1.536c0.401,0.367,0.439,0.382,0.75,0.765,0.002,0.003,0.002,0.006,0.003,0.008-0.001-0.002-0.003-0.004-0.005-0.005,0.616,0.757,0.818,1.062,0.818,1.062,0.19,0.331,0.04,0.791-0.34,1.01z"/>
-
<path d="M24,11l-6,8h3.963v6.002h-1.96v-5h-3.997v5c0,3,2.775,5,5.5,5s5.5-2,5.5-5v-6h3l-6-8z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M14.8,22.6c-0.217-0.163-0.387-0.371-0.52-0.6h-8.866l6.115-6.115,3.41,3.41,0.481-0.36,3.05-3.05,0.436,0.436,0.809-0.605-0.537-0.537,5.82-5.825v3.928c0.611,0.357,1,1.003,1,1.717v1h2v-11h-26v20h16l-3.2-2.4zm8.73-14.6l-8.53,8.53-8.527-8.53h17.05zm-18.53,1.355l5.822,5.822-5.82,5.82v-11.64z"/>
-
<polygon points="29,18,24,18,24,15,16,21,24,27,24,24,29,24"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply_all.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply_all.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M27,16h2c0.366,0,0.705,0.105,1,0.277v-13.28h-24v3h21v10z"/>
-
<path d="M15.33,23h-10.92l5.115-5.115,3.471,3.48,1.189-1.189c0.137-0.298,0.342-0.563,0.61-0.766l0.621-0.466,1.05-1.05,0.15,0.15,0.808-0.606-0.251-0.251,4.82-4.81v1.64l0.8-0.6c0.606-0.455,1.417-0.528,2.095-0.189,0.039,0.02,0.068,0.051,0.105,0.072v-5.28h-24v18h18.33l-4-3zm5.2-12l-7.53,7.53-7.527-7.53h15.05zm-16.53,1.36l4.822,4.822-4.822,4.82v-9.645z"/>
-
<polygon points="29,18,24,18,24,15,16,21,24,27,24,24,29,24"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply_all_email.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply_all_email.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M14.48,10.68c-1.992,0-3.585,0.628-4.777,1.885-1.193,1.258-1.79,2.989-1.79,5.197,0,1.423,0.337,2.545,1.012,3.367,0.675,0.824,1.506,1.234,2.494,1.234,0.758,0,1.401-0.181,1.932-0.545s1.019-0.972,1.463-1.823c0.031,0.11,0.074,0.21,0.112,0.313l2.128-1.596c-0.011-0.198-0.018-0.414-0.018-0.651,0-1.515,0.288-3.975,0.864-7.381h-3.409zm-0.25,5.58c-0.197,1.538-0.448,2.618-0.753,3.238-0.304,0.62-0.704,0.93-1.197,0.93-0.552,0-0.931-0.223-1.136-0.669-0.206-0.447-0.309-1.154-0.309-2.121,0-1.539,0.301-2.759,0.901-3.66s1.328-1.353,2.185-1.353h0.766l-0.46,3.63z"/>
-
<path d="M16.19,24.64c-0.816,0.148-1.612,0.225-2.388,0.225-5.465,0-8.197-2.861-8.197-8.584,0-2.563,0.738-4.566,2.216-6.01,1.477-1.443,3.396-2.165,5.759-2.165,2.239,0,3.965,0.685,5.18,2.053,1.214,1.369,1.82,3.311,1.82,5.824,0,0.029-0.003,0.054-0.003,0.082l2.22-1.66c0.037-0.028,0.081-0.041,0.12-0.066-0.23-2.387-1.02-4.306-2.383-5.741-1.64-1.726-3.98-2.589-7.02-2.589-3.045,0-5.56,0.923-7.543,2.772-1.985,1.848-2.977,4.388-2.977,7.638,0,3.398,0.965,6.015,2.896,7.846,1.929,1.82,4.524,2.74,7.784,2.74,0.766,0,1.644-0.088,2.636-0.266,0.764-0.138,1.433-0.301,2.013-0.489l-2.14-1.6z"/>
-
<path d="M17.58,4.108c2.239,0,3.965,0.685,5.18,2.053,1.214,1.369,1.82,3.311,1.82,5.824,0,0.037-0.004,0.068-0.004,0.104,0.164,0.672,0.267,1.391,0.335,2.133,0.66,0.35,1.08,1.04,1.08,1.79v0.071c0.654-1.065,1-2.46,1-4.223,0-3.108-0.821-5.527-2.463-7.256-1.64-1.731-3.98-2.594-7.02-2.594-2.769,0-5.094,0.771-6.984,2.3,0.94-0.192,1.93-0.3,2.98-0.3,0.92,0,1.79,0.073,2.61,0.215,0.46-0.067,0.95-0.107,1.45-0.107z"/>
-
<polygon points="29,19,24,19,24,16,16,22,24,28,24,25,29,25"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply_email.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply_email.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M14.8,20.4l2.013-1.51c0.092-0.151,0.184-0.301,0.271-0.469,0.021,0.074,0.051,0.138,0.075,0.209l2.4-1.801c-0.007-0.173-0.015-0.344-0.015-0.541,0-1.668,0.319-4.38,0.957-8.135h-3.787c-2.206,0-3.97,0.692-5.291,2.078s-1.982,3.295-1.982,5.729c0,1.567,0.374,2.805,1.121,3.712s1.668,1.36,2.762,1.36c0.362,0,0.697-0.045,1.013-0.12,0.13-0.19,0.28-0.37,0.47-0.51zm-1.78-2.24c-0.228-0.492-0.342-1.271-0.342-2.338,0-1.695,0.333-3.04,0.998-4.033s1.472-1.49,2.42-1.49h0.848l-0.506,4.006c-0.219,1.695-0.497,2.885-0.834,3.568s-0.78,1.02-1.33,1.02c-0.61,0-1.03-0.25-1.26-0.74z"/>
-
<path d="M15.02,23.76c-5.419-0.321-8.133-3.461-8.133-9.43,0-2.825,0.818-5.033,2.454-6.624s3.762-2.386,6.378-2.386c2.479,0,4.391,0.754,5.735,2.263s2.017,3.648,2.017,6.419c0,0.029-0.003,0.055-0.003,0.084,0.47-0.131,0.977-0.104,1.429,0.121,0.632,0.316,1.032,0.943,1.085,1.641,0.101-0.618,0.169-1.271,0.169-1.996,0-3.427-0.909-6.093-2.728-7.998s-4.43-2.842-7.79-2.842c-3.372,0-6.157,1.019-8.354,3.056s-3.296,4.844-3.296,8.414c0,3.746,1.068,6.629,3.206,8.647s5.011,3.028,8.62,3.028c0.632,0,1.356-0.072,2.127-0.182l-2.94-2.21z"/>
-
<polygon points="29,19,24,19,24,16,16,22,24,28,24,25,29,25"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reset.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<rect fill="none" width="30" height="30"/>
-<rect x="10" y="12.5" width="2" height="6"/>
-<path d="M11,8C4.925,8,0,12.926,0,19c0,6.076,4.925,11,11,11s11-4.924,11-11C22,12.926,17.075,8,11,8z M11,27c-4.419,0-8-3.582-8-8
- s3.581-8,8-8c4.418,0,8,3.582,8,8S15.418,27,11,27z"/>
-<path d="M30,13h-2c0-4.502-3.662-8.166-8.166-8.166c-0.094,0-0.188,0.002-0.279,0.004L19.48,2.84
- c0.117-0.004,0.234-0.006,0.354-0.006C25.439,2.834,30,7.395,30,13L30,13z"/>
-<polygon points="20,4 20,8 17.001,6 14,4 17.001,2.002 20,0 "/>
-</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_restore_settings.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_restore_settings.svg Thu May 27 13:10:59 2010 +0300
@@ -1,25 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<rect fill="none" width="30" height="30"/>
-<path d="M29.999,13h-2c0-4.502-3.662-8.166-8.166-8.166c-0.094,0-0.188,0.002-0.279,0.004L19.479,2.84
- c0.117-0.004,0.234-0.006,0.354-0.006C25.438,2.834,29.999,7.395,29.999,13L29.999,13z"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
+<path d="M29.999,13h-2c0-4.502-3.662-8.166-8.166-8.166c-0.094,0-0.188,0.002-0.279,0.004L19.479,2.84 c0.117-0.004,0.234-0.006,0.354-0.006C25.438,2.834,29.999,7.395,29.999,13L29.999,13z"/>
<polygon points="19.999,3.999 19.999,8 17,5.999 13.999,3.999 17,2.001 19.999,0 "/>
-<path d="M2.921,6.375c-0.289,0.289-0.543,0.6-0.781,0.918l5.024,5.023c0.624,0.623,1.638,0.623,2.263-0.002l0.565-0.564
- c0.625-0.625,0.624-1.639,0-2.264L5.247,4.742C4.407,5.143,3.616,5.682,2.921,6.375z"/>
-<path d="M25.083,21.602L16.882,13.4c0.402-2.592-0.383-5.334-2.375-7.326C11.192,2.76,5.8,2.76,2.485,6.074s-3.313,8.707,0,12.021
- c1.992,1.992,4.734,2.777,7.326,2.375l8.201,8.201c1.771,1.771,4.654,1.771,6.428,0l0.643-0.643
- C26.854,26.256,26.854,23.371,25.083,21.602z M22.345,25.367l-0.566,0.566c-0.625,0.623-1.637,0.625-2.262,0l-8.821-8.822
- c-2.013,0.879-4.443,0.508-6.089-1.139c-2.144-2.143-2.144-5.633,0-7.777c2.145-2.145,5.635-2.145,7.779,0
- c1.645,1.645,2.016,4.076,1.139,6.088l8.82,8.822C22.97,23.73,22.97,24.742,22.345,25.367z"/>
-<rect x="1.023" y="13.392" transform="matrix(-0.7072 0.7071 -0.7071 -0.7072 20.3094 20.3716)" width="9.826" height="2"/>
-<path d="M20.837,23.793c0.133,0.133,0.098,0.379-0.078,0.555l0,0c-0.174,0.174-0.422,0.209-0.553,0.078l-1.424-1.422
- c-0.131-0.133-0.096-0.381,0.078-0.555l0,0c0.176-0.174,0.424-0.209,0.555-0.078L20.837,23.793z"/>
+<path d="M2.921,6.375c-0.289,0.289-0.543,0.6-0.781,0.918l5.024,5.023c0.624,0.623,1.638,0.623,2.263-0.002l0.565-0.564 c0.625-0.625,0.624-1.639,0-2.264L5.247,4.742C4.407,5.143,3.616,5.682,2.921,6.375z"/>
+<path d="M25.083,21.602L16.882,13.4c0.402-2.592-0.383-5.334-2.375-7.326C11.192,2.76,5.8,2.76,2.485,6.074s-3.313,8.707,0,12.021 c1.992,1.992,4.734,2.777,7.326,2.375l8.201,8.201c1.771,1.771,4.654,1.771,6.428,0l0.643-0.643 C26.854,26.256,26.854,23.371,25.083,21.602z M22.345,25.367l-0.566,0.566c-0.625,0.623-1.637,0.625-2.262,0l-8.821-8.822 c-2.013,0.879-4.443,0.508-6.089-1.139c-2.144-2.143-2.144-5.633,0-7.777c2.145-2.145,5.635-2.145,7.779,0 c1.645,1.645,2.016,4.076,1.139,6.088l8.82,8.822C22.97,23.73,22.97,24.742,22.345,25.367z"/>
+<rect height="2" transform="matrix(-0.7072 0.7071 -0.7071 -0.7072 20.3094 20.3716)" width="9.826" x="1.023" y="13.392"/>
+<path d="M20.837,23.793c0.133,0.133,0.098,0.379-0.078,0.555l0,0c-0.174,0.174-0.422,0.209-0.553,0.078l-1.424-1.422 c-0.131-0.133-0.096-0.381,0.078-0.555l0,0c0.176-0.174,0.424-0.209,0.555-0.078L20.837,23.793z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_rewind.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_rewind.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<polygon points="14,15,25,26,25,4"/>
-
<polygon points="3,15,14,26,14,15,14,4"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_rsk_horizontal.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_rsk_horizontal.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M1,20h4c0-3.309,2.691-6,6-6h18v-4h-18c-5.514,0-10,4.49-10,10z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_rsk_vertical.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_rsk_vertical.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M20,29v-4c-3.309,0-6-2.691-6-6v-18h-4v18c0,5.51,4.49,10,10,10z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_search.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_search.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
-<rect fill="none" height="30" width="30"/>
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
+<rect fill="none" height="30" width="30"/>
<rect height="1.5" transform="matrix(0.7071 0.7072 -0.7072 0.7071 19.6001 4.8865)" width="4.501" x="1.652" y="25.35"/>
-
<path d="M25.64,4.355c-3.809-3.807-9.981-3.807-13.79,0-3.44,3.447-3.757,8.825-0.97,12.64l-1.681,1.68-0.53-0.531-4.773,4.773,3.182,3.183,4.773-4.772-0.53-0.531,1.681-1.681c3.814,2.791,9.193,2.475,12.64-0.972,3.81-3.8,3.81-9.978,0-13.78zm-2.12,11.66c-2.633,2.631-6.916,2.632-9.546,0-1.27-1.27-1.97-2.97-1.97-4.77,0-1.804,0.703-3.499,1.977-4.774,2.63-2.631,6.914-2.631,9.546,0,2.62,2.633,2.62,6.914-0.01,9.544z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_search_stop.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_search_stop.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,15 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g>
- <g opacity="0.5">
- <rect x="0" y="0.006" fill="none" width="30" height="30"/>
- </g>
- <g>
- <rect x="0.532" y="25.973" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 -13.8982 48.1905)" width="4.998" height="2"/>
- <path d="M11.802,8.788c0.351-1.107,0.959-2.15,1.836-3.026c2.924-2.925,7.682-2.924,10.605,0c2.923,2.924,2.925,7.682,0,10.604
- c-0.876,0.877-1.919,1.484-3.026,1.836l2.303,2.303c1.026-0.498,1.992-1.164,2.846-2.017c4.102-4.101,4.102-10.749,0-14.849
- c-4.101-4.102-10.748-4.102-14.85,0c-0.853,0.853-1.519,1.818-2.016,2.846L11.802,8.788z"/>
- <path d="M15.777,21.058l-6.829-6.83c0.349,1.1,0.874,2.156,1.593,3.115l-1.499,1.498l-0.707-0.707l-4.949,4.951l3.535,3.535
- l4.95-4.951l-0.707-0.707l1.499-1.498C13.622,20.184,14.677,20.71,15.777,21.058z"/>
- <rect x="13.175" y="-2.673" transform="matrix(-0.7062 0.708 -0.708 -0.7062 34.8635 16.0136)" width="1.868" height="35.827"/>
- </g>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30" x="0" y="0.006"/>
+</g>
+<g>
+<rect height="2" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 -13.8982 48.1905)" width="4.998" x="0.532" y="25.973"/>
+<path d="M11.802,8.788c0.351-1.107,0.959-2.15,1.836-3.026c2.924-2.925,7.682-2.924,10.605,0c2.923,2.924,2.925,7.682,0,10.604 c-0.876,0.877-1.919,1.484-3.026,1.836l2.303,2.303c1.026-0.498,1.992-1.164,2.846-2.017c4.102-4.101,4.102-10.749,0-14.849 c-4.101-4.102-10.748-4.102-14.85,0c-0.853,0.853-1.519,1.818-2.016,2.846L11.802,8.788z"/>
+<path d="M15.777,21.058l-6.829-6.83c0.349,1.1,0.874,2.156,1.593,3.115l-1.499,1.498l-0.707-0.707l-4.949,4.951l3.535,3.535 l4.95-4.951l-0.707-0.707l1.499-1.498C13.622,20.184,14.677,20.71,15.777,21.058z"/>
+<rect height="35.827" transform="matrix(-0.7062 0.708 -0.708 -0.7062 34.8635 16.0136)" width="1.868" x="13.175" y="-2.673"/>
+</g>
</g>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_seek_next.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_seek_next.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="13,5 23,15.066 13,25.133 "/>
<polygon points="3,5 13,15.066 3,25.133 "/>
-<rect x="23" y="5" width="4" height="20"/>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<rect height="20" width="4" x="23" y="5"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_seek_previous.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_seek_previous.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="17,25.133 7,15.066 17,5 "/>
<polygon points="27,25.133 17,15.066 27,5 "/>
-<rect x="3" y="5.133" width="4" height="20"/>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<rect height="20" width="4" x="3" y="5.133"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_send.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_send.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="1.538,18 2,21 4,21 4,18 "/>
<polygon points="0.77,13 1.23,16 4,16 4,13 "/>
<polygon points="0,8 0.462,11 4,11 4,8 "/>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M5,6v18h24V6H5z M24.527,9L17,16.527L9.473,9H24.527z M8,10.355l4.822,4.822L8,20V10.355z M8.414,21l5.115-5.115L17,19.355
- l3.471-3.471L25.586,21H8.414z M26,20l-4.822-4.822L26,10.355V20z"/>
+<path d="M5,6v18h24V6H5z M24.527,9L17,16.527L9.473,9H24.527z M8,10.355l4.822,4.822L8,20V10.355z M8.414,21l5.115-5.115L17,19.355 l3.471-3.471L25.586,21H8.414z M26,20l-4.822-4.822L26,10.355V20z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_send_mycard.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_send_mycard.svg Thu May 27 13:10:59 2010 +0300
@@ -1,24 +1,14 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="1.539,18 2,21 4,21 4,18 "/>
<polygon points="0.77,13 1.23,16 4,16 4,13 "/>
<polygon points="0,8 0.461,11 4,11 4,8 "/>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<path d="M5,6v18h24V6H5z M27,22H7V8h20V22z"/>
-<rect x="18" y="11" width="7" height="2"/>
-<rect x="18" y="15" width="7" height="2"/>
-<path d="M13.447,16.48c-0.004-0.076,0-0.443,0-0.52c0.553-0.355,0.939-0.771,1.23-1.313c0.537-1.007,0.25-3.373,0.25-3.373
- c0-1.049-1.465-2.275-2.577-2.275h-0.706c-1.115,0-2.58,1.227-2.58,2.275c0,0-0.255,2.355,0.248,3.369
- c0.276,0.554,0.676,0.963,1.24,1.316c0.002,0.071,0.006,0.447,0.002,0.52c-0.07,1.028-2.377,1.604-2.555,1.827V20h8v-1.69
- C15.821,18.086,13.516,17.509,13.447,16.48z"/>
+<rect height="2" width="7" x="18" y="11"/>
+<rect height="2" width="7" x="18" y="15"/>
+<path d="M13.447,16.48c-0.004-0.076,0-0.443,0-0.52c0.553-0.355,0.939-0.771,1.23-1.313c0.537-1.007,0.25-3.373,0.25-3.373 c0-1.049-1.465-2.275-2.577-2.275h-0.706c-1.115,0-2.58,1.227-2.58,2.275c0,0-0.255,2.355,0.248,3.369 c0.276,0.554,0.676,0.963,1.24,1.316c0.002,0.071,0.006,0.447,0.002,0.52c-0.07,1.028-2.377,1.604-2.555,1.827V20h8v-1.69 C15.821,18.086,13.516,17.509,13.447,16.48z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_settings.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_settings.svg Thu May 27 13:10:59 2010 +0300
@@ -1,11 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M22.49,21.78c-0.146-0.146-0.423-0.106-0.619,0.089-0.195,0.195-0.234,0.472-0.088,0.618l1.592,1.591c0.146,0.146,0.423,0.107,0.618-0.088s0.235-0.473,0.089-0.619l-1.59-1.59z"/>
-
<path d="M27.88,20.1l-9.029-9.028c0.489-2.928-0.385-6.041-2.639-8.295-3.704-3.704-9.73-3.704-13.44,0-3.703,3.704-3.703,9.73,0,13.44,2.255,2.254,5.369,3.128,8.297,2.639l9.027,9.028c1.949,1.949,5.122,1.949,7.072,0l0.707-0.707c1.95-1.96,1.95-5.13,0-7.08zm-23.91-14.01l4.114,4.113-3.505,3.505c-1.852-2.16-2.066-5.247-0.609-7.611zm21.79,18.96l-0.707,0.707c-0.78,0.781-2.048,0.781-2.829,0l-10.26-10.27c-1.9,0.773-4.089,0.629-5.867-0.467l5.529-5.528c0.781-0.78,0.781-2.047,0-2.828l-3.516-3.51c2.092-0.456,4.365,0.122,5.988,1.745,1.91,1.909,2.38,4.717,1.41,7.071l10.25,10.26c0.79,0.77,0.79,2.04,0.01,2.82z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shake_warning.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shake_warning.svg Thu May 27 13:10:59 2010 +0300
@@ -1,24 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0.006 0 30 30" enable-background="new 0.006 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<rect x="0.006" fill="none" width="30" height="30"/>
-<path d="M20.11,3.436c-0.041,0-0.084,0-0.125,0.002c-0.39-1.125-1.472-1.936-2.739-1.936c-0.104,0-0.207,0.006-0.309,0.016
- C16.451,0.615,15.488,0,14.381,0c-1.106,0-2.07,0.615-2.557,1.518c-0.102-0.01-0.205-0.016-0.309-0.016
- c-1.597,0-2.896,1.283-2.896,2.861v3.412C8.568,7.76,8.516,7.746,8.464,7.732c-0.263-0.066-0.531-0.1-0.797-0.1
- c-0.692,0-1.313,0.225-1.771,0.629c-0.886,0.756-1.137,2.027-0.64,3.234L9.169,21h11.929l1.906-6.926V6.295
- C23.005,4.717,21.707,3.436,20.11,3.436z M19.574,19h-9.065c-1.928-4.682-3.398-8.258-3.401-8.264
- c-0.12-0.293-0.18-0.725,0.089-0.955c0.199-0.176,0.529-0.172,0.777-0.109c0.506,0.127,0.894,0.438,1.167,0.838
- c0.259,0.377,0.711,1.797,0.96,2.664l0.518-0.1V4.363c0-0.477,0.402-0.861,0.896-0.861c0.496,0,0.896,0.385,0.896,0.861v6.861h1.074
- V2.857c0-0.475,0.4-0.857,0.895-0.857c0.496,0,0.895,0.383,0.895,0.857v8.367h1.076V4.363c0-0.477,0.4-0.861,0.895-0.861
- c0.496,0,0.894,0.385,0.894,0.861v6.861h1.075v-4.93c0-0.475,0.402-0.859,0.895-0.859c0.496,0,0.895,0.385,0.895,0.859v7.508h0.002
- L19.574,19z"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0.006 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30" x="0.006"/>
+<path d="M20.11,3.436c-0.041,0-0.084,0-0.125,0.002c-0.39-1.125-1.472-1.936-2.739-1.936c-0.104,0-0.207,0.006-0.309,0.016 C16.451,0.615,15.488,0,14.381,0c-1.106,0-2.07,0.615-2.557,1.518c-0.102-0.01-0.205-0.016-0.309-0.016 c-1.597,0-2.896,1.283-2.896,2.861v3.412C8.568,7.76,8.516,7.746,8.464,7.732c-0.263-0.066-0.531-0.1-0.797-0.1 c-0.692,0-1.313,0.225-1.771,0.629c-0.886,0.756-1.137,2.027-0.64,3.234L9.169,21h11.929l1.906-6.926V6.295 C23.005,4.717,21.707,3.436,20.11,3.436z M19.574,19h-9.065c-1.928-4.682-3.398-8.258-3.401-8.264 c-0.12-0.293-0.18-0.725,0.089-0.955c0.199-0.176,0.529-0.172,0.777-0.109c0.506,0.127,0.894,0.438,1.167,0.838 c0.259,0.377,0.711,1.797,0.96,2.664l0.518-0.1V4.363c0-0.477,0.402-0.861,0.896-0.861c0.496,0,0.896,0.385,0.896,0.861v6.861h1.074 V2.857c0-0.475,0.4-0.857,0.895-0.857c0.496,0,0.895,0.383,0.895,0.857v8.367h1.076V4.363c0-0.477,0.4-0.861,0.895-0.861 c0.496,0,0.894,0.385,0.894,0.861v6.861h1.075v-4.93c0-0.475,0.402-0.859,0.895-0.859c0.496,0,0.895,0.385,0.895,0.859v7.508h0.002 L19.574,19z"/>
<path d="M12,28.01c-5.376-0.275-9.678-3.713-9.994-7.996H0c0.31,5.382,5.51,9.708,12,10V28.01z"/>
<path d="M12,24.001c-3.037-0.18-5.489-1.845-5.889-3.987H4c0.389,3.234,3.788,5.798,8,6V24.001z"/>
<path d="M18.012,28.01c5.376-0.275,9.678-3.713,9.994-7.996h2.006c-0.31,5.382-5.511,9.708-12,10V28.01z"/>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_share.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_share.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<circle cx="23" cy="6" r="4.5"/>
-
<circle cx="23" cy="24" r="4.5"/>
-
<circle cx="7" cy="15" r="4.5"/>
-
<path d="M13.26,13.28l4.997-2.852c-0.685-0.73-1.203-1.617-1.493-2.604l-4.947,2.824c0.67,0.75,1.17,1.64,1.44,2.63z"/>
-
<path d="M18.26,19.57l-4.996-2.852c-0.272,0.992-0.772,1.887-1.443,2.631l4.946,2.824c0.29-0.99,0.81-1.87,1.49-2.6z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_share_photo.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_share_photo.svg Thu May 27 13:10:59 2010 +0300
@@ -1,29 +1,12 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M15.4,21.8L16,21H6V9h18v3.388c-0.162,0.208-0.314,0.444-0.459,0.695c0.418,0.118,0.793,0.362,1.059,0.717l0.4,0.534V8H5v14
- h10.29C15.328,21.934,15.354,21.862,15.4,21.8z"/>
-<path d="M10.206,17.969c0.433,0.444,1.979,0.806,3.502-1.055c0.581-0.711,0.789-1.645,0.864-2.228
- c1.593,0.514,3.359,1.076,4.871,1.723l0.453-0.604c-0.803-0.269-1.684-0.55-2.594-0.843c0.371-0.045,0.82-0.158,1.229-0.438
- c1.024-0.707,1.275-1.832,0.908-2.443c-0.262-0.434-1.124-0.805-2.076,0.389c-0.477,0.598-0.707,1.759-0.788,2.258
- c-1.677-0.545-3.397-1.129-4.868-1.747c0.381-0.04,0.857-0.152,1.284-0.446c1.026-0.708,1.2-1.485,0.931-1.832
- c-0.303-0.389-1.133-0.849-2.248,0.332c-0.461,0.487-0.604,1.223-0.65,1.636c-3.228-1.591-2.025-3.197-2.025-3.197
- c-0.087-0.39-0.303-0.776-0.648-0.11c-0.498,0.957-0.178,1.822,0.541,2.564c-0.224-0.013-0.469,0.015-0.729,0.115
- c-1.014,0.393-1.289,1.086-1.111,1.427c0.176,0.342,0.979,0.888,2.068,0.206c0.382-0.239,0.615-0.652,0.744-0.954
- c0.45,0.299,0.953,0.568,1.47,0.804c0.425,0.194,0.947,0.391,1.525,0.593c-0.444,0.114-0.925,0.327-1.397,0.744
- C9.947,16.192,9.773,17.524,10.206,17.969z"/>
+<path d="M15.4,21.8L16,21H6V9h18v3.388c-0.162,0.208-0.314,0.444-0.459,0.695c0.418,0.118,0.793,0.362,1.059,0.717l0.4,0.534V8H5v14 h10.29C15.328,21.934,15.354,21.862,15.4,21.8z"/>
+<path d="M10.206,17.969c0.433,0.444,1.979,0.806,3.502-1.055c0.581-0.711,0.789-1.645,0.864-2.228 c1.593,0.514,3.359,1.076,4.871,1.723l0.453-0.604c-0.803-0.269-1.684-0.55-2.594-0.843c0.371-0.045,0.82-0.158,1.229-0.438 c1.024-0.707,1.275-1.832,0.908-2.443c-0.262-0.434-1.124-0.805-2.076,0.389c-0.477,0.598-0.707,1.759-0.788,2.258 c-1.677-0.545-3.397-1.129-4.868-1.747c0.381-0.04,0.857-0.152,1.284-0.446c1.026-0.708,1.2-1.485,0.931-1.832 c-0.303-0.389-1.133-0.849-2.248,0.332c-0.461,0.487-0.604,1.223-0.65,1.636c-3.228-1.591-2.025-3.197-2.025-3.197 c-0.087-0.39-0.303-0.776-0.648-0.11c-0.498,0.957-0.178,1.822,0.541,2.564c-0.224-0.013-0.469,0.015-0.729,0.115 c-1.014,0.393-1.289,1.086-1.111,1.427c0.176,0.342,0.979,0.888,2.068,0.206c0.382-0.239,0.615-0.652,0.744-0.954 c0.45,0.299,0.953,0.568,1.47,0.804c0.425,0.194,0.947,0.391,1.525,0.593c-0.444,0.114-0.925,0.327-1.397,0.744 C9.947,16.192,9.773,17.524,10.206,17.969z"/>
<path d="M17.774,17.623c-1.341,0.987-1.655,2.234-1.538,3.063l2.715-3.62C18.553,17.17,18.152,17.344,17.774,17.623z"/>
-<path d="M15.211,23.895c-0.142-0.283-0.195-0.59-0.194-0.895H4V7h22v8.667l2,2.667V5H2v20h15C16.242,25,15.55,24.572,15.211,23.895z
- "/>
+<path d="M15.211,23.895c-0.142-0.283-0.195-0.59-0.194-0.895H4V7h22v8.667l2,2.667V5H2v20h15C16.242,25,15.55,24.572,15.211,23.895z "/>
<polygon points="29,23 23,15 17,23 20,23 20,28 26,28 26,23 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_share_photo_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_share_photo_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,29 +1,19 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<path d="M17.774,17.623c-1.341,0.987-1.655,2.234-1.538,3.063l2.715-3.62C18.553,17.17,18.152,17.344,17.774,17.623z"/>
-<path d="M13.148,9H24v3.388c-0.162,0.208-0.314,0.444-0.459,0.695c0.418,0.118,0.793,0.362,1.059,0.717l0.4,0.534V8H12.148L13.148,9
- z"/>
+<path d="M13.148,9H24v3.388c-0.162,0.208-0.314,0.444-0.459,0.695c0.418,0.118,0.793,0.362,1.059,0.717l0.4,0.534V8H12.148L13.148,9 z"/>
<path d="M6,10.147l-1-1V22h10.29c0.038-0.066,0.063-0.138,0.11-0.2L16,21H6V10.147z"/>
<polygon points="11.148,7 26,7 26,15.667 28,18.334 28,5 9.148,5 "/>
<path d="M15.211,23.895c-0.142-0.283-0.195-0.59-0.194-0.895H4V8.147l-2-2V25h15C16.242,25,15.55,24.572,15.211,23.895z"/>
-<path d="M18.609,14.46c0.953-0.709,1.188-1.786,0.83-2.38c-0.262-0.434-1.124-0.805-2.076,0.389
- c-0.105,0.132-0.196,0.293-0.278,0.467L18.609,14.46z"/>
+<path d="M18.609,14.46c0.953-0.709,1.188-1.786,0.83-2.38c-0.262-0.434-1.124-0.805-2.076,0.389 c-0.105,0.132-0.196,0.293-0.278,0.467L18.609,14.46z"/>
<path d="M11.084,15.23c-1.152,1.201-1.271,2.335-0.878,2.738c0.39,0.399,1.681,0.717,3.043-0.573L11.084,15.23z"/>
-<path d="M7.979,12.126c-0.855,0.401-1.094,1.023-0.928,1.342c0.176,0.342,0.979,0.888,2.068,0.206
- c0.083-0.053,0.156-0.115,0.227-0.182L7.979,12.126z"/>
+<path d="M7.979,12.126c-0.855,0.401-1.094,1.023-0.928,1.342c0.176,0.342,0.979,0.888,2.068,0.206 c0.083-0.053,0.156-0.115,0.227-0.182L7.979,12.126z"/>
<polygon points="17.795,21.941 17,23 18.854,23 "/>
<polygon points="27.15,23 29,23 23,15 21.35,17.2 "/>
<polygon points="20,24.146 20,28 23.854,28 "/>
-<rect x="13.74" y="-3.242" transform="matrix(0.7063 -0.7079 0.7079 0.7063 -6.0767 14.6963)" width="1.868" height="35.827"/>
+<rect height="35.827" transform="matrix(0.7063 -0.7079 0.7079 0.7063 -6.0767 14.6963)" width="1.868" x="13.74" y="-3.242"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sharpness.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sharpness.svg Thu May 27 13:10:59 2010 +0300
@@ -1,25 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<polyline points="1,29,9,7,17,29,1,29"/>
-
<polygon points="22.36,7.977,23,6.391,23.63,7.977,25.68,7.977,23,1,20.31,7.977"/>
-
<polygon points="20.36,12.98,21.56,9.977,19.54,9.977,18.39,12.98"/>
-
<polygon points="27.61,12.98,26.45,9.977,24.43,9.977,25.63,12.98"/>
-
<path d="M27,16.4c0,0.002-0.002,0.006-0.002,0.008h-0.002c-0.002,0.758-0.227,1.461-0.596,2.066l1.447,1.445c0.682-0.934,1.102-2.072,1.146-3.303v-0.02l-0.621-1.615h-1.95l0.566,1.416z"/>
-
<path d="M19.59,18.47c-0.369-0.605-0.593-1.307-0.595-2.064h-0.002l0.002-0.002c0-0.002-0.002-0.006-0.002-0.008l0.566-1.416h-1.95l-0.62,1.61c0.04,1.24,0.461,2.385,1.146,3.324l1.44-1.44z"/>
-
<path d="M23,20.4c-0.719,0-1.384-0.205-1.967-0.537l-1.455,1.457c0.972,0.68,2.15,1.082,3.422,1.082s2.449-0.402,3.42-1.082l-1.455-1.455c-0.58,0.34-1.24,0.54-1.96,0.54z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shift.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shift.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M15,2l-13,17h7v9h12v-9h7l-13-17zm3,14v9h-6v-9h-3.93l6.93-9.062,6.93,9.062h-3.93z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_show_view.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_show_view.svg Thu May 27 13:10:59 2010 +0300
@@ -1,27 +1,16 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<rect x="8" y="16" width="2" height="2"/>
-<rect x="11.059" y="16" width="7.941" height="2"/>
-<rect x="7.971" y="21" width="2" height="2"/>
-<rect x="8" y="11" width="2" height="2"/>
-<rect x="11.059" y="11" width="7.941" height="2"/>
+<rect height="2" width="2" x="8" y="16"/>
+<rect height="2" width="7.941" x="11.059" y="16"/>
+<rect height="2" width="2" x="7.971" y="21"/>
+<rect height="2" width="2" x="8" y="11"/>
+<rect height="2" width="7.941" x="11.059" y="11"/>
<path d="M16.382,21h-5.353v2h2.112C14.169,22.162,15.254,21.491,16.382,21z"/>
-<path d="M10.428,28.235C10.143,27.873,10,27.437,10,27H6V8h15v12c1.014,0,2.018,0.146,3,0.416V5H3v25h9.029
- C11.476,29.457,10.935,28.881,10.428,28.235z"/>
+<path d="M10.428,28.235C10.143,27.873,10,27.437,10,27H6V8h15v12c1.014,0,2.018,0.146,3,0.416V5H3v25h9.029 C11.476,29.457,10.935,28.881,10.428,28.235z"/>
<path d="M26,21.18c1.042,0.496,2.048,1.136,3,1.931V0H8v3h18V21.18z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M30,27c-2.454-3.123-5.586-5-9-5s-6.546,1.877-9,5h2.654
- c0.695-0.709,1.522-1.386,2.463-1.921C17.047,25.376,17,25.682,17,26c0,2.21,1.792,4,4,4s4-1.79,4-4
- c0-0.318-0.047-0.624-0.117-0.921c0.94,0.535,1.768,1.212,2.463,1.921H30z M21,28c-1.104,0-2-0.447-2-1s0.896-1,2-1s2,0.447,2,1
- S22.104,28,21,28z"/>
+<path d="M30,27c-2.454-3.123-5.586-5-9-5s-6.546,1.877-9,5h2.654 c0.695-0.709,1.522-1.386,2.463-1.921C17.047,25.376,17,25.682,17,26c0,2.21,1.792,4,4,4s4-1.79,4-4 c0-0.318-0.047-0.624-0.117-0.921c0.94,0.535,1.768,1.212,2.463,1.921H30z M21,28c-1.104,0-2-0.447-2-1s0.896-1,2-1s2,0.447,2,1 S22.104,28,21,28z" fill-rule="evenodd"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shuffle.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shuffle.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="20.27,13.92,20.27,22.37,8.237,22.37,8.237,19.06,0.5,24.03,8.237,29,8.237,25.69,23.71,25.69,23.71,13.92"/>
-
<polygon points="9.728,16.08,9.728,7.626,21.76,7.626,21.76,10.94,29.5,5.971,21.76,1,21.76,4.313,6.289,4.313,6.289,16.08"/>
-
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shuffle_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shuffle_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="11.78,7.626,21.26,7.626,21.26,10.94,29,5.971,21.26,1,21.26,4.313,8.463,4.313"/>
-
<polygon points="5.789,9.937,5.789,16.08,9.228,16.08,9.228,13.38"/>
-
<polygon points="23.21,19.06,23.21,13.92,19.77,13.92,19.77,15.62"/>
-
<polygon points="18.23,22.37,7.737,22.37,7.737,19.06,0,24.03,7.737,29,7.737,25.69,21.54,25.69"/>
-
<rect height="39.4" transform="matrix(0.7066 -0.7076 0.7076 0.7066 -6.2267 15.051)" width="1.867" x="14.1" y="-4.667"/>
-
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_smiley.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_smiley.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M15,1C7.28,1,1,7.28,1,15s6.28,14,14,14s14-6.28,14-14S22.72,1,15,1z M15,26C8.935,26,4,21.065,4,15S8.935,4,15,4
- s11,4.935,11,11S21.065,26,15,26z"/>
+<path d="M15,1C7.28,1,1,7.28,1,15s6.28,14,14,14s14-6.28,14-14S22.72,1,15,1z M15,26C8.935,26,4,21.065,4,15S8.935,4,15,4 s11,4.935,11,11S21.065,26,15,26z"/>
<ellipse cx="9.5" cy="10.5" rx="1.5" ry="2.5"/>
<ellipse cx="20.5" cy="10.5" rx="1.5" ry="2.5"/>
-<path d="M6,15c0,4.963,4.038,9,9,9c4.963,0,9-4.037,9-9H6z M20.742,19H9.258c-0.422-0.604-0.751-1.277-0.967-2h13.418
- C21.493,17.723,21.164,18.396,20.742,19z"/>
+<path d="M6,15c0,4.963,4.038,9,9,9c4.963,0,9-4.037,9-9H6z M20.742,19H9.258c-0.422-0.604-0.751-1.277-0.967-2h13.418 C21.493,17.723,21.164,18.396,20.742,19z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_songs_all.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_songs_all.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M25,5L15,2v17.357C14.31,19.129,13.549,19,12.75,19C9.574,19,7,21.016,7,23.5S9.574,28,12.75,28S19,25.984,19,23.5
- c0-0.168,0-13.449,0-13.449L25,12V5z"/>
+<path d="M25,5L15,2v17.357C14.31,19.129,13.549,19,12.75,19C9.574,19,7,21.016,7,23.5S9.574,28,12.75,28S19,25.984,19,23.5 c0-0.168,0-13.449,0-13.449L25,12V5z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sort.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sort.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,12 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<rect x="2" y="2" width="25.998" height="4"/>
-<rect x="2.002" y="9" width="20.998" height="4"/>
-<rect x="2.002" y="16" width="15.998" height="4"/>
-<rect x="2.002" y="23" width="10.998" height="4"/>
+<rect height="4" width="25.998" x="2" y="2"/>
+<rect height="4" width="20.998" x="2.002" y="9"/>
+<rect height="4" width="15.998" x="2.002" y="16"/>
+<rect height="4" width="10.998" x="2.002" y="23"/>
<polygon points="26,22 26,17 20,17 20,22 17,22 23,30 29,22 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_speaker.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_speaker.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<rect x="1" y="9" width="7" height="12"/>
+<rect height="12" width="7" x="1" y="9"/>
<polygon points="10,8 10,22 21,27 21,3 "/>
-<path d="M23.889,21.954l-1.676-1.094C23.382,19.069,24,17.043,24,15s-0.618-4.069-1.787-5.86l1.676-1.094
- C25.27,10.164,26,12.568,26,15S25.27,19.836,23.889,21.954L23.889,21.954z"/>
-<path d="M26.702,24.602l-1.598-1.203C26.999,20.882,28,17.979,28,15s-1.001-5.882-2.896-8.398l1.598-1.203
- C28.859,8.265,30,11.584,30,15S28.859,21.735,26.702,24.602L26.702,24.602z"/>
+<path d="M23.889,21.954l-1.676-1.094C23.382,19.069,24,17.043,24,15s-0.618-4.069-1.787-5.86l1.676-1.094 C25.27,10.164,26,12.568,26,15S25.27,19.836,23.889,21.954L23.889,21.954z"/>
+<path d="M26.702,24.602l-1.598-1.203C26.999,20.882,28,17.979,28,15s-1.001-5.882-2.896-8.398l1.598-1.203 C28.859,8.265,30,11.584,30,15S28.859,21.735,26.702,24.602L26.702,24.602z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_speaker_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_speaker_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,9 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
<polygon points="4.853,9 1,9 1,21 8,21 8,12.148 "/>
<polygon points="21,16.852 21,3 11.478,7.328 "/>
<polygon points="10,14.148 10,22 21,27 21,25.146 "/>
-<rect x="13.74" y="-3.242" transform="matrix(0.7063 -0.7079 0.7079 0.7063 -6.0767 14.6963)" width="1.868" height="35.827"/>
+<rect height="35.827" transform="matrix(0.7063 -0.7079 0.7079 0.7063 -6.0767 14.6963)" width="1.868" x="13.74" y="-3.242"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_special_characters_itut.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_special_characters_itut.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<polygon points="8.05,11.37,5.545,12.97,5.708,10.01,4.124,10.01,4.279,12.97,1.773,11.37,1,12.73,3.625,14.08,1,15.44,1.773,16.8,4.279,15.18,4.124,18.16,5.708,18.16,5.545,15.18,8.05,16.8,8.824,15.44,6.199,14.08,8.824,12.73"/>
-
<path d="M21.88,14.41l-1.713-0.388c-0.247,1.096-0.565,1.96-0.955,2.591l-2.574-3.332c0.97-0.654,1.642-1.246,2.015-1.777,0.372-0.53,0.56-1.115,0.56-1.751,0-0.78-0.283-1.397-0.849-1.851-0.565-0.454-1.35-0.681-2.354-0.681-1.079,0-1.92,0.247-2.522,0.741-0.603,0.493-0.904,1.202-0.904,2.125,0,0.838,0.459,1.856,1.377,3.056-0.924,0.529-1.586,1.09-1.988,1.684-0.401,0.595-0.603,1.296-0.603,2.104,0,1.091,0.351,1.937,1.051,2.535,0.699,0.6,1.707,0.899,3.021,0.899,1.28,0,2.368-0.358,3.264-1.075l0.723,0.938h2.574l-1.765-2.272c0.75-0.88,1.3-2.06,1.64-3.54zm-6.82-5.474c0.216-0.218,0.539-0.327,0.969-0.327,0.362,0,0.651,0.106,0.869,0.319,0.218,0.212,0.327,0.482,0.327,0.809,0,0.879-0.505,1.655-1.515,2.333-0.373-0.488-0.628-0.882-0.766-1.184-0.138-0.301-0.207-0.624-0.207-0.969,0-0.441,0.1-0.768,0.32-0.985zm0.77,9.954c-0.567,0-1.063-0.188-1.484-0.563-0.422-0.376-0.633-0.917-0.633-1.623,0-0.94,0.396-1.728,1.188-2.358l2.927,3.822c-0.59,0.48-1.26,0.72-2.01,0.72z"/>
-
<polygon points="28.63,16.39,28.88,7.395,26.39,7.395,26.65,16.39"/>
-
<path d="M28.6,18.03c-0.264-0.264-0.586-0.395-0.965-0.395s-0.699,0.131-0.964,0.395c-0.264,0.265-0.395,0.585-0.395,0.964s0.132,0.702,0.399,0.97c0.267,0.266,0.587,0.399,0.959,0.399,0.379,0,0.701-0.134,0.965-0.399,0.27-0.27,0.4-0.59,0.4-0.97s-0.13-0.7-0.4-0.97z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_special_characters_qwerty.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_special_characters_qwerty.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<polygon points="8.011,17.73,7.02,17.73,4.005,18.68,4.005,19.77,6.151,19.28,6.151,26.91,4.005,26.91,4.005,28,10.04,28,10.04,26.91,8.011,26.91"/>
-
<path d="M13.65,25.69c0.193-0.34,0.432-0.651,0.714-0.934s0.675-0.636,1.176-1.06c0.897-0.752,1.468-1.368,1.709-1.849s0.362-0.97,0.362-1.467c0-0.884-0.269-1.553-0.807-2.006-0.538-0.454-1.324-0.681-2.358-0.681-0.839,0-1.7,0.139-2.584,0.417v1.217h0.014c0.843-0.306,1.561-0.458,2.153-0.458,0.561,0,0.98,0.134,1.262,0.399,0.279,0.268,0.42,0.665,0.42,1.193,0,0.301-0.087,0.604-0.26,0.909s-0.59,0.736-1.251,1.292c-0.552,0.465-1.007,0.893-1.367,1.281-0.36,0.391-0.663,0.86-0.909,1.412s-0.369,1.183-0.369,1.894v0.76h6.098v-1.189h-4.32c0.03-0.41,0.14-0.78,0.33-1.12z"/>
-
<path d="M23.37,22.59c0.588-0.173,1.039-0.468,1.354-0.886,0.314-0.416,0.472-0.914,0.472-1.493,0-0.839-0.262-1.468-0.786-1.887s-1.308-0.629-2.352-0.629c-0.692,0-1.468,0.107-2.324,0.321v1.203h0.014c0.843-0.232,1.497-0.349,1.962-0.349,0.528,0,0.927,0.125,1.192,0.376,0.268,0.251,0.4,0.624,0.4,1.121,0,0.565-0.166,0.984-0.499,1.258s-1.169,0.41-2.509,0.41v1.142c1.354,0,2.217,0.146,2.591,0.438s0.561,0.772,0.561,1.442c0,0.624-0.156,1.093-0.468,1.404-0.313,0.313-0.778,0.469-1.398,0.469-0.515,0-1.219-0.111-2.112-0.335h-0.014v1.189c0.766,0.214,1.513,0.321,2.242,0.321,1.217,0,2.13-0.261,2.737-0.783,0.609-0.521,0.913-1.304,0.913-2.348,0-0.634-0.17-1.161-0.509-1.582-0.32-0.4-0.81-0.67-1.45-0.79z"/>
-
<polygon points="4.013,13.54,5.54,13.54,5.383,10.67,7.798,12.24,8.545,10.93,6.014,9.616,8.545,8.313,7.798,7.002,5.383,8.546,5.54,5.69,4.013,5.69,4.162,8.546,1.746,7.002,1,8.313,3.531,9.616,1,10.93,1.746,12.24,4.162,10.67"/>
-
<path d="M19.55,13.35c0.73-0.853,1.259-1.992,1.585-3.42l-1.651-0.373c-0.238,1.057-0.545,1.89-0.921,2.498l-2.49-3.216c0.936-0.631,1.583-1.202,1.942-1.714s0.54-1.075,0.54-1.688c0-0.753-0.273-1.348-0.818-1.785s-1.3-0.657-2.26-0.657c-1.041,0-1.852,0.238-2.433,0.715-0.581,0.476-0.872,1.159-0.872,2.05,0,0.808,0.443,1.79,1.328,2.946-0.891,0.51-1.529,1.051-1.917,1.623-0.4,0.58-0.59,1.25-0.59,2.03,0,1.052,0.338,1.867,1.013,2.445s1.646,0.867,2.913,0.867c1.234,0,2.283-0.346,3.146-1.037l0.697,0.904h2.482l-1.7-2.18zm-4.99-8.698c0.208-0.21,0.52-0.315,0.934-0.315,0.35,0,0.629,0.103,0.839,0.308,0.21,0.204,0.315,0.465,0.315,0.779,0,0.848-0.487,1.597-1.461,2.25-0.359-0.471-0.605-0.851-0.738-1.142-0.133-0.29-0.199-0.602-0.199-0.934,0.01-0.42,0.11-0.736,0.32-0.946zm0.74,9.598c-0.548,0-1.025-0.182-1.432-0.544s-0.61-0.884-0.61-1.564c0-0.907,0.382-1.666,1.146-2.274l2.822,3.686c-0.56,0.46-1.21,0.69-1.93,0.69z"/>
-
<polygon points="26.64,11.84,26.88,3.166,24.48,3.166,24.73,11.84"/>
-
<path d="M26.62,13.43c-0.254-0.254-0.564-0.381-0.93-0.381s-0.675,0.127-0.93,0.381c-0.254,0.255-0.381,0.564-0.381,0.93s0.128,0.677,0.386,0.935c0.257,0.257,0.565,0.386,0.925,0.386,0.365,0,0.676-0.129,0.93-0.386,0.24-0.27,0.37-0.58,0.37-0.94s-0.13-0.68-0.38-0.93z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_split.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<rect fill="none" width="30" height="30"/>
-<path d="M12.934,4.151C13.57,4.063,14.215,4,14.875,4c0.588,0,1.162,0.048,1.729,0.118V3h1.836V1.918C18.439,1.411,18.027,1,17.52,1
- h-5.505c-0.506,0-0.916,0.41-0.916,0.918V3h1.836V4.151z"/>
-<path d="M9.789,5.017C9.16,4.4,8.318,4,7.367,4c-1.932,0-3.5,1.566-3.5,3.5c0,0.561,0.139,1.086,0.375,1.554
- C5.717,7.285,7.619,5.891,9.789,5.017z"/>
-<path d="M25.795,9.096c0.252-0.479,0.408-1.016,0.408-1.596c0-1.934-1.568-3.5-3.5-3.5c-0.961,0-1.807,0.409-2.438,1.037
- C22.43,5.919,24.328,7.321,25.795,9.096z"/>
-<path d="M15,6C8.371,6,3,11.374,3,18c0,6.629,5.371,12,12,12c6.627,0,12-5.371,12-12C27,11.374,21.627,6,15,6z M15,18
- c0,0-4.004,8-4.004,8.063C8.035,24.59,6,21.533,6,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H15z"/>
-</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sport.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sport.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<rect fill="none" width="30" height="30"/>
-<path d="M10.611,11.199c-0.307,0-0.617-0.094-0.881-0.289c-0.652-0.479-0.785-1.387-0.299-2.029l1.998-2.625
- c0.488-0.641,1.412-0.771,2.064-0.293c0.65,0.48,0.783,1.389,0.297,2.029l-1.998,2.627C11.504,10.998,11.061,11.199,10.611,11.199
- L10.611,11.199z"/>
-<path d="M27.576,18.043h-4.74l-1.639-5.9L16.824,8.32l-3.979,0.141c-0.801,0.01-1.445-0.576-1.473-1.35
- c-0.027-0.771,0.584-1.42,1.371-1.447l5.118-0.18l5.859,5.121l1.287,4.637h2.566c0.785,0,1.424,0.627,1.424,1.4
- C28.998,17.415,28.361,18.043,27.576,18.043L27.576,18.043z"/>
-<path d="M10.266,18.777l-0.539-1.771c-0.297-1.66,0.633-3.42,2.766-5.232c0.646-0.549,2.512-2.381,3.532-3.408l2.326-2.33
- l4.746,4.572l-2.326,2.332c-0.291,0.289-2.871,2.872-3.938,3.777c-0.143,0.121-0.262,0.229-0.357,0.32l0.205,1.237l-5.5,1
- L10.266,18.777z"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
+<path d="M10.611,11.199c-0.307,0-0.617-0.094-0.881-0.289c-0.652-0.479-0.785-1.387-0.299-2.029l1.998-2.625 c0.488-0.641,1.412-0.771,2.064-0.293c0.65,0.48,0.783,1.389,0.297,2.029l-1.998,2.627C11.504,10.998,11.061,11.199,10.611,11.199 L10.611,11.199z"/>
+<path d="M27.576,18.043h-4.74l-1.639-5.9L16.824,8.32l-3.979,0.141c-0.801,0.01-1.445-0.576-1.473-1.35 c-0.027-0.771,0.584-1.42,1.371-1.447l5.118-0.18l5.859,5.121l1.287,4.637h2.566c0.785,0,1.424,0.627,1.424,1.4 C28.998,17.415,28.361,18.043,27.576,18.043L27.576,18.043z"/>
+<path d="M10.266,18.777l-0.539-1.771c-0.297-1.66,0.633-3.42,2.766-5.232c0.646-0.549,2.512-2.381,3.532-3.408l2.326-2.33 l4.746,4.572l-2.326,2.332c-0.291,0.289-2.871,2.872-3.938,3.777c-0.143,0.121-0.262,0.229-0.357,0.32l0.205,1.237l-5.5,1 L10.266,18.777z"/>
<circle cx="25" cy="5" r="4"/>
-<path d="M11.584,29c-0.572,0-1.141-0.244-1.537-0.719c-0.707-0.85-0.592-2.111,0.256-2.818l4.965-4.135l-3.303-3.965
- c-0.707-0.848-0.594-2.109,0.256-2.816c0.848-0.707,2.109-0.592,2.816,0.256l4.582,5.5c0.707,0.85,0.594,2.111-0.256,2.818
- l-6.5,5.416C12.49,28.848,12.035,29,11.584,29L11.584,29z"/>
-<path d="M3.002,28.084c-0.578,0-1.152-0.25-1.549-0.732c-0.699-0.854-0.574-2.115,0.279-2.813l6.988-5.726l2.361-4.278
- c0.533-0.967,1.75-1.316,2.719-0.783c0.967,0.533,1.318,1.75,0.783,2.717l-2.547,4.615c-0.123,0.224-0.287,0.42-0.482,0.58
- l-7.287,5.969C3.896,27.936,3.447,28.084,3.002,28.084L3.002,28.084z"/>
+<path d="M11.584,29c-0.572,0-1.141-0.244-1.537-0.719c-0.707-0.85-0.592-2.111,0.256-2.818l4.965-4.135l-3.303-3.965 c-0.707-0.848-0.594-2.109,0.256-2.816c0.848-0.707,2.109-0.592,2.816,0.256l4.582,5.5c0.707,0.85,0.594,2.111-0.256,2.818 l-6.5,5.416C12.49,28.848,12.035,29,11.584,29L11.584,29z"/>
+<path d="M3.002,28.084c-0.578,0-1.152-0.25-1.549-0.732c-0.699-0.854-0.574-2.115,0.279-2.813l6.988-5.726l2.361-4.278 c0.533-0.967,1.75-1.316,2.719-0.783c0.967,0.533,1.318,1.75,0.783,2.717l-2.547,4.615c-0.123,0.224-0.287,0.42-0.482,0.58 l-7.287,5.969C3.896,27.936,3.447,28.084,3.002,28.084L3.002,28.084z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_stabilization.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_stabilization.svg Thu May 27 13:10:59 2010 +0300
@@ -1,14 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
<path d="M3.949,4v17h22.1V4H3.949z M23,18H7V7h16V18z"/>
<circle cx="9.001" cy="9.02" r="1"/>
-<rect x="20.049" y="1" width="4" height="2"/>
-<path d="M15.422,8c-2.48,0-4.5,2.018-4.5,4.5c0,2.48,2.02,4.5,4.5,4.5c2.482,0,4.5-2.02,4.5-4.5C19.922,10.018,17.904,8,15.422,8z
- M15.422,14.5c-1.104,0-2-0.896-2-2c0-1.105,0.896-2,2-2c1.105,0,2,0.895,2,2C17.422,13.604,16.527,14.5,15.422,14.5z"/>
+<rect height="2" width="4" x="20.049" y="1"/>
+<path d="M15.422,8c-2.48,0-4.5,2.018-4.5,4.5c0,2.48,2.02,4.5,4.5,4.5c2.482,0,4.5-2.02,4.5-4.5C19.922,10.018,17.904,8,15.422,8z M15.422,14.5c-1.104,0-2-0.896-2-2c0-1.105,0.896-2,2-2c1.105,0,2,0.895,2,2C17.422,13.604,16.527,14.5,15.422,14.5z"/>
<polygon points="3,27 3,21 1,21 1,29 11,29 11,27 "/>
<polygon points="27,27 27,21 29,21 29,29 19,29 19,27 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_stabilization_off.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_stabilization_off.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,13 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<rect fill="none" width="30" height="30"/>
-<rect x="14.067" y="-2.916" transform="matrix(-0.7061 0.7082 -0.7082 -0.7061 36.214 14.9658)" width="1.867" height="35.829"/>
-<rect x="20.049" y="1" width="4" height="2"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
+<rect height="35.829" transform="matrix(-0.7061 0.7082 -0.7082 -0.7061 36.214 14.9658)" width="1.867" x="14.067" y="-2.916"/>
+<rect height="2" width="4" x="20.049" y="1"/>
<polygon points="3,27 3,21 1,21 1,29 11,29 11,27 "/>
<polygon points="29,24.85 29,21 27,21 27,22.85 "/>
<polygon points="11.148,7 23,7 23,18 22.148,18 25.148,21 26.049,21 26.049,4 8.148,4 "/>
<polygon points="13.853,18 7,18 7,11.147 3.949,8.097 3.949,21 16.854,21 "/>
<polygon points="22.854,27 19,27 19,29 24.854,29 "/>
-<path d="M14.768,10.619c0.206-0.072,0.424-0.119,0.654-0.119c1.105,0,2,0.896,2,2c0,0.23-0.047,0.448-0.117,0.654l1.853,1.853
- c0.483-0.717,0.766-1.58,0.766-2.507c0-2.482-2.019-4.5-4.5-4.5c-0.928,0-1.79,0.283-2.507,0.766L14.768,10.619z"/>
+<path d="M14.768,10.619c0.206-0.072,0.424-0.119,0.654-0.119c1.105,0,2,0.896,2,2c0,0.23-0.047,0.448-0.117,0.654l1.853,1.853 c0.483-0.717,0.766-1.58,0.766-2.507c0-2.482-2.019-4.5-4.5-4.5c-0.928,0-1.79,0.283-2.507,0.766L14.768,10.619z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_start.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,9 +0,0 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
-<rect fill="none" height="30" width="30"/>
-
-<polygon points="4.608,15,4.608,3,15,9,25.39,15,15,21,4.608,27"/>
-
-</svg>
\ No newline at end of file
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_station_scan.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_station_scan.svg Thu May 27 13:10:59 2010 +0300
@@ -1,25 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<rect height="15" width="4" x="13" y="8"/>
-
<rect height="7" width="2" x="9" y="12"/>
-
<rect height="7" width="2" x="5" y="12"/>
-
<rect height="7" width="2" x="1" y="12"/>
-
<rect height="7" width="2" x="27" y="12"/>
-
<rect height="7" width="2" x="23" y="12"/>
-
<rect height="7" width="2" x="19" y="12"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_stop.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_stop.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<rect height="24" width="24" x="3" y="3"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_stopwatch.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<rect fill="none" width="30" height="30"/>
-<path d="M12.934,4.15C13.57,4.063,14.215,4,14.876,4c0.587,0,1.161,0.047,1.729,0.117V3h1.834V1.918C18.439,1.41,18.027,1,17.521,1
- h-5.506c-0.507,0-0.916,0.41-0.916,0.918V3h1.835V4.15z"/>
-<path d="M9.789,5.016C9.16,4.398,8.318,4,7.368,4c-1.933,0-3.5,1.566-3.5,3.5c0,0.561,0.139,1.086,0.374,1.553
- C5.717,7.283,7.62,5.891,9.789,5.016z"/>
-<path d="M25.795,9.096c0.253-0.479,0.408-1.016,0.408-1.596c0-1.934-1.567-3.5-3.5-3.5c-0.961,0-1.807,0.408-2.438,1.037
- C22.43,5.918,24.328,7.32,25.795,9.096z"/>
-<path d="M15,6C8.372,6,3,11.373,3,18c0,6.629,5.372,12,12,12c6.627,0,12-5.371,12-12C27,11.373,21.627,6,15,6z M15,27
- c-4.971,0-9-4.029-9-9c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9C24,22.971,19.971,27,15,27z"/>
-<rect x="14" y="10" width="2" height="10"/>
-<rect x="12" y="17" width="10" height="2"/>
-</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_store.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_store.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M29,10v-3h-23v-3c0-0.553-0.447-1-1-1h-3c-0.553,0-1,0.447-1,1v1c0,0.553,0.447,1,1,1h1v16c0,0.553,0.448,1,1,1h22c0.553,0,1-0.447,1-1v-1c0-0.553-0.447-1-1-1h-20v-2h21v-2h-0.394l0.986-6h1.4zm-15,0h2v6h-2v-6zm-2,6h-2v-6h2v6zm6-6h2v6h-2v-6zm-12,0h2v6h-2v-6zm17.57,6h-1.57v-6h2.553l-0.98,6z"/>
-
<circle cx="8.5" cy="25.5" r="2.5"/>
-
<circle cx="22.5" cy="25.5" r="2.5"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sym_itut.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sym_itut.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M4.427,12.81c-0.771-0.426-1.315-0.787-1.635-1.083s-0.479-0.69-0.479-1.184c0-0.509,0.183-0.907,0.549-1.195,0.366-0.287,0.854-0.432,1.464-0.432,0.672,0,1.398,0.089,2.18,0.266v-1.449c-0.737-0.166-1.544-0.25-2.421-0.25-1.209,0-2.188,0.281-2.94,0.843s-1.127,1.401-1.127,2.52c0,0.703,0.169,1.329,0.507,1.88s0.993,1.098,1.963,1.64c0.888,0.504,1.496,0.912,1.822,1.225,0.327,0.313,0.491,0.743,0.491,1.29,0,0.582-0.198,1.029-0.595,1.346-0.396,0.314-0.947,0.473-1.652,0.473-0.742,0-1.594-0.13-2.554-0.391v1.479c0.877,0.227,1.768,0.34,2.672,0.34,1.475,0,2.583-0.312,3.322-0.934,0.741-0.623,1.111-1.557,1.111-2.802,0-0.691-0.181-1.314-0.54-1.868-0.361-0.56-1.074-1.14-2.138-1.73z"/>
-
<path d="M11.92,17.88l-1.92-7.58h-2.337l2.612,9.297h1.174c-0.233,0.725-0.471,1.206-0.712,1.443-0.241,0.238-0.572,0.357-0.994,0.357s-0.904-0.063-1.447-0.191v1.428c0.604,0.128,1.167,0.191,1.688,0.191,0.793,0,1.433-0.202,1.918-0.605,0.485-0.404,0.855-1.041,1.11-1.91l2.937-10.01h-1.996l-2.03,7.58z"/>
-
<path d="M29.26,10.94c-0.496-0.525-1.241-0.788-2.233-0.788-1.171,0-2.075,0.459-2.714,1.378-0.433-0.919-1.295-1.378-2.587-1.378-1.23,0-2.174,0.528-2.828,1.585l-0.391-1.443h-1.315v9.7h2.255v-5.902c0-0.769,0.147-1.386,0.44-1.851,0.295-0.465,0.719-0.697,1.273-0.697,0.438,0,0.767,0.155,0.985,0.465,0.22,0.31,0.329,0.772,0.329,1.386v6.59h2.246v-5.902c0-0.774,0.15-1.393,0.449-1.854,0.3-0.462,0.729-0.693,1.29-0.693,0.433,0,0.754,0.14,0.966,0.419,0.21,0.279,0.314,0.757,0.314,1.432v6.59h2.24v-6.699c0-1.04-0.25-1.83-0.74-2.36z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sym_qwerty.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sym_qwerty.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M7.672,9.609c0-0.651-0.169-1.237-0.508-1.758s-1.008-1.06-2.008-1.617c-0.724-0.401-1.235-0.741-1.535-1.02s-0.449-0.649-0.449-1.112c0-0.479,0.172-0.854,0.516-1.125s0.801-0.407,1.375-0.407c0.63,0,1.313,0.083,2.047,0.25v-1.359c-0.692-0.156-1.45-0.234-2.273-0.234-1.137,0-2.057,0.264-2.763,0.793s-1.058,1.319-1.058,2.371c0,0.661,0.159,1.251,0.477,1.77s0.933,1.032,1.844,1.543c0.833,0.474,1.403,0.858,1.711,1.152s0.461,0.699,0.461,1.215c0,0.547-0.187,0.969-0.559,1.266s-0.89,0.445-1.551,0.445c-0.698,0-1.497-0.122-2.398-0.367v1.391c0.823,0.214,1.659,0.32,2.508,0.32,1.386,0,2.426-0.293,3.121-0.879s1.042-1.46,1.042-2.631z"/>
-
<path d="M13.83,13.29l2.758-9.422h-1.875l-1.92,7.132-1.8-7.133h-2.195l2.453,8.75h1.102c-0.219,0.683-0.441,1.136-0.668,1.359s-0.538,0.336-0.934,0.336-0.849-0.06-1.359-0.18v1.344c0.567,0.12,1.097,0.18,1.586,0.18,0.745,0,1.345-0.19,1.801-0.57s0.8-0.98,1.04-1.8z"/>
-
<path d="M29.3,4.477c-0.466-0.495-1.165-0.742-2.098-0.742-1.099,0-1.948,0.433-2.547,1.297-0.406-0.864-1.216-1.297-2.43-1.297-1.156,0-2.042,0.497-2.656,1.492l-0.367-1.359h-1.234v9.132h2.117v-5.555c0-0.724,0.138-1.305,0.414-1.742s0.675-0.656,1.195-0.656c0.411,0,0.72,0.146,0.926,0.438s0.309,0.727,0.309,1.305v6.21h2.109v-5.555c0-0.729,0.141-1.312,0.422-1.746s0.685-0.652,1.211-0.652c0.406,0,0.708,0.132,0.906,0.395s0.297,0.712,0.297,1.348v6.21h2.13v-6.305c0-0.984-0.23-1.723-0.7-2.218z"/>
-
<polygon points="8.011,17.73,7.02,17.73,4.005,18.68,4.005,19.77,6.151,19.28,6.151,26.91,4.005,26.91,4.005,28,10.04,28,10.04,26.91,8.011,26.91"/>
-
<path d="M13.65,25.69c0.193-0.34,0.432-0.651,0.714-0.934s0.675-0.636,1.176-1.06c0.897-0.752,1.468-1.368,1.709-1.849s0.362-0.97,0.362-1.467c0-0.884-0.269-1.553-0.807-2.006-0.538-0.454-1.324-0.681-2.358-0.681-0.839,0-1.7,0.139-2.584,0.417v1.217h0.014c0.843-0.306,1.561-0.458,2.153-0.458,0.561,0,0.98,0.134,1.262,0.399,0.279,0.268,0.42,0.665,0.42,1.193,0,0.301-0.087,0.604-0.26,0.909s-0.59,0.736-1.251,1.292c-0.552,0.465-1.007,0.893-1.367,1.281-0.36,0.391-0.663,0.86-0.909,1.412s-0.369,1.183-0.369,1.894v0.76h6.098v-1.189h-4.32c0.03-0.41,0.14-0.78,0.33-1.12z"/>
-
<path d="M23.37,22.59c0.588-0.173,1.039-0.468,1.354-0.886,0.314-0.416,0.472-0.914,0.472-1.493,0-0.839-0.262-1.468-0.786-1.887s-1.308-0.629-2.352-0.629c-0.692,0-1.468,0.107-2.324,0.321v1.203h0.014c0.843-0.232,1.497-0.349,1.962-0.349,0.528,0,0.927,0.125,1.192,0.376,0.268,0.251,0.4,0.624,0.4,1.121,0,0.565-0.166,0.984-0.499,1.258s-1.169,0.41-2.509,0.41v1.142c1.354,0,2.217,0.146,2.591,0.438s0.561,0.772,0.561,1.442c0,0.624-0.156,1.093-0.468,1.404-0.313,0.313-0.778,0.469-1.398,0.469-0.515,0-1.219-0.111-2.112-0.335h-0.014v1.189c0.766,0.214,1.513,0.321,2.242,0.321,1.217,0,2.13-0.261,2.737-0.783,0.609-0.521,0.913-1.304,0.913-2.348,0-0.634-0.17-1.161-0.509-1.582-0.32-0.4-0.81-0.67-1.45-0.79z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tab_active.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tab_active.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<circle cx="15" cy="15" r="13"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tab_passive.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tab_passive.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M15,2C7.82,2,2,7.82,2,15s5.82,13,13,13s13-5.82,13-13S22.18,2,15,2z M15,25C9.486,25,5,20.514,5,15S9.486,5,15,5
- s10,4.486,10,10S20.514,25,15,25z"/>
+<path d="M15,2C7.82,2,2,7.82,2,15s5.82,13,13,13s13-5.82,13-13S22.18,2,15,2z M15,25C9.486,25,5,20.514,5,15S9.486,5,15,5 s10,4.486,10,10S20.514,25,15,25z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tag.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tag.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M12.73,2h-8.636l-2.094,2.094v8.638l15.68,15.68,10.73-10.73-15.68-15.68zm-8.73,9.9v-6.978l0.922-0.922h6.981l13.68,13.68-7.903,7.903-13.68-13.68z"/>
-
<rect height="11.95" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -6.6464 16.0459)" width="7.321" x="12.38" y="10.07"/>
-
<circle cx="7" cy="7" r="2"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_center.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_center.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<rect height="2" width="22" x="4" y="4"/>
-
<rect height="2" width="16" x="7" y="8"/>
-
<rect height="2" width="22" x="4" y="12"/>
-
<rect height="2" width="16" x="7" y="16"/>
-
<rect height="2" width="22" x="4" y="20"/>
-
<rect height="2" width="16" x="7" y="24"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_justify.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_justify.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<rect height="2" width="22" x="4" y="4"/>
-
<rect height="2" width="22" x="4" y="8"/>
-
<rect height="2" width="22" x="4" y="12"/>
-
<rect height="2" width="22" x="4" y="16"/>
-
<rect height="2" width="22" x="4" y="20"/>
-
<rect height="2" width="22" x="4" y="24"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_left.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_left.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<rect height="2" width="22" x="4" y="4"/>
-
<rect height="2" width="16" x="4" y="8"/>
-
<rect height="2" width="22" x="4" y="12"/>
-
<rect height="2" width="16" x="4" y="16"/>
-
<rect height="2" width="22" x="4" y="20"/>
-
<rect height="2" width="16" x="4" y="24"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_right.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_right.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<rect height="2" width="22" x="4" y="4"/>
-
<rect height="2" width="16" x="10" y="8"/>
-
<rect height="2" width="22" x="4" y="12"/>
-
<rect height="2" width="16" x="10" y="16"/>
-
<rect height="2" width="22" x="4" y="20"/>
-
<rect height="2" width="16" x="10" y="24"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tick.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tick.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,8 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
<polygon points="29,6.029 26.172,3.201 10.018,19.354 3.143,12.48 0.314,15.308 10.007,25 10.019,24.988 10.03,25 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tip.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tip.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,10 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<rect x="10" y="23" width="10" height="2"/>
-<rect x="10" y="26" width="10" height="2"/>
-<path d="M24,10.889C24,4.753,19.971,2,15,2s-9,2.753-9,8.889c0,3.335,1.196,6.32,3.082,8.356L10,22h10l0.918-2.755
- C22.804,17.209,24,14.224,24,10.889z M15,5c3.981,0,6,1.981,6,5.889C21,15.285,18.252,19,15,19s-6-3.715-6-8.111
- C9,6.981,11.019,5,15,5z"/>
+<rect height="2" width="10" x="10" y="23"/>
+<rect height="2" width="10" x="10" y="26"/>
+<path d="M24,10.889C24,4.753,19.971,2,15,2s-9,2.753-9,8.889c0,3.335,1.196,6.32,3.082,8.356L10,22h10l0.918-2.755 C22.804,17.209,24,14.224,24,10.889z M15,5c3.981,0,6,1.981,6,5.889C21,15.285,18.252,19,15,19s-6-3.715-6-8.111 C9,6.981,11.019,5,15,5z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_two.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_two.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M13.5,22.69c0.035-0.788,0.244-1.511,0.625-2.169,0.381-0.659,0.85-1.264,1.406-1.813,0.556-0.548,1.326-1.234,2.314-2.057,1.766-1.46,2.887-2.656,3.362-3.59s0.714-1.883,0.714-2.847c0-1.717-0.53-3.015-1.588-3.895-1.05-0.875-2.59-1.315-4.63-1.315-1.65,0-3.345,0.27-5.085,0.81v2.362h0.027c1.658-0.593,3.071-0.89,4.237-0.89,1.103,0,1.931,0.259,2.481,0.776,0.553,0.519,0.828,1.289,0.828,2.316,0,0.584-0.171,1.172-0.512,1.765s-1.162,1.429-2.462,2.509c-1.085,0.902-1.982,1.732-2.69,2.488-0.709,0.756-1.305,1.671-1.789,2.741s-0.73,2.29-0.73,3.67v1.45h12v-2.31h-8.502z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M23.14,19.59v-6.889h-6.89v5.018h-2.298v-5.018h-6.884v6.889h5.018l-0.014,2.316-5.029,0.029,0.031,6.839,6.837-0.028,0.014-4.994h2.326v5.018h6.886v-6.886h-5.019v-2.294h5.015zm-6.86,2.3h-0.03v0.026h-2.324v-2.32h0.027v-0.031h2.297v0.025h0.025v2.286z"/>
-
<polygon points="15.12,4.63,26.1,15.57,27.39,14.28,15.06,1.913,2.721,14.25,4.148,15.64"/>
-
+<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.83"/>
<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.83"/>
-
-<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.83"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_attach.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_attach.svg Thu May 27 13:10:59 2010 +0300
@@ -1,29 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M16.08,11.41v-3.592h-3.592v2.619h-1.198v-2.622h-3.59v3.595h2.62l-0.011,1.209-2.622,0.017,0.012,3.57,3.571-0.014,0.006-2.607h1.216v2.62h3.592v-3.595h-2.62v-1.197l2.61-0.01zm-3.57,1.2h-0.014v0.017h-1.216v-1.213h0.018v-0.015h1.198v0.015h0.014v1.19z"/>
-
<polygon points="11.91,3.607,17.64,9.316,18.3,8.643,11.87,2.188,5.433,8.625,6.178,9.352"/>
-
<polygon points="17.26,22.44,18.62,24.63,22.36,24.63,21,22.44"/>
-
<polygon points="11.42,22.44,12.78,24.63,16.51,24.63,15.14,22.44"/>
-
<polygon points="23.12,22.44,24.25,24.26,24.25,22.44"/>
-
<polygon points="10.66,24.63,10.67,24.63,9.303,22.44,6.724,22.44,10.51,28.5,12.36,27.35,11.72,26.32"/>
-
<polygon points="20.26,17.92,21.62,20.11,24.25,20.11,20.46,14.05,18.6,15.21,20.28,17.92"/>
-
<polygon points="19.51,20.11,18.14,17.92,14.46,17.92,15.82,20.11"/>
-
<polygon points="6.724,18.28,6.724,20.11,7.859,20.11"/>
-
<polygon points="13.7,20.11,12.34,17.92,8.615,17.92,9.979,20.11"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.323" y="0.83"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.323" y="0.83"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_context.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_context.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M16.46,11.48v-3.576h-3.577v2.608h-1.194v-2.606h-3.58v3.581h2.609l-0.01,1.205-2.613,0.016,0.015,3.553,3.556-0.013,0.007-2.597h1.21v2.609h3.578v-3.581h-2.61v-1.192h2.605zm-3.56,1.2h-0.014v0.018h-1.21v-1.209h0.017v-0.014h1.194v0.014h0.014v1.187z"/>
-
<polygon points="12.3,3.709,18.01,9.396,18.68,8.726,12.27,2.296,5.854,8.708,6.596,9.432"/>
-
<polygon points="24.67,22.35,7.215,22.35,10.99,28.39,12.84,27.24,11.16,24.54,11.17,24.54,11.17,24.54,24.67,24.54"/>
-
<polygon points="20.9,14,19.04,15.16,20.72,17.85,7.215,17.85,7.215,20.04,24.67,20.03"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.746" y="0.83"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.746" y="0.83"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_multipdp.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_multipdp.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M15.86,11.48v-3.576h-3.576v2.608h-1.194v-2.606h-3.58v3.581h2.609l-0.009,1.205-2.613,0.016,0.014,3.553,3.556-0.013,0.007-2.597h1.211v2.609h3.577v-3.581h-2.62v-1.192h2.607zm-3.56,1.2h-0.014v0.018h-1.22v-1.209h0.017v-0.014h1.194v0.014h0.014v1.187z"/>
-
<polygon points="11.7,3.709,17.4,9.396,18.07,8.726,11.66,2.296,5.248,8.708,5.99,9.432"/>
-
<polygon points="24.06,22.35,6.608,22.35,10.38,28.39,12.24,27.24,10.55,24.54,10.56,24.54,10.56,24.54,24.06,24.54"/>
-
<polygon points="20.29,14,18.44,15.16,20.11,17.85,6.608,17.85,6.608,20.04,24.06,20.03"/>
-
<polygon points="10.35,28.39,12.21,27.23,10.53,24.53,13.27,24.53,15.68,28.39,17.53,27.23,15.85,24.53,24.04,24.53,24.04,22.34,6.583,22.34"/>
-
+<rect fill="none" height="29.03" width="29.03" x="0.14" y="0.83"/>
<rect fill="none" height="29.03" width="29.03" x="0.14" y="0.83"/>
-
-<rect fill="none" height="29.03" width="29.03" x="0.14" y="0.83"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_suspended.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_suspended.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M16.6,11.44v-3.592h-3.59v2.619h-1.2v-2.622h-3.587v3.594h2.621l-0.011,1.21-2.625,0.016,0.015,3.568,3.569-0.014,0.009-2.607h1.215v2.62h3.592v-3.6h-2.621v-1.197h2.61zm-3.57,1.2h-0.013v0.017h-1.22v-1.213h0.015v-0.02h1.2v0.014h0.013v1.2z"/>
-
<polygon points="12.43,3.636,18.16,9.345,18.83,8.672,12.39,2.217,5.953,8.654,6.698,9.381"/>
-
<polygon points="24.77,22.38,24.77,24.57,20.8,24.57,20.8,24.57,15.42,24.57,17.24,22.38"/>
-
<polygon points="7.246,22.38,12.02,22.38,10.17,24.57,7.246,24.57"/>
-
<polygon points="24.77,17.85,24.77,20.05,19.19,20.05,21.02,17.85"/>
-
<polygon points="7.246,20.05,7.246,17.85,15.83,17.85,13.98,20.05"/>
-
<polygon points="21.8,15.4,21.86,15.46,21.82,15.51,11.84,27.4,10.94,28.47,9.261,27.06,10.54,25.53,20.18,14.05"/>
-
+<rect fill="none" height="29.03" width="29.03" x="0.846" y="0.83"/>
<rect fill="none" height="29.03" width="29.03" x="0.846" y="0.83"/>
-
-<rect fill="none" height="29.03" width="29.03" x="0.846" y="0.83"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_unblock.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_unblock.svg Thu May 27 13:10:59 2010 +0300
@@ -1,22 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M13.116,23.909c-0.544-0.116-1.07-0.276-1.574-0.483l1.558-2.225
- c0.424-3.082,2.324-5.697,4.971-7.099l3.658-5.225c1.07,1.175,1.836,2.629,2.179,4.238c1.504,0.225,2.893,0.799,4.081,1.644
- C27.857,7.702,22.087,2,15,2C7.832,2,2,7.831,2,15c0,7.088,5.703,12.857,12.76,12.988C13.915,26.8,13.342,25.412,13.116,23.909z
- M5.889,15c0-5.024,4.088-9.111,9.111-9.111c1.225,0,2.391,0.246,3.458,0.686L8.271,21.122C6.797,19.503,5.889,17.358,5.889,15z"/>
-<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28
- c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
-<rect x="18" y="20.999" transform="matrix(0.7071 -0.7072 0.7072 0.7071 -9.3196 22.502)" width="9" height="3"/>
-<rect x="18" y="21" transform="matrix(-0.7071 -0.7072 0.7072 -0.7071 22.4979 54.319)" width="9" height="3"/>
+<path d="M13.116,23.909c-0.544-0.116-1.07-0.276-1.574-0.483l1.558-2.225 c0.424-3.082,2.324-5.697,4.971-7.099l3.658-5.225c1.07,1.175,1.836,2.629,2.179,4.238c1.504,0.225,2.893,0.799,4.081,1.644 C27.857,7.702,22.087,2,15,2C7.832,2,2,7.831,2,15c0,7.088,5.703,12.857,12.76,12.988C13.915,26.8,13.342,25.412,13.116,23.909z M5.889,15c0-5.024,4.088-9.111,9.111-9.111c1.225,0,2.391,0.246,3.458,0.686L8.271,21.122C6.797,19.503,5.889,17.358,5.889,15z" fill-rule="evenodd"/>
+<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28 c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
+<rect height="3" transform="matrix(0.7071 -0.7072 0.7072 0.7071 -9.3196 22.502)" width="9" x="18" y="20.999"/>
+<rect height="3" transform="matrix(-0.7071 -0.7072 0.7072 -0.7071 22.4979 54.319)" width="9" x="18" y="21"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_underline.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_underline.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M15.04,22.66c2.177,0,3.83-0.579,4.964-1.736,1.134-1.156,1.7-2.857,1.7-5.104v-12.82h-3.163v13.07c0,1.6-0.278,2.74-0.831,3.428-0.554,0.686-1.454,1.029-2.7,1.029-1.234,0-2.136-0.35-2.699-1.045-0.564-0.696-0.846-1.834-0.846-3.412v-13.07h-3.161v12.73c0,2.354,0.551,4.096,1.648,5.229s2.793,1.7,5.093,1.7zm-9.005,2.38v1.96h17.93v-1.956h-17.92z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_unknown.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_unknown.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.202"/>
-
<path d="M17.84,25.04c0,1.713-1.393,3.11-3.113,3.11s-3.115-1.397-3.115-3.11c0-1.717,1.395-3.115,3.115-3.115s3.1,1.4,3.1,3.12z"/>
-
<path d="M15.28,1.285c-2.324,0-3.988,0.716-5.086,2.191-1.04,1.396-1.688,3.248-1.918,5.509l3.837,0.662c0.161-1.211,0.444-2.098,0.862-2.689,0.565-0.796,1.331-1.214,2.223-1.214,1.052,0,1.636,0.476,1.941,0.877,0.395,0.515,0.598,1.217,0.598,2.083,0,0.886-0.437,1.832-1.295,2.805-1.35,1.568-2.227,2.667-2.598,3.262-0.359,0.576-0.631,1.217-0.805,1.906-0.185,0.697-0.279,1.639-0.281,2.793h3.725c0.048-0.754,0.179-1.393,0.388-1.936,0.285-0.721,0.901-1.594,1.89-2.687,1.256-1.382,2.096-2.552,2.488-3.476,0.388-0.909,0.585-1.868,0.585-2.838,0-2.417-0.739-4.287-2.255-5.72-1.09-1.017-2.49-1.517-4.3-1.517z"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.202"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_update_existing.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_update_existing.svg Thu May 27 13:10:59 2010 +0300
@@ -1,24 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M8.572,15.788h5.857l0.001,0.001c-0.037-0.108-0.073-0.217-0.08-0.318c-0.007-0.1-0.005-0.241-0.002-0.377
- c-0.362-0.547-0.454-1.237-0.196-1.859C14.462,12.487,15.191,12,16,12h0.995c1.005-2.141,0.63-7.293,0.63-7.293
- C17.625,2.538,14.383,0,12.189,0h-1.391C8.605,0,5.375,2.538,5.375,4.707c0,0-0.332,5.294,0.658,7.392
- c0.544,1.145,1.503,2.076,2.615,2.806c0.002,0.148,0.014,0.419,0.004,0.566C8.646,15.572,8.609,15.68,8.572,15.788z"/>
-<path d="M14,21.5c0-1.65,0.469-3.185,1.248-4.515c-0.126-0.134-0.242-0.266-0.345-0.395L11.5,24.286l-3.401-7.694
- C6.401,18.725,1.294,21.482,1,21.87V28h15.792C15.075,26.36,14,24.056,14,21.5z"/>
-<path d="M30,21.5c0-3.52-2.613-6.433-6-6.92v2.021c2.28,0.464,4,2.483,4,4.898c0,1.506-0.669,2.857-1.726,3.774L24,23v3.398v2.021
- V29h6l-2.316-2.316C29.103,25.404,30,23.558,30,21.5z"/>
-<path d="M18.316,16.316C16.897,17.596,16,19.442,16,21.5c0,3.52,2.613,6.433,6,6.92v-2.021c-2.28-0.464-4-2.483-4-4.898
- c0-1.506,0.669-2.857,1.726-3.774L22,20v-3.398V14.58V14h-6L18.316,16.316z"/>
+<path d="M8.572,15.788h5.857l0.001,0.001c-0.037-0.108-0.073-0.217-0.08-0.318c-0.007-0.1-0.005-0.241-0.002-0.377 c-0.362-0.547-0.454-1.237-0.196-1.859C14.462,12.487,15.191,12,16,12h0.995c1.005-2.141,0.63-7.293,0.63-7.293 C17.625,2.538,14.383,0,12.189,0h-1.391C8.605,0,5.375,2.538,5.375,4.707c0,0-0.332,5.294,0.658,7.392 c0.544,1.145,1.503,2.076,2.615,2.806c0.002,0.148,0.014,0.419,0.004,0.566C8.646,15.572,8.609,15.68,8.572,15.788z"/>
+<path d="M14,21.5c0-1.65,0.469-3.185,1.248-4.515c-0.126-0.134-0.242-0.266-0.345-0.395L11.5,24.286l-3.401-7.694 C6.401,18.725,1.294,21.482,1,21.87V28h15.792C15.075,26.36,14,24.056,14,21.5z"/>
+<path d="M30,21.5c0-3.52-2.613-6.433-6-6.92v2.021c2.28,0.464,4,2.483,4,4.898c0,1.506-0.669,2.857-1.726,3.774L24,23v3.398v2.021 V29h6l-2.316-2.316C29.103,25.404,30,23.558,30,21.5z"/>
+<path d="M18.316,16.316C16.897,17.596,16,19.442,16,21.5c0,3.52,2.613,6.433,6,6.92v-2.021c-2.28-0.464-4-2.483-4-4.898 c0-1.506,0.669-2.857,1.726-3.774L22,20v-3.398V14.58V14h-6L18.316,16.316z"/>
</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_usb.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+</g>
+<rect height="2" width="3" x="10" y="6"/>
+<rect height="2" width="3" x="17" y="6"/>
+<path d="M24,9V1H6v8c-1.104,0-2,0.896-2,2v7c0,6.075,4.925,11,11,11s11-4.925,11-11v-7C26,9.896,25.104,9,24,9z M8,3h14v6H8V3z M21,18h-1v1.5c0,1.379-1.121,2.5-2.5,2.5H16v3h1v2h-4v-2h1v-2h-1.5c-1.378,0-2.5-1.121-2.5-2.5V20H9v-2h1h1h1v2h-1v0.5 c0,0.827,0.673,1.5,1.5,1.5H14v-7h-2l3-4l3,4h-2v6h1.5c0.827,0,1.5-0.673,1.5-1.5V18h-1v-2h3V18z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_user_defined.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_user_defined.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
-<g opacity="0.5">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30" x="0.002"/>
-
</g>
-
<path d="M1,3v24h28v-24h-28zm25,21h-22v-18h22v18z"/>
-
<path d="M19.78,9.176v11.65h-2.125v-8.062l-2.195,4.187h-0.898l-2.203-4.187v8.062h-2.133v-11.64h1.797l2.992,5.695,2.992-5.695h1.767z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vga.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vga.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,9 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
<path d="M0.998,3v24h28V3H0.998z M25.998,24h-22V6h22V24z"/>
<path d="M7.757,19.004L5.63,10.996h1.542l1.552,6.455l1.595-6.455h1.316l-2.219,8.008H7.757z"/>
-<path d="M14.895,19.09c-0.896,0-1.57-0.324-2.025-0.971c-0.454-0.646-0.682-1.719-0.682-3.219c0-1.297,0.282-2.285,0.846-2.969
- c0.564-0.682,1.397-1.021,2.5-1.021c0.565,0,1.098,0.068,1.596,0.209v0.912c-0.444-0.133-0.938-0.197-1.487-0.197
- c-0.626,0-1.103,0.266-1.427,0.797c-0.324,0.531-0.486,1.277-0.486,2.236c0,1.264,0.119,2.133,0.355,2.604s0.58,0.705,1.031,0.705
- c0.286,0,0.514-0.102,0.682-0.303c0.168-0.203,0.252-0.471,0.252-0.803v-1.498h-1.058V14.67H17.5v4.334h-0.833l-0.22-0.715
- c-0.15,0.25-0.367,0.447-0.65,0.588C15.514,19.02,15.213,19.09,14.895,19.09z"/>
-<path d="M22.807,19.004l-0.461-1.762h-2.423l-0.473,1.762h-1.343l2.31-8.008h1.74l2.213,8.008H22.807z M22.125,16.34l-0.982-3.98
- l-1.01,3.98H22.125z"/>
+<path d="M14.895,19.09c-0.896,0-1.57-0.324-2.025-0.971c-0.454-0.646-0.682-1.719-0.682-3.219c0-1.297,0.282-2.285,0.846-2.969 c0.564-0.682,1.397-1.021,2.5-1.021c0.565,0,1.098,0.068,1.596,0.209v0.912c-0.444-0.133-0.938-0.197-1.487-0.197 c-0.626,0-1.103,0.266-1.427,0.797c-0.324,0.531-0.486,1.277-0.486,2.236c0,1.264,0.119,2.133,0.355,2.604s0.58,0.705,1.031,0.705 c0.286,0,0.514-0.102,0.682-0.303c0.168-0.203,0.252-0.471,0.252-0.803v-1.498h-1.058V14.67H17.5v4.334h-0.833l-0.22-0.715 c-0.15,0.25-0.367,0.447-0.65,0.588C15.514,19.02,15.213,19.09,14.895,19.09z"/>
+<path d="M22.807,19.004l-0.461-1.762h-2.423l-0.473,1.762h-1.343l2.31-8.008h1.74l2.213,8.008H22.807z M22.125,16.34l-0.982-3.98 l-1.01,3.98H22.125z"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vga_wide.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vga_wide.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30" x="0.002"/>
-
</g>
-
<path d="M0,3v24h30v-24h-30zm27,21h-24v-18h24v18z"/>
-
<path d="M5.806,17.91l-1.254-5.824h1.133l0.848,4.578,1.121-4.578h1.136l1.031,4.578,0.938-4.578h0.94l-1.391,5.824h-1.168l-1.008-4.441-1.121,4.441h-1.207z"/>
-
<path d="M13.37,17.91l-1.547-5.824h1.121l1.129,4.695,1.16-4.695h0.957l-1.613,5.824h-1.212z"/>
-
<path d="M18.56,17.98c-0.651,0-1.142-0.235-1.473-0.705s-0.496-1.251-0.496-2.342c0-0.942,0.205-1.662,0.615-2.158s1.017-0.744,1.818-0.744c0.411,0,0.798,0.051,1.16,0.152v0.664c-0.323-0.097-0.684-0.145-1.082-0.145-0.456,0-0.802,0.193-1.037,0.58s-0.354,0.929-0.354,1.627c0,0.919,0.086,1.55,0.258,1.893s0.422,0.514,0.75,0.514c0.208,0,0.374-0.073,0.496-0.221s0.184-0.342,0.184-0.584v-1.09h-0.77v-0.66h1.824v3.152h-0.605l-0.16-0.52c-0.109,0.183-0.267,0.325-0.473,0.428s-0.42,0.16-0.65,0.16z"/>
-
<path d="M24.31,17.91l-0.336-1.281h-1.762l-0.344,1.281h-0.977l1.68-5.824h1.266l1.609,5.824h-1.137zm-0.49-1.93l-0.715-2.895-0.734,2.895h1.447z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M2,6h2v2h-2v3h4v8h-4v3h2v2h-2v3h26v-3h-2v-2h2v-3h-4v-8h4v-3h-2v-2h2v-3h-26v3zm4,0h3v2h-3v-2zm8,2h-3v-2h3v2zm2-2h3v2h-3v-2zm-10,16h3v2h-3v-2zm8,2h-3v-2h3v2zm2-2h3v2h-3v-2zm8,2h-3v-2h3v2zm-3-5h-12v-8h12v8zm3-11h-3v-2h3v2z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M10.79,10.17c1.569-1.567,4.066-3.208,5.188-3.79v0.004c0.002-0.001,0.005-0.006,0.006-0.008l1.278,2.142c0.183,0.313,0.589,0.408,0.952,0.256l7.36-4.248c0.384-0.22,0.532-0.68,0.333-1.022,0,0-0.202-0.305-0.818-1.062,0.002,0.001,0.004,0.003,0.005,0.005-0.001-0.002-0.001-0.005-0.003-0.008-0.311-0.383-0.349-0.397-0.75-0.765-1.205-1.103-2.531-1.536-2.531-1.536-0.513-0.182-2.24-0.282-4.416,0.374s-7.119,3.823-10.3,7.005c-3.18,3.183-5.9,7.49-6.42,8.854-0.814,2.148-0.74,4.517-0.563,5.205,0,0,0.169,0.513,0.56,1.211,0.005,0.007,0.01,0.016,0.015,0.024,0.038,0.068,0.076,0.136,0.119,0.207,0.001,0.002,0.004,0.001,0.005,0.002,0.21,0.35,0.464,0.729,0.783,1.114,0.374,0.449,0.392,0.578,0.785,0.925h0.003c0.723,0.636,1.021,0.83,1.021,0.83,0.345,0.224,0.827,0.103,1.08-0.268l4.794-7.042c0.254-0.372,0.186-0.856-0.158-1.078l-2.725-1.743c-0.01-0.001-0.019-0.001-0.027-0.003,0.002-0.002,0.008-0.01,0.008-0.01,1.264-2.19,2.782-3.95,4.41-5.58z"/>
-
<circle cx="22" cy="18" r="3"/>
-
<path d="M27,27h-3v-1.262c3.449-0.89,6-4.012,6-7.738,0-4.419-3.581-8-8-8s-8,3.581-8,8c0,3.727,2.551,6.849,6,7.738v1.26h-3c-1.1,0-2,0.9-2,2v1h14v-1c0-1.1-0.9-2-2-2zm-10-9c0-2.757,2.243-5,5-5s5,2.243,5,5-2.243,5-5,5-5-2.24-5-5z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video_collection.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video_collection.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M6,13h2v1h-2v2h2v3h-2v2h2v1h-2v2h13v-2h-1v-1h1v-2h-2v-3h2v-2h-1v-1h1v-2h-13v2zm3,0h2v1h-2v-1zm3,1v-1h2v1h-2zm-3,7h2v1h-2v-1zm5,0v1h-2v-1h2zm3,1h-2v-1h2v1zm-2-3h-5v-3h5v3zm2-5h-2v-1h2v1z"/>
-
<polygon points="5.999,1,5.999,4,26,4,26,24,29,24,29,1"/>
-
<path d="M1,29h23v-23h-23v23zm3-20h17v17h-17v-17z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video_services.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video_services.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M13.13,21c0.17-1.069,0.508-2.081,1.003-3h-5.13v-8h12v3.13c0.49-0.078,0.988-0.13,1.5-0.13s1.01,0.052,1.5,0.13v-3.13h4v-3h-2v-2h2v-3h-26v3h2v2h-2v3h4v8h-4v3h2v2h-2v3h11.67c-0.371-0.937-0.594-1.945-0.648-3h-2.02v-2h2.13zm7.87-16h3v2h-3v-2zm-5,0h3v2h-3v-2zm-5,0h3v2h-3v-2zm-5,0h3v2h-3v-2zm3,18h-3v-2h3v2z"/>
-
<polygon points="19.6,18.89,23.97,20.29,24.71,18.82,21.76,18.08"/>
-
<path d="M22.5,15c-4.143,0-7.5,3.357-7.5,7.5s3.357,7.5,7.5,7.5,7.5-3.357,7.5-7.5-3.36-7.5-7.5-7.5zm3.96,5.47l0.346-0.152s0.422,0.403,0.403,0.537c-0.019,0.135-0.653,0.749-0.653,0.749l-0.56,0.19-0.732-0.603-0.557-0.46,0.346,0.826,0.461,0.48s0.807-0.115,0.922-0.02-0.152,0.827-0.152,0.827l-1.346,1.383-0.135,1.383c-0.75,0.386-0.826,0.979-0.826,0.979s-0.191-0.036-0.691,0.521c-0.5,0.556-1.039,0.41-1.039,0.41-0.633,0-0.748-0.41-0.748-0.546,0-0.134-0.635-1.172-0.635-1.519,0-0.345,0.192-0.769,0.192-0.769,0.038-0.499-0.499-1.843-0.499-1.843h-0.558l-0.192-0.424c-1.806,0.385-1.883-0.077-2.152-0.577-0.268-0.499,0.039-1.843,0.212-2.055s1.519-1.134,1.519-1.134l-0.174-0.25c-0.115-0.25,0.635-0.595,0.635-0.595,0.288,0.192,0.48,0,0.48,0l0.076-0.193-0.051-0.188c0.67-0.28,1.39-0.44,2.15-0.44,0.55,0,1.08,0.083,1.581,0.234l-0.108,0.107,0.737,0.737,0.412-0.412c1.061,0.577,1.907,1.495,2.401,2.604l-0.699-0.129-0.846-0.326,0.49,0.66zm-9.25,3.51l0.79,0.02,1,1-0.97,0.692c-0.37-0.51-0.65-1.09-0.82-1.71zm8.67,2.74l0.12-1.72,1.209,0.326c-0.334,0.555-0.76,1.048-1.262,1.453l-0.07-0.06z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_virtual_input.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_virtual_input.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M0,4v20h30v-20h-30zm18,3h3v3h-3v-3zm-5,0h3v3h-3v-3zm0,5h3v3h-3v-3.001zm-5-5h3v3h-3v-3zm0,5h3v3h-3v-3.001zm-2,8h-3v-3h3v3zm0-5h-3v-3h3v2.999zm0-5h-3v-3h3v3zm15,10h-13v-3h13v3zm5,0h-3v-3h3v3zm0-5h-8v-3h5v-5h3v7.999z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_voice_mailbox.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_voice_mailbox.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M23.5,8.5c-3.59,0-6.5,2.91-6.5,6.5,0,1.748,0.693,3.332,1.816,4.5h-7.633c1.12-1.17,1.81-2.75,1.81-4.5,0-3.59-2.91-6.5-6.5-6.5s-6.5,2.91-6.5,6.5,2.91,6.5,6.5,6.5h17c3.59,0,6.5-2.91,6.5-6.5s-2.91-6.5-6.5-6.5zm-20.5,6.5c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5-1.57,3.5-3.5,3.5-3.5-1.57-3.5-3.5zm20.5,3.5c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5,3.5,1.57,3.5,3.5-1.57,3.5-3.5,3.5z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vol_down.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vol_down.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,12 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<rect x="1" y="9" width="7" height="12"/>
+<rect height="12" width="7" x="1" y="9"/>
<path d="M13,22.5c0-4.727,3.474-8.646,8-9.37V3L10,8v14l3.045,1.384C13.018,23.093,13,22.799,13,22.5z"/>
-<path d="M25.916,13.646c-0.22-1.963-0.904-3.876-2.027-5.6L22.213,9.14c0.805,1.232,1.341,2.578,1.602,3.962
- C24.545,13.204,25.248,13.387,25.916,13.646z"/>
-<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28
- c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
-<rect x="18" y="21" width="9" height="3"/>
+<path d="M25.916,13.646c-0.22-1.963-0.904-3.876-2.027-5.6L22.213,9.14c0.805,1.232,1.341,2.578,1.602,3.962 C24.545,13.204,25.248,13.387,25.916,13.646z"/>
+<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28 c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
+<rect height="3" width="9" x="18" y="21"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vol_up.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vol_up.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,13 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<g opacity="0.5">
- <rect fill="none" width="30" height="30"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<g fill-opacity="0.5" stroke-opacity="0.5">
+<rect fill="none" height="30" width="30"/>
</g>
-<rect x="1" y="9" width="7" height="12"/>
+<rect height="12" width="7" x="1" y="9"/>
<path d="M13,22.5c0-4.727,3.474-8.646,8-9.37V3L10,8v14l3.045,1.384C13.018,23.093,13,22.799,13,22.5z"/>
-<path d="M25.916,13.646c-0.22-1.963-0.904-3.876-2.027-5.6L22.213,9.14c0.805,1.232,1.341,2.578,1.602,3.962
- C24.545,13.204,25.248,13.387,25.916,13.646z"/>
-<path d="M29.91,16.57C29.964,16.05,30,15.526,30,15c0-3.416-1.141-6.735-3.298-9.602l-1.598,1.203
- c1.844,2.449,2.833,5.265,2.886,8.159C28.711,15.273,29.357,15.881,29.91,16.57z"/>
-<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28
- c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
+<path d="M25.916,13.646c-0.22-1.963-0.904-3.876-2.027-5.6L22.213,9.14c0.805,1.232,1.341,2.578,1.602,3.962 C24.545,13.204,25.248,13.387,25.916,13.646z"/>
+<path d="M29.91,16.57C29.964,16.05,30,15.526,30,15c0-3.416-1.141-6.735-3.298-9.602l-1.598,1.203 c1.844,2.449,2.833,5.265,2.886,8.159C28.711,15.273,29.357,15.881,29.91,16.57z"/>
+<path d="M22.5,15c-4.136,0-7.5,3.364-7.5,7.5s3.364,7.5,7.5,7.5s7.5-3.364,7.5-7.5S26.636,15,22.5,15z M22.5,28 c-3.033,0-5.5-2.468-5.5-5.5s2.467-5.5,5.5-5.5s5.5,2.468,5.5,5.5S25.533,28,22.5,28z"/>
<polygon points="24,21 24,18 21,18 21,21 18,21 18,24 21,24 21,27 24,27 24,24 27,24 27,21 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M10.25,14.79c1.246-0.87,1.945-2.136,1.945-3.633,0-2.197-1.599-4.414-5.167-4.414-1.955,0-3.651,0.719-4.516,1.333l-0.428,0.301,1.068,2.846,0.708-0.509c0.592-0.421,1.666-0.912,2.751-0.912,1.34,0,2.079,0.604,2.079,1.695,0,1.457-1.691,1.986-2.83,1.986h-1.854v2.935h1.855c0.561,0,3.36,0.118,3.386,2.477,0.01,0.607-0.211,1.189-0.608,1.598-0.504,0.5-1.262,0.76-2.269,0.76-1.327,0-2.6-0.544-3.134-0.868l-0.702-0.42-1.032,2.883,0.44,0.293c0.828,0.54,2.483,1.169,4.449,1.169,4.396,0,6.397-2.788,6.397-5.377,0-1.81-0.98-3.33-2.54-4.14z"/>
-
<path d="M21.91,14.16v3.031h3.286v3.71c-0.373,0.11-1.022,0.236-2.133,0.236-3.517,0-5.608-2.206-5.608-5.897,0-3.621,2.248-5.872,5.869-5.872,1.342,0,2.396,0.202,3.313,0.635l0.697,0.33,0.932-3.003-0.518-0.25c-0.775-0.376-2.391-0.815-4.371-0.815-2.813,0-5.209,0.891-6.922,2.573-1.656,1.624-2.561,3.932-2.561,6.5,0,2.64,0.901,5.023,2.473,6.544,1.65,1.572,3.788,2.337,6.551,2.337,2.625,0,4.689-0.718,5.266-0.938l0.424-0.167v-8.953h-6.7z"/>
-
+<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.775"/>
<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.775"/>
-
-<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.775"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_attach.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_attach.svg Thu May 27 13:10:59 2010 +0300
@@ -1,29 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="9.66,24.72,9.665,24.72,8.199,22.36,5.432,22.36,9.497,28.87,11.48,27.63,10.79,26.52"/>
-
<polygon points="10.48,22.36,11.94,24.72,15.93,24.72,14.47,22.36"/>
-
<polygon points="16.74,22.36,18.21,24.72,22.22,24.72,20.76,22.36"/>
-
<polygon points="23.03,22.36,24.25,24.31,24.25,22.36"/>
-
<polygon points="19.97,17.5,21.43,19.86,24.25,19.86,20.18,13.35,18.18,14.6,19.99,17.5"/>
-
<polygon points="19.16,19.86,17.69,17.5,13.74,17.5,15.2,19.86"/>
-
<polygon points="12.93,19.86,11.46,17.5,7.463,17.5,8.929,19.86"/>
-
<polygon points="5.432,17.89,5.432,19.86,6.652,19.86"/>
-
<path d="M11.89,6.522c0.646-0.499,1.015-1.193,1.015-2.013,0-0.698-0.272-1.336-0.764-1.802-0.542-0.512-1.313-0.779-2.238-0.779-1.125,0-2.102,0.415-2.598,0.767l-0.301,0.215,0.674,1.803,0.509-0.364c0.322-0.227,0.9-0.491,1.482-0.491,0.485,0,1.06,0.146,1.06,0.844,0,0.824-1.07,1.006-1.482,1.006h-1.146v1.857h1.148c0.295,0,1.779,0.062,1.792,1.284,0.002,0.148-0.024,0.521-0.313,0.814-0.262,0.26-0.664,0.397-1.195,0.397-0.72,0-1.409-0.298-1.699-0.472l-0.507-0.306-0.652,1.822,0.319,0.208c0.47,0.312,1.427,0.676,2.55,0.676,2.534,0,3.69-1.62,3.69-3.123,0-1.005-0.52-1.859-1.35-2.345z"/>
-
<path d="M19.04,6.136v1.915h1.838v1.876c-0.242,0.064-0.57,0.12-1.084,0.12-1.901,0-3.036-1.196-3.036-3.197,0-0.982,0.297-1.794,0.859-2.348,0.554-0.547,1.358-0.836,2.323-0.836,0.735,0,1.311,0.11,1.813,0.345l0.501,0.238,0.585-1.887-0.378-0.181c-0.441-0.218-1.366-0.467-2.494-0.467-3.244,0-5.422,2.087-5.422,5.19,0,1.509,0.519,2.874,1.42,3.744,0.945,0.9,2.167,1.341,3.743,1.341,1.488,0,2.664-0.407,2.987-0.532l0.3-0.12v-5.2h-3.965z"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.323" y="0.775"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.323" y="0.775"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_context.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_context.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<polygon points="24.67,22.36,5.854,22.36,9.92,28.87,11.92,27.62,10.1,24.72,10.12,24.72,10.12,24.72,24.67,24.72"/>
-
<polygon points="20.6,13.35,18.6,14.6,20.42,17.5,5.854,17.5,5.854,19.86,24.67,19.86"/>
-
<path d="M12.31,6.521c0.646-0.499,1.014-1.193,1.014-2.013,0-0.698-0.271-1.336-0.761-1.802-0.542-0.512-1.316-0.78-2.239-0.78-1.124,0-2.103,0.415-2.598,0.767l-0.295,0.215,0.674,1.803,0.51-0.365c0.321-0.227,0.9-0.491,1.479-0.491,0.485,0,1.061,0.146,1.061,0.844,0,0.825-1.068,1.005-1.481,1.005h-1.144v1.857h1.149c0.295,0,1.778,0.062,1.79,1.284,0.002,0.148-0.022,0.522-0.313,0.814-0.262,0.26-0.662,0.397-1.193,0.397-0.723,0-1.411-0.298-1.701-0.472l-0.506-0.307-0.65,1.819,0.317,0.208c0.473,0.312,1.429,0.676,2.553,0.676,2.534,0,3.688-1.619,3.688-3.123,0-1.006-0.52-1.861-1.35-2.346z"/>
-
<path d="M19.46,6.134v1.915h1.84v1.876c-0.244,0.065-0.572,0.12-1.084,0.12-1.902,0-3.035-1.196-3.035-3.197,0-0.982,0.294-1.794,0.856-2.348,0.554-0.547,1.358-0.835,2.325-0.835,0.736,0,1.312,0.109,1.812,0.344l0.501,0.238,0.587-1.887-0.378-0.181c-0.443-0.218-1.367-0.467-2.494-0.467-3.246,0-5.423,2.087-5.423,5.191,0,1.509,0.519,2.874,1.421,3.744,0.941,0.9,2.164,1.341,3.743,1.341,1.485,0,2.661-0.407,2.984-0.532l0.312-0.121v-5.196h-3.963z"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.746" y="0.775"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.746" y="0.775"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_multipdp.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_multipdp.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M11.7,6.565c0.646-0.499,1.016-1.192,1.016-2.011,0-0.699-0.272-1.336-0.762-1.803-0.537-0.512-1.314-0.779-2.239-0.779-1.125,0-2.098,0.414-2.593,0.768l-0.312,0.213,0.678,1.803,0.512-0.365c0.317-0.227,0.9-0.49,1.48-0.49,0.483,0,1.062,0.147,1.062,0.844,0,0.825-1.072,1.005-1.483,1.005h-1.151v1.857h1.148c0.294,0,1.778,0.062,1.79,1.284,0.003,0.148-0.022,0.523-0.31,0.816-0.261,0.26-0.664,0.397-1.196,0.397-0.721,0-1.409-0.299-1.698-0.472l-0.504-0.303-0.649,1.824,0.317,0.207c0.472,0.312,1.428,0.676,2.552,0.676,2.533,0,3.688-1.619,3.688-3.122,0-1.012-0.52-1.865-1.35-2.353z"/>
-
<path d="M18.85,6.18v1.914h1.838v1.876c-0.24,0.065-0.572,0.121-1.087,0.121-1.903,0-3.036-1.197-3.036-3.198,0-0.98,0.296-1.793,0.857-2.348,0.555-0.547,1.359-0.836,2.326-0.836,0.735,0,1.311,0.111,1.812,0.345l0.503,0.238,0.584-1.888-0.373-0.181c-0.445-0.217-1.365-0.467-2.498-0.467-3.244,0-5.421,2.087-5.421,5.19,0,1.51,0.517,2.874,1.418,3.745,0.945,0.901,2.168,1.339,3.745,1.339,1.487,0,2.661-0.407,2.99-0.532l0.309-0.121v-5.2h-3.968z"/>
-
<polygon points="20,13.4,17.99,14.64,19.81,17.55,16.85,17.55,14.26,13.4,12.26,14.64,14.06,17.55,5.247,17.55,5.247,19.91,24.06,19.9"/>
-
<polygon points="9.312,28.82,11.31,27.58,9.506,24.67,12.45,24.67,15.05,28.82,17.05,27.58,15.24,24.67,24.06,24.67,24.06,22.31,5.247,22.31"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.14" y="0.775"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.14" y="0.775"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_suspended.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_suspended.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<path d="M12.4,6.522c0.646-0.5,1.016-1.195,1.016-2.014,0-0.698-0.272-1.335-0.761-1.802-0.541-0.51-1.314-0.779-2.239-0.779-1.125,0-2.103,0.413-2.598,0.768l-0.299,0.215,0.677,1.802,0.509-0.363c0.32-0.227,0.898-0.491,1.479-0.491,0.483,0,1.061,0.146,1.061,0.843,0,0.824-1.071,1.004-1.483,1.004h-1.145v1.859h1.149c0.294,0,1.777,0.061,1.789,1.282,0.004,0.15-0.022,0.523-0.31,0.817-0.263,0.26-0.665,0.397-1.196,0.397-0.721,0-1.409-0.298-1.698-0.474l-0.504-0.304-0.653,1.821,0.321,0.208c0.47,0.312,1.427,0.675,2.552,0.675,2.534,0,3.689-1.617,3.689-3.123,0-0.995-0.52-1.848-1.36-2.335z"/>
-
<path d="M19.56,6.135v1.914h1.838v1.876c-0.242,0.064-0.569,0.121-1.084,0.121-1.902,0-3.035-1.195-3.035-3.198,0-0.981,0.295-1.793,0.857-2.346,0.555-0.55,1.358-0.837,2.325-0.837,0.735,0,1.311,0.11,1.812,0.346l0.504,0.238,0.584-1.888-0.377-0.182c-0.441-0.217-1.367-0.467-2.495-0.467-3.243,0-5.421,2.087-5.421,5.191,0,1.509,0.517,2.875,1.418,3.744,0.945,0.902,2.168,1.34,3.746,1.34,1.486,0,2.66-0.407,2.986-0.532l0.309-0.119v-5.205h-3.975z"/>
-
<polygon points="24.77,22.33,24.77,24.68,20.51,24.68,20.51,24.68,14.73,24.68,16.69,22.33"/>
-
<polygon points="5.953,22.32,11.08,22.32,9.094,24.68,5.953,24.68"/>
-
<polygon points="24.77,17.47,24.77,19.83,18.78,19.83,20.75,17.47"/>
-
<polygon points="5.953,19.82,5.953,17.47,15.17,17.47,13.19,19.83"/>
-
<polygon points="21.58,14.84,21.65,14.9,21.6,14.95,10.89,27.72,9.925,28.87,8.121,27.35,9.494,25.71,19.84,13.38"/>
-
+<rect fill="none" height="29.03" width="29.03" x="0.846" y="0.775"/>
<rect fill="none" height="29.03" width="29.03" x="0.846" y="0.775"/>
-
-<rect fill="none" height="29.03" width="29.03" x="0.846" y="0.775"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30" y="0"/>
-
<path d="M0.998,3v24h28v-24h-28zm25,21h-22v-18h22v18z"/>
-
<path d="M8.205,19.37l-1.881-8.736h1.699l1.271,6.867,1.682-6.867h1.705l1.547,6.867,1.406-6.867h1.412l-2.086,8.736h-1.752l-1.512-6.662-1.682,6.662h-1.815z"/>
-
<path d="M20.74,19.37h-2.713v-8.736h2.918c0.836,0,1.463,0.177,1.881,0.53s0.627,0.882,0.627,1.585c0,1-0.484,1.672-1.453,2.016,1.113,0.254,1.67,0.969,1.67,2.145,0,0.82-0.244,1.436-0.732,1.846-0.5,0.41-1.23,0.62-2.21,0.62zm-1.1-5.03h0.791c0.48,0,0.834-0.115,1.059-0.346s0.337-0.596,0.337-1.096c0-0.426-0.103-0.746-0.308-0.961s-0.512-0.322-0.918-0.322h-0.961v2.731zm0,4.04h0.885c0.521,0,0.896-0.12,1.129-0.36,0.232-0.239,0.349-0.635,0.349-1.187,0-0.517-0.12-0.896-0.36-1.144-0.24-0.247-0.615-0.368-1.127-0.368h-0.873v3.059h0.003z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_cloudy.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_cloudy.svg Thu May 27 13:10:59 2010 +0300
@@ -1,29 +1,11 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<rect fill-rule="evenodd" clip-rule="evenodd" fill="none" width="30" height="30"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M3.143,12c0-0.363,0.034-0.719,0.082-1.07H1.06C1.021,11.281,1,11.639,1,12
- c0,0.363,0.021,0.719,0.06,1.072h2.165C3.177,12.721,3.143,12.365,3.143,12z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M6.26,5.744L4.73,4.217C4.173,4.666,3.665,5.174,3.216,5.73L4.744,7.26
- C5.179,6.689,5.688,6.18,6.26,5.744z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M11,4.143c0.364,0,0.72,0.035,1.071,0.082V2.061C11.719,2.021,11.362,2,11,2
- s-0.719,0.021-1.071,0.061v2.164C10.28,4.178,10.636,4.143,11,4.143z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M17.256,7.26l1.528-1.529c-0.449-0.557-0.957-1.064-1.515-1.514L15.74,5.744
- C16.312,6.18,16.821,6.689,17.256,7.26z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M6.832,15.748c0.137-0.33,0.302-0.643,0.478-0.947
- c0.11-0.201,0.229-0.395,0.354-0.584c0.001-0.002,0.002-0.004,0.003-0.006c-0.426-0.635-0.676-1.4-0.676-2.223c0-2.209,1.791-4,4-4
- c1.512,0,2.812,0.85,3.492,2.086C14.81,10.039,15.137,10,15.473,10c0.409,0,0.81,0.035,1.205,0.088
- c-0.795-2.383-3.039-4.1-5.688-4.1c-3.313,0-6,2.686-6,6c0,1.453,0.518,2.787,1.378,3.824C6.523,15.791,6.676,15.762,6.832,15.748z"
- />
-<path fill-rule="evenodd" clip-rule="evenodd" d="M23.523,20.045h-0.718c0.021-0.223,0.034-0.449,0.034-0.678
- c0-4.068-3.298-7.367-7.367-7.367c-3.51,0-6.44,2.455-7.182,5.74c-0.212-0.02-0.428-0.031-0.646-0.031
- C3.976,17.709,1,20.684,1,24.354c0,1.348,0.402,2.6,1.092,3.646h26.312C28.782,27.254,29,26.414,29,25.521
- C29,22.496,26.548,20.045,23.523,20.045z"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" fill-rule="evenodd" height="30" width="30"/>
+<path d="M3.143,12c0-0.363,0.034-0.719,0.082-1.07H1.06C1.021,11.281,1,11.639,1,12 c0,0.363,0.021,0.719,0.06,1.072h2.165C3.177,12.721,3.143,12.365,3.143,12z" fill-rule="evenodd"/>
+<path d="M6.26,5.744L4.73,4.217C4.173,4.666,3.665,5.174,3.216,5.73L4.744,7.26 C5.179,6.689,5.688,6.18,6.26,5.744z" fill-rule="evenodd"/>
+<path d="M11,4.143c0.364,0,0.72,0.035,1.071,0.082V2.061C11.719,2.021,11.362,2,11,2 s-0.719,0.021-1.071,0.061v2.164C10.28,4.178,10.636,4.143,11,4.143z" fill-rule="evenodd"/>
+<path d="M17.256,7.26l1.528-1.529c-0.449-0.557-0.957-1.064-1.515-1.514L15.74,5.744 C16.312,6.18,16.821,6.689,17.256,7.26z" fill-rule="evenodd"/>
+<path d="M6.832,15.748c0.137-0.33,0.302-0.643,0.478-0.947 c0.11-0.201,0.229-0.395,0.354-0.584c0.001-0.002,0.002-0.004,0.003-0.006c-0.426-0.635-0.676-1.4-0.676-2.223c0-2.209,1.791-4,4-4 c1.512,0,2.812,0.85,3.492,2.086C14.81,10.039,15.137,10,15.473,10c0.409,0,0.81,0.035,1.205,0.088 c-0.795-2.383-3.039-4.1-5.688-4.1c-3.313,0-6,2.686-6,6c0,1.453,0.518,2.787,1.378,3.824C6.523,15.791,6.676,15.762,6.832,15.748z" fill-rule="evenodd"/>
+<path d="M23.523,20.045h-0.718c0.021-0.223,0.034-0.449,0.034-0.678 c0-4.068-3.298-7.367-7.367-7.367c-3.51,0-6.44,2.455-7.182,5.74c-0.212-0.02-0.428-0.031-0.646-0.031 C3.976,17.709,1,20.684,1,24.354c0,1.348,0.402,2.6,1.092,3.646h26.312C28.782,27.254,29,26.414,29,25.521 C29,22.496,26.548,20.045,23.523,20.045z" fill-rule="evenodd"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_fluorescent.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_fluorescent.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<rect height="10" width="3" y="10"/>
-
<rect height="10" width="3" x="27" y="10"/>
-
<path d="M5,10v10h20v-10h-20zm17,7h-14v-4h14v4z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_incandescent.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_incandescent.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M15,2c-5.238,0-9.5,3.701-9.5,8.25,0,2.645,1.417,5.395,3.501,7.01l1.53,4.74h8.938l1.53-4.738c2.085-1.617,3.501-4.369,3.501-7.012,0-4.549-4.26-8.25-9.5-8.25zm3.47,13.33l-1.19,3.67h-4.57l-1.184-3.668c-1.819-0.93-3.03-3.21-3.03-5.08,0-2.9,2.91-5.25,6.5-5.25s6.5,2.35,6.5,5.25c0,1.87-1.21,4.15-3.03,5.08z"/>
-
<rect height="2" width="9" x="10.5" y="23"/>
-
<rect height="2" width="9" x="10.5" y="26"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_sunny.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_sunny.svg Thu May 27 13:10:59 2010 +0300
@@ -1,31 +1,14 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<rect fill="none" width="30" height="30"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M15.133,6.023c-4.971,0-9,4.029-9,9s4.029,9,9,9s9-4.029,9-9
- S20.104,6.023,15.133,6.023z M15.133,21.023c-3.313,0-6-2.688-6-6c0-3.314,2.688-6,6-6c3.314,0,6,2.686,6,6
- C21.133,18.336,18.447,21.023,15.133,21.023z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M16.633,28.943v-4.037c-0.994,0.15-2.006,0.146-3-0.004v4.041
- C14.631,29.049,15.637,29.049,16.633,28.943z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M13.633,1.104v4.035c0.994-0.148,2.006-0.146,3,0.006V1.104
- C15.635,0.996,14.629,0.996,13.633,1.104z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M1.213,16.523h4.036c-0.149-0.994-0.146-2.006,0.005-3H1.213
- C1.106,14.521,1.106,15.527,1.213,16.523z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M29.053,13.523h-4.036c0.149,0.994,0.146,2.006-0.005,3h4.041
- C29.159,15.525,29.159,14.52,29.053,13.523z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M23.915,4.119l-2.854,2.854c0.81,0.598,1.522,1.316,2.118,2.125l2.857-2.857
- C25.406,5.459,24.694,4.748,23.915,4.119z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M6.351,25.926l2.854-2.854c-0.809-0.598-1.521-1.314-2.117-2.125l-2.857,2.857
- C4.859,24.586,5.571,25.297,6.351,25.926z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M4.229,6.24l2.854,2.855c0.598-0.811,1.315-1.523,2.125-2.119L6.351,4.119
- C5.569,4.75,4.858,5.461,4.229,6.24z"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M26.036,23.805l-2.854-2.854c-0.598,0.809-1.315,1.521-2.125,2.117l2.857,2.857
- C24.696,25.297,25.407,24.584,26.036,23.805z"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
+<path d="M15.133,6.023c-4.971,0-9,4.029-9,9s4.029,9,9,9s9-4.029,9-9 S20.104,6.023,15.133,6.023z M15.133,21.023c-3.313,0-6-2.688-6-6c0-3.314,2.688-6,6-6c3.314,0,6,2.686,6,6 C21.133,18.336,18.447,21.023,15.133,21.023z" fill-rule="evenodd"/>
+<path d="M16.633,28.943v-4.037c-0.994,0.15-2.006,0.146-3-0.004v4.041 C14.631,29.049,15.637,29.049,16.633,28.943z" fill-rule="evenodd"/>
+<path d="M13.633,1.104v4.035c0.994-0.148,2.006-0.146,3,0.006V1.104 C15.635,0.996,14.629,0.996,13.633,1.104z" fill-rule="evenodd"/>
+<path d="M1.213,16.523h4.036c-0.149-0.994-0.146-2.006,0.005-3H1.213 C1.106,14.521,1.106,15.527,1.213,16.523z" fill-rule="evenodd"/>
+<path d="M29.053,13.523h-4.036c0.149,0.994,0.146,2.006-0.005,3h4.041 C29.159,15.525,29.159,14.52,29.053,13.523z" fill-rule="evenodd"/>
+<path d="M23.915,4.119l-2.854,2.854c0.81,0.598,1.522,1.316,2.118,2.125l2.857-2.857 C25.406,5.459,24.694,4.748,23.915,4.119z" fill-rule="evenodd"/>
+<path d="M6.351,25.926l2.854-2.854c-0.809-0.598-1.521-1.314-2.117-2.125l-2.857,2.857 C4.859,24.586,5.571,25.297,6.351,25.926z" fill-rule="evenodd"/>
+<path d="M4.229,6.24l2.854,2.855c0.598-0.811,1.315-1.523,2.125-2.119L6.351,4.119 C5.569,4.75,4.858,5.461,4.229,6.24z" fill-rule="evenodd"/>
+<path d="M26.036,23.805l-2.854-2.854c-0.598,0.809-1.315,1.521-2.125,2.117l2.857,2.857 C24.696,25.297,25.407,24.584,26.036,23.805z" fill-rule="evenodd"/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.016"/>
-
<polygon points="1.508,13.46,4.905,13.46,5.106,19.98,8.233,13.46,10.95,13.46,10.95,19.98,13.87,13.46,17.47,13.46,12.03,23.65,8.845,23.65,8.777,17.31,5.924,23.65,2.663,23.65"/>
-
<path d="M22.78,12.06c0-1.082-1.186-1.956-2.646-1.956-1.462,0-2.649,0.874-2.649,1.956,0,0.579,0.343,1.096,0.883,1.456v10.14h3.53v-10.15c0.55-0.362,0.89-0.872,0.89-1.452z"/>
-
<path d="M13.29,13.09s1.869-3.837,6.86-3.837c4.989,0,6.825,3.77,6.825,3.77s-0.916-4.89-6.926-4.89c-6.01,0.002-6.76,4.96-6.76,4.96z"/>
-
<path d="M11.25,12s2.173-5.229,8.896-5.229c6.721,0,8.452,5.16,8.452,5.16s-1.56-6.519-8.554-6.519c-7,0.003-8.8,6.589-8.8,6.589z"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.016"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_attach.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_attach.svg Thu May 27 13:10:59 2010 +0300
@@ -1,33 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="29.03" width="29.03" x="0.323" y="0.016"/>
-
<polygon points="5.432,6.967,7.365,6.967,7.48,10.68,9.261,6.967,10.81,6.967,10.81,10.68,12.47,6.967,14.52,6.967,11.43,12.77,9.61,12.77,9.57,9.16,7.947,12.77,6.091,12.77"/>
-
<path d="M17.54,6.166c0-0.615-0.674-1.112-1.508-1.112-0.833,0-1.508,0.498-1.508,1.112,0,0.33,0.195,0.625,0.503,0.829v5.772h2.009v-5.774c0.32-0.204,0.51-0.5,0.51-0.83z"/>
-
<path d="M12.14,6.755s1.063-2.185,3.905-2.185c2.841,0,3.887,2.146,3.887,2.146s-0.521-2.784-3.944-2.784c-3.43,0-3.85,2.823-3.85,2.823z"/>
-
<path d="M10.98,6.136s1.237-2.978,5.064-2.978c3.826,0,4.813,2.938,4.813,2.938s-0.889-3.711-4.87-3.711c-3.97,0-5,3.751-5,3.751z"/>
-
<polygon points="9.66,22.52,9.664,22.52,8.199,20.17,5.432,20.17,9.497,26.68,11.48,25.44,10.79,24.34"/>
-
<polygon points="10.48,20.16,11.94,22.52,15.93,22.52,14.47,20.16"/>
-
<polygon points="16.74,20.16,18.21,22.52,22.22,22.52,20.76,20.16"/>
-
<polygon points="23.03,20.16,24.25,22.12,24.25,20.16"/>
-
<polygon points="19.97,15.31,21.43,17.67,24.25,17.67,20.18,11.16,18.18,12.41,19.99,15.31"/>
-
<polygon points="19.16,17.67,17.69,15.31,13.74,15.31,15.2,17.67"/>
-
<polygon points="12.92,17.67,11.46,15.31,7.463,15.31,8.928,17.67"/>
-
<polygon points="5.432,15.7,5.432,17.67,6.651,17.67"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.323" y="0.016"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_context.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_context.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="29.03" width="29.03" x="0.746" y="0.016"/>
-
<polygon points="5.854,6.967,7.789,6.967,7.903,10.68,9.685,6.967,11.23,6.967,11.23,10.68,12.89,6.967,14.94,6.967,11.85,12.77,10.03,12.77,9.995,9.161,8.371,12.77,6.515,12.77"/>
-
<path d="M17.97,6.167c0-0.616-0.674-1.113-1.508-1.113-0.832,0-1.508,0.498-1.508,1.113,0,0.329,0.194,0.625,0.503,0.828v5.772h2.009v-5.774c0.32-0.204,0.51-0.5,0.51-0.829z"/>
-
<path d="M12.56,6.755s1.063-2.185,3.905-2.185c2.841,0,3.888,2.146,3.888,2.146s-0.522-2.785-3.944-2.785c-3.42,0.001-3.85,2.824-3.85,2.824z"/>
-
<path d="M11.4,6.137s1.238-2.979,5.065-2.979c3.826,0,4.814,2.939,4.814,2.939s-0.891-3.712-4.871-3.712c-3.97,0-5,3.752-5,3.752z"/>
-
<polygon points="24.67,20.17,5.854,20.17,9.92,26.68,11.92,25.43,10.1,22.52,10.12,22.52,10.12,22.52,24.67,22.52"/>
-
<polygon points="20.6,11.16,18.6,12.4,20.42,15.31,5.854,15.31,5.854,17.67,24.67,17.67"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.746" y="0.016"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_multipdp.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_multipdp.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="29.03" width="29.03" x="0.14" y="0.016"/>
-
<polygon points="5.247,6.99,7.181,6.99,7.296,10.7,9.077,6.99,10.62,6.99,10.62,10.7,12.28,6.99,14.34,6.99,11.24,12.79,9.426,12.79,9.387,9.183,7.763,12.79,5.907,12.79"/>
-
<path d="M17.36,6.189c0-0.616-0.673-1.113-1.507-1.113-0.833,0-1.508,0.498-1.508,1.113,0,0.33,0.194,0.625,0.503,0.828v5.772h2.009v-5.772c0.32-0.205,0.51-0.498,0.51-0.829z"/>
-
<path d="M11.96,6.778s1.063-2.186,3.905-2.186c2.84,0,3.888,2.146,3.888,2.146s-0.522-2.785-3.944-2.785c-3.43,0-3.85,2.825-3.85,2.825z"/>
-
<path d="M10.8,6.159s1.237-2.978,5.065-2.978c3.826,0,4.813,2.938,4.813,2.938s-0.89-3.711-4.87-3.711c-3.98,0-5,3.751-5,3.751z"/>
-
<polygon points="20,11.23,17.99,12.47,19.81,15.38,5.247,15.38,5.247,17.74,24.06,17.73"/>
-
<polygon points="9.312,26.66,11.31,25.41,9.506,22.5,12.45,22.5,15.05,26.66,17.05,25.41,15.24,22.5,24.06,22.5,24.06,20.14,5.247,20.14"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.14" y="0.016"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_suspended.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_suspended.svg Thu May 27 13:10:59 2010 +0300
@@ -1,27 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="29.03" width="29.03" x="0.846" y="0.016"/>
-
<polygon points="5.954,6.974,7.889,6.974,8.003,10.69,9.785,6.974,11.33,6.974,11.33,10.69,12.99,6.974,15.04,6.974,11.95,12.78,10.13,12.78,10.09,9.168,8.47,12.78,6.614,12.78"/>
-
<path d="M18.07,6.174c0-0.616-0.674-1.113-1.508-1.113-0.832,0-1.508,0.498-1.508,1.113,0,0.33,0.194,0.625,0.503,0.829v5.772h2.009v-5.777c0.32-0.204,0.51-0.499,0.51-0.829z"/>
-
<path d="M12.66,6.763s1.064-2.185,3.905-2.185,3.888,2.146,3.888,2.146-0.522-2.784-3.944-2.784c-3.42-0.001-3.85,2.823-3.85,2.823z"/>
-
<path d="M11.5,6.144s1.238-2.978,5.065-2.978c3.826,0,4.814,2.938,4.814,2.938s-0.89-3.712-4.871-3.712c-3.97,0-5,3.752-5,3.752z"/>
-
<polygon points="24.77,20.12,24.77,22.48,20.51,22.48,20.51,22.48,14.73,22.48,16.69,20.12"/>
-
<polygon points="5.954,20.12,11.08,20.12,9.094,22.48,5.954,22.48"/>
-
<polygon points="24.77,15.27,24.77,17.63,18.78,17.63,20.75,15.27"/>
-
<polygon points="5.954,17.62,5.954,15.27,15.17,15.27,13.19,17.63"/>
-
<polygon points="21.58,12.64,21.65,12.7,21.6,12.75,10.89,25.52,9.926,26.67,8.122,25.15,9.495,23.51,19.84,11.18"/>
-
<rect fill="none" height="29.03" width="29.03" x="0.846" y="0.016"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wlan.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wlan.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<path d="M18.23,21.4l-2.349-9.384c1.031-0.366,1.775-1.323,1.775-2.477,0-1.469-1.188-2.656-2.655-2.656s-2.655,1.186-2.655,2.656c0,1.153,0.741,2.107,1.769,2.477l-2.345,9.384h-3.405v2.654h13.28v-2.654h-3.403z"/>
-
<path d="M6,9.54c0,2.967,1.627,5.158,1.676,5.232,0.267-0.181,0.721-0.494,0.99-0.674-0.052-0.071-1.474-2.087-1.474-4.558,0-2.675,1.422-4.486,1.474-4.561-0.269-0.186-0.721-0.499-0.985-0.68-0.052,0.074-1.681,2.359-1.681,5.239z"/>
-
<path d="M9.169,9.54c0,1.972,1.073,3.372,1.125,3.443,0.269-0.18,0.721-0.494,0.99-0.675-0.057-0.077-0.921-1.374-0.921-2.769,0-1.553,0.864-2.698,0.919-2.771-0.267-0.18-0.724-0.491-0.988-0.68-0.05,0.091-1.121,1.448-1.121,3.46z"/>
-
<path d="M24,9.535c0-2.969-1.629-5.159-1.682-5.234-0.264,0.181-0.72,0.494-0.983,0.674,0.047,0.071,1.472,2.088,1.472,4.56,0,2.673-1.425,4.484-1.472,4.558,0.264,0.185,0.72,0.498,0.983,0.679,0.04-0.07,1.68-2.35,1.68-5.235z"/>
-
<path d="M20.83,9.535c0-1.974-1.072-3.373-1.125-3.445-0.264,0.18-0.721,0.494-0.99,0.675,0.057,0.08,0.923,1.378,0.923,2.77,0,1.553-0.866,2.697-0.921,2.769,0.268,0.18,0.718,0.493,0.986,0.679,0.05-0.08,1.13-1.44,1.13-3.445z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wlan_offline.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wlan_offline.svg Thu May 27 13:10:59 2010 +0300
@@ -1,39 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" style="enable-background:new 0 0 30 30;" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<rect fill="none" height="30" width="30"/>
-
<path d="M16.14,13.04l-0.258-1.03c1.031-0.366,1.775-1.323,1.775-2.477,0-1.469-1.188-2.656-2.655-2.656-1.382,0-2.503,1.056-2.63,2.407l3.77,3.756z"/>
-
<polygon points="18.62,21.4,18.23,21.4,18.1,20.88,13.13,15.94,11.77,21.4,8.355,21.4,8.355,24.05,21.28,24.05"/>
-
<path d="M8.413,5.349c0.141-0.223,0.24-0.351,0.253-0.369-0.269-0.185-0.721-0.498-0.985-0.679-0.008,0.011-0.059,0.087-0.127,0.192l0.859,0.856z"/>
-
<path d="M6.045,8.871c-0.019,0.221-0.045,0.44-0.045,0.669,0,2.967,1.627,5.158,1.676,5.232,0.267-0.181,0.721-0.494,0.99-0.674-0.049-0.066-1.267-1.82-1.439-4.05l-1.182-1.179z"/>
-
<path d="M10.76,7.692c0.234-0.54,0.488-0.884,0.518-0.922-0.267-0.18-0.724-0.491-0.988-0.68-0.021,0.033-0.213,0.288-0.432,0.703l0.902,0.899z"/>
-
<path d="M22.32,4.301c-0.264,0.181-0.72,0.494-0.983,0.674,0.047,0.071,1.472,2.088,1.472,4.56,0,2.673-1.425,4.484-1.472,4.558,0.264,0.185,0.72,0.498,0.983,0.679,0.04-0.07,1.68-2.35,1.68-5.235,0-2.969-1.63-5.16-1.68-5.234z"/>
-
<path d="M18.71,12.3c0.268,0.18,0.718,0.493,0.986,0.679,0.053-0.078,1.127-1.438,1.127-3.448,0-1.974-1.072-3.373-1.125-3.445-0.264,0.18-0.721,0.494-0.99,0.675,0.057,0.08,0.923,1.378,0.923,2.77,0,1.558-0.86,2.698-0.92,2.768z"/>
-
<rect height="33.24" transform="matrix(0.7057 -0.7085 0.7085 0.7057 -6.2107 15.042)" width="1.4" x="14.3" y="-1.622"/>
-
<g display="none">
-
<rect fill="none" height="30" width="30"/>
-
<rect fill="none" height="30" width="30"/>
-
<polygon points="13.66,10.55,15.87,3.375,11.37,3.375,10.22,7.104"/>
-
<polygon points="19.54,16.43,21.25,10.88,18.62,10.88,16.74,10.88,13.99,10.88"/>
-
<polygon points="14.63,17.74,13.74,20.63,10.38,20.63,16.01,26.62,19.64,22.75"/>
-
<polygon points="8.754,11.86,8.361,13.13,9.613,13.13,10.02,13.13"/>
-
</g>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_work.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_work.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M19,13v-11h-17v26h27v-15h-10zm-14,12v-20h11v2h-3v3h3v2h-3v3h3v2h-3v3h3v5h-11zm21-3h-6v-2h6v2zm0-4h-6v-2h6v2z"/>
-
<rect height="3" width="4" x="7" y="7"/>
-
<rect height="3" width="4" x="7" y="12"/>
-
<rect height="3" width="4" x="7" y="17"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_world_clock.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_world_clock.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M15,1c-7.732,0-14,6.268-14,14s6.268,14,14,14c7.733,0,14-6.268,14-14s-6.27-14-14-14zm-9.16,20.42c-0.775-1.102-1.351-2.348-1.689-3.689l1.636-0.323,1.4,2.8-1.347,1.21zm16.27,2.22l-0.701-0.635,1.398-2.799,1.885,0.371c-0.68,1.18-1.55,2.22-2.59,3.07zm1.11-13.12l-1.61-0.62,0.914,1.239,0.656-0.291s0.803,0.768,0.766,1.021c-0.035,0.257-1.238,1.424-1.238,1.424l-1.057,0.376-1.391-1.144-1.06-0.88,0.656,1.567,0.877,0.914s1.533-0.219,1.752-0.037c0.221,0.182-0.291,1.572-0.291,1.572l-2.557,2.626-0.256,2.627c-1.424,0.732-1.569,1.859-1.569,1.859s-0.364-0.068-1.313,0.99-1.973,0.781-1.973,0.781c-1.204,0-1.423-0.781-1.423-1.039,0-0.254-1.205-2.225-1.205-2.885,0-0.656,0.365-1.459,0.365-1.459,0.072-0.949-0.949-3.501-0.949-3.501h-1.059l-0.365-0.806c-3.432,0.73-3.577-0.146-4.089-1.096-0.511-0.949,0.074-3.504,0.402-3.905,0.21-0.257,1.328-1.063,2.109-1.614l7.998,2.552,1.41-2.78-5.6-1.399-3.122,1.175c0.058-0.04,0.1-0.068,0.1-0.068l-0.329-0.475c-0.22-0.473,1.205-1.131,1.205-1.131,0.548,0.366,0.912,0,0.912,0l0.146-0.365-0.15-0.547,0.677-0.842c1.08-0.352,2.24-0.548,3.44-0.548,1.259,0,2.465,0.219,3.595,0.604l-0.8,0.796,1.399,1.4,1.326-1.326c2.934,1.677,5.043,4.64,5.546,8.119-0.585-1.176-1.067-2.545-1.067-2.545l-1.79-0.32z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_zoom.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_zoom.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,9 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
-]>
-<svg version="1.1"
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
- x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
-<defs>
-</defs>
-<rect fill="none" width="30" height="30"/>
-<path d="M25.809,4.191c-4.1-4.102-10.748-4.102-14.849,0C7.221,7.93,6.902,13.782,9.983,17.895l-1.499,1.499l-0.707-0.707
- l-4.949,4.95l3.535,3.535l4.95-4.95l-0.707-0.707l1.499-1.498c4.112,3.081,9.965,2.763,13.703-0.977
- C29.91,14.939,29.91,8.291,25.809,4.191z M23.688,16.918c-2.924,2.925-7.683,2.924-10.605,0c-2.924-2.923-2.926-7.682,0-10.605
- c2.924-2.925,7.682-2.924,10.605,0S26.612,13.994,23.688,16.918z"/>
-<rect x="-0.025" y="26.525" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 -15.239 48.7386)" width="4.999" height="2"/>
-<rect x="15" y="14" width="7" height="3"/>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
+<rect fill="none" height="30" width="30"/>
+<path d="M25.809,4.191c-4.1-4.102-10.748-4.102-14.849,0C7.221,7.93,6.902,13.782,9.983,17.895l-1.499,1.499l-0.707-0.707 l-4.949,4.95l3.535,3.535l4.95-4.95l-0.707-0.707l1.499-1.498c4.112,3.081,9.965,2.763,13.703-0.977 C29.91,14.939,29.91,8.291,25.809,4.191z M23.688,16.918c-2.924,2.925-7.683,2.924-10.605,0c-2.924-2.923-2.926-7.682,0-10.605 c2.924-2.925,7.682-2.924,10.605,0S26.612,13.994,23.688,16.918z"/>
+<rect height="2" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 -15.239 48.7386)" width="4.999" x="-0.025" y="26.525"/>
+<rect height="3" width="7" x="15" y="14"/>
<polygon points="20,6 17,6 17,8 15,8 15,11 17,11 17,13 20,13 20,11 22,11 22,8 20,8 "/>
</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_zoom_in.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_zoom_in.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M25.92,4.191c-4.1-4.102-10.75-4.102-14.85,0-3.739,3.738-4.057,9.591-0.977,13.7l-1.49,1.5-0.707-0.707-4.949,4.95,3.535,3.535,4.95-4.95-0.707-0.707,1.499-1.498c4.112,3.081,9.965,2.763,13.7-0.977,4.1-4.08,4.1-10.73,0-14.83zm-2.12,12.73c-2.924,2.925-7.683,2.924-10.6,0-2.924-2.923-2.926-7.682,0-10.6,2.924-2.925,7.682-2.924,10.6,0s2.93,7.67,0,10.6z"/>
-
<rect height="2" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 -15.0422 48.8201)" width="4.999" x="0.09" y="26.52"/>
-
<polygon points="20,7,17,7,17,10,14,10,14,13,17,13,17,16,20,16,20,13,23,13,23,10,20,10"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_zoom_out.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_zoom_out.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
-
<rect fill="none" height="30" width="30"/>
-
</g>
-
<path d="M25.92,4.191c-4.1-4.102-10.75-4.102-14.85,0-3.739,3.738-4.057,9.591-0.977,13.7l-1.49,1.5-0.707-0.707-4.949,4.95,3.535,3.535,4.95-4.95-0.707-0.707,1.499-1.498c4.112,3.081,9.965,2.763,13.7-0.977,4.1-4.08,4.1-10.73,0-14.83zm-2.12,12.73c-2.924,2.925-7.683,2.924-10.6,0-2.924-2.923-2.926-7.682,0-10.6,2.924-2.925,7.682-2.924,10.6,0s2.93,7.67,0,10.6z"/>
-
<rect height="2" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 -15.0422 48.8201)" width="4.999" x="0.09" y="26.52"/>
-
<rect height="3" width="9" x="14" y="10"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_add.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_add.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<polygon fill-opacity="0.6" points="11,29 11,19 1,19 1,11 11,11 11,1 19,1 19,11 29,11 29,19 19,19 19,29 "/>
+<polygon fill="url(#SVGID_1_)" points="28,12 18,12 18,2 12,2 12,12 2,12 2,18 12,18 12,28 18,28 18,18 28,18 "/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="12" y="2"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="10" x="2" y="12"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="10" x="18" y="12"/>
+<rect fill="none" height="30" width="30"/>
+<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="28,12 18,12 18,2 12,2 12,12 2,12 2,18 12,18 12,28 18,28 18,18 28,18 "/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="6" x="12" y="2"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="10" x="2" y="12"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="10" x="18" y="12"/>
-<rect fill="none" height="30" width="30"/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_allday.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,48 +0,0 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<g>
-<defs>
-</defs>
-<rect fill="none" height="30" width="30"/>
-<path d="M22,4c0-1.104-0.896-2-2-2c-1.103,0-2,0.896-2,2h-6c0-1.104-0.896-2-2-2C8.897,2,8,2.896,8,4H3v24h24V4H22z" opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="10.3691" y2="27.0025">
- <stop offset="0" style="stop-color:#F9F9F9"/>
- <stop offset="1" style="stop-color:#B5B5B5"/>
-</linearGradient>
-<rect fill="url(#SVGID_1_)" height="22" width="22" x="4" y="5"/>
-<polygon fill="#FFFFFF" points="21,22 21,27 26,22 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="5" y2="11">
- <stop offset="0" style="stop-color:#FF7042"/>
- <stop offset="1" style="stop-color:#991B23"/>
-</linearGradient>
-<rect fill="url(#SVGID_2_)" height="6" width="22" x="4" y="5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="10" x2="10" y1="6" y2="10">
- <stop offset="0" style="stop-color:#4A050A"/>
- <stop offset="1" style="stop-color:#B00F25"/>
-</linearGradient>
-<circle cx="10" cy="8" fill="url(#SVGID_3_)" r="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="20" x2="20" y1="6" y2="10">
- <stop offset="0" style="stop-color:#4A050A"/>
- <stop offset="1" style="stop-color:#B00F25"/>
-</linearGradient>
-<circle cx="20" cy="8" fill="url(#SVGID_4_)" r="2"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="22" x="4" y="5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="10" x2="10" y1="3" y2="9">
- <stop offset="0" style="stop-color:#FFFCFE"/>
- <stop offset="1" style="stop-color:#8C8C8C"/>
-</linearGradient>
-<path d="M11,8c0,0.55-0.45,1-1,1l0,0C9.45,9,9,8.55,9,8V4c0-0.55,0.45-1,1-1l0,0c0.55,0,1,0.45,1,1V8z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20" x2="20" y1="3" y2="9">
- <stop offset="0" style="stop-color:#FFFCFE"/>
- <stop offset="1" style="stop-color:#8C8C8C"/>
-</linearGradient>
-<path d="M21,8c0,0.55-0.45,1-1,1l0,0c-0.55,0-1-0.45-1-1V4c0-0.55,0.45-1,1-1l0,0c0.55,0,1,0.45,1,1V8z" fill="url(#SVGID_6_)"/>
-<rect height="1" opacity="0.2" width="22" x="4" y="11"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.0005" x2="15.0005" y1="23.834" y2="13.7479">
- <stop offset="0" style="stop-color:#303030"/>
- <stop offset="1" style="stop-color:#000000"/>
-</linearGradient>
-<path d="M18.019,22.906V24h-6.036v-1.094h2.146v-7.629l-2.146,0.492v-1.094l3.015-0.95h0.991v9.181H18.019z" fill="url(#SVGID_7_)"/>
-</g>
-</svg>
\ No newline at end of file
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_anniversary.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_anniversary.svg Thu May 27 13:10:59 2010 +0300
@@ -1,55 +1,58 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
<rect fill="none" height="30" width="30"/>
-<rect enable-background="new " height="7" opacity="0.6" width="6" x="4.5" y="10"/>
-<rect enable-background="new " height="7" opacity="0.6" width="6" x="12" y="10"/>
-<rect enable-background="new " height="7" opacity="0.6" width="6" x="19.5" y="10"/>
-<path d="M11,6.375c0-3.11-2.807-5.11-2.927-5.194C7.901,1.061,7.701,1,7.5,1 S7.099,1.061,6.927,1.181C6.807,1.265,4,3.265,4,6.375C4,8.543,5.406,10,7.5,10S11,8.543,11,6.375z" enable-background="new " opacity="0.6"/>
-<path d="M18.5,6.375c0-3.11-2.807-5.11-2.927-5.194C15.401,1.061,15.201,1,15,1 s-0.401,0.061-0.573,0.181C14.307,1.265,11.5,3.265,11.5,6.375C11.5,8.543,12.906,10,15,10C17.094,10,18.5,8.543,18.5,6.375z" enable-background="new " opacity="0.6"/>
-<path d="M26,6.375c0-3.11-2.807-5.11-2.927-5.194C22.9,1.061,22.701,1,22.5,1 s-0.4,0.061-0.573,0.181C21.807,1.265,19,3.265,19,6.375C19,8.543,20.406,10,22.5,10S26,8.543,26,6.375z" enable-background="new " opacity="0.6"/>
+<rect fill-opacity="0.6" height="7" stroke-opacity="0.6" width="6" x="4.5" y="10"/>
+<rect fill-opacity="0.6" height="7" stroke-opacity="0.6" width="6" x="12" y="10"/>
+<rect fill-opacity="0.6" height="7" stroke-opacity="0.6" width="6" x="19.5" y="10"/>
+<path d="M11,6.375c0-3.11-2.807-5.11-2.927-5.194C7.901,1.061,7.701,1,7.5,1 S7.099,1.061,6.927,1.181C6.807,1.265,4,3.265,4,6.375C4,8.543,5.406,10,7.5,10S11,8.543,11,6.375z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M18.5,6.375c0-3.11-2.807-5.11-2.927-5.194C15.401,1.061,15.201,1,15,1 s-0.401,0.061-0.573,0.181C14.307,1.265,11.5,3.265,11.5,6.375C11.5,8.543,12.906,10,15,10C17.094,10,18.5,8.543,18.5,6.375z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M26,6.375c0-3.11-2.807-5.11-2.927-5.194C22.9,1.061,22.701,1,22.5,1 s-0.4,0.061-0.573,0.181C21.807,1.265,19,3.265,19,6.375C19,8.543,20.406,10,22.5,10S26,8.543,26,6.375z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -66 -46)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="71.5" x2="75.5" y1="-59.5" y2="-59.5">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="0.7818" style="stop-color:#CCCCCC"/>
- <stop offset="1" style="stop-color:#D1D1D1"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="5" width="4" x="5.5" y="11"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -66 -46)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="79" x2="83" y1="-59.5" y2="-59.5">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="0.7818" style="stop-color:#CCCCCC"/>
- <stop offset="1" style="stop-color:#D1D1D1"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="5" width="4" x="13" y="11"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -66 -46)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="86.5" x2="90.5" y1="-59.5" y2="-59.5">
- <stop offset="0" style="stop-color:#F5F5F5"/>
- <stop offset="0.7818" style="stop-color:#CCCCCC"/>
- <stop offset="1" style="stop-color:#D1D1D1"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="5" width="4" x="20.5" y="11"/>
-<rect enable-background="new " height="14" opacity="0.6" width="26" x="2" y="15"/>
+<rect fill-opacity="0.6" height="14" stroke-opacity="0.6" width="26" x="2" y="15"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -66 -46)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="69" x2="93" y1="-68" y2="-68">
- <stop offset="0" style="stop-color:#FFC222"/>
- <stop offset="0.2303" style="stop-color:#FFE896"/>
- <stop offset="1" style="stop-color:#FFB701"/>
+<stop offset="0" style="stop-color:#FFC222"/>
+<stop offset="0.2303" style="stop-color:#FFE896"/>
+<stop offset="1" style="stop-color:#FFB701"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="12" width="24" x="3" y="16"/>
-<rect enable-background="new " fill="#FFFFFF" height="1" opacity="0.4" width="24" x="3" y="16"/>
-<rect enable-background="new " height="2" opacity="0.5" width="24" x="3" y="21"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="24" x="3" y="16"/>
+<rect fill-opacity="0.5" height="2" stroke-opacity="0.5" width="24" x="3" y="21"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -72 -681)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="79.5" x2="79.5" y1="685.8193" y2="692.2366">
- <stop offset="0" style="stop-color:#FFE692"/>
- <stop offset="0.5879" style="stop-color:#ED8C0D"/>
+<stop offset="0" style="stop-color:#FFE692"/>
+<stop offset="0.5879" style="stop-color:#ED8C0D"/>
+<stop offset="1" style="stop-color:#ED8C0D"/>
</linearGradient>
<path d="M5,6.375C5,7.824,5.834,9,7.5,9S10,7.824,10,6.375C10,3.75,7.5,2,7.5,2S5,3.75,5,6.375z" fill="url(#SVGID_5_)"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -72 -681)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="87" x2="87" y1="685.8193" y2="692.2366">
- <stop offset="0" style="stop-color:#FFE692"/>
- <stop offset="0.5879" style="stop-color:#ED8C0D"/>
+<stop offset="0" style="stop-color:#FFE692"/>
+<stop offset="0.5879" style="stop-color:#ED8C0D"/>
+<stop offset="1" style="stop-color:#ED8C0D"/>
</linearGradient>
<path d="M12.5,6.375C12.5,7.824,13.334,9,15,9s2.5-1.176,2.5-2.625C17.5,3.75,15,2,15,2S12.5,3.75,12.5,6.375 z" fill="url(#SVGID_6_)"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -72 -681)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="94.5" x2="94.5" y1="685.8193" y2="692.2366">
- <stop offset="0" style="stop-color:#FFE692"/>
- <stop offset="0.5879" style="stop-color:#ED8C0D"/>
+<stop offset="0" style="stop-color:#FFE692"/>
+<stop offset="0.5879" style="stop-color:#ED8C0D"/>
+<stop offset="1" style="stop-color:#ED8C0D"/>
</linearGradient>
<path d="M20,6.375C20,7.824,20.834,9,22.5,9S25,7.824,25,6.375C25,3.75,22.5,2,22.5,2S20,3.75,20,6.375z" fill="url(#SVGID_7_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_assistant.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_assistant.svg Thu May 27 13:10:59 2010 +0300
@@ -1,73 +1,71 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15.591,29c-0.845,0-1.65-0.228-2.338-0.659c-0.373-0.132-0.747-0.308-1.116-0.522H9.091 c-2.506,0-4.545-2.039-4.545-4.545v-0.378c-0.774-0.247-1.49-0.751-2.076-1.476l-0.092-0.13c-0.146-0.187-0.309-0.417-0.453-0.671 c-0.041-0.07-0.077-0.148-0.112-0.227l-0.063-0.129c-0.091-0.18-0.181-0.359-0.256-0.555c-0.049-0.127-0.089-0.266-0.128-0.404 L1.29,19.057c-0.037-0.113-0.073-0.227-0.101-0.347c-0.081-0.358-0.136-0.723-0.165-1.085c-0.028-0.353-0.031-0.715-0.008-1.074 c0.007-0.119,0.024-0.234,0.042-0.35l0.029-0.221c0.018-0.15,0.036-0.3,0.067-0.443c0.038-0.178,0.089-0.346,0.143-0.515l0.05-0.167 c0.024-0.086,0.049-0.17,0.079-0.251c0.091-0.243,0.202-0.466,0.319-0.687c0.026-0.057,0.051-0.107,0.079-0.154 c0.136-0.238,0.298-0.471,0.492-0.703c0.34-0.403,0.707-0.719,1.103-0.949C3.928,5.832,8.905,1,15,1s11.072,4.832,11.581,11.111 c0.394,0.229,0.757,0.537,1.083,0.925c0.213,0.257,0.375,0.489,0.516,0.733l0.072,0.143c0.119,0.227,0.23,0.449,0.322,0.693 c0.029,0.08,0.055,0.164,0.078,0.25l0.051,0.167c0.053,0.169,0.104,0.337,0.143,0.517c0.03,0.142,0.049,0.291,0.066,0.441 l0.029,0.221c0.019,0.115,0.035,0.23,0.043,0.352c0.021,0.357,0.02,0.72-0.009,1.074c-0.028,0.36-0.084,0.725-0.164,1.08 c-0.028,0.124-0.065,0.242-0.104,0.359l-0.068,0.229c-0.04,0.143-0.081,0.283-0.133,0.416c-0.074,0.196-0.165,0.377-0.257,0.557 l-0.062,0.127c-0.035,0.077-0.07,0.154-0.111,0.227c-0.145,0.252-0.307,0.482-0.477,0.701l-0.073,0.103 c-0.839,1.038-1.933,1.623-3.083,1.65c0,0-0.172,0.011-0.217,0.011c-0.734-0.039-1.35-0.281-1.834-0.713 c-0.498,1.055-1.043,2.051-1.623,2.969l-0.047,0.106l-0.08,0.118c-0.185,0.246-0.39,0.49-0.605,0.729 c-0.201,0.218-0.339,0.359-0.484,0.496l-0.104,0.094c-0.133,0.119-0.241,0.213-0.348,0.301C18.429,28.295,17.078,29,15.591,29 L15.591,29z" opacity="0.6"/>
+<path d="M15.591,29c-0.845,0-1.65-0.228-2.338-0.659c-0.373-0.132-0.747-0.308-1.116-0.522H9.091 c-2.506,0-4.545-2.039-4.545-4.545v-0.378c-0.774-0.247-1.49-0.751-2.076-1.476l-0.092-0.13c-0.146-0.187-0.309-0.417-0.453-0.671 c-0.041-0.07-0.077-0.148-0.112-0.227l-0.063-0.129c-0.091-0.18-0.181-0.359-0.256-0.555c-0.049-0.127-0.089-0.266-0.128-0.404 L1.29,19.057c-0.037-0.113-0.073-0.227-0.101-0.347c-0.081-0.358-0.136-0.723-0.165-1.085c-0.028-0.353-0.031-0.715-0.008-1.074 c0.007-0.119,0.024-0.234,0.042-0.35l0.029-0.221c0.018-0.15,0.036-0.3,0.067-0.443c0.038-0.178,0.089-0.346,0.143-0.515l0.05-0.167 c0.024-0.086,0.049-0.17,0.079-0.251c0.091-0.243,0.202-0.466,0.319-0.687c0.026-0.057,0.051-0.107,0.079-0.154 c0.136-0.238,0.298-0.471,0.492-0.703c0.34-0.403,0.707-0.719,1.103-0.949C3.928,5.832,8.905,1,15,1s11.072,4.832,11.581,11.111 c0.394,0.229,0.757,0.537,1.083,0.925c0.213,0.257,0.375,0.489,0.516,0.733l0.072,0.143c0.119,0.227,0.23,0.449,0.322,0.693 c0.029,0.08,0.055,0.164,0.078,0.25l0.051,0.167c0.053,0.169,0.104,0.337,0.143,0.517c0.03,0.142,0.049,0.291,0.066,0.441 l0.029,0.221c0.019,0.115,0.035,0.23,0.043,0.352c0.021,0.357,0.02,0.72-0.009,1.074c-0.028,0.36-0.084,0.725-0.164,1.08 c-0.028,0.124-0.065,0.242-0.104,0.359l-0.068,0.229c-0.04,0.143-0.081,0.283-0.133,0.416c-0.074,0.196-0.165,0.377-0.257,0.557 l-0.062,0.127c-0.035,0.077-0.07,0.154-0.111,0.227c-0.145,0.252-0.307,0.482-0.477,0.701l-0.073,0.103 c-0.839,1.038-1.933,1.623-3.083,1.65c0,0-0.172,0.011-0.217,0.011c-0.734-0.039-1.35-0.281-1.834-0.713 c-0.498,1.055-1.043,2.051-1.623,2.969l-0.047,0.106l-0.08,0.118c-0.185,0.246-0.39,0.49-0.605,0.729 c-0.201,0.218-0.339,0.359-0.484,0.496l-0.104,0.094c-0.133,0.119-0.241,0.213-0.348,0.301C18.429,28.295,17.078,29,15.591,29 L15.591,29z" fill-opacity="0.6" stroke-opacity="0.6"/>
<radialGradient cx="-109.0669" cy="28.1328" gradientTransform="matrix(0.9352 0 0 0.9448 112.9225 -13.3229)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="18.8576">
- <stop offset="0" style="stop-color:#FFE2D9"/>
- <stop offset="0.5091" style="stop-color:#FFC6B3"/>
- <stop offset="0.7636" style="stop-color:#FFA98E"/>
- <stop offset="1" style="stop-color:#E88160"/>
+<stop offset="0" style="stop-color:#FFE2D9"/>
+<stop offset="0.5091" style="stop-color:#FFC6B3"/>
+<stop offset="0.7636" style="stop-color:#FFA98E"/>
+<stop offset="1" style="stop-color:#E88160"/>
</radialGradient>
<path d="M23.583,16.562c-0.045-0.021-0.093-0.025-0.139-0.039V16.52c-0.009-0.001-0.016-0.003-0.026-0.004 c-0.067-0.018-0.135-0.033-0.207-0.038c-8.628-1.522-12.587-6.368-12.886-5.084c-0.237,1.021-2.656,3.228-3.923,4.33 c0.01,0.048,0.017,0.094,0.026,0.142c0,0,0.046,0.228,0.142,0.612c-0.101,0.011-0.2,0.03-0.295,0.073 c-0.806,0.344-1.059,1.686-0.564,2.992c0.495,1.31,1.548,2.092,2.353,1.749c0.051-0.021,0.094-0.059,0.138-0.087 c0.47,1.066,1.044,2.212,1.749,3.359c1.18,1.422,2.988,3.091,4.984,3.091c2.415,0,3.894-1.341,4.909-2.69 c0.025-0.057,0.053-0.111,0.08-0.157c0.754-1.192,1.363-2.389,1.859-3.504c0.788,0.278,1.801-0.464,2.303-1.724 C24.607,18.277,24.381,16.926,23.583,16.562z" fill="url(#SVGID_1_)"/>
-<path d="M19.673,25.178c-0.265-1.736-1.984-3.087-4.082-3.087c-1.524,0-2.844,0.718-3.561,1.772H9.556 c0.133,0.234,0.25,0.466,0.394,0.701c1.18,1.422,2.988,3.091,4.984,3.091C17.221,27.655,18.663,26.452,19.673,25.178z" opacity="0.2"/>
+<path d="M19.673,25.178c-0.265-1.736-1.984-3.087-4.082-3.087c-1.524,0-2.844,0.718-3.561,1.772H9.556 c0.133,0.234,0.25,0.466,0.394,0.701c1.18,1.422,2.988,3.091,4.984,3.091C17.221,27.655,18.663,26.452,19.673,25.178z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.8647" x2="14.8647" y1="4.5264" y2="15.6558">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M14.691,4.363c-2.99,0-4.43,1.381-5.541,2.821C7.344,7.467,4.48,9.146,6.503,16.5 c1.267-1.102,3.585-4.086,3.822-5.106c0.302-1.296,4.328,3.652,13.12,5.126c0.103-0.41,0.15-0.654,0.15-0.654 C24.976,9.587,21.972,4.609,14.691,4.363z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15.0005" x2="15.0005" y1="13.9004" y2="2.2864">
- <stop offset="0" style="stop-color:#838487"/>
- <stop offset="0.4727" style="stop-color:#BDBEC3"/>
- <stop offset="1" style="stop-color:#E4E6EB"/>
+<stop offset="0" style="stop-color:#838487"/>
+<stop offset="0.4727" style="stop-color:#BDBEC3"/>
+<stop offset="1" style="stop-color:#E4E6EB"/>
</linearGradient>
<path d="M6.389,13.818c-0.015-0.219-0.031-0.434-0.031-0.656c0-5.068,3.876-9.191,8.642-9.191 s8.643,4.123,8.643,9.191c0,0.223-0.018,0.438-0.031,0.656h1.993c0.013-0.219,0.032-0.434,0.032-0.656C25.637,6.996,20.875,2,15,2 S4.364,6.996,4.364,13.162c0,0.223,0.02,0.438,0.032,0.656H6.389z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9.6821" x2="9.6821" y1="26.708" y2="20.8698">
- <stop offset="0" style="stop-color:#969696"/>
- <stop offset="1" style="stop-color:#464646"/>
+<stop offset="0" style="stop-color:#969696"/>
+<stop offset="1" style="stop-color:#464646"/>
</linearGradient>
<path d="M13.818,25.045H9.091c-0.978,0-1.772-0.795-1.772-1.771v-2.364H5.545v2.364 c0,1.949,1.596,3.545,3.545,3.545h4.728V25.045z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="9.6821" x2="9.6821" y1="21.2051" y2="25.5689">
- <stop offset="0" style="stop-color:#838487"/>
- <stop offset="0.4727" style="stop-color:#BDBEC3"/>
- <stop offset="1" style="stop-color:#E4E6EB"/>
+<stop offset="0" style="stop-color:#838487"/>
+<stop offset="0.4727" style="stop-color:#BDBEC3"/>
+<stop offset="1" style="stop-color:#E4E6EB"/>
</linearGradient>
<path d="M7.318,23.273v-1.183v-1.182H5.545v1.182c0,1.95,1.596,3.546,3.545,3.546h4.728v-0.592H9.091 C8.113,25.045,7.318,24.25,7.318,23.273z" fill="url(#SVGID_5_)"/>
-<path d="M25.604,13.816C25.278,7.959,20.663,3.313,15,3.313S4.722,7.959,4.396,13.816c0,0,0,0,0,0.002h1.994 c-0.015-0.219-0.031-0.434-0.031-0.656c0-5.068,3.876-9.191,8.642-9.191s8.643,4.123,8.643,9.191c0,0.223-0.018,0.438-0.031,0.656 h1.993C25.604,13.816,25.604,13.816,25.604,13.816z" opacity="0.2"/>
+<path d="M25.604,13.816C25.278,7.959,20.663,3.313,15,3.313S4.722,7.959,4.396,13.816c0,0,0,0,0,0.002h1.994 c-0.015-0.219-0.031-0.434-0.031-0.656c0-5.068,3.876-9.191,8.642-9.191s8.643,4.123,8.643,9.191c0,0.223-0.018,0.438-0.031,0.656 h1.993C25.604,13.816,25.604,13.816,25.604,13.816z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.5903" x2="15.5903" y1="23.2168" y2="27.3616">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="0.7636" style="stop-color:#0487BF"/>
- <stop offset="1" style="stop-color:#059FE0"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="0.7636" style="stop-color:#0487BF"/>
+<stop offset="1" style="stop-color:#059FE0"/>
</linearGradient>
<ellipse cx="15.591" cy="25.635" fill="url(#SVGID_6_)" rx="2.954" ry="2.365"/>
-<path d="M15.591,24.455c1.376,0,2.521,0.754,2.851,1.771c0.062-0.189,0.104-0.386,0.104-0.592 c0-1.305-1.321-2.361-2.954-2.361c-1.632,0-2.955,1.057-2.955,2.361c0,0.206,0.043,0.402,0.104,0.592 C13.07,25.209,14.215,24.455,15.591,24.455z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M15.591,24.455c1.376,0,2.521,0.754,2.851,1.771c0.062-0.189,0.104-0.386,0.104-0.592 c0-1.305-1.321-2.361-2.954-2.361c-1.632,0-2.955,1.057-2.955,2.361c0,0.206,0.043,0.402,0.104,0.592 C13.07,25.209,14.215,24.455,15.591,24.455z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="4.9546" x2="4.9546" y1="12.833" y2="22.1473">
- <stop offset="0" style="stop-color:#7A7A7A"/>
- <stop offset="1" style="stop-color:#212121"/>
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#212121"/>
</linearGradient>
<path d="M2.021,17.547c0.207,2.609,1.889,4.644,3.758,4.539c1.867-0.102,2.29-2.248,2.082-4.857 c-0.207-2.608-0.968-4.69-2.837-4.589C3.156,12.742,1.813,14.939,2.021,17.547z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="4.2163" x2="4.2163" y1="12.8813" y2="22.1374">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="0.7636" style="stop-color:#0487BF"/>
- <stop offset="1" style="stop-color:#059FE0"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="0.7636" style="stop-color:#0487BF"/>
+<stop offset="1" style="stop-color:#059FE0"/>
</linearGradient>
<path d="M6.432,18.152c0-2.214-0.646-4.167-1.641-5.467c-1.742,0.27-2.969,2.365-2.77,4.861 c0.204,2.566,1.834,4.564,3.666,4.533C6.156,20.954,6.432,19.605,6.432,18.152z" fill="url(#SVGID_8_)"/>
-<path d="M2.064,17.828c0.238-1.885,1.303-3.335,2.727-3.555c0.897,1.174,1.484,2.893,1.595,4.842 c0.026-0.316,0.045-0.636,0.045-0.963c0-2.214-0.646-4.167-1.641-5.467c-1.742,0.27-2.969,2.365-2.77,4.861 C2.029,17.645,2.052,17.732,2.064,17.828z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M2.064,17.828c0.238-1.885,1.303-3.335,2.727-3.555c0.897,1.174,1.484,2.893,1.595,4.842 c0.026-0.316,0.045-0.636,0.045-0.963c0-2.214-0.646-4.167-1.641-5.467c-1.742,0.27-2.969,2.365-2.77,4.861 C2.029,17.645,2.052,17.732,2.064,17.828z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -911 0)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-936.0454" x2="-936.0454" y1="12.833" y2="22.1473">
- <stop offset="0" style="stop-color:#7A7A7A"/>
- <stop offset="1" style="stop-color:#212121"/>
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#212121"/>
</linearGradient>
<path d="M27.979,17.547c-0.207,2.609-1.889,4.644-3.758,4.539c-1.867-0.102-2.289-2.248-2.082-4.857 c0.207-2.608,0.969-4.69,2.837-4.589C26.844,12.742,28.188,14.939,27.979,17.547z" fill="url(#SVGID_9_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -911 0)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-936.7837" x2="-936.7837" y1="12.8813" y2="22.1374">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="0.7636" style="stop-color:#0487BF"/>
- <stop offset="1" style="stop-color:#059FE0"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="0.7636" style="stop-color:#0487BF"/>
+<stop offset="1" style="stop-color:#059FE0"/>
</linearGradient>
<path d="M23.568,18.152c0-2.214,0.646-4.167,1.641-5.467c1.742,0.27,2.969,2.365,2.77,4.861 c-0.203,2.566-1.834,4.564-3.666,4.533C23.844,20.954,23.568,19.605,23.568,18.152z" fill="url(#SVGID_10_)"/>
-<path d="M27.936,17.828c-0.237-1.885-1.303-3.335-2.727-3.555c-0.896,1.174-1.484,2.893-1.596,4.842 c-0.025-0.316-0.045-0.636-0.045-0.963c0-2.214,0.646-4.167,1.641-5.467c1.742,0.27,2.969,2.365,2.77,4.861 C27.971,17.645,27.948,17.732,27.936,17.828z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M27.936,17.828c-0.237-1.885-1.303-3.335-2.727-3.555c-0.896,1.174-1.484,2.893-1.596,4.842 c-0.025-0.316-0.045-0.636-0.045-0.963c0-2.214,0.646-4.167,1.641-5.467c1.742,0.27,2.969,2.365,2.77,4.861 C27.971,17.645,27.948,17.732,27.936,17.828z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_attachment.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_attachment.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M10.465,29L6,22.303V9h4v12.092L12.605,25h5.789L21,21.092V5h-6v13.5c0,0.275,0.224,0.5,0.5,0.5 s0.5-0.225,0.5-0.5V6h4v12.5c0,2.481-2.019,4.5-4.5,4.5S11,20.981,11,18.5V4c0-1.654,1.346-3,3-3h8c1.654,0,3,1.346,3,3v18.303 L20.535,29H10.465z" fill-opacity="0.6"/>
+<path d="M22,2h-8c-1.101,0-2,0.9-2,2v14.5c0,1.934,1.567,3.5,3.5,3.5s3.5-1.566,3.5-3.5V7h-2v11.5 c0,0.827-0.673,1.5-1.5,1.5S14,19.327,14,18.5V4h8v17.395L18.93,26H12.07L9,21.395V10H7v12l4,6h9l4-6V4C24,2.9,23.101,2,22,2z" fill="url(#SVGID_1_)"/>
+<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.5005" x2="15.5005" y1="28" y2="2.0005">
- <stop offset="0" style="stop-color:#8C8E8F"/>
- <stop offset="0.6545" style="stop-color:#D9D9D9"/>
- <stop offset="1" style="stop-color:#AEB2B3"/>
+<stop offset="0" style="stop-color:#8C8E8F"/>
+<stop offset="0.6545" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#AEB2B3"/>
</linearGradient>
-<path d="M22,2h-8c-1.101,0-2,0.9-2,2v14.5c0,1.934,1.567,3.5,3.5,3.5s3.5-1.566,3.5-3.5V7h-2v11.5 c0,0.827-0.673,1.5-1.5,1.5S14,19.327,14,18.5V4h8v17.395L18.93,26H12.07L9,21.395V10H7v12l4,6h9l4-6V4C24,2.9,23.101,2,22,2z" fill="url(#SVGID_1_)"/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_authorised.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_authorised.svg Thu May 27 13:10:59 2010 +0300
@@ -1,45 +1,45 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
<polygon fill="none" points="0,0 0,30 4.358,30 25.643,30 30,30 30,0 "/>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M4.358,30c-0.942,0-1.709-0.768-1.709-1.71V13.747 c0-0.943,0.767-1.711,1.709-1.711h0.663V9.979C5.099,4.471,9.63,0,15.122,0c5.491,0,10.022,4.471,10.101,9.966v2.07h0.42 c0.941,0,1.709,0.768,1.709,1.711V28.29c0,0.942-0.768,1.71-1.709,1.71H4.358z M20.145,12.036V9.979 c-0.058-2.692-2.312-4.9-5.021-4.9s-4.965,2.208-5.021,4.922v2.035H20.145z" enable-background="new " opacity="0.35"/>
+<path d="M4.358,30c-0.942,0-1.709-0.768-1.709-1.71V13.747 c0-0.943,0.767-1.711,1.709-1.711h0.663V9.979C5.099,4.471,9.63,0,15.122,0c5.491,0,10.022,4.471,10.101,9.966v2.07h0.42 c0.941,0,1.709,0.768,1.709,1.711V28.29c0,0.942-0.768,1.71-1.709,1.71H4.358z M20.145,12.036V9.979 c-0.058-2.692-2.312-4.9-5.021-4.9s-4.965,2.208-5.021,4.922v2.035H20.145z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="273.6377" x2="291.5699" y1="-368.7476" y2="-368.7476">
- <stop offset="0" style="stop-color:#8C8C8C"/>
- <stop offset="0.5333" style="stop-color:#B3B3B3"/>
- <stop offset="1" style="stop-color:#808080"/>
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="0.5333" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
<path d="M15.122,1c-4.984,0-9.03,4.009-9.101,8.979v3.338H9.1V9.979c0.069-3.266,2.74-5.9,6.021-5.9 s5.951,2.635,6.021,5.9v4.477h3.078V9.979C24.152,5.009,20.107,1,15.122,1z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="274.1973" x2="291.0081" y1="-369.0322" y2="-369.0322">
- <stop offset="0" style="stop-color:#CCCCCC"/>
- <stop offset="0.5152" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CCCCCC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.5152" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
<path d="M21.714,13.888V9.979c-0.077-3.574-3.032-6.469-6.592-6.469c-3.559,0-6.514,2.895-6.592,6.458v4.488 H6.591V9.979c0.065-4.636,3.893-8.41,8.531-8.41c4.64,0,8.465,3.774,8.53,8.418v3.9L21.714,13.888L21.714,13.888z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="274.5469" x2="290.6592" y1="-369.0322" y2="-369.0322">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.5" style="stop-color:#B3B3B3"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path d="M6.945,14.102V9.979c0.063-4.44,3.731-8.055,8.177-8.055S23.234,5.542,23.3,9.99v3.541h-1.231V9.979 c-0.08-3.767-3.196-6.824-6.945-6.824c-3.75,0-6.865,3.053-6.946,6.805v4.142H6.945z" fill="url(#SVGID_3_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="271.1289" x2="293.832" y1="-382.0376" y2="-382.0376">
- <stop offset="0" style="stop-color:#ED8C0D"/>
- <stop offset="0.24" style="stop-color:#FFE692"/>
- <stop offset="0.75" style="stop-color:#ED8C0D"/>
- <stop offset="0.8667" style="stop-color:#FFB81F"/>
- <stop offset="1" style="stop-color:#ED8C0D"/>
+<stop offset="0" style="stop-color:#ED8C0D"/>
+<stop offset="0.24" style="stop-color:#FFE692"/>
+<stop offset="0.75" style="stop-color:#ED8C0D"/>
+<stop offset="0.8667" style="stop-color:#FFB81F"/>
+<stop offset="1" style="stop-color:#ED8C0D"/>
</linearGradient>
<path d="M26.352,28.29c0,0.392-0.317,0.71-0.709,0.71H4.358c-0.392,0-0.709-0.318-0.709-0.71V13.747 c0-0.392,0.317-0.711,0.709-0.711h21.283c0.393,0,0.709,0.319,0.709,0.711V28.29H26.352z" fill="url(#SVGID_4_)"/>
-<path d="M25.643,13.036H4.358c-0.392,0-0.709,0.319-0.709,0.711v0.709 c0-0.392,0.317-0.709,0.709-0.709h21.283c0.393,0,0.709,0.317,0.709,0.709v-0.709C26.352,13.355,26.033,13.036,25.643,13.036z" enable-background="new " fill="#FFFFFF" opacity="0.4"/>
-<path d="M25.643,29H4.358c-0.392,0-0.709-0.318-0.709-0.71v-0.709 c0,0.392,0.317,0.709,0.709,0.709h21.283c0.393,0,0.709-0.317,0.709-0.709v0.709C26.352,28.682,26.033,29,25.643,29z" enable-background="new " opacity="0.25"/>
-<path d="M15,25.82c-0.689,0-1.25-0.562-1.25-1.25v-1.838 c-0.769-0.441-1.25-1.256-1.25-2.162c0-1.379,1.122-2.5,2.5-2.5c1.379,0,2.5,1.121,2.5,2.5c0,0.904-0.48,1.721-1.25,2.162v1.838 C16.25,25.26,15.689,25.82,15,25.82L15,25.82z" enable-background="new " fill="#FFE591" opacity="0.25"/>
+<path d="M25.643,13.036H4.358c-0.392,0-0.709,0.319-0.709,0.711v0.709 c0-0.392,0.317-0.709,0.709-0.709h21.283c0.393,0,0.709,0.317,0.709,0.709v-0.709C26.352,13.355,26.033,13.036,25.643,13.036z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M25.643,29H4.358c-0.392,0-0.709-0.318-0.709-0.71v-0.709 c0,0.392,0.317,0.709,0.709,0.709h21.283c0.393,0,0.709-0.317,0.709-0.709v0.709C26.352,28.682,26.033,29,25.643,29z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<path d="M15,25.82c-0.689,0-1.25-0.562-1.25-1.25v-1.838 c-0.769-0.441-1.25-1.256-1.25-2.162c0-1.379,1.122-2.5,2.5-2.5c1.379,0,2.5,1.121,2.5,2.5c0,0.904-0.48,1.721-1.25,2.162v1.838 C16.25,25.26,15.689,25.82,15,25.82L15,25.82z" fill="#FFE591" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="282.4805" x2="282.4805" y1="-386.0986" y2="-379.7186">
- <stop offset="0" style="stop-color:#A67C52"/>
- <stop offset="1" style="stop-color:#603813"/>
+<stop offset="0" style="stop-color:#A67C52"/>
+<stop offset="1" style="stop-color:#603813"/>
</linearGradient>
<path d="M17,20.57c0-1.104-0.896-2-2-2c-1.104,0-2,0.896-2,2c0,0.839,0.518,1.555,1.25,1.852v2.148 c0,0.414,0.336,0.75,0.75,0.75s0.75-0.336,0.75-0.75v-2.148C16.482,22.125,17,21.409,17,20.57z" fill="url(#SVGID_5_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_blocked.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_blocked.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
-<path d="M15,0.502c-8.009,0-14.5,6.489-14.5,14.499s6.491,14.5,14.5,14.5c8.009,0,14.5-6.49,14.5-14.5 S23.009,0.502,15,0.502z" opacity="0.35"/>
+<path d="M15,0.502c-8.009,0-14.5,6.489-14.5,14.499s6.491,14.5,14.5,14.5c8.009,0,14.5-6.49,14.5-14.5 S23.009,0.502,15,0.502z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="297.4795" x2="297.4795" y1="-381.5396" y2="-400.9155">
- <stop offset="0" style="stop-color:#EBEBEB"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#EBEBEB"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path d="M15,1.502c-7.457,0-13.5,6.042-13.5,13.499s6.043,13.5,13.5,13.5c7.456,0,13.5-6.043,13.5-13.5 S22.456,1.502,15,1.502z" fill="url(#SVGID_1_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.4795" x2="297.4795" y1="-377.5215" y2="-404.4265">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
</linearGradient>
<path d="M15,1.502c-7.457,0-13.5,6.042-13.5,13.499s6.043,13.5,13.5,13.5c7.456,0,13.5-6.043,13.5-13.5 S22.456,1.502,15,1.502z M15,5.024c1.9,0,3.673,0.543,5.187,1.47L6.493,20.189c-0.928-1.514-1.471-3.285-1.471-5.188 C5.022,9.5,9.498,5.024,15,5.024z M15,24.979c-1.901,0-3.672-0.544-5.187-1.47L23.508,9.813c0.926,1.513,1.471,3.286,1.471,5.186 C24.979,20.503,20.503,24.979,15,24.979z" fill="url(#SVGID_2_)"/>
<rect fill="none" height="30.001" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bluetooth_offline.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bluetooth_offline.svg Thu May 27 13:10:59 2010 +0300
@@ -1,37 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path clip-rule="evenodd" d="M15,30C7.495,30,4,25.224,4,14.969C4,4.757,7.495,0,15,0 s11,4.757,11,14.969C26,25.364,22.607,30,15,30L15,30z" fill-rule="evenodd" opacity="0.6"/>
+<path d="M15,30C7.495,30,4,25.224,4,14.969C4,4.757,7.495,0,15,0 s11,4.757,11,14.969C26,25.364,22.607,30,15,30L15,30z" fill-opacity="0.6" fill-rule="evenodd" stroke-opacity="0.6"/>
<radialGradient cx="41.9736" cy="5.1909" gradientTransform="matrix(0.9686 0 0 1 -26.1192 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.5175">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="0.7636" style="stop-color:#0487BF"/>
- <stop offset="1" style="stop-color:#059FE0"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="0.7636" style="stop-color:#0487BF"/>
+<stop offset="1" style="stop-color:#059FE0"/>
</radialGradient>
-<path clip-rule="evenodd" d="M15,29c5.941,0,10-2.915,10-14.031C25,3.915,20.941,1,15,1 C9.115,1,5,3.915,5,14.969C5,26.085,9.115,29,15,29L15,29z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
-<path clip-rule="evenodd" d="M14.537,3.475v9.976l-4.043-4.168L9,10.798l5.1,5.177L9,21.215 l1.494,1.515l4.043-4.166v9.911L22,20.962l-4.914-4.987L22,11.05L14.537,3.475z M19.014,20.962L16.65,23.36v-4.797L19.014,20.962z M16.65,13.45V8.651l2.363,2.398L16.65,13.45z" fill-rule="evenodd" opacity="0.2"/>
-<path clip-rule="evenodd" d="M14.068,2.467v9.976l-4.043-4.168L8.531,9.79l5.1,5.177l-5.1,5.24 l1.494,1.515l4.043-4.166v9.911l7.463-7.513l-4.914-4.987l4.914-4.925L14.068,2.467z M18.545,19.954l-2.363,2.398v-4.797 L18.545,19.954z M16.182,12.442V7.644l2.363,2.398L16.182,12.442z" fill="#FFFFFF" fill-rule="evenodd"/>
-<rect clip-rule="evenodd" fill="none" fill-rule="evenodd" height="30" width="30"/>
+<path d="M15,29c5.941,0,10-2.915,10-14.031C25,3.915,20.941,1,15,1 C9.115,1,5,3.915,5,14.969C5,26.085,9.115,29,15,29L15,29z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M14.537,3.475v9.976l-4.043-4.168L9,10.798l5.1,5.177L9,21.215 l1.494,1.515l4.043-4.166v9.911L22,20.962l-4.914-4.987L22,11.05L14.537,3.475z M19.014,20.962L16.65,23.36v-4.797L19.014,20.962z M16.65,13.45V8.651l2.363,2.398L16.65,13.45z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<path d="M14.068,2.467v9.976l-4.043-4.168L8.531,9.79l5.1,5.177l-5.1,5.24 l1.494,1.515l4.043-4.166v9.911l7.463-7.513l-4.914-4.987l4.914-4.925L14.068,2.467z M18.545,19.954l-2.363,2.398v-4.797 L18.545,19.954z M16.182,12.442V7.644l2.363,2.398L16.182,12.442z" fill="#FFFFFF" fill-rule="evenodd"/>
+<rect fill="none" fill-rule="evenodd" height="30" width="30"/>
</g>
<g>
-<rect height="34.27" opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
+<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
<defs>
-
<linearGradient gradientTransform="matrix(0.8824 0 0 -0.8824 -284.8232 -348.3516)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="339.8" x2="339.8" y1="-397.3" y2="-425.3">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.2606" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
-
</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_low_battery.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_low_battery.svg Thu May 27 13:10:59 2010 +0300
@@ -1,40 +1,39 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<polygon opacity="0.35" points="6.199,29 6.199,3.6 11.4,3.6 11.4,1 18.6,1 18.6,3.6 23.799,3.6 23.799,29 "/>
+<polygon fill-opacity="0.35" points="6.199,29 6.199,3.6 11.4,3.6 11.4,1 18.6,1 18.6,3.6 23.799,3.6 23.799,29 " stroke-opacity="0.35"/>
<g>
- <linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.1992" x2="22.7988" y1="16.2998" y2="16.2998">
- <stop offset="0" style="stop-color:#7C7E87"/>
- <stop offset="0.4182" style="stop-color:#D0D0D2"/>
- <stop offset="1" style="stop-color:#94979D"/>
- </linearGradient>
- <rect fill="url(#SVGID_1_)" height="23.4" width="15.6" x="7.199" y="4.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.1992" x2="22.7988" y1="16.2998" y2="16.2998">
+<stop offset="0" style="stop-color:#7C7E87"/>
+<stop offset="0.4182" style="stop-color:#D0D0D2"/>
+<stop offset="1" style="stop-color:#94979D"/>
+</linearGradient>
+<rect fill="url(#SVGID_1_)" height="23.4" width="15.6" x="7.199" y="4.6"/>
</g>
<g>
- <linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="9.5" x2="20.5" y1="16.2988" y2="16.2988">
- <stop offset="0" style="stop-color:#EFEFEF"/>
- <stop offset="0.5636" style="stop-color:#FFFFFF"/>
- </linearGradient>
- <rect fill="url(#SVGID_2_)" height="18" width="11" x="9.5" y="7.299"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="9.5" x2="20.5" y1="16.2988" y2="16.2988">
+<stop offset="0" style="stop-color:#EFEFEF"/>
+<stop offset="0.5636" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
+</linearGradient>
+<rect fill="url(#SVGID_2_)" height="18" width="11" x="9.5" y="7.299"/>
</g>
<g>
- <linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="12.4004" x2="17.5996" y1="3.2998" y2="3.2998">
- <stop offset="0" style="stop-color:#7C7E87"/>
- <stop offset="0.5394" style="stop-color:#D0D0D2"/>
- <stop offset="1" style="stop-color:#94979D"/>
- </linearGradient>
- <rect fill="url(#SVGID_3_)" height="2.6" width="5.199" x="12.4" y="2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="12.4004" x2="17.5996" y1="3.2998" y2="3.2998">
+<stop offset="0" style="stop-color:#7C7E87"/>
+<stop offset="0.5394" style="stop-color:#D0D0D2"/>
+<stop offset="1" style="stop-color:#94979D"/>
+</linearGradient>
+<rect fill="url(#SVGID_3_)" height="2.6" width="5.199" x="12.4" y="2"/>
</g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9.416" x2="20.4993" y1="23.8594" y2="23.8594">
- <stop offset="0" style="stop-color:#D4270D"/>
- <stop offset="0.3394" style="stop-color:#EB7A29"/>
- <stop offset="1" style="stop-color:#C90000"/>
+<stop offset="0" style="stop-color:#D4270D"/>
+<stop offset="0.3394" style="stop-color:#EB7A29"/>
+<stop offset="1" style="stop-color:#C90000"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="3" width="11" x="9.5" y="22.359"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_signal_high.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_signal_high.svg Thu May 27 13:10:59 2010 +0300
@@ -1,43 +1,41 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<rect height="12" opacity="0.35" width="8" x="1" y="15"/>
-<rect height="18" opacity="0.35" width="8" x="11" y="9"/>
-<rect height="24" opacity="0.35" width="8" x="21" y="3"/>
+<rect fill-opacity="0.35" height="12" stroke-opacity="0.35" width="8" x="1" y="15"/>
+<rect fill-opacity="0.35" height="18" stroke-opacity="0.35" width="8" x="11" y="9"/>
+<rect fill-opacity="0.35" height="24" stroke-opacity="0.35" width="8" x="21" y="3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="15.8965" y2="26.0217">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="6" x="2" y="16"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="7.3999" y2="24.801">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="8" width="4" x="3" y="17"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="9.959" y2="25.959">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="16" width="6" x="12" y="10"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="5.75" y2="24.7824">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="14" width="4" x="13" y="11"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="25" x2="25" y1="4" y2="25.7514">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="22" width="6" x="22" y="4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="25" x2="25" y1="5" y2="24.774">
- <stop offset="0" style="stop-color:#88E400"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#88E400"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="20" width="4" x="23" y="5"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_signal_low.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_signal_low.svg Thu May 27 13:10:59 2010 +0300
@@ -1,49 +1,47 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<rect height="12" opacity="0.35" width="8" x="1" y="15"/>
-<rect height="18" opacity="0.35" width="8" x="11" y="9"/>
-<rect height="24" opacity="0.35" width="8" x="21" y="3"/>
+<rect fill-opacity="0.35" height="12" stroke-opacity="0.35" width="8" x="1" y="15"/>
+<rect fill-opacity="0.35" height="18" stroke-opacity="0.35" width="8" x="11" y="9"/>
+<rect fill-opacity="0.35" height="24" stroke-opacity="0.35" width="8" x="21" y="3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="16" y2="26.1373">
- <stop offset="0" style="stop-color:#FBB03B"/>
- <stop offset="1" style="stop-color:#E14F16"/>
+<stop offset="0" style="stop-color:#FBB03B"/>
+<stop offset="1" style="stop-color:#E14F16"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="6" x="2" y="16"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="17" y2="25.1098">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="1" style="stop-color:#D82E09"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="1" style="stop-color:#D82E09"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="8" width="4" x="3" y="17"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 11700.957 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="11685.957" x2="11685.957" y1="4" y2="26">
- <stop offset="0" style="stop-color:#E6E6E6"/>
- <stop offset="1" style="stop-color:#6F6F6F"/>
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#6F6F6F"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="16" width="6" x="12" y="10"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 11700.957 0)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="11685.957" x2="11685.957" y1="5.75" y2="25">
- <stop offset="0" style="stop-color:#C4C4C4"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="14" width="4" x="13" y="11"/>
-<polygon fill="#FFFFFF" opacity="0.3" points="12,12.389 12,10 14.39,10 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="18,17.703 12,23.703 12,18.047 18,12.047 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="18,23.359 18,26 15.36,26 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="12,12.389 12,10 14.39,10 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="18,17.703 12,23.703 12,18.047 18,12.047 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="18,23.359 18,26 15.36,26 " stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 11720.957 0)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11695.957" x2="11695.957" y1="4" y2="26">
- <stop offset="0" style="stop-color:#E6E6E6"/>
- <stop offset="1" style="stop-color:#6F6F6F"/>
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#6F6F6F"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="22" width="6" x="22" y="4"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 11720.957 0)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="11695.957" x2="11695.957" y1="5" y2="25">
- <stop offset="0" style="stop-color:#C4C4C4"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="20" width="4" x="23" y="5"/>
-<polygon fill="#FFFFFF" opacity="0.3" points="22,9.639 22,4 27.64,4 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="28,14.953 22,20.953 22,15.297 28,9.297 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="28,20.609 28,26 22.61,26 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,9.639 22,4 27.64,4 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,14.953 22,20.953 22,15.297 28,9.297 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,20.609 28,26 22.61,26 " stroke-opacity="0.3"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_signal_medium.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_signal_medium.svg Thu May 27 13:10:59 2010 +0300
@@ -1,46 +1,44 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<rect height="12" opacity="0.35" width="8" x="1" y="15"/>
-<rect height="18" opacity="0.35" width="8" x="11" y="9"/>
-<rect height="24" opacity="0.35" width="8" x="21" y="3"/>
+<rect fill-opacity="0.35" height="12" stroke-opacity="0.35" width="8" x="1" y="15"/>
+<rect fill-opacity="0.35" height="18" stroke-opacity="0.35" width="8" x="11" y="9"/>
+<rect fill-opacity="0.35" height="24" stroke-opacity="0.35" width="8" x="21" y="3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="9.75" y2="25.5">
- <stop offset="0" style="stop-color:#FFF48F"/>
- <stop offset="1" style="stop-color:#FFB120"/>
+<stop offset="0" style="stop-color:#FFF48F"/>
+<stop offset="1" style="stop-color:#FFB120"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="6" x="2" y="16"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="12" y2="24.6">
- <stop offset="0" style="stop-color:#FECF5E"/>
- <stop offset="1" style="stop-color:#FF9E01"/>
+<stop offset="0" style="stop-color:#FECF5E"/>
+<stop offset="1" style="stop-color:#FF9E01"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="8" width="4" x="3" y="17"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="9.917" y2="26.0034">
- <stop offset="0" style="stop-color:#FFF48F"/>
- <stop offset="1" style="stop-color:#FFB120"/>
+<stop offset="0" style="stop-color:#FFF48F"/>
+<stop offset="1" style="stop-color:#FFB120"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="16" width="6" x="12" y="10"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="10.7813" y2="24.5625">
- <stop offset="0" style="stop-color:#FECF5E"/>
- <stop offset="1" style="stop-color:#FF9E01"/>
+<stop offset="0" style="stop-color:#FECF5E"/>
+<stop offset="1" style="stop-color:#FF9E01"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="14" width="4" x="13" y="11"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 11381.0703 0)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11356.0703" x2="11356.0703" y1="4" y2="25.7514">
- <stop offset="0" style="stop-color:#E6E6E6"/>
- <stop offset="1" style="stop-color:#6F6F6F"/>
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#6F6F6F"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="22" width="6" x="22" y="4"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 11381.0703 0)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="11356.0703" x2="11356.0703" y1="5" y2="24.774">
- <stop offset="0" style="stop-color:#C4C4C4"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="20" width="4" x="23" y="5"/>
-<polygon fill="#FFFFFF" opacity="0.3" points="22,9.641 22,4 27.641,4 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="28,14.953 22,20.953 22,15.297 28,9.297 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="28,20.611 28,26 22.611,26 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,9.641 22,4 27.641,4 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,14.953 22,20.953 22,15.297 28,9.297 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,20.611 28,26 22.611,26 " stroke-opacity="0.3"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_business_card.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_business_card.svg Thu May 27 13:10:59 2010 +0300
@@ -1,31 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.6" height="22" width="28" x="1" y="4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="3.9473" y2="24.6524">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#C8C8C8"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="20" width="26" x="2" y="5"/>
<rect fill="#FFFFFF" height="1" width="26" x="2" y="5"/>
-<rect fill="#020202" height="1" opacity="0.2" width="26" x="2" y="24"/>
+<rect fill="#020202" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="26" x="2" y="24"/>
<rect fill="#FFFFFF" height="14" width="14" x="3" y="7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="10" x2="10" y1="20.1982" y2="7.7075">
- <stop offset="0" style="stop-color:#3FA8F4"/>
- <stop offset="1" style="stop-color:#8DC8E1"/>
+<stop offset="0" style="stop-color:#3FA8F4"/>
+<stop offset="1" style="stop-color:#8DC8E1"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="12" width="12" x="4" y="8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.7114" x2="9.7114" y1="19.9209" y2="3.3869">
- <stop offset="0" style="stop-color:#146BAF"/>
- <stop offset="1" style="stop-color:#013B77"/>
+<stop offset="0" style="stop-color:#146BAF"/>
+<stop offset="1" style="stop-color:#013B77"/>
</linearGradient>
<path d="M15,20c-0.046-1.653-1.578-2.359-2.485-2.926l-1.296-0.788c-0.534-0.37,0.098-0.794,0.467-1.508 c0.547-1.06,0.667-1.647,0.667-2.505c0-1.559-1.161-2.851-2.616-2.851c-0.009,0-0.016,0.002-0.026,0.003 C9.703,9.425,9.695,9.423,9.686,9.423c-1.456,0-2.615,1.292-2.615,2.851c0,0.857,0.121,1.446,0.667,2.505 c0.37,0.716,1.001,1.138,0.466,1.508l-1.575,0.788C5.722,17.641,4.469,18.347,4.422,20H15z" fill="url(#SVGID_3_)"/>
-<rect fill="#020202" height="2" opacity="0.5" width="7" x="19" y="8"/>
-<rect fill="#020202" height="2" opacity="0.5" width="7" x="19" y="13"/>
+<rect fill="#020202" fill-opacity="0.5" height="2" stroke-opacity="0.5" width="7" x="19" y="8"/>
+<rect fill="#020202" fill-opacity="0.5" height="2" stroke-opacity="0.5" width="7" x="19" y="13"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_calendar.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_calendar.svg Thu May 27 13:10:59 2010 +0300
@@ -1,54 +1,51 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
-<rect fill="none" height="30" width="30"/>
<path d="M22,4c0-1.104-0.896-2-2-2s-2,0.896-2,2h-6c0-1.104-0.897-2-2-2S8,2.896,8,4H2v24h26V4H22z" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="10.3691" y2="27.0025">
- <stop offset="0" style="stop-color:#F9F9F9"/>
- <stop offset="1" style="stop-color:#B5B5B5"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1412 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1427" x2="-1427" y1="10.3691" y2="27.0025">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#B5B5B5"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="22" width="24" x="3" y="5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.2095" x2="11.2095" y1="23.834" y2="13.7479">
- <stop offset="0" style="stop-color:#303030"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M14.228,22.906V24H8.191v-1.094h2.146v-7.629L8.191,15.77v-1.094l3.015-0.95h0.991v9.181H14.228z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="18.7939" x2="18.7939" y1="23.834" y2="13.7479">
- <stop offset="0" style="stop-color:#303030"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M21.843,22.811V24h-6.098v-0.745c0-0.711,0.123-1.343,0.369-1.894s0.55-1.021,0.909-1.412 c0.359-0.389,0.816-0.816,1.367-1.281c0.66-0.557,1.078-0.986,1.251-1.292s0.26-0.608,0.26-0.909c0-0.529-0.14-0.926-0.421-1.193 c-0.279-0.266-0.7-0.399-1.261-0.399c-0.593,0-1.31,0.153-2.153,0.458h-0.014v-1.217c0.885-0.277,1.746-0.417,2.584-0.417 c1.035,0,1.82,0.227,2.358,0.681c0.538,0.453,0.807,1.121,0.807,2.006c0,0.496-0.12,0.985-0.362,1.467 c-0.242,0.48-0.811,1.097-1.709,1.849c-0.502,0.424-0.893,0.776-1.176,1.06s-0.521,0.594-0.715,0.934 c-0.193,0.339-0.299,0.711-0.317,1.117H21.843z" fill="url(#SVGID_3_)"/>
-<polygon fill="#FFFFFF" points="22,22 22,27 27,22 "/>
+<polygon fill="#FFFFFF" points="8,22 8,27 3,22 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="14.9995" x2="14.9995" y1="5" y2="11">
- <stop offset="0" style="stop-color:#FF7042"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FF7042"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="6" width="24" x="3" y="5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="10" x2="10" y1="6" y2="10">
- <stop offset="0" style="stop-color:#4A050A"/>
- <stop offset="1" style="stop-color:#B00F25"/>
+<stop offset="0" style="stop-color:#4A050A"/>
+<stop offset="1" style="stop-color:#B00F25"/>
</linearGradient>
<circle cx="10" cy="8" fill="url(#SVGID_5_)" r="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20" x2="20" y1="6" y2="10">
- <stop offset="0" style="stop-color:#4A050A"/>
- <stop offset="1" style="stop-color:#B00F25"/>
+<stop offset="0" style="stop-color:#4A050A"/>
+<stop offset="1" style="stop-color:#B00F25"/>
</linearGradient>
<circle cx="20" cy="8" fill="url(#SVGID_6_)" r="2"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="24" x="3" y="5"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="24" x="3" y="5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="10" x2="10" y1="3" y2="9">
- <stop offset="0" style="stop-color:#FFFCFE"/>
- <stop offset="1" style="stop-color:#8C8C8C"/>
+<stop offset="0" style="stop-color:#FFFCFE"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
<path d="M11,8c0,0.55-0.45,1-1,1l0,0C9.45,9,9,8.55,9,8V4c0-0.55,0.45-1,1-1l0,0c0.55,0,1,0.45,1,1V8z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="20" x2="20" y1="3" y2="9">
- <stop offset="0" style="stop-color:#FFFCFE"/>
- <stop offset="1" style="stop-color:#8C8C8C"/>
+<stop offset="0" style="stop-color:#FFFCFE"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
<path d="M21,8c0,0.55-0.45,1-1,1l0,0c-0.55,0-1-0.45-1-1V4c0-0.55,0.45-1,1-1l0,0c0.55,0,1,0.45,1,1V8z" fill="url(#SVGID_8_)"/>
-<rect height="1" opacity="0.2" width="24" x="3" y="11"/>
+<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="24" x="3" y="11"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_car.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_car.svg Thu May 27 13:10:59 2010 +0300
@@ -1,81 +1,79 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M27.606,11.991l-1.636-5.233C25.588,5.226,23.461,3,21,3H9C6.539,3,4.412,5.226,4.045,6.702l-1.652,5.291 C1.547,12.727,1,13.795,1,15v6c0,0.883,0.391,1.67,1,2.22V25c0,1.103,1.01,2,2.25,2h2.5C7.99,27,9,26.103,9,25v-1h12v1 c0,1.103,1.01,2,2.25,2h2.5c1.24,0,2.25-0.897,2.25-2v-1.78c0.609-0.55,1-1.337,1-2.22v-6C29,13.795,28.453,12.725,27.606,11.991z" opacity="0.6"/>
+<path d="M27.606,11.991l-1.636-5.233C25.588,5.226,23.461,3,21,3H9C6.539,3,4.412,5.226,4.045,6.702l-1.652,5.291 C1.547,12.727,1,13.795,1,15v6c0,0.883,0.391,1.67,1,2.22V25c0,1.103,1.01,2,2.25,2h2.5C7.99,27,9,26.103,9,25v-1h12v1 c0,1.103,1.01,2,2.25,2h2.5c1.24,0,2.25-0.897,2.25-2v-1.78c0.609-0.55,1-1.337,1-2.22v-6C29,13.795,28.453,12.725,27.606,11.991z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="22" y2="26">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.6848" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#646464"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.6848" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
<path d="M3,22v3c0,0.55,0.563,1,1.25,1h2.5C7.438,26,8,25.55,8,25v-3H3z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="24.5" x2="24.5" y1="22" y2="26">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="0.6848" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#646464"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.6848" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
<path d="M22,22v3c0,0.55,0.563,1,1.25,1h2.5c0.688,0,1.25-0.45,1.25-1v-3H22z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="4.0625" y2="14.942">
- <stop offset="0" style="stop-color:#F7CC01"/>
- <stop offset="1" style="stop-color:#FFAB01"/>
+<stop offset="0" style="stop-color:#F7CC01"/>
+<stop offset="1" style="stop-color:#FFAB01"/>
</linearGradient>
<path d="M27.5,15L25,7c-0.267-1.067-2-3-4-3H9C7,4,5.267,5.933,5,7l-2.5,8H27.5z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.0005" x2="15.0005" y1="5.5454" y2="13.4578">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M4.541,13.5l1.891-6.053C6.572,6.899,7.762,5.5,9,5.5h12c1.238,0,2.428,1.399,2.545,1.863 l1.916,6.137H4.541z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="2" x2="28" y1="17.5" y2="17.5">
- <stop offset="0" style="stop-color:#FFC501"/>
- <stop offset="1" style="stop-color:#FFB701"/>
+<stop offset="0" style="stop-color:#FFC501"/>
+<stop offset="1" style="stop-color:#FFB701"/>
</linearGradient>
<path d="M25,12H5c-1.65,0-3,1.35-3,3v6c0,1.1,0.9,2,2,2h22c1.1,0,2-0.9,2-2v-6C28,13.35,26.65,12,25,12z" fill="url(#SVGID_5_)"/>
-<path d="M7.416,12l1.04,3.383C8.908,16.85,10.465,18,12,18h6c1.535,0,3.092-1.15,3.544-2.617 L22.584,12H7.416z" fill="#FFFFFF" opacity="0.35"/>
+<path d="M7.416,12l1.04,3.383C8.908,16.85,10.465,18,12,18h6c1.535,0,3.092-1.15,3.544-2.617 L22.584,12H7.416z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="6" x2="6" y1="18" y2="13.0005">
- <stop offset="0" style="stop-color:#F0B901"/>
- <stop offset="1" style="stop-color:#ED7E00"/>
+<stop offset="0" style="stop-color:#F0B901"/>
+<stop offset="1" style="stop-color:#ED7E00"/>
</linearGradient>
<path d="M6,18c-1.654,0-3-1.121-3-2.5S4.346,13,6,13s3,1.121,3,2.5S7.654,18,6,18L6,18z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="6" x2="6" y1="13.834" y2="17.1665">
- <stop offset="0" style="stop-color:#FAFAFA"/>
- <stop offset="1" style="stop-color:#C8C8D2"/>
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#C8C8D2"/>
</linearGradient>
<ellipse cx="6" cy="15.5" fill="url(#SVGID_7_)" rx="2" ry="1.666"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="24" x2="24" y1="18" y2="13.0005">
- <stop offset="0" style="stop-color:#F0B901"/>
- <stop offset="1" style="stop-color:#ED7E00"/>
+<stop offset="0" style="stop-color:#F0B901"/>
+<stop offset="1" style="stop-color:#ED7E00"/>
</linearGradient>
<path d="M24,18c-1.654,0-3-1.121-3-2.5s1.346-2.5,3-2.5s3,1.121,3,2.5S25.654,18,24,18L24,18z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="24" x2="24" y1="13.834" y2="17.1665">
- <stop offset="0" style="stop-color:#FAFAFA"/>
- <stop offset="1" style="stop-color:#C8C8D2"/>
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#C8C8D2"/>
</linearGradient>
<ellipse cx="24" cy="15.5" fill="url(#SVGID_9_)" rx="2" ry="1.666"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="2" x2="28" y1="19.5" y2="19.5">
- <stop offset="0" style="stop-color:#FF9000"/>
- <stop offset="0.511" style="stop-color:#FFC501"/>
- <stop offset="1" style="stop-color:#FF8800"/>
+<stop offset="0" style="stop-color:#FF9000"/>
+<stop offset="0.511" style="stop-color:#FFC501"/>
+<stop offset="1" style="stop-color:#FF8800"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="1" width="26" x="2" y="19"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="15.0005" x2="15.0005" y1="17" y2="12.0005">
- <stop offset="0" style="stop-color:#D67900"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#D67900"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</linearGradient>
<path d="M8.461,12l0.951,3.088C9.735,16.14,10.9,17,12,17h6c1.1,0,2.265-0.86,2.588-1.912L21.539,12H8.461z" fill="url(#SVGID_11_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="14.9995" x2="14.9995" y1="12.0625" y2="16.4384">
- <stop offset="0" style="stop-color:#FFE896"/>
- <stop offset="1" style="stop-color:#FFB701"/>
+<stop offset="0" style="stop-color:#FFE896"/>
+<stop offset="1" style="stop-color:#FFB701"/>
</linearGradient>
<path d="M8.984,12l0.905,2.941C10.15,15.786,11.116,16.5,12,16.5h6c0.884,0,1.85-0.714,2.11-1.559L21.016,12 H8.984z" fill="url(#SVGID_12_)"/>
-<path d="M23.225,8.01l-0.164-0.523C22.977,7.199,21.979,6,21,6H9C8.035,6,7.01,7.203,6.908,7.596 L6.283,9.599L23.225,8.01z" fill="#FFFFFF" opacity="0.25"/>
+<path d="M23.225,8.01l-0.164-0.523C22.977,7.199,21.979,6,21,6H9C8.035,6,7.01,7.203,6.908,7.596 L6.283,9.599L23.225,8.01z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15.0005" x2="15.0005" y1="23" y2="21">
- <stop offset="0" style="stop-color:#565656"/>
- <stop offset="1" style="stop-color:#212121"/>
+<stop offset="0" style="stop-color:#565656"/>
+<stop offset="1" style="stop-color:#212121"/>
</linearGradient>
<path d="M22,21H8c-1.1,0-2,0.9-2,2h18C24,21.9,23.1,21,22,21z" fill="url(#SVGID_13_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_charger.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_charger.svg Thu May 27 13:10:59 2010 +0300
@@ -1,65 +1,63 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M23,10V1h-5v9h-6V1H7v9H4v7c0,3.52,2.613,6.433,6,6.92V26h2v3h6v-3h2v-2.08c3.387-0.487,6-3.4,6-6.92v-7H23z" opacity="0.6"/>
+<path d="M23,10V1h-5v9h-6V1H7v9H4v7c0,3.52,2.613,6.433,6,6.92V26h2v3h6v-3h2v-2.08c3.387-0.487,6-3.4,6-6.92v-7H23z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8" x2="11" y1="7" y2="7">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.4" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#686E70"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.4" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#686E70"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="3" x="8" y="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8" x2="11" y1="9.5" y2="9.5">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.4" style="stop-color:#7A7A7A"/>
- <stop offset="1" style="stop-color:#1A1A1A"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.4" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="5" width="3" x="8" y="7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="19" x2="22" y1="10" y2="10">
- <stop offset="0" style="stop-color:#323232"/>
- <stop offset="0.4" style="stop-color:#787878"/>
- <stop offset="1" style="stop-color:#323232"/>
+<stop offset="0" style="stop-color:#323232"/>
+<stop offset="0.4" style="stop-color:#787878"/>
+<stop offset="1" style="stop-color:#323232"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="4" width="3" x="19" y="8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="19" x2="22" y1="7" y2="7">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.4" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#686E70"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.4" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#686E70"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="10" width="3" x="19" y="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="19" x2="22" y1="9.5" y2="9.5">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.4" style="stop-color:#7A7A7A"/>
- <stop offset="1" style="stop-color:#1A1A1A"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.4" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="5" width="3" x="19" y="7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="13" x2="17" y1="24.5" y2="24.5">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.4" style="stop-color:#7A7A7A"/>
- <stop offset="1" style="stop-color:#1A1A1A"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.4" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="7" width="4" x="13" y="21"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="11" x2="19" y1="23.5" y2="23.5">
- <stop offset="0" style="stop-color:#4D4D4D"/>
- <stop offset="0.4" style="stop-color:#7A7A7A"/>
- <stop offset="1" style="stop-color:#1A1A1A"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.4" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="3" width="8" x="11" y="22"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="14.9995" x2="14.9995" y1="11" y2="23.0005">
- <stop offset="0" style="stop-color:#C8C8C8"/>
- <stop offset="0.8" style="stop-color:#383838"/>
- <stop offset="1" style="stop-color:#121212"/>
+<stop offset="0" style="stop-color:#C8C8C8"/>
+<stop offset="0.8" style="stop-color:#383838"/>
+<stop offset="1" style="stop-color:#121212"/>
</linearGradient>
<path d="M5,11v6c0,3.3,2.7,6,6,6h8c3.3,0,6-2.7,6-6v-6H5z" fill="url(#SVGID_8_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.9995" x2="14.9995" y1="12" y2="22.0005">
- <stop offset="0" style="stop-color:#8C8C8C"/>
- <stop offset="0.5" style="stop-color:#636363"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="0.5" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
<path d="M11,22c-2.757,0-5-2.243-5-5v-5h18v5c0,2.757-2.243,5-5,5H11z" fill="url(#SVGID_9_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_collapse.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_collapse.svg Thu May 27 13:10:59 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
<rect fill-opacity="0.6" height="30" stroke-opacity="0.6" width="30"/>
<rect fill="url(#SVGID_1_)" height="28" width="28" x="1" y="1"/>
@@ -9,15 +9,10 @@
<polygon fill-opacity="0.2" points="23.99,14,7.99,14,7.99,18,23.99,18" stroke-opacity="0.2"/>
<polygon fill="#FFFFFF" points="23,13,7,13,7,17,23,17"/>
<defs>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1" y2="29.19">
-
<stop offset="0" stop-color="#F7992E"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
-
</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_company_details.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_company_details.svg Thu May 27 13:10:59 2010 +0300
@@ -1,90 +1,88 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<rect height="21" opacity="0.6" width="15" x="14" y="8"/>
+<rect fill-opacity="0.6" height="21" stroke-opacity="0.6" width="15" x="14" y="8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21.5" x2="21.5" y1="9.2114" y2="27.8131">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#787878"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#787878"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="19" width="13" x="15" y="9"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="23.5" x2="23.5" y1="14" y2="11">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="3" width="9" x="19" y="11"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="23.5" x2="23.5" y1="19" y2="16">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="3" width="9" x="19" y="16"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="23.5" x2="23.5" y1="24" y2="21">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="3" width="9" x="19" y="21"/>
-<rect height="28" opacity="0.6" width="19" x="1" y="1"/>
+<rect fill-opacity="0.6" height="28" stroke-opacity="0.6" width="19" x="1" y="1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="10.4995" x2="10.4995" y1="2.2896" y2="27.7443">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#787878"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#787878"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="26" width="17" x="2" y="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="5.5" x2="5.5" y1="4.0557" y2="8.9507">
- <stop offset="0" style="stop-color:#30BCE8"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#30BCE8"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="5" width="3" x="4" y="4"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="3" x="4" y="8"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="4" y="8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="5.5" x2="5.5" y1="12.0557" y2="16.9512">
- <stop offset="0" style="stop-color:#30BCE8"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#30BCE8"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="5" width="3" x="4" y="12"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="3" x="4" y="16"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="4" y="16"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="5.5" x2="5.5" y1="20.0557" y2="24.9507">
- <stop offset="0" style="stop-color:#30BCE8"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#30BCE8"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="5" width="3" x="4" y="20"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="3" x="4" y="24"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="4" y="24"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.5" x2="10.5" y1="4.0557" y2="8.9507">
- <stop offset="0" style="stop-color:#30BCE8"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#30BCE8"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="5" width="3" x="9" y="4"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="3" x="9" y="8"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="9" y="8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.5" x2="10.5" y1="12.0557" y2="16.9512">
- <stop offset="0" style="stop-color:#30BCE8"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#30BCE8"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="5" width="3" x="9" y="12"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="3" x="9" y="16"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="9" y="16"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="10.5" x2="10.5" y1="20.0557" y2="24.9507">
- <stop offset="0" style="stop-color:#30BCE8"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#30BCE8"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<rect fill="url(#SVGID_11_)" height="5" width="3" x="9" y="20"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="3" x="9" y="24"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="9" y="24"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15.4995" x2="15.4995" y1="4.0557" y2="8.9507">
- <stop offset="0" style="stop-color:#30BCE8"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#30BCE8"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<rect fill="url(#SVGID_12_)" height="5" width="3" x="14" y="4"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="3" x="14" y="8"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="14" y="8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15.4995" x2="15.4995" y1="12.0557" y2="16.9512">
- <stop offset="0" style="stop-color:#30BCE8"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#30BCE8"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<rect fill="url(#SVGID_13_)" height="5" width="3" x="14" y="12"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="3" x="14" y="16"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="14" y="16"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="15.4995" x2="15.4995" y1="20.0557" y2="24.9507">
- <stop offset="0" style="stop-color:#30BCE8"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#30BCE8"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<rect fill="url(#SVGID_14_)" height="5" width="3" x="14" y="20"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="3" x="14" y="24"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="14" y="24"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_connected.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_connected.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14C29,22.719,22.719,29,15,29 L15,29z" fill-opacity="0.6"/>
+<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
+<polygon fill-opacity="0.2" points="23.172,9 13.979,18.192 9.736,13.95 6.908,16.778 13.979,23.85 26,11.829 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" points="21.717,7.575 12.525,16.768 8.282,12.525 5.454,15.354 12.525,22.425 24.546,10.404 "/>
+<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<polygon opacity="0.2" points="23.172,9 13.979,18.192 9.736,13.95 6.908,16.778 13.979,23.85 26,11.829 "/>
-<polygon fill="#FFFFFF" points="21.717,7.575 12.525,16.768 8.282,12.525 5.454,15.354 12.525,22.425 24.546,10.404 "/>
-<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" opacity="0.4"/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_connection.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_connection.svg Thu May 27 13:10:59 2010 +0300
@@ -1,34 +1,37 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30" x="0.002"/>
-<path d="M20.752,15.001H1.27c-0.555,0-0.998,0.273-1.186,0.73c-0.186,0.459-0.059,0.966,0.34,1.355l10.515,10.314 c0.339,0.335,0.687,0.404,0.918,0.404c0.565,0,1.165-0.448,1.165-1.28v-4.398h7.73c0.842,0,1.527-0.69,1.527-1.538v-4.051 C22.279,15.69,21.594,15.001,20.752,15.001z" opacity="0.35"/>
-<path d="M29.58,12.911L19.063,2.596c-0.339-0.333-0.685-0.402-0.916-0.402c-0.564,0-1.165,0.449-1.165,1.281v4.399 h-7.73c-0.842,0-1.525,0.689-1.525,1.537v4.051c0,0.847,0.684,1.535,1.525,1.535h19.482c0.555,0,0.998-0.273,1.186-0.73 C30.105,13.808,29.979,13.301,29.58,12.911z" opacity="0.35"/>
+<path d="M20.752,15.001H1.27c-0.555,0-0.998,0.273-1.186,0.73c-0.186,0.459-0.059,0.966,0.34,1.355l10.515,10.314 c0.339,0.335,0.687,0.404,0.918,0.404c0.565,0,1.165-0.448,1.165-1.28v-4.398h7.73c0.842,0,1.527-0.69,1.527-1.538v-4.051 C22.279,15.69,21.594,15.001,20.752,15.001z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M29.58,12.911L19.063,2.596c-0.339-0.333-0.685-0.402-0.916-0.402c-0.564,0-1.165,0.449-1.165,1.281v4.399 h-7.73c-0.842,0-1.525,0.689-1.525,1.537v4.051c0,0.847,0.684,1.535,1.525,1.535h19.482c0.555,0,0.998-0.273,1.186-0.73 C30.105,13.808,29.979,13.301,29.58,12.911z" fill-opacity="0.35" stroke-opacity="0.35"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="11.1406" x2="11.1406" y1="16.103" y2="27.0009">
- <stop offset="0" style="stop-color:#CDEDBD"/>
- <stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="0" style="stop-color:#CDEDBD"/>
+<stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="1" style="stop-color:#139900"/>
</linearGradient>
<path d="M21.279,20.589c0,0.294-0.236,0.538-0.527,0.538h-8.205c-0.287,0-0.525,0.241-0.525,0.537v4.861 c0,0.295-0.172,0.37-0.38,0.165L1.125,16.373c-0.211-0.205-0.144-0.372,0.145-0.372h19.482c0.289,0,0.527,0.241,0.527,0.537V20.589z " fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.7783" x2="11.7783" y1="17.0737" y2="24.8819">
- <stop offset="0" style="stop-color:#82C94C"/>
- <stop offset="0.2545" style="stop-color:#439020"/>
- <stop offset="0.5091" style="stop-color:#0D4D07"/>
+<stop offset="0" style="stop-color:#82C94C"/>
+<stop offset="0.2545" style="stop-color:#439020"/>
+<stop offset="0.5091" style="stop-color:#0D4D07"/>
+<stop offset="1" style="stop-color:#0D4D07"/>
</linearGradient>
<path d="M3.336,17.06h16.885v3.009h-7.674c-0.872,0-1.584,0.715-1.584,1.596v2.878L3.336,17.06z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="18.8643" x2="18.8643" y1="3.2227" y2="14.1618">
- <stop offset="0.4909" style="stop-color:#CDEDBD"/>
- <stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="0" style="stop-color:#CDEDBD"/>
+<stop offset="0.4909" style="stop-color:#CDEDBD"/>
+<stop offset="0.9879" style="stop-color:#139900"/>
+<stop offset="1" style="stop-color:#139900"/>
</linearGradient>
<path d="M8.727,9.411c0-0.296,0.235-0.537,0.525-0.537h8.206c0.288,0,0.524-0.242,0.524-0.538V3.475 c0-0.297,0.172-0.37,0.381-0.165l10.516,10.315c0.211,0.205,0.144,0.372-0.145,0.372H9.252c-0.289,0-0.525-0.241-0.525-0.535V9.411z " fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.2266" x2="18.2266" y1="5.4292" y2="12.9712">
- <stop offset="0" style="stop-color:#B2F56E"/>
- <stop offset="0.703" style="stop-color:#439020"/>
- <stop offset="0.9879" style="stop-color:#0D4D07"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.703" style="stop-color:#439020"/>
+<stop offset="0.9879" style="stop-color:#0D4D07"/>
+<stop offset="1" style="stop-color:#0D4D07"/>
</linearGradient>
<path d="M9.785,12.938V9.933h7.673c0.872,0,1.583-0.718,1.583-1.597V5.458l7.627,7.48H9.785z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="30" width="30" x="0.002"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_contacts.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_contacts.svg Thu May 27 13:10:59 2010 +0300
@@ -1,44 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M4,1v5C2.896,6,2,6.897,2,8s0.896,2,2,2v1c-1.104,0-2,0.897-2,2s0.896,2,2,2v1c-1.104,0-2,0.897-2,2 s0.896,2,2,2v1c-1.104,0-2,0.897-2,2s0.896,2,2,2v4h24V1H4z" opacity="0.6"/>
+<path d="M4,1v5C2.896,6,2,6.897,2,8s0.896,2,2,2v1c-1.104,0-2,0.897-2,2s0.896,2,2,2v1c-1.104,0-2,0.897-2,2 s0.896,2,2,2v1c-1.104,0-2,0.897-2,2s0.896,2,2,2v4h24V1H4z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="18" x2="18" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="26" width="18" x="9" y="2"/>
-<path d="M19.134,16.857c-0.005-0.08,0-0.161,0.002-0.242c0.532-0.371,0.993-0.9,1.274-1.472 c0.52-1.056,0.389-3.753,0.389-3.753c0-1.102-1.65-2.391-2.725-2.391h-0.386c-1.075,0-2.726,1.289-2.726,2.391 c0,0-0.098,2.688,0.39,3.753c0.267,0.582,0.736,1.116,1.281,1.487c0.001,0.075,0.007,0.151,0.002,0.227 c-0.066,1.08-3.579,2.914-3.751,3.148V23h10v-2.992C22.713,19.772,19.2,17.938,19.134,16.857z" opacity="0.2"/>
+<path d="M19.134,16.857c-0.005-0.08,0-0.161,0.002-0.242c0.532-0.371,0.993-0.9,1.274-1.472 c0.52-1.056,0.389-3.753,0.389-3.753c0-1.102-1.65-2.391-2.725-2.391h-0.386c-1.075,0-2.726,1.289-2.726,2.391 c0,0-0.098,2.688,0.39,3.753c0.267,0.582,0.736,1.116,1.281,1.487c0.001,0.075,0.007,0.151,0.002,0.227 c-0.066,1.08-3.579,2.914-3.751,3.148V23h10v-2.992C22.713,19.772,19.2,17.938,19.134,16.857z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7" x2="7" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#A5A5A5"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="26" width="4" x="5" y="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="5" x2="5" y1="6.75" y2="8.75">
- <stop offset="0" style="stop-color:#ABABAB"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#ABABAB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<path d="M7,8c0,0.55-0.45,1-1,1H4C3.45,9,3,8.55,3,8l0,0c0-0.55,0.45-1,1-1h2C6.55,7,7,7.45,7,8L7,8z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="5" x2="5" y1="11.75" y2="13.75">
- <stop offset="0" style="stop-color:#ABABAB"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#ABABAB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<path d="M7,13c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1l0,0c0-0.55,0.45-1,1-1h2C6.55,12,7,12.45,7,13L7,13z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="5" x2="5" y1="16.75" y2="18.75">
- <stop offset="0" style="stop-color:#ABABAB"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#ABABAB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<path d="M7,18c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1l0,0c0-0.55,0.45-1,1-1h2C6.55,17,7,17.45,7,18L7,18z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="5" x2="5" y1="21.75" y2="23.75">
- <stop offset="0" style="stop-color:#ABABAB"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#ABABAB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<path d="M7,23c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1l0,0c0-0.55,0.45-1,1-1h2C6.55,22,7,22.45,7,23L7,23z" fill="url(#SVGID_6_)"/>
<path d="M19.134,15.857c-0.005-0.08,0-0.161,0.002-0.242c0.532-0.371,0.993-0.9,1.274-1.472 c0.52-1.056,0.389-3.753,0.389-3.753c0-1.102-1.65-2.391-2.725-2.391h-0.386c-1.075,0-2.726,1.289-2.726,2.391 c0,0-0.098,2.688,0.39,3.753c0.267,0.582,0.736,1.116,1.281,1.487c0.001,0.075,0.007,0.151,0.002,0.227 c-0.066,1.08-3.579,2.914-3.751,3.148V22h10v-2.992C22.713,18.772,19.2,16.938,19.134,15.857z" fill="#FFFFFF"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="22" x="5" y="2"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="22" x="5" y="2"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_corrupted.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_corrupted.svg Thu May 27 13:10:59 2010 +0300
@@ -1,59 +1,26 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
-<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.6" points="29,2 14.405,2 12,8.615 20.064,16.679 14.838,28 29,28 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20.7363" x2="20.7363" y1="27" y2="3.4999">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#666666"/>
-</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="28,3 15.514,3 13.473,8.615 21.537,16.679 16.772,27 28,27 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="19.9287" x2="19.9287" y1="21.125" y2="9.0729">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<polygon fill-opacity="0.6" points="17.131,28 13.66,22.792 18.681,18.775 13.68,10.775 18.772,6.701 16.683,2 28,2 28,28 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21" x2="21" y1="3" y2="27.0005">
+<stop offset="0" style="stop-color:#FF7D45"/>
+<stop offset="1" style="stop-color:#A10000"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="26,9 13.858,9 21.537,16.679 19.542,21 26,21 "/>
-<polygon fill="#F1F1F2" points="17,7 17,5 14.787,5 14.06,7 "/>
-<rect fill="#F1F1F2" height="2" width="3" x="19" y="5"/>
-<rect fill="#F1F1F2" height="2" width="2" x="24" y="5"/>
-<polygon fill="#F1F1F2" points="14,23 14,25 14.392,25 15.314,23 "/>
-<rect fill="#F1F1F2" height="2" width="3" x="19" y="23"/>
-<rect fill="#F1F1F2" height="2" width="2" x="24" y="23"/>
-<polygon fill="#FFFFFF" opacity="0.3" points="28,4 28,3 15.514,3 15.15,4 "/>
-<polygon fill="#FFFFFF" opacity="0.1" points="28,26 17.234,26 16.772,27 28,27 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="26,20 20.004,20 19.542,21 26,21 "/>
-<polygon fill="#00006B" opacity="0.2" points="26,9 13.858,9 14.858,10 26,10 "/>
-<polygon opacity="0.1" points="17,6 17,5 14.787,5 14.423,6 "/>
-<rect height="1" opacity="0.1" width="3" x="19" y="5"/>
-<rect height="1" opacity="0.1" width="2" x="24" y="5"/>
-<polygon fill-opacity="0.6" points="9,9.385 11.686,2 1,2 1,28 12.007,28 16.936,17.321 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.4683" x2="9.4683" y1="27" y2="3.4999">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#666666"/>
+<polygon fill="url(#SVGID_1_)" points="17.666,27 27,27 27,3 18.222,3 20,7 15,11 20,19 15,23 "/>
+<polygon fill-opacity="0.6" points="8.586,28 2,21.414 2,2 13.872,2 16.228,7.299 11.32,11.225 16.319,19.225 11.341,23.208 14.535,28 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="9" x2="9" y1="3" y2="27.0005">
+<stop offset="0" style="stop-color:#FF7D45"/>
+<stop offset="1" style="stop-color:#A10000"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="9,9.385 11.321,3 2,3 2,27 12.469,27 16.936,17.321 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="10.4683" x2="10.4683" y1="21.125" y2="9.0729">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<polygon fill="url(#SVGID_2_)" points="12.667,27 10,23 15,19 10,11 15,7 13.222,3 3,3 3,21 9,27 "/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 30 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="24" x2="24" y1="21.0313" y2="26.9415">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="9,9.385 9.14,9 4,9 4,21 15.238,21 16.936,17.321 "/>
-<rect fill="#F1F1F2" height="2" width="2" x="4" y="5"/>
-<polygon fill="#F1F1F2" points="8,5 8,7 9.867,7 10.595,5 "/>
-<rect fill="#F1F1F2" height="2" width="2" x="4" y="23"/>
-<rect fill="#F1F1F2" height="2" width="3" x="8" y="23"/>
-<polygon fill="#FFFFFF" opacity="0.3" points="2,3 2,4 10.958,4 11.321,3 "/>
-<polygon fill="#FFFFFF" opacity="0.1" points="2,26 2,27 12.469,27 12.93,26 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="4,20 4,21 15.238,21 15.699,20 "/>
-<polygon fill="#00006B" opacity="0.2" points="9.14,9 4,9 4,10 9.614,10 9,9.385 "/>
-<rect height="1" opacity="0.1" width="2" x="4" y="5"/>
-<polygon opacity="0.1" points="8,5 8,6 10.23,6 10.595,5 "/>
-<rect height="1" opacity="0.1" width="2" x="4" y="23"/>
-<rect height="1" opacity="0.1" width="3" x="8" y="23"/>
-<polygon opacity="0.1" points="13,23 13,24 13.854,24 14.314,23 "/>
-<rect height="1" opacity="0.1" width="3" x="19" y="23"/>
-<rect height="1" opacity="0.1" width="2" x="24" y="23"/>
+<polygon fill="url(#SVGID_3_)" points="3,21 9,21 9,27 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="13.222,3 3,3 3,4 13.666,4 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="27,4 27,3 18.222,3 18.666,4 " stroke-opacity="0.3"/>
+<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_day.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_day.svg Thu May 27 13:10:59 2010 +0300
@@ -1,48 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M22,4c0-1.104-0.896-2-2-2c-1.103,0-2,0.896-2,2h-6c0-1.104-0.896-2-2-2C8.897,2,8,2.896,8,4H3v24h24V4H22z" opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="10.3691" y2="27.0025">
- <stop offset="0" style="stop-color:#F9F9F9"/>
- <stop offset="1" style="stop-color:#B5B5B5"/>
+<path d="M22,4c0-1.104-0.896-2-2-2c-1.103,0-2,0.896-2,2h-6c0-1.104-0.896-2-2-2C8.897,2,8,2.896,8,4H3v24h24V4H22z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -620 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-635" x2="-635" y1="10.3691" y2="27.0025">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#B5B5B5"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="22" width="22" x="4" y="5"/>
-<polygon fill="#FFFFFF" points="21,22 21,27 26,22 "/>
+<polygon fill="#FFFFFF" points="9,22 9,27 4,22 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="5" y2="11">
- <stop offset="0" style="stop-color:#FF7042"/>
- <stop offset="1" style="stop-color:#991B23"/>
+<stop offset="0" style="stop-color:#FF7042"/>
+<stop offset="1" style="stop-color:#991B23"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="6" width="22" x="4" y="5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="10" x2="10" y1="6" y2="10">
- <stop offset="0" style="stop-color:#4A050A"/>
- <stop offset="1" style="stop-color:#B00F25"/>
+<stop offset="0" style="stop-color:#4A050A"/>
+<stop offset="1" style="stop-color:#B00F25"/>
</linearGradient>
<circle cx="10" cy="8" fill="url(#SVGID_3_)" r="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="20" x2="20" y1="6" y2="10">
- <stop offset="0" style="stop-color:#4A050A"/>
- <stop offset="1" style="stop-color:#B00F25"/>
+<stop offset="0" style="stop-color:#4A050A"/>
+<stop offset="1" style="stop-color:#B00F25"/>
</linearGradient>
<circle cx="20" cy="8" fill="url(#SVGID_4_)" r="2"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="22" x="4" y="5"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="22" x="4" y="5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="10" x2="10" y1="3" y2="9">
- <stop offset="0" style="stop-color:#FFFCFE"/>
- <stop offset="1" style="stop-color:#8C8C8C"/>
+<stop offset="0" style="stop-color:#FFFCFE"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
<path d="M11,8c0,0.55-0.45,1-1,1l0,0C9.45,9,9,8.55,9,8V4c0-0.55,0.45-1,1-1l0,0c0.55,0,1,0.45,1,1V8z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20" x2="20" y1="3" y2="9">
- <stop offset="0" style="stop-color:#FFFCFE"/>
- <stop offset="1" style="stop-color:#8C8C8C"/>
+<stop offset="0" style="stop-color:#FFFCFE"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
<path d="M21,8c0,0.55-0.45,1-1,1l0,0c-0.55,0-1-0.45-1-1V4c0-0.55,0.45-1,1-1l0,0c0.55,0,1,0.45,1,1V8z" fill="url(#SVGID_6_)"/>
-<rect height="1" opacity="0.2" width="22" x="4" y="11"/>
+<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="22" x="4" y="11"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.0005" x2="15.0005" y1="23.834" y2="13.7479">
- <stop offset="0" style="stop-color:#303030"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<path d="M18.019,22.906V24h-6.036v-1.094h2.146v-7.629l-2.146,0.492v-1.094l3.015-0.95h0.991v9.181H18.019z" fill="url(#SVGID_7_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_disconnected.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_disconnected.svg Thu May 27 13:10:59 2010 +0300
@@ -1,30 +1,30 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30" x="0"/>
<rect fill="none" height="30" width="30"/>
<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14C29,22.719,22.719,29,15,29 L15,29z" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#CCF87C"/>
- <stop offset="1" style="stop-color:#689E4F"/>
-</linearGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.01,0,12.709,5.555,12.975,12.5C27.981,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13 C7.82,2,2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" opacity="0.4"/>
+<path d="M15,3c7.01,0,12.709,5.555,12.975,12.5C27.981,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13 C7.82,2,2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<polygon fill="#F0F0F0" points="21.717,7.576 12.525,16.768 8.283,12.525 5.455,15.354 12.525,22.425 24.547,10.404 "/>
-<rect height="3" opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.5104 -10.5666)" width="1" x="20.51" y="13.147"/>
-<rect height="2" opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.1925 -13.7483)" width="1" x="23.692" y="10.465"/>
-<rect height="3" opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 12.0966 -11.2234)" width="1" x="19.096" y="7.49"/>
-<rect height="3" opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 17.975 -7.0313)" width="1" x="16.975" y="16.682"/>
-<rect height="3" opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 13.5609 -7.6881)" width="1" x="15.561" y="11.025"/>
-<rect height="3" opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 19.4396 -3.4957)" width="1" x="13.44" y="20.218"/>
-<rect height="2" opacity="0.5" transform="matrix(0.7074 0.7069 -0.7069 0.7074 14.8717 -4.507)" width="1" x="12.379" y="14.707"/>
-<rect height="1.001" opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 12.6318 -13.9304)" width="3" x="21.632" y="7.782"/>
-<rect height="1" opacity="0.5" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 2.9036 43.2242)" width="3" x="8.904" y="20.511"/>
-<rect height="1.001" opacity="0.5" transform="matrix(-0.7069 -0.7073 0.7073 -0.7069 -0.6353 34.686)" width="3" x="5.368" y="16.974"/>
-<rect height="1" opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 12.1969 -2.981)" width="3" x="8.197" y="12.732"/>
-<rect height="3" opacity="0.5" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 0.661 28.1527)" width="1" x="5.661" y="12.44"/>
+<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.5104 -10.5666)" width="1" x="20.51" y="13.147"/>
+<rect fill-opacity="0.5" height="2" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.1925 -13.7483)" width="1" x="23.692" y="10.465"/>
+<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 12.0966 -11.2234)" width="1" x="19.096" y="7.49"/>
+<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 17.975 -7.0313)" width="1" x="16.975" y="16.682"/>
+<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 13.5609 -7.6881)" width="1" x="15.561" y="11.025"/>
+<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 19.4396 -3.4957)" width="1" x="13.44" y="20.218"/>
+<rect fill-opacity="0.5" height="2" stroke-opacity="0.5" transform="matrix(0.7074 0.7069 -0.7069 0.7074 14.8717 -4.507)" width="1" x="12.379" y="14.707"/>
+<rect fill-opacity="0.5" height="1.001" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 12.6318 -13.9304)" width="3" x="21.632" y="7.782"/>
+<rect fill-opacity="0.5" height="1" stroke-opacity="0.5" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 2.9036 43.2242)" width="3" x="8.904" y="20.511"/>
+<rect fill-opacity="0.5" height="1.001" stroke-opacity="0.5" transform="matrix(-0.7069 -0.7073 0.7073 -0.7069 -0.6353 34.686)" width="3" x="5.368" y="16.974"/>
+<rect fill-opacity="0.5" height="1" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 12.1969 -2.981)" width="3" x="8.197" y="12.732"/>
+<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 0.661 28.1527)" width="1" x="5.661" y="12.44"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#CCF87C"/>
+<stop offset="1" style="stop-color:#689E4F"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_draft.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_draft.svg Thu May 27 13:10:59 2010 +0300
@@ -1,43 +1,45 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
+<polygon fill="url(#SVGID_1_)" points="27,2 27,28 9.586,28 3,21.404 3,2 "/>
+<polygon fill="#FFFFFF" points="4,21 10,21 10,27 "/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="18" x="6" y="7"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="18" x="6" y="11"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="12" x="6" y="15"/>
<rect fill="none" height="30" width="30"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#F9F9F9"/>
- <stop offset="1" style="stop-color:#B5B5B5"/>
-</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="4,2 4,28 20,28 26,22 26,2 "/>
-<polygon fill="#FFFFFF" points="26,22 20,22 20,28 "/>
-<rect enable-background="new " height="1.5" opacity="0.5" width="16" x="7" y="6.5"/>
-<rect enable-background="new " height="1.5" opacity="0.5" width="16" x="7" y="10.5"/>
-<rect enable-background="new " height="1.5" opacity="0.5" width="11" x="7" y="14.5"/>
<g>
- <rect height="1" width="2" x="7" y="28"/>
- <rect height="1" width="2" x="5" y="1"/>
- <rect height="1" width="2" x="3" y="28"/>
- <rect height="1" width="2" x="11" y="28"/>
- <rect height="1" width="2" x="9" y="1"/>
- <rect height="1" width="2" x="13" y="1"/>
- <rect height="2" width="1" x="3" y="25"/>
- <rect height="2" width="1" x="3" y="1"/>
- <rect height="2" width="1" x="3" y="9"/>
- <rect height="2" width="1" x="3" y="21"/>
- <rect height="2" width="1" x="3" y="17"/>
- <rect height="2" width="1" x="3" y="13"/>
- <rect height="1" width="2" x="21" y="1"/>
- <rect height="2" width="1" x="26" y="15.143"/>
- <rect height="2" width="1" x="26" y="19.143"/>
- <rect height="2" width="1" x="26" y="7.143"/>
- <rect height="1" width="2" x="15" y="28"/>
- <rect height="2" width="1" x="26" y="11.143"/>
- <rect height="2" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 26.9375 57.7243)" width="1" x="24.924" y="22.283"/>
- <polygon points="19,28 19,29 20.414,29 20.828,28.586 20.242,28 "/>
- <rect height="2" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 20.1098 60.5524)" width="1" x="22.096" y="25.111"/>
- <rect height="1" width="2" x="17" y="1"/>
- <rect height="1" width="2" x="25" y="1"/>
- <rect height="2" width="1" x="3" y="5"/>
- <rect height="2" width="1" x="26" y="3"/>
+<polygon fill="#505050" points="9.778,26.777 9.071,27.484 9.586,28 10.858,28 10.858,27 10,27 "/>
+<rect fill="#505050" height="1" transform="matrix(-0.7074 -0.7069 0.7069 -0.7074 -5.2081 47.8633)" width="2" x="6.304" y="24.51"/>
+<rect fill="#505050" height="1" width="2" x="7" y="2"/>
+<rect fill="#505050" height="1" width="2" x="11" y="2"/>
+<rect fill="#505050" height="1" width="2" x="12.858" y="27"/>
+<rect fill="#505050" height="1" transform="matrix(-0.7074 -0.7069 0.7069 -0.7074 -8.0388 41.0351)" width="2" x="3.475" y="21.682"/>
+<rect fill="#505050" height="2" width="1" x="3" y="10"/>
+<rect fill="#505050" height="1" width="2" x="15" y="2"/>
+<rect fill="#505050" height="2" width="1" x="3" y="6"/>
+<rect fill="#505050" height="2" width="1" x="3" y="14"/>
+<rect fill="#505050" height="2" width="1" x="3" y="18"/>
+<rect fill="#505050" height="1" width="2" x="3" y="2"/>
+<rect fill="#505050" height="2" width="1" x="26" y="13.639"/>
+<rect fill="#505050" height="2" width="1" x="26" y="9.639"/>
+<rect fill="#505050" height="2" width="1" x="26" y="17.639"/>
+<rect fill="#505050" height="1" width="2" x="23" y="2"/>
+<rect fill="#505050" height="2" width="1" x="26" y="5.639"/>
+<polygon fill="#505050" points="26,27.496 26.857,27.496 27,27.496 27,25.639 26,25.639 "/>
+<rect fill="#505050" height="2" width="1" x="26" y="21.639"/>
+<rect fill="#505050" height="1" width="2" x="20.857" y="27"/>
+<rect fill="#505050" height="1" width="2" x="19" y="2"/>
+<rect fill="#505050" height="1" width="2" x="16.857" y="27"/>
+<rect fill="#505050" height="2" width="1" x="26" y="2"/>
+<rect fill="#505050" height="2" width="1" x="3" y="2.361"/>
+<rect fill="#505050" height="1" width="2" x="25" y="27"/>
</g>
+<defs>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -305.0195 -262.4805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-320.0195" x2="-320.0195" y1="-264.4805" y2="-290.4805">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_email.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_email.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1s14,6.28,14,14S22.72,29,15,29L15,29z" opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="1.9409" y2="28.3052">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
-</linearGradient>
+<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1s14,6.28,14,14S22.72,29,15,29L15,29z" fill-opacity="0.6" stroke-opacity="0.6"/>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.179-5.82-13-13-13 S2,7.821,2,15c0,0.169,0.02,0.333,0.025,0.5C2.29,8.555,7.988,3,15,3z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M24.75,16.235c0,1.563-0.315,2.916-0.943,4.059c-0.762,1.408-1.864,2.115-3.307,2.115 c-1.401,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.542-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.098c0,1.377,0.477,2.068,1.436,2.068c0.782,0,1.385-0.541,1.807-1.62 c0.311-0.804,0.467-1.659,0.467-2.577c0-2.12-0.766-3.93-2.289-5.438c-1.523-1.509-3.352-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.963,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263V26c-2.688,0-4.987-0.956-6.891-2.865C6.204,21.22,5.25,18.918,5.25,16.235 c0-2.673,0.955-4.964,2.865-6.873C10.027,7.456,12.319,6.5,15,6.5c2.688,0,4.986,0.95,6.892,2.856 C23.796,11.257,24.75,13.552,24.75,16.235z M16.885,16.157c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.182,0.797,3.271,2.394,3.271C16.092,19.521,16.885,18.401,16.885,16.157z" opacity="0.2"/>
+<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.179-5.82-13-13-13 S2,7.821,2,15c0,0.169,0.02,0.333,0.025,0.5C2.29,8.555,7.988,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24.75,16.235c0,1.563-0.315,2.916-0.943,4.059c-0.762,1.408-1.864,2.115-3.307,2.115 c-1.401,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.542-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.098c0,1.377,0.477,2.068,1.436,2.068c0.782,0,1.385-0.541,1.807-1.62 c0.311-0.804,0.467-1.659,0.467-2.577c0-2.12-0.766-3.93-2.289-5.438c-1.523-1.509-3.352-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.963,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263V26c-2.688,0-4.987-0.956-6.891-2.865C6.204,21.22,5.25,18.918,5.25,16.235 c0-2.673,0.955-4.964,2.865-6.873C10.027,7.456,12.319,6.5,15,6.5c2.688,0,4.986,0.95,6.892,2.856 C23.796,11.257,24.75,13.552,24.75,16.235z M16.885,16.157c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.182,0.797,3.271,2.394,3.271C16.092,19.521,16.885,18.401,16.885,16.157z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M24.75,14.985c0,1.563-0.315,2.916-0.943,4.059c-0.762,1.408-1.864,2.115-3.307,2.115 c-1.401,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.542-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.098c0,1.377,0.477,2.068,1.436,2.068c0.782,0,1.385-0.541,1.807-1.62 c0.311-0.804,0.467-1.659,0.467-2.577c0-2.12-0.766-3.93-2.289-5.438c-1.523-1.509-3.352-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.963,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263v2.035c-2.688,0-4.987-0.956-6.891-2.865C6.204,19.97,5.25,17.668,5.25,14.985 c0-2.673,0.955-4.964,2.865-6.873C10.027,6.206,12.319,5.25,15,5.25c2.688,0,4.986,0.95,6.892,2.856 C23.796,10.007,24.75,12.302,24.75,14.985z M16.885,14.907c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.182,0.797,3.271,2.394,3.271C16.092,18.271,16.885,17.151,16.885,14.907z" fill="#FFFFFF"/>
<rect fill="none" height="30" width="30"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="1.9409" y2="28.3052">
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_email_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_email_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,33 +1,31 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1s14,6.28,14,14S22.72,29,15,29L15,29z" opacity="0.6"/>
+<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1s14,6.28,14,14S22.72,29,15,29L15,29z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="1.9409" y2="28.3052">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.179-5.82-13-13-13 S2,7.821,2,15c0,0.169,0.02,0.333,0.025,0.5C2.29,8.555,7.988,3,15,3z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M24.75,16.235c0,1.563-0.315,2.916-0.943,4.059c-0.762,1.408-1.864,2.115-3.307,2.115 c-1.401,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.542-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.098c0,1.377,0.477,2.068,1.436,2.068c0.782,0,1.385-0.541,1.807-1.62 c0.311-0.804,0.467-1.659,0.467-2.577c0-2.12-0.766-3.93-2.289-5.438c-1.523-1.509-3.352-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.963,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263V26c-2.688,0-4.987-0.956-6.891-2.865C6.204,21.22,5.25,18.918,5.25,16.235 c0-2.673,0.955-4.964,2.865-6.873C10.027,7.456,12.319,6.5,15,6.5c2.688,0,4.986,0.95,6.892,2.856 C23.796,11.257,24.75,13.552,24.75,16.235z M16.885,16.157c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.182,0.797,3.271,2.394,3.271C16.092,19.521,16.885,18.401,16.885,16.157z" opacity="0.2"/>
+<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.179-5.82-13-13-13 S2,7.821,2,15c0,0.169,0.02,0.333,0.025,0.5C2.29,8.555,7.988,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24.75,16.235c0,1.563-0.315,2.916-0.943,4.059c-0.762,1.408-1.864,2.115-3.307,2.115 c-1.401,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.542-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.098c0,1.377,0.477,2.068,1.436,2.068c0.782,0,1.385-0.541,1.807-1.62 c0.311-0.804,0.467-1.659,0.467-2.577c0-2.12-0.766-3.93-2.289-5.438c-1.523-1.509-3.352-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.963,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263V26c-2.688,0-4.987-0.956-6.891-2.865C6.204,21.22,5.25,18.918,5.25,16.235 c0-2.673,0.955-4.964,2.865-6.873C10.027,7.456,12.319,6.5,15,6.5c2.688,0,4.986,0.95,6.892,2.856 C23.796,11.257,24.75,13.552,24.75,16.235z M16.885,16.157c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.182,0.797,3.271,2.394,3.271C16.092,19.521,16.885,18.401,16.885,16.157z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M24.75,14.985c0,1.563-0.315,2.916-0.943,4.059c-0.762,1.408-1.864,2.115-3.307,2.115 c-1.401,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.542-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.098c0,1.377,0.477,2.068,1.436,2.068c0.782,0,1.385-0.541,1.807-1.62 c0.311-0.804,0.467-1.659,0.467-2.577c0-2.12-0.766-3.93-2.289-5.438c-1.523-1.509-3.352-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.963,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263v2.035c-2.688,0-4.987-0.956-6.891-2.865C6.204,19.97,5.25,17.668,5.25,14.985 c0-2.673,0.955-4.964,2.865-6.873C10.027,6.206,12.319,5.25,15,5.25c2.688,0,4.986,0.95,6.892,2.856 C23.796,10.007,24.75,12.302,24.75,14.985z M16.885,14.907c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.182,0.797,3.271,2.394,3.271C16.092,18.271,16.885,17.151,16.885,14.907z" fill="#FFFFFF"/>
<rect fill="none" height="30" width="30"/>
</g>
<g>
<rect fill="none" height="30" width="30"/>
-<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S25.411,30,21,30L21,30z" enable-background="new " opacity="0.6"/>
+<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S25.411,30,21,30L21,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -66 -46)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="87" x2="87" y1="-60.9688" y2="-75.1651">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<circle cx="21" cy="22" fill="url(#SVGID_1__)" r="7"/>
-<polygon enable-background="new " opacity="0.2" points="25.34,24 20.999,19.4 16.66,24 16,23.3 20.999,18 26,23.3 "/>
-<polygon enable-background="new " opacity="0.2" points="20.999,20.857 17,25.098 17,27 20,27 20,24 22,24 22,27 25,27 25,25.098 "/>
-<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5 C27.986,22.334,28,22.169,28,22c0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C14.283,18.869,17.303,16,21,16z" enable-background="new " fill="#FFFFFF" opacity="0.4"/>
+<polygon fill-opacity="0.2" points="25.34,24 20.999,19.4 16.66,24 16,23.3 20.999,18 26,23.3 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="20.999,20.857 17,25.098 17,27 20,27 20,24 22,24 22,27 25,27 25,25.098 " stroke-opacity="0.2"/>
+<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5 C27.986,22.334,28,22.169,28,22c0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C14.283,18.869,17.303,16,21,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<polygon fill="#FFFFFF" points="25.34,23 20.999,18.4 16.66,23 16,22.3 20.999,17 26,22.3 "/>
<polygon fill="#FFFFFF" points="20.999,19.857 17,24.098 17,26 20,26 20,23 22,23 22,26 25,26 25,24.098 "/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_email_work.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_email_work.svg Thu May 27 13:10:59 2010 +0300
@@ -1,36 +1,32 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1s14,6.28,14,14S22.72,29,15,29L15,29z" opacity="0.6"/>
+<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1s14,6.28,14,14S22.72,29,15,29L15,29z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="1.9409" y2="28.3052">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.179-5.82-13-13-13 S2,7.821,2,15c0,0.169,0.02,0.333,0.025,0.5C2.29,8.555,7.988,3,15,3z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M24.75,16.235c0,1.563-0.315,2.916-0.943,4.059c-0.762,1.408-1.864,2.115-3.307,2.115 c-1.401,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.542-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.098c0,1.377,0.477,2.068,1.436,2.068c0.782,0,1.385-0.541,1.807-1.62 c0.311-0.804,0.467-1.659,0.467-2.577c0-2.12-0.766-3.93-2.289-5.438c-1.523-1.509-3.352-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.963,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263V26c-2.688,0-4.987-0.956-6.891-2.865C6.204,21.22,5.25,18.918,5.25,16.235 c0-2.673,0.955-4.964,2.865-6.873C10.027,7.456,12.319,6.5,15,6.5c2.688,0,4.986,0.95,6.892,2.856 C23.796,11.257,24.75,13.552,24.75,16.235z M16.885,16.157c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.182,0.797,3.271,2.394,3.271C16.092,19.521,16.885,18.401,16.885,16.157z" opacity="0.2"/>
+<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.179-5.82-13-13-13 S2,7.821,2,15c0,0.169,0.02,0.333,0.025,0.5C2.29,8.555,7.988,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24.75,16.235c0,1.563-0.315,2.916-0.943,4.059c-0.762,1.408-1.864,2.115-3.307,2.115 c-1.401,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.542-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.098c0,1.377,0.477,2.068,1.436,2.068c0.782,0,1.385-0.541,1.807-1.62 c0.311-0.804,0.467-1.659,0.467-2.577c0-2.12-0.766-3.93-2.289-5.438c-1.523-1.509-3.352-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.963,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263V26c-2.688,0-4.987-0.956-6.891-2.865C6.204,21.22,5.25,18.918,5.25,16.235 c0-2.673,0.955-4.964,2.865-6.873C10.027,7.456,12.319,6.5,15,6.5c2.688,0,4.986,0.95,6.892,2.856 C23.796,11.257,24.75,13.552,24.75,16.235z M16.885,16.157c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.182,0.797,3.271,2.394,3.271C16.092,19.521,16.885,18.401,16.885,16.157z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M24.75,14.985c0,1.563-0.315,2.916-0.943,4.059c-0.762,1.408-1.864,2.115-3.307,2.115 c-1.401,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.542-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.098c0,1.377,0.477,2.068,1.436,2.068c0.782,0,1.385-0.541,1.807-1.62 c0.311-0.804,0.467-1.659,0.467-2.577c0-2.12-0.766-3.93-2.289-5.438c-1.523-1.509-3.352-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.963,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263v2.035c-2.688,0-4.987-0.956-6.891-2.865C6.204,19.97,5.25,17.668,5.25,14.985 c0-2.673,0.955-4.964,2.865-6.873C10.027,6.206,12.319,5.25,15,5.25c2.688,0,4.986,0.95,6.892,2.856 C23.796,10.007,24.75,12.302,24.75,14.985z M16.885,14.907c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.182,0.797,3.271,2.394,3.271C16.092,18.271,16.885,17.151,16.885,14.907z" fill="#FFFFFF"/>
<rect fill="none" height="30" width="30"/>
</g>
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S25.411,30,21,30L21,30z" opacity="0.6"/>
+<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S25.411,30,21,30L21,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="21" x2="21" y1="14.9683" y2="29.1646">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<circle cx="21" cy="22" fill="url(#SVGID_1__)" r="7"/>
-<path d="M22,21v-2h-5v8h4h1h3v-6H22z M21,25h-3v-1h3V25z M21,23h-3v-1h3V23z M18,21v-1h3v1H18z M24,25h-2v-1h2V25z M24,23h-2v-1h2V23z" opacity="0.2"/>
-<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5C27.986,22.334,28,22.169,28,22c0-3.865-3.134-7-7-7 s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C14.283,18.869,17.303,16,21,16z" fill="#FFFFFF" opacity="0.4"/>
+<path d="M22,21v-2h-5v8h4h1h3v-6H22z M21,25h-3v-1h3V25z M21,23h-3v-1h3V23z M18,21v-1h3v1H18z M24,25h-2v-1h2V25z M24,23h-2v-1h2V23z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5C27.986,22.334,28,22.169,28,22c0-3.865-3.134-7-7-7 s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C14.283,18.869,17.303,16,21,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<path d="M22,20v-2h-5v8h4h1h3v-6H22z M21,24h-3v-1h3V24z M21,22h-3v-1h3V22z M18,20v-1h3v1H18z M24,24h-2v-1h2V24z M24,22h-2v-1h2V22z" fill="#FFFFFF"/>
-<rect height="6" opacity="0.3" width="1" x="22" y="20"/>
+<rect fill-opacity="0.3" height="6" stroke-opacity="0.3" width="1" x="22" y="20"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_expand.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_expand.svg Thu May 27 13:10:59 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
<rect fill-opacity="0.6" height="30" stroke-opacity="0.6" width="30"/>
<rect fill="url(#SVGID_1_)" height="28" width="28" x="1" y="1"/>
@@ -9,15 +9,10 @@
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="28" x="1" y="28"/>
<polygon fill="#FFFFFF" points="23,12.88,16.99,12.88,16.99,7,12.99,7,12.99,12.88,7,12.88,7,16.88,12.99,16.88,12.99,23,16.99,23,16.99,16.88,23,16.88"/>
<defs>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1.175" y2="29.18">
-
<stop offset="0" stop-color="#4EDEFF"/>
-
<stop offset="1" stop-color="#048CC6"/>
-
</linearGradient>
-
</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fail.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fail.svg Thu May 27 13:10:59 2010 +0300
@@ -1,22 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M15,29C7.279,29,1,22.72,1,15S7.279,1,15,1c7.719,0,14,6.28,14,14S22.719,29,15,29L15,29z" fill-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9985" x2="14.9985" y1="4.7378" y2="61.75">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<circle cx="14.999" cy="15" fill="url(#SVGID_1_)" r="10"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="2" y2="27.9507">
- <stop offset="0" style="stop-color:#FF4D00"/>
- <stop offset="1" style="stop-color:#800000"/>
+<stop offset="0" style="stop-color:#FF4D00"/>
+<stop offset="1" style="stop-color:#800000"/>
</linearGradient>
<path d="M15,2C7.82,2,2,7.82,2,15s5.82,13,13,13s13-5.82,13-13S22.18,2,15,2z M15.001,6 c1.788,0,3.45,0.527,4.851,1.427L7.428,19.852C6.528,18.451,6,16.788,6,15C6,10.028,10.03,6,15.001,6z M15.001,24 c-1.929,0-3.711-0.611-5.176-1.645l12.53-12.531C23.389,11.289,24,13.071,24,15C24,19.971,19.971,24,15.001,24z" fill="url(#SVGID_2_)"/>
-<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" opacity="0.4"/>
+<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_family.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_family.svg Thu May 27 13:10:59 2010 +0300
@@ -1,40 +1,38 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M29.813,21.146c-0.169-0.236-0.379-0.376-1.244-0.929c-2.185-1.396-3.446-2.377-3.757-2.901 c0.68-0.589,1.246-1.319,1.624-2.104c0.813-1.688,0.663-5.425,0.645-5.798C27.081,7.225,24.279,5,22.265,5h-0.54 c-2.014,0-4.814,2.225-4.814,4.379c-0.015,0.417-0.122,4.122,0.633,5.807c0.357,0.799,0.924,1.544,1.627,2.145 c-0.295,0.47-1.26,1.247-2.865,2.314c-2.509-1.551-3.941-2.637-4.252-3.217c0.787-0.644,1.444-1.451,1.882-2.323 c0.923-1.842,0.751-5.937,0.729-6.349C14.664,5.396,11.545,3,9.303,3H8.686c-2.242,0-5.36,2.396-5.359,4.719 c-0.018,0.457-0.14,4.52,0.717,6.36c0.413,0.888,1.072,1.712,1.888,2.368c-0.353,0.61-1.813,1.707-4.353,3.268 c-0.967,0.593-1.201,0.742-1.38,0.982L0,20.963V27h30v-5.594L29.813,21.146z" opacity="0.6"/>
+<path d="M29.813,21.146c-0.169-0.236-0.379-0.376-1.244-0.929c-2.185-1.396-3.446-2.377-3.757-2.901 c0.68-0.589,1.246-1.319,1.624-2.104c0.813-1.688,0.663-5.425,0.645-5.798C27.081,7.225,24.279,5,22.265,5h-0.54 c-2.014,0-4.814,2.225-4.814,4.379c-0.015,0.417-0.122,4.122,0.633,5.807c0.357,0.799,0.924,1.544,1.627,2.145 c-0.295,0.47-1.26,1.247-2.865,2.314c-2.509-1.551-3.941-2.637-4.252-3.217c0.787-0.644,1.444-1.451,1.882-2.323 c0.923-1.842,0.751-5.937,0.729-6.349C14.664,5.396,11.545,3,9.303,3H8.686c-2.242,0-5.36,2.396-5.359,4.719 c-0.018,0.457-0.14,4.52,0.717,6.36c0.413,0.888,1.072,1.712,1.888,2.368c-0.353,0.61-1.813,1.707-4.353,3.268 c-0.967,0.593-1.201,0.742-1.38,0.982L0,20.963V27h30v-5.594L29.813,21.146z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8.9995" x2="8.9995" y1="4.041" y2="26.2553">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<path d="M10.998,16.347c-0.008-0.125,0-0.252,0.004-0.379c0.852-0.585,1.589-1.415,2.039-2.311 c0.831-1.661,0.623-5.901,0.623-5.901C13.664,6.026,11.023,4,9.303,4H8.686c-1.72,0-4.36,2.026-4.36,3.756 c0,0-0.155,4.226,0.624,5.901c0.425,0.912,1.178,1.752,2.049,2.335c0.003,0.117,0.011,0.237,0.004,0.354 C6.896,18.044,1.274,20.927,1,21.295V26h16v-4.701C16.725,20.93,11.104,18.044,10.998,16.347z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.9995" x2="8.9995" y1="4.041" y2="26.1808">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="0.7212" style="stop-color:#19A3D6"/>
- <stop offset="1" style="stop-color:#57CDFF"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="0.7212" style="stop-color:#19A3D6"/>
+<stop offset="1" style="stop-color:#57CDFF"/>
</linearGradient>
<path d="M10.998,16.347c-0.008-0.125,0-0.252,0.004-0.379c0.852-0.585,1.589-1.415,2.039-2.311 c0.831-1.661,0.623-5.901,0.623-5.901C13.664,6.026,11.023,4,9.303,4H8.686c-1.72,0-4.36,2.026-4.36,3.756 c0,0-0.155,4.226,0.624,5.901c0.425,0.912,1.178,1.752,2.049,2.335c0.003,0.117,0.011,0.237,0.004,0.354 C6.896,18.044,1.274,20.927,1,21.295V26h16v-4.701C16.725,20.93,11.104,18.044,10.998,16.347z M16.111,25.107H1.889v-3.358 c0.188-0.12,0.441-0.274,0.676-0.42c2.75-1.688,5.225-3.335,5.324-4.925c0.007-0.12,0.005-0.234,0-0.35l-0.01-0.465L7.49,15.248 c-0.756-0.505-1.389-1.225-1.736-1.971c-0.563-1.21-0.58-4.371-0.54-5.487c0.001-1.157,2.109-2.897,3.472-2.897h0.617 c1.363,0,3.473,1.74,3.473,2.863c0.076,1.594-0.001,4.444-0.529,5.498c-0.377,0.753-1.014,1.474-1.746,1.976l-0.374,0.258 l-0.013,0.455c-0.007,0.205-0.01,0.335-0.002,0.462c0.1,1.59,2.574,3.238,5.324,4.927c0.234,0.146,0.488,0.3,0.676,0.421V25.107z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="22" x2="22" y1="6.3789" y2="25.932">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="0.2606" style="stop-color:#DE4E29"/>
- <stop offset="1" style="stop-color:#D82E09"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="0.2606" style="stop-color:#DE4E29"/>
+<stop offset="1" style="stop-color:#D82E09"/>
</linearGradient>
<path d="M23.748,17.225c-0.007-0.115,0-0.23,0.004-0.346c0.744-0.531,1.391-1.286,1.783-2.102 c0.729-1.508,0.546-5.363,0.546-5.363C26.081,7.842,23.771,6,22.265,6h-0.54c-1.504,0-3.814,1.842-3.814,3.414 c0,0-0.137,3.842,0.545,5.363c0.371,0.83,1.031,1.594,1.793,2.124c0.003,0.107,0.01,0.217,0.004,0.323 c-0.094,1.543-5.012,4.162-5.252,4.498V26h14v-4.273C28.76,21.39,23.842,18.768,23.748,17.225z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="22" x2="22" y1="6.0371" y2="29.6193">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="0.2606" style="stop-color:#DE4E29"/>
- <stop offset="1" style="stop-color:#D86D56"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="0.2606" style="stop-color:#DE4E29"/>
+<stop offset="1" style="stop-color:#D86D56"/>
</linearGradient>
<path d="M23.748,17.225c-0.007-0.115,0-0.23,0.004-0.346c0.744-0.531,1.391-1.286,1.783-2.102 c0.729-1.508,0.546-5.363,0.546-5.363C26.081,7.842,23.771,6,22.265,6h-0.54c-1.504,0-3.814,1.842-3.814,3.414 c0,0-0.137,3.842,0.545,5.363c0.371,0.83,1.031,1.594,1.793,2.124c0.003,0.107,0.01,0.217,0.004,0.323 c-0.094,1.543-5.012,4.162-5.252,4.498V26h14v-4.273C28.76,21.39,23.842,18.768,23.748,17.225z M28.125,25.092h-12.25v-2.905 c0.158-0.104,0.361-0.233,0.551-0.354c2.984-1.904,4.617-3.194,4.699-4.551c0.006-0.115,0.004-0.223,0-0.332l-0.016-0.466 l-0.375-0.337c-0.647-0.451-1.189-1.091-1.484-1.753c-0.434-0.963-0.516-3.545-0.466-4.946c0.001-0.993,1.814-2.539,2.94-2.539h0.54 c1.127,0,2.941,1.546,2.941,2.506c0.066,1.443,0.001,4.016-0.453,4.955c-0.323,0.671-0.868,1.312-1.497,1.76l-0.365,0.262 l-0.014,0.46c-0.006,0.187-0.01,0.309-0.002,0.43c0.082,1.357,1.715,2.647,4.698,4.554c0.189,0.121,0.393,0.25,0.552,0.355V25.092z" fill="url(#SVGID_4_)"/>
-<path d="M7.972,27L8,25.972c0.074-2.631,1.977-3.813,3.234-4.596l0.156-0.097l1.674-0.842 c-0.006-0.009-0.012-0.018-0.018-0.026c-0.166-0.232-0.371-0.522-0.547-0.863c-0.744-1.44-0.995-2.394-0.995-3.775 c0-2.632,2.001-4.772,4.462-4.772h0.102c2.445,0.019,4.43,2.152,4.43,4.772c0,1.381-0.252,2.334-0.995,3.775 c-0.177,0.341-0.382,0.629-0.546,0.861c-0.015,0.02-0.029,0.041-0.045,0.063c0,0,1.6,0.973,1.746,1.06 c1.303,0.776,3.271,1.95,3.342,4.44L24.028,27H7.972z" opacity="0.6"/>
+<path d="M7.972,27L8,25.972c0.074-2.631,1.977-3.813,3.234-4.596l0.156-0.097l1.674-0.842 c-0.006-0.009-0.012-0.018-0.018-0.026c-0.166-0.232-0.371-0.522-0.547-0.863c-0.744-1.44-0.995-2.394-0.995-3.775 c0-2.632,2.001-4.772,4.462-4.772h0.102c2.445,0.019,4.43,2.152,4.43,4.772c0,1.381-0.252,2.334-0.995,3.775 c-0.177,0.341-0.382,0.629-0.546,0.861c-0.015,0.02-0.029,0.041-0.045,0.063c0,0,1.6,0.973,1.746,1.06 c1.303,0.776,3.271,1.95,3.342,4.44L24.028,27H7.972z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="16" x2="16" y1="25.8955" y2="4.0108">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#FCBA63"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FCBA63"/>
</linearGradient>
<path d="M23,26c-0.062-2.188-2.088-3.122-3.289-3.873l-1.715-1.043c-0.707-0.489,0.129-1.05,0.618-1.995 c0.724-1.402,0.884-2.181,0.884-3.316c0-2.063-1.536-3.772-3.463-3.772c-0.012,0-0.021,0.003-0.035,0.005 C15.989,12.003,15.979,12,15.967,12c-1.928,0-3.462,1.71-3.462,3.772c0,1.136,0.159,1.915,0.884,3.316 c0.488,0.947,1.324,1.506,0.617,1.995l-2.085,1.043C10.72,22.878,9.062,23.812,9,26H23z" fill="url(#SVGID_5_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_favorite.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_favorite.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
-<polygon opacity="0.6" points="15,0.734 19.635,10.126 30,11.632 22.5,18.943 24.27,29.266 15,24.393 5.73,29.266 7.5,18.943 0,11.632 10.365,10.126 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2.9937" y2="27.438">
- <stop offset="0" style="stop-color:#FFE896"/>
- <stop offset="1" style="stop-color:#FFB701"/>
-</linearGradient>
+<polygon fill-opacity="0.6" points="15,0.734 19.635,10.126 30,11.632 22.5,18.943 24.27,29.266 15,24.393 5.73,29.266 7.5,18.943 0,11.632 10.365,10.126 " stroke-opacity="0.6"/>
<polygon fill="url(#SVGID_1_)" points="15,23.262 7.058,27.438 8.574,18.594 2.149,12.331 11.029,11.04 15,2.994 18.971,11.04 27.852,12.331 21.426,18.594 22.941,27.438 "/>
<polygon fill="#FFFFFF" fill-opacity="0.4" points="11.693,11.954 15,5.253 18.307,11.954 26.959,13.201 27.852,12.331 18.971,11.04 15,2.994 11.029,11.04 2.149,12.331 3.042,13.201 "/>
<rect fill="none" height="30" width="30"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2.9937" y2="27.438">
+<stop offset="0" style="stop-color:#FFE896"/>
+<stop offset="1" style="stop-color:#FFB701"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fax.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fax.svg Thu May 27 13:10:59 2010 +0300
@@ -1,175 +1,91 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<path d="M26,8v-2h-1.586l-5-5h-14.41v5h-1v2c-1.654,0-3,1.346-3,3v8c0,1.654,1.346,3,3,3v3h1v4h20v-4h1v-3c1.654,0,3-1.346,3-3v-8c0-1.654-1.35-3-3-3z" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="7" y2="10">
-
<stop offset="0" stop-color="#808080"/>
-
-<stop offset="1" stop-color="#636363"/>
-
-</linearGradient>
-
-<rect fill="url(#SVGID_1_)" height="3" width="20" x="5" y="7"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="21" y2="24">
-
-<stop offset="0" stop-color="#808080"/>
-
<stop offset="1" stop-color="#636363"/>
-
</linearGradient>
-
+<rect fill="url(#SVGID_1_)" height="3" width="20" x="5" y="7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="21" y2="24">
+<stop offset="0" stop-color="#808080"/>
+<stop offset="1" stop-color="#636363"/>
+</linearGradient>
<rect fill="url(#SVGID_2_)" height="3" width="20" x="5" y="21"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="2.002" y2="28.06">
-
-<stop offset="0" stop-color="#EDEDED"/>
-
-<stop offset="1" stop-color="#BDBDBD"/>
-
-</linearGradient>
-
-<rect fill="url(#SVGID_3_)" height="10" width="18" x="6" y="18"/>
-
-<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="2" x="8" y="23.5"/>
-
-<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="11" x="11" y="23.5"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="2" y2="28.07">
-
<stop offset="0" stop-color="#EDEDED"/>
-
<stop offset="1" stop-color="#BDBDBD"/>
-
</linearGradient>
-
+<rect fill="url(#SVGID_3_)" height="10" width="18" x="6" y="18"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="2" x="8" y="23.5"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="11" x="11" y="23.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="2" y2="28.07">
+<stop offset="0" stop-color="#EDEDED"/>
+<stop offset="1" stop-color="#BDBDBD"/>
+</linearGradient>
<polygon fill="url(#SVGID_4_)" points="24,7,24,19,6,19,6,2,19,2"/>
-
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="2" x="8" y="5"/>
-
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="11" x="11" y="5"/>
-
<polygon fill="#FFFFFF" points="19,7,24,7,19,2"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="9.115" y2="21.01">
-
<stop offset="0" stop-color="#E6E6E6"/>
-
<stop offset="1" stop-color="#626262"/>
-
</linearGradient>
-
<path d="M28,19c0,1.1-0.9,2-2,2h-22c-1.1,0-2-0.9-2-2v-8c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2v8z" fill="url(#SVGID_5_)"/>
-
<path d="M26,9h-22c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2v-1c0-1.1-0.9-2-2-2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.5" x2="15.5" y1="11" y2="20.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_6_)" height="2" width="3" x="14" y="11"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="19.5" x2="19.5" y1="11" y2="20.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_7_)" height="2" width="3" x="18" y="11"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="23.5" x2="23.5" y1="11" y2="20.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_8_)" height="2" width="3" x="22" y="11"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="15.5" x2="15.5" y1="10" y2="19.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_9_)" height="2" width="3" x="14" y="14"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="19.5" x2="19.5" y1="10" y2="19.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_10_)" height="2" width="3" x="18" y="14"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="23.5" x2="23.5" y1="10" y2="19.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_11_)" height="2" width="3" x="22" y="14"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15.5" x2="15.5" y1="9" y2="18.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_12_)" height="2" width="3" x="14" y="17"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="19.5" x2="19.5" y1="9" y2="18.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_13_)" height="2" width="3" x="18" y="17"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="23.5" x2="23.5" y1="9" y2="18.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_14_)" height="2" width="3" x="22" y="17"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="8" x2="8" y1="11.19" y2="14.06">
-
<stop offset="0" stop-color="#30BCE8"/>
-
<stop offset="1" stop-color="#048CC6"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_15_)" height="3" width="8" x="4" y="11"/>
-
<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" x="5" y="8"/>
-
<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" x="5" y="21"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fax_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fax_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,197 +1,102 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<path d="M26,8v-2h-1.586l-5-5h-14.41v5h-1v2c-1.654,0-3,1.346-3,3v8c0,1.654,1.346,3,3,3v3h1v4h20v-4h1v-3c1.654,0,3-1.346,3-3v-8c0-1.654-1.35-3-3-3z" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="7" y2="10">
-
<stop offset="0" stop-color="#808080"/>
-
<stop offset="1" stop-color="#636363"/>
-
-</linearGradient>
-
-<rect fill="url(#SVGID_1_)" height="3" width="20" x="5" y="7"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="21" y2="24">
-
-<stop offset="0" stop-color="#808080"/>
-
-<stop offset="1" stop-color="#636363"/>
-
</linearGradient>
-
+<rect fill="url(#SVGID_1_)" height="3" width="20" x="5" y="7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="21" y2="24">
+<stop offset="0" stop-color="#808080"/>
+<stop offset="1" stop-color="#636363"/>
+</linearGradient>
<rect fill="url(#SVGID_2_)" height="3" width="20" x="5" y="21"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="2.002" y2="28.06">
-
<stop offset="0" stop-color="#EDEDED"/>
-
<stop offset="1" stop-color="#BDBDBD"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_3_)" height="10" width="18" x="6" y="18"/>
-
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="2" x="8" y="23.5"/>
-
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="11" x="11" y="23.5"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="2" y2="28.07">
-
<stop offset="0" stop-color="#EDEDED"/>
-
<stop offset="1" stop-color="#BDBDBD"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_4_)" points="24,7,24,19,6,19,6,2,19,2"/>
-
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="2" x="8" y="5"/>
-
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="11" x="11" y="5"/>
-
<polygon fill="#FFFFFF" points="19,7,24,7,19,2"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="9.115" y2="21.01">
-
<stop offset="0" stop-color="#E6E6E6"/>
-
<stop offset="1" stop-color="#626262"/>
-
</linearGradient>
-
<path d="M28,19c0,1.1-0.9,2-2,2h-22c-1.1,0-2-0.9-2-2v-8c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2v8z" fill="url(#SVGID_5_)"/>
-
<path d="M26,9h-22c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2v-1c0-1.1-0.9-2-2-2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.5" x2="15.5" y1="11" y2="20.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_6_)" height="2" width="3" x="14" y="11"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="19.5" x2="19.5" y1="11" y2="20.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_7_)" height="2" width="3" x="18" y="11"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="23.5" x2="23.5" y1="11" y2="20.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_8_)" height="2" width="3" x="22" y="11"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="15.5" x2="15.5" y1="10" y2="19.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_9_)" height="2" width="3" x="14" y="14"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="19.5" x2="19.5" y1="10" y2="19.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_10_)" height="2" width="3" x="18" y="14"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="23.5" x2="23.5" y1="10" y2="19.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_11_)" height="2" width="3" x="22" y="14"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15.5" x2="15.5" y1="9" y2="18.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_12_)" height="2" width="3" x="14" y="17"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="19.5" x2="19.5" y1="9" y2="18.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_13_)" height="2" width="3" x="18" y="17"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="23.5" x2="23.5" y1="9" y2="18.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_14_)" height="2" width="3" x="22" y="17"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="8" x2="8" y1="11.19" y2="14.06">
-
<stop offset="0" stop-color="#30BCE8"/>
-
<stop offset="1" stop-color="#048CC6"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_15_)" height="3" width="8" x="4" y="11"/>
-
<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" x="5" y="8"/>
-
<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" x="5" y="21"/>
-
<rect fill="none" height="30" width="30"/>
-
<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="22" x2="22" y1="14.97" y2="29.16">
-
<stop offset="0" stop-color="#4EDEFF"/>
-
<stop offset="1" stop-color="#048CC6"/>
-
</linearGradient>
-
<circle cx="22" cy="22" fill="url(#SVGID_16_)" r="7"/>
-
<polygon fill-opacity="0.2" points="26.34,24,22,19.4,17.66,24,17,23.3,22,18,27,23.3,26.34,24" stroke-opacity="0.2"/>
-
<polygon fill-opacity="0.2" points="22,20.86,18,25.1,18,27,21,27,21,24,23,24,23,27,26,27,26,25.1" stroke-opacity="0.2"/>
-
<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-
<polygon fill="#FFFFFF" points="26.34,23,22,18.4,17.66,23,17,22.3,22,17,27,22.3,26.34,23"/>
-
<polygon fill="#FFFFFF" points="22,19.86,18,24.1,18,26,21,26,21,23,23,23,23,26,26,26,26,24.1"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fax_work.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fax_work.svg Thu May 27 13:10:59 2010 +0300
@@ -1,195 +1,101 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<path d="M26,8v-2h-1.586l-5-5h-14.41v5h-1v2c-1.654,0-3,1.346-3,3v8c0,1.654,1.346,3,3,3v3h1v4h20v-4h1v-3c1.654,0,3-1.346,3-3v-8c0-1.654-1.35-3-3-3z" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="7" y2="10">
-
<stop offset="0" stop-color="#808080"/>
-
<stop offset="1" stop-color="#636363"/>
-
-</linearGradient>
-
-<rect fill="url(#SVGID_1_)" height="3" width="20" x="5" y="7"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="21" y2="24">
-
-<stop offset="0" stop-color="#808080"/>
-
-<stop offset="1" stop-color="#636363"/>
-
</linearGradient>
-
-<rect fill="url(#SVGID_2_)" height="3" width="20" x="5" y="21"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="2.002" y2="28.06">
-
-<stop offset="0" stop-color="#EDEDED"/>
-
-<stop offset="1" stop-color="#BDBDBD"/>
-
+<rect fill="url(#SVGID_1_)" height="3" width="20" x="5" y="7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="21" y2="24">
+<stop offset="0" stop-color="#808080"/>
+<stop offset="1" stop-color="#636363"/>
</linearGradient>
-
-<rect fill="url(#SVGID_3_)" height="10" width="18" x="6" y="18"/>
-
-<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="2" x="8" y="23.5"/>
-
-<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="11" x="11" y="23.5"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="2" y2="28.07">
-
+<rect fill="url(#SVGID_2_)" height="3" width="20" x="5" y="21"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="2.002" y2="28.06">
<stop offset="0" stop-color="#EDEDED"/>
-
<stop offset="1" stop-color="#BDBDBD"/>
-
</linearGradient>
-
+<rect fill="url(#SVGID_3_)" height="10" width="18" x="6" y="18"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="2" x="8" y="23.5"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="11" x="11" y="23.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="2" y2="28.07">
+<stop offset="0" stop-color="#EDEDED"/>
+<stop offset="1" stop-color="#BDBDBD"/>
+</linearGradient>
<polygon fill="url(#SVGID_4_)" points="24,7,24,19,6,19,6,2,19,2"/>
-
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="2" x="8" y="5"/>
-
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="11" x="11" y="5"/>
-
<polygon fill="#FFFFFF" points="19,7,24,7,19,2"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="9.115" y2="21.01">
-
<stop offset="0" stop-color="#E6E6E6"/>
-
<stop offset="1" stop-color="#626262"/>
-
</linearGradient>
-
<path d="M28,19c0,1.1-0.9,2-2,2h-22c-1.1,0-2-0.9-2-2v-8c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2v8z" fill="url(#SVGID_5_)"/>
-
<path d="M26,9h-22c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2v-1c0-1.1-0.9-2-2-2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.5" x2="15.5" y1="11" y2="20.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_6_)" height="2" width="3" x="14" y="11"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="19.5" x2="19.5" y1="11" y2="20.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_7_)" height="2" width="3" x="18" y="11"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="23.5" x2="23.5" y1="11" y2="20.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_8_)" height="2" width="3" x="22" y="11"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="15.5" x2="15.5" y1="10" y2="19.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_9_)" height="2" width="3" x="14" y="14"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="19.5" x2="19.5" y1="10" y2="19.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_10_)" height="2" width="3" x="18" y="14"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="23.5" x2="23.5" y1="10" y2="19.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_11_)" height="2" width="3" x="22" y="14"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15.5" x2="15.5" y1="9" y2="18.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_12_)" height="2" width="3" x="14" y="17"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="19.5" x2="19.5" y1="9" y2="18.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_13_)" height="2" width="3" x="18" y="17"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="23.5" x2="23.5" y1="9" y2="18.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_14_)" height="2" width="3" x="22" y="17"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="8" x2="8" y1="11.19" y2="14.06">
-
<stop offset="0" stop-color="#30BCE8"/>
-
<stop offset="1" stop-color="#048CC6"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_15_)" height="3" width="8" x="4" y="11"/>
-
<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" x="5" y="8"/>
-
<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" x="5" y="21"/>
-
<rect fill="none" height="30" width="30"/>
-
<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="22" x2="22" y1="14.97" y2="29.16">
-
<stop offset="0" stop-color="#4EDEFF"/>
-
<stop offset="1" stop-color="#048CC6"/>
-
</linearGradient>
-
<circle cx="22" cy="22" fill="url(#SVGID_16_)" r="7"/>
-
<path d="M23,21v-2h-5v8h8v-6h-3zm-1,4h-3v-1h3v1zm0-2h-3v-1h3v1zm-3-2v-1h3v1h-3zm6,4h-2v-1h2v1zm0-2h-2v-1h2v1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-
<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-
<path d="M23,20v-2h-5v8h8v-6h-3zm-1,4h-3v-1h3v1zm0-2h-3v-1h3v1zm-3-2v-1h3v1h-3zm6,4h-2v-1h2v1zm0-2h-2v-1h2v1z" fill="#FFFFFF"/>
-
<rect fill-opacity="0.3" height="6" stroke-opacity="0.3" width="1" x="23" y="20"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_flash.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_flash.svg Thu May 27 13:10:59 2010 +0300
@@ -1,39 +1,39 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
-<path d="M15,29C7.281,29,1,22.72,1,15S7.281,1,15,1c7.72,0,14,6.28,14,14S22.72,29,15,29L15,29z" opacity="0.6"/>
+<path d="M15,29C7.281,29,1,22.72,1,15S7.281,1,15,1c7.72,0,14,6.28,14,14S22.72,29,15,29L15,29z" fill-opacity="0.6" stroke-opacity="0.6"/>
<radialGradient cx="-2686.7461" cy="511.4414" gradientTransform="matrix(2.2479 0 0 -2.2479 6054.5376 1164.6696)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="5.7832">
- <stop offset="0" style="stop-color:#C7D4E6"/>
- <stop offset="0.2865" style="stop-color:#C7D4E6"/>
- <stop offset="0.6966" style="stop-color:#7288A2"/>
- <stop offset="1" style="stop-color:#2B3842"/>
+<stop offset="0" style="stop-color:#C7D4E6"/>
+<stop offset="0.2865" style="stop-color:#C7D4E6"/>
+<stop offset="0.6966" style="stop-color:#7288A2"/>
+<stop offset="1" style="stop-color:#2B3842"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<linearGradient gradientTransform="matrix(1.1364 0 0 -1.1364 895.5911 -433.8352)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-774.8306" x2="-774.8306" y1="-391.5132" y2="-384.2012">
- <stop offset="0" style="stop-color:#627995"/>
- <stop offset="0.8708" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
-</linearGradient>
<path d="M5.477,10.928c7.065-12.188,17.325-4.704,19.199,0.142c0.002,0.021,0.018,0.011,0.012-0.013 c-0.629-4.677-4.697-8.285-9.623-8.285c-4.878,0-8.917,3.539-9.604,8.15C5.455,10.953,5.471,10.961,5.477,10.928z" fill="url(#SVGID_2_)"/>
<radialGradient cx="-2686.8755" cy="522.4854" gradientTransform="matrix(2.2479 0 0 -2.2479 6054.5376 1164.6696)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="10.0661">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.4831" style="stop-color:#FFFFFF"/>
- <stop offset="0.8989" style="stop-color:#627995"/>
- <stop offset="1" style="stop-color:#3F607E"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.4831" style="stop-color:#FFFFFF"/>
+<stop offset="0.8989" style="stop-color:#627995"/>
+<stop offset="1" style="stop-color:#3F607E"/>
</radialGradient>
<path d="M15.064,3.238c-4.846,0-8.86,3.455-9.59,7.695c2.184,1.027,3.792-1.483,8.994-1.164 c4.73,0.206,8.146,2.484,10.203,1.305C24.012,6.768,19.962,3.238,15.064,3.238z" fill="url(#SVGID_3_)"/>
<path d="M20.242,6.594c-4.72,0-6.709,3.967-7.915,7.425c-1.269,3.636-2.079,4.225-3.53,4.225H8.366 c-0.334,0-0.603,0.269-0.603,0.603v3.336c0,0.336,0.269,0.604,0.603,0.604h0.431c4.315,0,6.17-3.007,7.272-5.78 c0.641,0,3.104,0,3.104,0c0.335,0,0.604-0.269,0.604-0.604v-3.336c0-0.335-0.27-0.604-0.604-0.604c0,0-0.561,0-1.123,0 c0.779-1.129,1.514-1.323,2.192-1.323h0.431c0.333,0,0.603-0.271,0.603-0.605V7.197c0-0.331-0.27-0.604-0.603-0.604H20.242 L20.242,6.594z" fill="#1F2430"/>
<radialGradient cx="-2686.96" cy="511.5801" gradientTransform="matrix(2.2479 0 0 -2.2479 6054.5376 1164.6696)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="3.0503">
- <stop offset="0" style="stop-color:#1F2430"/>
- <stop offset="0.1011" style="stop-color:#1F2430"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#1F2430"/>
+<stop offset="0.1011" style="stop-color:#1F2430"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</radialGradient>
<path d="M20.242,7.195c-4.314,0-6.133,3.549-7.346,7.021l0,0c-1.252,3.592-2.171,4.63-4.1,4.63H8.366v3.338 h0.431c4.063,0,5.767-2.876,6.86-5.783c0.495,0,3.517,0,3.517,0v-3.335c0,0-1.478,0-2.188,0c0.909-1.781,1.877-2.532,3.254-2.532 h0.433V7.197h-0.431V7.195z" fill="url(#SVGID_4_)"/>
<path d="M13.201,14.323L13.201,14.323c-1.146,3.284-2.076,4.846-4.512,4.846v2.69c4.125,0,5.691-2.909,6.743-5.779 c0.142,0,3.413,0,3.413,0v-2.693c0,0-2.079,0-2.375,0c1.023-2.216,2.127-3.176,3.876-3.176v-2.69 C16.094,7.521,14.377,10.959,13.201,14.323z" fill="#FFFFFF"/>
<path d="M15.064,3.238c-4.846,0-8.86,3.455-9.59,7.695c2.184,1.027,3.792-1.483,8.994-1.164 c4.73,0.206,8.146,2.484,10.203,1.305C24.012,6.768,19.962,3.238,15.064,3.238z" fill="#FFFFFF" fill-opacity="0.3"/>
<rect fill="none" height="30" width="30"/>
+<defs>
+<linearGradient gradientTransform="matrix(1.1364 0 0 -1.1364 895.5911 -433.8352)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-774.8306" x2="-774.8306" y1="-391.5132" y2="-384.2012">
+<stop offset="0" style="stop-color:#627995"/>
+<stop offset="0.8708" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_folder.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_folder.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
-<polygon opacity="0.6" points="1,27 1,3 14,3 14,6 29,6 29,27 "/>
+<polygon fill-opacity="0.6" points="1,27 1,3 14,3 14,6 29,6 29,27 " stroke-opacity="0.6"/>
<polygon fill="#FEAB29" points="13,7 13,4 2,4 2,26 28,26 28,7 "/>
<rect fill="#FFFFFF" height="1" width="15" x="13" y="7"/>
<rect fill="#FFFFFF" height="1" width="11" x="2" y="4"/>
+<rect fill="url(#SVGID_1_)" height="16" width="26" x="2" y="10"/>
+<rect fill="#FFFFFF" fill-opacity="0.6" height="1" stroke-opacity="0.6" width="26" x="2" y="10"/>
+<rect fill="none" height="30" width="30"/>
+<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="10.7192" y2="25.8892">
- <stop offset="0" style="stop-color:#FEE06A"/>
- <stop offset="0.9091" style="stop-color:#FFC501"/>
- <stop offset="1" style="stop-color:#FFB701"/>
+<stop offset="0" style="stop-color:#FEE06A"/>
+<stop offset="0.9091" style="stop-color:#FFC501"/>
+<stop offset="1" style="stop-color:#FFB701"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="16" width="26" x="2" y="10"/>
-<rect fill="#FFFFFF" height="1" opacity="0.6" width="26" x="2" y="10"/>
-<rect fill="none" height="30" width="30"/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_follow_up.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_follow_up.svg Thu May 27 13:10:59 2010 +0300
@@ -1,31 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M26.618,6.5H21.25c-0.896,0-1.607-0.439-2.508-0.996C17.602,4.799,16.309,4,14.375,4H11V1H4v4h1v24h5 V18.5h4.375c1.366,0,2.313,0.585,3.315,1.205C18.721,20.342,19.785,21,21.25,21h5.368l-3.625-7.25L26.618,6.5z" fill-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.7227" x2="9.9584" y1="12.5005" y2="12.5005">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="0.2606" style="stop-color:#DE4E29"/>
- <stop offset="1" style="stop-color:#D82E09"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="0.2606" style="stop-color:#DE4E29"/>
+<stop offset="1" style="stop-color:#D82E09"/>
</linearGradient>
<path d="M21.875,13.75L25,20c0,0-2.5,0-3.75,0c-2.5,0-3.75-2.5-6.875-2.5c-0.625,0-4.375,0-4.375,0V5 c0,0,3.75,0,4.375,0C17.5,5,18.75,7.5,21.25,7.5c1.25,0,3.75,0,3.75,0L21.875,13.75z" fill="url(#SVGID_1_)"/>
-<path d="M21.625,14.25L24.5,20c0.304,0,0.5,0,0.5,0l-3.125-6.25L21.625,14.25z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M21.25,8.5c0.903,0,2.457,0,3.25,0l0.5-1c0,0-2.5,0-3.75,0c-2.5,0-3.75-2.5-6.875-2.5 C13.75,5,10,5,10,5v1c0,0,3.75,0,4.375,0C17.5,6,18.75,8.5,21.25,8.5z" fill="#FFFFFF" opacity="0.4"/>
+<path d="M21.625,14.25L24.5,20c0.304,0,0.5,0,0.5,0l-3.125-6.25L21.625,14.25z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M21.25,8.5c0.903,0,2.457,0,3.25,0l0.5-1c0,0-2.5,0-3.75,0c-2.5,0-3.75-2.5-6.875-2.5 C13.75,5,10,5,10,5v1c0,0,3.75,0,4.375,0C17.5,6,18.75,8.5,21.25,8.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="9" x2="6.0412" y1="15.9995" y2="15.9995">
- <stop offset="0" style="stop-color:#8C8E8F"/>
- <stop offset="0.6545" style="stop-color:#D9D9D9"/>
- <stop offset="1" style="stop-color:#AEB2B3"/>
+<stop offset="0" style="stop-color:#8C8E8F"/>
+<stop offset="0.6545" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#AEB2B3"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="24" width="3" x="6" y="4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.9585" x2="5.0415" y1="3" y2="3">
- <stop offset="0" style="stop-color:#4F4F4F"/>
- <stop offset="0.589" style="stop-color:#BFBFBF"/>
- <stop offset="1" style="stop-color:#6B6B6B"/>
+<stop offset="0" style="stop-color:#4F4F4F"/>
+<stop offset="0.589" style="stop-color:#BFBFBF"/>
+<stop offset="1" style="stop-color:#6B6B6B"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="2" width="5" x="5" y="2"/>
-<rect height="1" opacity="0.2" width="3" x="6" y="4"/>
+<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="3" x="6" y="4"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_forward.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_forward.svg Thu May 27 13:10:59 2010 +0300
@@ -1,18 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<polygon fill-opacity="0.6" points="15,20 1,20 1,10 15,10 15,2.865 29.563,15 15,27.135 "/>
+<polygon fill="url(#SVGID_1_)" points="16,19 2,19 2,11 16,11 16,5 28,15 16,25 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="16,6.135 16,5 28,15 27.319,15.567 " stroke-opacity="0.5"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="1.135" stroke-opacity="0.5" width="14" x="2" y="11"/>
+<rect fill="none" height="30" width="30"/>
+<defs>
<linearGradient gradientTransform="matrix(-1 0 0 1 594 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="579" x2="579" y1="4.8848" y2="25.2603">
- <stop offset="0" style="stop-color:#FEE06A"/>
- <stop offset="1" style="stop-color:#FFB701"/>
+<stop offset="0" style="stop-color:#FEE06A"/>
+<stop offset="1" style="stop-color:#FFB701"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="16,19 2,19 2,11 16,11 16,5 28,15 16,25 "/>
-<polygon fill="#FFFFFF" opacity="0.5" points="16,6.135 16,5 28,15 27.319,15.567 "/>
-<rect fill="#FFFFFF" height="1.135" opacity="0.5" width="14" x="2" y="11"/>
-<rect fill="none" height="30" width="30"/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_gprs.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_gprs.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14C29,22.719,22.719,29,15,29 L15,29z" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2.2749" y2="32.0078">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
-</linearGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.168,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.168,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" opacity="0.4"/>
-<polygon opacity="0.2" points="25.839,14.5 7.454,14.5 7.454,11.5 20.253,11.5 18.975,9.57 21.476,7.914 25.839,14.5 "/>
-<polygon opacity="0.2" points="6.454,16.5 24.839,16.5 24.839,19.5 12.04,19.5 13.318,21.428 10.817,23.086 6.454,16.5 "/>
+<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.168,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.168,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="25.839,14.5 7.454,14.5 7.454,11.5 20.253,11.5 18.975,9.57 21.476,7.914 25.839,14.5 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="6.454,16.5 24.839,16.5 24.839,19.5 12.04,19.5 13.318,21.428 10.817,23.086 6.454,16.5 " stroke-opacity="0.2"/>
<polygon fill="#FFFFFF" points="24.839,13.5 6.454,13.5 6.454,10.5 19.253,10.5 17.975,8.57 20.476,6.914 24.839,13.5 "/>
<polygon fill="#FFFFFF" points="5.454,15.5 23.839,15.5 23.839,18.5 11.04,18.5 12.318,20.428 9.817,22.086 5.454,15.5 "/>
<rect fill="none" height="30" width="30"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2.2749" y2="32.0078">
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_homescreen.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_homescreen.svg Thu May 27 13:10:59 2010 +0300
@@ -1,67 +1,65 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2.5088" y2="28.7349">
- <stop offset="0" style="stop-color:#A5A7AA"/>
- <stop offset="1" style="stop-color:#221F1F"/>
+<stop offset="0" style="stop-color:#A5A7AA"/>
+<stop offset="1" style="stop-color:#221F1F"/>
</linearGradient>
-<path d="M15,28.307c-7.168,0-13-5.831-13-13c0-7.167,5.832-13,13-13c7.17,0,13,5.833,13,13 C28,22.476,22.17,28.307,15,28.307L15,28.307z" fill="url(#SVGID_1_)" opacity="0.2"/>
+<path d="M15,28.307c-7.168,0-13-5.831-13-13c0-7.167,5.832-13,13-13c7.17,0,13,5.833,13,13 C28,22.476,22.17,28.307,15,28.307L15,28.307z" fill="url(#SVGID_1_)" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.0005" x2="15.0005" y1="2.8374" y2="28.3903">
- <stop offset="0" style="stop-color:#A8A9AC"/>
- <stop offset="1" style="stop-color:#000000"/>
+<stop offset="0" style="stop-color:#A8A9AC"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M15,27.973c-6.984,0-12.666-5.683-12.666-12.667C2.334,8.321,8.016,2.639,15,2.639 s12.668,5.682,12.668,12.667C27.668,22.29,21.984,27.973,15,27.973L15,27.973z" fill="url(#SVGID_2_)" opacity="0.4"/>
+<path d="M15,27.973c-6.984,0-12.666-5.683-12.666-12.667C2.334,8.321,8.016,2.639,15,2.639 s12.668,5.682,12.668,12.667C27.668,22.29,21.984,27.973,15,27.973L15,27.973z" fill="url(#SVGID_2_)" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="2.6943" y2="27.3623">
- <stop offset="0" style="stop-color:#F4F5F5"/>
- <stop offset="0.7818" style="stop-color:#CCCBCB"/>
- <stop offset="1" style="stop-color:#D0D0D1"/>
+<stop offset="0" style="stop-color:#F4F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCBCB"/>
+<stop offset="1" style="stop-color:#D0D0D1"/>
</linearGradient>
<circle cx="15" cy="14.973" fill="url(#SVGID_3_)" r="12.334"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.0005" x2="15.0005" y1="3.1831" y2="26.6896">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#DEDEDD"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#DEDEDD"/>
</linearGradient>
<path d="M15,3.639c6.25,0,11.334,5.084,11.334,11.333S21.25,26.307,15,26.307S3.666,21.222,3.666,14.973 S8.75,3.639,15,3.639 M15,3.306c-6.432,0-11.666,5.234-11.666,11.667C3.334,21.406,8.568,26.64,15,26.64 c6.434,0,11.668-5.233,11.668-11.667C26.668,8.54,21.434,3.306,15,3.306L15,3.306z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.9995" x2="14.9995" y1="2.5444" y2="27.4902">
- <stop offset="0" style="stop-color:#E2E2E2"/>
- <stop offset="1" style="stop-color:#99999A"/>
+<stop offset="0" style="stop-color:#E2E2E2"/>
+<stop offset="1" style="stop-color:#99999A"/>
</linearGradient>
<path d="M15,2.973c6.617,0,12,5.383,12,12c0,6.618-5.383,12.001-12,12.001S3,21.591,3,14.973 C3,8.356,8.383,2.973,15,2.973 M15,2.639c-6.811,0-12.334,5.523-12.334,12.333c0,6.812,5.523,12.334,12.334,12.334 c6.813,0,12.334-5.522,12.334-12.334C27.334,8.162,21.813,2.639,15,2.639L15,2.639z" fill="url(#SVGID_5_)"/>
<polygon fill="#020202" points="14.916,7.065 6,13.421 7.061,15.624 14.916,9.843 22.773,15.624 24,13.582 "/>
<polygon fill="#020202" points="8.496,16.097 8.496,22.863 13.158,22.863 13.158,19.516 16.762,19.516 16.762,22.863 21.375,22.863 21.375,16.097 14.936,11.376 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.9995" x2="14.9995" y1="6.6069" y2="22.331">
- <stop offset="0" style="stop-color:#2143F2"/>
- <stop offset="1" style="stop-color:#0ABDD0"/>
+<stop offset="0" style="stop-color:#2143F2"/>
+<stop offset="1" style="stop-color:#0ABDD0"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="14.916,6.337 6,12.693 7.061,14.896 14.916,9.115 22.773,14.896 24,12.854 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.9878" x2="14.9878" y1="6.6958" y2="13.1186">
- <stop offset="0" style="stop-color:#3067FC"/>
- <stop offset="1" style="stop-color:#0D98A9"/>
+<stop offset="0" style="stop-color:#3067FC"/>
+<stop offset="1" style="stop-color:#0D98A9"/>
</linearGradient>
<path d="M14.914,7.221l8.131,5.832l-0.48,0.797l-7.436-5.47l-0.213-0.156L14.703,8.38l-7.371,5.425 l-0.42-0.877L14.914,7.221 M14.916,6.778L6.455,12.81l0.74,1.541l7.721-5.682l7.752,5.704l0.854-1.419L14.916,6.778L14.916,6.778z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="14.9351" x2="14.9351" y1="5.8877" y2="22.3399">
- <stop offset="0" style="stop-color:#2143F2"/>
- <stop offset="1" style="stop-color:#0ABDD0"/>
+<stop offset="0" style="stop-color:#2143F2"/>
+<stop offset="1" style="stop-color:#0ABDD0"/>
</linearGradient>
<polygon fill="url(#SVGID_8_)" points="8.496,15.37 8.496,22.135 13.158,22.135 13.158,18.788 16.762,18.788 16.762,22.135 21.375,22.135 21.375,15.37 14.936,10.648 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.9351" x2="14.9351" y1="11.1875" y2="21.9653">
- <stop offset="0" style="stop-color:#2167FC"/>
- <stop offset="1" style="stop-color:#0D98A9"/>
+<stop offset="0" style="stop-color:#2167FC"/>
+<stop offset="1" style="stop-color:#0D98A9"/>
</linearGradient>
<path d="M14.936,11.54l5.721,4.194v5.682h-3.178v-2.987v-0.359h-0.359h-4.318h-0.359v0.359v2.987H9.215 v-5.682L14.936,11.54 M14.936,11.094l-6.08,4.458v6.224h3.945v-3.347h4.318v3.347h3.896v-6.224L14.936,11.094L14.936,11.094z" fill="url(#SVGID_9_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="14.9995" x2="14.9995" y1="6.5171" y2="14.0168">
- <stop offset="0" style="stop-color:#109AAF"/>
- <stop offset="1" style="stop-color:#0C8C9C"/>
+<stop offset="0" style="stop-color:#109AAF"/>
+<stop offset="1" style="stop-color:#0C8C9C"/>
</linearGradient>
<path d="M14.916,6.778l8.605,6.176l-0.854,1.419l-7.539-5.547l-0.213-0.157l-0.213,0.157l-7.508,5.525 l-0.74-1.541L14.916,6.778 M14.916,6.337L6,12.693l1.061,2.203l7.855-5.782l7.857,5.782L24,12.854L14.916,6.337L14.916,6.337z" fill="url(#SVGID_10_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="14.9351" x2="14.9351" y1="10.7378" y2="22.3243">
- <stop offset="0" style="stop-color:#109AAF"/>
- <stop offset="1" style="stop-color:#0C8C9C"/>
+<stop offset="0" style="stop-color:#109AAF"/>
+<stop offset="1" style="stop-color:#0C8C9C"/>
</linearGradient>
<path d="M14.936,11.094l6.08,4.458v6.224h-3.896v-2.987v-0.359h-0.357h-3.604h-0.357v0.359v2.987H8.855 v-6.224L14.936,11.094 M14.936,10.648L8.496,15.37v6.765h4.662v-3.347h3.604v3.347h4.613V15.37L14.936,10.648L14.936,10.648z" fill="url(#SVGID_11_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_hs_offline.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_hs_offline.svg Thu May 27 13:10:59 2010 +0300
@@ -1,80 +1,70 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14C29,22.719,22.719,29,15,29 L15,29z" fill-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2.2749" y2="32.0078">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.168,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.168,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" opacity="0.4"/>
-<polygon opacity="0.2" points="25.839,14.5 7.454,14.5 7.454,11.5 20.253,11.5 18.975,9.57 21.476,7.914 25.839,14.5 "/>
-<polygon opacity="0.2" points="6.454,16.5 24.839,16.5 24.839,19.5 12.04,19.5 13.318,21.428 10.817,23.086 6.454,16.5 "/>
+<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.168,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.168,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="25.839,14.5 7.454,14.5 7.454,11.5 20.253,11.5 18.975,9.57 21.476,7.914 25.839,14.5 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="6.454,16.5 24.839,16.5 24.839,19.5 12.04,19.5 13.318,21.428 10.817,23.086 6.454,16.5 " stroke-opacity="0.2"/>
<polygon fill="#FFFFFF" points="24.839,13.5 6.454,13.5 6.454,10.5 19.253,10.5 17.975,8.57 20.476,6.914 24.839,13.5 "/>
<polygon fill="#FFFFFF" points="5.454,15.5 23.839,15.5 23.839,18.5 11.04,18.5 12.318,20.428 9.817,22.086 5.454,15.5 "/>
<rect fill="none" height="30" width="30"/>
</g>
<g>
-<defs>
-</defs>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.8975)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="274.9814" x2="274.9814" y1="-359.3721" y2="-352.3351">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.66" style="stop-color:#E0E1E2"/>
- <stop offset="1" style="stop-color:#B9BCBD"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.66" style="stop-color:#E0E1E2"/>
+<stop offset="1" style="stop-color:#B9BCBD"/>
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="12.601,28.542 2.4,28.542 2.4,22.27 7.5,18.343 12.601,22.27 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.8975)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="274.9795" x2="274.9795" y1="-354.4097" y2="-359.3443">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.66" style="stop-color:#E0E1E2"/>
- <stop offset="1" style="stop-color:#B9BCBD"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.66" style="stop-color:#E0E1E2"/>
+<stop offset="1" style="stop-color:#B9BCBD"/>
</linearGradient>
<path d="M7.5,18.857l4.693,3.613v5.665H2.809v-5.666L7.5,18.857 M7.5,18.343L2.4,22.27v6.273h10.2V22.27 L7.5,18.343L7.5,18.343z" fill="url(#SVGID_2_)"/>
-<polygon enable-background="new " opacity="0.2" points="12.601,23.826 12.601,22.27 7.5,18.343 2.4,22.27 2.4,23.952 7.5,19.872 "/>
+<polygon fill-opacity="0.2" points="12.601,23.826 12.601,22.27 7.5,18.343 2.4,22.27 2.4,23.952 7.5,19.872 " stroke-opacity="0.2"/>
<polygon fill="#727272" points="12.601,23.826 12.601,22.27 7.5,18.343 2.4,22.27 2.4,23.952 7.5,18.853 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.8975)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="274.9805" x2="274.9805" y1="-354.707" y2="-359.5847">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="4.59" width="3.061" x="5.971" y="23.952"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.8975)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="274.9814" x2="274.9814" y1="-359.4072" y2="-354.8671">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<path d="M8.622,24.36v3.774H6.378V24.36H8.622 M9.031,23.952H5.971v4.59h3.061V23.952L9.031,23.952z" fill="url(#SVGID_4_)"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.8975)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="274.9795" x2="274.9795" y1="-346.8545" y2="-354.5899">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="0.26" style="stop-color:#DE4E29"/>
- <stop offset="1" style="stop-color:#D82E09"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="0.26" style="stop-color:#DE4E29"/>
+<stop offset="1" style="stop-color:#D82E09"/>
</linearGradient>
<path d="M7.5,18.343l5.101,5.1l1.02-1.02c0,0-5.502-5.488-5.759-5.76c-0.255-0.271-0.422-0.285-0.738,0.016 C6.81,16.979,1.38,22.422,1.38,22.422l1.021,1.02L7.5,18.343z" fill="url(#SVGID_5_)"/>
<radialGradient cx="-3057.9365" cy="-384.3403" gradientTransform="matrix(0.125 0 0 -0.125 389.692 -31.3322)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="65.2801">
- <stop offset="0" style="stop-color:#F7D481"/>
- <stop offset="1" style="stop-color:#F5340A"/>
+<stop offset="0" style="stop-color:#F7D481"/>
+<stop offset="1" style="stop-color:#F5340A"/>
</radialGradient>
<path d="M7.125,17.087c0.316-0.301,0.481-0.285,0.738-0.016c0.225,0.24,4.56,4.564,5.553,5.556l0.204-0.205 c0,0-5.502-5.488-5.759-5.76c-0.255-0.271-0.422-0.285-0.738,0.016C6.81,16.979,1.38,22.422,1.38,22.422l0.205,0.204 C2.569,21.638,6.846,17.353,7.125,17.087z" fill="url(#SVGID_6_)"/>
-<rect enable-background="new " height="0.511" opacity="0.2" width="3.061" x="5.971" y="23.952"/>
+<rect fill-opacity="0.2" height="0.511" stroke-opacity="0.2" width="3.061" x="5.971" y="23.952"/>
<rect fill="none" height="30" width="30"/>
</g>
<g>
-<rect height="34.27" opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
+<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1___)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
<defs>
-
<linearGradient gradientTransform="matrix(0.8824 0 0 -0.8824 -284.8232 -348.3516)" gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="339.8" x2="339.8" y1="-397.3" y2="-425.3">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.2606" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
-
</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_hs_widget.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_hs_widget.svg Thu May 27 13:10:59 2010 +0300
@@ -1,45 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<path d="M4.63,28.028c-0.878,0-1.593-0.714-1.593-1.592v-8.962c0-0.878,0.714-1.593,1.593-1.593h8.962 c0.878,0,1.592,0.715,1.592,1.593v8.962c0,0.877-0.714,1.592-1.592,1.592H4.63z" fill-opacity="0.6"/>
<path d="M17.167,28.028c-0.878,0-1.592-0.714-1.592-1.592v-8.961c0-0.878,0.714-1.593,1.592-1.593h8.963 c0.878,0,1.592,0.714,1.592,1.593v8.961c0,0.877-0.714,1.592-1.592,1.592H17.167z" fill-opacity="0.6"/>
<path d="M17.167,15.49c-0.878,0-1.592-0.714-1.592-1.592V4.937c0-0.877,0.714-1.592,1.592-1.592h8.963 c0.878,0,1.592,0.714,1.592,1.592v8.961c0,0.877-0.714,1.592-1.592,1.592H17.167z" fill-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.1099" x2="9.1099" y1="14.7993" y2="29.1976">
- <stop offset="0.0424" style="stop-color:#E8EEEF"/>
- <stop offset="0.2606" style="stop-color:#BBBFC1"/>
- <stop offset="0.5394" style="stop-color:#929A9E"/>
- <stop offset="1" style="stop-color:#969EA1"/>
+<stop offset="0" style="stop-color:#E8EEEF"/>
+<stop offset="0.0424" style="stop-color:#E8EEEF"/>
+<stop offset="0.2606" style="stop-color:#BBBFC1"/>
+<stop offset="0.5394" style="stop-color:#929A9E"/>
+<stop offset="1" style="stop-color:#969EA1"/>
</linearGradient>
<path d="M4.63,27.471c-0.571,0-1.036-0.464-1.036-1.034v-8.962c0-0.571,0.465-1.035,1.036-1.035h8.962 c0.57,0,1.034,0.464,1.034,1.035v8.962c0,0.57-0.464,1.034-1.034,1.034H4.63z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="21.6484" x2="21.6484" y1="14.2666" y2="29.5001">
- <stop offset="0" style="stop-color:#9FDBED"/>
- <stop offset="0.7333" style="stop-color:#3261AA"/>
- <stop offset="1" style="stop-color:#2B84C4"/>
+<stop offset="0" style="stop-color:#9FDBED"/>
+<stop offset="0.7333" style="stop-color:#3261AA"/>
+<stop offset="1" style="stop-color:#2B84C4"/>
</linearGradient>
<path d="M17.167,27.47c-0.569,0-1.034-0.464-1.034-1.034v-8.961c0-0.571,0.465-1.035,1.034-1.035h8.963 c0.569,0,1.033,0.463,1.033,1.035v8.961c0,0.57-0.464,1.034-1.033,1.034H17.167z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="21.6484" x2="21.6484" y1="1.8657" y2="17.1518">
- <stop offset="0.0424" style="stop-color:#E8EEEF"/>
- <stop offset="0.2606" style="stop-color:#BBBFC1"/>
- <stop offset="0.5394" style="stop-color:#929A9E"/>
- <stop offset="1" style="stop-color:#969EA1"/>
+<stop offset="0" style="stop-color:#E8EEEF"/>
+<stop offset="0.0424" style="stop-color:#E8EEEF"/>
+<stop offset="0.2606" style="stop-color:#BBBFC1"/>
+<stop offset="0.5394" style="stop-color:#929A9E"/>
+<stop offset="1" style="stop-color:#969EA1"/>
</linearGradient>
<path d="M17.167,14.932c-0.569,0-1.034-0.462-1.034-1.034V4.937c0-0.571,0.465-1.035,1.034-1.035h8.963 c0.569,0,1.033,0.463,1.033,1.035v8.961c0,0.571-0.464,1.034-1.033,1.034H17.167z" fill="url(#SVGID_3_)"/>
<polygon fill-opacity="0.6" points="4.988,10.178 1.52,6.882 6.245,6.136 8.309,1.82 10.479,6.082 15.222,6.71 11.838,10.092 12.706,14.796 8.445,12.624 4.237,14.902 "/>
<radialGradient cx="8.146" cy="58.4453" gradientTransform="matrix(1 0 0 -1 0.1597 62.4922)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="10.161">
- <stop offset="0.14" style="stop-color:#FBDF6F"/>
- <stop offset="0.55" style="stop-color:#FFC512"/>
- <stop offset="0.73" style="stop-color:#F2A61E"/>
- <stop offset="1" style="stop-color:#FBD23C"/>
+<stop offset="0" style="stop-color:#FBDF6F"/>
+<stop offset="0.14" style="stop-color:#FBDF6F"/>
+<stop offset="0.55" style="stop-color:#FFC512"/>
+<stop offset="0.73" style="stop-color:#F2A61E"/>
+<stop offset="1" style="stop-color:#FBD23C"/>
</radialGradient>
<polygon fill="url(#SVGID_4_)" points="5.559,9.985 2.67,7.24 6.605,6.619 8.324,3.023 10.131,6.574 14.081,7.098 11.263,9.915 11.985,13.831 8.436,12.022 4.934,13.92 "/>
<radialGradient cx="8.2612" cy="57.21" gradientTransform="matrix(1 0 0 -1 0.1597 62.4922)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="14.1249">
- <stop offset="0" style="stop-color:#FFF3CD"/>
- <stop offset="1" style="stop-color:#FFC512"/>
+<stop offset="0" style="stop-color:#FFF3CD"/>
+<stop offset="1" style="stop-color:#FFC512"/>
</radialGradient>
<polygon fill="url(#SVGID_5_)" points="6.766,6.938 8.324,3.663 9.971,6.894 13.797,7.38 14.081,7.098 10.131,6.574 8.324,3.023 6.605,6.619 2.67,7.24 2.96,7.516 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_html.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_html.svg Thu May 27 13:10:59 2010 +0300
@@ -1,91 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
-<polygon fill-opacity="0.6" points="3,29,3,1,27,1,27,22.41,20.41,29" stroke-opacity="0.6"/>
-
-<linearGradient gradientTransform="matrix(1 0 0 -1 214.52 -8.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-199.5" x2="-199.5" y1="-10.02" y2="-36.02">
-
-<stop offset="0" stop-color="#F9F9F9"/>
-
-<stop offset="1" stop-color="#B5B5B5"/>
-
-</linearGradient>
-
-<polygon fill="url(#SVGID_1_)" points="4,2,4,28,20,28,26,22,26,2"/>
-
-<linearGradient gradientTransform="matrix(1 0 0 -1 214.52 -8.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-194.6" x2="-191.5" y1="-29.94" y2="-33.04">
-
-<stop offset="0" stop-color="#F9F9F9"/>
-
-<stop offset="1" stop-color="#DCDCDC"/>
-
-</linearGradient>
-
-<polygon fill="url(#SVGID_2_)" points="26,22,20,22,20,28"/>
-
-<linearGradient gradientTransform="matrix(1 0 0 -1 214.52 -8.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-199.5" x2="-199.5" y1="-5.646" y2="-15.02">
-
-<stop offset="0" stop-color="#4EDEFF"/>
-
-<stop offset="1" stop-color="#048CC6"/>
-
-</linearGradient>
-
-<rect fill="url(#SVGID_3_)" height="5.393" width="22" x="4" y="2"/>
-
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="22" x="4" y="2"/>
-
-<linearGradient gradientTransform="matrix(1 0 0 -1 214.52 -8.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-207.5" x2="-207.5" y1="-19.02" y2="-28.09">
-
-<stop offset="0" stop-color="#646464"/>
-
-<stop offset="1" stop-color="#3C3C3C"/>
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
+<polygon fill-opacity="0.6" points="27,29 27,1 3,1 3,22.414 9.586,29 " stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1444 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1459" x2="-1459" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
</linearGradient>
-
-<polygon fill="url(#SVGID_4_)" points="9,18.5,6.332,15.5,9,12.5,9,11,5,15.5,9,20"/>
-
-<linearGradient gradientTransform="matrix(1 0 0 -1 214.52 -8.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-191.5" x2="-191.5" y1="-19.02" y2="-28.09">
-
-<stop offset="0" stop-color="#646464"/>
-
-<stop offset="1" stop-color="#3C3C3C"/>
-
-</linearGradient>
-
-<polygon fill="url(#SVGID_5_)" points="21,18.5,23.67,15.5,21,12.5,21,11,25,15.5,21,20"/>
-
-<rect fill="none" height="30" width="30"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="11.7" x2="11.7" y1="19.52" y2="14.94">
-
-<stop offset="0" stop-color="#646464"/>
-
-<stop offset="1" stop-color="#3C3C3C"/>
-
+<polygon fill="url(#SVGID_1_)" points="26,2 26,28 10,28 4,22 4,2 "/>
+<polygon fill="#FFFFFF" points="4,22 10,22 10,28 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="-2.375" y2="7.0009">
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
-
-<rect fill="url(#SVGID_6_)" height="1.049" width="1.049" x="11.17" y="14.92"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.99" x2="14.99" y1="19.52" y2="14.94">
-
-<stop offset="0" stop-color="#646464"/>
-
-<stop offset="1" stop-color="#3C3C3C"/>
-
-</linearGradient>
-
-<rect fill="url(#SVGID_7_)" height="1.049" width="1.049" x="14.46" y="14.92"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="18.28" x2="18.28" y1="19.52" y2="14.94">
-
-<stop offset="0" stop-color="#646464"/>
-
-<stop offset="1" stop-color="#3C3C3C"/>
-
-</linearGradient>
-
-<rect fill="url(#SVGID_8_)" height="1.049" width="1.05" x="17.75" y="14.92"/>
-
-</svg>
\ No newline at end of file
+<rect fill="url(#SVGID_2_)" height="5.393" width="22" x="4" y="2"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="22" x="4" y="2"/>
+<polygon fill="#646464" points="9,18.502 6.332,15.5 9,12.498 9,11 5,15.5 9,20 "/>
+<polygon fill="#646464" points="21,18.502 23.668,15.5 21,12.498 21,11 25,15.5 21,20 "/>
+<rect fill="none" height="30" width="30"/>
+<rect fill="#646464" height="2" width="2" x="10" y="14.5"/>
+<rect fill="#646464" height="2" width="2" x="14" y="14.5"/>
+<rect fill="#646464" height="2" width="2" x="18" y="14.5"/>
+</g>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_hwr.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
+<g fill-opacity="0.6" stroke-opacity="0.6">
+<path d="M4,29c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h22c1.65,0,3,1.35,3,3v22c0,1.65-1.35,3-3,3H4z"/>
+</g>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#A8EEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
+</linearGradient>
+<path d="M28,26c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V4c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2V26z" fill="url(#SVGID_1_)"/>
+</g>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="3" y2="27.0005">
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
+</linearGradient>
+<path d="M4,27c-0.55,0-1-0.45-1-1V4c0-0.55,0.45-1,1-1h22c0.55,0,1,0.45,1,1v22c0,0.55-0.45,1-1,1H4z" fill="url(#SVGID_2_)"/>
+</g>
+<path d="M23.504,18.337c0-0.547-0.444-0.99-0.992-0.99h-2.104c-1.015-2.689-2.176-5.543-3.198-7.475 c0.488-0.4,0.801-1.008,0.801-1.69C18.01,6.978,17.033,6,15.827,6c-1.205,0-2.183,0.978-2.183,2.182c0,0.639,0.275,1.21,0.71,1.607 c-0.689,1.458-2.026,4.366-3.282,7.558h-0.947c-0.361-0.707-1.094-1.192-1.943-1.192C6.977,16.154,6,17.133,6,18.337 c0,1.205,0.977,2.183,2.183,2.183c0.849,0,1.582-0.483,1.943-1.192h0.195c-0.687,1.881-1.297,3.775-1.689,5.457 c-0.124,0.533,0.206,1.064,0.741,1.188c0.532,0.125,1.064-0.205,1.189-0.739c0.416-1.791,1.107-3.867,1.875-5.906h6.591 c1.181,3.216,2.072,5.934,2.09,5.99C21.255,25.734,21.642,26,22.06,26c0.103,0,0.206-0.015,0.308-0.049 c0.52-0.171,0.805-0.729,0.633-1.25c-0.068-0.214-0.826-2.52-1.862-5.374h1.374C23.06,19.327,23.504,18.885,23.504,18.337z M13.211,17.347c0.947-2.35,1.911-4.504,2.569-5.923c0.802,1.619,1.689,3.783,2.507,5.923H13.211z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M23.752,17.337c0-0.547-0.444-0.99-0.992-0.99h-2.104c-1.015-2.689-2.176-5.543-3.198-7.475 c0.488-0.4,0.801-1.008,0.801-1.69C18.258,5.978,17.281,5,16.075,5c-1.205,0-2.183,0.978-2.183,2.182c0,0.639,0.275,1.21,0.71,1.607 c-0.689,1.458-2.026,4.366-3.282,7.558h-0.947c-0.361-0.707-1.094-1.192-1.943-1.192c-1.206,0-2.183,0.979-2.183,2.183 c0,1.205,0.977,2.183,2.183,2.183c0.849,0,1.582-0.483,1.943-1.192h0.195c-0.687,1.881-1.297,3.775-1.689,5.457 c-0.124,0.533,0.206,1.064,0.741,1.188c0.532,0.125,1.064-0.205,1.189-0.739c0.416-1.791,1.107-3.867,1.875-5.906h6.591 c1.181,3.216,2.072,5.934,2.09,5.99C21.503,24.734,21.89,25,22.308,25c0.103,0,0.206-0.015,0.308-0.049 c0.52-0.171,0.805-0.729,0.633-1.25c-0.068-0.214-0.826-2.52-1.862-5.374h1.374C23.308,18.327,23.752,17.885,23.752,17.337z M13.459,16.347c0.947-2.35,1.911-4.504,2.569-5.923c0.802,1.619,1.689,3.783,2.507,5.923H13.459z" fill="#F5F5F5"/>
+<rect fill="none" height="30" width="30"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_im.svg Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<g>
-<defs>
-</defs>
-<rect fill="none" height="30" width="30"/>
-<path d="M6.924,27.143c-0.451,0-1.213-0.318-1.213-1.512v-3.766C2.71,19.804,1,16.859,1,13.726 C1,7.732,7.28,2.857,15,2.857s14,4.875,14,10.868s-6.28,10.869-14,10.869c-1.54,0-3.052-0.192-4.501-0.574L8.09,26.555 C7.725,26.939,7.321,27.143,6.924,27.143L6.924,27.143z" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -367 -507)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="382" x2="382" y1="511.0117" y2="533.0017">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
-</linearGradient>
-<path d="M6.924,26.143c-0.131,0-0.213-0.2-0.213-0.512v-4.305l-0.077-0.049C3.688,19.395,2,16.643,2,13.726 c0-5.44,5.831-9.868,13-9.868c7.168,0,13,4.428,13,9.868c0,5.442-5.832,9.869-13,9.869c-1.618,0-3.201-0.226-4.706-0.669 l-0.105-0.031l-2.824,2.971C7.2,26.039,7.035,26.143,6.924,26.143L6.924,26.143z" fill="url(#SVGID_1_)"/>
-<path d="M15,4.785c6.961,0,12.646,4.18,12.969,9.405 C27.979,14.035,28,13.883,28,13.726c0-5.44-5.832-9.868-13-9.868c-7.169,0-13,4.428-13,9.868c0,0.149,0.023,0.296,0.033,0.446 C2.368,8.956,8.047,4.785,15,4.785z" enable-background="new " fill="#FFFFFF" opacity="0.3"/>
-<rect fill="#FFFFFF" height="1.084" width="13" x="8.5" y="8.688"/>
-<rect enable-background="new " height="0.541" opacity="0.2" width="13" x="8.5" y="9.771"/>
-<rect fill="#FFFFFF" height="1.084" width="13" x="8.5" y="12.688"/>
-<rect enable-background="new " height="0.541" opacity="0.2" width="13" x="8.5" y="13.771"/>
-<rect fill="#FFFFFF" height="1.084" width="13" x="8.5" y="16.688"/>
-<rect enable-background="new " height="0.541" opacity="0.2" width="13" x="8.5" y="17.771"/>
-<rect fill="none" height="30" width="30"/>
-</g>
-</svg>
\ No newline at end of file
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_image.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_image.svg Thu May 27 13:10:59 2010 +0300
@@ -1,103 +1,55 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill-opacity="0.6" height="24" stroke-opacity="0.6" width="30" y="3"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="4" y2="26">
-
<stop offset="0" stop-color="#DFDFDF"/>
-
<stop offset="1" stop-color="#B5B5B5"/>
-
-</linearGradient>
-
-<rect fill="url(#SVGID_1_)" height="22" width="28" x="1" y="4"/>
-
-<rect fill="#FFFFFF" height="20" width="26" x="2" y="5"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4.792" x2="22.61" y1="4.792" y2="22.61">
-
-<stop offset="0" stop-color="#7EBA3E"/>
-
-<stop offset="1" stop-color="#33773B"/>
-
</linearGradient>
-
-<rect fill="url(#SVGID_2_)" height="18" width="24" x="3" y="6"/>
-
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="28" x="1" y="25"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="7.994" x2="32.65" y1="10.39" y2="24.21">
-
-<stop offset="0" stop-color="#A7FF00"/>
-
-<stop offset="1" stop-color="#138F00"/>
-
+<rect fill="url(#SVGID_1_)" height="22" width="28" x="1" y="4"/>
+<rect fill="#FFFFFF" height="20" width="26" x="2" y="5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4.792" x2="22.61" y1="4.792" y2="22.61">
+<stop offset="0" stop-color="#7EBA3E"/>
+<stop offset="1" stop-color="#33773B"/>
</linearGradient>
-
-<path d="M27,18.73c-0.327-0.234-0.694-0.459-1.109-0.658-2.262-1.08-9.354-2.498-14.11-4.163-4.755-1.665-3.118-3.442-3.118-3.442-0.106-0.389-0.37-0.777-0.792-0.111-1.122,1.768,1.143,3.228,3.646,4.163,3.118,1.166,10.33,2.419,13.16,4.385,0.956,0.665,1.717,1.31,2.324,1.905v-2.066z" fill="url(#SVGID_3_)"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9.47" x2="23.28" y1="14.5" y2="27.5">
-
+<rect fill="url(#SVGID_2_)" height="18" width="24" x="3" y="6"/>
+<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="28" x="1" y="25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="7.994" x2="32.65" y1="10.39" y2="24.21">
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
+<path d="M27,18.73c-0.327-0.234-0.694-0.459-1.109-0.658-2.262-1.08-9.354-2.498-14.11-4.163-4.755-1.665-3.118-3.442-3.118-3.442-0.106-0.389-0.37-0.777-0.792-0.111-1.122,1.768,1.143,3.228,3.646,4.163,3.118,1.166,10.33,2.419,13.16,4.385,0.956,0.665,1.717,1.31,2.324,1.905v-2.066z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9.47" x2="23.28" y1="14.5" y2="27.5">
+<stop offset="0" stop-color="#A7FF00"/>
+<stop offset="1" stop-color="#138F00"/>
+</linearGradient>
<path d="M9.721,19.19c0.528,0.444,2.42,0.806,4.28-1.056,1.109-1.109,1.109-2.774,1.109-2.774s-2.008-0.611-3.857,0.721c-1.846,1.33-2.057,2.66-1.529,3.11z" fill="url(#SVGID_4_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.799" x2="22.61" y1="15.21" y2="28.21">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M5.061,13.93c0.216,0.342,1.197,0.887,2.528,0.207,0.794-0.407,1.071-1.322,1.071-1.322s-1.002-0.704-2.24-0.312c-1.238,0.39-1.575,1.08-1.359,1.42z" fill="url(#SVGID_5_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="11.88" x2="25.69" y1="11.94" y2="24.95">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M13.9,11.03c-0.37-0.389-1.385-0.848-2.748,0.333-0.814,0.705-0.824,1.946-0.824,1.946s1.352,0.163,2.435-0.447c1.25-0.71,1.47-1.49,1.14-1.83z" fill="url(#SVGID_6_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.24" x2="28.06" y1="9.425" y2="22.43">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M21.43,13.08c-0.32-0.434-1.374-0.805-2.537,0.389-0.754,0.773-1.008,2.501-1.008,2.501s1.352,0.163,2.436-0.448c1.25-0.7,1.56-1.83,1.11-2.44z" fill="url(#SVGID_7_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="12.08" x2="25.89" y1="11.73" y2="24.73">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M17.93,22.48c0.671,0.473,3.591,1.17,5.955-0.809,1.411-1.182,0.898-3.266,0.898-3.266s-3.038-1.205-5.391,0.213c-2.35,1.43-2.13,3.4-1.46,3.87z" fill="url(#SVGID_8_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="16.78" x2="30.59" y1="6.738" y2="19.73">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M27,13.39c-0.542,0.568-1.025,1.292-1.342,2.203-0.617,1.781,0.855,3.279,0.855,3.279s0.18-0.04,0.48-0.13v-5.352z" fill="url(#SVGID_9_)"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_internet.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_internet.svg Thu May 27 13:10:59 2010 +0300
@@ -1,35 +1,37 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1s14,6.28,14,14S22.72,29,15,29L15,29z" fill-opacity="0.6"/>
<radialGradient cx="-453.8818" cy="-299.3193" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="48.9059">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M27.536,14.288c-0.288-5.078-3.577-9.45-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H8.322l0.971,1.651L6.662,9.979l-0.613,2.649l2.173,3.851l2.218-0.453l0.81,0.696l0.633,0.063l0.418,1.634l-0.552,1.432L13.763,25 h2.053l2.035-1.644v-0.671l0.537-0.833l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.134,0.289,2.755,1.192,2.55 c0.686-0.155,3.135-4.705,3.182-5.138c0.093-0.855-0.373-1.209-0.659-1.343l-0.318-0.15l-1.462,1.466 c-0.157,0.012-0.298,0.038-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.491l0.929-0.894l-0.519-0.946 l0.395,0.048l2.313,5.178L27,15.796c-0.015-0.254-0.042-0.503-0.071-0.753L27.536,14.288z M15.156,8.464l-0.193-0.516h1.161 l0.565,1.271h-0.841V8.464H15.156z M18.987,11.024l0.927,1.353l0.063,0.162l-0.95-0.574L18.8,11.146L18.987,11.024z M20.381,13.388 l0.28,0.28l-0.362,0.081l-0.082-0.1L20.381,13.388z M13.127,4.286l0.59,0.913l-0.67,0.205l-0.262-0.149L13.127,4.286z" opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="2.0625" y2="28.1316">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
-</linearGradient>
-<path d="M15,2C7.821,2,2,7.821,2,15c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C28,7.821,22.182,2,15,2z M15,27C8.383,27,3,21.617,3,15S8.383,3,15,3s12,5.383,12,12S21.617,27,15,27z" fill="url(#SVGID_2_)" opacity="0.3"/>
+<path d="M27.536,14.288c-0.288-5.078-3.577-9.45-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H8.322l0.971,1.651L6.662,9.979l-0.613,2.649l2.173,3.851l2.218-0.453l0.81,0.696l0.633,0.063l0.418,1.634l-0.552,1.432L13.763,25 h2.053l2.035-1.644v-0.671l0.537-0.833l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.134,0.289,2.755,1.192,2.55 c0.686-0.155,3.135-4.705,3.182-5.138c0.093-0.855-0.373-1.209-0.659-1.343l-0.318-0.15l-1.462,1.466 c-0.157,0.012-0.298,0.038-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.491l0.929-0.894l-0.519-0.946 l0.395,0.048l2.313,5.178L27,15.796c-0.015-0.254-0.042-0.503-0.071-0.753L27.536,14.288z M15.156,8.464l-0.193-0.516h1.161 l0.565,1.271h-0.841V8.464H15.156z M18.987,11.024l0.927,1.353l0.063,0.162l-0.95-0.574L18.8,11.146L18.987,11.024z M20.381,13.388 l0.28,0.28l-0.362,0.081l-0.082-0.1L20.381,13.388z M13.127,4.286l0.59,0.913l-0.67,0.205l-0.262-0.149L13.127,4.286z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M15,2C7.821,2,2,7.821,2,15c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C28,7.821,22.182,2,15,2z M15,27C8.383,27,3,21.617,3,15S8.383,3,15,3s12,5.383,12,12S21.617,27,15,27z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="15.75" cy="5.5" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.4173">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M22.044,18.714l-1.353,1.355c0,0-0.818,0-0.856,0.324c-0.018,0.14-0.063,0.744-0.201,1.056 c-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.206,0.734,1.001C20.669,23.06,23.434,19.367,22.044,18.714z" fill="url(#SVGID_3_)"/>
<radialGradient cx="15.75" cy="5.5005" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.8335">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M18.99,3.619c-0.222,0.084-0.374,0.142-0.374,0.142l-3.344-0.64l-1.64,1.026l0.863,1.335 l-1.509,0.464l-0.813-0.464l0.286-0.811l-1.06,0.734L11.21,6.683H9.196L9.941,7.95L7.11,10.259l-0.533,2.304l1.051,2.035L8.259,15 l2.218-0.453l0.81,0.696l0.736,0.072l0.801,3.134l-0.533,1.386l1.178,2.604l0.332,1.081h2.053l1.16-0.628l0.875-1.016v-1.229 l1.663-0.849v-1.821l0.658-1.251l1.467-1.32l0.351-1.53l-1.919,0.428l-0.505-0.615l0.359-0.574l-1.363-0.824l-0.581-2.089 l1.007-0.656l0.927,1.353L20.3,11.79l0.696,0.696l0.813,0.425l0.903-0.146l1.003-0.965l-0.706-1.288l-0.889,0.232l-0.804-0.957 l0.764-0.533l2.397,0.29v0.853l2.086,4.298l0.474-0.379C26.756,9.359,23.48,5.199,18.99,3.619z M17.901,9.429l-1.095,0.29h-1.458 V8.964h-1.394l-1.103,0.291L11.17,8.79l-0.465-0.87l2.321-0.522h2.322L15,6.469h1.161l0.646,1.451l1.095,0.384V9.429z M20.397,7.514 l-1.974-0.349V6.469l0.987-0.232l0.29-0.348l0.696,0.58V7.514z" fill="url(#SVGID_4_)"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="2.0625" y2="28.1316">
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_intranet.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_intranet.svg Thu May 27 13:10:59 2010 +0300
@@ -1,37 +1,39 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M13,29v-2.173c-0.742-0.125-1.47-0.321-2.18-0.587l-1.088,1.885l-3.465-2l1.088-1.885 c-0.581-0.481-1.115-1.015-1.596-1.596l-1.885,1.088l-2-3.465L3.76,19.18C3.495,18.47,3.298,17.741,3.172,17H1v-4h2.172 c0.126-0.741,0.322-1.47,0.587-2.18L1.876,9.732l2-3.465L5.76,7.355C6.241,6.774,6.775,6.241,7.356,5.76L6.268,3.875l3.465-2 L10.82,3.76C11.53,3.494,12.258,3.298,13,3.173V1h4v2.173c0.742,0.125,1.471,0.321,2.18,0.587l1.088-1.885l3.465,2L22.645,5.76 c0.58,0.481,1.114,1.015,1.596,1.596l1.885-1.088l1.999,3.465L26.24,10.82c0.266,0.71,0.461,1.438,0.588,2.18H29v4h-2.172 c-0.127,0.741-0.322,1.47-0.588,2.18l1.884,1.088l-1.999,3.465l-1.885-1.088c-0.481,0.581-1.016,1.114-1.596,1.596l1.088,1.885 l-3.465,2L19.18,26.24c-0.709,0.266-1.438,0.462-2.18,0.587V29H13z" fill-opacity="0.6"/>
<path d="M28,16v-2h-2.051c-0.115-1.279-0.455-2.491-0.971-3.606l1.779-1.027l-1-1.732L23.98,8.66 c-0.725-1.023-1.617-1.916-2.641-2.641l1.026-1.778l-1.732-1l-1.027,1.779C18.491,4.505,17.279,4.166,16,4.051V2h-2v2.051 c-1.279,0.115-2.491,0.454-3.606,0.97L9.366,3.241l-1.732,1L8.661,6.02C7.637,6.744,6.744,7.637,6.02,8.66L4.242,7.634l-1,1.732 l1.779,1.027C4.505,11.509,4.166,12.721,4.05,14H2v2h2.05c0.116,1.279,0.455,2.491,0.971,3.606l-1.779,1.027l1,1.732L6.02,21.34 c0.724,1.023,1.617,1.916,2.641,2.641l-1.027,1.778l1.732,1l1.027-1.779c1.115,0.516,2.327,0.854,3.606,0.97V28h2v-2.051 c1.279-0.115,2.491-0.454,3.606-0.97l1.027,1.779l1.732-1L21.34,23.98c1.023-0.725,1.916-1.617,2.641-2.641l1.777,1.026l1-1.732 l-1.779-1.027c0.516-1.115,0.855-2.327,0.971-3.606H28z" fill="#FFFFFF"/>
<radialGradient cx="-453.8818" cy="-296.3535" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="37.62">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="10"/>
-<path d="M24.643,14.452c-0.221-3.906-2.75-7.27-6.445-8.568l-0.451,0.072l-2.612-0.501l-3.258,1.942l-0.123,0.82 h-1.89l0.747,1.27l-2.023,1.65l-0.472,2.039l1.672,2.961l1.706-0.349l0.623,0.535l0.486,0.048l0.321,1.259l-0.424,1.101l1.55,3.96 h1.579l1.566-1.263v-0.516l0.412-0.643l0.342-0.174c-0.087,0.133-0.223,0.436-0.223,0.436c-0.014,0.104,0.223,2.119,0.917,1.963 c0.527-0.12,2.411-3.621,2.448-3.954c0.07-0.656-0.287-0.929-0.508-1.032l-0.244-0.115l-1.125,1.127 c-0.121,0.01-0.229,0.029-0.328,0.059v-0.937l1.222-1.192l0.622-2.002l0.947-0.771l-0.209-0.378l0.715-0.687l-0.398-0.729 l0.305,0.036l1.778,3.983l0.364-0.292c-0.011-0.195-0.032-0.386-0.055-0.577L24.643,14.452z M15.12,9.973l-0.148-0.397h0.893 l0.435,0.977h-0.647V9.973H15.12z M18.067,11.941l0.713,1.042l0.049,0.124l-0.731-0.442l-0.176-0.629L18.067,11.941z M19.139,13.76 l0.216,0.216l-0.278,0.063l-0.063-0.078L19.139,13.76z M13.559,6.759l0.454,0.702l-0.515,0.158l-0.202-0.114L13.559,6.759z" opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="5.0479" y2="25.1011">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
-</linearGradient>
-<path d="M15,5C9.478,5,5,9.478,5,15c0,5.523,4.478,10,10,10c5.525,0,10-4.477,10-10 C25,9.478,20.525,5,15,5z M15,24.231c-5.09,0-9.231-4.141-9.231-9.231S9.91,5.769,15,5.769c5.09,0,9.23,4.141,9.23,9.231 S20.09,24.231,15,24.231z" fill="url(#SVGID_2_)" opacity="0.3"/>
+<path d="M24.643,14.452c-0.221-3.906-2.75-7.27-6.445-8.568l-0.451,0.072l-2.612-0.501l-3.258,1.942l-0.123,0.82 h-1.89l0.747,1.27l-2.023,1.65l-0.472,2.039l1.672,2.961l1.706-0.349l0.623,0.535l0.486,0.048l0.321,1.259l-0.424,1.101l1.55,3.96 h1.579l1.566-1.263v-0.516l0.412-0.643l0.342-0.174c-0.087,0.133-0.223,0.436-0.223,0.436c-0.014,0.104,0.223,2.119,0.917,1.963 c0.527-0.12,2.411-3.621,2.448-3.954c0.07-0.656-0.287-0.929-0.508-1.032l-0.244-0.115l-1.125,1.127 c-0.121,0.01-0.229,0.029-0.328,0.059v-0.937l1.222-1.192l0.622-2.002l0.947-0.771l-0.209-0.378l0.715-0.687l-0.398-0.729 l0.305,0.036l1.778,3.983l0.364-0.292c-0.011-0.195-0.032-0.386-0.055-0.577L24.643,14.452z M15.12,9.973l-0.148-0.397h0.893 l0.435,0.977h-0.647V9.973H15.12z M18.067,11.941l0.713,1.042l0.049,0.124l-0.731-0.442l-0.176-0.629L18.067,11.941z M19.139,13.76 l0.216,0.216l-0.278,0.063l-0.063-0.078L19.139,13.76z M13.559,6.759l0.454,0.702l-0.515,0.158l-0.202-0.114L13.559,6.759z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M15,5C9.478,5,5,9.478,5,15c0,5.523,4.478,10,10,10c5.525,0,10-4.477,10-10 C25,9.478,20.525,5,15,5z M15,24.231c-5.09,0-9.231-4.141-9.231-9.231S9.91,5.769,15,5.769c5.09,0,9.23,4.141,9.23,9.231 S20.09,24.231,15,24.231z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="15.5771" cy="7.6904" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="11.8606">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M20.418,17.856L19.377,18.9c0,0-0.629,0-0.658,0.248c-0.014,0.107-0.049,0.573-0.154,0.813 c-0.209,0.145-0.459,0.625-0.459,0.625s-0.129,0.928,0.564,0.77C19.361,21.199,21.486,18.359,20.418,17.856z" fill="url(#SVGID_3_)"/>
<radialGradient cx="15.5776" cy="7.6934" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="13.7178">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M18.068,6.245c-0.17,0.065-0.287,0.108-0.287,0.108l-2.572-0.49l-1.262,0.789l0.664,1.027 l-1.16,0.355L12.827,7.68l0.22-0.624l-0.815,0.565l-0.147,0.98h-1.549l0.574,0.975l-2.178,1.776l-0.41,1.772l0.808,1.566L9.814,15 l1.707-0.348l0.622,0.535l0.566,0.055l0.616,2.41l-0.41,1.066l0.905,2.004l0.256,0.832h1.58l0.893-0.484l0.672-0.781v-0.945 l1.279-0.652V17.29l0.506-0.962l1.129-1.016l0.27-1.177l-1.477,0.329l-0.387-0.475l0.275-0.44l-1.049-0.635l-0.445-1.606 l0.773-0.504l0.713,1.039l0.268,0.688l0.535,0.535l0.625,0.327l0.695-0.112l0.771-0.742l-0.543-0.991l-0.684,0.179l-0.617-0.735 l0.588-0.41l1.844,0.224v0.655l1.604,3.306l0.365-0.291C24.043,10.66,21.523,7.461,18.068,6.245z M17.232,10.715l-0.844,0.223 h-1.121v-0.581h-1.071l-0.849,0.225l-1.294-0.358l-0.356-0.668l1.785-0.402h1.786L15,8.438h0.893l0.496,1.117l0.844,0.294V10.715z M19.152,9.242l-1.518-0.27V8.438l0.758-0.18l0.223-0.266l0.537,0.445V9.242z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="30" width="30"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="5.0479" y2="25.1011">
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_itut.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,96 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
+<rect fill="none" height="30" width="30"/>
+<path d="M3.5,25.5c-1.65,0-3.001-1.35-3.001-3v-15c0-1.65,1.351-3,3.001-3h23 c1.65,0,3,1.35,3,3v15c0,1.65-1.35,3-3,3H3.5z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-187.52" x2="-187.52" y1="403.4805" y2="384.4805">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
+</linearGradient>
+<path d="M28.5,22.5c0,1.1-0.9,2-2,2h-23c-1.1,0-2-0.9-2-2v-15c0-1.1,0.9-2,2-2h23c1.1,0,2,0.9,2,2V22.5z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-187.52" x2="-187.52" y1="402.4805" y2="385.4805">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
+</linearGradient>
+<path d="M3.5,23.5c-0.551,0-1-0.449-1-1v-15c0-0.551,0.449-1,1-1h23c0.549,0,1,0.449,1,1v15 c0,0.551-0.451,1-1,1H3.5z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="12.2773" x2="12.2773" y1="7.5" y2="22.3881">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_3_)" height="3" width="4.5" x="10.027" y="7.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="12.3594" x2="12.3594" y1="7.501" y2="22.3891">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_4_)" height="3" width="4.5" x="10.109" y="11.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="12.3594" x2="12.3594" y1="7.4976" y2="22.3906">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_5_)" height="3" width="4.5" x="10.109" y="15.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="12.3594" x2="12.3594" y1="7.5005" y2="22.3886">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_6_)" height="3" width="4.5" x="10.109" y="19.5"/>
+<rect fill="url(#SVGID_7_)" height="3" width="4.5" x="4.707" y="7.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-195.563" x2="-195.563" y1="401.4795" y2="386.5914">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_8_)" height="3" width="4.5" x="4.707" y="11.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-195.563" x2="-195.563" y1="401.4814" y2="386.5909">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_9_)" height="3" width="4.5" x="4.707" y="15.5"/>
+<rect fill="url(#SVGID_7_)" height="3" width="4.5" x="4.707" y="19.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-184.7993" x2="-184.7993" y1="401.4805" y2="386.5924">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_11_)" height="3" width="4.5" x="15.471" y="7.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-184.8813" x2="-184.8813" y1="401.4795" y2="386.5914">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_12_)" height="3" width="4.5" x="15.389" y="11.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-184.8813" x2="-184.8813" y1="401.4814" y2="386.5909">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_13_)" height="3" width="4.5" x="15.389" y="15.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-184.8813" x2="-184.8813" y1="401.4805" y2="386.5924">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_14_)" height="3" width="4.5" x="15.389" y="19.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="23.0352" x2="23.0908" y1="7.5483" y2="22.5211">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_15_)" fill-opacity="0.5" height="3" stroke-opacity="0.5" width="4.5" x="20.791" y="7.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="23.0205" x2="23.0761" y1="7.5513" y2="22.524">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_16_)" fill-opacity="0.5" height="3" stroke-opacity="0.5" width="4.5" x="20.791" y="11.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="23.0059" x2="23.0615" y1="7.5532" y2="22.5259">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_17_)" fill-opacity="0.5" height="3" stroke-opacity="0.5" width="4.5" x="20.791" y="15.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="22.9912" x2="23.0468" y1="7.5562" y2="22.5289">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_18_)" fill-opacity="0.5" height="3" stroke-opacity="0.5" width="4.5" x="20.791" y="19.5"/>
+<defs>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-195.563" x2="-195.563" y1="401.4805" y2="386.5924">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+</defs>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_java.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_java.svg Thu May 27 13:10:59 2010 +0300
@@ -1,30 +1,28 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15.781,24v-3.441l0.494-0.29C17.316,19.659,18,19.209,18,18.548C18,17.137,16.358,16,15,16 c-1.359,0-3,1.137-3,2.548c0,0.666,0.684,1.114,1.728,1.722l0.497,0.289V24H11c-1.654,0-3-1.346-3-3H7.937 c-0.597,0.972-1.407,2-2.832,2C2.686,23,1,20.629,1,18.5S2.686,14,5.104,14c1.438,0,2.249,1.052,2.83,2H8v-4c0-1.654,1.346-3,3-3h1 V8.937c-0.971-0.597-2-1.406-2-2.832C10,3.686,12.371,2,14.5,2S19,3.686,19,6.104c0,1.438-1.051,2.249-2,2.83V9h7 c1.654,0,3,1.346,3,3v9c0,1.654-1.346,3-3,3H15.781z" opacity="0.6"/>
+<path d="M15.781,24v-3.441l0.494-0.29C17.316,19.659,18,19.209,18,18.548C18,17.137,16.358,16,15,16 c-1.359,0-3,1.137-3,2.548c0,0.666,0.684,1.114,1.728,1.722l0.497,0.289V24H11c-1.654,0-3-1.346-3-3H7.937 c-0.597,0.972-1.407,2-2.832,2C2.686,23,1,20.629,1,18.5S2.686,14,5.104,14c1.438,0,2.249,1.052,2.83,2H8v-4c0-1.654,1.346-3,3-3h1 V8.937c-0.971-0.597-2-1.406-2-2.832C10,3.686,12.371,2,14.5,2S19,3.686,19,6.104c0,1.438-1.051,2.249-2,2.83V9h7 c1.654,0,3,1.346,3,3v9c0,1.654-1.346,3-3,3H15.781z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13.9995" x2="13.9995" y1="2.8911" y2="23.5236">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#A5A5A5"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
<path d="M24,10h-8V8.365c0.943-0.553,2-1.146,2-2.261C18,4.392,16.217,3,14.5,3C12.782,3,11,4.392,11,6.104 c0,1.115,1.053,1.711,2,2.263V10h-2c-1.1,0-2,0.9-2,2v5H7.365c-0.553-0.943-1.146-2-2.261-2C3.392,15,2,16.783,2,18.5 C2,20.218,3.392,22,5.104,22c1.115,0,1.711-1.053,2.263-2H9v1c0,1.1,0.9,2,2,2h2.225v-1.866C12.141,20.503,11,19.822,11,18.548 C11,16.591,13.037,15,15,15c1.961,0,4,1.591,4,3.548c0,1.273-1.141,1.952-2.219,2.584V23H24c1.1,0,2-0.9,2-2v-9 C26,10.9,25.1,10,24,10z" fill="url(#SVGID_1_)"/>
-<path d="M16.781,21.132v1C17.859,21.5,19,20.821,19,19.548c0-0.175-0.034-0.342-0.065-0.51 C18.684,20.005,17.711,20.587,16.781,21.132z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M11,11h2v-1h-2c-1.1,0-2,0.9-2,2v1C9,11.9,9.9,11,11,11z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M14.5,4c1.529,0,3.104,1.106,3.43,2.559C17.972,6.416,18,6.268,18,6.104 C18,4.392,16.217,3,14.5,3C12.782,3,11,4.392,11,6.104c0,0.163,0.028,0.313,0.07,0.455C11.396,5.107,12.969,4,14.5,4z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M24,10h-8v1h8c1.1,0,2,0.9,2,2v-1C26,10.9,25.1,10,24,10z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M5.104,16c1.114,0,1.708,1.057,2.261,2H9v-1H7.365c-0.553-0.943-1.146-2-2.261-2 C3.392,15,2,16.783,2,18.5c0,0.167,0.023,0.334,0.049,0.5C2.284,17.454,3.559,16,5.104,16z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M11.065,19.038C11.034,19.206,11,19.373,11,19.548c0,1.274,1.141,1.955,2.225,2.586v-1 C12.289,20.59,11.316,20.006,11.065,19.038z" fill="#FFFFFF" opacity="0.4"/>
-<rect height="12" opacity="0.6" width="12" x="17" y="16"/>
+<path d="M16.781,21.132v1C17.859,21.5,19,20.821,19,19.548c0-0.175-0.034-0.342-0.065-0.51 C18.684,20.005,17.711,20.587,16.781,21.132z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M11,11h2v-1h-2c-1.1,0-2,0.9-2,2v1C9,11.9,9.9,11,11,11z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M14.5,4c1.529,0,3.104,1.106,3.43,2.559C17.972,6.416,18,6.268,18,6.104 C18,4.392,16.217,3,14.5,3C12.782,3,11,4.392,11,6.104c0,0.163,0.028,0.313,0.07,0.455C11.396,5.107,12.969,4,14.5,4z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24,10h-8v1h8c1.1,0,2,0.9,2,2v-1C26,10.9,25.1,10,24,10z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M5.104,16c1.114,0,1.708,1.057,2.261,2H9v-1H7.365c-0.553-0.943-1.146-2-2.261-2 C3.392,15,2,16.783,2,18.5c0,0.167,0.023,0.334,0.049,0.5C2.284,17.454,3.559,16,5.104,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M11.065,19.038C11.034,19.206,11,19.373,11,19.548c0,1.274,1.141,1.955,2.225,2.586v-1 C12.289,20.59,11.316,20.006,11.065,19.038z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<rect fill-opacity="0.6" height="12" stroke-opacity="0.6" width="12" x="17" y="16"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="23" x2="23" y1="17" y2="27">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="10" width="10" x="18" y="17"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="10" x="18" y="17"/>
-<rect height="1" opacity="0.2" width="10" x="18" y="26"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="10" x="18" y="17"/>
+<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" x="18" y="26"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_keyboard.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,104 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
+<path d="M3.5,25c-1.65,0-3-1.35-3-3V7c0-1.65,1.35-3,3-3h23c1.65,0,3,1.35,3,3v15 c0,1.65-1.35,3-3,3H3.5z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-187.52" x2="-187.52" y1="403.9805" y2="384.9805">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
+</linearGradient>
+<path d="M28.5,22c0,1.1-0.9,2-2,2h-23c-1.1,0-2-0.9-2-2V7c0-1.1,0.9-2,2-2h23c1.1,0,2,0.9,2,2V22z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-187.52" x2="-187.52" y1="402.9805" y2="385.9805">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
+</linearGradient>
+<path d="M3.5,23c-0.55,0-1-0.449-1-1V7c0-0.55,0.45-1,1-1h23c0.55,0,1,0.45,1,1v15c0,0.551-0.45,1-1,1H3.5z" fill="url(#SVGID_2_)"/>
+<rect fill="url(#SVGID_3_)" height="3" width="3" x="3.5" y="7"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-193.52" x2="-193.52" y1="401.9805" y2="387.0429">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_4_)" height="3" width="3" x="7.5" y="7"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-189.52" x2="-189.52" y1="401.9805" y2="387.0429">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_5_)" height="3" width="3" x="11.5" y="7"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-185.52" x2="-185.52" y1="401.9805" y2="387.0429">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_6_)" height="3" width="3" x="15.5" y="7"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-181.52" x2="-181.52" y1="401.9805" y2="387.0429">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_7_)" height="3" width="3" x="19.5" y="7"/>
+<rect fill="url(#SVGID_8_)" height="3" width="3" x="23.5" y="7"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-197.52" x2="-197.52" y1="401.9795" y2="387.0419">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_9_)" height="3" width="3" x="3.5" y="11"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-193.52" x2="-193.52" y1="401.9795" y2="387.0419">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_10_)" height="3" width="3" x="7.5" y="11"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-189.52" x2="-189.52" y1="401.9795" y2="387.0419">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_11_)" height="3" width="3" x="11.5" y="11"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-185.52" x2="-185.52" y1="401.9795" y2="387.0419">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_12_)" height="3" width="3" x="15.5" y="11"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-181.52" x2="-181.52" y1="401.9795" y2="387.0419">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_13_)" height="3" width="3" x="19.5" y="11"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-195.52" x2="-195.52" y1="401.9814" y2="387.0414">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_14_)" height="3" width="7" x="3.5" y="15"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-189.52" x2="-189.52" y1="401.9814" y2="387.0414">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_15_)" height="3" width="3" x="11.5" y="15"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-185.52" x2="-185.52" y1="401.9814" y2="387.0414">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_16_)" height="3" width="3" x="15.5" y="15"/>
+<rect fill="url(#SVGID_3_)" height="3" width="3" x="3.5" y="19"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="-187.52" x2="-187.52" y1="401.9805" y2="387.0429">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<rect fill="url(#SVGID_18_)" fill-opacity="0.5" height="3" stroke-opacity="0.5" width="15" x="7.5" y="19"/>
+<rect fill="url(#SVGID_8_)" height="3" width="3" x="23.5" y="19"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="-179.52" x2="-179.52" y1="401.9805" y2="387.0418">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+<polygon fill="url(#SVGID_20_)" points="23.5,11 23.5,15 19.5,15 19.5,18 23.5,18 26.5,18 26.5,15 26.5,11 "/>
+<rect fill="none" height="30" width="30"/>
+<defs>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-197.52" x2="-197.52" y1="401.9805" y2="387.0429">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+</defs>
+<defs>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-177.52" x2="-177.52" y1="401.9805" y2="387.0429">
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
+</linearGradient>
+</defs>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_landline.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_landline.svg Thu May 27 13:10:59 2010 +0300
@@ -1,75 +1,73 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M25,7H11.858c-0.447-1.721-2-3-3.858-3C6.085,4,4.483,5.354,4.094,7.155C2.884,7.542,2,8.664,2,10v13 c0,1.654,1.346,3,3,3h20c1.654,0,3-1.346,3-3V10C28,8.346,26.654,7,25,7z" opacity="0.6"/>
+<path d="M25,7H11.858c-0.447-1.721-2-3-3.858-3C6.085,4,4.483,5.354,4.094,7.155C2.884,7.542,2,8.664,2,10v13 c0,1.654,1.346,3,3,3h20c1.654,0,3-1.346,3-3V10C28,8.346,26.654,7,25,7z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="8.1636" y2="25.0077">
- <stop offset="0" style="stop-color:#E6E6E6"/>
- <stop offset="1" style="stop-color:#626262"/>
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#626262"/>
</linearGradient>
<path d="M27,23c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V10c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2V23z" fill="url(#SVGID_1_)"/>
-<path d="M25,8H5c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1C27,8.9,26.1,8,25,8z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M8,24c2.206,0,4-1.794,4-4V8H4v12C4,22.206,5.794,24,8,24z" opacity="0.1"/>
+<path d="M25,8H5c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1C27,8.9,26.1,8,25,8z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M8,24c2.206,0,4-1.794,4-4V8H4v12C4,22.206,5.794,24,8,24z" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8" x2="8" y1="5.1729" y2="23.0078">
- <stop offset="0" style="stop-color:#A0A7A8"/>
- <stop offset="1" style="stop-color:#252629"/>
+<stop offset="0" style="stop-color:#A0A7A8"/>
+<stop offset="1" style="stop-color:#252629"/>
</linearGradient>
<path d="M11,20c0,1.65-1.35,3-3,3l0,0c-1.65,0-3-1.35-3-3V8c0-1.65,1.35-3,3-3l0,0c1.65,0,3,1.35,3,3V20z" fill="url(#SVGID_2_)"/>
-<path d="M8,5C6.35,5,5,6.35,5,8v1c0-1.65,1.35-3,3-3s3,1.35,3,3V8C11,6.35,9.65,5,8,5z" fill="#FFFFFF" opacity="0.3"/>
-<path d="M10,11v11.217c0.609-0.55,1-1.337,1-2.217V9L10,11z" opacity="0.3"/>
-<path d="M6,22.217V11L5,9v11C5,20.88,5.391,21.667,6,22.217z" opacity="0.3"/>
+<path d="M8,5C6.35,5,5,6.35,5,8v1c0-1.65,1.35-3,3-3s3,1.35,3,3V8C11,6.35,9.65,5,8,5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M10,11v11.217c0.609-0.55,1-1.337,1-2.217V9L10,11z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M6,22.217V11L5,9v11C5,20.88,5.391,21.667,6,22.217z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.4995" x2="14.4995" y1="14" y2="23.9798">
- <stop offset="0" style="stop-color:#696D6F"/>
- <stop offset="1" style="stop-color:#252629"/>
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="2" width="3" x="13" y="14"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.5" x2="18.5" y1="14" y2="23.9798">
- <stop offset="0" style="stop-color:#696D6F"/>
- <stop offset="1" style="stop-color:#252629"/>
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="2" width="3" x="17" y="14"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="22.5" x2="22.5" y1="14" y2="23.9798">
- <stop offset="0" style="stop-color:#696D6F"/>
- <stop offset="1" style="stop-color:#252629"/>
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="2" width="3" x="21" y="14"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.4995" x2="14.4995" y1="13.0005" y2="22.9802">
- <stop offset="0" style="stop-color:#696D6F"/>
- <stop offset="1" style="stop-color:#252629"/>
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="2" width="3" x="13" y="17"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="18.5" x2="18.5" y1="13.0005" y2="22.9802">
- <stop offset="0" style="stop-color:#696D6F"/>
- <stop offset="1" style="stop-color:#252629"/>
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="2" width="3" x="17" y="17"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="22.5" x2="22.5" y1="13.0005" y2="22.9802">
- <stop offset="0" style="stop-color:#696D6F"/>
- <stop offset="1" style="stop-color:#252629"/>
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="2" width="3" x="21" y="17"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.4995" x2="14.4995" y1="12.0005" y2="21.9802">
- <stop offset="0" style="stop-color:#696D6F"/>
- <stop offset="1" style="stop-color:#252629"/>
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="2" width="3" x="13" y="20"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="18.5" x2="18.5" y1="12.0005" y2="21.9802">
- <stop offset="0" style="stop-color:#696D6F"/>
- <stop offset="1" style="stop-color:#252629"/>
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="2" width="3" x="17" y="20"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="22.5" x2="22.5" y1="12.0005" y2="21.9802">
- <stop offset="0" style="stop-color:#696D6F"/>
- <stop offset="1" style="stop-color:#252629"/>
+<stop offset="0" style="stop-color:#696D6F"/>
+<stop offset="1" style="stop-color:#252629"/>
</linearGradient>
<rect fill="url(#SVGID_11_)" height="2" width="3" x="21" y="20"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="18.5" x2="18.5" y1="10.1875" y2="13.0632">
- <stop offset="0" style="stop-color:#30BCE8"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#30BCE8"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<rect fill="url(#SVGID_12_)" height="3" width="11" x="13" y="10"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_landline_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_landline_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,113 +1,60 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill="none" height="30" width="30"/>
-
<path d="M25,7h-13.14c-0.447-1.721-1.999-3-3.857-3-1.915,0-3.518,1.354-3.906,3.155-1.21,0.387-2.094,1.509-2.094,2.845v13c0,1.654,1.346,3,3,3h20c1.654,0,3-1.346,3-3v-13c0-1.654-1.35-3-3-3z" fill-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="15" x2="15" y1="8.16" y2="25.01">
-
<stop offset="0" stop-color="#E6E6E6"/>
-
<stop offset="1" stop-color="#626262"/>
-
</linearGradient>
-
<path d="M27,23c0,1.1-0.9,2-2,2h-20c-1.1,0-2-0.9-2-2v-13c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v13z" fill="url(#SVGID_1)"/>
-
<path d="M25,8h-20c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1c0-1.1-0.9-2-2-2z" fill="#FFFFFF" fill-opacity="0.4"/>
-
<path d="M8,24c2.205,0,4-1.794,4-4v-12h-8v12c0,2.21,1.795,4,4,4z" fill-opacity="0.1"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="8" x2="8" y1="5.17" y2="23.01">
-
<stop offset="0" stop-color="#A0A7A8"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<path d="M11,20c0,1.65-1.35,3-3,3s-3-1.35-3-3v-12c0-1.65,1.35-3,3-3s3,1.35,3,3v12z" fill="url(#SVGID_2)"/>
-
<path d="M8,5c-1.65,0-3,1.35-3,3v1c0-1.65,1.35-3,3-3s3,1.35,3,3v-1c0-1.65-1.35-3-3-3z" fill="#FFFFFF" fill-opacity="0.3"/>
-
<path d="M10,11v11.22c0.609-0.55,1-1.337,1-2.217v-11l-1,2z" fill-opacity="0.3"/>
-
<path d="M6,22.22v-11.22l-1-2v11c0,0.88,0.391,1.67,1,2.22z" fill-opacity="0.3"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3" x1="14.5" x2="14.5" y1="14" y2="23.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
-<stop offset="1" stop-color="#252629"/>
-
-</linearGradient>
-
-<rect fill="url(#SVGID_3)" height="2" width="3" x="13" y="14"/>
-
-<rect fill="url(#SVGID_3)" height="2" width="3" x="17" y="14"/>
-
-<rect fill="url(#SVGID_3)" height="2" width="3" x="21" y="14"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6" x1="14.5" x2="14.5" y1="13" y2="22.98">
-
-<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
-<rect fill="url(#SVGID_6)" height="2" width="3" x="13" y="17"/>
-
-<rect fill="url(#SVGID_6)" height="2" width="3" x="17" y="17"/>
-
-<rect fill="url(#SVGID_6)" height="2" width="3" x="21" y="17"/>
-
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9" x1="14.5" x2="14.5" y1="12" y2="21.98">
-
+<rect fill="url(#SVGID_3)" height="2" width="3" x="13" y="14"/>
+<rect fill="url(#SVGID_3)" height="2" width="3" x="17" y="14"/>
+<rect fill="url(#SVGID_3)" height="2" width="3" x="21" y="14"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6" x1="14.5" x2="14.5" y1="13" y2="22.98">
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
+<rect fill="url(#SVGID_6)" height="2" width="3" x="13" y="17"/>
+<rect fill="url(#SVGID_6)" height="2" width="3" x="17" y="17"/>
+<rect fill="url(#SVGID_6)" height="2" width="3" x="21" y="17"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9" x1="14.5" x2="14.5" y1="12" y2="21.98">
+<stop offset="0" stop-color="#696D6F"/>
+<stop offset="1" stop-color="#252629"/>
+</linearGradient>
<rect fill="url(#SVGID_9)" height="2" width="3" x="13" y="20"/>
-
<rect fill="url(#SVGID_9)" height="2" width="3" x="17" y="20"/>
-
<rect fill="url(#SVGID_9)" height="2" width="3" x="21" y="20"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12" x1="18.5" x2="18.5" y1="10.19" y2="13.06">
-
<stop offset="0" stop-color="#30BCE8"/>
-
<stop offset="1" stop-color="#048CC6"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_12)" height="3" width="11" x="13" y="10"/>
-
<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13" x1="21" x2="21" y1="14.97" y2="29.16">
-
<stop offset="0" stop-color="#4EDEFF"/>
-
<stop offset="1" stop-color="#048CC6"/>
-
</linearGradient>
-
<circle cx="21" cy="22" fill="url(#SVGID_13)" r="7"/>
-
<polygon fill-opacity="0.2" points="25.34,24,21,19.4,16.66,24,16,23.3,21,18,26,23.3,25.34,24"/>
-
<polygon fill-opacity="0.2" points="21,20.86,17,25.1,17,27,20,27,20,24,22,24,22,27,25,27,25,25.1"/>
-
<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4"/>
-
<polygon fill="#FFFFFF" points="25.34,23,21,18.4,16.66,23,16,22.3,21,17,26,22.3,25.34,23"/>
-
<polygon fill="#FFFFFF" points="21,19.86,17,24.1,17,26,20,26,20,23,22,23,22,26,25,26,25,24.1"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_landline_work.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_landline_work.svg Thu May 27 13:10:59 2010 +0300
@@ -1,111 +1,59 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill="none" height="30" width="30"/>
-
<path d="M25,7h-13.14c-0.447-1.721-1.999-3-3.857-3-1.915,0-3.518,1.354-3.906,3.155-1.21,0.387-2.094,1.509-2.094,2.845v13c0,1.654,1.346,3,3,3h20c1.654,0,3-1.346,3-3v-13c0-1.654-1.35-3-3-3z" fill-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="15" x2="15" y1="8.16" y2="25.01">
-
<stop offset="0" stop-color="#E6E6E6"/>
-
<stop offset="1" stop-color="#626262"/>
-
</linearGradient>
-
<path d="M27,23c0,1.1-0.9,2-2,2h-20c-1.1,0-2-0.9-2-2v-13c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v13z" fill="url(#SVGID_1)"/>
-
<path d="M25,8h-20c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1c0-1.1-0.9-2-2-2z" fill="#FFFFFF" fill-opacity="0.4"/>
-
<path d="M8,24c2.205,0,4-1.794,4-4v-12h-8v12c0,2.21,1.795,4,4,4z" fill-opacity="0.1"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="8" x2="8" y1="5.17" y2="23.01">
-
<stop offset="0" stop-color="#A0A7A8"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<path d="M11,20c0,1.65-1.35,3-3,3s-3-1.35-3-3v-12c0-1.65,1.35-3,3-3s3,1.35,3,3v12z" fill="url(#SVGID_2)"/>
-
<path d="M8,5c-1.65,0-3,1.35-3,3v1c0-1.65,1.35-3,3-3s3,1.35,3,3v-1c0-1.65-1.35-3-3-3z" fill="#FFFFFF" fill-opacity="0.3"/>
-
<path d="M10,11v11.22c0.609-0.55,1-1.337,1-2.217v-11l-1,2z" fill-opacity="0.3"/>
-
<path d="M6,22.22v-11.22l-1-2v11c0,0.88,0.391,1.67,1,2.22z" fill-opacity="0.3"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3" x1="14.5" x2="14.5" y1="14" y2="23.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_3)" height="2" width="3" x="13" y="14"/>
-
<rect fill="url(#SVGID_3)" height="2" width="3" x="17" y="14"/>
-
<rect fill="url(#SVGID_3)" height="2" width="3" x="21" y="14"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6" x1="14.5" x2="14.5" y1="13" y2="22.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_6)" height="2" width="3" x="13" y="17"/>
-
<rect fill="url(#SVGID_6)" height="2" width="3" x="17" y="17"/>
-
<rect fill="url(#SVGID_6)" height="2" width="3" x="21" y="17"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9" x1="14.5" x2="14.5" y1="12" y2="21.98">
-
<stop offset="0" stop-color="#696D6F"/>
-
<stop offset="1" stop-color="#252629"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_9)" height="2" width="3" x="13" y="20"/>
-
<rect fill="url(#SVGID_9)" height="2" width="3" x="17" y="20"/>
-
<rect fill="url(#SVGID_9)" height="2" width="3" x="21" y="20"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12" x1="18.5" x2="18.5" y1="10.19" y2="13.06">
-
<stop offset="0" stop-color="#30BCE8"/>
-
<stop offset="1" stop-color="#048CC6"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_12)" height="3" width="11" x="13" y="10"/>
-
<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13" x1="21" x2="21" y1="14.97" y2="29.16">
-
<stop offset="0" stop-color="#4EDEFF"/>
-
<stop offset="1" stop-color="#048CC6"/>
-
</linearGradient>
-
<circle cx="21" cy="22" fill="url(#SVGID_13)" r="7"/>
-
<path d="M22,21v-2h-5v8h8v-6h-3zm-1,4h-3v-1h3v1zm0-2h-3v-1h3v1zm-3-2v-1h3v1h-3zm6,4h-2v-1h2v1zm0-2h-2v-1h2v1z" fill-opacity="0.2"/>
-
<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4"/>
-
<path d="M22,20v-2h-5v8h8v-6h-3zm-1,4h-3v-1h3v1zm0-2h-3v-1h3v1zm-3-2v-1h3v1h-3zm6,4h-2v-1h2v1zm0-2h-2v-1h2v1z" fill="#FFFFFF"/>
-
<rect fill-opacity="0.3" height="6" width="1" x="22" y="20"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_link.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_link.svg Thu May 27 13:10:59 2010 +0300
@@ -1,25 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14C29,22.719,22.719,29,15,29L15,29 z" opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2.2749" y2="32.0078">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
-</linearGradient>
+<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14C29,22.719,22.719,29,15,29L15,29 z" fill-opacity="0.6" stroke-opacity="0.6"/>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M13,16c0,0.553-0.447,1-1,1H6c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h6C12.553,15,13,15.447,13,16 L13,16z" opacity="0.2"/>
-<path d="M27,16c0,0.553-0.447,1-1,1h-6c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h6C26.553,15,27,15.447,27,16 L27,16z" opacity="0.2"/>
-<path d="M13,13h6c0.737,0,1.375,0.405,1.722,1h2.136c-0.447-1.721-1.999-3-3.857-3h-6c-1.858,0-3.41,1.279-3.857,3 h2.136C11.625,13.405,12.263,13,13,13z" opacity="0.2"/>
-<path d="M20.722,18c-0.347,0.595-0.984,1-1.722,1h-6c-0.737,0-1.375-0.405-1.722-1H9.143c0.447,1.721,1.999,3,3.857,3 h6c1.858,0,3.41-1.279,3.857-3H20.722z" opacity="0.2"/>
+<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M13,16c0,0.553-0.447,1-1,1H6c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h6C12.553,15,13,15.447,13,16 L13,16z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M27,16c0,0.553-0.447,1-1,1h-6c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h6C26.553,15,27,15.447,27,16 L27,16z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M13,13h6c0.737,0,1.375,0.405,1.722,1h2.136c-0.447-1.721-1.999-3-3.857-3h-6c-1.858,0-3.41,1.279-3.857,3 h2.136C11.625,13.405,12.263,13,13,13z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M20.722,18c-0.347,0.595-0.984,1-1.722,1h-6c-0.737,0-1.375-0.405-1.722-1H9.143c0.447,1.721,1.999,3,3.857,3 h6c1.858,0,3.41-1.279,3.857-3H20.722z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M12,15c0,0.553-0.447,1-1,1H5c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h6C11.553,14,12,14.447,12,15 L12,15z" fill="#FFFFFF"/>
<path d="M26,15c0,0.553-0.447,1-1,1h-6c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h6C25.553,14,26,14.447,26,15 L26,15z" fill="#FFFFFF"/>
<path d="M12,12h6c0.737,0,1.375,0.405,1.722,1h2.136c-0.447-1.721-1.999-3-3.857-3h-6c-1.858,0-3.41,1.279-3.857,3 h2.136C10.625,12.405,11.263,12,12,12z" fill="#FFFFFF"/>
<path d="M19.722,17c-0.347,0.595-0.984,1-1.722,1h-6c-0.737,0-1.375-0.405-1.722-1H8.143 c0.447,1.721,1.999,3,3.857,3h6c1.858,0,3.41-1.279,3.857-3H19.722z" fill="#FFFFFF"/>
<rect fill="none" height="30" width="30"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2.2749" y2="32.0078">
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_location.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_location.svg Thu May 27 13:10:59 2010 +0300
@@ -1,30 +1,28 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
+<rect fill="none" height="30" width="30"/>
+<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
-<g opacity="0.5">
- <rect fill="none" height="30" width="30"/>
</g>
-<ellipse cx="15.37" cy="27.279" enable-background="new " fill="#333333" opacity="0.2" rx="7.052" ry="2.721"/>
-<path d="M18.615,27.279c0,0.69-1.455,1.251-3.246,1.251c-1.79,0-3.244-0.561-3.244-1.251 c0-0.694,1.454-1.253,3.244-1.253C17.16,26.026,18.615,26.586,18.615,27.279z" fill="#333333" opacity="0.4"/>
+<ellipse cx="15.37" cy="27.279" fill="#333333" fill-opacity="0.2" rx="7.052" ry="2.721" stroke-opacity="0.2"/>
+<path d="M18.615,27.279c0,0.69-1.455,1.251-3.246,1.251c-1.79,0-3.244-0.561-3.244-1.251 c0-0.694,1.454-1.253,3.244-1.253C17.16,26.026,18.615,26.586,18.615,27.279z" fill="#333333" fill-opacity="0.4" stroke-opacity="0.4"/>
<path d="M24.592,1.348c-1.578,1.113-4.293,2.684-5.461,2.684c-0.002,0-0.002,0-0.004,0 c-0.266-0.032-0.66-0.29-1.078-0.564c-0.836-0.547-1.984-1.297-3.656-1.309c-1.232,0-3.102,1.206-4.354,2.131L9.262,2.275L3.5,4.49 l1.32,3.416l0.777-0.299l6.963,18.037L15.896,28l0.865-3.971l-1.742-4.511l0.313-0.802c0.641-1.651,2.09-4.584,3.254-5.409 c0.305-0.216,1.156-0.646,1.84-0.988c0.693-0.351,1.293-0.65,1.646-0.876c2.91-1.866,3.971-8.396,4.08-9.135L26.5,0L24.592,1.348z" fill-opacity="0.6"/>
<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -71.0508 -951.4899)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-269.8569" x2="-272.3403" y1="-932.4741" y2="-932.4741">
- <stop offset="0" style="stop-color:#8C8E8F"/>
- <stop offset="0.65" style="stop-color:#D9D9D9"/>
- <stop offset="1" style="stop-color:#AEB2B3"/>
+<stop offset="0" style="stop-color:#8C8E8F"/>
+<stop offset="0.65" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#AEB2B3"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="6.169,6.32 8.51,5.417 15.725,24.106 15.24,26.318 13.383,25.006 "/>
<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -71.0508 -951.4899)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-269.0659" x2="-273.1762" y1="-920.6802" y2="-920.6802">
- <stop offset="0" style="stop-color:#4F4F4F"/>
- <stop offset="0.59" style="stop-color:#BFBFBF"/>
- <stop offset="1" style="stop-color:#6B6B6B"/>
+<stop offset="0" style="stop-color:#4F4F4F"/>
+<stop offset="0.59" style="stop-color:#BFBFBF"/>
+<stop offset="1" style="stop-color:#6B6B6B"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="4.79,5.063 8.689,3.563 9.291,5.121 5.393,6.619 "/>
-<rect enable-background="new " height="0.834" opacity="0.2" transform="matrix(-0.933 0.3598 -0.3598 -0.933 16.7306 9.4024)" width="2.508" x="6.236" y="5.841"/>
+<rect fill-opacity="0.2" height="0.834" stroke-opacity="0.2" transform="matrix(-0.933 0.3598 -0.3598 -0.933 16.7306 9.4024)" width="2.508" x="6.236" y="5.841"/>
<path d="M9.59,5.896c0,0,3.352-2.754,4.811-2.742c2.279,0.017,3.373,1.721,4.609,1.864 c1.805,0.214,6.158-2.858,6.158-2.858s-1.021,6.767-3.635,8.445c-0.688,0.437-2.859,1.419-3.523,1.891 c-1.844,1.307-3.609,5.862-3.609,5.862L9.59,5.896z" fill="#33A02C"/>
-<path d="M14.746,4.046c2.279,0.021,3.373,1.723,4.607,1.868 c1.396,0.162,4.318-1.639,5.566-2.461c0.164-0.773,0.244-1.293,0.244-1.293s-4.354,3.072-6.158,2.858 c-1.234-0.144-2.328-1.849-4.607-1.864C12.939,3.143,9.59,5.896,9.59,5.896l0.346,0.896C9.936,6.792,13.285,4.038,14.746,4.046z" enable-background="new " fill="#FFFFFF" opacity="0.4"/>
+<path d="M14.746,4.046c2.279,0.021,3.373,1.723,4.607,1.868 c1.396,0.162,4.318-1.639,5.566-2.461c0.164-0.773,0.244-1.293,0.244-1.293s-4.354,3.072-6.158,2.858 c-1.234-0.144-2.328-1.849-4.607-1.864C12.939,3.143,9.59,5.896,9.59,5.896l0.346,0.896C9.936,6.792,13.285,4.038,14.746,4.046z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_lock.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_lock.svg Thu May 27 13:10:59 2010 +0300
@@ -1,45 +1,43 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M25,13h-1v-3c0-4.963-4.037-9-9-9c-4.963,0-9,4.037-9,9v3H5c-1.654,0-3,1.346-3,3v10 c0,1.654,1.346,3,3,3h20c1.654,0,3-1.346,3-3V16C28,14.346,26.654,13,25,13z M12,10c0-1.654,1.346-3,3-3c1.654,0,3,1.346,3,3v3h-6 V10z" fill-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.0005" x2="23" y1="14" y2="14">
- <stop offset="0" style="stop-color:#B4B4B4"/>
- <stop offset="0.2083" style="stop-color:#F0F0F0"/>
- <stop offset="0.526" style="stop-color:#969696"/>
- <stop offset="0.8061" style="stop-color:#A1A1A1"/>
- <stop offset="1" style="stop-color:#BEBEBE"/>
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="0.2083" style="stop-color:#F0F0F0"/>
+<stop offset="0.526" style="stop-color:#969696"/>
+<stop offset="0.8061" style="stop-color:#A1A1A1"/>
+<stop offset="1" style="stop-color:#BEBEBE"/>
</linearGradient>
<path d="M15,6c2.207,0,4,1.794,4,4v8c0,2.206-1.793,4-4,4c-2.206,0-4-1.794-4-4v-8C11,7.794,12.794,6,15,6 M15,2c-4.4,0-8,3.6-8,8v8c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8v-8C23,5.6,19.4,2,15,2L15,2z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7.0005" x2="23" y1="9" y2="9">
- <stop offset="0" style="stop-color:#8C8C8C"/>
- <stop offset="0.2083" style="stop-color:#BDBDBD"/>
- <stop offset="0.526" style="stop-color:#707070"/>
- <stop offset="1" style="stop-color:#8F8F8F"/>
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="0.2083" style="stop-color:#BDBDBD"/>
+<stop offset="0.526" style="stop-color:#707070"/>
+<stop offset="1" style="stop-color:#8F8F8F"/>
</linearGradient>
<path d="M11,16v-6c0-2.206,1.794-4,4-4c2.207,0,4,1.794,4,4v6h4v-6c0-4.4-3.6-8-8-8c-4.4,0-8,3.6-8,8v6H11z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.0005" x2="22" y1="9.5" y2="9.5">
- <stop offset="0" style="stop-color:#B4B4B4"/>
- <stop offset="0.2083" style="stop-color:#F0F0F0"/>
- <stop offset="0.526" style="stop-color:#969696"/>
- <stop offset="0.8061" style="stop-color:#A1A1A1"/>
- <stop offset="1" style="stop-color:#BEBEBE"/>
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="0.2083" style="stop-color:#F0F0F0"/>
+<stop offset="0.526" style="stop-color:#969696"/>
+<stop offset="0.8061" style="stop-color:#A1A1A1"/>
+<stop offset="1" style="stop-color:#BEBEBE"/>
</linearGradient>
<path d="M10,16v-6c0-2.757,2.243-5,5-5c2.757,0,5,2.243,5,5v6h2v-6c0-3.859-3.141-7-7-7c-3.859,0-7,3.141-7,7 v6H10z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="3.0005" x2="27" y1="21" y2="21">
- <stop offset="0" style="stop-color:#FFB533"/>
- <stop offset="0.24" style="stop-color:#FFE692"/>
- <stop offset="0.75" style="stop-color:#ED8C0D"/>
- <stop offset="1" style="stop-color:#FFB81F"/>
+<stop offset="0" style="stop-color:#FFB533"/>
+<stop offset="0.24" style="stop-color:#FFE692"/>
+<stop offset="0.75" style="stop-color:#ED8C0D"/>
+<stop offset="1" style="stop-color:#FFB81F"/>
</linearGradient>
<path d="M27,26c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V16c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2V26z" fill="url(#SVGID_4_)"/>
-<path d="M25,27H5c-1.1,0-2-0.9-2-2v1c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2v-1C27,26.1,26.1,27,25,27z" fill="#873900" opacity="0.2"/>
-<path d="M25,14H5c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1C27,14.9,26.1,14,25,14z" fill="#FFFFFF" opacity="0.4"/>
-<rect height="2" opacity="0.2" width="24" x="3" y="23"/>
-<rect height="2" opacity="0.2" width="24" x="3" y="19"/>
+<path d="M25,27H5c-1.1,0-2-0.9-2-2v1c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2v-1C27,26.1,26.1,27,25,27z" fill="#873900" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M25,14H5c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1C27,14.9,26.1,14,25,14z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<rect fill-opacity="0.2" height="2" stroke-opacity="0.2" width="24" x="3" y="23"/>
+<rect fill-opacity="0.2" height="2" stroke-opacity="0.2" width="24" x="3" y="19"/>
<rect fill="none" height="30" width="30" x="0"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_meeting.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_meeting.svg Thu May 27 13:10:59 2010 +0300
@@ -1,51 +1,49 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M27.771,5.936L21.92,6.904l0.234,1.459c-0.145-0.002-0.285-0.004-0.4-0.004C19.391,6.07,17.258,5,15.063,5 c-1.342,0-2.463,0.404-3.451,0.76l-0.273,0.102c-0.482,0.221-1.266,1.016-2.053,1.916c-0.309,0.018-0.621,0.023-0.914,0.07 l-0.453,0.07L8.08,6.904L2.229,5.936L0,19.752l5.852,0.969l0.041-0.254c0.158,0.254,0.363,0.477,0.613,0.641 c0.34,0.23,2.76,1.828,4.266,2.824l1.139,0.752C12.211,24.885,12.633,25,13.066,25c0.344,0,0.676-0.07,0.971-0.203 c0.117-0.051,0.613-0.332,1.18-0.684c0.383,0.053,0.768,0.09,1.158,0.09h0.018l2.125-0.078c1.697-0.061,3.5-1.969,4.752-3.627 c0.016,0,0.027,0.006,0.043,0.006l0,0c0.359,0,0.648-0.066,0.703-0.08l0.082-0.02l0.051,0.316L30,19.752L27.771,5.936z" opacity="0.6"/>
+<path d="M27.771,5.936L21.92,6.904l0.234,1.459c-0.145-0.002-0.285-0.004-0.4-0.004C19.391,6.07,17.258,5,15.063,5 c-1.342,0-2.463,0.404-3.451,0.76l-0.273,0.102c-0.482,0.221-1.266,1.016-2.053,1.916c-0.309,0.018-0.621,0.023-0.914,0.07 l-0.453,0.07L8.08,6.904L2.229,5.936L0,19.752l5.852,0.969l0.041-0.254c0.158,0.254,0.363,0.477,0.613,0.641 c0.34,0.23,2.76,1.828,4.266,2.824l1.139,0.752C12.211,24.885,12.633,25,13.066,25c0.344,0,0.676-0.07,0.971-0.203 c0.117-0.051,0.613-0.332,1.18-0.684c0.383,0.053,0.768,0.09,1.158,0.09h0.018l2.125-0.078c1.697-0.061,3.5-1.969,4.752-3.627 c0.016,0,0.027,0.006,0.043,0.006l0,0c0.359,0,0.648-0.066,0.703-0.08l0.082-0.02l0.051,0.316L30,19.752L27.771,5.936z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.6558" x2="22.9905" y1="15.9707" y2="15.9707">
- <stop offset="0" style="stop-color:#FFCA26"/>
- <stop offset="1" style="stop-color:#FEAB0E"/>
+<stop offset="0" style="stop-color:#FFCA26"/>
+<stop offset="1" style="stop-color:#FEAB0E"/>
</linearGradient>
<path d="M8.514,8.838C7.975,8.916,7.43,9.006,7.096,9.053L6.391,9.025l-1.074,7.865l0.521,0.492 c1.512,1.336,5.945,5.82,10.537,5.82l2.107-0.076l0,0c1.711-0.063,3.928-3.133,4.145-3.422C24.459,17.523,16.092,7.641,8.514,8.838z " fill="url(#SVGID_1_)"/>
-<path d="M10.77,14.654c-0.434-0.279-0.932-0.428-1.441-0.428c-0.215,0-0.432,0.025-0.648,0.076 c-0.98,0.232-1.709,0.977-2.293,1.574L6.178,16.09c-0.285,0.285-0.459,0.662-0.559,1.086l0.219,0.207 c1.512,1.336,5.945,5.82,10.537,5.82l0.201-0.008c0.195-0.148,0.375-0.291,0.496-0.412c0.67-0.676,0.934-1.541,0.75-2.449 C17.775,19.791,17.33,18.445,10.77,14.654z" opacity="0.2"/>
+<path d="M10.77,14.654c-0.434-0.279-0.932-0.428-1.441-0.428c-0.215,0-0.432,0.025-0.648,0.076 c-0.98,0.232-1.709,0.977-2.293,1.574L6.178,16.09c-0.285,0.285-0.459,0.662-0.559,1.086l0.219,0.207 c1.512,1.336,5.945,5.82,10.537,5.82l0.201-0.008c0.195-0.148,0.375-0.291,0.496-0.412c0.67-0.676,0.934-1.541,0.75-2.449 C17.775,19.791,17.33,18.445,10.77,14.654z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -6 35)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="17.6895" x2="17.6895" y1="20.0127" y2="-2.761">
- <stop offset="0" style="stop-color:#FFF2A9"/>
- <stop offset="0.1337" style="stop-color:#FFE89A"/>
- <stop offset="0.3918" style="stop-color:#FFCF72"/>
- <stop offset="0.7449" style="stop-color:#FFA732"/>
- <stop offset="1" style="stop-color:#FF8800"/>
+<stop offset="0" style="stop-color:#FFF2A9"/>
+<stop offset="0.1337" style="stop-color:#FFE89A"/>
+<stop offset="0.3918" style="stop-color:#FFCF72"/>
+<stop offset="0.7449" style="stop-color:#FFA732"/>
+<stop offset="1" style="stop-color:#FF8800"/>
</linearGradient>
<path d="M10.238,15.496c-0.398-0.256-0.859-0.33-1.332-0.219c-0.801,0.189-1.455,0.945-2.029,1.52 c-0.576,0.58-0.346,2.322-0.322,2.627c0.025,0.348,0.213,0.662,0.502,0.852c0.465,0.314,4.816,3.188,5.398,3.574 c0.188,0.125,0.693,0.252,1.197,0.025c0.18-0.076,2.178-1.258,2.721-1.801c0.471-0.475,0.602-1.021,0.465-1.602 C16.791,19.287,10.238,15.496,10.238,15.496z" fill="url(#SVGID_2_)"/>
-<path d="M6.877,17.797c0.574-0.574,1.229-1.33,2.029-1.52c0.473-0.111,0.934-0.037,1.332,0.219 c0,0,6.221,3.602,6.568,4.879c0.094-0.287,0.105-0.59,0.031-0.902c-0.047-1.186-6.6-4.977-6.6-4.977 c-0.398-0.256-0.859-0.33-1.332-0.219c-0.801,0.189-1.455,0.945-2.029,1.52c-0.418,0.42-0.41,1.445-0.367,2.098 C6.547,18.453,6.645,18.031,6.877,17.797z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M8.514,8.838C8.467,8.844,8.42,8.852,8.373,8.857C8.061,9.242,7.766,9.615,7.514,9.939 c-0.711,1.094-0.439,1.959-0.217,2.379c0.432,0.807,1.412,1.309,2.557,1.309c0.73,0,1.459-0.197,2.104-0.574 c1.033-0.6,1.846-1.178,2.461-1.754c1.135,0.576,3.246,1.908,4.084,2.779c1.008,1.049,2.641,4.008,2.949,5.154 c0.121,0.443,0.4,0.773,0.779,0.99c0.207-0.26,0.35-0.455,0.396-0.518C24.459,17.523,16.092,7.641,8.514,8.838z" opacity="0.2"/>
+<path d="M6.877,17.797c0.574-0.574,1.229-1.33,2.029-1.52c0.473-0.111,0.934-0.037,1.332,0.219 c0,0,6.221,3.602,6.568,4.879c0.094-0.287,0.105-0.59,0.031-0.902c-0.047-1.186-6.6-4.977-6.6-4.977 c-0.398-0.256-0.859-0.33-1.332-0.219c-0.801,0.189-1.455,0.945-2.029,1.52c-0.418,0.42-0.41,1.445-0.367,2.098 C6.547,18.453,6.645,18.031,6.877,17.797z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M8.514,8.838C8.467,8.844,8.42,8.852,8.373,8.857C8.061,9.242,7.766,9.615,7.514,9.939 c-0.711,1.094-0.439,1.959-0.217,2.379c0.432,0.807,1.412,1.309,2.557,1.309c0.73,0,1.459-0.197,2.104-0.574 c1.033-0.6,1.846-1.178,2.461-1.754c1.135,0.576,3.246,1.908,4.084,2.779c1.008,1.049,2.641,4.008,2.949,5.154 c0.121,0.443,0.4,0.773,0.779,0.99c0.207-0.26,0.35-0.455,0.396-0.518C24.459,17.523,16.092,7.641,8.514,8.838z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -6 35)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="22.4619" x2="22.4619" y1="29.3672" y2="-5.6876">
- <stop offset="0" style="stop-color:#FFF2A9"/>
- <stop offset="0.1337" style="stop-color:#FFE89A"/>
- <stop offset="0.3918" style="stop-color:#FFCF72"/>
- <stop offset="0.7449" style="stop-color:#FFA732"/>
- <stop offset="1" style="stop-color:#FF8800"/>
+<stop offset="0" style="stop-color:#FFF2A9"/>
+<stop offset="0.1337" style="stop-color:#FFE89A"/>
+<stop offset="0.3918" style="stop-color:#FFCF72"/>
+<stop offset="0.7449" style="stop-color:#FFA732"/>
+<stop offset="1" style="stop-color:#FF8800"/>
</linearGradient>
<path d="M23.408,9.369c-0.021,0-1.93-0.008-2.07-0.023c-4.553-4.561-7.27-3.404-9.592-2.574 c-0.789,0.361-3.404,3.717-3.404,3.717c-1.143,1.76,1.277,2.773,3.121,1.699c1.561-0.908,2.311-1.6,2.725-2.08 c0.953,0.326,3.936,2.141,5.025,3.275c1.09,1.133,2.83,4.232,3.191,5.582c0.213,0.773,1.377,0.488,1.377,0.488l1.096-0.486 L23.408,9.369z" fill="url(#SVGID_3_)"/>
-<path d="M8.342,11.488c0,0,2.615-3.355,3.404-3.717c2.322-0.83,5.039-1.986,9.592,2.574 c0.141,0.016,2.049,0.023,2.07,0.023l1.326,8.662l0.143-0.064l-1.469-9.598c-0.021,0-1.93-0.008-2.07-0.023 c-4.553-4.561-7.27-3.404-9.592-2.574c-0.789,0.361-3.404,3.717-3.404,3.717c-0.34,0.523-0.359,0.979-0.178,1.334 C8.209,11.715,8.268,11.604,8.342,11.488z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M23.934,19.385l0.943-0.418l-1.469-9.598c-0.012,0-0.561-0.002-1.092-0.006L23.934,19.385z" opacity="0.2"/>
+<path d="M8.342,11.488c0,0,2.615-3.355,3.404-3.717c2.322-0.83,5.039-1.986,9.592,2.574 c0.141,0.016,2.049,0.023,2.07,0.023l1.326,8.662l0.143-0.064l-1.469-9.598c-0.021,0-1.93-0.008-2.07-0.023 c-4.553-4.561-7.27-3.404-9.592-2.574c-0.789,0.361-3.404,3.717-3.404,3.717c-0.34,0.523-0.359,0.979-0.178,1.334 C8.209,11.715,8.268,11.604,8.342,11.488z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M23.934,19.385l0.943-0.418l-1.469-9.598c-0.012,0-0.561-0.002-1.092-0.006L23.934,19.385z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(0.9869 -0.1613 0.1613 0.9869 -176.9958 -51.6826)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="189.8135" x2="189.8135" y1="90.9219" y2="103.5013">
- <stop offset="0" style="stop-color:#F9F9F9"/>
- <stop offset="0.1669" style="stop-color:#EEEEEE"/>
- <stop offset="0.7665" style="stop-color:#C5C5C5"/>
- <stop offset="1" style="stop-color:#B5B5B5"/>
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="0.1669" style="stop-color:#EEEEEE"/>
+<stop offset="0.7665" style="stop-color:#C5C5C5"/>
+<stop offset="1" style="stop-color:#B5B5B5"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="28.863,18.926 24.967,19.572 23.057,7.729 26.953,7.084 "/>
-<polygon fill="#FFFFFF" opacity="0.4" points="25.953,8.084 27.732,19.113 28.863,18.926 26.953,7.084 23.057,7.729 23.188,8.541 "/>
-<path d="M7.75,8.953c-0.254,0.039-0.482,0.076-0.654,0.1L6.391,9.025l-1.074,7.865l0.521,0.492 c0.135,0.119,0.301,0.271,0.482,0.436L7.75,8.953z" opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="25.953,8.084 27.732,19.113 28.863,18.926 26.953,7.084 23.057,7.729 23.188,8.541 " stroke-opacity="0.4"/>
+<path d="M7.75,8.953c-0.254,0.039-0.482,0.076-0.654,0.1L6.391,9.025l-1.074,7.865l0.521,0.492 c0.135,0.119,0.301,0.271,0.482,0.436L7.75,8.953z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(-0.9869 -0.1613 -0.1613 0.9869 -641.6711 -51.6826)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-647.7456" x2="-647.7456" y1="-46.2344" y2="-33.6554">
- <stop offset="0" style="stop-color:#F9F9F9"/>
- <stop offset="1" style="stop-color:#B5B5B5"/>
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#B5B5B5"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="1.137,18.926 5.033,19.572 6.945,7.729 3.047,7.084 "/>
-<polygon fill="#FFFFFF" opacity="0.4" points="3.047,7.084 2.863,8.219 5.945,8.729 4.217,19.436 5.033,19.572 6.945,7.729 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="3.047,7.084 2.863,8.219 5.945,8.729 4.217,19.436 5.033,19.572 6.945,7.729 " stroke-opacity="0.4"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_message.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_message.svg Thu May 27 13:10:59 2010 +0300
@@ -1,30 +1,30 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.6" height="20" width="28" x="1" y="5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="6.0415" y2="24.042">
- <stop offset="0" style="stop-color:#FEAB0E"/>
- <stop offset="0.3091" style="stop-color:#FEAB0E"/>
- <stop offset="0.7879" style="stop-color:#FFDA33"/>
- <stop offset="1" style="stop-color:#FFE377"/>
+<stop offset="0" style="stop-color:#FEAB0E"/>
+<stop offset="0.3091" style="stop-color:#FEAB0E"/>
+<stop offset="0.7879" style="stop-color:#FFDA33"/>
+<stop offset="1" style="stop-color:#FFE377"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="18" width="26" x="2" y="6"/>
-<polygon fill="#FFFFFF" opacity="0.4" points="15,12.633 2.241,24 3.409,24 15,14.526 26.591,24 27.759,24 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="15,12.633 2.241,24 3.409,24 15,14.526 26.591,24 27.759,24 " stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="6" y2="24.0005">
- <stop offset="0.0072" style="stop-color:#C9700B"/>
- <stop offset="0.2727" style="stop-color:#C9700B"/>
- <stop offset="0.7212" style="stop-color:#E8AC22"/>
+<stop offset="0" style="stop-color:#C9700B"/>
+<stop offset="0.0072" style="stop-color:#C9700B"/>
+<stop offset="0.2727" style="stop-color:#C9700B"/>
+<stop offset="0.7212" style="stop-color:#E8AC22"/>
+<stop offset="1" style="stop-color:#E8AC22"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" opacity="0.5" points="28,6 15.137,6.947 2,6 2,6.161 10.863,15.487 2,23.941 2,24 2.241,24 11.328,15.902 15,19.365 18.672,15.902 27.759,24 28,24 28,23.941 19.162,15.487 28,6.161 "/>
+<polygon fill="url(#SVGID_2_)" fill-opacity="0.5" points="28,6 15.137,6.947 2,6 2,6.161 10.863,15.487 2,23.941 2,24 2.241,24 11.328,15.902 15,19.365 18.672,15.902 27.759,24 28,24 28,23.941 19.162,15.487 28,6.161 " stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="6.0957" y2="17.2921">
- <stop offset="0" style="stop-color:#FFF278"/>
- <stop offset="1" style="stop-color:#FFFCDA"/>
+<stop offset="0" style="stop-color:#FFF278"/>
+<stop offset="1" style="stop-color:#FFFCDA"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="2.127,6 15,17.47 27.873,6 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_missed_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_missed_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,18 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
+<rect fill="none" height="30" width="30"/>
+<path d="M18,29c-6.065,0-11-4.935-11-11v-3H0L11,0.333L22,15h-8v3c0,2.206,1.795,4,4,4s4-1.794,4-4v-1h7v1 C29,24.065,24.065,29,18,29L18,29z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M23,18c0,2.757-2.243,5-5,5s-5-2.243-5-5v-4h7L11,2L2,14h6v4c0,5.5,4.5,10,10,10s10-4.5,10-10H23z" fill="url(#SVGID_1_)"/>
+<path d="M13,18v1c0,2.757,2.243,5,5,5s5-2.243,5-5h4.949C27.982,18.671,28,18.338,28,18h-5 c0,2.757-2.243,5-5,5S13,20.757,13,18z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="11,3 19.25,14 20,14 11,2 2,14 2.75,14 " stroke-opacity="0.4"/>
+<rect fill="none" height="30" width="30"/>
<defs>
-</defs>
-<rect fill="none" height="30" width="30"/>
-<path d="M18,29c-6.065,0-11-4.935-11-11v-3H0L11,0.333L22,15h-8v3c0,2.206,1.795,4,4,4s4-1.794,4-4v-1h7v1 C29,24.065,24.065,29,18,29L18,29z" opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#FF4D00"/>
- <stop offset="1" style="stop-color:#800000"/>
+<stop offset="0" style="stop-color:#FF4D00"/>
+<stop offset="1" style="stop-color:#800000"/>
</linearGradient>
-<path d="M23,18c0,2.757-2.243,5-5,5s-5-2.243-5-5v-4h7L11,2L2,14h6v4c0,5.5,4.5,10,10,10s10-4.5,10-10H23z" fill="url(#SVGID_1_)"/>
-<path d="M13,18v1c0,2.757,2.243,5,5,5s5-2.243,5-5h4.949C27.982,18.671,28,18.338,28,18h-5 c0,2.757-2.243,5-5,5S13,20.757,13,18z" fill="#FFFFFF" opacity="0.4"/>
-<polygon fill="#FFFFFF" opacity="0.4" points="11,3 19.25,14 20,14 11,2 2,14 2.75,14 "/>
-<rect fill="none" height="30" width="30"/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mms.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mms.svg Thu May 27 13:10:59 2010 +0300
@@ -1,129 +1,72 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill-opacity="0.6" height="24" stroke-opacity="0.6" width="30" y="3"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="4" y2="26">
-
<stop offset="0" stop-color="#DFDFDF"/>
-
<stop offset="1" stop-color="#B5B5B5"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_1_)" height="22" width="28" x="1" y="4"/>
-
<rect fill="#FFFFFF" height="20" width="26" x="2" y="5"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4.792" x2="22.61" y1="4.792" y2="22.61">
-
<stop offset="0" stop-color="#7EBA3E"/>
-
<stop offset="1" stop-color="#33773B"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_2_)" height="18" width="24" x="3" y="6"/>
-
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="28" x="1" y="25"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="7.994" x2="32.65" y1="10.39" y2="24.21">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M27,18.73c-0.327-0.234-0.694-0.459-1.109-0.658-2.262-1.08-9.354-2.498-14.11-4.163-4.755-1.665-3.118-3.442-3.118-3.442-0.106-0.389-0.37-0.777-0.792-0.111-1.122,1.768,1.143,3.228,3.646,4.163,3.118,1.166,10.33,2.419,13.16,4.385,0.956,0.665,1.717,1.31,2.324,1.905v-2.066z" fill="url(#SVGID_3_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9.47" x2="23.28" y1="14.5" y2="27.5">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M9.721,19.19c0.528,0.444,2.42,0.806,4.28-1.056,1.109-1.109,1.109-2.774,1.109-2.774s-2.008-0.611-3.857,0.721c-1.846,1.33-2.057,2.66-1.529,3.11z" fill="url(#SVGID_4_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.799" x2="22.61" y1="15.21" y2="28.21">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M5.061,13.93c0.216,0.342,1.197,0.887,2.528,0.207,0.794-0.407,1.071-1.322,1.071-1.322s-1.002-0.704-2.24-0.312c-1.238,0.39-1.575,1.08-1.359,1.42z" fill="url(#SVGID_5_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="11.88" x2="25.69" y1="11.94" y2="24.95">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M13.9,11.03c-0.37-0.389-1.385-0.848-2.748,0.333-0.814,0.705-0.824,1.946-0.824,1.946s1.352,0.163,2.435-0.447c1.25-0.71,1.47-1.49,1.14-1.83z" fill="url(#SVGID_6_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.24" x2="28.06" y1="9.425" y2="22.43">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M21.43,13.08c-0.32-0.434-1.374-0.805-2.537,0.389-0.754,0.773-1.008,2.501-1.008,2.501s1.352,0.163,2.436-0.448c1.25-0.7,1.56-1.83,1.11-2.44z" fill="url(#SVGID_7_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="12.08" x2="25.89" y1="11.73" y2="24.73">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M17.93,22.48c0.671,0.473,3.591,1.17,5.955-0.809,1.411-1.182,0.898-3.266,0.898-3.266s-3.038-1.205-5.391,0.213c-2.35,1.43-2.13,3.4-1.46,3.87z" fill="url(#SVGID_8_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="16.78" x2="30.59" y1="6.738" y2="19.73">
-
<stop offset="0" stop-color="#A7FF00"/>
-
<stop offset="1" stop-color="#138F00"/>
-
</linearGradient>
-
<path d="M27,13.39c-0.542,0.568-1.025,1.292-1.342,2.203-0.617,1.781,0.855,3.279,0.855,3.279s0.18-0.04,0.48-0.13v-5.352z" fill="url(#SVGID_9_)"/>
-
<rect fill="none" height="30" width="30"/>
-
-<path d="M20.96,28.68c-1.825,0-3.309-1.187-3.309-2.646s1.483-2.647,3.309-2.647c0.224,0,0.445,0.018,0.661,0.053v-7.245l5.735,1.537v4.111l-3.089-0.828v5.02c0,1.47-1.49,2.66-3.31,2.66z" opacity="0.6" style="enable-background:new;"/>
-
+</g>
+<g>
+<path d="M20.96,28.68c-1.825,0-3.309-1.187-3.309-2.646s1.483-2.647,3.309-2.647c0.224,0,0.445,0.018,0.661,0.053v-7.245l5.735,1.537v4.111l-3.089-0.828v5.02c0,1.47-1.49,2.66-3.31,2.66z" fill-opacity="0.6" stroke-opacity="0.6" style="enable-background:new;"/>
+<path d="M22.06,16.77v7.229c-0.34-0.109-0.712-0.17-1.103-0.17-1.584,0-2.868,0.987-2.868,2.206s1.284,2.206,2.868,2.206c1.583,0,2.867-0.988,2.867-2.206v-5.595l3.088,0.828v-3.198l-4.86-1.3z" fill="url(#SVGID_1__)"/>
+<path d="M20.96,27.8c-1.487,0-2.709-0.871-2.854-1.985-0.009,0.072-0.014,0.146-0.014,0.221,0,1.219,1.283,2.206,2.867,2.206,1.583,0,2.867-0.988,2.867-2.206v-0.45c-0.02,1.22-1.3,2.21-2.88,2.21z" fill-opacity="0.2" stroke-opacity="0.2" style="enable-background:new;"/>
+<polygon fill-opacity="0.2" points="23.82,20.44,26.91,21.26,26.91,20.82,23.82,20" stroke-opacity="0.2" style="enable-background:new;"/>
+<path d="M20.96,24.27c0.391,0,0.763,0.062,1.103,0.171v-0.441c-0.339-0.109-0.712-0.17-1.103-0.17-1.584,0-2.867,0.987-2.867,2.206,0,0.074,0.005,0.147,0.014,0.22,0.15-1.12,1.37-1.99,2.86-1.99z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4" style="enable-background:new;"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="22.06,16.77,22.06,17.21,26.91,18.51,26.91,18.07" stroke-opacity="0.4" style="enable-background:new;"/>
+<rect fill="none" height="15" width="15" x="15" y="15"/>
+<defs>
<linearGradient gradientTransform="matrix(0.8824 0 0 0.8824 -252.2905 -982.9092)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="311.4" x2="311.4" y1="1131" y2="1148">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.2606" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
-
-<path d="M22.06,16.77v7.229c-0.34-0.109-0.712-0.17-1.103-0.17-1.584,0-2.868,0.987-2.868,2.206s1.284,2.206,2.868,2.206c1.583,0,2.867-0.988,2.867-2.206v-5.595l3.088,0.828v-3.198l-4.86-1.3z" fill="url(#SVGID_1__)"/>
-
-<path d="M20.96,27.8c-1.487,0-2.709-0.871-2.854-1.985-0.009,0.072-0.014,0.146-0.014,0.221,0,1.219,1.283,2.206,2.867,2.206,1.583,0,2.867-0.988,2.867-2.206v-0.45c-0.02,1.22-1.3,2.21-2.88,2.21z" opacity="0.2" style="enable-background:new;"/>
-
-<polygon opacity="0.2" points="23.82,20.44,26.91,21.26,26.91,20.82,23.82,20" style="enable-background:new;"/>
-
-<path d="M20.96,24.27c0.391,0,0.763,0.062,1.103,0.171v-0.441c-0.339-0.109-0.712-0.17-1.103-0.17-1.584,0-2.867,0.987-2.867,2.206,0,0.074,0.005,0.147,0.014,0.22,0.15-1.12,1.37-1.99,2.86-1.99z" fill="#FFFFFF" opacity="0.4" style="enable-background:new;"/>
-
-<polygon fill="#FFFFFF" opacity="0.4" points="22.06,16.77,22.06,17.21,26.91,18.51,26.91,18.07" style="enable-background:new;"/>
-
-<rect fill="none" height="15" width="15" x="15" y="15"/>
-
+</defs>
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mobile.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mobile.svg Thu May 27 13:10:59 2010 +0300
@@ -1,48 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M7.963,29.301C6.328,29.301,5,27.971,5,26.338V3.994C5,2.36,6.328,1.032,7.963,1.032h14.074 C23.672,1.032,25,2.36,25,3.994v22.344c0,1.633-1.328,2.963-2.963,2.963H7.963z" opacity="0.6"/>
+<path d="M7.963,29.301C6.328,29.301,5,27.971,5,26.338V3.994C5,2.36,6.328,1.032,7.963,1.032h14.074 C23.672,1.032,25,2.36,25,3.994v22.344c0,1.633-1.328,2.963-2.963,2.963H7.963z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="-4.1611" y2="28.2423">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#9B9D9E"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#9B9D9E"/>
</linearGradient>
<path d="M24,26.338c0,1.084-0.879,1.963-1.963,1.963H7.963C6.879,28.301,6,27.422,6,26.338V3.994 C6,2.91,6.879,2.032,7.963,2.032h14.074C23.121,2.032,24,2.91,24,3.994V26.338z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="21.0811" y2="27.3765">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="4" width="4" x="13" y="23.301"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="23.1904" y2="26.3381">
- <stop offset="0" style="stop-color:#F0F0F0"/>
- <stop offset="1" style="stop-color:#9B9D9E"/>
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#9B9D9E"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="2" width="2" x="14" y="24.301"/>
-<path d="M22.037,2.032H7.963C6.879,2.032,6,2.91,6,3.994v1C6,3.91,6.879,3.032,7.963,3.032h14.074 C23.121,3.032,24,3.91,24,4.994v-1C24,2.91,23.121,2.032,22.037,2.032z" fill="#FFFFFF" opacity="0.2"/>
+<path d="M22.037,2.032H7.963C6.879,2.032,6,2.91,6,3.994v1C6,3.91,6.879,3.032,7.963,3.032h14.074 C23.121,3.032,24,3.91,24,4.994v-1C24,2.91,23.121,2.032,22.037,2.032z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.0005" x2="15.0005" y1="22.2461" y2="4.1392">
- <stop offset="0" style="stop-color:#DADADB"/>
- <stop offset="1" style="stop-color:#9B9D9E"/>
+<stop offset="0" style="stop-color:#DADADB"/>
+<stop offset="1" style="stop-color:#9B9D9E"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="18.301" width="16" x="7" y="4.032"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.9995" x2="14.9995" y1="5.0322" y2="21.3059">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="16.301" width="14" x="8" y="5.032"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="9" x2="9" y1="24.3008" y2="26.2852">
- <stop offset="0" style="stop-color:#1CAB00"/>
- <stop offset="1" style="stop-color:#1F6300"/>
+<stop offset="0" style="stop-color:#1CAB00"/>
+<stop offset="1" style="stop-color:#1F6300"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="2" width="4" x="7" y="24.301"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="21" x2="21" y1="24.3008" y2="26.3008">
- <stop offset="0" style="stop-color:#E63B00"/>
- <stop offset="1" style="stop-color:#8C0000"/>
+<stop offset="0" style="stop-color:#E63B00"/>
+<stop offset="1" style="stop-color:#8C0000"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="2" width="4" x="19" y="24.301"/>
-<polygon fill="#FFFFFF" opacity="0.2" points="22,11.162 22,5.032 8,5.032 8,12.301 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="22,11.162 22,5.032 8,5.032 8,12.301 " stroke-opacity="0.2"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mobile_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mobile_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,107 +1,57 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill="none" height="30" width="30"/>
-
<path d="M6.963,30c-1.635,0-2.963-1.33-2.963-2.96v-24.08c0-1.634,1.328-2.962,2.963-2.962h14.07c1.63,0,2.96,1.328,2.96,2.962v24.08c0,1.63-1.33,2.96-2.96,2.96h-14.08z" fill-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="14" x2="14" y1="-5.6" y2="28.94">
-
<stop offset="0" stop-color="#FFFFFF"/>
-
<stop offset="1" stop-color="#9B9D9E"/>
-
</linearGradient>
-
<path d="M23,27.04c0,1.08-0.88,1.96-1.96,1.96h-14.08c-1.084,0-1.963-0.88-1.963-1.96v-24.08c0-1.084,0.879-1.962,1.963-1.962h14.07c1.08,0,1.96,0.878,1.96,1.962v24.08z" fill="url(#SVGID_1)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="14" x2="14" y1="21.78" y2="28.08">
-
<stop offset="0" stop-color="#A6A8AB"/>
-
<stop offset="0.7" stop-color="#58595B"/>
-
<stop offset="1" stop-color="#808184"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_2)" height="4" width="4" x="12" y="24"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3" x1="14" x2="14" y1="23.89" y2="27.04">
-
<stop offset="0" stop-color="#F0F0F0"/>
-
<stop offset="1" stop-color="#9B9D9E"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_3)" height="2" width="2" x="13" y="25"/>
-
<path d="M21.04,1h-14.08c-1.084,0-1.963,0.878-1.963,1.962v1c0-1.084,0.879-1.962,1.963-1.962h14.07c1.08,0,1.96,0.878,1.96,1.962v-1c0-1.084-0.88-1.962-1.96-1.962z" fill="#FFFFFF" fill-opacity="0.2"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4" x1="14" x2="14" y1="22.94" y2="3.12">
-
<stop offset="0" stop-color="#DADADB"/>
-
<stop offset="1" stop-color="#9B9D9E"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_4)" height="20.03" width="16" x="6" y="3"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5" x1="14" x2="14" y1="4" y2="22">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_5)" height="18.03" width="14" x="7" y="4"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6" x1="8" x2="8" y1="25" y2="26.98">
-
<stop offset="0" stop-color="#1CAB00"/>
-
<stop offset="1" stop-color="#1F6300"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_6)" height="2" width="4" x="6" y="25"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7" x1="20" x2="20" y1="25" y2="27">
-
<stop offset="0" stop-color="#E63B00"/>
-
<stop offset="1" stop-color="#8C0000"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_7)" height="2" width="4" x="18" y="25"/>
-
<polygon fill="#FFFFFF" fill-opacity="0.2" points="21,10.13,21,4,7,4,7,11.27"/>
-
<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8" x1="21" x2="21" y1="14.97" y2="29.16">
-
<stop offset="0" stop-color="#4EDEFF"/>
-
<stop offset="1" stop-color="#048CC6"/>
-
</linearGradient>
-
<circle cx="21" cy="22" fill="url(#SVGID_8)" r="7"/>
-
<polygon fill-opacity="0.2" points="25.34,24,21,19.4,16.66,24,16,23.3,21,18,26,23.3,25.34,24"/>
-
<polygon fill-opacity="0.2" points="21,20.86,17,25.1,17,27,20,27,20,24,22,24,22,27,25,27,25,25.1"/>
-
<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4"/>
-
<polygon fill="#FFFFFF" points="25.34,23,21,18.4,16.66,23,16,22.3,21,17,26,22.3,25.34,23"/>
-
<polygon fill="#FFFFFF" points="21,19.86,17,24.1,17,26,20,26,20,23,22,23,22,26,25,26,25,24.1"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mobile_work.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mobile_work.svg Thu May 27 13:10:59 2010 +0300
@@ -1,105 +1,54 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<path d="M6.963,30c-1.635,0-2.963-1.33-2.963-2.96v-24.08c0-1.634,1.328-2.962,2.963-2.962h14.07c1.63,0,2.96,1.328,2.96,2.962v24.08c0,1.63-1.33,2.96-2.96,2.96h-14.08z" fill-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="14" x2="14" y1="-5.6" y2="28.94">
-
<stop offset="0" stop-color="#FFFFFF"/>
-
<stop offset="1" stop-color="#9B9D9E"/>
-
</linearGradient>
-
<path d="M23,27.04c0,1.08-0.88,1.96-1.96,1.96h-14.08c-1.084,0-1.963-0.88-1.963-1.96v-24.08c0-1.084,0.879-1.962,1.963-1.962h14.07c1.08,0,1.96,0.878,1.96,1.962v24.08z" fill="url(#SVGID_1)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="14" x2="14" y1="21.78" y2="28.08">
-
<stop offset="0" stop-color="#A6A8AB"/>
-
<stop offset="0.7" stop-color="#58595B"/>
-
<stop offset="1" stop-color="#808184"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_2)" height="4" width="4" x="12" y="24"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3" x1="14" x2="14" y1="23.89" y2="27.04">
-
<stop offset="0" stop-color="#F0F0F0"/>
-
<stop offset="1" stop-color="#9B9D9E"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_3)" height="2" width="2" x="13" y="25"/>
-
<path d="M21.04,1h-14.08c-1.084,0-1.963,0.878-1.963,1.962v1c0-1.084,0.879-1.962,1.963-1.962h14.07c1.08,0,1.96,0.878,1.96,1.962v-1c0-1.084-0.88-1.962-1.96-1.962z" fill="#FFFFFF" fill-opacity="0.2"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4" x1="14" x2="14" y1="22.94" y2="3.12">
-
<stop offset="0" stop-color="#DADADB"/>
-
<stop offset="1" stop-color="#9B9D9E"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_4)" height="20.03" width="16" x="6" y="3"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5" x1="14" x2="14" y1="4" y2="22">
-
<stop offset="0" stop-color="#3BC8EB"/>
-
<stop offset="1" stop-color="#1347BA"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_5)" height="18.03" width="14" x="7" y="4"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6" x1="8" x2="8" y1="25" y2="26.98">
-
<stop offset="0" stop-color="#1CAB00"/>
-
<stop offset="1" stop-color="#1F6300"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_6)" height="2" width="4" x="6" y="25"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7" x1="20" x2="20" y1="25" y2="27">
-
<stop offset="0" stop-color="#E63B00"/>
-
<stop offset="1" stop-color="#8C0000"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_7)" height="2" width="4" x="18" y="25"/>
-
<polygon fill="#FFFFFF" fill-opacity="0.2" points="21,10.13,21,4,7,4,7,11.27"/>
-
<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8" x1="21" x2="21" y1="14.97" y2="29.16">
-
<stop offset="0" stop-color="#4EDEFF"/>
-
<stop offset="1" stop-color="#048CC6"/>
-
</linearGradient>
-
<circle cx="21" cy="22" fill="url(#SVGID_8)" r="7"/>
-
<path d="M22,21v-2h-5v8h8v-6h-3zm-1,4h-3v-1h3v1zm0-2h-3v-1h3v1zm-3-2v-1h3v1h-3zm6,4h-2v-1h2v1zm0-2h-2v-1h2v1z" fill-opacity="0.2"/>
-
<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4"/>
-
<path d="M22,20v-2h-5v8h8v-6h-3zm-1,4h-3v-1h3v1zm0-2h-3v-1h3v1zm-3-2v-1h3v1h-3zm6,4h-2v-1h2v1zm0-2h-2v-1h2v1z" fill="#FFFFFF"/>
-
<rect fill-opacity="0.3" height="6" width="1" x="22" y="20"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_doc.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_doc.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill="none" height="30" width="30"/>
-
<rect height="27" width="21.6" x="4.201" y="1.5"/>
-
<rect fill="#336699" height="24.3" width="18.9" x="5.55" y="2.851"/>
-
<path d="M6.9,4.2v21.6h16.2v-21.6s-14.14,0-16.2,0z" fill="#FFFFFF"/>
-
<rect fill="#F6F6F5" height="18.9" width="13.5" x="8.25" y="5.55"/>
-
<path d="M18.14,10.69v1.209l1.11-0.083-2.952,4.246,0.271-3.326v-0.838h0.793v-1.21h-9.11v1.209h0.791v0.805l-0.83,8.861h1.041l4.059-5.508-0.339,5.508h1.034l6.841-9.666h0.87v-1.2h-3.567zm-6.58,5.27l0.258-4.063h2.623l-2.88,4.06z" fill="#0A50A1"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_pdf.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_pdf.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill="none" height="30" width="30"/>
-
<rect height="27" width="21.6" x="4.201" y="1.5"/>
-
<rect fill="#FF0000" height="24.3" width="18.9" x="5.551" y="2.85"/>
-
<path d="M6.901,4.199v21.6h16.2v-21.6s-14.14-0.001-16.2-0.001z" fill="#FFFFFF"/>
-
<rect fill="#F6F6F5" height="18.9" width="13.5" x="8.25" y="5.55"/>
-
<path d="M16.97,17.67c-0.629-1.442-1.301-3.105-1.503-3.802,0,0,1.54-6.305-0.319-6.305-2.705,0-0.414,6.441-0.414,6.441s-0.91,3.215-1.242,3.909c-1.168,0-5.157,2.126-3.504,3.781,0.854,0.855,2.521-0.056,4.005-3.224,0.261-0.259,2.221-0.506,2.502-0.225,0.988,1.67,2.624,4.454,3.679,3.404,1.37-1.4-1.84-3.99-3.21-3.99zm-6.49,3.55c-0.454-0.454-0.309-1.569,2.651-2.479-1.04,2.07-2.19,2.93-2.65,2.48zm4.54-12.93c1.065,0,0.202,3.646,0.022,4.391,0,0-1.21-4.388-0.02-4.388zm4.72,12.87c-0.487,0.487-1.961-2.063-2.296-2.614,1.52,0.47,2.79,2.13,2.3,2.61z" fill="#FF0000"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_ppt.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_ppt.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill="none" height="30" width="30"/>
-
<rect height="27" width="21.6" x="4.2" y="1.5"/>
-
<rect fill="#F96D11" height="24.3" width="18.9" x="5.55" y="2.85"/>
-
<rect fill="#FFFFFF" height="21.6" width="16.2" x="6.899" y="4.2"/>
-
<rect fill="#F6F6F5" height="18.9" width="13.5" x="8.25" y="5.55"/>
-
<rect fill="#F96D11" height="1.35" width="5.399" x="9.601" y="6.901"/>
-
<rect fill="#F96D11" height="1.35" width="5.399" x="9.601" y="9.601"/>
-
<circle cx="14.32" cy="18.38" fill="#FAA513" r="4.725"/>
-
<path d="M20.4,18.37c-0.006-3.349-2.729-6.067-6.075-6.067v6.067h6.08z" fill="#F96D11"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_rtf.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_rtf.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill="none" height="30" width="30"/>
-
<rect height="27" width="21.6" x="4.2" y="1.5"/>
-
<path d="M5.55,2.85v24.3h18.9v-24.3s-16.76,0-18.9,0z"/>
-
<path d="M6.9,4.2v21.6h16.2v-21.6h-16.2z" fill="#FFFFFF"/>
-
<rect fill="#F6F6F5" height="18.9" width="13.5" x="8.25" y="5.55"/>
-
<path d="M10.58,12.88c0.371-0.77,0.937-1.065,1.758-1.065,0.074,0,0.159,0,0.245,0.011v1.01c-0.14-0.008-0.266-0.008-0.396-0.008-0.938,0-1.375,0.425-1.375,1.408v3.688h-1.097v-6.056h0.619l0.26,1.01z"/>
-
<path d="M16.47,17.82c-0.424,0.117-0.872,0.192-1.311,0.192-0.96,0-1.364-0.438-1.364-1.384v-4.01h-0.735v-0.746h0.745l0.438-1.45h0.661v1.45h1.47v0.746h-1.47v3.817c0,0.489,0.085,0.811,0.65,0.811,0.309,0,0.617-0.075,0.915-0.149v0.718z"/>
-
<path d="M20.3,10.53c-0.267-0.084-0.543-0.158-0.82-0.158-0.746,0-0.788,0.468-0.788,1.503h1.107v0.746h-1.107v5.311h-1.108v-5.313h-0.736v-0.744h0.736c0-1.334,0.201-2.271,1.695-2.271,0.352,0,0.694,0.041,1.022,0.128v0.793z"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_xls.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_xls.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill="none" height="30" width="30"/>
-
<rect height="27" width="21.6" x="4.199" y="1.5"/>
-
<rect fill="#33A02C" height="24.3" width="18.9" x="5.549" y="2.85"/>
-
<rect fill="#FFFFFF" height="21.6" width="16.2" x="6.899" y="4.2"/>
-
<rect fill="#F6F6F5" height="18.9" width="13.5" x="8.25" y="5.55"/>
-
<polygon points="21.72,10.9,13.15,21.75,8.659,21.75,16.82,10.9"/>
-
<path d="M17.5,12.25c-0.581,0.77-4.178,5.553-6.132,8.153h1.13c0.581-0.735,4.366-5.531,6.438-8.153h-1.44z" fill="#33A02C"/>
-
<polygon points="8.25,10.06,16,21.75,21.31,21.75,13.15,10.06"/>
-
<path d="M10.76,11.41c1.756,2.649,5.378,8.108,5.962,8.989h1.992c-1.865-2.672-5.686-8.145-6.276-8.989h-1.67z" fill="#33A02C"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_chat.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_chat.svg Thu May 27 13:10:59 2010 +0300
@@ -1,49 +1,39 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M6.924,27.143c-0.451,0-1.213-0.318-1.213-1.512v-3.766C2.71,19.804,1,16.859,1,13.726 C1,7.732,7.28,2.857,15,2.857s14,4.875,14,10.868s-6.28,10.869-14,10.869c-1.54,0-3.052-0.192-4.501-0.574L8.09,26.555 C7.725,26.939,7.321,27.143,6.924,27.143L6.924,27.143z" fill-opacity="0.6"/>
<linearGradient gradientTransform="matrix(1 0 0 1 -367 -507)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="382" x2="382" y1="511.0117" y2="533.0017">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<path d="M6.924,26.143c-0.131,0-0.213-0.2-0.213-0.512v-4.305l-0.077-0.049C3.688,19.395,2,16.643,2,13.726 c0-5.44,5.831-9.868,13-9.868c7.168,0,13,4.428,13,9.868c0,5.442-5.832,9.869-13,9.869c-1.618,0-3.201-0.226-4.706-0.669 l-0.105-0.031l-2.824,2.971C7.2,26.039,7.035,26.143,6.924,26.143L6.924,26.143z" fill="url(#SVGID_1_)"/>
-<path d="M15,4.785c6.961,0,12.646,4.18,12.969,9.405 C27.979,14.035,28,13.883,28,13.726c0-5.44-5.832-9.868-13-9.868c-7.169,0-13,4.428-13,9.868c0,0.149,0.023,0.296,0.033,0.446 C2.368,8.956,8.047,4.785,15,4.785z" enable-background="new " fill="#FFFFFF" opacity="0.3"/>
+<path d="M15,4.785c6.961,0,12.646,4.18,12.969,9.405 C27.979,14.035,28,13.883,28,13.726c0-5.44-5.832-9.868-13-9.868c-7.169,0-13,4.428-13,9.868c0,0.149,0.023,0.296,0.033,0.446 C2.368,8.956,8.047,4.785,15,4.785z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<rect fill="#FFFFFF" height="1.084" width="13" x="8.5" y="8.688"/>
-<rect enable-background="new " height="0.541" opacity="0.2" width="13" x="8.5" y="9.771"/>
+<rect fill-opacity="0.2" height="0.541" stroke-opacity="0.2" width="13" x="8.5" y="9.771"/>
<rect fill="#FFFFFF" height="1.084" width="13" x="8.5" y="12.688"/>
-<rect enable-background="new " height="0.541" opacity="0.2" width="13" x="8.5" y="13.771"/>
+<rect fill-opacity="0.2" height="0.541" stroke-opacity="0.2" width="13" x="8.5" y="13.771"/>
<rect fill="#FFFFFF" height="1.084" width="13" x="8.5" y="16.688"/>
-<rect enable-background="new " height="0.541" opacity="0.2" width="13" x="8.5" y="17.771"/>
+<rect fill-opacity="0.2" height="0.541" stroke-opacity="0.2" width="13" x="8.5" y="17.771"/>
<rect fill="none" height="30" width="30"/>
</g>
<g>
<rect fill="none" height="15" width="15" x="15"/>
-<rect height="4.412" opacity="0.6" style="enable-background:new;" transform="matrix(-0.2587 0.9659 -0.9659 -0.2587 29.2728 -12.3701)" width="7.941" x="15.41" y="2.841"/>
+<rect fill-opacity="0.6" height="4.412" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(-0.2587 0.9659 -0.9659 -0.2587 29.2728 -12.3701)" width="7.941" x="15.41" y="2.841"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-70.19" x2="-73.15" y1="114.9" y2="107.7">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.26" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="20.17,8.913,16.76,8,18.59,1.181,22,2.094"/>
-<rect height="4.411" opacity="0.6" style="enable-background:new;" transform="matrix(-0.7072 0.7071 -0.7071 -0.7072 48.0833 -1.2961)" width="9.707" x="19.46" y="7.104"/>
+<rect fill-opacity="0.6" height="4.411" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(-0.7072 0.7071 -0.7071 -0.7072 48.0833 -1.2961)" width="9.707" x="19.46" y="7.104"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-63.01" x2="-70.68" y1="110.1" y2="104.1">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.26" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="22.44,13.68,19.94,11.18,26.18,4.942,28.68,7.438"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_email_event.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_email_event.svg Thu May 27 13:10:59 2010 +0300
@@ -1,45 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1s14,6.28,14,14S22.72,29,15,29L15,29z" opacity="0.6"/>
+<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1s14,6.28,14,14S22.72,29,15,29L15,29z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="1.9409" y2="28.3052">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.179-5.82-13-13-13 S2,7.821,2,15c0,0.169,0.02,0.333,0.025,0.5C2.29,8.555,7.988,3,15,3z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M24.75,16.235c0,1.563-0.315,2.916-0.943,4.059c-0.762,1.408-1.864,2.115-3.307,2.115 c-1.401,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.542-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.098c0,1.377,0.477,2.068,1.436,2.068c0.782,0,1.385-0.541,1.807-1.62 c0.311-0.804,0.467-1.659,0.467-2.577c0-2.12-0.766-3.93-2.289-5.438c-1.523-1.509-3.352-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.963,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263V26c-2.688,0-4.987-0.956-6.891-2.865C6.204,21.22,5.25,18.918,5.25,16.235 c0-2.673,0.955-4.964,2.865-6.873C10.027,7.456,12.319,6.5,15,6.5c2.688,0,4.986,0.95,6.892,2.856 C23.796,11.257,24.75,13.552,24.75,16.235z M16.885,16.157c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.182,0.797,3.271,2.394,3.271C16.092,19.521,16.885,18.401,16.885,16.157z" opacity="0.2"/>
+<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.179-5.82-13-13-13 S2,7.821,2,15c0,0.169,0.02,0.333,0.025,0.5C2.29,8.555,7.988,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24.75,16.235c0,1.563-0.315,2.916-0.943,4.059c-0.762,1.408-1.864,2.115-3.307,2.115 c-1.401,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.542-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.098c0,1.377,0.477,2.068,1.436,2.068c0.782,0,1.385-0.541,1.807-1.62 c0.311-0.804,0.467-1.659,0.467-2.577c0-2.12-0.766-3.93-2.289-5.438c-1.523-1.509-3.352-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.963,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263V26c-2.688,0-4.987-0.956-6.891-2.865C6.204,21.22,5.25,18.918,5.25,16.235 c0-2.673,0.955-4.964,2.865-6.873C10.027,7.456,12.319,6.5,15,6.5c2.688,0,4.986,0.95,6.892,2.856 C23.796,11.257,24.75,13.552,24.75,16.235z M16.885,16.157c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.182,0.797,3.271,2.394,3.271C16.092,19.521,16.885,18.401,16.885,16.157z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M24.75,14.985c0,1.563-0.315,2.916-0.943,4.059c-0.762,1.408-1.864,2.115-3.307,2.115 c-1.401,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.542-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.098c0,1.377,0.477,2.068,1.436,2.068c0.782,0,1.385-0.541,1.807-1.62 c0.311-0.804,0.467-1.659,0.467-2.577c0-2.12-0.766-3.93-2.289-5.438c-1.523-1.509-3.352-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.963,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263v2.035c-2.688,0-4.987-0.956-6.891-2.865C6.204,19.97,5.25,17.668,5.25,14.985 c0-2.673,0.955-4.964,2.865-6.873C10.027,6.206,12.319,5.25,15,5.25c2.688,0,4.986,0.95,6.892,2.856 C23.796,10.007,24.75,12.302,24.75,14.985z M16.885,14.907c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.182,0.797,3.271,2.394,3.271C16.092,18.271,16.885,17.151,16.885,14.907z" fill="#FFFFFF"/>
<rect fill="none" height="30" width="30"/>
</g>
<g>
<rect fill="none" height="15" width="15" x="15"/>
-<rect height="4.412" opacity="0.6" style="enable-background:new;" transform="matrix(-0.2587 0.9659 -0.9659 -0.2587 29.2728 -12.3701)" width="7.941" x="15.41" y="2.841"/>
+<rect fill-opacity="0.6" height="4.412" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(-0.2587 0.9659 -0.9659 -0.2587 29.2728 -12.3701)" width="7.941" x="15.41" y="2.841"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-70.19" x2="-73.15" y1="114.9" y2="107.7">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.26" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="20.17,8.913,16.76,8,18.59,1.181,22,2.094"/>
-<rect height="4.411" opacity="0.6" style="enable-background:new;" transform="matrix(-0.7072 0.7071 -0.7071 -0.7072 48.0833 -1.2961)" width="9.707" x="19.46" y="7.104"/>
+<rect fill-opacity="0.6" height="4.411" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(-0.7072 0.7071 -0.7071 -0.7072 48.0833 -1.2961)" width="9.707" x="19.46" y="7.104"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-63.01" x2="-70.68" y1="110.1" y2="104.1">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.26" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="22.44,13.68,19.94,11.18,26.18,4.942,28.68,7.438"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_event.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_event.svg Thu May 27 13:10:59 2010 +0300
@@ -1,24 +1,22 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.6" height="9.111" transform="matrix(-0.2588 0.9659 -0.9659 -0.2588 20.7431 4.1604)" width="16.223" x="0.664" y="5.483"/>
<linearGradient gradientTransform="matrix(0.9659 0.2588 -0.2588 0.9659 -33.6532 76.8338)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.6367" x2="22.6711" y1="-83.0146" y2="-67.3022">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="0.2606" style="stop-color:#DE4E29"/>
- <stop offset="1" style="stop-color:#D82E09"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="0.2606" style="stop-color:#DE4E29"/>
+<stop offset="1" style="stop-color:#D82E09"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="10.369,17.828 3.5,15.987 7.182,2.249 14.05,4.09 "/>
<rect fill-opacity="0.6" height="9.11" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 45.0957 18.5742)" width="19.778" x="8.812" y="14.072"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.4365 187.3474)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-4.9067" x2="-7.3346" y1="-241.8184" y2="-222.4105">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="0.2606" style="stop-color:#DE4E29"/>
- <stop offset="1" style="stop-color:#D82E09"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="0.2606" style="stop-color:#DE4E29"/>
+<stop offset="1" style="stop-color:#D82E09"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="14.93,27.427 9.902,22.398 22.473,9.827 27.5,14.855 "/>
<rect fill="none" height="30" width="30" x="0"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_tip.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_tip.svg Thu May 27 13:10:59 2010 +0300
@@ -1,74 +1,61 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M23.732,4.574C22.354,2.944,19.719,1,15,1c-4.721,0-7.355,1.944-8.734,3.576 C4.393,6.79,3.629,9.895,4.17,13.091c0.518,3.071,1.816,6.16,3.828,8.404v6.013L9.606,29h10.786L22,27.507v-6.005 c2.013-2.244,3.313-5.336,3.832-8.411C26.369,9.894,25.605,6.788,23.732,4.574z" opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21" x2="9.1644" y1="24.75" y2="24.75">
- <stop offset="0" style="stop-color:#969696"/>
- <stop offset="0.6242" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#B3B3B3"/>
-</linearGradient>
+<path d="M23.732,4.574C22.354,2.944,19.719,1,15,1c-4.721,0-7.355,1.944-8.734,3.576 C4.393,6.79,3.629,9.895,4.17,13.091c0.518,3.071,1.816,6.16,3.828,8.404v6.013L9.606,29h10.786L22,27.507v-6.005 c2.013-2.244,3.313-5.336,3.832-8.411C26.369,9.894,25.605,6.788,23.732,4.574z" fill-opacity="0.6" stroke-opacity="0.6"/>
<polygon fill="url(#SVGID_1_)" points="8.998,21.5 8.998,27.071 9.999,28 20,28 21,27.071 21,21.5 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="1.0713" y2="20.5717">
- <stop offset="0" style="stop-color:#FEE06A"/>
- <stop offset="0.503" style="stop-color:#FFC501"/>
- <stop offset="1" style="stop-color:#FEAB29"/>
+<stop offset="0" style="stop-color:#FEE06A"/>
+<stop offset="0.503" style="stop-color:#FFC501"/>
+<stop offset="1" style="stop-color:#FEAB29"/>
</linearGradient>
<path d="M15,2C7.455,2,4.219,7.377,5.156,12.925c0.936,5.544,4.402,10.848,9.826,10.924l0,0 c0.006,0,0.012,0,0.018,0c0.008,0,0.014,0,0.02,0l0,0c5.424-0.076,8.89-5.38,9.824-10.924C25.779,7.377,22.544,2,15,2z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="21" x2="9.1644" y1="24.75" y2="24.75">
- <stop offset="0" style="stop-color:#969696"/>
- <stop offset="0.6242" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#B3B3B3"/>
-</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="8.998,21.5 8.998,27.071 9.999,28 20,28 21,27.071 21,21.5 "/>
+<polygon fill="url(#SVGID_1_)" points="8.998,21.5 8.998,27.071 9.999,28 20,28 21,27.071 21,21.5 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="8.998" x2="21" y1="24.2852" y2="24.2852">
- <stop offset="0" style="stop-color:#A0A8AC"/>
- <stop offset="0.1212" style="stop-color:#BDC3C4"/>
- <stop offset="0.2848" style="stop-color:#E9EFF2"/>
- <stop offset="0.6727" style="stop-color:#949DA1"/>
- <stop offset="0.8182" style="stop-color:#D9DFE1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#A0A8AC"/>
+<stop offset="0.1212" style="stop-color:#BDC3C4"/>
+<stop offset="0.2848" style="stop-color:#E9EFF2"/>
+<stop offset="0.6727" style="stop-color:#949DA1"/>
+<stop offset="0.8182" style="stop-color:#D9DFE1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="5.571" width="12.002" x="8.998" y="21.5"/>
-<path d="M8.443,20.5c1.655,1.991,3.857,3.31,6.539,3.349l0,0c0.006,0,0.012,0,0.018,0c0.008,0,0.014,0,0.02,0l0,0 c2.682-0.039,4.884-1.357,6.539-3.349H8.443z" opacity="0.2"/>
+<path d="M8.443,20.5c1.655,1.991,3.857,3.31,6.539,3.349l0,0c0.006,0,0.012,0,0.018,0c0.008,0,0.014,0,0.02,0l0,0 c2.682-0.039,4.884-1.357,6.539-3.349H8.443z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.998" x2="21" y1="24.2852" y2="24.2852">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.4" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#686E70"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.4" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#686E70"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="5.571" width="12.002" x="8.998" y="21.5"/>
-<rect height="0.929" opacity="0.25" width="12.002" x="8.998" y="22.633"/>
-<rect height="0.927" opacity="0.25" width="12.002" x="8.998" y="24.491"/>
-<path d="M6.23,9.388C8.414,10.377,11.529,11,15,11c3.475,0,6.592-0.624,8.775-1.615 c-0.779-3.471-3.676-6.199-8.771-6.199C9.908,3.186,7.008,5.914,6.23,9.388z" fill="#FFFFFF" opacity="0.6"/>
+<rect fill-opacity="0.25" height="0.929" stroke-opacity="0.25" width="12.002" x="8.998" y="22.633"/>
+<rect fill-opacity="0.25" height="0.927" stroke-opacity="0.25" width="12.002" x="8.998" y="24.491"/>
+<path d="M6.23,9.388C8.414,10.377,11.529,11,15,11c3.475,0,6.592-0.624,8.775-1.615 c-0.779-3.471-3.676-6.199-8.771-6.199C9.908,3.186,7.008,5.914,6.23,9.388z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21" x2="9.1644" y1="24.75" y2="24.75">
+<stop offset="0" style="stop-color:#969696"/>
+<stop offset="0.6242" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
+</linearGradient>
+</defs>
</g>
<g>
<rect fill="none" height="15" width="15" x="15"/>
-<rect height="4.412" opacity="0.6" style="enable-background:new;" transform="matrix(-0.2587 0.9659 -0.9659 -0.2587 29.2728 -12.3701)" width="7.941" x="15.41" y="2.841"/>
+<rect fill-opacity="0.6" height="4.412" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(-0.2587 0.9659 -0.9659 -0.2587 29.2728 -12.3701)" width="7.941" x="15.41" y="2.841"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-70.19" x2="-73.15" y1="114.9" y2="107.7">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.26" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
<polygon fill="url(#SVGID_1__)" points="20.17,8.913,16.76,8,18.59,1.181,22,2.094"/>
-<rect height="4.411" opacity="0.6" style="enable-background:new;" transform="matrix(-0.7072 0.7071 -0.7071 -0.7072 48.0833 -1.2961)" width="9.707" x="19.46" y="7.104"/>
+<rect fill-opacity="0.6" height="4.411" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(-0.7072 0.7071 -0.7071 -0.7072 48.0833 -1.2961)" width="9.707" x="19.46" y="7.104"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-63.01" x2="-70.68" y1="110.1" y2="104.1">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.26" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="22.44,13.68,19.94,11.18,26.18,4.942,28.68,7.438"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_nfc_offline.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_nfc_offline.svg Thu May 27 13:10:59 2010 +0300
@@ -1,44 +1,34 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
+<rect fill="none" height="30" width="30"/>
+<path d="M19.504,29c-1.203,0-2.192-0.547-2.674-1.015c-0.225-0.218-4.875-4.538-6.402-5.958l-0.627-0.583 C7.857,19.894,6.709,17.527,6.709,15c0-4.572,3.72-8.292,8.291-8.292c4.572,0,8.291,3.72,8.291,8.292 c0,3.096-1.771,5.946-4.492,7.357l1.079,0.985c0.216,0.206,0.865,0.699,1.468,0.699h1.211c0.818,0,1.486-0.667,1.486-1.487V7.444 c0-0.82-0.668-1.487-1.486-1.487H7.445c-0.82,0-1.487,0.667-1.487,1.487v11.803c0,0.593,0.331,0.995,0.527,1.183 c0.208,0.199,5.013,4.608,6.822,6.269L15.816,29H4.477C2.56,29,1,27.44,1,25.523V4.477C1,2.56,2.56,1,4.477,1h21.047 C27.44,1,29,2.56,29,4.477v21.047C29,27.44,27.44,29,25.523,29H19.504z M15,12.371c-1.449,0-2.628,1.18-2.628,2.629 s1.179,2.628,2.628,2.628s2.629-1.179,2.629-2.628S16.449,12.371,15,12.371L15,12.371z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M19.504,28c-0.969,0-1.717-0.479-1.977-0.731c-0.281-0.272-6.77-6.299-7.045-6.556 C8.711,19.297,7.709,17.222,7.709,15c0-4.021,3.271-7.292,7.291-7.292c4.021,0,7.291,3.271,7.291,7.292 c0,2.994-1.887,5.729-4.695,6.804l-0.624,0.239l2.231,2.038c0.031,0.029,0.998,0.961,2.143,0.961h1.211 c1.371,0,2.486-1.116,2.486-2.487V7.444c0-1.371-1.115-2.487-2.486-2.487H7.445c-1.371,0-2.487,1.116-2.487,2.487v11.803 c0,0.966,0.524,1.609,0.838,1.907c0.233,0.224,5.935,5.453,7.452,6.846H4.477C3.111,28,2,26.89,2,25.523V4.477 C2,3.11,3.111,2,4.477,2h21.047C26.889,2,28,3.11,28,4.477v21.047C28,26.89,26.889,28,25.523,28H19.504z M15,11.371 c-2,0-3.628,1.628-3.628,3.629S13,18.628,15,18.628s3.629-1.627,3.629-3.628S17,11.371,15,11.371L15,11.371z" fill="url(#SVGID_1_)"/>
+<path d="M19.504,28c-0.969,0-1.717-0.479-1.977-0.731c-0.281-0.272-6.77-6.299-7.045-6.556 C8.711,19.297,7.709,17.222,7.709,15c0-4.021,3.271-7.292,7.291-7.292c4.021,0,7.291,3.271,7.291,7.292 c0,2.994-1.887,5.729-4.695,6.804l-0.624,0.239l2.231,2.038c0.031,0.029,0.998,0.961,2.143,0.961h1.211 c1.371,0,2.486-1.116,2.486-2.487V7.444c0-1.371-1.115-2.487-2.486-2.487H7.445c-1.371,0-2.487,1.116-2.487,2.487v11.803 c0,0.966,0.524,1.609,0.838,1.907c0.233,0.224,5.935,5.453,7.452,6.846H4.477C3.111,28,2,26.89,2,25.523V4.477 C2,3.11,3.111,2,4.477,2h21.047C26.889,2,28,3.11,28,4.477v21.047C28,26.89,26.889,28,25.523,28H19.504z M15,11.371 c-2,0-3.628,1.628-3.628,3.629S13,18.628,15,18.628s3.629-1.627,3.629-3.628S17,11.371,15,11.371L15,11.371z" fill="url(#SVGID_1_)"/>
+<path d="M22.261,15.394c0.007-0.132,0.03-0.261,0.03-0.394c0-4.021-3.271-7.292-7.291-7.292 c-4.02,0-7.291,3.271-7.291,7.292c0,0.159,0.018,0.315,0.027,0.474C8.008,11.698,11.158,8.708,15,8.708 C18.816,8.708,21.951,11.656,22.261,15.394z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M15,19.628c2,0,3.629-1.627,3.629-3.628c0-0.171-0.027-0.335-0.051-0.5 c-0.246,1.763-1.749,3.128-3.578,3.128s-3.331-1.365-3.577-3.128c-0.023,0.165-0.051,0.329-0.051,0.5 C11.372,18.001,13,19.628,15,19.628z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M4.958,19.247v1c0,0.966,0.524,1.609,0.838,1.907C5.99,22.34,9.95,25.975,12.158,28h1.09 c-1.518-1.393-7.219-6.622-7.452-6.846C5.482,20.856,4.958,20.213,4.958,19.247z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M25.523,2H4.477C3.111,2,2,3.11,2,4.477v1C2,4.11,3.111,3,4.477,3h21.047 C26.889,3,28,4.11,28,5.477v-1C28,3.11,26.889,2,25.523,2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M21.346,26.042h1.211c1.371,0,2.486-1.116,2.486-2.487v-1c0,1.371-1.115,2.487-2.486,2.487 h-1.211c-1.145,0-2.111-0.932-2.143-0.961l-1.47-1.343c-0.048,0.02-0.089,0.047-0.138,0.065l-0.624,0.239l2.231,2.038 C19.234,25.11,20.201,26.042,21.346,26.042z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<rect fill="none" height="30" width="30"/>
<defs>
-</defs>
-<rect fill="none" height="30" width="30"/>
-<path d="M19.504,29c-1.203,0-2.192-0.547-2.674-1.015c-0.225-0.218-4.875-4.538-6.402-5.958l-0.627-0.583 C7.857,19.894,6.709,17.527,6.709,15c0-4.572,3.72-8.292,8.291-8.292c4.572,0,8.291,3.72,8.291,8.292 c0,3.096-1.771,5.946-4.492,7.357l1.079,0.985c0.216,0.206,0.865,0.699,1.468,0.699h1.211c0.818,0,1.486-0.667,1.486-1.487V7.444 c0-0.82-0.668-1.487-1.486-1.487H7.445c-0.82,0-1.487,0.667-1.487,1.487v11.803c0,0.593,0.331,0.995,0.527,1.183 c0.208,0.199,5.013,4.608,6.822,6.269L15.816,29H4.477C2.56,29,1,27.44,1,25.523V4.477C1,2.56,2.56,1,4.477,1h21.047 C27.44,1,29,2.56,29,4.477v21.047C29,27.44,27.44,29,25.523,29H19.504z M15,12.371c-1.449,0-2.628,1.18-2.628,2.629 s1.179,2.628,2.628,2.628s2.629-1.179,2.629-2.628S16.449,12.371,15,12.371L15,12.371z" opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
-<path d="M19.504,28c-0.969,0-1.717-0.479-1.977-0.731c-0.281-0.272-6.77-6.299-7.045-6.556 C8.711,19.297,7.709,17.222,7.709,15c0-4.021,3.271-7.292,7.291-7.292c4.021,0,7.291,3.271,7.291,7.292 c0,2.994-1.887,5.729-4.695,6.804l-0.624,0.239l2.231,2.038c0.031,0.029,0.998,0.961,2.143,0.961h1.211 c1.371,0,2.486-1.116,2.486-2.487V7.444c0-1.371-1.115-2.487-2.486-2.487H7.445c-1.371,0-2.487,1.116-2.487,2.487v11.803 c0,0.966,0.524,1.609,0.838,1.907c0.233,0.224,5.935,5.453,7.452,6.846H4.477C3.111,28,2,26.89,2,25.523V4.477 C2,3.11,3.111,2,4.477,2h21.047C26.889,2,28,3.11,28,4.477v21.047C28,26.89,26.889,28,25.523,28H19.504z M15,11.371 c-2,0-3.628,1.628-3.628,3.629S13,18.628,15,18.628s3.629-1.627,3.629-3.628S17,11.371,15,11.371L15,11.371z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
-</linearGradient>
-<path d="M19.504,28c-0.969,0-1.717-0.479-1.977-0.731c-0.281-0.272-6.77-6.299-7.045-6.556 C8.711,19.297,7.709,17.222,7.709,15c0-4.021,3.271-7.292,7.291-7.292c4.021,0,7.291,3.271,7.291,7.292 c0,2.994-1.887,5.729-4.695,6.804l-0.624,0.239l2.231,2.038c0.031,0.029,0.998,0.961,2.143,0.961h1.211 c1.371,0,2.486-1.116,2.486-2.487V7.444c0-1.371-1.115-2.487-2.486-2.487H7.445c-1.371,0-2.487,1.116-2.487,2.487v11.803 c0,0.966,0.524,1.609,0.838,1.907c0.233,0.224,5.935,5.453,7.452,6.846H4.477C3.111,28,2,26.89,2,25.523V4.477 C2,3.11,3.111,2,4.477,2h21.047C26.889,2,28,3.11,28,4.477v21.047C28,26.89,26.889,28,25.523,28H19.504z M15,11.371 c-2,0-3.628,1.628-3.628,3.629S13,18.628,15,18.628s3.629-1.627,3.629-3.628S17,11.371,15,11.371L15,11.371z" fill="url(#SVGID_2_)"/>
-<path d="M22.261,15.394c0.007-0.132,0.03-0.261,0.03-0.394c0-4.021-3.271-7.292-7.291-7.292 c-4.02,0-7.291,3.271-7.291,7.292c0,0.159,0.018,0.315,0.027,0.474C8.008,11.698,11.158,8.708,15,8.708 C18.816,8.708,21.951,11.656,22.261,15.394z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M15,19.628c2,0,3.629-1.627,3.629-3.628c0-0.171-0.027-0.335-0.051-0.5 c-0.246,1.763-1.749,3.128-3.578,3.128s-3.331-1.365-3.577-3.128c-0.023,0.165-0.051,0.329-0.051,0.5 C11.372,18.001,13,19.628,15,19.628z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M4.958,19.247v1c0,0.966,0.524,1.609,0.838,1.907C5.99,22.34,9.95,25.975,12.158,28h1.09 c-1.518-1.393-7.219-6.622-7.452-6.846C5.482,20.856,4.958,20.213,4.958,19.247z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M25.523,2H4.477C3.111,2,2,3.11,2,4.477v1C2,4.11,3.111,3,4.477,3h21.047 C26.889,3,28,4.11,28,5.477v-1C28,3.11,26.889,2,25.523,2z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M21.346,26.042h1.211c1.371,0,2.486-1.116,2.486-2.487v-1c0,1.371-1.115,2.487-2.486,2.487 h-1.211c-1.145,0-2.111-0.932-2.143-0.961l-1.47-1.343c-0.048,0.02-0.089,0.047-0.138,0.065l-0.624,0.239l2.231,2.038 C19.234,25.11,20.201,26.042,21.346,26.042z" fill="#FFFFFF" opacity="0.4"/>
-<rect fill="none" height="30" width="30"/>
+</defs>
</g>
<g>
-<rect height="34.27" opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
+<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
<defs>
-
<linearGradient gradientTransform="matrix(0.8824 0 0 -0.8824 -284.8232 -348.3516)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="339.8" x2="339.8" y1="-397.3" y2="-425.3">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.2606" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
-
</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_no_signal.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_no_signal.svg Thu May 27 13:10:59 2010 +0300
@@ -1,37 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill-opacity="0.6" height="12" width="8" x="1" y="15"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="3.9995" y2="25.9389">
- <stop offset="0" style="stop-color:#C4C4C4"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="6" x="2" y="16"/>
-<polygon fill="#FFFFFF" opacity="0.3" points="2,16 2,20 8,26 8,20.344 3.656,16 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="2,16 2,20 8,26 8,20.344 3.656,16 " stroke-opacity="0.3"/>
<rect fill-opacity="0.6" height="18" width="8" x="11" y="9"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="4" y2="25.939">
- <stop offset="0" style="stop-color:#C4C4C4"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="16" width="6" x="12" y="10"/>
-<polygon fill="#FFFFFF" opacity="0.3" points="18,12.39 18,10 15.609,10 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="12,17.703 18,23.703 18,18.047 12,12.047 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="12,23.36 12,26 14.639,26 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="18,12.39 18,10 15.609,10 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="12,17.703 18,23.703 18,18.047 12,12.047 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="12,23.36 12,26 14.639,26 " stroke-opacity="0.3"/>
<rect fill-opacity="0.6" height="24" width="8" x="21" y="3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="25" x2="25" y1="4" y2="25.9388">
- <stop offset="0" style="stop-color:#C4C4C4"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="22" width="6" x="22" y="4"/>
-<polygon fill="#FFFFFF" opacity="0.3" points="28,9.64 28,4 22.359,4 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="22,14.953 28,20.953 28,15.297 22,9.297 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="22,20.61 22,26 27.389,26 "/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="6" x="2" y="16"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="6" x="12" y="10"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="6" x="22" y="4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,9.64 28,4 22.359,4 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,14.953 28,20.953 28,15.297 22,9.297 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,20.61 22,26 27.389,26 " stroke-opacity="0.3"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="2" y="16"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="12" y="10"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="22" y="4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_note.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_note.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
+<polygon fill-opacity="0.6" points="28,28 28,2 2,2 2,21.414 8.586,28 "/>
+<polygon fill="url(#SVGID_1_)" points="27,3 27,27 9,27 3,21 3,3 "/>
+<polygon fill="#FFEC8A" points="3,21 9,21 9,27 "/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="20" x="5" y="8.5"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="20" x="5" y="12.5"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="14" x="5" y="16.5"/>
+<rect fill="none" height="30" width="30"/>
<defs>
-</defs>
-<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.6" points="2,28 2,2 28,2 28,21.414 21.414,28 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="3" y2="27.0005">
- <stop offset="0" style="stop-color:#FFD338"/>
- <stop offset="1" style="stop-color:#F6A800"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 854 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="839" x2="839" y1="3" y2="27.0005">
+<stop offset="0" style="stop-color:#FFD338"/>
+<stop offset="1" style="stop-color:#F6A800"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="3,3 3,27 21,27 27,21 27,3 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="20.959" x2="23.9587" y1="20.959" y2="23.9587">
- <stop offset="0" style="stop-color:#FEFFD9"/>
- <stop offset="1" style="stop-color:#FFCF01"/>
-</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="27,21 21,21 21,27 "/>
-<rect height="1.5" opacity="0.5" width="20" x="5" y="8.5"/>
-<rect height="1.5" opacity="0.5" width="20" x="5" y="12.5"/>
-<rect height="1.5" opacity="0.5" width="14" x="5" y="16.5"/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_offline.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_offline.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M15,29.5C7.005,29.5,0.5,22.995,0.5,15S7.005,0.5,15,0.5S29.5,7.005,29.5,15S22.995,29.5,15,29.5 L15,29.5z" fill-opacity="0.6"/>
<radialGradient cx="15" cy="11.0723" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="16.3651">
- <stop offset="0" style="stop-color:#DCDCDC"/>
- <stop offset="1" style="stop-color:#787878"/>
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#787878"/>
</radialGradient>
<path d="M15,28.5C7.556,28.5,1.5,22.445,1.5,15C1.5,7.557,7.556,1.5,15,1.5c7.443,0,13.5,6.057,13.5,13.5 C28.5,22.445,22.443,28.5,15,28.5L15,28.5z" fill="url(#SVGID_1_)"/>
+<path d="M15,1.5C7.556,1.5,1.5,7.557,1.5,15c0,7.445,6.056,13.5,13.5,13.5 c7.443,0,13.5-6.055,13.5-13.5C28.5,7.557,22.443,1.5,15,1.5z M15,26.045C8.233,26.045,2.728,21.768,2.728,15 C2.728,8.233,8.233,2.728,15,2.728S27.273,8.233,27.273,15C27.273,21.768,21.767,26.045,15,26.045z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M15,19.909c-5.414,0-9.818-3.579-9.818-7.978S9.586,3.955,15,3.955 c5.414,0,9.818,3.578,9.818,7.977S20.414,19.909,15,19.909L15,19.909z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.0005" x2="15.0005" y1="28.5" y2="1.5005">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#B4B4B4"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#B4B4B4"/>
</linearGradient>
-<path d="M15,1.5C7.556,1.5,1.5,7.557,1.5,15c0,7.445,6.056,13.5,13.5,13.5 c7.443,0,13.5-6.055,13.5-13.5C28.5,7.557,22.443,1.5,15,1.5z M15,26.045C8.233,26.045,2.728,21.768,2.728,15 C2.728,8.233,8.233,2.728,15,2.728S27.273,8.233,27.273,15C27.273,21.768,21.767,26.045,15,26.045z" fill="url(#SVGID_2_)" opacity="0.3"/>
-<path d="M15,19.909c-5.414,0-9.818-3.579-9.818-7.978S9.586,3.955,15,3.955 c5.414,0,9.818,3.578,9.818,7.977S20.414,19.909,15,19.909L15,19.909z" fill="#FFFFFF" opacity="0.2"/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_online.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_online.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,23 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M15,29.5C7.005,29.5,0.5,22.995,0.5,15S7.005,0.5,15,0.5S29.5,7.005,29.5,15S22.995,29.5,15,29.5 L15,29.5z" fill-opacity="0.6"/>
<radialGradient cx="15" cy="11.4824" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="19.5752">
- <stop offset="0" style="stop-color:#B2F56E"/>
- <stop offset="0.4" style="stop-color:#62B82E"/>
- <stop offset="1" style="stop-color:#0D4D07"/>
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.4" style="stop-color:#62B82E"/>
+<stop offset="1" style="stop-color:#0D4D07"/>
</radialGradient>
<path d="M15,28.5C7.556,28.5,1.5,22.445,1.5,15C1.5,7.557,7.556,1.5,15,1.5c7.443,0,13.5,6.057,13.5,13.5 C28.5,22.445,22.443,28.5,15,28.5L15,28.5z" fill="url(#SVGID_1_)"/>
+<path d="M15,1.5C7.556,1.5,1.5,7.557,1.5,15c0,7.445,6.056,13.5,13.5,13.5 c7.443,0,13.5-6.055,13.5-13.5C28.5,7.557,22.443,1.5,15,1.5z M15,26.045C8.233,26.045,2.728,21.768,2.728,15 C2.728,8.233,8.233,2.728,15,2.728S27.273,8.233,27.273,15C27.273,21.768,21.767,26.045,15,26.045z" fill="url(#SVGID_2_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M15,19.909c-5.414,0-9.818-3.579-9.818-7.978S9.586,3.955,15,3.955 c5.414,0,9.818,3.578,9.818,7.977S20.414,19.909,15,19.909L15,19.909z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="none" height="30" width="30"/>
+<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.0005" x2="15.0005" y1="28.5" y2="1.5005">
- <stop offset="0" style="stop-color:#D7EDCA"/>
- <stop offset="1" style="stop-color:#62B82E"/>
+<stop offset="0" style="stop-color:#D7EDCA"/>
+<stop offset="1" style="stop-color:#62B82E"/>
</linearGradient>
-<path d="M15,1.5C7.556,1.5,1.5,7.557,1.5,15c0,7.445,6.056,13.5,13.5,13.5 c7.443,0,13.5-6.055,13.5-13.5C28.5,7.557,22.443,1.5,15,1.5z M15,26.045C8.233,26.045,2.728,21.768,2.728,15 C2.728,8.233,8.233,2.728,15,2.728S27.273,8.233,27.273,15C27.273,21.768,21.767,26.045,15,26.045z" fill="url(#SVGID_2_)" opacity="0.4"/>
-<path d="M15,19.909c-5.414,0-9.818-3.579-9.818-7.978S9.586,3.955,15,3.955 c5.414,0,9.818,3.578,9.818,7.977S20.414,19.909,15,19.909L15,19.909z" fill="#FFFFFF" opacity="0.2"/>
-<rect fill="none" height="30" width="30"/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_operator.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_operator.svg Thu May 27 13:10:59 2010 +0300
@@ -1,43 +1,41 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<polygon fill-opacity="0.6" points="3,29 3,1 19.414,1 27,8.586 27,29 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#B1B1B1"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#B1B1B1"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="26,9 26,28 4,28 4,2 19,2 "/>
<polygon fill="#FFFFFF" points="19,2 4,2 4,3 18.586,3 26,10.484 26,9 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.0005" x2="15.0005" y1="25" y2="12.0005">
- <stop offset="0" style="stop-color:#666666"/>
- <stop offset="1" style="stop-color:#282828"/>
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="13" width="16" x="7" y="12"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="13" y2="23.9727">
- <stop offset="0" style="stop-color:#FEE06A"/>
- <stop offset="1" style="stop-color:#FFB701"/>
+<stop offset="0" style="stop-color:#FEE06A"/>
+<stop offset="1" style="stop-color:#FFB701"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="18,13 18,16 17,16 17,13 13,13 13,16 12,16 12,13 8,13 8,18 22,18 22,13 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="10" x2="10" y1="13.0005" y2="23.9721">
- <stop offset="0" style="stop-color:#FEE06A"/>
- <stop offset="1" style="stop-color:#FFB701"/>
+<stop offset="0" style="stop-color:#FEE06A"/>
+<stop offset="1" style="stop-color:#FFB701"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="5" width="4" x="8" y="19"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.9995" x2="14.9995" y1="13.0005" y2="23.9721">
- <stop offset="0" style="stop-color:#FEE06A"/>
- <stop offset="1" style="stop-color:#FFB701"/>
+<stop offset="0" style="stop-color:#FEE06A"/>
+<stop offset="1" style="stop-color:#FFB701"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="5" width="4" x="13" y="19"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20" x2="20" y1="13.0005" y2="23.9721">
- <stop offset="0" style="stop-color:#FEE06A"/>
- <stop offset="1" style="stop-color:#FFB701"/>
+<stop offset="0" style="stop-color:#FEE06A"/>
+<stop offset="1" style="stop-color:#FFB701"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="5" width="4" x="18" y="19"/>
-<rect fill="#FFFFFF" height="1" opacity="0.3" width="14" x="8" y="13"/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="14" x="8" y="13"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_outbox.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_outbox.svg Thu May 27 13:10:59 2010 +0300
@@ -1,32 +1,30 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<polygon opacity="0.6" points="11,19 11,12 7,12 15,1.333 23,12 19,12 19,19 "/>
+<polygon fill-opacity="0.6" points="11,19 11,12 7,12 15,1.333 23,12 19,12 19,19 " stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2.7603" y2="18.0948">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="15,3 9,11 12,11 12,18 18,18 18,11 21,11 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="2.7603" y2="18.0948">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="0.7576" style="stop-color:#4CB400"/>
- <stop offset="1" style="stop-color:#89CC6A"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="0.7576" style="stop-color:#4CB400"/>
+<stop offset="1" style="stop-color:#89CC6A"/>
</linearGradient>
<path d="M15,3l-6,8h3v7h6v-7h3L15,3z M17,10v7h-4v-7h-2l4-5.333L19,10H17z" fill="url(#SVGID_2_)"/>
-<polygon opacity="0.6" points="1,28 1,19 5,19 5,22 25,22 25,19 29,19 29,28 "/>
+<polygon fill-opacity="0.6" points="1,28 1,19 5,19 5,22 25,22 25,19 29,19 29,28 " stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="19.8877" y2="27.0436">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="26,20 26,23 4,23 4,20 2,20 2,23 2,26 2,27 28,27 28,26 28,23 28,20 "/>
-<rect height="1" opacity="0.2" width="26" x="2" y="26"/>
-<rect fill="#FFFFFF" height="1" opacity="0.2" width="2" x="2" y="20"/>
-<rect fill="#FFFFFF" height="1" opacity="0.2" width="2" x="26" y="20"/>
-<rect fill="#FFFFFF" height="1" opacity="0.2" width="22" x="4" y="23"/>
+<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="26" x="2" y="26"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="2" y="20"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="26" y="20"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="22" x="4" y="23"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ovi.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ovi.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<rect fill="none" height="30" width="30"/>
-
<rect fill="none" height="30" width="30"/>
-
<rect fill="#44A51C" height="30" width="30"/>
-
<path d="M7.069,9.857c-3.87,0-5.903,2.655-5.903,6.435,0,3.829,1.497,6.84,5.863,6.84,4.022,0,5.882-2.724,5.882-6.754,0-3.85-1.83-6.523-5.841-6.523zm-0.042,11.2c-2.063,0-2.152-2.928-2.152-4.844,0-1.868,0.156-4.297,2.152-4.297,1.901,0,2.169,2.567,2.169,4.297,0.001,2.23-0.112,4.84-2.169,4.84z" fill="#FFFFFF"/>
-
<path d="M17.85,23.13c1.57,0,2.125-0.788,2.498-1.933l3.385-11.16h-3.158l-2.42,9.658-2.282-9.658h-3.739l3.212,11.16c0.35,1.14,0.93,1.93,2.5,1.93z" fill="#FFFFFF"/>
-
<path d="M26.99,5.348c-1.162,0-1.969,0.587-1.969,1.667,0,1.082,0.827,1.667,1.969,1.667,1.143,0,1.967-0.585,1.967-1.667,0-1.058-0.87-1.667-1.97-1.667z" fill="#FFFFFF"/>
-
<path d="M25.69,22.77c0.263,0.191,0.681,0.358,1.27,0.358,0.615,0,1.018-0.169,1.282-0.358,0.507-0.357,0.507-0.963,0.507-1.289v-11.44h-3.525-0.244c-0.341,0-0.626,0.007-0.818,0.275-0.098,0.124-0.229,0.351-0.229,0.759,0,0.424,0.132,0.628,0.229,0.756,0.192,0.272,0.478,0.273,0.818,0.273,0.115,0,0.209-0.001,0.209-0.001v9.385c-0.01,0.31-0.01,0.92,0.5,1.27z" fill="#FFFFFF"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_pager.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_pager.svg Thu May 27 13:10:59 2010 +0300
@@ -1,43 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M4,25c-1.654,0-3-1.346-3-3V8c0-1.654,1.346-3,3-3h22c1.654,0,3,1.346,3,3v14c0,1.654-1.346,3-3,3H4z" opacity="0.6"/>
+<path d="M4,25c-1.654,0-3-1.346-3-3V8c0-1.654,1.346-3,3-3h22c1.654,0,3,1.346,3,3v14c0,1.654-1.346,3-3,3H4z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="6.2002" y2="23.8229">
- <stop offset="0" style="stop-color:#808080"/>
- <stop offset="0.5" style="stop-color:#636363"/>
- <stop offset="1" style="stop-color:#1C1C1C"/>
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="0.5" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
<path d="M28,22c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V8c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2V22z" fill="url(#SVGID_1_)"/>
-<path d="M26,6H4C2.9,6,2,6.9,2,8v1c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2V8C28,6.9,27.1,6,26,6z" fill="#FFFFFF" opacity="0.2"/>
+<path d="M26,6H4C2.9,6,2,6.9,2,8v1c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2V8C28,6.9,27.1,6,26,6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="8.1113" y2="17.9019">
- <stop offset="0" style="stop-color:#4F4F4F"/>
- <stop offset="1" style="stop-color:#9E9E9E"/>
+<stop offset="0" style="stop-color:#4F4F4F"/>
+<stop offset="1" style="stop-color:#9E9E9E"/>
</linearGradient>
<path d="M4,18c-0.55,0-1-0.45-1-1V9c0-0.55,0.45-1,1-1h22c0.55,0,1,0.45,1,1v8c0,0.55-0.45,1-1,1H4z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="9.0889" y2="16.9214">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#1E6BC4"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#1E6BC4"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="8" width="22" x="4" y="9"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="24.5" x2="24.5" y1="20.0225" y2="21.9805">
- <stop offset="0.3939" style="stop-color:#96D12A"/>
- <stop offset="1" style="stop-color:#4B8B00"/>
+<stop offset="0" style="stop-color:#96D12A"/>
+<stop offset="0.3939" style="stop-color:#96D12A"/>
+<stop offset="1" style="stop-color:#4B8B00"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="2" width="3" x="23" y="20"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="19.5" x2="19.5" y1="20.0225" y2="21.9805">
- <stop offset="0" style="stop-color:#C0C0C0"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#C0C0C0"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="2" width="3" x="18" y="20"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="12.5" x2="12.5" y1="20.0225" y2="21.9805">
- <stop offset="0" style="stop-color:#DE6F00"/>
- <stop offset="1" style="stop-color:#AB0000"/>
+<stop offset="0" style="stop-color:#DE6F00"/>
+<stop offset="1" style="stop-color:#AB0000"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="2" width="3" x="11" y="20"/>
-<polygon fill="#FFFFFF" opacity="0.2" points="26,12 4,13 4,9 26,9 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="26,12 4,13 4,9 26,9 " stroke-opacity="0.2"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_pair.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_pair.svg Thu May 27 13:10:59 2010 +0300
@@ -1,22 +1,22 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.3721" x2="10.3721" y1="1" y2="24.4868">
- <stop offset="0.2143" style="stop-color:#36B5FF"/>
- <stop offset="0.5879" style="stop-color:#1B66D8"/>
- <stop offset="1" style="stop-color:#2183E0"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="0.2143" style="stop-color:#36B5FF"/>
+<stop offset="0.5879" style="stop-color:#1B66D8"/>
+<stop offset="1" style="stop-color:#2183E0"/>
</linearGradient>
<path d="M16.389,8.041L9.514,1v9.274L5.734,6.407L4.355,7.815l4.75,4.871l-4.75,4.869l1.377,1.406 l3.781-3.865v9.274l6.875-7.037l-4.541-4.647L16.389,8.041z M13.645,8.056l-2.195,2.243l-0.004-4.49L13.645,8.056z M13.645,17.321 l-2.199,2.241l0.004-4.49L13.645,17.321z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="19.6279" x2="19.6279" y1="5.6289" y2="29.1157">
- <stop offset="0.2143" style="stop-color:#36B5FF"/>
- <stop offset="0.5879" style="stop-color:#1B66D8"/>
- <stop offset="1" style="stop-color:#2183E0"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="0.2143" style="stop-color:#36B5FF"/>
+<stop offset="0.5879" style="stop-color:#1B66D8"/>
+<stop offset="1" style="stop-color:#2183E0"/>
</linearGradient>
<path d="M25.645,12.67l-6.873-7.041v9.274l-3.779-3.867l-1.381,1.408l4.752,4.871l-4.752,4.869l1.377,1.406 l3.783-3.865V29l6.873-7.039l-4.539-4.646L25.645,12.67z M22.9,12.683l-2.195,2.245l-0.002-4.492L22.9,12.683z M22.9,21.95 l-2.197,2.241l0.002-4.49L22.9,21.95z" fill="url(#SVGID_2_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_person.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_person.svg Thu May 27 13:10:59 2010 +0300
@@ -1,42 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M1,29v-1c0-2.974,1.324-5.258,3.83-6.606c0.602-0.324,1.942-0.849,3.771-1.554 c0.68-0.262,1.493-0.576,1.889-0.743c0.147-0.423,0.11-1.146,0.001-1.362c0,0-1.105-2.003-1.146-2.088 c-0.909-0.094-1.778-0.873-2.203-1.998c-0.457-1.209-0.286-2.413,0.373-3.094c-0.589-2.53-0.458-4.477,0.393-5.793 C8.413,3.98,9.175,3.434,10.08,3.195C11.014,2.066,12.33,1,14.762,1c2.838,0.096,5.041,1.074,6.405,2.831 c1.341,1.728,1.776,4.13,1.23,6.78c0.621,0.697,0.759,1.895,0.283,3.083c-0.411,1.032-1.173,1.747-2.007,1.916 c-0.046,0.097-1.174,2.138-1.174,2.138c-0.121,0.24-0.136,1.033,0.023,1.416c0.333,0.133,0.99,0.381,1.586,0.605 c1.942,0.73,3.475,1.314,4.054,1.619C25.804,21.728,29,23.636,29,28v1H1z" fill-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.0024" x2="15.0024" y1="24.1553" y2="17.2445">
- <stop offset="0.2" style="stop-color:#FFA98E"/>
- <stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="0" style="stop-color:#FFA98E"/>
+<stop offset="0.2" style="stop-color:#FFA98E"/>
+<stop offset="0.9628" style="stop-color:#D45D36"/>
+<stop offset="1" style="stop-color:#D45D36"/>
</linearGradient>
<path d="M19.167,20.203c-0.92-0.404-0.89-2.39-0.512-2.99c0.066-0.105,0.127-0.209,0.191-0.314h-7.693 c0.064,0.105,0.124,0.209,0.19,0.314c0.379,0.601,0.408,2.586-0.511,2.99c-0.92,0.405,4.274,3.932,4.274,3.932 S20.087,20.608,19.167,20.203z" fill="url(#SVGID_1_)"/>
-<path d="M11.344,17.213c0.154,0.244,0.245,0.721,0.243,1.225c0.866,0.945,2.058,1.894,3.355,1.894 c1.663,0,2.726-0.854,3.475-1.778c-0.02-0.546,0.072-1.076,0.238-1.34c0.066-0.105,0.127-0.209,0.191-0.314h-7.693 C11.218,17.004,11.277,17.107,11.344,17.213z" opacity="0.1"/>
+<path d="M11.344,17.213c0.154,0.244,0.245,0.721,0.243,1.225c0.866,0.945,2.058,1.894,3.355,1.894 c1.663,0,2.726-0.854,3.475-1.778c-0.02-0.546,0.072-1.076,0.238-1.34c0.066-0.105,0.127-0.209,0.191-0.314h-7.693 C11.218,17.004,11.277,17.107,11.344,17.213z" fill-opacity="0.1" stroke-opacity="0.1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="19.8359" y2="28">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="1" style="stop-color:#BA1212"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="1" style="stop-color:#BA1212"/>
</linearGradient>
<path d="M24.696,22.273c-0.968-0.51-5.761-2.212-5.852-2.318l-3.662,3.086l-3.935-3.205 C11.14,20,6.4,21.684,5.304,22.273C4.049,22.949,2,24.501,2,28h26C28,24.501,25.662,22.783,24.696,22.273z" fill="url(#SVGID_2_)"/>
<path d="M24.229,23.158c-0.513-0.271-2.506-1.021-3.825-1.518c-0.627-0.236-1.068-0.402-1.385-0.525l-0.312,0.263 c0.204,0.077,0.43,0.163,0.696,0.263c1.319,0.496,3.313,1.247,3.825,1.518c0.411,0.217,2.283,1.334,2.691,3.842h1 C26.513,24.492,24.641,23.375,24.229,23.158z" fill="#FF7B56"/>
<path d="M6.777,23.154c0.538-0.289,2.28-0.961,3.552-1.451c0.441-0.17,0.802-0.309,1.104-0.427l-0.328-0.267 c-0.384,0.157-0.942,0.373-1.775,0.693c-1.271,0.49-3.014,1.162-3.552,1.451C4.223,23.991,3.314,25.282,3.068,27h1 C4.314,25.282,5.223,23.991,6.777,23.154z" fill="#FF7B56"/>
<radialGradient cx="-107.9609" cy="23.2217" gradientTransform="matrix(0.9352 0 0 0.9448 112.9225 -13.3229)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="14.0323">
- <stop offset="0" style="stop-color:#FFE2D9"/>
- <stop offset="0.5091" style="stop-color:#FFC6B3"/>
- <stop offset="0.7636" style="stop-color:#FFA98E"/>
- <stop offset="1" style="stop-color:#E88160"/>
+<stop offset="0" style="stop-color:#FFE2D9"/>
+<stop offset="0.5091" style="stop-color:#FFC6B3"/>
+<stop offset="0.7636" style="stop-color:#FFA98E"/>
+<stop offset="1" style="stop-color:#E88160"/>
</radialGradient>
<path d="M21.378,11.076c-0.033-0.016-0.069-0.019-0.104-0.029v-0.001c-0.006-0.001-0.012-0.003-0.02-0.004 c-0.05-0.013-0.101-0.024-0.153-0.028c-6.421-1.133-9.367-4.738-9.59-3.783c-0.176,0.76-1.977,2.402-2.919,3.223 c0.008,0.036,0.013,0.069,0.02,0.105c0,0,0.034,0.169,0.105,0.455c-0.075,0.008-0.148,0.023-0.22,0.055 c-0.6,0.256-0.788,1.254-0.42,2.227c0.368,0.975,1.152,1.557,1.751,1.302c0.038-0.017,0.069-0.044,0.103-0.065 c0.35,0.795,0.777,1.646,1.302,2.5c0.878,1.059,2.224,2.3,3.709,2.3c1.797,0,2.897-0.997,3.653-2.002 c0.019-0.042,0.039-0.082,0.06-0.116c0.561-0.888,1.015-1.778,1.383-2.607c0.587,0.207,1.341-0.346,1.714-1.283 C22.14,12.354,21.972,11.348,21.378,11.076z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="14.8901" x2="14.8901" y1="2.1216" y2="10.4031">
- <stop offset="0" style="stop-color:#8A5D3B"/>
- <stop offset="0.3758" style="stop-color:#632F00"/>
- <stop offset="1" style="stop-color:#361700"/>
+<stop offset="0" style="stop-color:#8A5D3B"/>
+<stop offset="0.3758" style="stop-color:#632F00"/>
+<stop offset="1" style="stop-color:#361700"/>
</linearGradient>
<path d="M14.762,2c-2.226,0-3.297,1.026-4.123,2.099c-1.345,0.21-3.476,1.46-1.971,6.933 c0.942-0.82,2.668-3.041,2.844-3.801c0.225-0.964,3.221,2.719,9.763,3.815c0.077-0.306,0.112-0.487,0.112-0.487 C22.414,5.887,20.179,2.183,14.762,2z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15.0591" x2="15.0591" y1="20.1875" y2="25.6254">
- <stop offset="0" style="stop-color:#BC1C24"/>
- <stop offset="1" style="stop-color:#6B1C24"/>
+<stop offset="0" style="stop-color:#BC1C24"/>
+<stop offset="1" style="stop-color:#6B1C24"/>
</linearGradient>
<path d="M20.96,20.781c-1.13-0.426-2.075-0.779-2.115-0.826l-3.662,3.086l-3.935-3.205 c-0.047,0.071-0.971,0.43-2.09,0.861l6.046,4.939L20.96,20.781z" fill="url(#SVGID_5_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_phone_disabled.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_phone_disabled.svg Thu May 27 13:10:59 2010 +0300
@@ -1,66 +1,58 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M7.963,29.301C6.328,29.301,5,27.971,5,26.338V3.994C5,2.36,6.328,1.032,7.963,1.032h14.074 C23.672,1.032,25,2.36,25,3.994v22.344c0,1.633-1.328,2.963-2.963,2.963H7.963z" opacity="0.6"/>
+<path d="M7.963,29.301C6.328,29.301,5,27.971,5,26.338V3.994C5,2.36,6.328,1.032,7.963,1.032h14.074 C23.672,1.032,25,2.36,25,3.994v22.344c0,1.633-1.328,2.963-2.963,2.963H7.963z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="-4.1611" y2="28.2423">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#9B9D9E"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#9B9D9E"/>
</linearGradient>
<path d="M24,26.338c0,1.084-0.879,1.963-1.963,1.963H7.963C6.879,28.301,6,27.422,6,26.338V3.994 C6,2.91,6.879,2.032,7.963,2.032h14.074C23.121,2.032,24,2.91,24,3.994V26.338z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="21.0811" y2="27.3765">
- <stop offset="0" style="stop-color:#A6A8AB"/>
- <stop offset="0.703" style="stop-color:#58595B"/>
- <stop offset="1" style="stop-color:#808184"/>
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.703" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="4" width="4" x="13" y="23.301"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="23.1904" y2="26.3381">
- <stop offset="0" style="stop-color:#F0F0F0"/>
- <stop offset="1" style="stop-color:#9B9D9E"/>
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#9B9D9E"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="2" width="2" x="14" y="24.301"/>
-<path d="M22.037,2.032H7.963C6.879,2.032,6,2.91,6,3.994v1C6,3.91,6.879,3.032,7.963,3.032h14.074 C23.121,3.032,24,3.91,24,4.994v-1C24,2.91,23.121,2.032,22.037,2.032z" fill="#FFFFFF" opacity="0.2"/>
+<path d="M22.037,2.032H7.963C6.879,2.032,6,2.91,6,3.994v1C6,3.91,6.879,3.032,7.963,3.032h14.074 C23.121,3.032,24,3.91,24,4.994v-1C24,2.91,23.121,2.032,22.037,2.032z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.0005" x2="15.0005" y1="22.2461" y2="4.1392">
- <stop offset="0" style="stop-color:#DADADB"/>
- <stop offset="1" style="stop-color:#9B9D9E"/>
+<stop offset="0" style="stop-color:#DADADB"/>
+<stop offset="1" style="stop-color:#9B9D9E"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="18.301" width="16" x="7" y="4.032"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.9995" x2="14.9995" y1="5.0322" y2="21.3059">
- <stop offset="0" style="stop-color:#3BC8EB"/>
- <stop offset="1" style="stop-color:#1347BA"/>
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="16.301" width="14" x="8" y="5.032"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="9" x2="9" y1="24.3008" y2="26.2852">
- <stop offset="0" style="stop-color:#1CAB00"/>
- <stop offset="1" style="stop-color:#1F6300"/>
+<stop offset="0" style="stop-color:#1CAB00"/>
+<stop offset="1" style="stop-color:#1F6300"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="2" width="4" x="7" y="24.301"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="21" x2="21" y1="24.3008" y2="26.3008">
- <stop offset="0" style="stop-color:#E63B00"/>
- <stop offset="1" style="stop-color:#8C0000"/>
+<stop offset="0" style="stop-color:#E63B00"/>
+<stop offset="1" style="stop-color:#8C0000"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="2" width="4" x="19" y="24.301"/>
-<polygon fill="#FFFFFF" opacity="0.2" points="22,11.162 22,5.032 8,5.032 8,12.301 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="22,11.162 22,5.032 8,5.032 8,12.301 " stroke-opacity="0.2"/>
</g>
<g>
-<rect height="34.27" opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
+<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
<defs>
-
<linearGradient gradientTransform="matrix(0.8824 0 0 -0.8824 -284.8232 -348.3516)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="339.8" x2="339.8" y1="-397.3" y2="-425.3">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.2606" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
-
</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_phonebook.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_phonebook.svg Thu May 27 13:10:59 2010 +0300
@@ -1,44 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M4,1v5C2.896,6,2,6.897,2,8s0.896,2,2,2v1c-1.104,0-2,0.897-2,2s0.896,2,2,2v1c-1.104,0-2,0.897-2,2 s0.896,2,2,2v1c-1.104,0-2,0.897-2,2s0.896,2,2,2v4h24V1H4z" opacity="0.6"/>
+<path d="M4,1v5C2.896,6,2,6.897,2,8s0.896,2,2,2v1c-1.104,0-2,0.897-2,2s0.896,2,2,2v1c-1.104,0-2,0.897-2,2 s0.896,2,2,2v1c-1.104,0-2,0.897-2,2s0.896,2,2,2v4h24V1H4z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="18" x2="18" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="26" width="18" x="9" y="2"/>
-<path d="M19.134,16.857c-0.005-0.08,0-0.161,0.002-0.242c0.532-0.371,0.993-0.9,1.274-1.472 c0.52-1.056,0.389-3.753,0.389-3.753c0-1.102-1.65-2.391-2.725-2.391h-0.386c-1.075,0-2.726,1.289-2.726,2.391 c0,0-0.098,2.688,0.39,3.753c0.267,0.582,0.736,1.116,1.281,1.487c0.001,0.075,0.007,0.151,0.002,0.227 c-0.066,1.08-3.579,2.914-3.751,3.148V23h10v-2.992C22.713,19.772,19.2,17.938,19.134,16.857z" opacity="0.2"/>
+<path d="M19.134,16.857c-0.005-0.08,0-0.161,0.002-0.242c0.532-0.371,0.993-0.9,1.274-1.472 c0.52-1.056,0.389-3.753,0.389-3.753c0-1.102-1.65-2.391-2.725-2.391h-0.386c-1.075,0-2.726,1.289-2.726,2.391 c0,0-0.098,2.688,0.39,3.753c0.267,0.582,0.736,1.116,1.281,1.487c0.001,0.075,0.007,0.151,0.002,0.227 c-0.066,1.08-3.579,2.914-3.751,3.148V23h10v-2.992C22.713,19.772,19.2,17.938,19.134,16.857z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7" x2="7" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#A5A5A5"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="26" width="4" x="5" y="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="5" x2="5" y1="6.75" y2="8.75">
- <stop offset="0" style="stop-color:#ABABAB"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#ABABAB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<path d="M7,8c0,0.55-0.45,1-1,1H4C3.45,9,3,8.55,3,8l0,0c0-0.55,0.45-1,1-1h2C6.55,7,7,7.45,7,8L7,8z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="5" x2="5" y1="11.75" y2="13.75">
- <stop offset="0" style="stop-color:#ABABAB"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#ABABAB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<path d="M7,13c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1l0,0c0-0.55,0.45-1,1-1h2C6.55,12,7,12.45,7,13L7,13z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="5" x2="5" y1="16.75" y2="18.75">
- <stop offset="0" style="stop-color:#ABABAB"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#ABABAB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<path d="M7,18c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1l0,0c0-0.55,0.45-1,1-1h2C6.55,17,7,17.45,7,18L7,18z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="5" x2="5" y1="21.75" y2="23.75">
- <stop offset="0" style="stop-color:#ABABAB"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#ABABAB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<path d="M7,23c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1l0,0c0-0.55,0.45-1,1-1h2C6.55,22,7,22.45,7,23L7,23z" fill="url(#SVGID_6_)"/>
<path d="M19.134,15.857c-0.005-0.08,0-0.161,0.002-0.242c0.532-0.371,0.993-0.9,1.274-1.472 c0.52-1.056,0.389-3.753,0.389-3.753c0-1.102-1.65-2.391-2.725-2.391h-0.386c-1.075,0-2.726,1.289-2.726,2.391 c0,0-0.098,2.688,0.39,3.753c0.267,0.582,0.736,1.116,1.281,1.487c0.001,0.075,0.007,0.151,0.002,0.227 c-0.066,1.08-3.579,2.914-3.751,3.148V22h10v-2.992C22.713,18.772,19.2,16.938,19.134,15.857z" fill="#FFFFFF"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="22" x="5" y="2"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="22" x="5" y="2"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_play.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_play.svg Thu May 27 13:10:59 2010 +0300
@@ -1,27 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
-<path d="M5.294,26.47c-0.156,0-0.313-0.042-0.45-0.124-0.268-0.16-0.432-0.45-0.432-0.76v-21.18c0-0.312,0.164-0.6,0.432-0.759,0.138-0.082,0.294-0.123,0.45-0.123,0.146,0,0.291,0.036,0.423,0.107l19.41,10.59c0.283,0.154,0.46,0.452,0.46,0.775s-0.177,0.62-0.46,0.774l-19.41,10.59c-0.132,0.08-0.277,0.11-0.423,0.11z" opacity="0.6" style="enable-background:new;"/>
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<path d="M5.294,26.47c-0.156,0-0.313-0.042-0.45-0.124-0.268-0.16-0.432-0.45-0.432-0.76v-21.18c0-0.312,0.164-0.6,0.432-0.759,0.138-0.082,0.294-0.123,0.45-0.123,0.146,0,0.291,0.036,0.423,0.107l19.41,10.59c0.283,0.154,0.46,0.452,0.46,0.775s-0.177,0.62-0.46,0.774l-19.41,10.59c-0.132,0.08-0.277,0.11-0.423,0.11z" fill-opacity="0.6" stroke-opacity="0.6" style="enable-background:new;"/>
<polygon fill="url(#SVGID_1_)" points="5.294,4.412,24.71,15,5.294,25.59"/>
-
-<polygon fill="#753200" opacity="0.1" points="5.294,24.71,5.294,25.59,24.71,15,23.9,14.56" style="enable-background:new;"/>
-
-<polygon fill="#FFFFFF" opacity="0.4" points="24.71,15,5.294,4.412,5.294,5.294,23.9,15.44" style="enable-background:new;"/>
-
+<polygon fill="#753200" fill-opacity="0.1" points="5.294,24.71,5.294,25.59,24.71,15,23.9,14.56" stroke-opacity="0.1" style="enable-background:new;"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="24.71,15,5.294,4.412,5.294,5.294,23.9,15.44" stroke-opacity="0.4" style="enable-background:new;"/>
<rect fill="none" height="30" width="30"/>
-
<defs>
-
<linearGradient gradientTransform="matrix(0.8824 0 0 -0.8824 -284.8232 -348.3516)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="339.8" x2="339.8" y1="-399.8" y2="-423.8">
-
<stop offset="0" stop-color="#4EDEFF"/>
-
<stop offset="1" stop-color="#048CC6"/>
-
</linearGradient>
-
</defs>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_playlist.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_playlist.svg Thu May 27 13:10:59 2010 +0300
@@ -1,40 +1,34 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
+<polygon fill-opacity="0.6" points="27,28 27,2 3,2 3,21.414 9.586,28 "/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 236 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="221" x2="221" y1="3" y2="27.0005">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
+</linearGradient>
+<polygon fill="url(#SVGID_1_)" points="26,3 26,27 10,27 4,21 4,3 "/>
+<polygon fill="#FFFFFF" points="4,21 10,21 10,27 "/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="18" x="6" y="7"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="18" x="6" y="11"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="12" x="6" y="15"/>
<rect fill="none" height="30" width="30"/>
-<polygon opacity="0.6" points="3,29 3,1 27,1 27,22.414 20.414,29 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#F9F9F9"/>
- <stop offset="1" style="stop-color:#B5B5B5"/>
-</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="4,2 4,28 20,28 26,22 26,2 "/>
-<polygon fill="#FFFFFF" points="26,22 20,22 20,28 "/>
-<rect enable-background="new " height="1.5" opacity="0.5" width="16" x="7" y="6.5"/>
-<rect enable-background="new " height="1.5" opacity="0.5" width="16" x="7" y="10.5"/>
-<rect enable-background="new " height="1.5" opacity="0.5" width="11" x="7" y="14.5"/>
</g>
<g>
-<path d="M20.96,28.68c-1.825,0-3.309-1.187-3.309-2.646s1.483-2.647,3.309-2.647c0.224,0,0.445,0.018,0.661,0.053v-7.245l5.735,1.537v4.111l-3.089-0.828v5.02c0,1.47-1.49,2.66-3.31,2.66z" opacity="0.6" style="enable-background:new;"/>
+<path d="M20.96,28.68c-1.825,0-3.309-1.187-3.309-2.646s1.483-2.647,3.309-2.647c0.224,0,0.445,0.018,0.661,0.053v-7.245l5.735,1.537v4.111l-3.089-0.828v5.02c0,1.47-1.49,2.66-3.31,2.66z" fill-opacity="0.6" stroke-opacity="0.6" style="enable-background:new;"/>
<path d="M22.06,16.77v7.229c-0.34-0.109-0.712-0.17-1.103-0.17-1.584,0-2.868,0.987-2.868,2.206s1.284,2.206,2.868,2.206c1.583,0,2.867-0.988,2.867-2.206v-5.595l3.088,0.828v-3.198l-4.86-1.3z" fill="url(#SVGID_1__)"/>
-<path d="M20.96,27.8c-1.487,0-2.709-0.871-2.854-1.985-0.009,0.072-0.014,0.146-0.014,0.221,0,1.219,1.283,2.206,2.867,2.206,1.583,0,2.867-0.988,2.867-2.206v-0.45c-0.02,1.22-1.3,2.21-2.88,2.21z" opacity="0.2" style="enable-background:new;"/>
-<polygon opacity="0.2" points="23.82,20.44,26.91,21.26,26.91,20.82,23.82,20" style="enable-background:new;"/>
-<path d="M20.96,24.27c0.391,0,0.763,0.062,1.103,0.171v-0.441c-0.339-0.109-0.712-0.17-1.103-0.17-1.584,0-2.867,0.987-2.867,2.206,0,0.074,0.005,0.147,0.014,0.22,0.15-1.12,1.37-1.99,2.86-1.99z" fill="#FFFFFF" opacity="0.4" style="enable-background:new;"/>
-<polygon fill="#FFFFFF" opacity="0.4" points="22.06,16.77,22.06,17.21,26.91,18.51,26.91,18.07" style="enable-background:new;"/>
+<path d="M20.96,27.8c-1.487,0-2.709-0.871-2.854-1.985-0.009,0.072-0.014,0.146-0.014,0.221,0,1.219,1.283,2.206,2.867,2.206,1.583,0,2.867-0.988,2.867-2.206v-0.45c-0.02,1.22-1.3,2.21-2.88,2.21z" fill-opacity="0.2" stroke-opacity="0.2" style="enable-background:new;"/>
+<polygon fill-opacity="0.2" points="23.82,20.44,26.91,21.26,26.91,20.82,23.82,20" stroke-opacity="0.2" style="enable-background:new;"/>
+<path d="M20.96,24.27c0.391,0,0.763,0.062,1.103,0.171v-0.441c-0.339-0.109-0.712-0.17-1.103-0.17-1.584,0-2.867,0.987-2.867,2.206,0,0.074,0.005,0.147,0.014,0.22,0.15-1.12,1.37-1.99,2.86-1.99z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4" style="enable-background:new;"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="22.06,16.77,22.06,17.21,26.91,18.51,26.91,18.07" stroke-opacity="0.4" style="enable-background:new;"/>
<rect fill="none" height="15" width="15" x="15" y="15"/>
<defs>
-
<linearGradient gradientTransform="matrix(0.8824 0 0 0.8824 -252.2905 -982.9092)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="311.4" x2="311.4" y1="1131" y2="1148">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.2606" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
-
</defs>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_presentation.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_presentation.svg Thu May 27 13:10:59 2010 +0300
@@ -1,55 +1,53 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<polygon fill-opacity="0.6" points="29,8 29,2 1,2 1,8 2,8 2,24 1,24 1,28 29,28 29,24 28,24 28,8 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="3" y2="7">
- <stop offset="0" style="stop-color:#B2B2B2"/>
- <stop offset="1" style="stop-color:#666666"/>
+<stop offset="0" style="stop-color:#B2B2B2"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="4" width="26" x="2" y="3"/>
<rect fill="#FFFFFF" height="18" width="24" x="3" y="7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="8" y2="24.0005">
- <stop offset="0" style="stop-color:#E6E7E7"/>
- <stop offset="1" style="stop-color:#999999"/>
+<stop offset="0" style="stop-color:#E6E7E7"/>
+<stop offset="1" style="stop-color:#999999"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="16" width="22" x="4" y="8"/>
-<polygon fill="#FFFFFF" opacity="0.7" points="20,10 20,13 15,13 15,17 10,17 10,15 5,15 5,23 25,23 25,10 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.7" points="20,10 20,13 15,13 15,17 10,17 10,15 5,15 5,23 25,23 25,10 " stroke-opacity="0.7"/>
<rect fill="#808080" height="2" width="26" x="2" y="25"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="26" x="2" y="3"/>
-<rect fill="#FFFFFF" height="1" opacity="0.2" width="26" x="2" y="25"/>
-<rect height="1" opacity="0.2" width="26" x="2" y="6"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="26" x="2" y="3"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="26" x="2" y="25"/>
+<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="26" x="2" y="6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="7.5" x2="7.5" y1="10.9995" y2="21.8879">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="6" width="3" x="6" y="16"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="12.5" x2="12.5" y1="11.0005" y2="21.888">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="4" width="3" x="11" y="18"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="17.5" x2="17.5" y1="11" y2="21.8882">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="8" width="3" x="16" y="14"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="22.5" x2="22.5" y1="11" y2="21.888">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="11" width="3" x="21" y="11"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="3" x="6" y="16"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="3" x="11" y="18"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="3" x="16" y="14"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="3" x="21" y="11"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="6" y="16"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="11" y="18"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="16" y="14"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="21" y="11"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="5" x2="19" y1="12.5" y2="12.5">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="1" style="stop-color:#D82E09"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="1" style="stop-color:#D82E09"/>
</linearGradient>
<polygon fill="url(#SVGID_7_)" points="19,9 15.564,9 11.394,13.172 10.223,12 5,12 5,14 9.394,14 11.394,16 16.394,11 19,11 "/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_priority_high.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_priority_high.svg Thu May 27 13:10:59 2010 +0300
@@ -1,23 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<polygon fill-opacity="0.6" points="11.117,18 8.867,1 21.133,1 18.883,18 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="27.0027">
- <stop offset="0" style="stop-color:#FF4D00"/>
- <stop offset="1" style="stop-color:#800000"/>
+<stop offset="0" style="stop-color:#FF4D00"/>
+<stop offset="1" style="stop-color:#800000"/>
</linearGradient>
<path d="M20,2l-2,15h-6L10,2H20z" fill="url(#SVGID_1_)"/>
<path d="M15,29c-2.757,0-5-2.243-5-5s2.243-5,5-5s5,2.243,5,5S17.757,29,15,29L15,29z" fill-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="20.333" y2="27.8994">
- <stop offset="0" style="stop-color:#FF4D00"/>
- <stop offset="1" style="stop-color:#800000"/>
+<stop offset="0" style="stop-color:#FF4D00"/>
+<stop offset="1" style="stop-color:#800000"/>
</linearGradient>
<circle cx="15" cy="24" fill="url(#SVGID_2_)" r="4"/>
-<polygon fill="#FFFFFF" opacity="0.4" points="19.866,3 20,2 10,2 10.134,3 "/>
-<path d="M15,21c2.036,0,3.7,1.53,3.95,3.5C18.971,24.334,19,24.172,19,24c0-2.208-1.792-4-4-4 c-2.21,0-4,1.792-4,4c0,0.172,0.029,0.334,0.05,0.5C11.299,22.53,12.962,21,15,21z" fill="#FFFFFF" opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="19.866,3 20,2 10,2 10.134,3 " stroke-opacity="0.4"/>
+<path d="M15,21c2.036,0,3.7,1.53,3.95,3.5C18.971,24.334,19,24.172,19,24c0-2.208-1.792-4-4-4 c-2.21,0-4,1.792-4,4c0,0.172,0.029,0.334,0.05,0.5C11.299,22.53,12.962,21,15,21z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_priority_low.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_priority_low.svg Thu May 27 13:10:59 2010 +0300
@@ -1,18 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<polygon fill-opacity="0.6" points="2.865,15 10,15 10,1 20,1 20,15 27.135,15 15,29.563 "/>
+<polygon fill="url(#SVGID_1_)" points="19,16 19,2 11,2 11,16 5,16 15,28 25,16 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="19,16 19,17 24.167,17 25,16 " stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="11,17 11,16 5,16 5.833,17 " stroke-opacity="0.4"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="8" x="11" y="2"/>
+<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="1.8545" y2="28.0011">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="19,16 19,2 11,2 11,16 5,16 15,28 25,16 "/>
-<polygon fill="#FFFFFF" opacity="0.4" points="19,16 19,17 24.167,17 25,16 "/>
-<polygon fill="#FFFFFF" opacity="0.4" points="11,17 11,16 5,16 5.833,17 "/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="8" x="11" y="2"/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_selected.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_selected.svg Thu May 27 13:10:59 2010 +0300
@@ -1,51 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill="none" fill-opacity="0.5" height="30" stroke-opacity="0.5" width="30"/>
-
<path d="M15,30c-8.271,0-15-6.73-15-15s6.729-15,15-15,15,6.729,15,15-6.73,15-15,15z" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1.219" y2="29.44">
-
<stop offset="0" stop-color="#B9BCBD"/>
-
<stop offset="0.3394" stop-color="#E0E1E2"/>
-
<stop offset="1" stop-color="#FFFFFF"/>
-
</linearGradient>
-
<path d="M15,29c-7.721,0-14-6.28-14-14s6.279-14,14-14,14,6.28,14,14-6.28,14-14,14z" fill="url(#SVGID_1_)"/>
-
<path d="M15,1c-7.721,0-14,6.28-14,14s6.279,14,14,14c-7.169,0-13-5.83-13-13s5.831-13,13-13,13,5.832,13,13-5.831,13-13,13c7.721,0,14-6.28,14-14s-6.28-14-14-14z" fill-opacity="0.1" stroke-opacity="0.1"/>
-
<path d="M15,2c7.551,0,13.71,6.013,13.98,13.5,0-0.17,0.02-0.33,0.02-0.5,0-7.72-6.279-14-14-14s-14,6.28-14,14c0,0.169,0.02,0.333,0.025,0.5,0.266-7.487,6.424-13.5,13.98-13.5z" fill-opacity="0.1" stroke-opacity="0.1"/>
-
<path d="M15,24c-4.963,0-9-4.038-9-9s4.037-9,9-9,9,4.038,9,9-4.04,9-9,9z" fill-opacity="0.4" stroke-opacity="0.4"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="7.125" y2="23.25">
-
<stop offset="0" stop-color="#A0F800"/>
-
<stop offset="1" stop-color="#319E00"/>
-
</linearGradient>
-
<path d="M15,23c-4.411,0-8-3.59-8-8s3.589-8,8-8,8,3.59,8,8-3.59,8-8,8z" fill="url(#SVGID_2_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="7" y2="23">
-
<stop offset="0" stop-color="#D6FF8C"/>
-
<stop offset="0.3394" stop-color="#7AD900"/>
-
<stop offset="0.6182" stop-color="#5BC000"/>
-
<stop offset="1" stop-color="#96DB00"/>
-
</linearGradient>
-
<path d="M15,8c3.859,0,7,3.141,7,7s-3.141,7-7,7-7-3.141-7-7,3.14-7,7-7m0-1c-4.411,0-8,3.59-8,8s3.589,8,8,8,8-3.59,8-8-3.59-8-8-8z" fill="url(#SVGID_3_)"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_selected_highlight.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_selected_highlight.svg Thu May 27 13:10:59 2010 +0300
@@ -1,57 +1,32 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<path d="M15,30c-8.271,0-15-6.73-15-15s6.729-15,15-15,15,6.729,15,15-6.73,15-15,15z" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1.219" y2="29.44">
-
<stop offset="0" stop-color="#4EDEFF"/>
-
<stop offset="1" stop-color="#16A0D4"/>
-
</linearGradient>
-
<path d="M15,29c-7.72,0-14-6.28-14-14s6.28-14,14-14,14,6.28,14,14-6.28,14-14,14z" fill="url(#SVGID_1_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="3.188" y2="27.38">
-
<stop offset="0" stop-color="#E0E1E2"/>
-
<stop offset="1" stop-color="#FFFFFF"/>
-
</linearGradient>
-
<path d="M15,27c-6.617,0-12-5.38-12-12s5.383-12,12-12,12,5.383,12,12-5.38,12-12,12z" fill="url(#SVGID_2_)"/>
-
<path d="M15,4c6.448,0,11.71,5.115,11.98,11.5,0-0.17,0.02-0.33,0.02-0.5,0-6.617-5.383-12-12-12s-12,5.383-12,12c0,0.169,0.019,0.333,0.025,0.5,0.265-6.385,5.527-11.5,11.98-11.5z" fill-opacity="0.2" stroke-opacity="0.2"/>
-
<path d="M15,24c-4.963,0-9-4.038-9-9s4.037-9,9-9,9,4.038,9,9-4.04,9-9,9z" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="7.125" y2="23.25">
-
<stop offset="0" stop-color="#A0F800"/>
-
<stop offset="1" stop-color="#319E00"/>
-
</linearGradient>
-
<path d="M15,23c-4.411,0-8-3.59-8-8s3.589-8,8-8,8,3.59,8,8-3.59,8-8,8z" fill="url(#SVGID_3_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="7" y2="23">
-
<stop offset="0" stop-color="#D6FF8C"/>
-
<stop offset="0.3394" stop-color="#7AD900"/>
-
<stop offset="0.6182" stop-color="#5BC000"/>
-
<stop offset="1" stop-color="#96DB00"/>
-
</linearGradient>
-
<path d="M15,8c3.859,0,7,3.141,7,7s-3.141,7-7,7-7-3.141-7-7,3.14-7,7-7m0-1c-4.411,0-8,3.59-8,8s3.589,8,8,8,8-3.59,8-8-3.59-8-8-8z" fill="url(#SVGID_4_)"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_unselected.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_unselected.svg Thu May 27 13:10:59 2010 +0300
@@ -1,27 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill="none" fill-opacity="0.5" height="30" stroke-opacity="0.5" width="30"/>
-
<path d="M15,30c-8.271,0-15-6.73-15-15s6.729-15,15-15,15,6.729,15,15-6.73,15-15,15z" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<path d="M15,29c-7.721,0-14-6.28-14-14s6.279-14,14-14,14,6.28,14,14-6.28,14-14,14z" fill="url(#SVGID_1_)"/>
-
<path d="M15,1c-7.721,0-14,6.28-14,14s6.279,14,14,14c-7.169,0-13-5.83-13-13s5.831-13,13-13,13,5.832,13,13-5.831,13-13,13c7.721,0,14-6.28,14-14s-6.28-14-14-14z" fill-opacity="0.1" stroke-opacity="0.1"/>
-
<path d="M15,2c7.551,0,13.71,6.013,13.98,13.5,0-0.17,0.02-0.33,0.02-0.5,0-7.72-6.279-14-14-14s-14,6.28-14,14c0,0.169,0.02,0.333,0.025,0.5,0.266-7.487,6.424-13.5,13.98-13.5z" fill-opacity="0.1" stroke-opacity="0.1"/>
-
<defs>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1.219" y2="29.44">
-
<stop offset="0" stop-color="#E0E1E2"/>
-
<stop offset="1" stop-color="#FFFFFF"/>
-
</linearGradient>
-
</defs>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_unselected_highlight.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_unselected_highlight.svg Thu May 27 13:10:59 2010 +0300
@@ -1,33 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<path d="M15,30c-8.271,0-15-6.73-15-15s6.729-15,15-15,15,6.729,15,15-6.73,15-15,15z" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1.219" y2="29.44">
-
<stop offset="0" stop-color="#4EDEFF"/>
-
<stop offset="1" stop-color="#16A0D4"/>
-
</linearGradient>
-
<path d="M15,29c-7.72,0-14-6.28-14-14s6.28-14,14-14,14,6.28,14,14-6.28,14-14,14z" fill="url(#SVGID_1_)"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="3.188" y2="27.38">
-
<stop offset="0" stop-color="#E0E1E2"/>
-
<stop offset="1" stop-color="#FFFFFF"/>
-
</linearGradient>
-
<path d="M15,27c-6.617,0-12-5.38-12-12s5.383-12,12-12,12,5.383,12,12-5.38,12-12,12z" fill="url(#SVGID_2_)"/>
-
<path d="M15,3c-6.617,0-12,5.383-12,12,0,6.238,4.785,11.37,10.88,11.94-5.543-0.56-9.88-5.25-9.88-10.94,0-6.065,4.935-11,11-11s11,4.935,11,11c0,5.687-4.337,10.38-9.877,10.94,6.1-0.57,10.88-5.7,10.88-11.94,0-6.617-5.38-12-12-12z" fill-opacity="0.1" stroke-opacity="0.1"/>
-
<path d="M15,4c6.448,0,11.71,5.115,11.98,11.5,0-0.17,0.02-0.33,0.02-0.5,0-6.617-5.383-12-12-12s-12,5.383-12,12c0,0.169,0.019,0.333,0.025,0.5,0.265-6.385,5.527-11.5,11.98-11.5z" fill-opacity="0.1" stroke-opacity="0.1"/>
-
<rect fill="none" height="30" width="30"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reboot.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reboot.svg Thu May 27 13:10:59 2010 +0300
@@ -1,31 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14C29,22.719,22.719,29,15,29L15,29 z" opacity="0.6"/>
+<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14C29,22.719,22.719,29,15,29L15,29 z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#FF7236"/>
- <stop offset="0.7939" style="stop-color:#BA1212"/>
- <stop offset="1" style="stop-color:#E8522A"/>
+<stop offset="0" style="stop-color:#FF7236"/>
+<stop offset="0.7939" style="stop-color:#BA1212"/>
+<stop offset="1" style="stop-color:#E8522A"/>
</linearGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M20.632,8.973c-0.419-0.315-0.917-0.481-1.439-0.481c-0.691,0-1.345,0.313-1.796,0.83V7.396 C17.396,6.074,16.321,5,15,5s-2.396,1.074-2.396,2.396V9.32c-0.452-0.516-1.105-0.83-1.796-0.83c-0.522,0-1.021,0.166-1.438,0.48 c-2.385,1.79-3.752,4.525-3.752,7.505c0,5.173,4.209,9.382,9.383,9.382s9.383-4.209,9.383-9.382 C24.383,13.497,23.016,10.762,20.632,8.973z M15,21.065c-2.529,0-4.587-2.059-4.587-4.59c0-1.457,0.669-2.796,1.834-3.672 c0.132-0.099,0.25-0.209,0.356-0.329v2.255c0,1.322,1.075,2.398,2.396,2.398s2.396-1.076,2.396-2.398v-2.254 c0.106,0.119,0.225,0.229,0.355,0.327c1.167,0.878,1.836,2.217,1.836,3.673C19.588,19.007,17.529,21.065,15,21.065z" opacity="0.2"/>
+<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M20.632,8.973c-0.419-0.315-0.917-0.481-1.439-0.481c-0.691,0-1.345,0.313-1.796,0.83V7.396 C17.396,6.074,16.321,5,15,5s-2.396,1.074-2.396,2.396V9.32c-0.452-0.516-1.105-0.83-1.796-0.83c-0.522,0-1.021,0.166-1.438,0.48 c-2.385,1.79-3.752,4.525-3.752,7.505c0,5.173,4.209,9.382,9.383,9.382s9.383-4.209,9.383-9.382 C24.383,13.497,23.016,10.762,20.632,8.973z M15,21.065c-2.529,0-4.587-2.059-4.587-4.59c0-1.457,0.669-2.796,1.834-3.672 c0.132-0.099,0.25-0.209,0.356-0.329v2.255c0,1.322,1.075,2.398,2.396,2.398s2.396-1.076,2.396-2.398v-2.254 c0.106,0.119,0.225,0.229,0.355,0.327c1.167,0.878,1.836,2.217,1.836,3.673C19.588,19.007,17.529,21.065,15,21.065z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="8.8188" y2="38.4606">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.5273" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CAD1D4"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5273" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CAD1D4"/>
</linearGradient>
<path d="M20.03,9.343c-0.616-0.464-1.492-0.34-1.955,0.277c-0.463,0.616-0.341,1.494,0.278,1.955 c1.42,1.068,2.234,2.698,2.234,4.472c0,3.083-2.507,5.59-5.588,5.59s-5.587-2.507-5.587-5.59c0-1.773,0.814-3.404,2.234-4.473 c0.618-0.463,0.74-1.338,0.277-1.955c-0.463-0.616-1.339-0.74-1.955-0.277c-2.131,1.6-3.353,4.045-3.353,6.705 c0,4.623,3.762,8.382,8.383,8.382s8.383-3.759,8.383-8.382C23.383,13.387,22.161,10.942,20.03,9.343z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="5.4111" y2="24.9469">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.5273" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#CAD1D4"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5273" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CAD1D4"/>
</linearGradient>
<path d="M15,15.699c0.771,0,1.396-0.626,1.396-1.398V6.967c0-0.772-0.625-1.396-1.396-1.396 s-1.396,0.623-1.396,1.396v7.334C13.604,15.073,14.229,15.699,15,15.699z" fill="url(#SVGID_3_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_received.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_received.svg Thu May 27 13:10:59 2010 +0300
@@ -1,22 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<polygon opacity="0.6" points="2.865,15 10,15 10,1 20,1 20,15 27.135,15 15,29.563 "/>
+<polygon fill-opacity="0.6" points="2.865,15 10,15 10,1 20,1 20,15 27.135,15 15,29.563 " stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="1.8545" y2="28.0011">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="0.7576" style="stop-color:#4CB400"/>
- <stop offset="1" style="stop-color:#89CC6A"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="0.7576" style="stop-color:#4CB400"/>
+<stop offset="1" style="stop-color:#89CC6A"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="19,16 19,2 11,2 11,16 5,16 15,28 25,16 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="2.8687" y2="26.4384">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="7.135,17 12,17 12,3 18,3 18,17 22.865,17 15,26.438 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_record.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_record.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1s14,6.28,14,14S22.72,29,15,29L15,29z" fill-opacity="0.6"/>
+<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
+<path d="M15,3.182c6.98,0,12.659,5.505,12.97,12.409C27.979,15.394,28,15.199,28,15 c0-7.18-5.82-13-13-13S2,7.82,2,15c0,0.199,0.021,0.394,0.03,0.591C2.342,8.687,8.02,3.182,15,3.182z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<rect fill="none" height="30" width="30"/>
+<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#DE5229"/>
- <stop offset="1" style="stop-color:#D81A00"/>
+<stop offset="0" style="stop-color:#DE5229"/>
+<stop offset="1" style="stop-color:#D81A00"/>
</linearGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3.182c6.98,0,12.659,5.505,12.97,12.409C27.979,15.394,28,15.199,28,15 c0-7.18-5.82-13-13-13S2,7.82,2,15c0,0.199,0.021,0.394,0.03,0.591C2.342,8.687,8.02,3.182,15,3.182z" fill="#FFFFFF" opacity="0.4"/>
-<rect fill="none" height="30" width="30"/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_refresh.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_refresh.svg Thu May 27 13:10:59 2010 +0300
@@ -1,26 +1,24 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M27.799,26.385l-4.348-4.349C25.102,20.063,26,17.6,26,15c0-5.405-4.033-10.077-9.382-10.869l-1.033-0.153 l0.183-1.766L2.201,3.615l4.348,4.348C4.898,9.937,4,12.4,4,15c0,5.405,4.033,10.077,9.382,10.869l1.033,0.153l-0.183,1.766 L27.799,26.385z M14.004,20.909C11.104,20.421,9,17.936,9,15c0-1.251,0.395-2.45,1.125-3.462l4.239,4.241l0.708-6.845l0.925,0.156 C18.896,9.579,21,12.063,21,15c0,1.256-0.392,2.458-1.117,3.469l-4.247-4.247l-0.708,6.844L14.004,20.909z" opacity="0.6"/>
+<path d="M27.799,26.385l-4.348-4.349C25.102,20.063,26,17.6,26,15c0-5.405-4.033-10.077-9.382-10.869l-1.033-0.153 l0.183-1.766L2.201,3.615l4.348,4.348C4.898,9.937,4,12.4,4,15c0,5.405,4.033,10.077,9.382,10.869l1.033,0.153l-0.183,1.766 L27.799,26.385z M14.004,20.909C11.104,20.421,9,17.936,9,15c0-1.251,0.395-2.45,1.125-3.462l4.239,4.241l0.708-6.845l0.925,0.156 C18.896,9.579,21,12.063,21,15c0,1.256-0.392,2.458-1.117,3.469l-4.247-4.247l-0.708,6.844L14.004,20.909z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.0454" x2="24.9205" y1="5.4551" y2="26.3301">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<path d="M8,15c0-1.931,0.799-3.666,2.068-4.932l3.518,3.518l1.061-10.253L4.394,4.394l3.538,3.538 C6.122,9.741,5,12.239,5,15c0,5.021,3.705,9.166,8.528,9.88l0.309-2.984C10.53,21.338,8,18.462,8,15z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5.4556" x2="26.3306" y1="4.0459" y2="24.921">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<path d="M16.414,16.414l-1.061,10.253l10.253-1.061l-3.538-3.539C23.878,20.259,25,17.762,25,15 c0-5.021-3.705-9.166-8.528-9.88l-0.309,2.984C19.47,8.661,22,11.538,22,15c0,1.93-0.793,3.673-2.061,4.939L16.414,16.414z" fill="url(#SVGID_2_)"/>
-<polygon fill="#FFFFFF" opacity="0.4" points="14.507,4.681 14.646,3.333 4.394,4.394 5.602,5.602 "/>
-<path d="M8.033,15.676C8.014,15.893,8,16.111,8,16.333c0,3.414,2.463,6.254,5.702,6.866l0.135-1.304 C10.748,21.375,8.338,18.83,8.033,15.676z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M19.939,21.272C21.207,20.006,22,18.263,22,16.333c0-0.228-0.012-0.452-0.033-0.674 c-0.158,1.665-0.905,3.16-2.027,4.28l-3.525-3.525l-0.123,1.193L19.939,21.272z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M7.297,8.63C5.863,10.359,5,12.578,5,15c0,0.235,0.016,0.467,0.032,0.698 c0.158-2.506,1.23-4.765,2.899-6.434L7.297,8.63z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M22.703,22.702c-0.201,0.243-0.412,0.476-0.635,0.698l2.33,2.331l1.208-0.125L22.703,22.702z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M16.472,6.453c4.597,0.681,8.171,4.479,8.496,9.182C24.981,15.424,25,15.214,25,15 c0-5.021-3.705-9.166-8.528-9.88l-0.135,1.305L16.472,6.453z" fill="#FFFFFF" opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="14.507,4.681 14.646,3.333 4.394,4.394 5.602,5.602 " stroke-opacity="0.4"/>
+<path d="M8.033,15.676C8.014,15.893,8,16.111,8,16.333c0,3.414,2.463,6.254,5.702,6.866l0.135-1.304 C10.748,21.375,8.338,18.83,8.033,15.676z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M19.939,21.272C21.207,20.006,22,18.263,22,16.333c0-0.228-0.012-0.452-0.033-0.674 c-0.158,1.665-0.905,3.16-2.027,4.28l-3.525-3.525l-0.123,1.193L19.939,21.272z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7.297,8.63C5.863,10.359,5,12.578,5,15c0,0.235,0.016,0.467,0.032,0.698 c0.158-2.506,1.23-4.765,2.899-6.434L7.297,8.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M22.703,22.702c-0.201,0.243-0.412,0.476-0.635,0.698l2.33,2.331l1.208-0.125L22.703,22.702z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M16.472,6.453c4.597,0.681,8.171,4.479,8.496,9.182C24.981,15.424,25,15.214,25,15 c0-5.021-3.705-9.166-8.528-9.88l-0.135,1.305L16.472,6.453z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reminder.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reminder.svg Thu May 27 13:10:59 2010 +0300
@@ -1,43 +1,41 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M4.97,9.928c1.073-1.074,2.104-1.602,3.937-1.109l3.82-3.82c2.777-2.777,6.931-3.346,10.283-1.727 c1.171-0.836,2.809-0.737,3.858,0.313c1.051,1.051,1.149,2.688,0.313,3.859c1.619,3.353,1.05,7.506-1.728,10.283l-3.819,3.82 c0.493,1.833-0.035,2.863-1.109,3.937l-2.143,2.143l-4.456-4.456c-1.745,0.771-3.913,0.33-5.443-1.201 c-1.53-1.529-1.972-3.697-1.2-5.442L2.827,12.07L4.97,9.928z" fill-opacity="0.6"/>
<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1585.0613 -656.5991)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1608.3745" x2="-1605.019" y1="-670.4932" y2="-670.4932">
- <stop offset="0" style="stop-color:#FFB533"/>
- <stop offset="0.24" style="stop-color:#FFE692"/>
- <stop offset="0.75" style="stop-color:#ED8C0D"/>
- <stop offset="1" style="stop-color:#FFB81F"/>
+<stop offset="0" style="stop-color:#FFB533"/>
+<stop offset="0.24" style="stop-color:#FFE692"/>
+<stop offset="0.75" style="stop-color:#ED8C0D"/>
+<stop offset="1" style="stop-color:#FFB81F"/>
</linearGradient>
<path d="M22.626,4.998l0.707-0.707c0.777-0.777,2.051-0.777,2.828,0c0.778,0.779,0.777,2.051,0,2.829 l-0.707,0.707L22.626,4.998z" fill="url(#SVGID_1_)"/>
-<path d="M23.333,4.291c0.205-0.205,0.445-0.352,0.702-0.449c0.502,0.33,0.978,0.716,1.419,1.156 c0.441,0.441,0.826,0.918,1.157,1.42c-0.098,0.256-0.245,0.497-0.45,0.702l-0.707,0.707l-2.828-2.829L23.333,4.291z" fill="#873900" opacity="0.2"/>
+<path d="M23.333,4.291c0.205-0.205,0.445-0.352,0.702-0.449c0.502,0.33,0.978,0.716,1.419,1.156 c0.441,0.441,0.826,0.918,1.157,1.42c-0.098,0.256-0.245,0.497-0.45,0.702l-0.707,0.707l-2.828-2.829L23.333,4.291z" fill="#873900" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1585.0613 -656.5991)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1613.5698" x2="-1600.1477" y1="-661.9927" y2="-661.9927">
- <stop offset="0" style="stop-color:#FFB533"/>
- <stop offset="0.24" style="stop-color:#FFE692"/>
- <stop offset="0.75" style="stop-color:#ED8C0D"/>
- <stop offset="1" style="stop-color:#FFB81F"/>
+<stop offset="0" style="stop-color:#FFB533"/>
+<stop offset="0.24" style="stop-color:#FFE692"/>
+<stop offset="0.75" style="stop-color:#ED8C0D"/>
+<stop offset="1" style="stop-color:#FFB81F"/>
</linearGradient>
<path d="M19.09,22.676l5.657-5.656c3.119-3.119,3.119-8.195,0-11.314s-8.194-3.119-11.313,0l-5.657,5.658 L19.09,22.676z" fill="url(#SVGID_2_)"/>
-<path d="M24.747,5.705c3.119,3.119,3.119,8.195,0,11.314l-0.707,0.707 c3.119-3.119,3.119-8.194,0-11.313s-8.194-3.119-11.313,0l0.707-0.708C16.553,2.586,21.628,2.586,24.747,5.705z" fill="#FFFFFF" opacity="0.4"/>
+<path d="M24.747,5.705c3.119,3.119,3.119,8.195,0,11.314l-0.707,0.707 c3.119-3.119,3.119-8.194,0-11.313s-8.194-3.119-11.313,0l0.707-0.708C16.553,2.586,21.628,2.586,24.747,5.705z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1585.0613 -656.5991)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1615.3008" x2="-1598.524" y1="-653.4927" y2="-653.4927">
- <stop offset="0" style="stop-color:#FFB533"/>
- <stop offset="0.24" style="stop-color:#FFE692"/>
- <stop offset="0.75" style="stop-color:#ED8C0D"/>
- <stop offset="1" style="stop-color:#FFB81F"/>
+<stop offset="0" style="stop-color:#FFB533"/>
+<stop offset="0.24" style="stop-color:#FFE692"/>
+<stop offset="0.75" style="stop-color:#ED8C0D"/>
+<stop offset="1" style="stop-color:#FFB81F"/>
</linearGradient>
<path d="M9.19,9.949l11.314,11.313c0.685,1.913,0.191,2.637-0.687,3.515l-1.436,1.436L4.241,12.07 l1.436-1.436C6.555,9.756,7.278,9.264,9.19,9.949z" fill="url(#SVGID_3_)"/>
-<rect fill="#873900" height="1" opacity="0.2" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 15.1665 36.7847)" width="16" x="7.201" y="14.752"/>
-<rect fill="#753200" height="1" opacity="0.1" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 6.6295 40.3212)" width="19.999" x="1.666" y="18.288"/>
+<rect fill="#873900" fill-opacity="0.2" height="1" stroke-opacity="0.2" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 15.1665 36.7847)" width="16" x="7.201" y="14.752"/>
+<rect fill="#753200" fill-opacity="0.1" height="1" stroke-opacity="0.1" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 6.6295 40.3212)" width="19.999" x="1.666" y="18.288"/>
<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1585.0613 -656.5991)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1606.6431" x2="-1606.6431" y1="-647.9927" y2="-650.8915">
- <stop offset="0" style="stop-color:#F56700"/>
- <stop offset="1" style="stop-color:#EF2D00"/>
+<stop offset="0" style="stop-color:#F56700"/>
+<stop offset="1" style="stop-color:#EF2D00"/>
</linearGradient>
<path d="M14.1,21.929c-1.396,1.001-3.485,0.757-4.909-0.667c-1.423-1.424-1.667-3.514-0.666-4.908 L14.1,21.929z" fill="url(#SVGID_4_)"/>
-<path d="M8.071,17.314c0.101-0.342,0.243-0.668,0.453-0.961l5.575,5.575 c-0.293,0.21-0.62,0.353-0.961,0.453L8.071,17.314z" fill="#753200" opacity="0.4"/>
-<path d="M20.818,22.99L7.462,9.635C7.918,9.6,8.47,9.689,9.19,9.949l11.314,11.313 C20.763,21.983,20.853,22.535,20.818,22.99z" fill="#FFF6C9" opacity="0.5"/>
+<path d="M8.071,17.314c0.101-0.342,0.243-0.668,0.453-0.961l5.575,5.575 c-0.293,0.21-0.62,0.353-0.961,0.453L8.071,17.314z" fill="#753200" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M20.818,22.99L7.462,9.635C7.918,9.6,8.47,9.689,9.19,9.949l11.314,11.313 C20.763,21.983,20.853,22.535,20.818,22.99z" fill="#FFF6C9" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="30" width="30" x="0.453"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_repeat.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_repeat.svg Thu May 27 13:10:59 2010 +0300
@@ -1,20 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M15.05,28.784c-3.378,0-6.554-1.315-8.942-3.704c-4.692-4.693-4.918-12.188-0.68-17.151L0.505,3.006 L15.76,1.428l-1.578,15.255l-4.847-4.847c-0.931,1.231-1.434,2.727-1.434,4.302c0,1.913,0.743,3.709,2.092,5.058 c1.348,1.348,3.145,2.091,5.058,2.091s3.709-0.743,5.058-2.091c2.788-2.789,2.788-7.327,0-10.115l-0.707-0.707l3.884-3.887 l0.707,0.708c4.931,4.931,4.931,12.955,0,17.886C21.604,27.469,18.428,28.784,15.05,28.784L15.05,28.784z" fill-opacity="0.6"/>
+<path d="M23.285,7.901l-2.47,2.472c3.178,3.178,3.178,8.351,0,11.529c-3.179,3.178-8.352,3.178-11.529,0 c-3.18-3.179-3.18-8.352,0-11.529l4.117,4.117l1.235-11.941L2.697,3.784l4.117,4.117c-4.549,4.55-4.549,11.922,0,16.472 c4.549,4.548,11.922,4.548,16.471,0C27.834,19.823,27.834,12.451,23.285,7.901z" fill="url(#SVGID_1_)"/>
+<path d="M5.905,8.935c-1.874,2.376-2.694,5.308-2.456,8.174c0.22-2.649,1.338-5.237,3.365-7.266 L5.905,8.935z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M23.285,9.843c2.027,2.028,3.146,4.616,3.366,7.266c0.272-3.296-0.844-6.686-3.366-9.207 l-2.47,2.472c0.331,0.331,0.62,0.689,0.883,1.059L23.285,9.843z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M6.966,17.108c-0.284,2.397,0.483,4.898,2.32,6.735c3.178,3.178,8.351,3.178,11.529,0 c1.836-1.837,2.604-4.338,2.319-6.735c-0.21,1.753-0.978,3.452-2.319,4.794c-3.179,3.178-8.352,3.178-11.529,0 C7.943,20.561,7.175,18.861,6.966,17.108z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="14.436,4.511 14.639,2.549 2.697,3.784 4.456,5.544 " stroke-opacity="0.4"/>
+<rect fill="none" height="30" width="30"/>
+<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="2.6978" x2="23.286" y1="3.7852" y2="24.3734">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
-<path d="M23.285,7.901l-2.47,2.472c3.178,3.178,3.178,8.351,0,11.529c-3.179,3.178-8.352,3.178-11.529,0 c-3.18-3.179-3.18-8.352,0-11.529l4.117,4.117l1.235-11.941L2.697,3.784l4.117,4.117c-4.549,4.55-4.549,11.922,0,16.472 c4.549,4.548,11.922,4.548,16.471,0C27.834,19.823,27.834,12.451,23.285,7.901z" fill="url(#SVGID_1_)"/>
-<path d="M5.905,8.935c-1.874,2.376-2.694,5.308-2.456,8.174c0.22-2.649,1.338-5.237,3.365-7.266 L5.905,8.935z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M23.285,9.843c2.027,2.028,3.146,4.616,3.366,7.266c0.272-3.296-0.844-6.686-3.366-9.207 l-2.47,2.472c0.331,0.331,0.62,0.689,0.883,1.059L23.285,9.843z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M6.966,17.108c-0.284,2.397,0.483,4.898,2.32,6.735c3.178,3.178,8.351,3.178,11.529,0 c1.836-1.837,2.604-4.338,2.319-6.735c-0.21,1.753-0.978,3.452-2.319,4.794c-3.179,3.178-8.352,3.178-11.529,0 C7.943,20.561,7.175,18.861,6.966,17.108z" fill="#FFFFFF" opacity="0.4"/>
-<polygon fill="#FFFFFF" opacity="0.4" points="14.436,4.511 14.639,2.549 2.697,3.784 4.456,5.544 "/>
-<rect fill="none" height="30" width="30"/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_repeat_exception.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_repeat_exception.svg Thu May 27 13:10:59 2010 +0300
@@ -1,38 +1,30 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M15.05,28.784c-3.378,0-6.554-1.315-8.942-3.704c-4.692-4.693-4.918-12.188-0.68-17.151L0.505,3.006 L15.76,1.428l-1.578,15.255l-4.847-4.847c-0.931,1.231-1.434,2.727-1.434,4.302c0,1.913,0.743,3.709,2.092,5.058 c1.348,1.348,3.145,2.091,5.058,2.091s3.709-0.743,5.058-2.091c2.788-2.789,2.788-7.327,0-10.115l-0.707-0.707l3.884-3.887 l0.707,0.708c4.931,4.931,4.931,12.955,0,17.886C21.604,27.469,18.428,28.784,15.05,28.784L15.05,28.784z" fill-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="2.6978" x2="23.286" y1="3.7852" y2="24.3734">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<path d="M23.285,7.901l-2.47,2.472c3.178,3.178,3.178,8.351,0,11.529c-3.179,3.178-8.352,3.178-11.529,0 c-3.18-3.179-3.18-8.352,0-11.529l4.117,4.117l1.235-11.941L2.697,3.784l4.117,4.117c-4.549,4.55-4.549,11.922,0,16.472 c4.549,4.548,11.922,4.548,16.471,0C27.834,19.823,27.834,12.451,23.285,7.901z" fill="url(#SVGID_1_)"/>
-<path d="M5.905,8.935c-1.874,2.376-2.694,5.308-2.456,8.174c0.22-2.649,1.338-5.237,3.365-7.266 L5.905,8.935z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M23.285,9.843c2.027,2.028,3.146,4.616,3.366,7.266c0.272-3.296-0.844-6.686-3.366-9.207 l-2.47,2.472c0.331,0.331,0.62,0.689,0.883,1.059L23.285,9.843z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M6.966,17.108c-0.284,2.397,0.483,4.898,2.32,6.735c3.178,3.178,8.351,3.178,11.529,0 c1.836-1.837,2.604-4.338,2.319-6.735c-0.21,1.753-0.978,3.452-2.319,4.794c-3.179,3.178-8.352,3.178-11.529,0 C7.943,20.561,7.175,18.861,6.966,17.108z" fill="#FFFFFF" opacity="0.4"/>
-<polygon fill="#FFFFFF" opacity="0.4" points="14.436,4.511 14.639,2.549 2.697,3.784 4.456,5.544 "/>
+<path d="M5.905,8.935c-1.874,2.376-2.694,5.308-2.456,8.174c0.22-2.649,1.338-5.237,3.365-7.266 L5.905,8.935z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M23.285,9.843c2.027,2.028,3.146,4.616,3.366,7.266c0.272-3.296-0.844-6.686-3.366-9.207 l-2.47,2.472c0.331,0.331,0.62,0.689,0.883,1.059L23.285,9.843z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M6.966,17.108c-0.284,2.397,0.483,4.898,2.32,6.735c3.178,3.178,8.351,3.178,11.529,0 c1.836-1.837,2.604-4.338,2.319-6.735c-0.21,1.753-0.978,3.452-2.319,4.794c-3.179,3.178-8.352,3.178-11.529,0 C7.943,20.561,7.175,18.861,6.966,17.108z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="14.436,4.511 14.639,2.549 2.697,3.784 4.456,5.544 " stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
<g>
-<rect height="34.27" opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
+<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
<defs>
-
<linearGradient gradientTransform="matrix(0.8824 0 0 -0.8824 -284.8232 -348.3516)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="339.8" x2="339.8" y1="-397.3" y2="-425.3">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.2606" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
-
</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reply.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reply.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<polygon fill-opacity="0.6" points="0.438,15 15,2.865 15,10 29,10 29,20 15,20 15,27.135 "/>
+<polygon fill="url(#SVGID_1_)" points="14,19 28,19 28,11 14,11 14,5 2,15 14,25 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="14,6.135 14,5 2,15 2.681,15.567 " stroke-opacity="0.5"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="1.135" stroke-opacity="0.5" width="14" x="14" y="11"/>
+<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="4.8848" y2="25.2603">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="14,19 28,19 28,11 14,11 14,5 2,15 14,25 "/>
-<polygon fill="#FFFFFF" opacity="0.5" points="14,6.135 14,5 2,15 2.681,15.567 "/>
-<rect fill="#FFFFFF" height="1.135" opacity="0.5" width="14" x="14" y="11"/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reply_all.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reply_all.svg Thu May 27 13:10:59 2010 +0300
@@ -1,37 +1,22 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill="none" height="30" width="30"/>
-
<rect fill="none" height="30" width="30"/>
-
<polygon fill-opacity="0.6" points="17.81,7.626,17.81,0.938,4.161,12.31,6.692,14.42,1.348,18.88,15,30.25,15,23.56,28.12,23.56,28.12,15.13,28.12,14.19,28.12,7.626" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="16.41" x2="16.41" y1="2.87" y2="14.34">
-
<stop offset="0" stop-color="#86D100"/>
-
<stop offset="1" stop-color="#2F9600"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_1)" points="15,7.5,15,14.19,27.19,14.19,27.19,8.564,16.88,8.564,16.88,2.939,5.625,12.31,7.424,13.81"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="15" x2="15" y1="9.39" y2="28.5">
-
<stop offset="0" stop-color="#A0F800"/>
-
<stop offset="1" stop-color="#319E00"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_2)" points="14.06,22.63,27.19,22.63,27.19,15.13,14.06,15.13,14.06,9.501,2.813,18.88,14.06,28.25"/>
-
<polygon fill="#FFFFFF" fill-opacity="0.5" points="14.06,10.56,14.06,9.501,2.813,18.88,3.451,19.41" stroke-opacity="0.5"/>
-
<rect fill="#FFFFFF" fill-opacity="0.5" height="1.064" stroke-opacity="0.5" width="13.12" x="14.06" y="15.13"/>
-
<rect fill-opacity="0.2" height="0.938" stroke-opacity="0.2" width="12.19" x="15" y="13.25"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_rgb.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_rgb.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M15,15c-3.859,0-7-3.141-7-7s3.141-7,7-7c3.859,0,7,3.141,7,7S18.859,15,15,15L15,15z" fill-opacity="0.6"/>
<path d="M15,14c-3.309,0-6-2.691-6-6s2.691-6,6-6c3.31,0,6,2.691,6,6S18.311,14,15,14L15,14z" fill="#FF0000"/>
@@ -14,4 +12,4 @@
<rect fill="none" height="30" width="30" x="0"/>
<rect fill="none" height="30" width="30" x="0"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_secure.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_secure.svg Thu May 27 13:10:59 2010 +0300
@@ -1,45 +1,43 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M25,13h-1v-3c0-4.963-4.037-9-9-9c-4.963,0-9,4.037-9,9v3H5c-1.654,0-3,1.346-3,3v10 c0,1.654,1.346,3,3,3h20c1.654,0,3-1.346,3-3V16C28,14.346,26.654,13,25,13z M12,10c0-1.654,1.346-3,3-3c1.654,0,3,1.346,3,3v3h-6 V10z" fill-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.0005" x2="23" y1="14" y2="14">
- <stop offset="0" style="stop-color:#B4B4B4"/>
- <stop offset="0.2083" style="stop-color:#F0F0F0"/>
- <stop offset="0.526" style="stop-color:#969696"/>
- <stop offset="0.8061" style="stop-color:#A1A1A1"/>
- <stop offset="1" style="stop-color:#BEBEBE"/>
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="0.2083" style="stop-color:#F0F0F0"/>
+<stop offset="0.526" style="stop-color:#969696"/>
+<stop offset="0.8061" style="stop-color:#A1A1A1"/>
+<stop offset="1" style="stop-color:#BEBEBE"/>
</linearGradient>
<path d="M15,6c2.207,0,4,1.794,4,4v8c0,2.206-1.793,4-4,4c-2.206,0-4-1.794-4-4v-8C11,7.794,12.794,6,15,6 M15,2c-4.4,0-8,3.6-8,8v8c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8v-8C23,5.6,19.4,2,15,2L15,2z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7.0005" x2="23" y1="9" y2="9">
- <stop offset="0" style="stop-color:#8C8C8C"/>
- <stop offset="0.2083" style="stop-color:#BDBDBD"/>
- <stop offset="0.526" style="stop-color:#707070"/>
- <stop offset="1" style="stop-color:#8F8F8F"/>
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="0.2083" style="stop-color:#BDBDBD"/>
+<stop offset="0.526" style="stop-color:#707070"/>
+<stop offset="1" style="stop-color:#8F8F8F"/>
</linearGradient>
<path d="M11,16v-6c0-2.206,1.794-4,4-4c2.207,0,4,1.794,4,4v6h4v-6c0-4.4-3.6-8-8-8c-4.4,0-8,3.6-8,8v6H11z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.0005" x2="22" y1="9.5" y2="9.5">
- <stop offset="0" style="stop-color:#B4B4B4"/>
- <stop offset="0.2083" style="stop-color:#F0F0F0"/>
- <stop offset="0.526" style="stop-color:#969696"/>
- <stop offset="0.8061" style="stop-color:#A1A1A1"/>
- <stop offset="1" style="stop-color:#BEBEBE"/>
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="0.2083" style="stop-color:#F0F0F0"/>
+<stop offset="0.526" style="stop-color:#969696"/>
+<stop offset="0.8061" style="stop-color:#A1A1A1"/>
+<stop offset="1" style="stop-color:#BEBEBE"/>
</linearGradient>
<path d="M10,16v-6c0-2.757,2.243-5,5-5c2.757,0,5,2.243,5,5v6h2v-6c0-3.859-3.141-7-7-7c-3.859,0-7,3.141-7,7 v6H10z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="3.0005" x2="27" y1="21" y2="21">
- <stop offset="0" style="stop-color:#FFB533"/>
- <stop offset="0.24" style="stop-color:#FFE692"/>
- <stop offset="0.75" style="stop-color:#ED8C0D"/>
- <stop offset="1" style="stop-color:#FFB81F"/>
+<stop offset="0" style="stop-color:#FFB533"/>
+<stop offset="0.24" style="stop-color:#FFE692"/>
+<stop offset="0.75" style="stop-color:#ED8C0D"/>
+<stop offset="1" style="stop-color:#FFB81F"/>
</linearGradient>
<path d="M27,26c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V16c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2V26z" fill="url(#SVGID_4_)"/>
-<path d="M25,27H5c-1.1,0-2-0.9-2-2v1c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2v-1C27,26.1,26.1,27,25,27z" fill="#873900" opacity="0.2"/>
-<path d="M25,14H5c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1C27,14.9,26.1,14,25,14z" fill="#FFFFFF" opacity="0.4"/>
-<rect height="2" opacity="0.2" width="24" x="3" y="23"/>
-<rect height="2" opacity="0.2" width="24" x="3" y="19"/>
+<path d="M25,27H5c-1.1,0-2-0.9-2-2v1c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2v-1C27,26.1,26.1,27,25,27z" fill="#873900" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M25,14H5c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1C27,14.9,26.1,14,25,14z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<rect fill-opacity="0.2" height="2" stroke-opacity="0.2" width="24" x="3" y="23"/>
+<rect fill-opacity="0.2" height="2" stroke-opacity="0.2" width="24" x="3" y="19"/>
<rect fill="none" height="30" width="30" x="0"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_selected.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_selected.svg Thu May 27 13:10:59 2010 +0300
@@ -1,39 +1,23 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill="none" fill-opacity="0.5" height="30" stroke-opacity="0.5" width="30"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1.219" y2="29.44">
-
<stop offset="0" stop-color="#E0E1E2"/>
-
<stop offset="1" stop-color="#FFFFFF"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_1_)" height="28" width="28" x="1" y="1"/>
-
<path d="M1,1v28h2v-24c0-0.55,0.45-1,1-1h22c0.55,0,1,0.45,1,1v24h2v-28h-28z" fill-opacity="0.05" stroke-opacity="0.05"/>
-
<path d="M1,1v28h1v-25c0-0.55,0.45-1,1-1h24c0.55,0,1,0.45,1,1v25h1v-28h-28z" fill-opacity="0.1" stroke-opacity="0.1"/>
-
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="28" x="1" y="1"/>
-
<path d="M0,0v30h30v-30h-30zm29,29h-28v-28h28v28z" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<polygon fill-opacity="0.6" points="11.89,22.98,4.213,15.31,8.303,11.22,12.54,15.46,21.7,6.31,25.79,10.4,12.49,23.69" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="6.972" y2="23.64">
-
<stop offset="0" stop-color="#A0F800"/>
-
<stop offset="1" stop-color="#319E00"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_2_)" points="24.37,10.4,21.7,7.724,12.54,16.88,8.303,12.63,5.627,15.31,12.54,22.22,12.54,22.21,12.55,22.22"/>
-
<polygon fill="#FFFFFF" fill-opacity="0.4" points="8.303,13.63,12.54,17.88,21.7,8.724,23.87,10.9,24.37,10.4,21.7,7.724,12.54,16.88,8.303,12.63,5.627,15.31,6.127,15.81" stroke-opacity="0.4"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_selected_highlight.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_selected_highlight.svg Thu May 27 13:10:59 2010 +0300
@@ -1,47 +1,27 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill-opacity="0.6" height="30" stroke-opacity="0.6" width="30"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1.219" y2="29.44">
-
<stop offset="0" stop-color="#4EDEFF"/>
-
<stop offset="1" stop-color="#16A0D4"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_1_)" height="28" width="28" x="1" y="1"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="3.188" y2="27.38">
-
<stop offset="0" stop-color="#E0E1E2"/>
-
<stop offset="1" stop-color="#FFFFFF"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_2_)" height="24" width="24" x="3" y="3"/>
-
<path d="M3,3v24h2v-20c0-0.55,0.45-1,1-1h18c0.55,0,1,0.45,1,1v20h2v-24h-24z" fill-opacity="0.05" stroke-opacity="0.05"/>
-
<path d="M3,3v24h1v-21c0-0.55,0.45-1,1-1h20c0.55,0,1,0.45,1,1v21h1v-24h-24z" fill-opacity="0.1" stroke-opacity="0.1"/>
-
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="24" x="3" y="3"/>
-
<polygon fill-opacity="0.6" points="11.89,22.98,4.213,15.31,8.303,11.22,12.54,15.46,21.7,6.31,25.79,10.4,12.49,23.69" stroke-opacity="0.6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="6.972" y2="23.64">
-
<stop offset="0" stop-color="#A0F800"/>
-
<stop offset="1" stop-color="#319E00"/>
-
</linearGradient>
-
<polygon fill="url(#SVGID_3_)" points="24.37,10.4,21.7,7.724,12.54,16.88,8.303,12.63,5.627,15.31,12.54,22.22,12.54,22.21,12.55,22.22"/>
-
<polygon fill="#FFFFFF" fill-opacity="0.4" points="8.303,13.63,12.54,17.88,21.7,8.724,23.87,10.9,24.37,10.4,21.7,7.724,12.54,16.88,8.303,12.63,5.627,15.31,6.127,15.81" stroke-opacity="0.4"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_selected_partial.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_selected_partial.svg Thu May 27 13:10:59 2010 +0300
@@ -1,49 +1,28 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1.219" y2="29.44">
-
<stop offset="0" stop-color="#E0E1E2"/>
-
<stop offset="1" stop-color="#FFFFFF"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_1_)" height="28" width="28" x="1" y="1"/>
-
<path d="M1,1v28h2v-24c0-0.55,0.45-1,1-1h22c0.55,0,1,0.45,1,1v24h2v-28h-28z" fill-opacity="0.05" stroke-opacity="0.05"/>
-
<path d="M1,1v28h1v-25c0-0.55,0.45-1,1-1h24c0.55,0,1,0.45,1,1v25h1v-28h-28z" fill-opacity="0.1" stroke-opacity="0.1"/>
-
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="28" x="1" y="1"/>
-
<path d="M0,0v30h30v-30h-30zm29,29h-28v-28h28v28z" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<rect fill-opacity="0.4" height="18" stroke-opacity="0.4" width="18" x="6" y="6"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="7.125" y2="23.25">
-
<stop offset="0" stop-color="#A0F800"/>
-
<stop offset="1" stop-color="#319E00"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_2_)" height="16" width="16" x="7" y="7"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="7" y2="23">
-
<stop offset="0" stop-color="#D6FF8C"/>
-
<stop offset="0.3394" stop-color="#7AD900"/>
-
<stop offset="0.6182" stop-color="#5BC000"/>
-
<stop offset="1" stop-color="#96DB00"/>
-
</linearGradient>
-
<path d="M22,8v14h-14v-14h14m1-1h-16v16h16v-16z" fill="url(#SVGID_3_)"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sent.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sent.svg Thu May 27 13:10:59 2010 +0300
@@ -1,22 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<polygon opacity="0.6" points="10,29 10,15 2.865,15 15,0.438 27.135,15 20,15 20,29 "/>
+<polygon fill-opacity="0.6" points="10,29 10,15 2.865,15 15,0.438 27.135,15 20,15 20,29 " stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 0 682)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="653.8545" y2="680.0006">
- <stop offset="0" style="stop-color:#57CDFF"/>
- <stop offset="0.2788" style="stop-color:#19A3D6"/>
- <stop offset="1" style="stop-color:#4EDEFF"/>
+<stop offset="0" style="stop-color:#57CDFF"/>
+<stop offset="0.2788" style="stop-color:#19A3D6"/>
+<stop offset="1" style="stop-color:#4EDEFF"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="19,14 19,28 11,28 11,14 5,14 15,2 25,14 "/>
<linearGradient gradientTransform="matrix(1 0 0 -1 0 682)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="654.8691" y2="678.4384">
- <stop offset="0" style="stop-color:#048CC6"/>
- <stop offset="1" style="stop-color:#4EDEFF"/>
+<stop offset="0" style="stop-color:#048CC6"/>
+<stop offset="1" style="stop-color:#4EDEFF"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="7.135,13 12,13 12,27 18,27 18,13 22.865,13 15,3.563 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_signal_good.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_signal_good.svg Thu May 27 13:10:59 2010 +0300
@@ -1,31 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.6" height="12" width="8" x="1" y="15"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="3.9995" y2="25.752">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="6" x="2" y="16"/>
<rect fill-opacity="0.6" height="18" width="8" x="11" y="9"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="4" y2="25.752">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="16" width="6" x="12" y="10"/>
<rect fill-opacity="0.6" height="24" width="8" x="21" y="3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="25" x2="25" y1="4" y2="25.7519">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="22" width="6" x="22" y="4"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="6" x="2" y="16"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="6" x="12" y="10"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="6" x="22" y="4"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="2" y="16"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="12" y="10"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="22" y="4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_signal_low.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_signal_low.svg Thu May 27 13:10:59 2010 +0300
@@ -1,37 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.6" height="12" width="8" x="1" y="15"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="16" y2="26.1378">
- <stop offset="0" style="stop-color:#DE8029"/>
- <stop offset="1" style="stop-color:#D82E09"/>
+<stop offset="0" style="stop-color:#DE8029"/>
+<stop offset="1" style="stop-color:#D82E09"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="6" x="2" y="16"/>
<rect fill-opacity="0.6" height="18" width="8" x="11" y="9"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="4" y2="26.0007">
- <stop offset="0" style="stop-color:#C4C4C4"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="16" width="6" x="12" y="10"/>
-<polygon fill="#FFFFFF" opacity="0.3" points="18,12.39 18,10 15.61,10 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="12,17.703 18,23.703 18,18.047 12,12.047 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="12,23.36 12,26 14.64,26 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="18,12.39 18,10 15.61,10 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="12,17.703 18,23.703 18,18.047 12,12.047 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="12,23.36 12,26 14.64,26 " stroke-opacity="0.3"/>
<rect fill-opacity="0.6" height="24" width="8" x="21" y="3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="25" x2="25" y1="4" y2="26.0005">
- <stop offset="0" style="stop-color:#C4C4C4"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="22" width="6" x="22" y="4"/>
-<polygon fill="#FFFFFF" opacity="0.3" points="28,9.64 28,4 22.36,4 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="22,14.953 28,20.953 28,15.297 22,9.297 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="22,20.61 22,26 27.39,26 "/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="6" x="2" y="16"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="6" x="12" y="10"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="6" x="22" y="4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,9.64 28,4 22.36,4 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,14.953 28,20.953 28,15.297 22,9.297 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,20.61 22,26 27.39,26 " stroke-opacity="0.3"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="2" y="16"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="12" y="10"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="22" y="4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_signal_medium.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_signal_medium.svg Thu May 27 13:10:59 2010 +0300
@@ -1,34 +1,32 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.6" height="12" width="8" x="1" y="15"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="9.7495" y2="25.5003">
- <stop offset="0" style="stop-color:#FECF5E"/>
- <stop offset="1" style="stop-color:#FF9E01"/>
+<stop offset="0" style="stop-color:#FECF5E"/>
+<stop offset="1" style="stop-color:#FF9E01"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="6" x="2" y="16"/>
<rect fill-opacity="0.6" height="18" width="8" x="11" y="9"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="9.75" y2="25.5005">
- <stop offset="0" style="stop-color:#FECF5E"/>
- <stop offset="1" style="stop-color:#FF9E01"/>
+<stop offset="0" style="stop-color:#FECF5E"/>
+<stop offset="1" style="stop-color:#FF9E01"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="16" width="6" x="12" y="10"/>
<rect fill-opacity="0.6" height="24" width="8" x="21" y="3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="25" x2="25" y1="4" y2="25.7519">
- <stop offset="0" style="stop-color:#C4C4C4"/>
- <stop offset="1" style="stop-color:#4F4F4F"/>
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="22" width="6" x="22" y="4"/>
-<polygon fill="#FFFFFF" opacity="0.3" points="28,9.64 28,4 22.36,4 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="22,14.953 28,20.953 28,15.297 22,9.297 "/>
-<polygon fill="#FFFFFF" opacity="0.3" points="22,20.61 22,26 27.39,26 "/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="6" x="2" y="16"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="6" x="12" y="10"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="6" x="22" y="4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,9.64 28,4 22.36,4 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,14.953 28,20.953 28,15.297 22,9.297 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,20.61 22,26 27.39,26 " stroke-opacity="0.3"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="2" y="16"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="12" y="10"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="22" y="4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sisx.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sisx.svg Thu May 27 13:10:59 2010 +0300
@@ -1,30 +1,28 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M15.781,24v-3.441l0.494-0.29C17.316,19.659,18,19.209,18,18.548C18,17.137,16.358,16,15,16 c-1.359,0-3,1.137-3,2.548c0,0.666,0.684,1.114,1.728,1.722l0.497,0.289V24H11c-1.654,0-3-1.346-3-3H7.937 c-0.597,0.972-1.407,2-2.832,2C2.686,23,1,20.629,1,18.5S2.686,14,5.104,14c1.438,0,2.249,1.052,2.83,2H8v-4c0-1.654,1.346-3,3-3h1 V8.937c-0.971-0.597-2-1.406-2-2.832C10,3.686,12.371,2,14.5,2S19,3.686,19,6.104c0,1.438-1.051,2.249-2,2.83V9h7 c1.654,0,3,1.346,3,3v9c0,1.654-1.346,3-3,3H15.781z" opacity="0.6"/>
+<path d="M15.781,24v-3.441l0.494-0.29C17.316,19.659,18,19.209,18,18.548C18,17.137,16.358,16,15,16 c-1.359,0-3,1.137-3,2.548c0,0.666,0.684,1.114,1.728,1.722l0.497,0.289V24H11c-1.654,0-3-1.346-3-3H7.937 c-0.597,0.972-1.407,2-2.832,2C2.686,23,1,20.629,1,18.5S2.686,14,5.104,14c1.438,0,2.249,1.052,2.83,2H8v-4c0-1.654,1.346-3,3-3h1 V8.937c-0.971-0.597-2-1.406-2-2.832C10,3.686,12.371,2,14.5,2S19,3.686,19,6.104c0,1.438-1.051,2.249-2,2.83V9h7 c1.654,0,3,1.346,3,3v9c0,1.654-1.346,3-3,3H15.781z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13.9995" x2="13.9995" y1="2.8911" y2="23.5236">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#A5A5A5"/>
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
<path d="M24,10h-8V8.365c0.943-0.553,2-1.146,2-2.261C18,4.392,16.217,3,14.5,3C12.782,3,11,4.392,11,6.104 c0,1.115,1.053,1.711,2,2.263V10h-2c-1.1,0-2,0.9-2,2v5H7.365c-0.553-0.943-1.146-2-2.261-2C3.392,15,2,16.783,2,18.5 C2,20.218,3.392,22,5.104,22c1.115,0,1.711-1.053,2.263-2H9v1c0,1.1,0.9,2,2,2h2.225v-1.866C12.141,20.503,11,19.822,11,18.548 C11,16.591,13.037,15,15,15c1.961,0,4,1.591,4,3.548c0,1.273-1.141,1.952-2.219,2.584V23H24c1.1,0,2-0.9,2-2v-9 C26,10.9,25.1,10,24,10z" fill="url(#SVGID_1_)"/>
-<path d="M16.781,21.132v1C17.859,21.5,19,20.821,19,19.548c0-0.175-0.034-0.342-0.065-0.51 C18.684,20.005,17.711,20.587,16.781,21.132z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M11,11h2v-1h-2c-1.1,0-2,0.9-2,2v1C9,11.9,9.9,11,11,11z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M14.5,4c1.529,0,3.104,1.106,3.43,2.559C17.972,6.416,18,6.268,18,6.104 C18,4.392,16.217,3,14.5,3C12.782,3,11,4.392,11,6.104c0,0.163,0.028,0.313,0.07,0.455C11.396,5.107,12.969,4,14.5,4z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M24,10h-8v1h8c1.1,0,2,0.9,2,2v-1C26,10.9,25.1,10,24,10z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M5.104,16c1.114,0,1.708,1.057,2.261,2H9v-1H7.365c-0.553-0.943-1.146-2-2.261-2 C3.392,15,2,16.783,2,18.5c0,0.167,0.023,0.334,0.049,0.5C2.284,17.454,3.559,16,5.104,16z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M11.065,19.038C11.034,19.206,11,19.373,11,19.548c0,1.274,1.141,1.955,2.225,2.586v-1 C12.289,20.59,11.316,20.006,11.065,19.038z" fill="#FFFFFF" opacity="0.4"/>
-<rect height="12" opacity="0.6" width="12" x="17" y="16"/>
+<path d="M16.781,21.132v1C17.859,21.5,19,20.821,19,19.548c0-0.175-0.034-0.342-0.065-0.51 C18.684,20.005,17.711,20.587,16.781,21.132z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M11,11h2v-1h-2c-1.1,0-2,0.9-2,2v1C9,11.9,9.9,11,11,11z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M14.5,4c1.529,0,3.104,1.106,3.43,2.559C17.972,6.416,18,6.268,18,6.104 C18,4.392,16.217,3,14.5,3C12.782,3,11,4.392,11,6.104c0,0.163,0.028,0.313,0.07,0.455C11.396,5.107,12.969,4,14.5,4z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24,10h-8v1h8c1.1,0,2,0.9,2,2v-1C26,10.9,25.1,10,24,10z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M5.104,16c1.114,0,1.708,1.057,2.261,2H9v-1H7.365c-0.553-0.943-1.146-2-2.261-2 C3.392,15,2,16.783,2,18.5c0,0.167,0.023,0.334,0.049,0.5C2.284,17.454,3.559,16,5.104,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M11.065,19.038C11.034,19.206,11,19.373,11,19.548c0,1.274,1.141,1.955,2.225,2.586v-1 C12.289,20.59,11.316,20.006,11.065,19.038z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<rect fill-opacity="0.6" height="12" stroke-opacity="0.6" width="12" x="17" y="16"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="23" x2="23" y1="17" y2="27">
- <stop offset="0" style="stop-color:#DE6929"/>
- <stop offset="1" style="stop-color:#D9340F"/>
+<stop offset="0" style="stop-color:#DE6929"/>
+<stop offset="1" style="stop-color:#D9340F"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="10" width="10" x="18" y="17"/>
-<rect fill="#FFFFFF" height="1" opacity="0.4" width="10" x="18" y="17"/>
-<rect height="1" opacity="0.2" width="10" x="18" y="26"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="10" x="18" y="17"/>
+<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" x="18" y="26"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_angry.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_angry.svg Thu May 27 13:10:59 2010 +0300
@@ -1,61 +1,59 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="14.8193" cy="9.7041" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="18.1413">
- <stop offset="0" style="stop-color:#FF6855"/>
- <stop offset="1" style="stop-color:#CC0E06"/>
+<stop offset="0" style="stop-color:#FF6855"/>
+<stop offset="1" style="stop-color:#CC0E06"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="10.3823" y2="16.7968">
- <stop offset="0" style="stop-color:#D82E09"/>
- <stop offset="1" style="stop-color:#FACCB9"/>
+<stop offset="0" style="stop-color:#D82E09"/>
+<stop offset="1" style="stop-color:#FACCB9"/>
</linearGradient>
<path d="M8.5,17C7.074,17,6,15.495,6,13.5S7.074,10,8.5,10s2.5,1.505,2.5,3.5S9.926,17,8.5,17L8.5,17z" fill="url(#SVGID_2_)"/>
<ellipse cx="8.5" cy="13.5" fill="#0C3554" rx="1.5" ry="2.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.583" x2="8.583" y1="12.9707" y2="16.1465">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#6D93B3"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#6D93B3"/>
</linearGradient>
<path d="M7.166,14.623C7.414,15.437,7.915,16,8.5,16c0.828,0,1.5-1.119,1.5-2.5 c0-0.155-0.012-0.305-0.027-0.452C9.819,13.018,9.662,13,9.5,13C8.43,13,7.522,13.677,7.166,14.623z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="21.5" x2="21.5" y1="9.9517" y2="17.1103">
- <stop offset="0" style="stop-color:#D82E09"/>
- <stop offset="1" style="stop-color:#FACCB9"/>
+<stop offset="0" style="stop-color:#D82E09"/>
+<stop offset="1" style="stop-color:#FACCB9"/>
</linearGradient>
<path d="M21.5,17c-1.426,0-2.5-1.505-2.5-3.5s1.074-3.5,2.5-3.5s2.5,1.505,2.5,3.5S22.926,17,21.5,17L21.5,17 z" fill="url(#SVGID_4_)"/>
<ellipse cx="21.5" cy="13.5" fill="#0C3554" rx="1.5" ry="2.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.583" x2="21.583" y1="13.0908" y2="16.2688">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#6D93B3"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#6D93B3"/>
</linearGradient>
<path d="M20.166,14.623C20.414,15.437,20.915,16,21.5,16c0.828,0,1.5-1.119,1.5-2.5 c0-0.155-0.012-0.305-0.027-0.452C22.819,13.018,22.662,13,22.5,13C21.43,13,20.522,13.677,20.166,14.623z" fill="url(#SVGID_5_)"/>
-<ellipse cx="8.258" cy="11.352" opacity="0.2" rx="4.361" ry="1.541" transform="matrix(0.9259 0.3777 -0.3777 0.9259 4.8993 -2.2783)"/>
+<ellipse cx="8.258" cy="11.352" fill-opacity="0.2" rx="4.361" ry="1.541" stroke-opacity="0.2" transform="matrix(0.9259 0.3777 -0.3777 0.9259 4.8993 -2.2783)"/>
<ellipse cx="8.26" cy="10.89" fill="#3B2314" rx="4.361" ry="1" transform="matrix(0.9259 0.3777 -0.3777 0.9259 4.7258 -2.3134)"/>
-<ellipse cx="21.92" cy="11.352" opacity="0.2" rx="4.36" ry="1.541" transform="matrix(-0.9259 0.3777 -0.3777 -0.9259 46.5039 13.5832)"/>
+<ellipse cx="21.92" cy="11.352" fill-opacity="0.2" rx="4.36" ry="1.541" stroke-opacity="0.2" transform="matrix(-0.9259 0.3777 -0.3777 -0.9259 46.5039 13.5832)"/>
<ellipse cx="21.918" cy="10.89" fill="#3B2314" rx="4.36" ry="1" transform="matrix(-0.9259 0.3778 -0.3778 -0.9259 46.3259 12.6935)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.9995" x2="14.9995" y1="18.0986" y2="25.1188">
- <stop offset="0" style="stop-color:#942006"/>
- <stop offset="1" style="stop-color:#FFAA5C"/>
+<stop offset="0" style="stop-color:#942006"/>
+<stop offset="1" style="stop-color:#FFAA5C"/>
</linearGradient>
<path d="M24,22.9c0,1.933-4.029,2.1-9,2.1s-9-0.167-9-2.1c0-1.934,4.029-4.9,9-4.9S24,20.967,24,22.9z" fill="url(#SVGID_6_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.9995" x2="14.9995" y1="19.1426" y2="23.9429">
- <stop offset="0" style="stop-color:#E6E6E6"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path d="M24,22.5c0,1.381-4.029,1.5-9,1.5s-9-0.119-9-1.5s4.029-3.5,9-3.5S24,21.119,24,22.5z" fill="url(#SVGID_7_)"/>
-<path d="M14,19.03v4.968C14.328,23.999,14.662,24,15,24v-5C14.662,19,14.328,19.012,14,19.03z" opacity="0.2"/>
-<path d="M16,19.03C15.672,19.012,15.338,19,15,19v5c0.338,0,0.672-0.001,1-0.002V19.03z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M9,23.807c0.316,0.033,0.646,0.062,1,0.084v-4.156c-0.354,0.109-0.684,0.229-1,0.353V23.807z" opacity="0.2"/>
-<path d="M10,23.891c0.318,0.021,0.654,0.037,1,0.051v-4.475c-0.346,0.082-0.682,0.17-1,0.268V23.891z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M19,23.941c0.346-0.014,0.682-0.029,1-0.051v-4.156c-0.318-0.098-0.654-0.186-1-0.268V23.941z" opacity="0.2"/>
-<path d="M20,23.891c0.354-0.022,0.684-0.051,1-0.084v-3.72c-0.316-0.124-0.646-0.243-1-0.353V23.891z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M15,20c4.664,0,8.498,1.426,8.954,2.742C23.984,22.666,24,22.586,24,22.5c0-1.381-4.029-3.5-9-3.5 s-9,2.119-9,3.5c0,0.086,0.016,0.166,0.046,0.242C6.502,21.426,10.336,20,15,20z" opacity="0.2"/>
+<path d="M14,19.03v4.968C14.328,23.999,14.662,24,15,24v-5C14.662,19,14.328,19.012,14,19.03z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M16,19.03C15.672,19.012,15.338,19,15,19v5c0.338,0,0.672-0.001,1-0.002V19.03z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M9,23.807c0.316,0.033,0.646,0.062,1,0.084v-4.156c-0.354,0.109-0.684,0.229-1,0.353V23.807z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,23.891c0.318,0.021,0.654,0.037,1,0.051v-4.475c-0.346,0.082-0.682,0.17-1,0.268V23.891z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M19,23.941c0.346-0.014,0.682-0.029,1-0.051v-4.156c-0.318-0.098-0.654-0.186-1-0.268V23.941z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M20,23.891c0.354-0.022,0.684-0.051,1-0.084v-3.72c-0.316-0.124-0.646-0.243-1-0.353V23.891z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M15,20c4.664,0,8.498,1.426,8.954,2.742C23.984,22.666,24,22.586,24,22.5c0-1.381-4.029-3.5-9-3.5 s-9,2.119-9,3.5c0,0.086,0.016,0.166,0.046,0.242C6.502,21.426,10.336,20,15,20z" fill-opacity="0.2" stroke-opacity="0.2"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_bigsmile.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_bigsmile.svg Thu May 27 13:10:59 2010 +0300
@@ -1,56 +1,54 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.7505" x2="8.7505" y1="7.9351" y2="14.8952">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M11,15c-0.754,0-1.394-0.564-1.487-1.313C9.3,12,8.874,12,8.691,12c-0.134,0-0.49,0-0.703,1.688 C7.894,14.436,7.254,15,6.5,15H6.443l-0.118-0.01c-0.41-0.052-0.765-0.253-1.01-0.57c-0.246-0.317-0.354-0.71-0.304-1.108 C5.424,10.036,6.893,8,8.846,8c1.111,0,3.063,0.69,3.644,5.313c0.05,0.396-0.058,0.79-0.304,1.107 c-0.245,0.316-0.6,0.518-0.997,0.568l-0.063,0.008L11,15z" fill="url(#SVGID_2_)"/>
<path d="M11,14c-0.248,0-0.464-0.185-0.495-0.438C10.214,11.249,9.371,11,8.691,11s-1.404,0.249-1.695,2.563 c-0.034,0.273-0.273,0.466-0.559,0.434c-0.273-0.035-0.468-0.285-0.434-0.559C6.343,10.742,7.458,9,8.846,9s2.313,1.742,2.651,4.438 c0.034,0.274-0.16,0.524-0.434,0.559C11.042,13.999,11.021,14,11,14L11,14z" fill="#0C3554"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -566.5 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-587.7495" x2="-587.7495" y1="7.9351" y2="14.8952">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M19,15c0.754,0,1.394-0.564,1.487-1.313C20.7,12,21.126,12,21.309,12c0.134,0,0.49,0,0.703,1.688 C22.106,14.436,22.746,15,23.5,15h0.057l0.118-0.01c0.41-0.052,0.765-0.253,1.01-0.57c0.246-0.317,0.354-0.71,0.304-1.108 C24.576,10.036,23.107,8,21.154,8c-1.111,0-3.063,0.69-3.644,5.313c-0.05,0.396,0.058,0.79,0.304,1.107 c0.245,0.316,0.6,0.518,0.997,0.568l0.063,0.008L19,15z" fill="url(#SVGID_3_)"/>
<path d="M19,14c0.248,0,0.464-0.185,0.495-0.438C19.786,11.249,20.629,11,21.309,11s1.404,0.249,1.695,2.563 c0.034,0.273,0.273,0.466,0.559,0.434c0.273-0.035,0.468-0.285,0.434-0.559C23.657,10.742,22.542,9,21.154,9 s-2.313,1.742-2.651,4.438c-0.034,0.274,0.16,0.524,0.434,0.559C18.958,13.999,18.979,14,19,14L19,14z" fill="#0C3554"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="15.9014" y2="27.1496">
- <stop offset="0" style="stop-color:#D48D00"/>
- <stop offset="1" style="stop-color:#FFF1B8"/>
+<stop offset="0" style="stop-color:#D48D00"/>
+<stop offset="1" style="stop-color:#FFF1B8"/>
</linearGradient>
<path d="M15,16c-6,0-10.945,1-10.945,1C4.561,22.605,9.265,27,15,27c5.734,0,10.439-4.395,10.945-10 C25.945,17,21,16,15,16z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="16.9189" y2="26.1216">
- <stop offset="0" style="stop-color:#460800"/>
- <stop offset="1" style="stop-color:#992323"/>
+<stop offset="0" style="stop-color:#460800"/>
+<stop offset="1" style="stop-color:#992323"/>
</linearGradient>
<path d="M4.055,17C4.561,22.045,9.265,26,15,26c5.734,0,10.439-3.955,10.945-9H4.055z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="6.3335" x2="23.505" y1="19" y2="19">
- <stop offset="0" style="stop-color:#E6E6E6"/>
- <stop offset="0.5333" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#E6E6E6"/>
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.5333" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="23,20 7,20 6,18 24,18 "/>
-<polygon opacity="0.2" points="23.5,19 24,18 6,18 6.5,19 "/>
+<polygon fill-opacity="0.2" points="23.5,19 24,18 6,18 6.5,19 " stroke-opacity="0.2"/>
<radialGradient cx="14.9717" cy="20.0801" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="5.1583">
- <stop offset="0" style="stop-color:#CC1900"/>
- <stop offset="1" style="stop-color:#950A04"/>
+<stop offset="0" style="stop-color:#CC1900"/>
+<stop offset="1" style="stop-color:#950A04"/>
</radialGradient>
<ellipse cx="15" cy="23.5" fill="url(#SVGID_7_)" rx="5" ry="1.5"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_cry.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_cry.svg Thu May 27 13:10:59 2010 +0300
@@ -1,48 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
-<ellipse cx="22.92" cy="7.352" opacity="0.2" rx="4.361" ry="1.541" transform="matrix(0.9259 0.3777 -0.3777 0.9259 4.4746 -8.1124)"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<ellipse cx="22.92" cy="7.352" fill-opacity="0.2" rx="4.361" ry="1.541" stroke-opacity="0.2" transform="matrix(0.9259 0.3777 -0.3777 0.9259 4.4746 -8.1124)"/>
<ellipse cx="22.922" cy="6.89" fill="#3B2314" rx="4.361" ry="1" transform="matrix(0.9259 0.3777 -0.3777 0.9259 4.3011 -8.1483)"/>
-<ellipse cx="6.92" cy="7.173" opacity="0.2" rx="4.361" ry="1.541" transform="matrix(-0.9259 0.3777 -0.3777 -0.9259 16.0374 11.2006)"/>
+<ellipse cx="6.92" cy="7.173" fill-opacity="0.2" rx="4.361" ry="1.541" stroke-opacity="0.2" transform="matrix(-0.9259 0.3777 -0.3777 -0.9259 16.0374 11.2006)"/>
<ellipse cx="6.918" cy="6.711" fill="#3B2314" rx="4.361" ry="1" transform="matrix(-0.9259 0.3777 -0.3777 -0.9259 15.8594 10.3117)"/>
-<path d="M23.501,23c-0.169,0-0.335-0.086-0.429-0.241C21.691,20.476,18.71,20,15.476,20 s-6.216,0.476-7.597,2.759c-0.144,0.235-0.451,0.312-0.688,0.169s-0.312-0.45-0.168-0.687C8.604,19.625,11.844,18,15.476,18 s6.871,1.625,8.452,4.241c0.144,0.236,0.068,0.544-0.168,0.687C23.678,22.977,23.589,23,23.501,23L23.501,23z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M23.501,22c-0.169,0-0.335-0.086-0.429-0.241C21.691,19.476,18.71,18,15.476,18s-6.216,1.476-7.597,3.759 c-0.144,0.235-0.451,0.312-0.688,0.169s-0.312-0.45-0.168-0.687C8.604,18.625,11.844,17,15.476,17s6.871,1.625,8.452,4.241 c0.144,0.236,0.068,0.544-0.168,0.687C23.678,21.977,23.589,22,23.501,22L23.501,22z" opacity="0.4"/>
-<path d="M6.563,13.688c-0.396,0.724-1.43,1.504-1.656,3.094c-0.167,1.178,0.756,3.182,0.438,4.438 c-0.815,3.219-0.67,4.492,0.438,4.719c1.219,0.25,2.622-2.725,3-4.906C8.998,19.787,8.345,18.11,8.625,17 c0.275-1.088,1.746-2.412,2.438-3.752C12.063,11.311,12,11,12,11l-4.918,0.872C7.082,11.872,7.152,12.612,6.563,13.688z" opacity="0.2"/>
+<path d="M23.501,23c-0.169,0-0.335-0.086-0.429-0.241C21.691,20.476,18.71,20,15.476,20 s-6.216,0.476-7.597,2.759c-0.144,0.235-0.451,0.312-0.688,0.169s-0.312-0.45-0.168-0.687C8.604,19.625,11.844,18,15.476,18 s6.871,1.625,8.452,4.241c0.144,0.236,0.068,0.544-0.168,0.687C23.678,22.977,23.589,23,23.501,23L23.501,23z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M23.501,22c-0.169,0-0.335-0.086-0.429-0.241C21.691,19.476,18.71,18,15.476,18s-6.216,1.476-7.597,3.759 c-0.144,0.235-0.451,0.312-0.688,0.169s-0.312-0.45-0.168-0.687C8.604,18.625,11.844,17,15.476,17s6.871,1.625,8.452,4.241 c0.144,0.236,0.068,0.544-0.168,0.687C23.678,21.977,23.589,22,23.501,22L23.501,22z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M6.563,13.688c-0.396,0.724-1.43,1.504-1.656,3.094c-0.167,1.178,0.756,3.182,0.438,4.438 c-0.815,3.219-0.67,4.492,0.438,4.719c1.219,0.25,2.622-2.725,3-4.906C8.998,19.787,8.345,18.11,8.625,17 c0.275-1.088,1.746-2.412,2.438-3.752C12.063,11.311,12,11,12,11l-4.918,0.872C7.082,11.872,7.152,12.612,6.563,13.688z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.4756" x2="15.4756" y1="17.5723" y2="22.6656">
- <stop offset="0" style="stop-color:#460800"/>
- <stop offset="1" style="stop-color:#992323"/>
+<stop offset="0" style="stop-color:#460800"/>
+<stop offset="1" style="stop-color:#992323"/>
</linearGradient>
<path d="M23.501,22.5c-0.169,0-0.335-0.086-0.429-0.241c-1.381-2.283-4.362-3.759-7.597-3.759 s-6.216,1.476-7.597,3.759c-0.144,0.235-0.451,0.312-0.688,0.169s-0.312-0.45-0.168-0.687c1.581-2.616,4.82-4.241,8.452-4.241 s6.871,1.625,8.452,4.241c0.144,0.236,0.068,0.544-0.168,0.687C23.678,22.477,23.589,22.5,23.501,22.5L23.501,22.5z" fill="url(#SVGID_2_)"/>
-<path d="M23.443,13.688c0.396,0.724,1.43,1.504,1.656,3.094c0.168,1.178-0.756,3.182-0.438,4.438 c0.816,3.219,0.67,4.492-0.438,4.719c-1.219,0.25-2.621-2.725-3-4.906c-0.216-1.244,0.438-2.921,0.156-4.031 c-0.275-1.088-1.746-2.412-2.438-3.752c-1-1.938-0.938-2.248-0.938-2.248l4.919,0.872C22.925,11.872,22.854,12.612,23.443,13.688z" opacity="0.2"/>
+<path d="M23.443,13.688c0.396,0.724,1.43,1.504,1.656,3.094c0.168,1.178-0.756,3.182-0.438,4.438 c0.816,3.219,0.67,4.492-0.438,4.719c-1.219,0.25-2.621-2.725-3-4.906c-0.216-1.244,0.438-2.921,0.156-4.031 c-0.275-1.088-1.746-2.412-2.438-3.752c-1-1.938-0.938-2.248-0.938-2.248l4.919,0.872C22.925,11.872,22.854,12.612,23.443,13.688z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="7.4126" x2="7.4126" y1="12.042" y2="25.838">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<path d="M5.563,13.688c-0.396,0.724-1.43,1.504-1.656,3.094c-0.167,1.178,0.756,3.182,0.438,4.438 c-0.815,3.219-0.67,4.492,0.438,4.719c1.219,0.25,2.622-2.725,3-4.906C7.998,19.787,7.345,18.11,7.625,17 c0.275-1.088,1.746-2.412,2.438-3.752C11.063,11.311,11,11,11,11l-4.918,0.872C6.082,11.872,6.152,12.612,5.563,13.688z" fill="url(#SVGID_3_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -1800.1367 0)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1822.73" x2="-1822.73" y1="12.042" y2="25.838">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<path d="M24.443,13.688c0.396,0.724,1.43,1.504,1.656,3.094c0.168,1.178-0.756,3.182-0.438,4.438 c0.816,3.219,0.67,4.492-0.438,4.719c-1.219,0.25-2.621-2.725-3-4.906c-0.216-1.244,0.438-2.921,0.156-4.031 c-0.275-1.088-1.746-2.412-2.438-3.752c-1-1.938-0.938-2.248-0.938-2.248l4.919,0.872C23.925,11.872,23.854,12.612,24.443,13.688z" fill="url(#SVGID_4_)"/>
-<path d="M11.813,9.888c0.119,0.54,0.023,1.019-0.213,1.07l-5.984,1.309 c-0.236,0.052-0.522-0.343-0.641-0.883l0,0c-0.118-0.54-0.022-1.019,0.213-1.07l5.984-1.309C11.408,8.953,11.695,9.348,11.813,9.888 L11.813,9.888z" fill="#FFFFFF" opacity="0.3"/>
-<path d="M24.848,12.26c-0.102,0.543-0.376,0.947-0.613,0.902l-6.021-1.128c-0.237-0.045-0.347-0.521-0.245-1.063l0,0 c0.102-0.543,0.377-0.947,0.613-0.902l6.021,1.128C24.84,11.241,24.95,11.717,24.848,12.26L24.848,12.26z" opacity="0.4"/>
-<path d="M25.033,11.277c-0.103,0.543-0.377,0.947-0.615,0.902l-6.02-1.128 c-0.238-0.044-0.348-0.521-0.246-1.064l0,0c0.102-0.543,0.377-0.946,0.615-0.902l6.02,1.128 C25.024,10.259,25.135,10.734,25.033,11.277L25.033,11.277z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M11.813,9.888c0.119,0.54,0.023,1.019-0.213,1.07l-5.984,1.309 c-0.236,0.052-0.522-0.343-0.641-0.883l0,0c-0.118-0.54-0.022-1.019,0.213-1.07l5.984-1.309C11.408,8.953,11.695,9.348,11.813,9.888 L11.813,9.888z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M24.848,12.26c-0.102,0.543-0.376,0.947-0.613,0.902l-6.021-1.128c-0.237-0.045-0.347-0.521-0.245-1.063l0,0 c0.102-0.543,0.377-0.947,0.613-0.902l6.021,1.128C24.84,11.241,24.95,11.717,24.848,12.26L24.848,12.26z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M25.033,11.277c-0.103,0.543-0.377,0.947-0.615,0.902l-6.02-1.128 c-0.238-0.044-0.348-0.521-0.246-1.064l0,0c0.102-0.543,0.377-0.946,0.615-0.902l6.02,1.128 C25.024,10.259,25.135,10.734,25.033,11.277L25.033,11.277z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M24.94,11.769c-0.051,0.272-0.284,0.456-0.522,0.411l-6.02-1.128c-0.238-0.044-0.389-0.3-0.338-0.572l0,0 c0.051-0.271,0.285-0.456,0.521-0.411l6.021,1.128C24.84,11.241,24.992,11.497,24.94,11.769L24.94,11.769z" fill="#3B2314"/>
-<path d="M12.026,10.865c0.118,0.54,0.022,1.019-0.214,1.07l-5.983,1.309C5.594,13.295,5.307,12.9,5.188,12.36l0,0 c-0.117-0.54-0.021-1.019,0.215-1.07l5.982-1.309C11.621,9.93,11.908,10.325,12.026,10.865L12.026,10.865z" opacity="0.4"/>
+<path d="M12.026,10.865c0.118,0.54,0.022,1.019-0.214,1.07l-5.983,1.309C5.594,13.295,5.307,12.9,5.188,12.36l0,0 c-0.117-0.54-0.021-1.019,0.215-1.07l5.982-1.309C11.621,9.93,11.908,10.325,12.026,10.865L12.026,10.865z" fill-opacity="0.4" stroke-opacity="0.4"/>
<path d="M11.92,10.376c0.059,0.27-0.084,0.53-0.32,0.582l-5.984,1.309c-0.236,0.052-0.475-0.125-0.533-0.395l0,0 c-0.06-0.27,0.084-0.53,0.32-0.582l5.982-1.309C11.621,9.93,11.861,10.106,11.92,10.376L11.92,10.376z" fill="#3B2314"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_evil.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_evil.svg Thu May 27 13:10:59 2010 +0300
@@ -1,38 +1,38 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M26.827,7.531L28.439,2l-4.335,2.378C21.655,2.277,18.479,1,15,1S8.345,2.277,5.896,4.378L1.56,2l1.613,5.531 C1.804,9.694,1,12.25,1,15c0,7.732,6.268,14,14,14c7.732,0,14-6.268,14-14C29,12.25,28.196,9.694,26.827,7.531z" opacity="0.6"/>
+<path d="M26.827,7.531L28.439,2l-4.335,2.378C21.655,2.277,18.479,1,15,1S8.345,2.277,5.896,4.378L1.56,2l1.613,5.531 C1.804,9.694,1,12.25,1,15c0,7.732,6.268,14,14,14c7.732,0,14-6.268,14-14C29,12.25,28.196,9.694,26.827,7.531z" fill-opacity="0.6" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.4897" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.3695">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15c0-2.45,0.698-4.848,2.019-6.935L4.26,7.684L3.196,4.038l2.826,1.55 l0.525-0.451C8.905,3.114,11.907,2,15,2c3.093,0,6.096,1.114,8.453,3.137l0.525,0.451l2.825-1.55l-1.063,3.646l0.241,0.381 C27.303,10.151,28,12.549,28,15C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
-<path d="M6.022,6.587l0.525-0.451C8.905,4.114,11.907,3,15,3c3.093,0,6.096,1.114,8.453,3.137 l0.525,0.451l2.479-1.36l0.347-1.19l-2.825,1.55l-0.525-0.451C21.096,3.114,18.093,2,15,2c-3.093,0-6.095,1.114-8.453,3.137 L6.022,5.587l-2.826-1.55l0.347,1.19L6.022,6.587z" fill="#FFFFFF" opacity="0.3"/>
-<path d="M15.075,24.834c-5.617,0-9.75-2.753-11.056-7.363c-0.075-0.266,0.079-0.543,0.345-0.618 c0.262-0.075,0.542,0.079,0.617,0.345C6.158,21.353,9.856,22.834,15,22.834c5.143,0,8.993-1.481,10.17-5.637 c0.074-0.266,0.355-0.42,0.617-0.345c0.266,0.075,0.42,0.353,0.344,0.618C24.826,22.081,20.692,24.834,15.075,24.834L15.075,24.834z " opacity="0.2"/>
-<path d="M27,19.803l-0.942-2.238c0.062-0.307-0.087-0.621-0.347-0.707 c-0.262-0.09-0.542,0.092-0.617,0.408c-1.177,4.936-4.949,7.068-10.093,7.068c-5.144,0-8.917-2.133-10.095-7.068 c-0.075-0.316-0.355-0.498-0.617-0.408c-0.259,0.086-0.408,0.4-0.346,0.707L3,19.803c0.497,0,0.957-0.506,1.293-1.015 C5.888,23.535,9.807,25.834,15,25.834c5.189,0,9.107-2.295,10.704-7.039C25.994,19.178,26.407,19.568,27,19.803z" fill="#FFFFFF" opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="16.9766" y2="24.878">
- <stop offset="0" style="stop-color:#460800"/>
- <stop offset="1" style="stop-color:#992323"/>
-</linearGradient>
+<path d="M6.022,6.587l0.525-0.451C8.905,4.114,11.907,3,15,3c3.093,0,6.096,1.114,8.453,3.137 l0.525,0.451l2.479-1.36l0.347-1.19l-2.825,1.55l-0.525-0.451C21.096,3.114,18.093,2,15,2c-3.093,0-6.095,1.114-8.453,3.137 L6.022,5.587l-2.826-1.55l0.347,1.19L6.022,6.587z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M15.075,24.834c-5.617,0-9.75-2.753-11.056-7.363c-0.075-0.266,0.079-0.543,0.345-0.618 c0.262-0.075,0.542,0.079,0.617,0.345C6.158,21.353,9.856,22.834,15,22.834c5.143,0,8.993-1.481,10.17-5.637 c0.074-0.266,0.355-0.42,0.617-0.345c0.266,0.075,0.42,0.353,0.344,0.618C24.826,22.081,20.692,24.834,15.075,24.834L15.075,24.834z " fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M27,19.803l-0.942-2.238c0.062-0.307-0.087-0.621-0.347-0.707 c-0.262-0.09-0.542,0.092-0.617,0.408c-1.177,4.936-4.949,7.068-10.093,7.068c-5.144,0-8.917-2.133-10.095-7.068 c-0.075-0.316-0.355-0.498-0.617-0.408c-0.259,0.086-0.408,0.4-0.346,0.707L3,19.803c0.497,0,0.957-0.506,1.293-1.015 C5.888,23.535,9.807,25.834,15,25.834c5.189,0,9.107-2.295,10.704-7.039C25.994,19.178,26.407,19.568,27,19.803z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
<path d="M27,19.334l-0.942-1.885c0.062-0.259-0.087-0.523-0.347-0.597c-0.262-0.075-0.542,0.079-0.617,0.345 c-1.177,4.155-4.95,6.637-10.094,6.637s-8.917-2.481-10.094-6.637c-0.075-0.266-0.355-0.42-0.617-0.345 c-0.259,0.073-0.408,0.338-0.346,0.597L3,19.334c0.497,0,0.957-0.426,1.293-0.854C5.888,22.478,9.807,24.834,15,24.834 c5.189,0,9.107-2.354,10.704-6.348C25.994,18.807,26.407,19.137,27,19.334z" fill="url(#SVGID_2_)"/>
-<path d="M12.703,14.146l-9-4c-0.252-0.112-0.548,0.001-0.66,0.254c-0.112,0.252,0.001,0.548,0.254,0.66l0.662,0.294 c-0.188,0.895-0.137,2.118,0.393,3.214c0.519,1.075,1.408,1.851,2.57,2.246C7.296,16.941,7.683,17,8.067,17 c1.561,0,3.104-0.955,3.806-2.128l0.423,0.188c0.066,0.029,0.135,0.043,0.203,0.043c0.192,0,0.375-0.11,0.458-0.297 C13.069,14.554,12.956,14.259,12.703,14.146z M7.243,15.868c-0.916-0.311-1.585-0.894-1.991-1.734 c-0.385-0.796-0.451-1.684-0.353-2.361l6.049,2.688C10.283,15.437,8.674,16.354,7.243,15.868z" opacity="0.4"/>
-<path d="M12.703,13.043l-9-4c-0.252-0.112-0.548,0.001-0.66,0.254C2.931,9.55,3.044,9.845,3.297,9.958 c0,0,9.135,4.043,9.203,4.043c0.192,0,0.375-0.11,0.458-0.297C13.069,13.451,12.956,13.156,12.703,13.043z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M12.703,14.146l-9-4c-0.252-0.112-0.548,0.001-0.66,0.254c-0.112,0.252,0.001,0.548,0.254,0.66l0.662,0.294 c-0.188,0.895-0.137,2.118,0.393,3.214c0.519,1.075,1.408,1.851,2.57,2.246C7.296,16.941,7.683,17,8.067,17 c1.561,0,3.104-0.955,3.806-2.128l0.423,0.188c0.066,0.029,0.135,0.043,0.203,0.043c0.192,0,0.375-0.11,0.458-0.297 C13.069,14.554,12.956,14.259,12.703,14.146z M7.243,15.868c-0.916-0.311-1.585-0.894-1.991-1.734 c-0.385-0.796-0.451-1.684-0.353-2.361l6.049,2.688C10.283,15.437,8.674,16.354,7.243,15.868z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M12.703,13.043l-9-4c-0.252-0.112-0.548,0.001-0.66,0.254C2.931,9.55,3.044,9.845,3.297,9.958 c0,0,9.135,4.043,9.203,4.043c0.192,0,0.375-0.11,0.458-0.297C13.069,13.451,12.956,13.156,12.703,13.043z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M4.555,10.505c-0.5,1.4-0.205,4.357,2.527,5.285c1.889,0.641,4.044-0.755,4.563-2.133L4.555,10.505z" fill="#FFFFFF"/>
<circle cx="7.985" cy="13.228" fill="#0C3554" r="1.5"/>
-<path d="M4.365,11.53l6.729,2.99c0.239-0.273,0.434-0.561,0.546-0.852l-7.088-3.15 C4.451,10.802,4.386,11.15,4.365,11.53z" opacity="0.2"/>
+<path d="M4.365,11.53l6.729,2.99c0.239-0.273,0.434-0.561,0.546-0.852l-7.088-3.15 C4.451,10.802,4.386,11.15,4.365,11.53z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M12.703,13.595l-9-4c-0.252-0.112-0.548,0.001-0.66,0.254c-0.112,0.252,0.001,0.548,0.254,0.66l0.662,0.294 c-0.188,0.895-0.137,2.118,0.393,3.214c0.519,1.075,1.408,1.852,2.57,2.247c0.375,0.127,0.761,0.185,1.146,0.185 c1.561,0,3.104-0.956,3.806-2.128l0.423,0.188c0.066,0.029,0.135,0.043,0.203,0.043c0.192,0,0.375-0.11,0.458-0.297 C13.069,14.002,12.956,13.707,12.703,13.595z M7.243,15.316c-0.916-0.311-1.585-0.894-1.991-1.734 c-0.385-0.796-0.451-1.684-0.353-2.361l6.049,2.688C10.283,14.885,8.674,15.802,7.243,15.316z" fill="#3B2314"/>
-<path d="M17.043,14.807c0.083,0.187,0.266,0.297,0.457,0.297c0.068,0,0.137-0.014,0.203-0.043l0.424-0.188 C18.829,16.045,20.371,17,21.933,17c0.385,0,0.771-0.059,1.146-0.186c1.162-0.395,2.051-1.171,2.57-2.246 c0.529-1.096,0.58-2.32,0.393-3.214l0.662-0.294c0.252-0.112,0.365-0.408,0.254-0.66c-0.112-0.252-0.408-0.366-0.66-0.254l-9,4 C17.045,14.259,16.932,14.554,17.043,14.807z M19.052,14.461l6.049-2.688c0.098,0.677,0.032,1.565-0.353,2.361 c-0.406,0.84-1.076,1.423-1.991,1.734C21.326,16.354,19.717,15.437,19.052,14.461z" opacity="0.4"/>
-<path d="M17.043,13.704C17.126,13.89,17.309,14,17.5,14c0.068,0,9.203-4.043,9.203-4.043 c0.252-0.112,0.365-0.408,0.254-0.66c-0.112-0.252-0.408-0.366-0.66-0.254l-9,4C17.045,13.156,16.932,13.451,17.043,13.704z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M17.043,14.807c0.083,0.187,0.266,0.297,0.457,0.297c0.068,0,0.137-0.014,0.203-0.043l0.424-0.188 C18.829,16.045,20.371,17,21.933,17c0.385,0,0.771-0.059,1.146-0.186c1.162-0.395,2.051-1.171,2.57-2.246 c0.529-1.096,0.58-2.32,0.393-3.214l0.662-0.294c0.252-0.112,0.365-0.408,0.254-0.66c-0.112-0.252-0.408-0.366-0.66-0.254l-9,4 C17.045,14.259,16.932,14.554,17.043,14.807z M19.052,14.461l6.049-2.688c0.098,0.677,0.032,1.565-0.353,2.361 c-0.406,0.84-1.076,1.423-1.991,1.734C21.326,16.354,19.717,15.437,19.052,14.461z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M17.043,13.704C17.126,13.89,17.309,14,17.5,14c0.068,0,9.203-4.043,9.203-4.043 c0.252-0.112,0.365-0.408,0.254-0.66c-0.112-0.252-0.408-0.366-0.66-0.254l-9,4C17.045,13.156,16.932,13.451,17.043,13.704z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M25.444,10.505c0.501,1.4,0.205,4.357-2.526,5.285c-1.889,0.641-4.045-0.755-4.563-2.133L25.444,10.505z" fill="#FFFFFF"/>
<circle cx="22.015" cy="13.228" fill="#0C3554" r="1.5"/>
-<path d="M25.635,11.53l-6.729,2.99c-0.238-0.273-0.434-0.561-0.545-0.852l7.087-3.15 C25.549,10.802,25.613,11.15,25.635,11.53z" opacity="0.2"/>
+<path d="M25.635,11.53l-6.729,2.99c-0.238-0.273-0.434-0.561-0.545-0.852l7.087-3.15 C25.549,10.802,25.613,11.15,25.635,11.53z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M17.043,14.255c0.083,0.187,0.266,0.297,0.457,0.297c0.068,0,0.137-0.014,0.203-0.043l0.424-0.188 c0.702,1.172,2.244,2.128,3.806,2.128c0.385,0,0.771-0.058,1.146-0.185c1.162-0.395,2.051-1.172,2.57-2.247 c0.529-1.096,0.58-2.32,0.393-3.214l0.662-0.294c0.252-0.112,0.365-0.408,0.254-0.66c-0.112-0.252-0.408-0.366-0.66-0.254l-9,4 C17.045,13.707,16.932,14.002,17.043,14.255z M19.052,13.909l6.049-2.688c0.098,0.677,0.032,1.565-0.353,2.361 c-0.406,0.84-1.076,1.423-1.991,1.734C21.326,15.802,19.717,14.885,19.052,13.909z" fill="#3B2314"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="16.9766" y2="24.878">
+<stop offset="0" style="stop-color:#460800"/>
+<stop offset="1" style="stop-color:#992323"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_eyebrows.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_eyebrows.svg Thu May 27 13:10:59 2010 +0300
@@ -1,71 +1,69 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
-<path d="M15,2c7.563,0,13.709,6.002,13.975,13.5C28.98,15.333,29,15.169,29,15c0-7.732-6.268-14-14-14 C7.268,1,1,7.268,1,15c0,0.169,0.02,0.333,0.025,0.5C1.291,8.002,7.437,2,15,2z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M15,2c7.563,0,13.709,6.002,13.975,13.5C28.98,15.333,29,15.169,29,15c0-7.732-6.268-14-14-14 C7.268,1,1,7.268,1,15c0,0.169,0.02,0.333,0.025,0.5C1.291,8.002,7.437,2,15,2z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="22.5" y2="26.25">
- <stop offset="0" style="stop-color:#D48D00"/>
- <stop offset="1" style="stop-color:#FFF1B8"/>
+<stop offset="0" style="stop-color:#D48D00"/>
+<stop offset="1" style="stop-color:#FFF1B8"/>
</linearGradient>
<ellipse cx="15" cy="24" fill="url(#SVGID_2_)" rx="4" ry="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="23.25" y2="25.125">
- <stop offset="0" style="stop-color:#460800"/>
- <stop offset="1" style="stop-color:#992323"/>
+<stop offset="0" style="stop-color:#460800"/>
+<stop offset="1" style="stop-color:#992323"/>
</linearGradient>
<ellipse cx="15" cy="24" fill="url(#SVGID_3_)" rx="4" ry="1"/>
-<path d="M11.555,24.5C12.248,24.202,13.523,24,15,24c1.477,0,2.752,0.202,3.445,0.5C18.789,24.353,19,24.184,19,24 c0-0.553-1.791-1-4-1c-2.209,0-4,0.447-4,1C11,24.184,11.211,24.353,11.555,24.5z" opacity="0.4"/>
-<ellipse cx="20.936" cy="5.254" opacity="0.2" rx="4.36" ry="1.541" transform="matrix(0.9218 -0.3876 0.3876 0.9218 -0.3997 8.5257)"/>
+<path d="M11.555,24.5C12.248,24.202,13.523,24,15,24c1.477,0,2.752,0.202,3.445,0.5C18.789,24.353,19,24.184,19,24 c0-0.553-1.791-1-4-1c-2.209,0-4,0.447-4,1C11,24.184,11.211,24.353,11.555,24.5z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<ellipse cx="20.936" cy="5.254" fill-opacity="0.2" rx="4.36" ry="1.541" stroke-opacity="0.2" transform="matrix(0.9218 -0.3876 0.3876 0.9218 -0.3997 8.5257)"/>
<ellipse cx="20.61" cy="4.926" fill="#3B2314" rx="4.361" ry="1" transform="matrix(0.9218 -0.3876 0.3876 0.9218 -0.2983 8.373)"/>
-<ellipse cx="8.446" cy="6.419" opacity="0.2" rx="4.361" ry="1.541" transform="matrix(-0.9963 -0.0858 0.0858 -0.9963 16.31 13.5396)"/>
+<ellipse cx="8.446" cy="6.419" fill-opacity="0.2" rx="4.361" ry="1.541" stroke-opacity="0.2" transform="matrix(-0.9963 -0.0858 0.0858 -0.9963 16.31 13.5396)"/>
<ellipse cx="8.655" cy="6.007" fill="#3B2314" rx="4.361" ry="1" transform="matrix(-0.9963 -0.0858 0.0858 -0.9963 16.7619 12.7348)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="8.5" x2="8.5" y1="7.5415" y2="19.6124">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M8.5,19C5.467,19,3,16.533,3,13.5C3,10.467,5.467,8,8.5,8s5.5,2.467,5.5,5.5 C14,16.533,11.533,19,8.5,19L8.5,19z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.5" x2="8.5" y1="8.625" y2="18.5013">
- <stop offset="0" style="stop-color:#CCCCCC"/>
- <stop offset="0.2" style="stop-color:#EEEEEE"/>
- <stop offset="1" style="stop-color:#FCFCFC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="8.5" cy="13.5" fill="url(#SVGID_5_)" r="4.5"/>
-<path d="M8.5,10c2.314,0,4.198,1.753,4.45,4c0.019-0.166,0.05-0.329,0.05-0.5C13,11.015,10.985,9,8.5,9 S4,11.015,4,13.5c0,0.171,0.032,0.334,0.05,0.5C4.302,11.753,6.186,10,8.5,10z" opacity="0.2"/>
+<path d="M8.5,10c2.314,0,4.198,1.753,4.45,4c0.019-0.166,0.05-0.329,0.05-0.5C13,11.015,10.985,9,8.5,9 S4,11.015,4,13.5c0,0.171,0.032,0.334,0.05,0.5C4.302,11.753,6.186,10,8.5,10z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M9.5,15C8.122,15,7,13.878,7,12.5S8.122,10,9.5,10s2.5,1.122,2.5,2.5S10.878,15,9.5,15L9.5,15z" fill="#0C3554"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="10.0005" x2="10.0005" y1="12.0034" y2="14.1348">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#84B2D9"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#84B2D9"/>
</linearGradient>
<circle cx="10" cy="13" fill="url(#SVGID_6_)" r="1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="21.5" x2="21.5" y1="7.5415" y2="19.6124">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M21.5,19c-3.033,0-5.5-2.467-5.5-5.5c0-3.033,2.467-5.5,5.5-5.5s5.5,2.467,5.5,5.5 C27,16.533,24.533,19,21.5,19L21.5,19z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="21.5" x2="21.5" y1="8.625" y2="18.5013">
- <stop offset="0" style="stop-color:#CCCCCC"/>
- <stop offset="0.2" style="stop-color:#EEEEEE"/>
- <stop offset="1" style="stop-color:#FCFCFC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="21.5" cy="13.5" fill="url(#SVGID_8_)" r="4.5"/>
-<path d="M21.5,10c2.314,0,4.197,1.753,4.449,4C25.969,13.834,26,13.671,26,13.5c0-2.485-2.015-4.5-4.5-4.5 S17,11.015,17,13.5c0,0.171,0.031,0.334,0.051,0.5C17.303,11.753,19.186,10,21.5,10z" opacity="0.2"/>
+<path d="M21.5,10c2.314,0,4.197,1.753,4.449,4C25.969,13.834,26,13.671,26,13.5c0-2.485-2.015-4.5-4.5-4.5 S17,11.015,17,13.5c0,0.171,0.031,0.334,0.051,0.5C17.303,11.753,19.186,10,21.5,10z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M22.5,15c-1.379,0-2.5-1.122-2.5-2.5s1.121-2.5,2.5-2.5s2.5,1.122,2.5,2.5S23.879,15,22.5,15L22.5,15z" fill="#0C3554"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="23" x2="23" y1="12.0039" y2="14.1352">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#84B2D9"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#84B2D9"/>
</linearGradient>
<circle cx="23" cy="13" fill="url(#SVGID_9_)" r="1"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_heart.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_heart.svg Thu May 27 13:10:59 2010 +0300
@@ -1,18 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<path clip-rule="evenodd" d="M14.05,27.266c-0.25-0.904-2.137-3.52-5.009-5.513 c-0.451-0.313-0.938-0.623-1.437-0.942C4.647,18.923,0.967,16.572,1,11.517C1.042,5.269,4.802,2,8.495,2 c2.596,0,4.931,1.478,6.507,4.038c1.564-2.464,3.938-3.929,6.52-3.929c3.572,0,7.437,2.926,7.479,9.351 c0.032,4.867-3.461,7.167-6.267,9.017c-0.61,0.402-1.204,0.793-1.744,1.198c-2.774,2.083-4.815,4.783-5.003,5.56L15.08,29 L14.05,27.266z" fill-rule="evenodd" opacity="0.6"/>
+<path d="M14.05,27.266c-0.25-0.904-2.137-3.52-5.009-5.513 c-0.451-0.313-0.938-0.623-1.437-0.942C4.647,18.923,0.967,16.572,1,11.517C1.042,5.269,4.802,2,8.495,2 c2.596,0,4.931,1.478,6.507,4.038c1.564-2.464,3.938-3.929,6.52-3.929c3.572,0,7.437,2.926,7.479,9.351 c0.032,4.867-3.461,7.167-6.267,9.017c-0.61,0.402-1.204,0.793-1.744,1.198c-2.774,2.083-4.815,4.783-5.003,5.56L15.08,29 L14.05,27.266z" fill-opacity="0.6" fill-rule="evenodd" stroke-opacity="0.6"/>
<radialGradient cx="30.8457" cy="15.8979" gradientTransform="matrix(0.9286 0 0 0.984 -13.6423 -6.1737)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="13.8351">
- <stop offset="0" style="stop-color:#FF6855"/>
- <stop offset="1" style="stop-color:#CC0E06"/>
+<stop offset="0" style="stop-color:#FF6855"/>
+<stop offset="1" style="stop-color:#CC0E06"/>
</radialGradient>
-<path clip-rule="evenodd" d="M14.994,8.245C11.629-0.077,2.064,1.864,2,11.523 c-0.035,5.305,4.555,7.288,7.611,9.408c2.963,2.057,5.072,4.87,5.403,6.068c0.283-1.174,2.632-4.066,5.375-6.125 c3-2.252,7.646-4.104,7.611-9.409C27.937,1.783,18.205,0.255,14.994,8.245z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
-<path clip-rule="evenodd" d="M14.994,9.245 c3.146-7.832,12.552-6.514,12.984,2.659c0.006-0.146,0.022-0.286,0.021-0.438c-0.063-9.683-9.795-11.211-13.006-3.221 C11.629-0.077,2.064,1.864,2,11.523C2,11.675,2.015,11.815,2.021,11.962C2.448,2.796,11.696,1.088,14.994,9.245z" fill="#FFFFFF" fill-rule="evenodd" opacity="0.3"/>
+<path d="M14.994,8.245C11.629-0.077,2.064,1.864,2,11.523 c-0.035,5.305,4.555,7.288,7.611,9.408c2.963,2.057,5.072,4.87,5.403,6.068c0.283-1.174,2.632-4.066,5.375-6.125 c3-2.252,7.646-4.104,7.611-9.409C27.937,1.783,18.205,0.255,14.994,8.245z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M14.994,9.245 c3.146-7.832,12.552-6.514,12.984,2.659c0.006-0.146,0.022-0.286,0.021-0.438c-0.063-9.683-9.795-11.211-13.006-3.221 C11.629-0.077,2.064,1.864,2,11.523C2,11.675,2.015,11.815,2.021,11.962C2.448,2.796,11.696,1.088,14.994,9.245z" fill="#FFFFFF" fill-opacity="0.3" fill-rule="evenodd" stroke-opacity="0.3"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_irritated.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_irritated.svg Thu May 27 13:10:59 2010 +0300
@@ -1,28 +1,26 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
-<path d="M24.854,22.146l-3-3c-0.195-0.195-0.512-0.195-0.707,0L18.5,21.793l-2.646-2.646 c-0.195-0.195-0.512-0.195-0.707,0L12.5,21.793l-2.646-2.646c-0.195-0.195-0.512-0.195-0.707,0l-3,3 c-0.195,0.195-0.195,0.512,0,0.707C6.244,22.951,6.372,23,6.5,23s0.256-0.049,0.354-0.146L9.5,20.207l2.646,2.646 C12.244,22.951,12.372,23,12.5,23s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C18.244,22.951,18.372,23,18.5,23 s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C24.244,22.951,24.372,23,24.5,23s0.256-0.049,0.354-0.146 C25.049,22.658,25.049,22.342,24.854,22.146z" opacity="0.4"/>
-<path d="M24.854,20.146l-3-3c-0.195-0.195-0.512-0.195-0.707,0L18.5,19.793l-2.646-2.646 c-0.195-0.195-0.512-0.195-0.707,0L12.5,19.793l-2.646-2.646c-0.195-0.195-0.512-0.195-0.707,0l-3,3 c-0.195,0.195-0.195,0.512,0,0.707C6.244,20.951,6.372,21,6.5,21s0.256-0.049,0.354-0.146L9.5,18.207l2.646,2.646 C12.244,20.951,12.372,21,12.5,21s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C18.244,20.951,18.372,21,18.5,21 s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C24.244,20.951,24.372,21,24.5,21s0.256-0.049,0.354-0.146 C25.049,20.658,25.049,20.342,24.854,20.146z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M24.854,22.146l-3-3c-0.195-0.195-0.512-0.195-0.707,0L18.5,21.793l-2.646-2.646 c-0.195-0.195-0.512-0.195-0.707,0L12.5,21.793l-2.646-2.646c-0.195-0.195-0.512-0.195-0.707,0l-3,3 c-0.195,0.195-0.195,0.512,0,0.707C6.244,22.951,6.372,23,6.5,23s0.256-0.049,0.354-0.146L9.5,20.207l2.646,2.646 C12.244,22.951,12.372,23,12.5,23s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C18.244,22.951,18.372,23,18.5,23 s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C24.244,22.951,24.372,23,24.5,23s0.256-0.049,0.354-0.146 C25.049,22.658,25.049,22.342,24.854,22.146z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24.854,20.146l-3-3c-0.195-0.195-0.512-0.195-0.707,0L18.5,19.793l-2.646-2.646 c-0.195-0.195-0.512-0.195-0.707,0L12.5,19.793l-2.646-2.646c-0.195-0.195-0.512-0.195-0.707,0l-3,3 c-0.195,0.195-0.195,0.512,0,0.707C6.244,20.951,6.372,21,6.5,21s0.256-0.049,0.354-0.146L9.5,18.207l2.646,2.646 C12.244,20.951,12.372,21,12.5,21s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C18.244,20.951,18.372,21,18.5,21 s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C24.244,20.951,24.372,21,24.5,21s0.256-0.049,0.354-0.146 C25.049,20.658,25.049,20.342,24.854,20.146z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M24.854,21.146l-3-3c-0.195-0.195-0.512-0.195-0.707,0L18.5,20.793l-2.646-2.646 c-0.195-0.195-0.512-0.195-0.707,0L12.5,20.793l-2.646-2.646c-0.195-0.195-0.512-0.195-0.707,0l-3,3 c-0.195,0.195-0.195,0.512,0,0.707C6.244,21.951,6.372,22,6.5,22s0.256-0.049,0.354-0.146L9.5,19.207l2.646,2.646 C12.244,21.951,12.372,22,12.5,22s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C18.244,21.951,18.372,22,18.5,22 s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C24.244,21.951,24.372,22,24.5,22s0.256-0.049,0.354-0.146 C25.049,21.658,25.049,21.342,24.854,21.146z" fill="#3B2314"/>
-<path d="M6.5,16c-0.198,0-0.386-0.118-0.464-0.314c-0.103-0.256,0.022-0.547,0.279-0.65l3.839-2.536l-3.839-0.535 c-0.256-0.103-0.381-0.394-0.279-0.65c0.103-0.257,0.395-0.382,0.65-0.279l6.161,1.464l-6.161,3.465C6.625,15.989,6.562,16,6.5,16 L6.5,16z" opacity="0.4"/>
-<path d="M6.5,14c-0.198,0-0.386-0.119-0.464-0.314c-0.103-0.256,0.022-0.547,0.279-0.65l3.839-0.536 L6.314,9.965c-0.256-0.103-0.381-0.394-0.279-0.65c0.103-0.257,0.395-0.382,0.65-0.279l6.161,3.464l-6.161,1.465 C6.625,13.989,6.562,14,6.5,14L6.5,14z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M6.5,16c-0.198,0-0.386-0.118-0.464-0.314c-0.103-0.256,0.022-0.547,0.279-0.65l3.839-2.536l-3.839-0.535 c-0.256-0.103-0.381-0.394-0.279-0.65c0.103-0.257,0.395-0.382,0.65-0.279l6.161,1.464l-6.161,3.465C6.625,15.989,6.562,16,6.5,16 L6.5,16z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M6.5,14c-0.198,0-0.386-0.119-0.464-0.314c-0.103-0.256,0.022-0.547,0.279-0.65l3.839-0.536 L6.314,9.965c-0.256-0.103-0.381-0.394-0.279-0.65c0.103-0.257,0.395-0.382,0.65-0.279l6.161,3.464l-6.161,1.465 C6.625,13.989,6.562,14,6.5,14L6.5,14z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M6.5,15c-0.198,0-0.386-0.119-0.464-0.314c-0.103-0.256,0.022-0.547,0.279-0.65l3.839-1.536l-3.839-1.536 c-0.256-0.103-0.381-0.394-0.279-0.65c0.103-0.257,0.395-0.382,0.65-0.279l6.161,2.464l-6.161,2.464C6.625,14.989,6.562,15,6.5,15 L6.5,15z" fill="#3B2314"/>
-<path d="M23.346,16c0.199,0,0.387-0.118,0.465-0.314c0.103-0.256-0.022-0.547-0.279-0.65L19.692,12.5l3.839-0.535 c0.257-0.103,0.382-0.394,0.279-0.65c-0.103-0.257-0.395-0.382-0.65-0.279L17,12.5l6.16,3.465C23.221,15.989,23.284,16,23.346,16 L23.346,16z" opacity="0.4"/>
-<path d="M23.346,14c0.199,0,0.387-0.119,0.465-0.314c0.103-0.256-0.022-0.547-0.279-0.65L19.692,12.5 l3.839-2.535c0.257-0.103,0.382-0.394,0.279-0.65c-0.103-0.257-0.395-0.382-0.65-0.279L17,12.5l6.16,1.465 C23.221,13.989,23.284,14,23.346,14L23.346,14z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M23.346,16c0.199,0,0.387-0.118,0.465-0.314c0.103-0.256-0.022-0.547-0.279-0.65L19.692,12.5l3.839-0.535 c0.257-0.103,0.382-0.394,0.279-0.65c-0.103-0.257-0.395-0.382-0.65-0.279L17,12.5l6.16,3.465C23.221,15.989,23.284,16,23.346,16 L23.346,16z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M23.346,14c0.199,0,0.387-0.119,0.465-0.314c0.103-0.256-0.022-0.547-0.279-0.65L19.692,12.5 l3.839-2.535c0.257-0.103,0.382-0.394,0.279-0.65c-0.103-0.257-0.395-0.382-0.65-0.279L17,12.5l6.16,1.465 C23.221,13.989,23.284,14,23.346,14L23.346,14z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M23.346,15c0.199,0,0.387-0.119,0.465-0.314c0.103-0.256-0.022-0.547-0.279-0.65L19.692,12.5l3.839-1.536 c0.257-0.103,0.382-0.394,0.279-0.65c-0.103-0.257-0.395-0.382-0.65-0.279L17,12.5l6.16,2.464C23.221,14.989,23.284,15,23.346,15 L23.346,15z" fill="#3B2314"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_kissing.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_kissing.svg Thu May 27 13:10:59 2010 +0300
@@ -1,44 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="6" cy="-65.7227" gradientTransform="matrix(1 0 0 1.1014 0 84.2272)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="5.1913">
- <stop offset="0" style="stop-color:#F36227"/>
- <stop offset="1" style="stop-color:#FFB701"/>
+<stop offset="0" style="stop-color:#F36227"/>
+<stop offset="1" style="stop-color:#FFB701"/>
</radialGradient>
<ellipse cx="6" cy="14.746" fill="url(#SVGID_2_)" rx="4" ry="2.746"/>
<radialGradient cx="24" cy="-65.7227" gradientTransform="matrix(1 0 0 1.1014 0 84.2272)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="5.1913">
- <stop offset="0" style="stop-color:#F36227"/>
- <stop offset="1" style="stop-color:#FFB701"/>
+<stop offset="0" style="stop-color:#F36227"/>
+<stop offset="1" style="stop-color:#FFB701"/>
</radialGradient>
<ellipse cx="24" cy="14.746" fill="url(#SVGID_3_)" rx="4" ry="2.746"/>
-<path d="M17.387,16c-1.181,0-1.919,0.746-2.386,1.25C14.534,16.746,13.794,16,12.613,16 C10,16,10,18.5,6.25,19.75C8.75,19.75,7.5,26,15,26s6.25-6.25,8.75-6.25C20,18.5,20.568,16,17.387,16z" fill="#3B2314" opacity="0.4"/>
+<path d="M17.387,16c-1.181,0-1.919,0.746-2.386,1.25C14.534,16.746,13.794,16,12.613,16 C10,16,10,18.5,6.25,19.75C8.75,19.75,7.5,26,15,26s6.25-6.25,8.75-6.25C20,18.5,20.568,16,17.387,16z" fill="#3B2314" fill-opacity="0.4" stroke-opacity="0.4"/>
<radialGradient cx="15.1372" cy="19.4775" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="7.6943">
- <stop offset="0" style="stop-color:#FF6855"/>
- <stop offset="1" style="stop-color:#CC0E06"/>
+<stop offset="0" style="stop-color:#FF6855"/>
+<stop offset="1" style="stop-color:#CC0E06"/>
</radialGradient>
<path d="M17.387,16c-1.181,0-1.919,0.746-2.386,1.25C14.534,16.746,13.794,16,12.613,16 C10,16,10,18.5,6.25,19.75c2.5,0,2.5,5,8.75,5s6.25-5,8.75-5C20,18.5,20.568,16,17.387,16z" fill="url(#SVGID_4_)"/>
-<ellipse cx="14.941" cy="19.75" fill="#821014" opacity="0.9" rx="2.441" ry="0.625"/>
-<ellipse cx="11.754" cy="21.625" fill="#FFFFFF" opacity="0.5" rx="1.754" ry="0.625"/>
-<ellipse cx="18.629" cy="21.625" fill="#FFFFFF" opacity="0.5" rx="1.129" ry="0.625"/>
-<path d="M9.016,11.611c-1.108,0-2.177-0.421-3.002-1.17l-0.675,0.675 c-0.195,0.195-0.512,0.195-0.707,0s-0.195-0.512,0-0.707L6.04,9l0.352,0.402c0.672,0.769,1.628,1.209,2.624,1.209 s1.952-0.44,2.624-1.209c0.182-0.209,0.498-0.23,0.706-0.047c0.208,0.182,0.229,0.498,0.047,0.706 C11.53,11.046,10.3,11.611,9.016,11.611L9.016,11.611z" fill="#FFFFFF" opacity="0.3"/>
-<path d="M20.984,11.611c1.108,0,2.177-0.421,3.002-1.17l0.676,0.675c0.195,0.195,0.512,0.195,0.707,0 s0.195-0.512,0-0.707L23.96,9l-0.353,0.402c-0.672,0.769-1.627,1.209-2.623,1.209s-1.951-0.44-2.623-1.209 c-0.183-0.209-0.498-0.23-0.706-0.047c-0.208,0.182-0.229,0.498-0.048,0.706C18.47,11.046,19.7,11.611,20.984,11.611L20.984,11.611z " fill="#FFFFFF" opacity="0.3"/>
-<path d="M9.016,13.125c-1.108,0-2.177-0.421-3.002-1.17L5.338,12.63c-0.195,0.195-0.512,0.195-0.707,0 s-0.195-0.512,0-0.707l1.409-1.409l0.352,0.402c0.672,0.769,1.628,1.209,2.624,1.209s1.952-0.44,2.624-1.209 c0.182-0.209,0.498-0.23,0.706-0.047c0.208,0.182,0.229,0.498,0.047,0.706C11.53,12.56,10.3,13.125,9.016,13.125L9.016,13.125z" opacity="0.4"/>
-<path d="M20.984,13.125c1.108,0,2.177-0.421,3.002-1.17l0.676,0.675c0.195,0.195,0.512,0.195,0.707,0 s0.195-0.512,0-0.707l-1.409-1.409l-0.353,0.402c-0.672,0.769-1.627,1.209-2.623,1.209s-1.951-0.44-2.623-1.209 c-0.183-0.209-0.498-0.23-0.706-0.047c-0.208,0.182-0.229,0.498-0.048,0.706C18.47,12.56,19.7,13.125,20.984,13.125L20.984,13.125z" opacity="0.4"/>
+<ellipse cx="14.941" cy="19.75" fill="#821014" fill-opacity="0.9" rx="2.441" ry="0.625" stroke-opacity="0.9"/>
+<ellipse cx="11.754" cy="21.625" fill="#FFFFFF" fill-opacity="0.5" rx="1.754" ry="0.625" stroke-opacity="0.5"/>
+<ellipse cx="18.629" cy="21.625" fill="#FFFFFF" fill-opacity="0.5" rx="1.129" ry="0.625" stroke-opacity="0.5"/>
+<path d="M9.016,11.611c-1.108,0-2.177-0.421-3.002-1.17l-0.675,0.675 c-0.195,0.195-0.512,0.195-0.707,0s-0.195-0.512,0-0.707L6.04,9l0.352,0.402c0.672,0.769,1.628,1.209,2.624,1.209 s1.952-0.44,2.624-1.209c0.182-0.209,0.498-0.23,0.706-0.047c0.208,0.182,0.229,0.498,0.047,0.706 C11.53,11.046,10.3,11.611,9.016,11.611L9.016,11.611z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M20.984,11.611c1.108,0,2.177-0.421,3.002-1.17l0.676,0.675c0.195,0.195,0.512,0.195,0.707,0 s0.195-0.512,0-0.707L23.96,9l-0.353,0.402c-0.672,0.769-1.627,1.209-2.623,1.209s-1.951-0.44-2.623-1.209 c-0.183-0.209-0.498-0.23-0.706-0.047c-0.208,0.182-0.229,0.498-0.048,0.706C18.47,11.046,19.7,11.611,20.984,11.611L20.984,11.611z " fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M9.016,13.125c-1.108,0-2.177-0.421-3.002-1.17L5.338,12.63c-0.195,0.195-0.512,0.195-0.707,0 s-0.195-0.512,0-0.707l1.409-1.409l0.352,0.402c0.672,0.769,1.628,1.209,2.624,1.209s1.952-0.44,2.624-1.209 c0.182-0.209,0.498-0.23,0.706-0.047c0.208,0.182,0.229,0.498,0.047,0.706C11.53,12.56,10.3,13.125,9.016,13.125L9.016,13.125z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M20.984,13.125c1.108,0,2.177-0.421,3.002-1.17l0.676,0.675c0.195,0.195,0.512,0.195,0.707,0 s0.195-0.512,0-0.707l-1.409-1.409l-0.353,0.402c-0.672,0.769-1.627,1.209-2.623,1.209s-1.951-0.44-2.623-1.209 c-0.183-0.209-0.498-0.23-0.706-0.047c-0.208,0.182-0.229,0.498-0.048,0.706C18.47,12.56,19.7,13.125,20.984,13.125L20.984,13.125z" fill-opacity="0.4" stroke-opacity="0.4"/>
<path d="M9.016,12.313c-1.108,0-2.177-0.421-3.002-1.17l-0.675,0.675c-0.195,0.195-0.512,0.195-0.707,0 s-0.195-0.512,0-0.707L6.04,9.701l0.352,0.402c0.672,0.769,1.628,1.209,2.624,1.209s1.952-0.44,2.624-1.209 c0.182-0.209,0.498-0.23,0.706-0.047c0.208,0.182,0.229,0.498,0.047,0.706C11.53,11.747,10.3,12.313,9.016,12.313L9.016,12.313z" fill="#3B2314"/>
<path d="M20.984,12.313c1.108,0,2.177-0.421,3.002-1.17l0.676,0.675c0.195,0.195,0.512,0.195,0.707,0 s0.195-0.512,0-0.707L23.96,9.701l-0.353,0.402c-0.672,0.769-1.627,1.209-2.623,1.209s-1.951-0.44-2.623-1.209 c-0.183-0.209-0.498-0.23-0.706-0.047c-0.208,0.182-0.229,0.498-0.048,0.706C18.47,11.747,19.7,12.313,20.984,12.313L20.984,12.313z " fill="#3B2314"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_nerd.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_nerd.svg Thu May 27 13:10:59 2010 +0300
@@ -1,48 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
-<path d="M27,13.5c0-0.537-0.08-1.055-0.225-1.545C26.85,11.972,26.92,12,27,12h1.67c-0.15-0.688-0.357-1.354-0.605-2 H27c-0.383,0-0.703,0.222-0.871,0.536C25.15,9.013,23.445,8,21.5,8c-2.517,0-4.634,1.692-5.287,4h-2.425 C13.134,9.692,11.017,8,8.5,8c-1.945,0-3.651,1.013-4.628,2.537C3.703,10.222,3.382,10,3,10H1.936c-0.248,0.646-0.455,1.312-0.605,2 H3c0.08,0,0.15-0.028,0.224-0.045C3.081,12.445,3,12.963,3,13.5C3,16.537,5.462,19,8.5,19c2.869,0,5.222-2.197,5.475-5h2.051 c0.253,2.803,2.605,5,5.475,5C24.537,19,27,16.537,27,13.5z M13,13.505C12.997,15.984,10.98,18,8.5,18C6.019,18,4,15.981,4,13.5 S6.019,9,8.5,9c2.48,0,4.497,2.016,4.5,4.495V13.505z M21.5,18c-2.481,0-4.5-2.019-4.5-4.5S19.019,9,21.5,9s4.5,2.019,4.5,4.5 S23.981,18,21.5,18z" opacity="0.4"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M27,13.5c0-0.537-0.08-1.055-0.225-1.545C26.85,11.972,26.92,12,27,12h1.67c-0.15-0.688-0.357-1.354-0.605-2 H27c-0.383,0-0.703,0.222-0.871,0.536C25.15,9.013,23.445,8,21.5,8c-2.517,0-4.634,1.692-5.287,4h-2.425 C13.134,9.692,11.017,8,8.5,8c-1.945,0-3.651,1.013-4.628,2.537C3.703,10.222,3.382,10,3,10H1.936c-0.248,0.646-0.455,1.312-0.605,2 H3c0.08,0,0.15-0.028,0.224-0.045C3.081,12.445,3,12.963,3,13.5C3,16.537,5.462,19,8.5,19c2.869,0,5.222-2.197,5.475-5h2.051 c0.253,2.803,2.605,5,5.475,5C24.537,19,27,16.537,27,13.5z M13,13.505C12.997,15.984,10.98,18,8.5,18C6.019,18,4,15.981,4,13.5 S6.019,9,8.5,9c2.48,0,4.497,2.016,4.5,4.495V13.505z M21.5,18c-2.481,0-4.5-2.019-4.5-4.5S19.019,9,21.5,9s4.5,2.019,4.5,4.5 S23.981,18,21.5,18z" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4" x2="13" y1="12.5" y2="12.5">
- <stop offset="0" style="stop-color:#CCCCCC"/>
- <stop offset="0.2" style="stop-color:#EEEEEE"/>
- <stop offset="1" style="stop-color:#FCFCFC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<path d="M8.5,17C6.019,17,4,14.981,4,12.5S6.019,8,8.5,8s4.5,2.019,4.5,4.5S10.981,17,8.5,17L8.5,17z" fill="url(#SVGID_2_)"/>
<path d="M8.5,7C5.462,7,3,9.462,3,12.5S5.462,18,8.5,18s5.5-2.462,5.5-5.5S11.538,7,8.5,7z M8.5,17 C6.019,17,4,14.981,4,12.5S6.019,8,8.5,8s4.5,2.019,4.5,4.5S10.981,17,8.5,17z" fill="#3B2314"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17" x2="26" y1="12.5" y2="12.5">
- <stop offset="0" style="stop-color:#CCCCCC"/>
- <stop offset="0.2" style="stop-color:#EEEEEE"/>
- <stop offset="1" style="stop-color:#FCFCFC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<path d="M21.5,17c-2.481,0-4.5-2.019-4.5-4.5S19.019,8,21.5,8s4.5,2.019,4.5,4.5S23.981,17,21.5,17L21.5,17z" fill="url(#SVGID_3_)"/>
<path d="M21.5,7C18.463,7,16,9.462,16,12.5s2.463,5.5,5.5,5.5s5.5-2.462,5.5-5.5S24.537,7,21.5,7z M21.5,17 c-2.481,0-4.5-2.019-4.5-4.5S19.019,8,21.5,8s4.5,2.019,4.5,4.5S23.981,17,21.5,17z" fill="#3B2314"/>
<rect fill="#3B2314" height="2" width="4" x="13" y="11"/>
<path d="M30,10c0,0.552-0.448,1-1,1h-2c-0.553,0-1-0.448-1-1l0,0c0-0.552,0.447-1,1-1h2C29.552,9,30,9.448,30,10 L30,10z" fill="#3B2314"/>
<path d="M4,10c0,0.552-0.448,1-1,1H1c-0.552,0-1-0.448-1-1l0,0c0-0.552,0.448-1,1-1h2C3.552,9,4,9.448,4,10L4,10z" fill="#3B2314"/>
-<path d="M8.5,9c2.31,0,4.197,1.756,4.449,4C12.968,12.834,13,12.671,13,12.5C13,10.019,10.981,8,8.5,8 S4,10.019,4,12.5c0,0.171,0.032,0.334,0.051,0.5C4.303,10.756,6.19,9,8.5,9z" opacity="0.3"/>
-<path d="M21.5,9c2.311,0,4.197,1.756,4.449,4C25.969,12.834,26,12.671,26,12.5c0-2.481-2.019-4.5-4.5-4.5 S17,10.019,17,12.5c0,0.171,0.031,0.334,0.051,0.5C17.303,10.756,19.189,9,21.5,9z" opacity="0.3"/>
-<path d="M15.075,25c-5.617,0-9.75-2.752-11.056-7.363c-0.075-0.266,0.079-0.542,0.345-0.617 c0.262-0.075,0.542,0.078,0.617,0.345C6.158,21.52,9.856,23,15,23c5.143,0,8.993-1.48,10.17-5.636 c0.074-0.267,0.355-0.42,0.617-0.345c0.266,0.075,0.42,0.352,0.344,0.617C24.826,22.248,20.692,25,15.075,25L15.075,25z" opacity="0.2"/>
-<path d="M27,19.969l-0.942-2.238c0.062-0.307-0.087-0.621-0.347-0.707 c-0.262-0.09-0.542,0.093-0.617,0.409C23.917,22.367,20.145,24.5,15,24.5c-5.144,0-8.917-2.133-10.095-7.067 c-0.075-0.316-0.355-0.499-0.617-0.409c-0.259,0.086-0.408,0.4-0.346,0.707L3,19.969c0.497,0,0.957-0.505,1.293-1.014 C5.888,23.702,9.807,26,15,26c5.189,0,9.107-2.295,10.704-7.038C25.994,19.344,26.407,19.734,27,19.969z" fill="#FFFFFF" opacity="0.6"/>
+<path d="M8.5,9c2.31,0,4.197,1.756,4.449,4C12.968,12.834,13,12.671,13,12.5C13,10.019,10.981,8,8.5,8 S4,10.019,4,12.5c0,0.171,0.032,0.334,0.051,0.5C4.303,10.756,6.19,9,8.5,9z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M21.5,9c2.311,0,4.197,1.756,4.449,4C25.969,12.834,26,12.671,26,12.5c0-2.481-2.019-4.5-4.5-4.5 S17,10.019,17,12.5c0,0.171,0.031,0.334,0.051,0.5C17.303,10.756,19.189,9,21.5,9z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M15.075,25c-5.617,0-9.75-2.752-11.056-7.363c-0.075-0.266,0.079-0.542,0.345-0.617 c0.262-0.075,0.542,0.078,0.617,0.345C6.158,21.52,9.856,23,15,23c5.143,0,8.993-1.48,10.17-5.636 c0.074-0.267,0.355-0.42,0.617-0.345c0.266,0.075,0.42,0.352,0.344,0.617C24.826,22.248,20.692,25,15.075,25L15.075,25z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M27,19.969l-0.942-2.238c0.062-0.307-0.087-0.621-0.347-0.707 c-0.262-0.09-0.542,0.093-0.617,0.409C23.917,22.367,20.145,24.5,15,24.5c-5.144,0-8.917-2.133-10.095-7.067 c-0.075-0.316-0.355-0.499-0.617-0.409c-0.259,0.086-0.408,0.4-0.346,0.707L3,19.969c0.497,0,0.957-0.505,1.293-1.014 C5.888,23.702,9.807,26,15,26c5.189,0,9.107-2.295,10.704-7.038C25.994,19.344,26.407,19.734,27,19.969z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="14.9995" x2="14.9995" y1="17.1426" y2="25.0441">
- <stop offset="0" style="stop-color:#460800"/>
- <stop offset="1" style="stop-color:#992323"/>
+<stop offset="0" style="stop-color:#460800"/>
+<stop offset="1" style="stop-color:#992323"/>
</linearGradient>
<path d="M27,19.5l-0.942-1.885c0.062-0.258-0.087-0.522-0.347-0.596c-0.262-0.075-0.542,0.078-0.617,0.345 C23.917,21.52,20.144,24,15,24s-8.917-2.48-10.094-6.636c-0.075-0.267-0.355-0.42-0.617-0.345c-0.259,0.073-0.408,0.338-0.346,0.596 L3,19.5c0.497,0,0.957-0.426,1.293-0.854C5.888,22.645,9.807,25,15,25c5.189,0,9.107-2.354,10.704-6.348 C25.994,18.974,26.407,19.303,27,19.5z" fill="url(#SVGID_4_)"/>
<circle cx="8.5" cy="12.5" fill="#0C3554" r="1.5"/>
<circle cx="21.5" cy="12.5" fill="#0C3554" r="1.5"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_neutral.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_neutral.svg Thu May 27 13:10:59 2010 +0300
@@ -1,58 +1,56 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="7.5415" y2="19.6124">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M8.5,19C5.467,19,3,16.533,3,13.5C3,10.467,5.467,8,8.5,8s5.5,2.467,5.5,5.5 C14,16.533,11.533,19,8.5,19L8.5,19z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.5" x2="8.5" y1="8.625" y2="18.5013">
- <stop offset="0" style="stop-color:#CCCCCC"/>
- <stop offset="0.2" style="stop-color:#EEEEEE"/>
- <stop offset="1" style="stop-color:#FCFCFC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="8.5" cy="13.5" fill="url(#SVGID_3_)" r="4.5"/>
-<path d="M8.5,10c2.314,0,4.198,1.753,4.45,4c0.019-0.166,0.05-0.329,0.05-0.5C13,11.015,10.985,9,8.5,9 S4,11.015,4,13.5c0,0.171,0.032,0.334,0.05,0.5C4.302,11.753,6.186,10,8.5,10z" opacity="0.2"/>
+<path d="M8.5,10c2.314,0,4.198,1.753,4.45,4c0.019-0.166,0.05-0.329,0.05-0.5C13,11.015,10.985,9,8.5,9 S4,11.015,4,13.5c0,0.171,0.032,0.334,0.05,0.5C4.302,11.753,6.186,10,8.5,10z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M8.5,16C7.122,16,6,14.878,6,13.5S7.122,11,8.5,11s2.5,1.122,2.5,2.5S9.878,16,8.5,16L8.5,16z" fill="#0C3554"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9.0005" x2="9.0005" y1="13.0034" y2="15.1348">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#9BD1FF"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#9BD1FF"/>
</linearGradient>
<circle cx="9" cy="14" fill="url(#SVGID_4_)" r="1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.5" x2="21.5" y1="7.5415" y2="19.6124">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M21.5,19c-3.033,0-5.5-2.467-5.5-5.5c0-3.033,2.467-5.5,5.5-5.5s5.5,2.467,5.5,5.5 C27,16.533,24.533,19,21.5,19L21.5,19z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="21.5" x2="21.5" y1="8.625" y2="18.5013">
- <stop offset="0" style="stop-color:#CCCCCC"/>
- <stop offset="0.2" style="stop-color:#EEEEEE"/>
- <stop offset="1" style="stop-color:#FCFCFC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="21.5" cy="13.5" fill="url(#SVGID_6_)" r="4.5"/>
-<path d="M21.5,10c2.314,0,4.197,1.753,4.449,4C25.969,13.834,26,13.671,26,13.5c0-2.485-2.015-4.5-4.5-4.5 S17,11.015,17,13.5c0,0.171,0.031,0.334,0.051,0.5C17.303,11.753,19.186,10,21.5,10z" opacity="0.2"/>
+<path d="M21.5,10c2.314,0,4.197,1.753,4.449,4C25.969,13.834,26,13.671,26,13.5c0-2.485-2.015-4.5-4.5-4.5 S17,11.015,17,13.5c0,0.171,0.031,0.334,0.051,0.5C17.303,11.753,19.186,10,21.5,10z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M21.5,16c-1.379,0-2.5-1.122-2.5-2.5s1.121-2.5,2.5-2.5s2.5,1.122,2.5,2.5S22.879,16,21.5,16L21.5,16z" fill="#0C3554"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="22" x2="22" y1="13.0039" y2="15.1352">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#9BD1FF"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#9BD1FF"/>
</linearGradient>
<circle cx="22" cy="14" fill="url(#SVGID_7_)" r="1"/>
-<path d="M21,23c0,0.553-0.224,1-0.5,1h-11C9.224,24,9,23.553,9,23l0,0c0-0.553,0.224-1,0.5-1h11 C20.776,22,21,22.447,21,23L21,23z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M21,22c0,0.553-0.224,1-0.5,1h-11C9.224,23,9,22.553,9,22l0,0c0-0.553,0.224-1,0.5-1h11 C20.776,21,21,21.447,21,22L21,22z" opacity="0.4"/>
+<path d="M21,23c0,0.553-0.224,1-0.5,1h-11C9.224,24,9,23.553,9,23l0,0c0-0.553,0.224-1,0.5-1h11 C20.776,22,21,22.447,21,23L21,23z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M21,22c0,0.553-0.224,1-0.5,1h-11C9.224,23,9,22.553,9,22l0,0c0-0.553,0.224-1,0.5-1h11 C20.776,21,21,21.447,21,22L21,22z" fill-opacity="0.4" stroke-opacity="0.4"/>
<path d="M21,22.5c0,0.276-0.224,0.5-0.5,0.5h-11C9.224,23,9,22.776,9,22.5l0,0C9,22.224,9.224,22,9.5,22h11 C20.776,22,21,22.224,21,22.5L21,22.5z" fill="#3B2314"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_sarcastic.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_sarcastic.svg Thu May 27 13:10:59 2010 +0300
@@ -1,66 +1,64 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
-<ellipse cx="21.936" cy="4.792" opacity="0.2" rx="4.361" ry="1.541" transform="matrix(0.9218 -0.3877 0.3877 0.9218 -0.1423 8.8784)"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<ellipse cx="21.936" cy="4.792" fill-opacity="0.2" rx="4.361" ry="1.541" stroke-opacity="0.2" transform="matrix(0.9218 -0.3877 0.3877 0.9218 -0.1423 8.8784)"/>
<ellipse cx="21.611" cy="4.464" fill="#3B2314" rx="4.361" ry="1" transform="matrix(0.9218 -0.3876 0.3876 0.9218 -0.041 8.7248)"/>
-<ellipse cx="7.636" cy="4.792" opacity="0.2" rx="4.361" ry="1.541" transform="matrix(-0.9218 -0.3877 0.3877 -0.9218 12.8176 12.1696)"/>
+<ellipse cx="7.636" cy="4.792" fill-opacity="0.2" rx="4.361" ry="1.541" stroke-opacity="0.2" transform="matrix(-0.9218 -0.3877 0.3877 -0.9218 12.8176 12.1696)"/>
<ellipse cx="7.961" cy="4.464" fill="#3B2314" rx="4.361" ry="1" transform="matrix(-0.9218 -0.3876 0.3876 -0.9218 13.5697 11.665)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="6.5415" y2="18.6124">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M8.5,18C5.467,18,3,15.533,3,12.5S5.467,7,8.5,7S14,9.467,14,12.5S11.533,18,8.5,18L8.5,18z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.5" x2="8.5" y1="7.625" y2="17.5013">
- <stop offset="0" style="stop-color:#CCCCCC"/>
- <stop offset="0.2" style="stop-color:#EEEEEE"/>
- <stop offset="1" style="stop-color:#FCFCFC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="8.5" cy="12.5" fill="url(#SVGID_3_)" r="4.5"/>
-<path d="M8.5,9c2.314,0,4.198,1.753,4.45,4c0.019-0.166,0.05-0.329,0.05-0.5C13,10.015,10.985,8,8.5,8 S4,10.015,4,12.5c0,0.171,0.032,0.334,0.05,0.5C4.302,10.753,6.186,9,8.5,9z" opacity="0.2"/>
+<path d="M8.5,9c2.314,0,4.198,1.753,4.45,4c0.019-0.166,0.05-0.329,0.05-0.5C13,10.015,10.985,8,8.5,8 S4,10.015,4,12.5c0,0.171,0.032,0.334,0.05,0.5C4.302,10.753,6.186,9,8.5,9z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M9.5,14C8.122,14,7,12.878,7,11.5S8.122,9,9.5,9s2.5,1.122,2.5,2.5S10.878,14,9.5,14L9.5,14z" fill="#0C3554"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="10.0005" x2="10.0005" y1="11.0034" y2="13.1348">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#84B2D9"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#84B2D9"/>
</linearGradient>
<circle cx="10" cy="12" fill="url(#SVGID_4_)" r="1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.5" x2="21.5" y1="6.5415" y2="18.6124">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M21.5,18c-3.033,0-5.5-2.467-5.5-5.5S18.467,7,21.5,7S27,9.467,27,12.5S24.533,18,21.5,18L21.5,18z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="21.5" x2="21.5" y1="7.625" y2="17.5013">
- <stop offset="0" style="stop-color:#CCCCCC"/>
- <stop offset="0.2" style="stop-color:#EEEEEE"/>
- <stop offset="1" style="stop-color:#FCFCFC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="21.5" cy="12.5" fill="url(#SVGID_6_)" r="4.5"/>
-<path d="M21.5,9c2.314,0,4.197,1.753,4.449,4C25.969,12.834,26,12.671,26,12.5c0-2.485-2.015-4.5-4.5-4.5 S17,10.015,17,12.5c0,0.171,0.031,0.334,0.051,0.5C17.303,10.753,19.186,9,21.5,9z" opacity="0.2"/>
+<path d="M21.5,9c2.314,0,4.197,1.753,4.449,4C25.969,12.834,26,12.671,26,12.5c0-2.485-2.015-4.5-4.5-4.5 S17,10.015,17,12.5c0,0.171,0.031,0.334,0.051,0.5C17.303,10.753,19.186,9,21.5,9z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M22.5,14c-1.379,0-2.5-1.122-2.5-2.5S21.121,9,22.5,9s2.5,1.122,2.5,2.5S23.879,14,22.5,14L22.5,14z" fill="#0C3554"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="23" x2="23" y1="11.0039" y2="13.1352">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#84B2D9"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#84B2D9"/>
</linearGradient>
<circle cx="23" cy="12" fill="url(#SVGID_7_)" r="1"/>
-<path d="M13.552,23.924c0.495,0.051,1.007,0.077,1.523,0.077c5.144,0,8.917-1.481,10.095-5.636 c0.074-0.267,0.354-0.423,0.617-0.346c0.266,0.076,0.42,0.352,0.344,0.617c-0.007,0.026-0.018,0.05-0.024,0.076L27,20.5 c-0.475,0-0.91-0.389-1.242-0.796c-1.609,3.963-5.59,6.827-10.758,6.827c-0.551,0-0.339-0.041-0.871-0.025 c-1.126,0.033-1.155-1.863-1.126-2.137C13.032,24.094,13.278,23.893,13.552,23.924z" fill="#FFFFFF" opacity="0.6"/>
-<path d="M13.552,22.924c0.495,0.051,1.007,0.077,1.523,0.077c5.144,0,8.917-2.481,10.095-6.636 c0.074-0.267,0.354-0.423,0.617-0.346c0.266,0.076,0.42,0.352,0.344,0.617c-0.007,0.026-0.018,0.05-0.024,0.076L27,19.5 c-0.475,0-0.91-1.389-1.242-1.796c-1.609,3.963-5.352,6.79-10.52,6.79c-0.551,0-1.098-0.027-1.627-0.083 c-0.275-0.028-0.608-0.042-0.608-1.042C13.003,23.092,13.278,22.893,13.552,22.924z" opacity="0.2"/>
+<path d="M13.552,23.924c0.495,0.051,1.007,0.077,1.523,0.077c5.144,0,8.917-1.481,10.095-5.636 c0.074-0.267,0.354-0.423,0.617-0.346c0.266,0.076,0.42,0.352,0.344,0.617c-0.007,0.026-0.018,0.05-0.024,0.076L27,20.5 c-0.475,0-0.91-0.389-1.242-0.796c-1.609,3.963-5.59,6.827-10.758,6.827c-0.551,0-0.339-0.041-0.871-0.025 c-1.126,0.033-1.155-1.863-1.126-2.137C13.032,24.094,13.278,23.893,13.552,23.924z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M13.552,22.924c0.495,0.051,1.007,0.077,1.523,0.077c5.144,0,8.917-2.481,10.095-6.636 c0.074-0.267,0.354-0.423,0.617-0.346c0.266,0.076,0.42,0.352,0.344,0.617c-0.007,0.026-0.018,0.05-0.024,0.076L27,19.5 c-0.475,0-0.91-1.389-1.242-1.796c-1.609,3.963-5.352,6.79-10.52,6.79c-0.551,0-1.098-0.027-1.627-0.083 c-0.275-0.028-0.608-0.042-0.608-1.042C13.003,23.092,13.278,22.893,13.552,22.924z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -454 0)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-481" x2="-467" y1="21" y2="21">
- <stop offset="0" style="stop-color:#460800"/>
- <stop offset="1" style="stop-color:#992323"/>
+<stop offset="0" style="stop-color:#460800"/>
+<stop offset="1" style="stop-color:#992323"/>
</linearGradient>
<path d="M13.552,23.924c0.495,0.051,1.007,0.077,1.523,0.077c5.144,0,8.917-2.481,10.095-6.636 c0.074-0.267,0.354-0.423,0.617-0.346c0.266,0.076,0.42,0.352,0.344,0.617c-0.007,0.026-0.018,0.05-0.024,0.076L27,19.5 c-0.475,0-0.91-0.389-1.242-0.796c-1.609,3.963-5.515,6.297-10.683,6.297c-0.551,0-1.098-0.028-1.627-0.083 c-0.275-0.029-0.474-0.275-0.445-0.549C13.032,24.094,13.278,23.893,13.552,23.924z" fill="url(#SVGID_8_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_sarcastic_mad.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_sarcastic_mad.svg Thu May 27 13:10:59 2010 +0300
@@ -1,48 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="9.917" y2="17.1255">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M8.5,17C7.075,17,6,15.495,6,13.5S7.075,10,8.5,10s2.5,1.505,2.5,3.5S9.925,17,8.5,17L8.5,17z" fill="url(#SVGID_2_)"/>
<ellipse cx="8.5" cy="13.5" fill="#0C3554" rx="1.5" ry="2.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.5835" x2="8.5835" y1="12.9707" y2="16.1465">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#6D93B3"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#6D93B3"/>
</linearGradient>
<path d="M7.167,14.623C7.414,15.437,7.915,16,8.5,16c0.829,0,1.5-1.119,1.5-2.5 c0-0.155-0.011-0.305-0.027-0.452C9.819,13.018,9.662,13,9.5,13C8.429,13,7.522,13.677,7.167,14.623z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="21.5" x2="21.5" y1="9.9517" y2="17.1103">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M21.5,17c-1.426,0-2.5-1.505-2.5-3.5s1.074-3.5,2.5-3.5s2.5,1.505,2.5,3.5S22.926,17,21.5,17L21.5,17 z" fill="url(#SVGID_4_)"/>
<ellipse cx="21.5" cy="13.5" fill="#0C3554" rx="1.5" ry="2.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.583" x2="21.583" y1="13.0908" y2="16.2688">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#6D93B3"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#6D93B3"/>
</linearGradient>
<path d="M20.166,14.623C20.414,15.437,20.915,16,21.5,16c0.828,0,1.5-1.119,1.5-2.5 c0-0.155-0.012-0.305-0.027-0.452C22.819,13.018,22.662,13,22.5,13C21.43,13,20.522,13.677,20.166,14.623z" fill="url(#SVGID_5_)"/>
-<path d="M19,21c-2.243,0-3.165,1.107-4,2.5c-0.365,0.608-1.232,1.5-3,1.5s-3-0.791-3-1.5 C9,23.224,8.776,23,8.5,23S8,23.224,8,23.5c0,1.402,1.757,2.5,4,2.5s3-1.061,4-2.5c0.404-0.582,1.232-1.5,3-1.5s3,0.791,3,1.5 c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5C23,22.098,21.243,21,19,21z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M19,19c-2.243,0-3.165,1.107-4,2.5c-0.365,0.608-1.232,1.5-3,1.5s-3-0.791-3-1.5C9,21.224,8.776,21,8.5,21 S8,21.224,8,21.5c0,1.402,1.757,2.5,4,2.5s3-1.061,4-2.5c0.404-0.582,1.232-1.5,3-1.5s3,0.791,3,1.5c0,0.276,0.224,0.5,0.5,0.5 s0.5-0.224,0.5-0.5C23,20.098,21.243,19,19,19z" opacity="0.4"/>
+<path d="M19,21c-2.243,0-3.165,1.107-4,2.5c-0.365,0.608-1.232,1.5-3,1.5s-3-0.791-3-1.5 C9,23.224,8.776,23,8.5,23S8,23.224,8,23.5c0,1.402,1.757,2.5,4,2.5s3-1.061,4-2.5c0.404-0.582,1.232-1.5,3-1.5s3,0.791,3,1.5 c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5C23,22.098,21.243,21,19,21z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M19,19c-2.243,0-3.165,1.107-4,2.5c-0.365,0.608-1.232,1.5-3,1.5s-3-0.791-3-1.5C9,21.224,8.776,21,8.5,21 S8,21.224,8,21.5c0,1.402,1.757,2.5,4,2.5s3-1.061,4-2.5c0.404-0.582,1.232-1.5,3-1.5s3,0.791,3,1.5c0,0.276,0.224,0.5,0.5,0.5 s0.5-0.224,0.5-0.5C23,20.098,21.243,19,19,19z" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.4995" x2="15.4995" y1="20" y2="24.8928">
- <stop offset="0" style="stop-color:#460800"/>
- <stop offset="1" style="stop-color:#992323"/>
+<stop offset="0" style="stop-color:#460800"/>
+<stop offset="1" style="stop-color:#992323"/>
</linearGradient>
<path d="M19,20c-2.243,0-3.165,1.107-4,2.5c-0.365,0.608-1.232,1.5-3,1.5s-3-0.791-3-1.5 C9,22.224,8.776,22,8.5,22S8,22.224,8,22.5c0,1.402,1.757,2.5,4,2.5s3-1.061,4-2.5c0.404-0.582,1.232-1.5,3-1.5s3,0.791,3,1.5 c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5C23,21.098,21.243,20,19,20z" fill="url(#SVGID_6_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_smile.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_smile.svg Thu May 27 13:10:59 2010 +0300
@@ -1,38 +1,36 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.7505" x2="8.7505" y1="7.9351" y2="14.8952">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M11,15c-0.754,0-1.394-0.564-1.487-1.313C9.3,12,8.874,12,8.691,12c-0.134,0-0.49,0-0.703,1.688 C7.894,14.436,7.254,15,6.5,15H6.443l-0.118-0.01c-0.41-0.052-0.765-0.253-1.01-0.57c-0.246-0.317-0.354-0.71-0.304-1.108 C5.424,10.036,6.893,8,8.846,8c1.111,0,3.063,0.69,3.644,5.313c0.05,0.396-0.058,0.79-0.304,1.107 c-0.245,0.316-0.6,0.518-0.997,0.568l-0.063,0.008L11,15z" fill="url(#SVGID_2_)"/>
<path d="M11,14c-0.248,0-0.464-0.185-0.495-0.438C10.214,11.249,9.371,11,8.691,11s-1.404,0.249-1.695,2.563 c-0.034,0.273-0.273,0.466-0.559,0.434c-0.273-0.035-0.468-0.285-0.434-0.559C6.343,10.742,7.458,9,8.846,9s2.313,1.742,2.651,4.438 c0.034,0.274-0.16,0.524-0.434,0.559C11.042,13.999,11.021,14,11,14L11,14z" fill="#0C3554"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -566.5 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-587.7495" x2="-587.7495" y1="7.9351" y2="14.8952">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M19,15c0.754,0,1.394-0.564,1.487-1.313C20.7,12,21.126,12,21.309,12c0.134,0,0.49,0,0.703,1.688 C22.106,14.436,22.746,15,23.5,15h0.057l0.118-0.01c0.41-0.052,0.765-0.253,1.01-0.57c0.246-0.317,0.354-0.71,0.304-1.108 C24.576,10.036,23.107,8,21.154,8c-1.111,0-3.063,0.69-3.644,5.313c-0.05,0.396,0.058,0.79,0.304,1.107 c0.245,0.316,0.6,0.518,0.997,0.568l0.063,0.008L19,15z" fill="url(#SVGID_3_)"/>
<path d="M19,14c0.248,0,0.464-0.185,0.495-0.438C19.786,11.249,20.629,11,21.309,11s1.404,0.249,1.695,2.563 c0.034,0.273,0.273,0.466,0.559,0.434c0.273-0.035,0.468-0.285,0.434-0.559C23.657,10.742,22.542,9,21.154,9 s-2.313,1.742-2.651,4.438c-0.034,0.274,0.16,0.524,0.434,0.559C18.958,13.999,18.979,14,19,14L19,14z" fill="#0C3554"/>
-<path d="M15.075,25c-5.617,0-9.75-2.753-11.056-7.363c-0.075-0.266,0.079-0.543,0.345-0.618 c0.262-0.075,0.542,0.079,0.617,0.345C6.158,21.519,9.856,23,15,23c5.143,0,8.992-1.481,10.17-5.637 c0.074-0.266,0.355-0.42,0.617-0.345c0.266,0.075,0.42,0.353,0.344,0.618C24.826,22.247,20.692,25,15.075,25L15.075,25z" opacity="0.2"/>
-<path d="M27,19.969l-0.942-2.238c0.062-0.307-0.087-0.621-0.347-0.707 c-0.262-0.09-0.542,0.092-0.617,0.408C23.917,22.367,20.145,24.5,15,24.5c-5.143,0-8.917-2.133-10.094-7.068 c-0.075-0.316-0.355-0.498-0.617-0.408c-0.259,0.086-0.408,0.4-0.346,0.707L3,19.969c0.497,0,0.957-0.506,1.293-1.015 C5.888,23.701,9.807,26,15,26c5.189,0,9.107-2.295,10.704-7.039C25.994,19.344,26.407,19.734,27,19.969z" fill="#FFFFFF" opacity="0.6"/>
+<path d="M15.075,25c-5.617,0-9.75-2.753-11.056-7.363c-0.075-0.266,0.079-0.543,0.345-0.618 c0.262-0.075,0.542,0.079,0.617,0.345C6.158,21.519,9.856,23,15,23c5.143,0,8.992-1.481,10.17-5.637 c0.074-0.266,0.355-0.42,0.617-0.345c0.266,0.075,0.42,0.353,0.344,0.618C24.826,22.247,20.692,25,15.075,25L15.075,25z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M27,19.969l-0.942-2.238c0.062-0.307-0.087-0.621-0.347-0.707 c-0.262-0.09-0.542,0.092-0.617,0.408C23.917,22.367,20.145,24.5,15,24.5c-5.143,0-8.917-2.133-10.094-7.068 c-0.075-0.316-0.355-0.498-0.617-0.408c-0.259,0.086-0.408,0.4-0.346,0.707L3,19.969c0.497,0,0.957-0.506,1.293-1.015 C5.888,23.701,9.807,26,15,26c5.189,0,9.107-2.295,10.704-7.039C25.994,19.344,26.407,19.734,27,19.969z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="14.9995" x2="14.9995" y1="17.1426" y2="25.0441">
- <stop offset="0" style="stop-color:#460800"/>
- <stop offset="1" style="stop-color:#992323"/>
+<stop offset="0" style="stop-color:#460800"/>
+<stop offset="1" style="stop-color:#992323"/>
</linearGradient>
<path d="M27,19.5l-0.942-1.885c0.062-0.259-0.087-0.523-0.347-0.597c-0.262-0.075-0.542,0.079-0.617,0.345 C23.917,21.519,20.144,24,15,24s-8.917-2.481-10.094-6.637c-0.075-0.266-0.355-0.42-0.617-0.345 c-0.259,0.073-0.408,0.338-0.346,0.597L3,19.5c0.497,0,0.957-0.426,1.293-0.854C5.888,22.644,9.807,25,15,25 c5.189,0,9.107-2.354,10.704-6.348C25.994,18.973,26.407,19.303,27,19.5z" fill="url(#SVGID_4_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_surprised.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_surprised.svg Thu May 27 13:10:59 2010 +0300
@@ -1,66 +1,64 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="7.5415" y2="19.6124">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M8.5,19C5.468,19,3,16.533,3,13.5C3,10.467,5.468,8,8.5,8c3.033,0,5.5,2.467,5.5,5.5 C14,16.533,11.533,19,8.5,19L8.5,19z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.5" x2="8.5" y1="8.625" y2="18.5013">
- <stop offset="0" style="stop-color:#CCCCCC"/>
- <stop offset="0.2" style="stop-color:#EEEEEE"/>
- <stop offset="1" style="stop-color:#FCFCFC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="8.5" cy="13.5" fill="url(#SVGID_3_)" r="4.5"/>
-<path d="M8.5,10c2.314,0,4.198,1.753,4.45,4c0.019-0.166,0.05-0.329,0.05-0.5C13,11.015,10.986,9,8.5,9 C6.016,9,4,11.015,4,13.5c0,0.171,0.032,0.334,0.051,0.5C4.303,11.753,6.187,10,8.5,10z" opacity="0.2"/>
+<path d="M8.5,10c2.314,0,4.198,1.753,4.45,4c0.019-0.166,0.05-0.329,0.05-0.5C13,11.015,10.986,9,8.5,9 C6.016,9,4,11.015,4,13.5c0,0.171,0.032,0.334,0.051,0.5C4.303,11.753,6.187,10,8.5,10z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M8.5,15.5c-1.102,0-2-0.897-2-2s0.898-2,2-2c1.104,0,2,0.897,2,2S9.604,15.5,8.5,15.5L8.5,15.5z" fill="#0C3554"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="8.5" x2="8.5" y1="13.0034" y2="15.1348">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#9BD1FF"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#9BD1FF"/>
</linearGradient>
<circle cx="8.5" cy="14" fill="url(#SVGID_4_)" r="1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.5" x2="21.5" y1="7.5415" y2="19.6124">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M21.5,19c-3.032,0-5.5-2.467-5.5-5.5c0-3.033,2.468-5.5,5.5-5.5c3.033,0,5.5,2.467,5.5,5.5 C27,16.533,24.533,19,21.5,19L21.5,19z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="21.5" x2="21.5" y1="8.625" y2="18.5013">
- <stop offset="0" style="stop-color:#CCCCCC"/>
- <stop offset="0.2" style="stop-color:#EEEEEE"/>
- <stop offset="1" style="stop-color:#FCFCFC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="21.5" cy="13.5" fill="url(#SVGID_6_)" r="4.5"/>
-<path d="M21.5,10c2.314,0,4.198,1.753,4.45,4c0.019-0.166,0.05-0.329,0.05-0.5c0-2.485-2.014-4.5-4.5-4.5 c-2.484,0-4.5,2.015-4.5,4.5c0,0.171,0.032,0.334,0.051,0.5C17.303,11.753,19.187,10,21.5,10z" opacity="0.2"/>
+<path d="M21.5,10c2.314,0,4.198,1.753,4.45,4c0.019-0.166,0.05-0.329,0.05-0.5c0-2.485-2.014-4.5-4.5-4.5 c-2.484,0-4.5,2.015-4.5,4.5c0,0.171,0.032,0.334,0.051,0.5C17.303,11.753,19.187,10,21.5,10z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M21.5,15.5c-1.102,0-2-0.897-2-2s0.898-2,2-2c1.104,0,2,0.897,2,2S22.604,15.5,21.5,15.5L21.5,15.5z" fill="#0C3554"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="21.5" x2="21.5" y1="13.0039" y2="15.1352">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#9BD1FF"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#9BD1FF"/>
</linearGradient>
<circle cx="21.5" cy="14" fill="url(#SVGID_7_)" r="1"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="14.9995" x2="14.9995" y1="17.3955" y2="28.2055">
- <stop offset="0" style="stop-color:#D48D00"/>
- <stop offset="1" style="stop-color:#FFF1B8"/>
+<stop offset="0" style="stop-color:#D48D00"/>
+<stop offset="1" style="stop-color:#FFF1B8"/>
</linearGradient>
<ellipse cx="15" cy="22.5" fill="url(#SVGID_8_)" rx="4.5" ry="5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.9995" x2="14.9995" y1="18.5303" y2="26.9376">
- <stop offset="0" style="stop-color:#460800"/>
- <stop offset="1" style="stop-color:#992323"/>
+<stop offset="0" style="stop-color:#460800"/>
+<stop offset="1" style="stop-color:#992323"/>
</linearGradient>
<ellipse cx="15" cy="22.5" fill="url(#SVGID_9_)" rx="4.5" ry="3.889"/>
-<path d="M15,19.723c2.266,0,4.121,1.451,4.436,3.333C19.467,22.873,19.5,22.69,19.5,22.5 c0-2.147-2.014-3.889-4.5-3.889c-2.484,0-4.5,1.741-4.5,3.889c0,0.19,0.035,0.373,0.064,0.556C10.88,21.174,12.736,19.723,15,19.723 z" opacity="0.4"/>
+<path d="M15,19.723c2.266,0,4.121,1.451,4.436,3.333C19.467,22.873,19.5,22.69,19.5,22.5 c0-2.147-2.014-3.889-4.5-3.889c-2.484,0-4.5,1.741-4.5,3.889c0,0.19,0.035,0.373,0.064,0.556C10.88,21.174,12.736,19.723,15,19.723 z" fill-opacity="0.4" stroke-opacity="0.4"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_tongue.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_tongue.svg Thu May 27 13:10:59 2010 +0300
@@ -1,47 +1,45 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
-<path d="M27,18.308l-0.942-1.885c0.062-0.259-0.087-0.523-0.347-0.597 c-0.262-0.075-0.398,0.175-0.617,0.346C23,17.808,20.144,19.308,15,19.308s-8-1.5-10.094-3.136c-0.076-0.267-0.355-0.42-0.617-0.346 c-0.26,0.074-0.408,0.338-0.347,0.597L3,18.308c0.497,0,0.957-0.426,1.293-0.854C7,18.808,10,20.308,15,20.308s9-1.5,10.704-2.849 C25.994,17.781,26.407,18.11,27,18.308z" fill="#FFFFFF" opacity="0.6"/>
-<path d="M27,18.016l-0.942-1.885c0.062-0.258-0.087-0.522-0.347-0.596c-0.262-0.075-0.398,0.175-0.617,0.345 C23,17.516,20.144,18.058,15,18.058S7,17.516,4.906,15.88c-0.076-0.267-0.355-0.42-0.617-0.345c-0.26,0.074-0.408,0.338-0.347,0.596 L3,18.016c0.497,0,0.957-0.426,1.293-0.854C7,18.516,10,19.516,15,19.516s9-1,10.704-2.348C25.994,17.489,26.407,17.818,27,18.016z" opacity="0.2"/>
-<path d="M9.84,18.578c-1.49,1.831-2.932,6.933,1.082,7.394c4.174,0.479,4.881-5.217,8.221-6.91 C19.304,18.98,9.84,18.578,9.84,18.578z" opacity="0.2"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M27,18.308l-0.942-1.885c0.062-0.259-0.087-0.523-0.347-0.597 c-0.262-0.075-0.398,0.175-0.617,0.346C23,17.808,20.144,19.308,15,19.308s-8-1.5-10.094-3.136c-0.076-0.267-0.355-0.42-0.617-0.346 c-0.26,0.074-0.408,0.338-0.347,0.597L3,18.308c0.497,0,0.957-0.426,1.293-0.854C7,18.808,10,20.308,15,20.308s9-1.5,10.704-2.849 C25.994,17.781,26.407,18.11,27,18.308z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27,18.016l-0.942-1.885c0.062-0.258-0.087-0.522-0.347-0.596c-0.262-0.075-0.398,0.175-0.617,0.345 C23,17.516,20.144,18.058,15,18.058S7,17.516,4.906,15.88c-0.076-0.267-0.355-0.42-0.617-0.345c-0.26,0.074-0.408,0.338-0.347,0.596 L3,18.016c0.497,0,0.957-0.426,1.293-0.854C7,18.516,10,19.516,15,19.516s9-1,10.704-2.348C25.994,17.489,26.407,17.818,27,18.016z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9.84,18.578c-1.49,1.831-2.932,6.933,1.082,7.394c4.174,0.479,4.881-5.217,8.221-6.91 C19.304,18.98,9.84,18.578,9.84,18.578z" fill-opacity="0.2" stroke-opacity="0.2"/>
<radialGradient cx="-109.7007" cy="-18.4487" gradientTransform="matrix(1.1747 0 0 1.1055 140.4372 39.6372)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="4.8868">
- <stop offset="0" style="stop-color:#FF6855"/>
- <stop offset="1" style="stop-color:#CC0E06"/>
+<stop offset="0" style="stop-color:#FF6855"/>
+<stop offset="1" style="stop-color:#CC0E06"/>
</radialGradient>
<path d="M9.145,18.578c-1.489,1.831-1.379,6.046,1.777,6.287c4.191,0.322,4.186-4.11,7.525-5.804 C18.609,18.98,9.145,18.578,9.145,18.578z" fill="url(#SVGID_2_)"/>
-<path d="M13.201,18.758c-0.479-0.021-0.943-0.043-1.385-0.063c-0.565,1.258-0.637,2.821-0.637,2.821 S11.781,19.969,13.201,18.758z" opacity="0.2"/>
+<path d="M13.201,18.758c-0.479-0.021-0.943-0.043-1.385-0.063c-0.565,1.258-0.637,2.821-0.637,2.821 S11.781,19.969,13.201,18.758z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="15.5869" y2="19.5381">
- <stop offset="0" style="stop-color:#460800"/>
- <stop offset="1" style="stop-color:#992323"/>
+<stop offset="0" style="stop-color:#460800"/>
+<stop offset="1" style="stop-color:#992323"/>
</linearGradient>
<path d="M27,18.016l-0.942-1.885c0.062-0.258-0.087-0.522-0.347-0.596c-0.262-0.075-0.398,0.175-0.617,0.345 C23,17.516,20.144,18.516,15,18.516s-8-1-10.094-2.636c-0.076-0.267-0.355-0.42-0.617-0.345c-0.26,0.074-0.408,0.338-0.347,0.596 L3,18.016c0.497,0,0.957-0.426,1.293-0.854C7,18.516,10,19.516,15,19.516s9-1,10.704-2.348C25.994,17.489,26.407,17.818,27,18.016z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="20.5" x2="20.5" y1="8.7856" y2="15.9438">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M20.5,15.834c-1.426,0-2.5-1.505-2.5-3.5s1.074-3.5,2.5-3.5s2.5,1.505,2.5,3.5 S21.926,15.834,20.5,15.834L20.5,15.834z" fill="url(#SVGID_4_)"/>
<ellipse cx="20.5" cy="12.334" fill="#0C3554" rx="1.5" ry="2.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="20.583" x2="20.583" y1="11.9248" y2="15.1028">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#6D93B3"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#6D93B3"/>
</linearGradient>
<path d="M19.166,13.457c0.248,0.813,0.749,1.377,1.334,1.377c0.828,0,1.5-1.119,1.5-2.5 c0-0.155-0.012-0.305-0.027-0.452c-0.153-0.03-0.311-0.048-0.473-0.048C20.43,11.834,19.522,12.511,19.166,13.457z" fill="url(#SVGID_5_)"/>
-<path d="M12,14.833c-0.209,0-0.404-0.132-0.475-0.34c-0.041-0.121-0.932-2.159-4.49-2.159 c-0.277,0-0.535-0.724-0.535-1s0.225-0.5,0.5-0.5c4.312,0,5.429,3.205,5.475,3.341c0.087,0.262-0.055,0.545-0.316,0.632 C12.105,14.825,12.053,14.833,12,14.833L12,14.833z" opacity="0.4"/>
-<path d="M12,14.021c-0.209,0-0.404-0.132-0.475-0.34c-0.041-0.121-0.992-3.066-4.552-3.066 c-0.276,0-0.474-0.503-0.474-0.78s0.225-0.5,0.5-0.5c4.312,0,5.429,3.892,5.475,4.028c0.087,0.262-0.055,0.545-0.316,0.632 c-0.053,0.018-0.105-0.661-0.158-0.661V14.021z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M12,14.833c-0.209,0-0.404-0.132-0.475-0.34c-0.041-0.121-0.932-2.159-4.49-2.159 c-0.277,0-0.535-0.724-0.535-1s0.225-0.5,0.5-0.5c4.312,0,5.429,3.205,5.475,3.341c0.087,0.262-0.055,0.545-0.316,0.632 C12.105,14.825,12.053,14.833,12,14.833L12,14.833z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M12,14.021c-0.209,0-0.404-0.132-0.475-0.34c-0.041-0.121-0.992-3.066-4.552-3.066 c-0.276,0-0.474-0.503-0.474-0.78s0.225-0.5,0.5-0.5c4.312,0,5.429,3.892,5.475,4.028c0.087,0.262-0.055,0.545-0.316,0.632 c-0.053,0.018-0.105-0.661-0.158-0.661V14.021z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M12,14.334c-0.209,0-0.404-0.132-0.475-0.34c-0.041-0.121-0.965-2.659-4.525-2.659 c-0.275,0-0.5-0.224-0.5-0.5s0.225-0.5,0.5-0.5c4.312,0,5.429,3.205,5.475,3.341c0.087,0.262-0.055,0.545-0.316,0.632 C12.105,14.326,12.053,14.334,12,14.334L12,14.334z" fill="#0C3554"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_unhappy.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_unhappy.svg Thu May 27 13:10:59 2010 +0300
@@ -1,48 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="9.917" y2="17.1255">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M8.5,17C7.074,17,6,15.495,6,13.5S7.074,10,8.5,10c1.425,0,2.5,1.505,2.5,3.5S9.925,17,8.5,17L8.5,17 z" fill="url(#SVGID_2_)"/>
<ellipse cx="8.5" cy="13.5" fill="#0C3554" rx="1.5" ry="2.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.583" x2="8.583" y1="12.9707" y2="16.1465">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#6D93B3"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#6D93B3"/>
</linearGradient>
<path d="M7.166,14.623C7.414,15.437,7.914,16,8.5,16c0.828,0,1.5-1.119,1.5-2.5 c0-0.155-0.012-0.305-0.027-0.452C9.818,13.018,9.662,13,9.5,13C8.429,13,7.521,13.677,7.166,14.623z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="21.5" x2="21.5" y1="9.9517" y2="17.1103">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M21.5,17c-1.426,0-2.5-1.505-2.5-3.5s1.074-3.5,2.5-3.5c1.425,0,2.5,1.505,2.5,3.5S22.925,17,21.5,17 L21.5,17z" fill="url(#SVGID_4_)"/>
<ellipse cx="21.5" cy="13.5" fill="#0C3554" rx="1.5" ry="2.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.583" x2="21.583" y1="13.0908" y2="16.2688">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#6D93B3"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#6D93B3"/>
</linearGradient>
<path d="M20.166,14.623C20.414,15.437,20.914,16,21.5,16c0.828,0,1.5-1.119,1.5-2.5 c0-0.155-0.012-0.305-0.027-0.452C22.818,13.018,22.662,13,22.5,13C21.429,13,20.521,13.677,20.166,14.623z" fill="url(#SVGID_5_)"/>
-<path d="M23.025,24c-0.17,0-0.335-0.086-0.429-0.241C21.216,21.476,18.234,21,15,21 s-6.217,0.476-7.598,2.759c-0.143,0.235-0.45,0.312-0.687,0.169s-0.312-0.45-0.169-0.687C8.129,20.625,11.367,19,15,19 c3.631,0,6.871,1.625,8.453,4.241c0.143,0.236,0.066,0.544-0.17,0.687C23.203,23.977,23.113,24,23.025,24L23.025,24z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M23.025,23c-0.17,0-0.335-0.086-0.429-0.241C21.216,20.476,18.234,19,15,19s-6.217,1.476-7.598,3.759 c-0.143,0.235-0.45,0.312-0.687,0.169s-0.312-0.45-0.169-0.687C8.129,19.625,11.367,18,15,18c3.631,0,6.871,1.625,8.453,4.241 c0.143,0.236,0.066,0.544-0.17,0.687C23.203,22.977,23.113,23,23.025,23L23.025,23z" opacity="0.4"/>
+<path d="M23.025,24c-0.17,0-0.335-0.086-0.429-0.241C21.216,21.476,18.234,21,15,21 s-6.217,0.476-7.598,2.759c-0.143,0.235-0.45,0.312-0.687,0.169s-0.312-0.45-0.169-0.687C8.129,20.625,11.367,19,15,19 c3.631,0,6.871,1.625,8.453,4.241c0.143,0.236,0.066,0.544-0.17,0.687C23.203,23.977,23.113,24,23.025,24L23.025,24z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M23.025,23c-0.17,0-0.335-0.086-0.429-0.241C21.216,20.476,18.234,19,15,19s-6.217,1.476-7.598,3.759 c-0.143,0.235-0.45,0.312-0.687,0.169s-0.312-0.45-0.169-0.687C8.129,19.625,11.367,18,15,18c3.631,0,6.871,1.625,8.453,4.241 c0.143,0.236,0.066,0.544-0.17,0.687C23.203,22.977,23.113,23,23.025,23L23.025,23z" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.9995" x2="14.9995" y1="18.5723" y2="23.6656">
- <stop offset="0" style="stop-color:#460800"/>
- <stop offset="1" style="stop-color:#992323"/>
+<stop offset="0" style="stop-color:#460800"/>
+<stop offset="1" style="stop-color:#992323"/>
</linearGradient>
<path d="M23.025,23.5c-0.17,0-0.335-0.086-0.429-0.241C21.216,20.976,18.234,19.5,15,19.5 s-6.217,1.476-7.598,3.759c-0.143,0.235-0.45,0.312-0.687,0.169s-0.312-0.45-0.169-0.687C8.129,20.125,11.367,18.5,15,18.5 c3.631,0,6.871,1.625,8.453,4.241c0.143,0.236,0.066,0.544-0.17,0.687C23.203,23.477,23.113,23.5,23.025,23.5L23.025,23.5z" fill="url(#SVGID_6_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_very_cool.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_very_cool.svg Thu May 27 13:10:59 2010 +0300
@@ -1,56 +1,54 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
-<path d="M28.004,9c0-0.552-0.415-1-0.929-1h-0.498H15H4.359H2.932C2.419,8,2.004,8.448,2.004,9c0,0,0,2.501,0,3 c0,4,2.785,5,6.498,5c3.021,0,5.229-3.359,6.165-6h0.667c0.936,2.641,3.143,6,6.164,6c3.714,0,6.506-1,6.506-5 C28.004,11.501,28.004,9,28.004,9z" opacity="0.4"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M28.004,9c0-0.552-0.415-1-0.929-1h-0.498H15H4.359H2.932C2.419,8,2.004,8.448,2.004,9c0,0,0,2.501,0,3 c0,4,2.785,5,6.498,5c3.021,0,5.229-3.359,6.165-6h0.667c0.936,2.641,3.143,6,6.164,6c3.714,0,6.506-1,6.506-5 C28.004,11.501,28.004,9,28.004,9z" fill-opacity="0.4" stroke-opacity="0.4"/>
<path d="M28.004,8c0-0.552-0.415-1-0.929-1h-0.498H15H4.359H2.932C2.419,7,2.004,7.448,2.004,8c0,0,0,2.501,0,3c0,4,2.785,5,6.498,5 c3.021,0,5.229-3.359,6.165-6h0.667c0.936,2.641,3.143,6,6.164,6c3.714,0,6.506-1,6.506-5C28.004,10.501,28.004,8,28.004,8z"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5781" x2="8.5781" y1="8" y2="14.9378">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#727475"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
<path d="M8.502,15c-3.601,0-5.57-0.897-5.57-4c0-1.084,1.259-2.135,1.864-3h9.429 c-0.105,0.908-0.663,2.754-1.867,4.466C11.545,13.622,10.216,15,8.502,15L8.502,15z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -656.8359 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-678.2617" x2="-678.2617" y1="8" y2="14.9378">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#727475"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
<path d="M21.498,15c3.602,0,5.577-0.897,5.577-4c0-1.084-0.329-2.135-0.936-3H15.776 c0.104,0.908,0.663,2.754,1.866,4.466C18.456,13.622,19.785,15,21.498,15L21.498,15z" fill="url(#SVGID_3_)"/>
-<rect fill="#FFFFFF" height="1" opacity="0.6" width="10.212" x="2.932" y="9"/>
-<rect fill="#FFFFFF" height="1" opacity="0.6" width="10.219" x="16.856" y="9"/>
+<rect fill="#FFFFFF" fill-opacity="0.6" height="1" stroke-opacity="0.6" width="10.212" x="2.932" y="9"/>
+<rect fill="#FFFFFF" fill-opacity="0.6" height="1" stroke-opacity="0.6" width="10.219" x="16.856" y="9"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="14.9448" x2="14.9448" y1="15.9014" y2="27.1496">
- <stop offset="0" style="stop-color:#D48D00"/>
- <stop offset="1" style="stop-color:#FFF1B8"/>
+<stop offset="0" style="stop-color:#D48D00"/>
+<stop offset="1" style="stop-color:#FFF1B8"/>
</linearGradient>
<path d="M14.945,16C8.945,16,4,17,4,17c0.506,5.606,5.209,10,10.945,10c5.734,0,10.438-4.394,10.944-10 C25.89,17,20.945,16,14.945,16z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.9448" x2="14.9448" y1="16.9189" y2="26.1216">
- <stop offset="0" style="stop-color:#460800"/>
- <stop offset="1" style="stop-color:#992323"/>
+<stop offset="0" style="stop-color:#460800"/>
+<stop offset="1" style="stop-color:#992323"/>
</linearGradient>
<path d="M4,17c0.506,5.046,5.209,9,10.945,9c5.734,0,10.438-3.954,10.944-9H4z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.9448" x2="14.9448" y1="17.9375" y2="25.0951">
- <stop offset="0" style="stop-color:#E6E6E6"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path d="M14.945,25c-4.703,0-8.771-2.996-9.76-7h19.52C23.715,22.004,19.646,25,14.945,25L14.945,25z" fill="url(#SVGID_6_)"/>
-<path d="M13.89,24.944c0.33,0.032,0.663,0.052,1,0.054V18h-1V24.944z" opacity="0.2"/>
-<path d="M14.89,24.998c0.019,0,0.036,0.002,0.056,0.002c0.318,0,0.633-0.016,0.944-0.043V18h-1V24.998 z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M7.89,22.365c0.313,0.279,0.647,0.539,1,0.781V18h-1V22.365z" opacity="0.2"/>
-<path d="M8.89,23.146c0.319,0.219,0.653,0.421,1,0.605V18h-1V23.146z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M19.89,23.813c0.348-0.179,0.679-0.38,1-0.594V18h-1V23.813z" opacity="0.2"/>
-<path d="M20.89,23.219c0.351-0.232,0.687-0.48,1-0.752V18h-1V23.219z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M5.512,19h18.865c0.129-0.326,0.243-0.658,0.328-1H5.186C5.27,18.342,5.385,18.674,5.512,19z" opacity="0.2"/>
-<path d="M6.634,21c0.263,0.352,0.548,0.688,0.862,1h14.897c0.314-0.313,0.599-0.648,0.862-1H6.634z" opacity="0.2"/>
+<path d="M13.89,24.944c0.33,0.032,0.663,0.052,1,0.054V18h-1V24.944z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M14.89,24.998c0.019,0,0.036,0.002,0.056,0.002c0.318,0,0.633-0.016,0.944-0.043V18h-1V24.998 z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M7.89,22.365c0.313,0.279,0.647,0.539,1,0.781V18h-1V22.365z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8.89,23.146c0.319,0.219,0.653,0.421,1,0.605V18h-1V23.146z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M19.89,23.813c0.348-0.179,0.679-0.38,1-0.594V18h-1V23.813z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M20.89,23.219c0.351-0.232,0.687-0.48,1-0.752V18h-1V23.219z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M5.512,19h18.865c0.129-0.326,0.243-0.658,0.328-1H5.186C5.27,18.342,5.385,18.674,5.512,19z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6.634,21c0.263,0.352,0.548,0.688,0.862,1h14.897c0.314-0.313,0.599-0.648,0.862-1H6.634z" fill-opacity="0.2" stroke-opacity="0.2"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_wink.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_wink.svg Thu May 27 13:10:59 2010 +0300
@@ -1,43 +1,41 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="21.5" x2="21.5" y1="8.7856" y2="15.9438">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M21.5,15.834c-1.426,0-2.5-1.505-2.5-3.5s1.074-3.5,2.5-3.5s2.5,1.505,2.5,3.5 S22.926,15.834,21.5,15.834L21.5,15.834z" fill="url(#SVGID_2_)"/>
<ellipse cx="21.5" cy="12.334" fill="#0C3554" rx="1.5" ry="2.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="21.583" x2="21.583" y1="11.9248" y2="15.1028">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#6D93B3"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#6D93B3"/>
</linearGradient>
<path d="M20.166,13.457c0.248,0.813,0.749,1.377,1.334,1.377c0.828,0,1.5-1.119,1.5-2.5 c0-0.155-0.012-0.305-0.027-0.452c-0.153-0.03-0.311-0.048-0.473-0.048C21.43,11.834,20.522,12.511,20.166,13.457z" fill="url(#SVGID_3_)"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -566.5 0)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-577.7495" x2="-577.7495" y1="8.9351" y2="15.8952">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M9,16c0.754,0,1.394-0.564,1.487-1.313C10.7,13,11.126,13,11.309,13c0.134,0,0.49,0,0.703,1.688 C12.106,15.436,12.746,16,13.5,16h0.057l0.118-0.01c0.41-0.052,0.765-0.253,1.01-0.57c0.246-0.317,0.354-0.71,0.304-1.108 C14.576,11.036,13.107,9,11.154,9c-1.111,0-3.063,0.69-3.644,5.313c-0.05,0.396,0.058,0.79,0.304,1.107 c0.245,0.316,0.6,0.518,0.997,0.568l0.063,0.008L9,16z" fill="url(#SVGID_4_)"/>
<path d="M9,15c0.248,0,0.464-0.185,0.495-0.438C9.786,12.249,10.629,12,11.309,12s1.404,0.249,1.695,2.563 c0.034,0.273,0.273,0.466,0.559,0.434c0.273-0.035,0.468-0.285,0.434-0.559C13.657,11.742,12.542,10,11.154,10 s-2.313,1.742-2.651,4.438c-0.034,0.274,0.16,0.524,0.434,0.559C8.958,14.999,8.979,15,9,15L9,15z" fill="#0C3554"/>
-<path d="M16.448,23.924c-0.495,0.051-1.007,0.077-1.523,0.077c-5.144,0-8.917-1.481-10.095-5.636 c-0.074-0.267-0.354-0.423-0.617-0.346c-0.266,0.076-0.42,0.352-0.344,0.617c0.007,0.026,0.018,0.05,0.024,0.076L3,20.5 c0.475,0,0.91-0.389,1.242-0.796c1.609,3.963,5.59,6.827,10.758,6.827c0.551,0,0.34-0.041,0.871-0.025 c1.127,0.033,1.154-1.863,1.126-2.137C16.969,24.094,16.722,23.893,16.448,23.924z" fill="#FFFFFF" opacity="0.6"/>
-<path d="M16.448,22.924c-0.495,0.051-1.007,0.077-1.523,0.077c-5.144,0-8.917-2.481-10.095-6.636 c-0.074-0.267-0.354-0.423-0.617-0.346c-0.266,0.076-0.42,0.352-0.344,0.617c0.007,0.026,0.018,0.05,0.024,0.076L3,19.5 c0.475,0,0.91-1.389,1.242-1.796c1.609,3.963,5.352,6.79,10.52,6.79c0.551,0,1.099-0.027,1.627-0.083 c0.275-0.028,0.608-0.042,0.608-1.042C16.997,23.092,16.722,22.893,16.448,22.924z" opacity="0.2"/>
+<path d="M16.448,23.924c-0.495,0.051-1.007,0.077-1.523,0.077c-5.144,0-8.917-1.481-10.095-5.636 c-0.074-0.267-0.354-0.423-0.617-0.346c-0.266,0.076-0.42,0.352-0.344,0.617c0.007,0.026,0.018,0.05,0.024,0.076L3,20.5 c0.475,0,0.91-0.389,1.242-0.796c1.609,3.963,5.59,6.827,10.758,6.827c0.551,0,0.34-0.041,0.871-0.025 c1.127,0.033,1.154-1.863,1.126-2.137C16.969,24.094,16.722,23.893,16.448,23.924z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M16.448,22.924c-0.495,0.051-1.007,0.077-1.523,0.077c-5.144,0-8.917-2.481-10.095-6.636 c-0.074-0.267-0.354-0.423-0.617-0.346c-0.266,0.076-0.42,0.352-0.344,0.617c0.007,0.026,0.018,0.05,0.024,0.076L3,19.5 c0.475,0,0.91-1.389,1.242-1.796c1.609,3.963,5.352,6.79,10.52,6.79c0.551,0,1.099-0.027,1.627-0.083 c0.275-0.028,0.608-0.042,0.608-1.042C16.997,23.092,16.722,22.893,16.448,22.924z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="3" x2="17" y1="21" y2="21">
- <stop offset="0" style="stop-color:#460800"/>
- <stop offset="1" style="stop-color:#992323"/>
+<stop offset="0" style="stop-color:#460800"/>
+<stop offset="1" style="stop-color:#992323"/>
</linearGradient>
<path d="M16.448,23.924c-0.495,0.051-1.007,0.077-1.523,0.077c-5.144,0-8.917-2.481-10.095-6.636 c-0.074-0.267-0.354-0.423-0.617-0.346c-0.266,0.076-0.42,0.352-0.344,0.617c0.007,0.026,0.018,0.05,0.024,0.076L3,19.5 c0.475,0,0.91-0.389,1.242-0.796c1.609,3.963,5.515,6.297,10.683,6.297c0.551,0,1.099-0.028,1.627-0.083 c0.274-0.029,0.474-0.275,0.445-0.549C16.969,24.094,16.722,23.893,16.448,23.924z" fill="url(#SVGID_5_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_wink_grin.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_wink_grin.svg Thu May 27 13:10:59 2010 +0300
@@ -1,55 +1,53 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(0.966 0.2584 -0.2584 0.966 -118.0704 191.8488)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="83.0156" x2="83.0156" y1="-203.2881" y2="-194.0849">
- <stop offset="0" style="stop-color:#D48D00"/>
- <stop offset="1" style="stop-color:#FFF1B8"/>
+<stop offset="0" style="stop-color:#D48D00"/>
+<stop offset="1" style="stop-color:#FFF1B8"/>
</linearGradient>
<path d="M12.306,25.696c-4.1-1.097-7.131-5.184-8.119-8.915l-0.439-1.656c0,0,7.074,0.857,10.939,1.892 C18.55,18.051,25,20.811,25,20.811l-1.206,1.216C21.073,24.766,16.407,26.793,12.306,25.696L12.306,25.696z" fill="url(#SVGID_2_)"/>
<linearGradient gradientTransform="matrix(0.966 0.2584 -0.2584 0.966 -118.0704 191.8488)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="83.0156" x2="83.0156" y1="-202.2705" y2="-195.1119">
- <stop offset="0" style="stop-color:#460800"/>
- <stop offset="1" style="stop-color:#992323"/>
+<stop offset="0" style="stop-color:#460800"/>
+<stop offset="1" style="stop-color:#992323"/>
</linearGradient>
<path d="M12.564,24.73c-4.101-1.098-7.39-4.218-8.378-7.949l-0.439-1.656L25,20.811l-1.206,1.216 C21.073,24.766,16.665,25.827,12.564,24.73L12.564,24.73z" fill="url(#SVGID_3_)"/>
<linearGradient gradientTransform="matrix(0.966 0.2584 -0.2584 0.966 -118.0704 191.8488)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="83.0166" x2="83.0166" y1="-201.252" y2="-196.1404">
- <stop offset="0" style="stop-color:#E6E6E6"/>
- <stop offset="1" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path d="M12.823,23.764c3.863,1.034,7.82-0.02,10.225-2.439L5.183,16.545 C6.057,19.842,8.959,22.73,12.823,23.764z" fill="url(#SVGID_4_)"/>
-<path d="M11.786,23.429c0.32,0.118,0.646,0.228,0.982,0.319l1.291-4.828l-0.996-0.268L11.786,23.429z" opacity="0.2"/>
-<path d="M12.769,23.748c0.019,0.004,0.036,0.012,0.055,0.016c0.317,0.086,0.635,0.154,0.953,0.211 l1.28-4.789L14.06,18.92L12.769,23.748z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M18.058,23.936c0.393-0.08,0.775-0.187,1.15-0.307l0.832-3.109l-0.997-0.268L18.058,23.936z" opacity="0.2"/>
-<path d="M19.208,23.629c0.408-0.133,0.809-0.283,1.19-0.461l0.638-2.383L20.04,20.52L19.208,23.629z" fill="#FFFFFF" opacity="0.5"/>
-<path d="M22.136,22.115c0.322-0.246,0.63-0.508,0.912-0.791L5.183,16.545c0.104,0.387,0.238,0.768,0.395,1.141 L22.136,22.115z" opacity="0.2"/>
-<path d="M6.688,19.395c0.231,0.352,0.486,0.689,0.765,1.014l0.813-3.039L7.3,17.111L6.688,19.395z" opacity="0.2"/>
-<path d="M7.269,20.358c0.262,0.296,0.541,0.581,0.84,0.852l0.969-3.624L8.081,17.32L7.269,20.358z" fill="#FFFFFF" opacity="0.5"/>
+<path d="M11.786,23.429c0.32,0.118,0.646,0.228,0.982,0.319l1.291-4.828l-0.996-0.268L11.786,23.429z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M12.769,23.748c0.019,0.004,0.036,0.012,0.055,0.016c0.317,0.086,0.635,0.154,0.953,0.211 l1.28-4.789L14.06,18.92L12.769,23.748z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M18.058,23.936c0.393-0.08,0.775-0.187,1.15-0.307l0.832-3.109l-0.997-0.268L18.058,23.936z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M19.208,23.629c0.408-0.133,0.809-0.283,1.19-0.461l0.638-2.383L20.04,20.52L19.208,23.629z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M22.136,22.115c0.322-0.246,0.63-0.508,0.912-0.791L5.183,16.545c0.104,0.387,0.238,0.768,0.395,1.141 L22.136,22.115z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6.688,19.395c0.231,0.352,0.486,0.689,0.765,1.014l0.813-3.039L7.3,17.111L6.688,19.395z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7.269,20.358c0.262,0.296,0.541,0.581,0.84,0.852l0.969-3.624L8.081,17.32L7.269,20.358z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="20.5" x2="20.5" y1="8.7856" y2="15.9438">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M20.5,15.834c-1.425,0-2.5-1.505-2.5-3.5s1.075-3.5,2.5-3.5c1.426,0,2.5,1.505,2.5,3.5 S21.926,15.834,20.5,15.834L20.5,15.834z" fill="url(#SVGID_5_)"/>
<ellipse cx="20.5" cy="12.334" fill="#0C3554" rx="1.5" ry="2.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20.584" x2="20.584" y1="11.9248" y2="15.1028">
- <stop offset="0" style="stop-color:#0C3554"/>
- <stop offset="1" style="stop-color:#6D93B3"/>
+<stop offset="0" style="stop-color:#0C3554"/>
+<stop offset="1" style="stop-color:#6D93B3"/>
</linearGradient>
<path d="M19.167,13.457c0.247,0.813,0.749,1.377,1.333,1.377c0.829,0,1.5-1.119,1.5-2.5 c0-0.155-0.011-0.305-0.027-0.452c-0.152-0.03-0.311-0.048-0.473-0.048C20.43,11.834,19.523,12.511,19.167,13.457z" fill="url(#SVGID_6_)"/>
-<path d="M12,14.833c-0.209,0-0.403-0.132-0.474-0.34c-0.042-0.121-0.932-2.159-4.491-2.159 c-0.276,0-0.534-0.724-0.534-1s0.224-0.5,0.5-0.5c4.312,0,5.429,3.205,5.474,3.341c0.088,0.262-0.055,0.545-0.316,0.632 C12.105,14.825,12.053,14.833,12,14.833L12,14.833z" opacity="0.4"/>
-<path d="M12,14.021c-0.209,0-0.403-0.132-0.474-0.34c-0.042-0.121-0.993-3.066-4.552-3.066 c-0.277,0-0.474-0.503-0.474-0.78s0.224-0.5,0.5-0.5c4.312,0,5.429,3.892,5.474,4.028c0.088,0.262-0.055,0.545-0.316,0.632 c-0.053,0.018-0.105-0.661-0.158-0.661V14.021z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M12,14.833c-0.209,0-0.403-0.132-0.474-0.34c-0.042-0.121-0.932-2.159-4.491-2.159 c-0.276,0-0.534-0.724-0.534-1s0.224-0.5,0.5-0.5c4.312,0,5.429,3.205,5.474,3.341c0.088,0.262-0.055,0.545-0.316,0.632 C12.105,14.825,12.053,14.833,12,14.833L12,14.833z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M12,14.021c-0.209,0-0.403-0.132-0.474-0.34c-0.042-0.121-0.993-3.066-4.552-3.066 c-0.277,0-0.474-0.503-0.474-0.78s0.224-0.5,0.5-0.5c4.312,0,5.429,3.892,5.474,4.028c0.088,0.262-0.055,0.545-0.316,0.632 c-0.053,0.018-0.105-0.661-0.158-0.661V14.021z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M12,14.334c-0.209,0-0.403-0.132-0.474-0.34c-0.042-0.121-0.966-2.659-4.525-2.659 c-0.276,0-0.5-0.224-0.5-0.5s0.224-0.5,0.5-0.5c4.312,0,5.429,3.205,5.474,3.341c0.088,0.262-0.055,0.545-0.316,0.632 C12.105,14.326,12.053,14.334,12,14.334L12,14.334z" fill="#0C3554"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_wondering.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_wondering.svg Thu May 27 13:10:59 2010 +0300
@@ -1,44 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<circle cx="15" cy="15" opacity="0.6" r="14"/>
+<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
- <stop offset="0" style="stop-color:#FEE891"/>
- <stop offset="0.7818" style="stop-color:#FFB701"/>
- <stop offset="1" style="stop-color:#FFC501"/>
+<stop offset="0" style="stop-color:#FEE891"/>
+<stop offset="0.7818" style="stop-color:#FFB701"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</radialGradient>
<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" opacity="0.3"/>
-<path d="M20.797,24.961c-0.095,0.545-0.393,0.946-0.664,0.898l-10.835-1.9 c-0.272-0.048-0.415-0.527-0.319-1.072l0,0c0.096-0.544,0.393-0.945,0.664-0.898l10.836,1.901 C20.75,23.938,20.893,24.416,20.797,24.961L20.797,24.961z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M20.971,23.977c-0.096,0.544-0.394,0.945-0.666,0.898L9.471,22.974c-0.272-0.048-0.416-0.526-0.32-1.071l0,0 c0.096-0.545,0.394-0.946,0.666-0.898l10.834,1.9C20.923,22.952,21.066,23.432,20.971,23.977L20.971,23.977z" opacity="0.4"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M20.797,24.961c-0.095,0.545-0.393,0.946-0.664,0.898l-10.835-1.9 c-0.272-0.048-0.415-0.527-0.319-1.072l0,0c0.096-0.544,0.393-0.945,0.664-0.898l10.836,1.901 C20.75,23.938,20.893,24.416,20.797,24.961L20.797,24.961z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M20.971,23.977c-0.096,0.544-0.394,0.945-0.666,0.898L9.471,22.974c-0.272-0.048-0.416-0.526-0.32-1.071l0,0 c0.096-0.545,0.394-0.946,0.666-0.898l10.834,1.9C20.923,22.952,21.066,23.432,20.971,23.977L20.971,23.977z" fill-opacity="0.4" stroke-opacity="0.4"/>
<path d="M20.884,24.469c-0.048,0.271-0.307,0.453-0.579,0.406L9.471,22.974c-0.272-0.048-0.454-0.307-0.406-0.579 l0,0c0.048-0.271,0.307-0.453,0.578-0.406l10.836,1.901C20.75,23.938,20.932,24.196,20.884,24.469L20.884,24.469z" fill="#3B2314"/>
-<path d="M28,14c0,0.553-0.205,1-0.459,1H16.459C16.205,15,16,14.553,16,14l0,0c0-0.553,0.205-1,0.459-1h11.082 C27.795,13,28,13.447,28,14L28,14z" opacity="0.4"/>
+<path d="M28,14c0,0.553-0.205,1-0.459,1H16.459C16.205,15,16,14.553,16,14l0,0c0-0.553,0.205-1,0.459-1h11.082 C27.795,13,28,13.447,28,14L28,14z" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="22.4746" x2="22.4746" y1="8.208" y2="18.834">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M22.475,19c2.863,0,5.221-2.201,5.475-5H17C17.254,16.799,19.611,19,22.475,19z" fill="url(#SVGID_2_)"/>
<path d="M22.475,18c2.314,0,4.197-1.753,4.449-4h-8.898C18.277,16.247,20.16,18,22.475,18z" fill="#FFFFFF"/>
-<path d="M27.762,15c0.092-0.322,0.156-0.656,0.188-1H17c0.031,0.344,0.096,0.678,0.188,1H27.762z" opacity="0.2"/>
+<path d="M27.762,15c0.092-0.322,0.156-0.656,0.188-1H17c0.031,0.344,0.096,0.678,0.188,1H27.762z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M23.525,16c1.207,0,2.217-0.86,2.449-2h-4.898C21.309,15.14,22.318,16,23.525,16z" fill="#0C3554"/>
-<path d="M28,13c0,0.553-0.205,1-0.459,1H16.459C16.205,14,16,13.553,16,13l0,0 c0-0.553,0.205-1,0.459-1h11.082C27.795,12,28,12.447,28,13L28,13z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M28,13c0,0.553-0.205,1-0.459,1H16.459C16.205,14,16,13.553,16,13l0,0 c0-0.553,0.205-1,0.459-1h11.082C27.795,12,28,12.447,28,13L28,13z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M28,13.5c0,0.276-0.205,0.5-0.459,0.5H16.459C16.205,14,16,13.776,16,13.5l0,0c0-0.276,0.205-0.5,0.459-0.5 h11.082C27.795,13,28,13.224,28,13.5L28,13.5z" fill="#3B2314"/>
-<path d="M15,14c0,0.553-0.205,1-0.459,1H3.459C3.205,15,3,14.553,3,14l0,0c0-0.553,0.205-1,0.459-1h11.082 C14.795,13,15,13.447,15,14L15,14z" opacity="0.4"/>
+<path d="M15,14c0,0.553-0.205,1-0.459,1H3.459C3.205,15,3,14.553,3,14l0,0c0-0.553,0.205-1,0.459-1h11.082 C14.795,13,15,13.447,15,14L15,14z" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.4746" x2="9.4746" y1="8.208" y2="18.834">
- <stop offset="0" style="stop-color:#DB9D00"/>
- <stop offset="1" style="stop-color:#FFEEA9"/>
+<stop offset="0" style="stop-color:#DB9D00"/>
+<stop offset="1" style="stop-color:#FFEEA9"/>
</linearGradient>
<path d="M9.475,19c2.863,0,5.221-2.201,5.475-5H4C4.254,16.799,6.611,19,9.475,19z" fill="url(#SVGID_3_)"/>
<path d="M9.475,18c2.314,0,4.197-1.753,4.449-4H5.025C5.277,16.247,7.16,18,9.475,18z" fill="#FFFFFF"/>
-<path d="M14.762,15c0.092-0.322,0.156-0.656,0.188-1H4c0.031,0.344,0.096,0.678,0.188,1H14.762z" opacity="0.2"/>
+<path d="M14.762,15c0.092-0.322,0.156-0.656,0.188-1H4c0.031,0.344,0.096,0.678,0.188,1H14.762z" fill-opacity="0.2" stroke-opacity="0.2"/>
<path d="M10.525,16c1.207,0,2.217-0.86,2.449-2H8.076C8.309,15.14,9.318,16,10.525,16z" fill="#0C3554"/>
-<path d="M15,13c0,0.553-0.205,1-0.459,1H3.459C3.205,14,3,13.553,3,13l0,0c0-0.553,0.205-1,0.459-1 h11.082C14.795,12,15,12.447,15,13L15,13z" fill="#FFFFFF" opacity="0.3"/>
+<path d="M15,13c0,0.553-0.205,1-0.459,1H3.459C3.205,14,3,13.553,3,13l0,0c0-0.553,0.205-1,0.459-1 h11.082C14.795,12,15,12.447,15,13L15,13z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<path d="M15,13.5c0,0.276-0.205,0.5-0.459,0.5H3.459C3.205,14,3,13.776,3,13.5l0,0C3,13.224,3.205,13,3.459,13 h11.082C14.795,13,15,13.224,15,13.5L15,13.5z" fill="#3B2314"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sound.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sound.svg Thu May 27 13:10:59 2010 +0300
@@ -1,33 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
-<path d="M21.09,27.19c-2.842,0-5.156-1.893-5.156-4.219s2.314-4.219,5.156-4.219c0.48,0,0.953,0.053,1.406,0.158v-8.596h-8.438v9.844c0,2.326-2.314,4.219-5.156,4.219s-5.154-1.89-5.154-4.21,2.314-4.219,5.156-4.219c0.48,0,0.953,0.053,1.406,0.158v-13.29h15.94v20.16c0,2.33-2.31,4.22-5.16,4.22z" opacity="0.6" style="enable-background:new;"/>
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
+<path d="M21.09,27.19c-2.842,0-5.156-1.893-5.156-4.219s2.314-4.219,5.156-4.219c0.48,0,0.953,0.053,1.406,0.158v-8.596h-8.438v9.844c0,2.326-2.314,4.219-5.156,4.219s-5.154-1.89-5.154-4.21,2.314-4.219,5.156-4.219c0.48,0,0.953,0.053,1.406,0.158v-13.29h15.94v20.16c0,2.33-2.31,4.22-5.16,4.22z" fill-opacity="0.6" stroke-opacity="0.6" style="enable-background:new;"/>
<path d="M11.25,3.75v13.68c-0.67-0.35-1.476-0.555-2.344-0.555-2.33,0-4.219,1.469-4.219,3.281s1.889,3.281,4.219,3.281,4.219-1.469,4.219-3.281v-10.78h10.31v10.87c-0.67-0.35-1.476-0.555-2.344-0.555-2.33,0-4.219,1.469-4.219,3.281s1.889,3.281,4.219,3.281,4.219-1.469,4.219-3.281v-19.21h-14.06z" fill="url(#SVGID_1_)"/>
-
<path d="M8.906,22.5c-2.125,0-3.863-1.225-4.159-2.813-0.028,0.154-0.06,0.308-0.06,0.469,0,1.813,1.889,3.281,4.219,3.281s4.219-1.469,4.219-3.281v-0.938c0,1.81-1.88,3.28-4.214,3.28z"/>
-
<path d="M21.09,25.31c-2.125,0-3.863-1.225-4.158-2.813-0.029,0.154-0.061,0.308-0.061,0.469,0,1.813,1.889,3.281,4.219,3.281s4.219-1.469,4.219-3.281v-0.938c0,1.81-1.89,3.28-4.22,3.28z"/>
-
<rect height="0.938" width="10.31" x="13.12" y="8.438"/>
-
-<path d="M8.906,17.81c0.868,0,1.673,0.205,2.344,0.555v-0.93c-0.67-0.35-1.476-0.555-2.344-0.555-2.33,0-4.219,1.469-4.219,3.281,0,0.161,0.032,0.314,0.06,0.469,0.296-1.59,2.035-2.82,4.159-2.82z" fill="#FFFFFF" opacity="0.4" style="enable-background:new;"/>
-
-<path d="M21.09,20.62c0.868,0,1.674,0.205,2.344,0.555v-0.938c-0.67-0.35-1.476-0.555-2.344-0.555-2.33,0-4.219,1.469-4.219,3.281,0,0.161,0.031,0.314,0.061,0.469,0.3-1.58,2.04-2.81,4.16-2.81z" fill="#FFFFFF" opacity="0.4" style="enable-background:new;"/>
-
-<rect fill="#FFFFFF" height="0.938" opacity="0.4" style="enable-background:new;" width="14.06" x="11.25" y="3.75"/>
-
+<path d="M8.906,17.81c0.868,0,1.673,0.205,2.344,0.555v-0.93c-0.67-0.35-1.476-0.555-2.344-0.555-2.33,0-4.219,1.469-4.219,3.281,0,0.161,0.032,0.314,0.06,0.469,0.296-1.59,2.035-2.82,4.159-2.82z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4" style="enable-background:new;"/>
+<path d="M21.09,20.62c0.868,0,1.674,0.205,2.344,0.555v-0.938c-0.67-0.35-1.476-0.555-2.344-0.555-2.33,0-4.219,1.469-4.219,3.281,0,0.161,0.031,0.314,0.061,0.469,0.3-1.58,2.04-2.81,4.16-2.81z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4" style="enable-background:new;"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="0.938" stroke-opacity="0.4" style="enable-background:new;" width="14.06" x="11.25" y="3.75"/>
<defs>
-
<linearGradient gradientTransform="matrix(0.9375 0 0 -0.9375 -280.6875 -343.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="315.4" x2="315.4" y1="-370.7" y2="-394.3">
-
<stop offset="0" stop-color="#DE6929"/>
-
<stop offset="1" stop-color="#D9340F"/>
-
</linearGradient>
-
</defs>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_speaker.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
+<polygon fill-opacity="0.6" points="7.764,21 1,21 1,9 7.764,9 19,3.382 19,26.618 " stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.9995" x2="9.9995" y1="5.0522" y2="24.9497">
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="0.4" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#626262"/>
+</linearGradient>
+<polygon fill="url(#SVGID_1_)" points="8,10 2,10 2,20 8,20 18,25 18,5 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="9.5" x2="9.5" y1="8.4131" y2="21.5318">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="0.5" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
+</linearGradient>
+<polygon fill="url(#SVGID_2_)" points="11,8.5 8,10 8,20 11,21.5 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="6.5" x2="6.5" y1="4.8179" y2="22.0767">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="0.5" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
+</linearGradient>
+<rect fill="url(#SVGID_3_)" height="10" width="3" x="5" y="10"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="8,10 2,10 2,11 8,11 18,6 18,5 " stroke-opacity="0.4"/>
+<rect fill-opacity="0.4" height="10" width="1" x="7" y="10"/>
+<rect fill="none" height="30" width="30"/>
+<path d="M19.793,20.207l0.529-0.694C21.275,18.261,21.8,16.658,21.8,15s-0.524-3.261-1.478-4.513l-0.529-0.694 l2.267-2.267l0.697,0.881C24.203,10.235,25,12.577,25,15s-0.797,4.765-2.243,6.593l-0.697,0.881L19.793,20.207z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="22.5586" x2="22.5586" y1="20.9727" y2="9.0278">
+<stop offset="0" style="stop-color:#048CC6"/>
+<stop offset="0.5091" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
+</linearGradient>
+<path d="M22.8,15c0,1.959-0.638,3.747-1.682,5.118l0.854,0.854C23.23,19.383,24,17.295,24,15 s-0.77-4.383-2.027-5.973l-0.854,0.854C22.162,11.253,22.8,13.041,22.8,15z" fill="url(#SVGID_4_)"/>
+<path d="M23.554,23.968l0.344-0.652C25.124,20.991,25.8,18.038,25.8,15s-0.676-5.991-1.902-8.315l-0.344-0.652 l2.322-2.322l0.646,1.15C28.12,7.705,29,11.307,29,15s-0.88,7.295-2.478,10.14l-0.646,1.15L23.554,23.968z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="26.3906" x2="26.3906" y1="24.6504" y2="5.3501">
+<stop offset="0" style="stop-color:#048CC6"/>
+<stop offset="0.5091" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
+</linearGradient>
+<path d="M25.65,24.65C27.115,22.042,28,18.678,28,15s-0.885-7.042-2.35-9.65l-0.868,0.868 C26.042,8.605,26.8,11.666,26.8,15s-0.758,6.395-2.018,8.782L25.65,24.65z" fill="url(#SVGID_5_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_star_non_favourited.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_star_non_favourited.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<g opacity="None">
-<defs>
-</defs>
-<polygon opacity="0.6" points="15,0.734 19.635,10.126 30,11.632 22.5,18.943 24.27,29.266 15,24.393 5.73,29.266 7.5,18.943 0,11.632 10.365,10.126 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2.9937" y2="27.438">
- <stop offset="0" style="stop-color:#FFE896"/>
- <stop offset="1" style="stop-color:#FFB701"/>
-</linearGradient>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g opacity="0.5">
+<polygon fill-opacity="0.6" points="15,0.734 19.635,10.126 30,11.632 22.5,18.943 24.27,29.266 15,24.393 5.73,29.266 7.5,18.943 0,11.632 10.365,10.126 " stroke-opacity="0.6"/>
<polygon fill="url(#SVGID_1_)" points="15,23.262 7.058,27.438 8.574,18.594 2.149,12.331 11.029,11.04 15,2.994 18.971,11.04 27.852,12.331 21.426,18.594 22.941,27.438 "/>
<polygon fill="#FFFFFF" fill-opacity="0.4" points="11.693,11.954 15,5.253 18.307,11.954 26.959,13.201 27.852,12.331 18.971,11.04 15,2.994 11.029,11.04 2.149,12.331 3.042,13.201 "/>
<rect fill="none" height="30" width="30"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2.9937" y2="27.438">
+<stop offset="0" style="stop-color:#FFE896"/>
+<stop offset="1" style="stop-color:#FFB701"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_star_offline.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_star_offline.svg Thu May 27 13:10:59 2010 +0300
@@ -1,34 +1,26 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
-<polygon opacity="0.6" points="15,0.734 19.635,10.126 30,11.632 22.5,18.943 24.27,29.266 15,24.393 5.73,29.266 7.5,18.943 0,11.632 10.365,10.126 "/>
+<polygon fill-opacity="0.6" points="15,0.734 19.635,10.126 30,11.632 22.5,18.943 24.27,29.266 15,24.393 5.73,29.266 7.5,18.943 0,11.632 10.365,10.126 " stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2.9937" y2="27.438">
- <stop offset="0" style="stop-color:#FFE896"/>
- <stop offset="1" style="stop-color:#FFB701"/>
+<stop offset="0" style="stop-color:#FFE896"/>
+<stop offset="1" style="stop-color:#FFB701"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="15,23.262 7.058,27.438 8.574,18.594 2.149,12.331 11.029,11.04 15,2.994 18.971,11.04 27.852,12.331 21.426,18.594 22.941,27.438 "/>
<polygon fill="#FFFFFF" fill-opacity="0.4" points="11.693,11.954 15,5.253 18.307,11.954 26.959,13.201 27.852,12.331 18.971,11.04 15,2.994 11.029,11.04 2.149,12.331 3.042,13.201 "/>
<rect fill="none" height="30" width="30"/>
</g>
<g>
-<rect height="34.27" opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
+<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
<defs>
-
<linearGradient gradientTransform="matrix(0.8824 0 0 -0.8824 -284.8232 -348.3516)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="339.8" x2="339.8" y1="-397.3" y2="-425.3">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.2606" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
-
</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_swype.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
+<g>
+<path d="M0,30V0h30v30H0z M23.599,26.25l-8.732-8.732L6.134,26.25H23.599z M26.25,23.599V6.134l-8.732,8.732 L26.25,23.599z M3.75,23.331l8.465-8.465L3.75,6.401V23.331z M14.866,12.215L23.33,3.75H6.402L14.866,12.215z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="0.9941" y2="29.1902">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.6182" style="stop-color:#A8A8A8"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
+</linearGradient>
+<path d="M0.938,0.938v28.125h28.125V0.938H0.938z M13.541,14.866L2.813,25.595V4.138L13.541,14.866z M4.139,2.813h21.455L14.866,13.541L4.139,2.813z M14.866,16.192l10.995,10.995H3.871L14.866,16.192z M16.192,14.866L27.188,3.871 v21.99L16.192,14.866z" fill="url(#SVGID_1_)"/>
+<g>
+<polygon fill-opacity="0.6" points="8.547,25.313 7.61,17.813 5.625,17.813 5.625,12.199 24.375,12.199 24.375,17.813 22.391,17.813 21.453,25.313 " stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="12.103" y2="23.9943">
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
+</linearGradient>
+<polygon fill="url(#SVGID_2_)" points="6.563,13.137 6.563,16.875 8.438,16.875 9.375,24.375 20.625,24.375 21.563,16.875 23.438,16.875 23.438,13.137 "/>
+<path d="M13.125,14.063v-2.886c-0.348,0.048-0.692,0.073-1.03,0.073c-0.804,0-1.568-0.139-2.272-0.414 C5.866,9.294,5.955,6.329,5.96,6.204l0.019-0.408l0.312-0.265c0.103-0.088,1.06-0.855,2.881-0.855c0.958,0,1.99,0.212,3.066,0.632 c1.3,0.506,2.174,1.126,2.762,1.716c0.588-0.589,1.462-1.209,2.762-1.716c1.076-0.42,2.108-0.632,3.066-0.632 c1.82,0,2.777,0.767,2.881,0.855l0.313,0.265l0.019,0.408c0.005,0.125,0.094,3.091-3.862,4.632 c-0.704,0.275-1.469,0.414-2.272,0.414c-0.338,0-0.683-0.025-1.03-0.073v2.886H13.125z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M10.163,9.963c1.436,0.559,2.896,0.346,3.899,0.057v3.105h1.875V10.02 c1.003,0.289,2.464,0.502,3.899-0.057c3.375-1.316,3.267-3.717,3.267-3.717s-1.627-1.379-5.002-0.064 C16.242,6.907,15.392,7.849,15,8.551c-0.392-0.702-1.242-1.644-3.102-2.369C8.523,4.866,6.896,6.246,6.896,6.246 S6.788,8.647,10.163,9.963z" fill="url(#SVGID_3_)"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="4.9224" y2="12.8702">
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
+</linearGradient>
+</defs>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="14.9995" x2="14.9995" y1="12.5542" y2="17.3683">
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
+</linearGradient>
+<rect fill="url(#SVGID_4_)" height="3.738" width="16.875" x="6.563" y="13.137"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.9995" x2="14.9995" y1="16.8408" y2="24.5597">
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
+</linearGradient>
+<polygon fill="url(#SVGID_5_)" points="20.625,24.375 9.375,24.375 8.438,16.875 21.563,16.875 "/>
+<path d="M23.104,6.246c0,0-1.627-1.379-5.002-0.064C16.242,6.907,15.392,7.849,15,8.551 c-0.392-0.702-1.242-1.644-3.102-2.369C8.523,4.866,6.896,6.246,6.896,6.246s-0.109,2.401,3.267,3.717 c1.436,0.559,2.896,0.346,3.899,0.057v3.105h1.875V10.02c1.003,0.289,2.464,0.502,3.899-0.057 C23.212,8.647,23.104,6.246,23.104,6.246z" fill="url(#SVGID_3_)"/>
+<g fill-opacity="0.2" stroke-opacity="0.2">
+<path d="M14.063,9.082c-1.003,0.289-2.464,0.502-3.899-0.057C8.06,8.205,7.31,6.963,7.042,6.144 c-0.094,0.06-0.146,0.102-0.146,0.102s-0.109,2.401,3.267,3.717c1.436,0.559,2.896,0.346,3.899,0.057V9.082z"/>
+<path d="M22.958,6.144c-0.268,0.819-1.018,2.061-3.121,2.881c-1.436,0.559-2.896,0.346-3.899,0.057v0.938 c1.003,0.289,2.464,0.502,3.899-0.057c3.375-1.316,3.267-3.717,3.267-3.717S23.052,6.204,22.958,6.144z"/>
+<rect height="0.938" width="1.875" x="14.063" y="12.188"/>
+</g>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="0.926" stroke-opacity="0.3" width="16.875" x="6.563" y="13.137"/>
+<polygon fill-opacity="0.2" points="21.445,17.813 21.563,16.875 8.438,16.875 8.555,17.813 " stroke-opacity="0.2"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sync.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sync.svg Thu May 27 13:10:59 2010 +0300
@@ -1,27 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M19,26.5l-1,1c-5.58,0-13-1.141-13-11v-3H0.131L8,1.697L15.869,13.5H11v3c0,6.655,5.764,9,7,9L19,26.5z" opacity="0.6"/>
+<path d="M19,26.5l-1,1c-5.58,0-13-1.141-13-11v-3H0.131L8,1.697L15.869,13.5H11v3c0,6.655,5.764,9,7,9L19,26.5z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.9995" x2="9.9995" y1="3.5" y2="26.5005">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<path d="M10,16.5v-4h4l-6-9l-6,9h4v4c0,8,5,10,12,10C16,26.5,10,23.5,10,16.5z" fill="url(#SVGID_1_)"/>
-<path d="M10,16.5V18c0,3.939,1.9,6.612,3.918,8.195C15.176,26.405,16.541,26.5,18,26.5 C16,26.5,10,23.5,10,16.5z" fill="#FFFFFF" opacity="0.4"/>
-<polygon fill="#FFFFFF" opacity="0.4" points="8,5 13,12.5 14,12.5 8,3.5 2,12.5 3,12.5 "/>
-<path d="M14.131,16.5H19v-3c0-6.655-5.764-9-7-9l-1-1l1-1c5.58,0,13,1.141,13,11v3h4.869L22,28.303L14.131,16.5z" opacity="0.6"/>
+<path d="M10,16.5V18c0,3.939,1.9,6.612,3.918,8.195C15.176,26.405,16.541,26.5,18,26.5 C16,26.5,10,23.5,10,16.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="8,5 13,12.5 14,12.5 8,3.5 2,12.5 3,12.5 " stroke-opacity="0.4"/>
+<path d="M14.131,16.5H19v-3c0-6.655-5.764-9-7-9l-1-1l1-1c5.58,0,13,1.141,13,11v3h4.869L22,28.303L14.131,16.5z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="20" x2="20" y1="3.5" y2="26.5005">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<path d="M24,17.5v-4c0-8-5-10-12-10c2,0,8,3,8,10v4h-4l6,9l6-9H24z" fill="url(#SVGID_2_)"/>
-<polygon fill="#FFFFFF" opacity="0.4" points="20,17.5 16,17.5 16.666,18.5 20,18.5 "/>
-<path d="M24,14.5v-1c0-8-5-10-12-10c0.707,0,1.914,0.384,3.178,1.177C20.461,5.299,24,7.776,24,14.5z" fill="#FFFFFF" opacity="0.4"/>
-<polygon fill="#FFFFFF" opacity="0.4" points="24,17.5 24,18.5 27.334,18.5 28,17.5 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="20,17.5 16,17.5 16.666,18.5 20,18.5 " stroke-opacity="0.4"/>
+<path d="M24,14.5v-1c0-8-5-10-12-10c0.707,0,1.914,0.384,3.178,1.177C20.461,5.299,24,7.776,24,14.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="24,17.5 24,18.5 27.334,18.5 28,17.5 " stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_tag_inactive.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_tag_inactive.svg Thu May 27 13:10:59 2010 +0300
@@ -1,21 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<g opacity="None">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g opacity="0.5">
+<rect fill="none" height="30" width="30"/>
+<path d="M2,12.731V4.094L4.094,2h8.638l15.683,15.683L17.683,28.414L2,12.731z M6.904,5.952 c-0.525,0-0.952,0.427-0.952,0.952s0.427,0.953,0.952,0.953S7.857,7.43,7.857,6.904S7.43,5.952,6.904,5.952L6.904,5.952z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27,17.683L12.317,3h-7.81L3,4.508v7.81L17.683,27L27,17.683z M6.904,8.857 c-1.078,0-1.952-0.875-1.952-1.953s0.874-1.952,1.952-1.952s1.953,0.874,1.953,1.952S7.982,8.857,6.904,8.857z" fill="url(#SVGID_1_)"/>
+<path d="M6.904,9.857c1.078,0,1.953-0.875,1.953-1.953c0-0.174-0.03-0.34-0.072-0.5 C8.563,8.239,7.809,8.857,6.904,8.857S5.247,8.239,5.025,7.404c-0.043,0.16-0.073,0.326-0.073,0.5 C4.952,8.982,5.826,9.857,6.904,9.857z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="12.317,4 26.5,18.183 27,17.683 12.317,3 4.508,3 3,4.508 3,5.508 4.508,4 " stroke-opacity="0.4"/>
+<rect fill="#FFFFFF" height="7.321" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.0459 -6.6464)" width="11.95" x="10.071" y="12.385"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="17.683,22.859 9.232,14.43 8.662,15 17.683,24 23.43,18.253 22.859,17.683 " stroke-opacity="0.4"/>
+<polygon fill-opacity="0.15" points="14.409,10.373 22.289,18.253 22.859,17.683 14.409,9.232 9.232,14.409 9.803,14.979 " stroke-opacity="0.15"/>
+<rect fill="none" height="30" width="30"/>
<defs>
-</defs>
-<rect fill="none" height="30" width="30"/>
-<path d="M2,12.731V4.094L4.094,2h8.638l15.683,15.683L17.683,28.414L2,12.731z M6.904,5.952 c-0.525,0-0.952,0.427-0.952,0.952s0.427,0.953,0.952,0.953S7.857,7.43,7.857,6.904S7.43,5.952,6.904,5.952L6.904,5.952z" opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="3" y2="27.0005">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
-<path d="M27,17.683L12.317,3h-7.81L3,4.508v7.81L17.683,27L27,17.683z M6.904,8.857 c-1.078,0-1.952-0.875-1.952-1.953s0.874-1.952,1.952-1.952s1.953,0.874,1.953,1.952S7.982,8.857,6.904,8.857z" fill="url(#SVGID_1_)"/>
-<path d="M6.904,9.857c1.078,0,1.953-0.875,1.953-1.953c0-0.174-0.03-0.34-0.072-0.5 C8.563,8.239,7.809,8.857,6.904,8.857S5.247,8.239,5.025,7.404c-0.043,0.16-0.073,0.326-0.073,0.5 C4.952,8.982,5.826,9.857,6.904,9.857z" fill="#FFFFFF" opacity="0.4"/>
-<polygon fill="#FFFFFF" opacity="0.4" points="12.317,4 26.5,18.183 27,17.683 12.317,3 4.508,3 3,4.508 3,5.508 4.508,4 "/>
-<rect fill="#FFFFFF" height="7.321" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.0459 -6.6464)" width="11.95" x="10.071" y="12.385"/>
-<polygon fill="#FFFFFF" opacity="0.4" points="17.683,22.859 9.232,14.43 8.662,15 17.683,24 23.43,18.253 22.859,17.683 "/>
-<polygon opacity="0.15" points="14.409,10.373 22.289,18.253 22.859,17.683 14.409,9.232 9.232,14.409 9.803,14.979 "/>
-<rect fill="none" height="30" width="30"/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_telephony_offline.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_telephony_offline.svg Thu May 27 13:10:59 2010 +0300
@@ -1,46 +1,38 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M1,22.653c0-0.762,0.097-1.988,0.553-3.504c0.707-2.346,3.97-7.439,7.274-10.745 c3.348-3.345,7.787-6.116,9.228-6.665c2.32-0.878,4.919-0.822,5.796-0.596c0.122,0.036,0.678,0.226,1.427,0.645l0.269,0.155 c0.457,0.277,0.864,0.562,1.24,0.875c0.144,0.12,0.25,0.199,0.342,0.268c0.207,0.151,0.402,0.294,0.691,0.625 c0.65,0.74,0.876,1.075,0.915,1.134C28.908,5.112,29,5.422,29,5.741c0,0.584-0.294,1.132-0.789,1.469l-7.078,4.819 c-0.4,0.271-0.894,0.374-1.353,0.282c-0.435-0.088-0.803-0.339-1.042-0.708l-1.274-1.993c-1.575,1.008-3.029,2.209-4.648,3.831 c-1.037,1.037-2.093,2.485-2.829,3.622L9.4,17.799L10.156,18l0.813,0.484c0.488,0.286,0.785,0.814,0.785,1.413 c0,0.242-0.049,0.481-0.143,0.707l-0.021,0.054l-1.453,2.543l-2.851,4.91c-0.233,0.408-0.625,0.711-1.071,0.832 c-0.422,0.113-0.86,0.058-1.23-0.158c-0.077-0.049-0.36-0.24-0.998-0.754l-0.056-0.01l-0.173-0.168 c-0.331-0.271-0.432-0.377-0.681-0.652l-0.153-0.168c-1.228-1.344-1.721-2.822-1.742-2.885C1.025,23.706,1,23.02,1,22.653L1,22.653z " enable-background="new " opacity="0.6"/>
+<path d="M1,22.653c0-0.762,0.097-1.988,0.553-3.504c0.707-2.346,3.97-7.439,7.274-10.745 c3.348-3.345,7.787-6.116,9.228-6.665c2.32-0.878,4.919-0.822,5.796-0.596c0.122,0.036,0.678,0.226,1.427,0.645l0.269,0.155 c0.457,0.277,0.864,0.562,1.24,0.875c0.144,0.12,0.25,0.199,0.342,0.268c0.207,0.151,0.402,0.294,0.691,0.625 c0.65,0.74,0.876,1.075,0.915,1.134C28.908,5.112,29,5.422,29,5.741c0,0.584-0.294,1.132-0.789,1.469l-7.078,4.819 c-0.4,0.271-0.894,0.374-1.353,0.282c-0.435-0.088-0.803-0.339-1.042-0.708l-1.274-1.993c-1.575,1.008-3.029,2.209-4.648,3.831 c-1.037,1.037-2.093,2.485-2.829,3.622L9.4,17.799L10.156,18l0.813,0.484c0.488,0.286,0.785,0.814,0.785,1.413 c0,0.242-0.049,0.481-0.143,0.707l-0.021,0.054l-1.453,2.543l-2.851,4.91c-0.233,0.408-0.625,0.711-1.071,0.832 c-0.422,0.113-0.86,0.058-1.23-0.158c-0.077-0.049-0.36-0.24-0.998-0.754l-0.056-0.01l-0.173-0.168 c-0.331-0.271-0.432-0.377-0.681-0.652l-0.153-0.168c-1.228-1.344-1.721-2.822-1.742-2.885C1.025,23.706,1,23.02,1,22.653L1,22.653z " fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(-4.371139e-008 1 1 4.371139e-008 396.0192 -292.4791)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="305.3745" x2="305.3745" y1="-369.2378" y2="-394.3224">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
<path d="M17.757,8.34c-2.193,1.274-3.96,2.8-5.603,4.441c-1.58,1.581-3.231,4.096-3.815,5.221L2.07,23.858 c-0.185-0.516-0.284-2.254,0.374-4.439c0.66-2.188,3.843-7.157,7.042-10.354c3.198-3.196,7.526-5.93,8.897-6.451 c2.161-0.817,4.542-0.744,5.235-0.566c0,0,0.631,0.208,1.449,0.697C25.418,2.955,17.757,8.34,17.757,8.34z" fill="url(#SVGID_1_)"/>
<radialGradient cx="314.1274" cy="-383.3599" gradientTransform="matrix(-4.371139e-008 1 1 4.371139e-008 396.0192 -292.4791)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="11.9051">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</radialGradient>
<path d="M6.479,27.641l2.846-4.904l1.426-2.494c0.153-0.363,0.055-0.771-0.259-0.957l-1.207-0.717H9.283 l-0.944-0.566c0.002-0.002,0.008-0.006,0.01-0.008c-2.9-0.369-5.641,1.449-6.255,4.246c-0.08,0.371-0.12,0.738-0.122,1.102 c0.025,0.223,0.061,0.403,0.099,0.517c0,0,0.436,1.332,1.543,2.543c0.369,0.405,0.383,0.444,0.77,0.755 c0.001,0.002,0.003,0.002,0.007,0.004c0.76,0.615,1.062,0.816,1.062,0.816C5.798,28.176,6.259,28.028,6.479,27.641z" fill="url(#SVGID_2_)"/>
-<path d="M9.285,18.569l1.207,0.717c0.313,0.186,0.412,0.594,0.259,0.957 l-1.426,2.494l-2.846,4.904c-0.221,0.387-0.682,0.535-1.028,0.334c0,0-0.304-0.201-1.067-0.82L9.285,18.569z" enable-background="new " fill="#FFFFFF" opacity="0.4"/>
+<path d="M9.285,18.569l1.207,0.717c0.313,0.186,0.412,0.594,0.259,0.957 l-1.426,2.494l-2.846,4.904c-0.221,0.387-0.682,0.535-1.028,0.334c0,0-0.304-0.201-1.067-0.82L9.285,18.569z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<radialGradient cx="297.7944" cy="-368.7876" gradientTransform="matrix(-4.371139e-008 1 1 4.371139e-008 396.0192 -292.4791)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="12.0638">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</radialGradient>
<path d="M20.607,11.257l7.076-4.818c0.373-0.252,0.494-0.738,0.27-1.084c0,0-0.195-0.301-0.832-1.027 c-0.001,0,0-0.002-0.002-0.002c-0.348-0.395-0.478-0.414-0.929-0.789c-0.628-0.521-1.253-0.888-1.733-1.126 C21.432,1.84,18.492,3.688,17.854,6.6c-0.134,0.595-0.152,1.187-0.082,1.762l1.046,1.637l0.707,1.101 C19.746,11.445,20.232,11.513,20.607,11.257z" fill="url(#SVGID_3_)"/>
-<path d="M27.119,4.327c0.639,0.728,0.834,1.029,0.834,1.029 c0.225,0.346,0.104,0.832-0.27,1.084l-7.076,4.818c-0.374,0.255-0.861,0.188-1.082-0.159l-0.707-1.101L27.119,4.327z" enable-background="new " fill="#FFFFFF" opacity="0.4"/>
+<path d="M27.119,4.327c0.639,0.728,0.834,1.029,0.834,1.029 c0.225,0.346,0.104,0.832-0.27,1.084l-7.076,4.818c-0.374,0.255-0.861,0.188-1.082-0.159l-0.707-1.101L27.119,4.327z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
<g>
-<rect height="34.27" opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
+<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
<defs>
-
<linearGradient gradientTransform="matrix(0.8824 0 0 -0.8824 -284.8232 -348.3516)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="339.8" x2="339.8" y1="-397.3" y2="-425.3">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.2606" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
-
</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_text.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_text.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
+<polygon fill-opacity="0.6" points="27,28 27,2 3,2 3,21.414 9.586,28 "/>
+<polygon fill="url(#SVGID_1_)" points="26,3 26,27 10,27 4,21 4,3 "/>
+<polygon fill="#FFFFFF" points="4,21 10,21 10,27 "/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="18" x="6" y="7"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="18" x="6" y="11"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="12" x="6" y="15"/>
<rect fill="none" height="30" width="30"/>
-<polygon opacity="0.6" points="3,29 3,1 27,1 27,22.414 20.414,29 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
- <stop offset="0" style="stop-color:#F9F9F9"/>
- <stop offset="1" style="stop-color:#B5B5B5"/>
+<defs>
+<linearGradient gradientTransform="matrix(-1 0 0 1 236 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="221" x2="221" y1="3" y2="27.0005">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="4,2 4,28 20,28 26,22 26,2 "/>
-<polygon fill="#FFFFFF" points="26,22 20,22 20,28 "/>
-<rect enable-background="new " height="1.5" opacity="0.5" width="16" x="7" y="6.5"/>
-<rect enable-background="new " height="1.5" opacity="0.5" width="16" x="7" y="10.5"/>
-<rect enable-background="new " height="1.5" opacity="0.5" width="11" x="7" y="14.5"/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_tick.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_tick.svg Thu May 27 13:10:59 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30.002" width="30.002"/>
-<polygon enable-background="new " opacity="0.6" points="0.587,15.429 5.713,10.303 11.597,16.187 24.289,3.491 29.416,8.617 11.605,26.427 "/>
+<polygon fill-opacity="0.6" points="0.587,15.429 5.713,10.303 11.597,16.187 24.289,3.491 29.416,8.617 11.605,26.427 " stroke-opacity="0.6"/>
+<polygon fill="url(#SVGID_1_)" points="28.002,8.617 24.289,4.905 11.597,17.601 5.713,11.718 2.001,15.429 11.589,25.013 11.597,25.003 11.605,25.013 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="5.713,13.103 11.597,18.989 24.289,6.292 27.307,9.31 28.002,8.617 24.289,4.905 11.597,17.601 5.713,11.718 2.001,15.429 2.695,16.12 " stroke-opacity="0.4"/>
+<defs>
<linearGradient gradientTransform="matrix(0.8824 0 0 0.8824 -227.5791 -1120.5674)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="274.9102" x2="274.9102" y1="1274.2861" y2="1300.495">
- <stop offset="0" style="stop-color:#A0F800"/>
- <stop offset="1" style="stop-color:#319E00"/>
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="28.002,8.617 24.289,4.905 11.597,17.601 5.713,11.718 2.001,15.429 11.589,25.013 11.597,25.003 11.605,25.013 "/>
-<polygon enable-background="new " fill="#FFFFFF" opacity="0.4" points="5.713,13.103 11.597,18.989 24.289,6.292 27.307,9.31 28.002,8.617 24.289,4.905 11.597,17.601 5.713,11.718 2.001,15.429 2.695,16.12 "/>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_tip.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_tip.svg Thu May 27 13:10:59 2010 +0300
@@ -1,48 +1,43 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M23.732,4.574C22.354,2.944,19.719,1,15,1c-4.721,0-7.355,1.944-8.734,3.576 C4.393,6.79,3.629,9.895,4.17,13.091c0.518,3.071,1.816,6.16,3.828,8.404v6.013L9.606,29h10.786L22,27.507v-6.005 c2.013-2.244,3.313-5.336,3.832-8.411C26.369,9.894,25.605,6.788,23.732,4.574z" opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21" x2="9.1644" y1="24.75" y2="24.75">
- <stop offset="0" style="stop-color:#969696"/>
- <stop offset="0.6242" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#B3B3B3"/>
-</linearGradient>
+<path d="M23.732,4.574C22.354,2.944,19.719,1,15,1c-4.721,0-7.355,1.944-8.734,3.576 C4.393,6.79,3.629,9.895,4.17,13.091c0.518,3.071,1.816,6.16,3.828,8.404v6.013L9.606,29h10.786L22,27.507v-6.005 c2.013-2.244,3.313-5.336,3.832-8.411C26.369,9.894,25.605,6.788,23.732,4.574z" fill-opacity="0.6" stroke-opacity="0.6"/>
<polygon fill="url(#SVGID_1_)" points="8.998,21.5 8.998,27.071 9.999,28 20,28 21,27.071 21,21.5 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="1.0713" y2="20.5717">
- <stop offset="0" style="stop-color:#FEE06A"/>
- <stop offset="0.503" style="stop-color:#FFC501"/>
- <stop offset="1" style="stop-color:#FEAB29"/>
+<stop offset="0" style="stop-color:#FEE06A"/>
+<stop offset="0.503" style="stop-color:#FFC501"/>
+<stop offset="1" style="stop-color:#FEAB29"/>
</linearGradient>
<path d="M15,2C7.455,2,4.219,7.377,5.156,12.925c0.936,5.544,4.402,10.848,9.826,10.924l0,0 c0.006,0,0.012,0,0.018,0c0.008,0,0.014,0,0.02,0l0,0c5.424-0.076,8.89-5.38,9.824-10.924C25.779,7.377,22.544,2,15,2z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="21" x2="9.1644" y1="24.75" y2="24.75">
- <stop offset="0" style="stop-color:#969696"/>
- <stop offset="0.6242" style="stop-color:#F2F2F2"/>
- <stop offset="1" style="stop-color:#B3B3B3"/>
-</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="8.998,21.5 8.998,27.071 9.999,28 20,28 21,27.071 21,21.5 "/>
+<polygon fill="url(#SVGID_1_)" points="8.998,21.5 8.998,27.071 9.999,28 20,28 21,27.071 21,21.5 "/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="8.998" x2="21" y1="24.2852" y2="24.2852">
- <stop offset="0" style="stop-color:#A0A8AC"/>
- <stop offset="0.1212" style="stop-color:#BDC3C4"/>
- <stop offset="0.2848" style="stop-color:#E9EFF2"/>
- <stop offset="0.6727" style="stop-color:#949DA1"/>
- <stop offset="0.8182" style="stop-color:#D9DFE1"/>
- <stop offset="0.9636" style="stop-color:#ADB3B5"/>
- <stop offset="1" style="stop-color:#595C5E"/>
+<stop offset="0" style="stop-color:#A0A8AC"/>
+<stop offset="0.1212" style="stop-color:#BDC3C4"/>
+<stop offset="0.2848" style="stop-color:#E9EFF2"/>
+<stop offset="0.6727" style="stop-color:#949DA1"/>
+<stop offset="0.8182" style="stop-color:#D9DFE1"/>
+<stop offset="0.9636" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="5.571" width="12.002" x="8.998" y="21.5"/>
-<path d="M8.443,20.5c1.655,1.991,3.857,3.31,6.539,3.349l0,0c0.006,0,0.012,0,0.018,0c0.008,0,0.014,0,0.02,0l0,0 c2.682-0.039,4.884-1.357,6.539-3.349H8.443z" opacity="0.2"/>
+<path d="M8.443,20.5c1.655,1.991,3.857,3.31,6.539,3.349l0,0c0.006,0,0.012,0,0.018,0c0.008,0,0.014,0,0.02,0l0,0 c2.682-0.039,4.884-1.357,6.539-3.349H8.443z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.998" x2="21" y1="24.2852" y2="24.2852">
- <stop offset="0" style="stop-color:#A8B1B3"/>
- <stop offset="0.4" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#686E70"/>
+<stop offset="0" style="stop-color:#A8B1B3"/>
+<stop offset="0.4" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#686E70"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="5.571" width="12.002" x="8.998" y="21.5"/>
-<rect height="0.929" opacity="0.25" width="12.002" x="8.998" y="22.633"/>
-<rect height="0.927" opacity="0.25" width="12.002" x="8.998" y="24.491"/>
-<path d="M6.23,9.388C8.414,10.377,11.529,11,15,11c3.475,0,6.592-0.624,8.775-1.615 c-0.779-3.471-3.676-6.199-8.771-6.199C9.908,3.186,7.008,5.914,6.23,9.388z" fill="#FFFFFF" opacity="0.6"/>
+<rect fill-opacity="0.25" height="0.929" stroke-opacity="0.25" width="12.002" x="8.998" y="22.633"/>
+<rect fill-opacity="0.25" height="0.927" stroke-opacity="0.25" width="12.002" x="8.998" y="24.491"/>
+<path d="M6.23,9.388C8.414,10.377,11.529,11,15,11c3.475,0,6.592-0.624,8.775-1.615 c-0.779-3.471-3.676-6.199-8.771-6.199C9.908,3.186,7.008,5.914,6.23,9.388z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21" x2="9.1644" y1="24.75" y2="24.75">
+<stop offset="0" style="stop-color:#969696"/>
+<stop offset="0.6242" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_todo.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_todo.svg Thu May 27 13:10:59 2010 +0300
@@ -1,27 +1,24 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
-<rect fill="none" height="30" width="30"/>
-<polygon opacity="0.6" points="21,3 21,1 9,1 9,3 4,3 4,29 19.414,29 26,22.414 26,3 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2.1206" y2="28.8787">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#B1B1B1"/>
+<polygon fill-opacity="0.6" points="9,3 9,1 21,1 21,3 26,3 26,29 10.586,29 4,22.414 4,3 " stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1412 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1427" x2="-1427" y1="2.1206" y2="28.8787">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#B1B1B1"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="25,22 25,4 5,4 5,28 19,28 "/>
-<path d="M10.5,10v2h-2v-2H10.5 M11.5,9h-4v4h4V9L11.5,9z" opacity="0.5"/>
-<rect height="1.5" opacity="0.5" width="9" x="13" y="10.25"/>
-<path d="M10.5,16v2h-2v-2H10.5 M11.5,15h-4v4h4V15L11.5,15z" opacity="0.5"/>
-<rect height="1.5" opacity="0.5" width="9" x="13" y="16.25"/>
+<polygon fill="url(#SVGID_1_)" points="5,22 5,4 25,4 25,28 11,28 "/>
+<path d="M10.5,10v2h-2v-2H10.5 M11.5,9h-4v4h4V9L11.5,9z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="9" x="13" y="10.25"/>
+<path d="M10.5,16v2h-2v-2H10.5 M11.5,15h-4v4h4V15L11.5,15z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="9" x="13" y="16.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="1.6084" y2="7.4429">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="5" width="10" x="10" y="2"/>
-<rect fill="#FFFFFF" height="1" opacity="0.3" width="10" x="10" y="2"/>
-<polygon fill="#FFFFFF" points="19,28 25,22 19,22 "/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="10" x="10" y="2"/>
+<polygon fill="#FFFFFF" points="11,28 5,22 11,22 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_todo_done.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_todo_done.svg Thu May 27 13:10:59 2010 +0300
@@ -1,27 +1,24 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
-<rect fill="none" height="30" width="30"/>
-<polygon opacity="0.6" points="21,3 21,1 9,1 9,3 4,3 4,29 19.414,29 26,22.414 26,3 "/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2.1206" y2="28.8787">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="1" style="stop-color:#B1B1B1"/>
+<polygon fill-opacity="0.6" points="9,3 9,1 21,1 21,3 26,3 26,29 10.586,29 4,22.414 4,3 " stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1412 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1427" x2="-1427" y1="2.1206" y2="28.8787">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#B1B1B1"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="25,22 25,4 5,4 5,28 19,28 "/>
-<path d="M10.5,10v2h-2v-2H10.5 M11.5,9h-4v4h4V9L11.5,9z" opacity="0.5"/>
-<rect height="1.5" opacity="0.5" width="9" x="13" y="10.25"/>
-<path d="M10.5,16v2h-2v-2H10.5 M11.5,15h-4v4h4V15L11.5,15z" opacity="0.5"/>
-<rect height="1.5" opacity="0.5" width="9" x="13" y="16.25"/>
+<polygon fill="url(#SVGID_1_)" points="5,22 5,4 25,4 25,28 11,28 "/>
+<path d="M10.5,10v2h-2v-2H10.5 M11.5,9h-4v4h4V9L11.5,9z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="9" x="13" y="10.25"/>
+<path d="M10.5,16v2h-2v-2H10.5 M11.5,15h-4v4h4V15L11.5,15z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="9" x="13" y="16.25"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="1.6084" y2="7.4429">
- <stop offset="0" style="stop-color:#D07100"/>
- <stop offset="1" style="stop-color:#A23600"/>
+<stop offset="0" style="stop-color:#D07100"/>
+<stop offset="1" style="stop-color:#A23600"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="5" width="10" x="10" y="2"/>
-<rect fill="#FFFFFF" height="1" opacity="0.3" width="10" x="10" y="2"/>
-<polygon fill="#FFFFFF" points="19,28 25,22 19,22 "/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="10" x="10" y="2"/>
+<polygon fill="#FFFFFF" points="11,28 5,22 11,22 "/>
<rect fill="none" height="30" width="30"/>
</g>
<g>
@@ -29,15 +26,10 @@
<polygon fill="url(#SVGID_1__)" points="26.46,15.41,19.39,22.48,15.86,18.95,13.74,21.07,19.39,26.73,28.59,17.54"/>
<rect fill="none" height="30" width="30"/>
<defs>
-
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 417.127 253.8542)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-449" x2="-439.8" y1="111" y2="120.2">
-
<stop offset="0" stop-color="#A0F800"/>
-
<stop offset="1" stop-color="#319E00"/>
-
</linearGradient>
-
</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_unknown.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_unknown.svg Thu May 27 13:10:59 2010 +0300
@@ -1,25 +1,23 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M13.5,28c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5S15.43,28,13.5,28L13.5,28z" fill-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13.4995" x2="13.4995" y1="2.917" y2="26.9193">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<circle cx="13.5" cy="24.5" fill="url(#SVGID_1_)" r="2.5"/>
<path d="M10.511,20.719v-2.654c0-1.242,0.284-2.343,0.843-3.273c0.512-0.857,1.271-1.766,2.316-2.773 c1.214-1.193,1.579-1.766,1.688-2c0.181-0.392,0.272-0.771,0.272-1.123c0-0.758-0.18-1.287-0.551-1.619 c-0.396-0.353-1.066-0.533-1.987-0.533c-1.044,0-2.324,0.225-3.806,0.667L8,7.793V2.98l0.733-0.203C10.598,2.262,12.299,2,13.791,2 c2.549,0,4.557,0.553,5.969,1.643C21.246,4.793,22,6.484,22,8.674c0,0.926-0.208,1.874-0.617,2.816 c-0.412,0.951-1.313,2.125-2.757,3.588c-0.938,0.947-1.56,1.644-1.85,2.072c-0.221,0.326-0.327,0.696-0.327,1.135v2.434H10.511z" fill-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="2.9165" y2="26.9195">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<path d="M19.148,4.434C17.911,3.479,16.126,3,13.791,3C12.384,3,10.787,3.246,9,3.741v2.71 c1.581-0.473,2.945-0.709,4.092-0.709c1.18,0,2.063,0.263,2.654,0.788c0.588,0.526,0.884,1.313,0.884,2.364 c0,0.503-0.123,1.018-0.365,1.544c-0.243,0.524-0.876,1.292-1.901,2.3c-0.971,0.935-1.688,1.791-2.152,2.568 c-0.468,0.777-0.7,1.697-0.7,2.758v1.654h3.938v-1.434c0-0.641,0.167-1.205,0.498-1.693c0.33-0.489,0.986-1.227,1.967-2.215 c1.347-1.366,2.194-2.46,2.552-3.284C20.824,10.268,21,9.461,21,8.674C21,6.805,20.384,5.39,19.148,4.434z" fill="url(#SVGID_2_)"/>
-<path d="M13.5,23c1.209,0,2.218,0.859,2.449,2C15.982,24.838,16,24.672,16,24.5 c0-1.381-1.119-2.5-2.5-2.5S11,23.119,11,24.5c0,0.172,0.018,0.338,0.051,0.5C11.282,23.859,12.291,23,13.5,23z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M16.63,9.895c0-0.22-0.021-0.42-0.046-0.616c-0.047,0.381-0.138,0.767-0.319,1.16 c-0.243,0.524-0.876,1.292-1.901,2.3c-0.971,0.935-1.688,1.791-2.152,2.568c-0.468,0.777-0.7,1.697-0.7,2.758v1 c0-1.061,0.232-1.98,0.7-2.758c0.464-0.777,1.182-1.634,2.152-2.568c1.025-1.008,1.658-1.775,1.901-2.3 C16.507,10.912,16.63,10.397,16.63,9.895z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M19.148,5.434c1.106,0.856,1.712,2.084,1.827,3.672C20.987,8.961,21,8.816,21,8.674 c0-1.869-0.616-3.284-1.852-4.24C17.911,3.479,16.126,3,13.791,3C12.384,3,10.787,3.246,9,3.741v1C10.787,4.246,12.384,4,13.791,4 C16.126,4,17.911,4.479,19.148,5.434z" fill="#FFFFFF" opacity="0.4"/>
+<path d="M13.5,23c1.209,0,2.218,0.859,2.449,2C15.982,24.838,16,24.672,16,24.5 c0-1.381-1.119-2.5-2.5-2.5S11,23.119,11,24.5c0,0.172,0.018,0.338,0.051,0.5C11.282,23.859,12.291,23,13.5,23z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M16.63,9.895c0-0.22-0.021-0.42-0.046-0.616c-0.047,0.381-0.138,0.767-0.319,1.16 c-0.243,0.524-0.876,1.292-1.901,2.3c-0.971,0.935-1.688,1.791-2.152,2.568c-0.468,0.777-0.7,1.697-0.7,2.758v1 c0-1.061,0.232-1.98,0.7-2.758c0.464-0.777,1.182-1.634,2.152-2.568c1.025-1.008,1.658-1.775,1.901-2.3 C16.507,10.912,16.63,10.397,16.63,9.895z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M19.148,5.434c1.106,0.856,1.712,2.084,1.827,3.672C20.987,8.961,21,8.816,21,8.674 c0-1.869-0.616-3.284-1.852-4.24C17.911,3.479,16.126,3,13.791,3C12.384,3,10.787,3.246,9,3.741v1C10.787,4.246,12.384,4,13.791,4 C16.126,4,17.911,4.479,19.148,5.434z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_unselected.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_unselected.svg Thu May 27 13:10:59 2010 +0300
@@ -1,27 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill="url(#SVGID_1_)" height="28" width="28" x="1" y="1"/>
-
<path d="M1,1v28h2v-24c0-0.55,0.45-1,1-1h22c0.55,0,1,0.45,1,1v24h2v-28h-28z" fill-opacity="0.05" stroke-opacity="0.05"/>
-
<path d="M1,1v28h1v-25c0-0.55,0.45-1,1-1h24c0.55,0,1,0.45,1,1v25h1v-28h-28z" fill-opacity="0.1" stroke-opacity="0.1"/>
-
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="28" x="1" y="1"/>
-
<path d="M0,0v30h30v-30h-30zm29,29h-28v-28h28v28z" fill-opacity="0.6" stroke-opacity="0.6"/>
-
<defs>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1.219" y2="29.44">
-
<stop offset="0" stop-color="#E0E1E2"/>
-
<stop offset="1" stop-color="#FFFFFF"/>
-
</linearGradient>
-
</defs>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_unselected_highlight.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_unselected_highlight.svg Thu May 27 13:10:59 2010 +0300
@@ -1,33 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
+<g>
<rect fill-opacity="0.6" height="30" stroke-opacity="0.6" width="30"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1.219" y2="29.44">
-
<stop offset="0" stop-color="#4EDEFF"/>
-
<stop offset="1" stop-color="#16A0D4"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_1_)" height="28" width="28" x="1" y="1"/>
-
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="3.188" y2="27.38">
-
<stop offset="0" stop-color="#E0E1E2"/>
-
<stop offset="1" stop-color="#FFFFFF"/>
-
</linearGradient>
-
<rect fill="url(#SVGID_2_)" height="24" width="24" x="3" y="3"/>
-
<path d="M3,3v24h2v-20c0-0.55,0.45-1,1-1h18c0.55,0,1,0.45,1,1v20h2v-24h-24z" fill-opacity="0.05" stroke-opacity="0.05"/>
-
<path d="M3,3v24h1v-21c0-0.55,0.45-1,1-1h20c0.55,0,1,0.45,1,1v21h1v-24h-24z" fill-opacity="0.1" stroke-opacity="0.1"/>
-
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="24" x="3" y="3"/>
-
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_untrusted.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_untrusted.svg Thu May 27 13:10:59 2010 +0300
@@ -1,36 +1,34 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
-<path d="M4,29c-1.654,0-3-1.346-3-3V16c0-1.654,1.346-3,3-3h7v-3c0-4.962,4.038-9,9-9c5.299,0,9,3.29,9,8 c0,0.552-0.447,1-1,1h-4c-0.553,0-1-0.448-1-1c0-0.495,0-2-3-2c-1.654,0-3,1.346-3,3v3h4c1.654,0,3,1.346,3,3v10 c0,1.654-1.346,3-3,3H4z" opacity="0.6"/>
+<path d="M4,29c-1.654,0-3-1.346-3-3V16c0-1.654,1.346-3,3-3h7v-3c0-4.962,4.038-9,9-9c5.299,0,9,3.29,9,8 c0,0.552-0.447,1-1,1h-4c-0.553,0-1-0.448-1-1c0-0.495,0-2-3-2c-1.654,0-3,1.346-3,3v3h4c1.654,0,3,1.346,3,3v10 c0,1.654-1.346,3-3,3H4z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12" x2="28" y1="9" y2="9">
- <stop offset="0" style="stop-color:#8C8C8C"/>
- <stop offset="0.2083" style="stop-color:#BDBDBD"/>
- <stop offset="0.526" style="stop-color:#707070"/>
- <stop offset="1" style="stop-color:#8F8F8F"/>
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="0.2083" style="stop-color:#BDBDBD"/>
+<stop offset="0.526" style="stop-color:#707070"/>
+<stop offset="1" style="stop-color:#8F8F8F"/>
</linearGradient>
<path d="M20,2c-4.4,0-8,3.6-8,8v6h4v-6c0-2.206,1.794-4,4-4s4,0.794,4,3h4C28,4.6,24.4,2,20,2z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="13" x2="27" y1="9.5" y2="9.5">
- <stop offset="0" style="stop-color:#B4B4B4"/>
- <stop offset="0.2083" style="stop-color:#F0F0F0"/>
- <stop offset="0.526" style="stop-color:#969696"/>
- <stop offset="0.8061" style="stop-color:#A1A1A1"/>
- <stop offset="1" style="stop-color:#BEBEBE"/>
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="0.2083" style="stop-color:#F0F0F0"/>
+<stop offset="0.526" style="stop-color:#969696"/>
+<stop offset="0.8061" style="stop-color:#A1A1A1"/>
+<stop offset="1" style="stop-color:#BEBEBE"/>
</linearGradient>
<path d="M20,3c-3.859,0-7,3.141-7,7v6h2v-6c0-2.757,2.243-5,5-5s5,1.243,5,4h2C27,5.141,23.859,3,20,3z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="2" x2="23" y1="21" y2="21">
- <stop offset="0" style="stop-color:#FFB533"/>
- <stop offset="0.24" style="stop-color:#FFE692"/>
- <stop offset="0.75" style="stop-color:#ED8C0D"/>
- <stop offset="1" style="stop-color:#FFB81F"/>
+<stop offset="0" style="stop-color:#FFB533"/>
+<stop offset="0.24" style="stop-color:#FFE692"/>
+<stop offset="0.75" style="stop-color:#ED8C0D"/>
+<stop offset="1" style="stop-color:#FFB81F"/>
</linearGradient>
<path d="M23,26c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V16c0-1.1,0.9-2,2-2h17c1.1,0,2,0.9,2,2V26z" fill="url(#SVGID_3_)"/>
-<path d="M21,27H4c-1.1,0-2-0.9-2-2v1c0,1.1,0.9,2,2,2h17c1.1,0,2-0.9,2-2v-1C23,26.1,22.1,27,21,27z" fill="#873900" opacity="0.2"/>
-<path d="M21,14H4c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h17c1.1,0,2,0.9,2,2v-1C23,14.9,22.1,14,21,14z" fill="#FFFFFF" opacity="0.4"/>
-<rect height="2" opacity="0.2" width="21" x="2" y="23"/>
-<rect height="2" opacity="0.2" width="21" x="2" y="19"/>
+<path d="M21,27H4c-1.1,0-2-0.9-2-2v1c0,1.1,0.9,2,2,2h17c1.1,0,2-0.9,2-2v-1C23,26.1,22.1,27,21,27z" fill="#873900" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M21,14H4c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h17c1.1,0,2,0.9,2,2v-1C23,14.9,22.1,14,21,14z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<rect fill-opacity="0.2" height="2" stroke-opacity="0.2" width="21" x="2" y="23"/>
+<rect fill-opacity="0.2" height="2" stroke-opacity="0.2" width="21" x="2" y="19"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_url_address.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_url_address.svg Thu May 27 13:10:59 2010 +0300
@@ -1,42 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<polygon enable-background="new " opacity="0.6" points="3,29 3,1 27,1 27,22.414 20.414,29 "/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 8.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-87.52" x2="-87.52" y1="6.9805" y2="-19.0195">
- <stop offset="0" style="stop-color:#F9F9F9"/>
- <stop offset="1" style="stop-color:#B5B5B5"/>
+<polygon fill-opacity="0.6" points="28,29 28,1 2,1 2,22.414 8.586,29 " stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 236 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="221" x2="221" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#B5B5B5"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="4,2 4,28 20,28 26,22 26,2 "/>
-<polygon fill="#FFFFFF" points="26,22 20,22 20,28 "/>
-<circle cx="15" cy="14" enable-background="new " opacity="0.2" r="8"/>
-<radialGradient cx="-32.2568" cy="-444.0615" gradientTransform="matrix(0.3502 0 0 -0.3502 26.2965 -145.2794)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="30.0961">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<polygon fill="url(#SVGID_1_)" points="27,2 27,28 9,28 3,22 3,2 "/>
+<circle cx="15" cy="14" fill-opacity="0.2" r="8" stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" points="3,22 9,22 9,28 "/>
+<radialGradient cx="-453.8818" cy="-300.0874" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="30.0958">
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="13" fill="url(#SVGID_2_)" r="8"/>
-<path d="M22.715,12.562c-0.178-3.125-2.201-5.814-5.156-6.855l-0.361,0.059l-2.089-0.399 L12.5,6.919l-0.098,0.654H10.89l0.598,1.018l-1.619,1.32l-0.377,1.63l1.336,2.37l1.365-0.279l0.498,0.429l0.39,0.038l0.257,1.004 l-0.339,0.882l1.239,3.169h1.264l1.252-1.012v-0.414l0.331-0.512l0.272-0.142c-0.068,0.104-0.178,0.351-0.178,0.351 c-0.013,0.082,0.178,1.694,0.733,1.567c0.422-0.097,1.929-2.896,1.957-3.16c0.058-0.526-0.229-0.745-0.405-0.827l-0.195-0.093 l-0.899,0.904c-0.097,0.006-0.183,0.022-0.263,0.047v-0.749l0.979-0.954l0.496-1.604l0.758-0.615l-0.166-0.303l0.572-0.551 l-0.318-0.582l0.242,0.03l1.424,3.187l0.291-0.233c-0.01-0.156-0.025-0.31-0.044-0.464L22.715,12.562z M15.096,8.978l-0.119-0.316 h0.714l0.349,0.781h-0.517V8.978H15.096z M17.453,10.554l0.57,0.832l0.039,0.1l-0.584-0.354l-0.142-0.504L17.453,10.554z M18.313,12.008l0.172,0.173l-0.223,0.049l-0.051-0.061L18.313,12.008z M13.848,6.408l0.363,0.562l-0.413,0.126l-0.161-0.092 L13.848,6.408z" enable-background="new " opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 8.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-87.52" x2="-87.52" y1="3.9404" y2="-12.1023">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<path d="M22.715,12.562c-0.178-3.125-2.201-5.814-5.157-6.855l-0.36,0.059l-2.09-0.399L12.5,6.919l-0.098,0.654 h-1.512l0.598,1.018l-1.619,1.32l-0.377,1.63l1.336,2.37l1.365-0.279l0.498,0.429l0.39,0.038l0.257,1.005l-0.339,0.882l1.239,3.169 h1.264l1.252-1.012v-0.413l0.331-0.513l0.273-0.14c-0.069,0.105-0.179,0.35-0.179,0.35c-0.012,0.082,0.178,1.695,0.734,1.568 c0.422-0.096,1.929-2.896,1.957-3.161c0.058-0.527-0.229-0.745-0.405-0.827l-0.196-0.092l-0.899,0.902 c-0.097,0.006-0.183,0.023-0.262,0.047v-0.749l0.978-0.954l0.496-1.604l0.758-0.615l-0.166-0.303l0.572-0.551l-0.319-0.582 l0.243,0.03l1.424,3.187l0.291-0.233c-0.01-0.156-0.025-0.31-0.044-0.464L22.715,12.562z M15.096,8.978l-0.119-0.316h0.715 l0.348,0.781h-0.517V8.978H15.096z M17.453,10.554l0.57,0.832l0.039,0.1l-0.584-0.354l-0.141-0.504L17.453,10.554z M18.312,12.008 l0.173,0.173l-0.224,0.049l-0.05-0.061L18.312,12.008z M13.848,6.407l0.363,0.562l-0.413,0.126l-0.161-0.092L13.848,6.407z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="5.0386" y2="21.0813">
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,5c-4.418,0-8,3.583-8,8c0,4.42,3.582,8,8,8 c4.42,0,8-3.58,8-8C23,8.583,19.42,5,15,5z M15,20.385c-4.072,0-7.385-3.313-7.385-7.385c0-4.072,3.313-7.384,7.385-7.384 c4.072,0,7.385,3.313,7.385,7.385C22.385,17.073,19.072,20.385,15,20.385z" enable-background="new " fill="url(#SVGID_3_)" opacity="0.3"/>
-<radialGradient cx="-87.0591" cy="1.8228" gradientTransform="matrix(1 0 0 -1 102.52 8.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="9.4861">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<path d="M15,5c-4.418,0-8,3.583-8,8c0,4.42,3.582,8,8,8c4.42,0,8-3.58,8-8 C23,8.583,19.42,5,15,5z M15,20.385c-4.072,0-7.385-3.313-7.385-7.385S10.928,5.615,15,5.615S22.385,8.928,22.385,13 S19.072,20.385,15,20.385z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="15.4619" cy="7.1558" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="9.4862">
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
-<path d="M19.335,15.286l-0.833,0.833c0,0-0.503,0-0.525,0.199c-0.012,0.086-0.039,0.457-0.125,0.65 c-0.168,0.114-0.367,0.5-0.367,0.5s-0.104,0.742,0.453,0.614C18.488,17.959,20.189,15.688,19.335,15.286z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="-87.0596" cy="1.8252" gradientTransform="matrix(1 0 0 -1 102.52 8.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="10.9749">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<path d="M19.335,15.286l-0.833,0.833c0,0-0.503,0-0.526,0.2c-0.011,0.086-0.039,0.457-0.124,0.649 c-0.168,0.116-0.367,0.5-0.367,0.5s-0.104,0.742,0.452,0.616C18.488,17.96,20.189,15.688,19.335,15.286z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="15.4609" cy="7.1538" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="10.9747">
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
-<path d="M17.455,5.997c-0.137,0.051-0.229,0.087-0.229,0.087l-2.059-0.395l-1.01,0.632l0.531,0.821 l-0.928,0.286l-0.5-0.286l0.176-0.499l-0.652,0.452l-0.117,0.786h-1.239l0.458,0.78l-1.742,1.421l-0.328,1.417l0.646,1.252 l0.389,0.248l1.365-0.279l0.498,0.429l0.453,0.045l0.492,1.929l-0.328,0.852l0.725,1.604l0.205,0.664h1.263l0.713-0.385l0.539-0.625 v-0.758l1.023-0.521v-1.121l0.404-0.771l0.902-0.813l0.217-0.942l-1.182,0.264l-0.312-0.378l0.222-0.354l-0.839-0.506l-0.356-1.286 l0.619-0.404l0.569,0.833l0.216,0.549l0.428,0.429l0.5,0.261l0.557-0.089l0.617-0.594l-0.436-0.792l-0.547,0.143l-0.494-0.59 l0.471-0.328l1.475,0.179v0.524l1.284,2.646l0.291-0.233C22.234,9.53,20.219,6.969,17.455,5.997z M16.785,9.572l-0.674,0.179h-0.896 V9.286h-0.857l-0.679,0.178l-1.036-0.285l-0.285-0.536l1.428-0.321h1.43L15,7.75h0.715l0.396,0.893l0.674,0.237V9.572z M18.32,8.393 l-1.213-0.214V7.75l0.606-0.143l0.179-0.215l0.428,0.357V8.393z" fill="url(#SVGID_5_)"/>
+<path d="M17.455,5.997c-0.136,0.051-0.229,0.087-0.229,0.087l-2.058-0.395l-1.01,0.632l0.531,0.821 l-0.928,0.286l-0.5-0.286l0.176-0.499l-0.652,0.452l-0.117,0.786h-1.239l0.458,0.78l-1.742,1.421L9.816,11.5l0.646,1.252L10.852,13 l1.365-0.279l0.498,0.429l0.453,0.045l0.492,1.929l-0.328,0.853l0.725,1.603l0.205,0.665h1.263l0.714-0.386l0.539-0.625v-0.757 l1.023-0.522v-1.12l0.404-0.771l0.903-0.813l0.216-0.942l-1.182,0.264l-0.311-0.378l0.222-0.354l-0.839-0.506l-0.357-1.286 l0.619-0.404l0.57,0.833l0.215,0.549l0.428,0.429l0.5,0.261l0.557-0.089l0.617-0.594l-0.435-0.792l-0.547,0.143l-0.495-0.59 l0.471-0.328l1.475,0.179v0.524l1.284,2.646l0.291-0.233C22.234,9.529,20.219,6.969,17.455,5.997z M16.785,9.571L16.111,9.75h-0.896 V9.286h-0.857l-0.679,0.178l-1.036-0.285l-0.285-0.536l1.428-0.321h1.43L15,7.75h0.715l0.396,0.893l0.674,0.237V9.571z M18.321,8.393l-1.214-0.214V7.75l0.607-0.143l0.178-0.215l0.429,0.357V8.393z" fill="url(#SVGID_5_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_url_address_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_url_address_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,56 +1,56 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<polygon enable-background="new " opacity="0.6" points="3,29 3,1 27,1 27,22.414 20.414,29 "/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 8.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-87.52" x2="-87.52" y1="6.9805" y2="-19.0195">
- <stop offset="0" style="stop-color:#F9F9F9"/>
- <stop offset="1" style="stop-color:#B5B5B5"/>
+<polygon fill-opacity="0.6" points="28,29 28,1 2,1 2,22.414 8.586,29 " stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 236 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="221" x2="221" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#B5B5B5"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="4,2 4,28 20,28 26,22 26,2 "/>
-<polygon fill="#FFFFFF" points="26,22 20,22 20,28 "/>
-<circle cx="15" cy="14" enable-background="new " opacity="0.2" r="8"/>
-<radialGradient cx="-32.2568" cy="-444.0615" gradientTransform="matrix(0.3502 0 0 -0.3502 26.2965 -145.2794)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="30.0961">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<polygon fill="url(#SVGID_1_)" points="27,2 27,28 9,28 3,22 3,2 "/>
+<circle cx="15" cy="14" fill-opacity="0.2" r="8" stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" points="3,22 9,22 9,28 "/>
+<radialGradient cx="-453.8818" cy="-300.0874" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="30.0958">
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="13" fill="url(#SVGID_2_)" r="8"/>
-<path d="M22.715,12.562c-0.178-3.125-2.201-5.814-5.156-6.855l-0.361,0.059l-2.089-0.399 L12.5,6.919l-0.098,0.654H10.89l0.598,1.018l-1.619,1.32l-0.377,1.63l1.336,2.37l1.365-0.279l0.498,0.429l0.39,0.038l0.257,1.004 l-0.339,0.882l1.239,3.169h1.264l1.252-1.012v-0.414l0.331-0.512l0.272-0.142c-0.068,0.104-0.178,0.351-0.178,0.351 c-0.013,0.082,0.178,1.694,0.733,1.567c0.422-0.097,1.929-2.896,1.957-3.16c0.058-0.526-0.229-0.745-0.405-0.827l-0.195-0.093 l-0.899,0.904c-0.097,0.006-0.183,0.022-0.263,0.047v-0.749l0.979-0.954l0.496-1.604l0.758-0.615l-0.166-0.303l0.572-0.551 l-0.318-0.582l0.242,0.03l1.424,3.187l0.291-0.233c-0.01-0.156-0.025-0.31-0.044-0.464L22.715,12.562z M15.096,8.978l-0.119-0.316 h0.714l0.349,0.781h-0.517V8.978H15.096z M17.453,10.554l0.57,0.832l0.039,0.1l-0.584-0.354l-0.142-0.504L17.453,10.554z M18.313,12.008l0.172,0.173l-0.223,0.049l-0.051-0.061L18.313,12.008z M13.848,6.408l0.363,0.562l-0.413,0.126l-0.161-0.092 L13.848,6.408z" enable-background="new " opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 8.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-87.52" x2="-87.52" y1="3.9404" y2="-12.1023">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<path d="M22.715,12.562c-0.178-3.125-2.201-5.814-5.157-6.855l-0.36,0.059l-2.09-0.399L12.5,6.919l-0.098,0.654 h-1.512l0.598,1.018l-1.619,1.32l-0.377,1.63l1.336,2.37l1.365-0.279l0.498,0.429l0.39,0.038l0.257,1.005l-0.339,0.882l1.239,3.169 h1.264l1.252-1.012v-0.413l0.331-0.513l0.273-0.14c-0.069,0.105-0.179,0.35-0.179,0.35c-0.012,0.082,0.178,1.695,0.734,1.568 c0.422-0.096,1.929-2.896,1.957-3.161c0.058-0.527-0.229-0.745-0.405-0.827l-0.196-0.092l-0.899,0.902 c-0.097,0.006-0.183,0.023-0.262,0.047v-0.749l0.978-0.954l0.496-1.604l0.758-0.615l-0.166-0.303l0.572-0.551l-0.319-0.582 l0.243,0.03l1.424,3.187l0.291-0.233c-0.01-0.156-0.025-0.31-0.044-0.464L22.715,12.562z M15.096,8.978l-0.119-0.316h0.715 l0.348,0.781h-0.517V8.978H15.096z M17.453,10.554l0.57,0.832l0.039,0.1l-0.584-0.354l-0.141-0.504L17.453,10.554z M18.312,12.008 l0.173,0.173l-0.224,0.049l-0.05-0.061L18.312,12.008z M13.848,6.407l0.363,0.562l-0.413,0.126l-0.161-0.092L13.848,6.407z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="5.0386" y2="21.0813">
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,5c-4.418,0-8,3.583-8,8c0,4.42,3.582,8,8,8 c4.42,0,8-3.58,8-8C23,8.583,19.42,5,15,5z M15,20.385c-4.072,0-7.385-3.313-7.385-7.385c0-4.072,3.313-7.384,7.385-7.384 c4.072,0,7.385,3.313,7.385,7.385C22.385,17.073,19.072,20.385,15,20.385z" enable-background="new " fill="url(#SVGID_3_)" opacity="0.3"/>
-<radialGradient cx="-87.0591" cy="1.8228" gradientTransform="matrix(1 0 0 -1 102.52 8.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="9.4861">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<path d="M15,5c-4.418,0-8,3.583-8,8c0,4.42,3.582,8,8,8c4.42,0,8-3.58,8-8 C23,8.583,19.42,5,15,5z M15,20.385c-4.072,0-7.385-3.313-7.385-7.385S10.928,5.615,15,5.615S22.385,8.928,22.385,13 S19.072,20.385,15,20.385z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="15.4619" cy="7.1558" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="9.4862">
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
-<path d="M19.335,15.286l-0.833,0.833c0,0-0.503,0-0.525,0.199c-0.012,0.086-0.039,0.457-0.125,0.65 c-0.168,0.114-0.367,0.5-0.367,0.5s-0.104,0.742,0.453,0.614C18.488,17.959,20.189,15.688,19.335,15.286z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="-87.0596" cy="1.8252" gradientTransform="matrix(1 0 0 -1 102.52 8.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="10.9749">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<path d="M19.335,15.286l-0.833,0.833c0,0-0.503,0-0.526,0.2c-0.011,0.086-0.039,0.457-0.124,0.649 c-0.168,0.116-0.367,0.5-0.367,0.5s-0.104,0.742,0.452,0.616C18.488,17.96,20.189,15.688,19.335,15.286z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="15.4609" cy="7.1538" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="10.9747">
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
-<path d="M17.455,5.997c-0.137,0.051-0.229,0.087-0.229,0.087l-2.059-0.395l-1.01,0.632l0.531,0.821 l-0.928,0.286l-0.5-0.286l0.176-0.499l-0.652,0.452l-0.117,0.786h-1.239l0.458,0.78l-1.742,1.421l-0.328,1.417l0.646,1.252 l0.389,0.248l1.365-0.279l0.498,0.429l0.453,0.045l0.492,1.929l-0.328,0.852l0.725,1.604l0.205,0.664h1.263l0.713-0.385l0.539-0.625 v-0.758l1.023-0.521v-1.121l0.404-0.771l0.902-0.813l0.217-0.942l-1.182,0.264l-0.312-0.378l0.222-0.354l-0.839-0.506l-0.356-1.286 l0.619-0.404l0.569,0.833l0.216,0.549l0.428,0.429l0.5,0.261l0.557-0.089l0.617-0.594l-0.436-0.792l-0.547,0.143l-0.494-0.59 l0.471-0.328l1.475,0.179v0.524l1.284,2.646l0.291-0.233C22.234,9.53,20.219,6.969,17.455,5.997z M16.785,9.572l-0.674,0.179h-0.896 V9.286h-0.857l-0.679,0.178l-1.036-0.285l-0.285-0.536l1.428-0.321h1.43L15,7.75h0.715l0.396,0.893l0.674,0.237V9.572z M18.32,8.393 l-1.213-0.214V7.75l0.606-0.143l0.179-0.215l0.428,0.357V8.393z" fill="url(#SVGID_5_)"/>
+<path d="M17.455,5.997c-0.136,0.051-0.229,0.087-0.229,0.087l-2.058-0.395l-1.01,0.632l0.531,0.821 l-0.928,0.286l-0.5-0.286l0.176-0.499l-0.652,0.452l-0.117,0.786h-1.239l0.458,0.78l-1.742,1.421L9.816,11.5l0.646,1.252L10.852,13 l1.365-0.279l0.498,0.429l0.453,0.045l0.492,1.929l-0.328,0.853l0.725,1.603l0.205,0.665h1.263l0.714-0.386l0.539-0.625v-0.757 l1.023-0.522v-1.12l0.404-0.771l0.903-0.813l0.216-0.942l-1.182,0.264l-0.311-0.378l0.222-0.354l-0.839-0.506l-0.357-1.286 l0.619-0.404l0.57,0.833l0.215,0.549l0.428,0.429l0.5,0.261l0.557-0.089l0.617-0.594l-0.435-0.792l-0.547,0.143l-0.495-0.59 l0.471-0.328l1.475,0.179v0.524l1.284,2.646l0.291-0.233C22.234,9.529,20.219,6.969,17.455,5.997z M16.785,9.571L16.111,9.75h-0.896 V9.286h-0.857l-0.679,0.178l-1.036-0.285l-0.285-0.536l1.428-0.321h1.43L15,7.75h0.715l0.396,0.893l0.674,0.237V9.571z M18.321,8.393l-1.214-0.214V7.75l0.607-0.143l0.178-0.215l0.429,0.357V8.393z" fill="url(#SVGID_5_)"/>
</g>
<g>
<rect fill="none" height="30" width="30"/>
-<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S25.411,30,21,30L21,30z" enable-background="new " opacity="0.6"/>
+<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S25.411,30,21,30L21,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -66 -46)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="87" x2="87" y1="-60.9688" y2="-75.1651">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<circle cx="21" cy="22" fill="url(#SVGID_1__)" r="7"/>
-<polygon enable-background="new " opacity="0.2" points="25.34,24 20.999,19.4 16.66,24 16,23.3 20.999,18 26,23.3 "/>
-<polygon enable-background="new " opacity="0.2" points="20.999,20.857 17,25.098 17,27 20,27 20,24 22,24 22,27 25,27 25,25.098 "/>
-<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5 C27.986,22.334,28,22.169,28,22c0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C14.283,18.869,17.303,16,21,16z" enable-background="new " fill="#FFFFFF" opacity="0.4"/>
+<polygon fill-opacity="0.2" points="25.34,24 20.999,19.4 16.66,24 16,23.3 20.999,18 26,23.3 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="20.999,20.857 17,25.098 17,27 20,27 20,24 22,24 22,27 25,27 25,25.098 " stroke-opacity="0.2"/>
+<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5 C27.986,22.334,28,22.169,28,22c0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C14.283,18.869,17.303,16,21,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<polygon fill="#FFFFFF" points="25.34,23 20.999,18.4 16.66,23 16,22.3 20.999,17 26,22.3 "/>
<polygon fill="#FFFFFF" points="20.999,19.857 17,24.098 17,26 20,26 20,23 22,23 22,26 25,26 25,24.098 "/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_url_address_work.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_url_address_work.svg Thu May 27 13:10:59 2010 +0300
@@ -1,59 +1,57 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<polygon enable-background="new " opacity="0.6" points="3,29 3,1 27,1 27,22.414 20.414,29 "/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 8.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-87.52" x2="-87.52" y1="6.9805" y2="-19.0195">
- <stop offset="0" style="stop-color:#F9F9F9"/>
- <stop offset="1" style="stop-color:#B5B5B5"/>
+<polygon fill-opacity="0.6" points="28,29 28,1 2,1 2,22.414 8.586,29 " stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 236 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="221" x2="221" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#B5B5B5"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="4,2 4,28 20,28 26,22 26,2 "/>
-<polygon fill="#FFFFFF" points="26,22 20,22 20,28 "/>
-<circle cx="15" cy="14" enable-background="new " opacity="0.2" r="8"/>
-<radialGradient cx="-32.2568" cy="-444.0615" gradientTransform="matrix(0.3502 0 0 -0.3502 26.2965 -145.2794)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="30.0961">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<polygon fill="url(#SVGID_1_)" points="27,2 27,28 9,28 3,22 3,2 "/>
+<circle cx="15" cy="14" fill-opacity="0.2" r="8" stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" points="3,22 9,22 9,28 "/>
+<radialGradient cx="-453.8818" cy="-300.0874" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="30.0958">
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="13" fill="url(#SVGID_2_)" r="8"/>
-<path d="M22.715,12.562c-0.178-3.125-2.201-5.814-5.156-6.855l-0.361,0.059l-2.089-0.399 L12.5,6.919l-0.098,0.654H10.89l0.598,1.018l-1.619,1.32l-0.377,1.63l1.336,2.37l1.365-0.279l0.498,0.429l0.39,0.038l0.257,1.004 l-0.339,0.882l1.239,3.169h1.264l1.252-1.012v-0.414l0.331-0.512l0.272-0.142c-0.068,0.104-0.178,0.351-0.178,0.351 c-0.013,0.082,0.178,1.694,0.733,1.567c0.422-0.097,1.929-2.896,1.957-3.16c0.058-0.526-0.229-0.745-0.405-0.827l-0.195-0.093 l-0.899,0.904c-0.097,0.006-0.183,0.022-0.263,0.047v-0.749l0.979-0.954l0.496-1.604l0.758-0.615l-0.166-0.303l0.572-0.551 l-0.318-0.582l0.242,0.03l1.424,3.187l0.291-0.233c-0.01-0.156-0.025-0.31-0.044-0.464L22.715,12.562z M15.096,8.978l-0.119-0.316 h0.714l0.349,0.781h-0.517V8.978H15.096z M17.453,10.554l0.57,0.832l0.039,0.1l-0.584-0.354l-0.142-0.504L17.453,10.554z M18.313,12.008l0.172,0.173l-0.223,0.049l-0.051-0.061L18.313,12.008z M13.848,6.408l0.363,0.562l-0.413,0.126l-0.161-0.092 L13.848,6.408z" enable-background="new " opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 8.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-87.52" x2="-87.52" y1="3.9404" y2="-12.1023">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<path d="M22.715,12.562c-0.178-3.125-2.201-5.814-5.157-6.855l-0.36,0.059l-2.09-0.399L12.5,6.919l-0.098,0.654 h-1.512l0.598,1.018l-1.619,1.32l-0.377,1.63l1.336,2.37l1.365-0.279l0.498,0.429l0.39,0.038l0.257,1.005l-0.339,0.882l1.239,3.169 h1.264l1.252-1.012v-0.413l0.331-0.513l0.273-0.14c-0.069,0.105-0.179,0.35-0.179,0.35c-0.012,0.082,0.178,1.695,0.734,1.568 c0.422-0.096,1.929-2.896,1.957-3.161c0.058-0.527-0.229-0.745-0.405-0.827l-0.196-0.092l-0.899,0.902 c-0.097,0.006-0.183,0.023-0.262,0.047v-0.749l0.978-0.954l0.496-1.604l0.758-0.615l-0.166-0.303l0.572-0.551l-0.319-0.582 l0.243,0.03l1.424,3.187l0.291-0.233c-0.01-0.156-0.025-0.31-0.044-0.464L22.715,12.562z M15.096,8.978l-0.119-0.316h0.715 l0.348,0.781h-0.517V8.978H15.096z M17.453,10.554l0.57,0.832l0.039,0.1l-0.584-0.354l-0.141-0.504L17.453,10.554z M18.312,12.008 l0.173,0.173l-0.224,0.049l-0.05-0.061L18.312,12.008z M13.848,6.407l0.363,0.562l-0.413,0.126l-0.161-0.092L13.848,6.407z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="5.0386" y2="21.0813">
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,5c-4.418,0-8,3.583-8,8c0,4.42,3.582,8,8,8 c4.42,0,8-3.58,8-8C23,8.583,19.42,5,15,5z M15,20.385c-4.072,0-7.385-3.313-7.385-7.385c0-4.072,3.313-7.384,7.385-7.384 c4.072,0,7.385,3.313,7.385,7.385C22.385,17.073,19.072,20.385,15,20.385z" enable-background="new " fill="url(#SVGID_3_)" opacity="0.3"/>
-<radialGradient cx="-87.0591" cy="1.8228" gradientTransform="matrix(1 0 0 -1 102.52 8.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="9.4861">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<path d="M15,5c-4.418,0-8,3.583-8,8c0,4.42,3.582,8,8,8c4.42,0,8-3.58,8-8 C23,8.583,19.42,5,15,5z M15,20.385c-4.072,0-7.385-3.313-7.385-7.385S10.928,5.615,15,5.615S22.385,8.928,22.385,13 S19.072,20.385,15,20.385z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="15.4619" cy="7.1558" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="9.4862">
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
-<path d="M19.335,15.286l-0.833,0.833c0,0-0.503,0-0.525,0.199c-0.012,0.086-0.039,0.457-0.125,0.65 c-0.168,0.114-0.367,0.5-0.367,0.5s-0.104,0.742,0.453,0.614C18.488,17.959,20.189,15.688,19.335,15.286z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="-87.0596" cy="1.8252" gradientTransform="matrix(1 0 0 -1 102.52 8.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="10.9749">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<path d="M19.335,15.286l-0.833,0.833c0,0-0.503,0-0.526,0.2c-0.011,0.086-0.039,0.457-0.124,0.649 c-0.168,0.116-0.367,0.5-0.367,0.5s-0.104,0.742,0.452,0.616C18.488,17.96,20.189,15.688,19.335,15.286z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="15.4609" cy="7.1538" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="10.9747">
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
-<path d="M17.455,5.997c-0.137,0.051-0.229,0.087-0.229,0.087l-2.059-0.395l-1.01,0.632l0.531,0.821 l-0.928,0.286l-0.5-0.286l0.176-0.499l-0.652,0.452l-0.117,0.786h-1.239l0.458,0.78l-1.742,1.421l-0.328,1.417l0.646,1.252 l0.389,0.248l1.365-0.279l0.498,0.429l0.453,0.045l0.492,1.929l-0.328,0.852l0.725,1.604l0.205,0.664h1.263l0.713-0.385l0.539-0.625 v-0.758l1.023-0.521v-1.121l0.404-0.771l0.902-0.813l0.217-0.942l-1.182,0.264l-0.312-0.378l0.222-0.354l-0.839-0.506l-0.356-1.286 l0.619-0.404l0.569,0.833l0.216,0.549l0.428,0.429l0.5,0.261l0.557-0.089l0.617-0.594l-0.436-0.792l-0.547,0.143l-0.494-0.59 l0.471-0.328l1.475,0.179v0.524l1.284,2.646l0.291-0.233C22.234,9.53,20.219,6.969,17.455,5.997z M16.785,9.572l-0.674,0.179h-0.896 V9.286h-0.857l-0.679,0.178l-1.036-0.285l-0.285-0.536l1.428-0.321h1.43L15,7.75h0.715l0.396,0.893l0.674,0.237V9.572z M18.32,8.393 l-1.213-0.214V7.75l0.606-0.143l0.179-0.215l0.428,0.357V8.393z" fill="url(#SVGID_5_)"/>
+<path d="M17.455,5.997c-0.136,0.051-0.229,0.087-0.229,0.087l-2.058-0.395l-1.01,0.632l0.531,0.821 l-0.928,0.286l-0.5-0.286l0.176-0.499l-0.652,0.452l-0.117,0.786h-1.239l0.458,0.78l-1.742,1.421L9.816,11.5l0.646,1.252L10.852,13 l1.365-0.279l0.498,0.429l0.453,0.045l0.492,1.929l-0.328,0.853l0.725,1.603l0.205,0.665h1.263l0.714-0.386l0.539-0.625v-0.757 l1.023-0.522v-1.12l0.404-0.771l0.903-0.813l0.216-0.942l-1.182,0.264l-0.311-0.378l0.222-0.354l-0.839-0.506l-0.357-1.286 l0.619-0.404l0.57,0.833l0.215,0.549l0.428,0.429l0.5,0.261l0.557-0.089l0.617-0.594l-0.435-0.792l-0.547,0.143l-0.495-0.59 l0.471-0.328l1.475,0.179v0.524l1.284,2.646l0.291-0.233C22.234,9.529,20.219,6.969,17.455,5.997z M16.785,9.571L16.111,9.75h-0.896 V9.286h-0.857l-0.679,0.178l-1.036-0.285l-0.285-0.536l1.428-0.321h1.43L15,7.75h0.715l0.396,0.893l0.674,0.237V9.571z M18.321,8.393l-1.214-0.214V7.75l0.607-0.143l0.178-0.215l0.429,0.357V8.393z" fill="url(#SVGID_5_)"/>
</g>
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S25.411,30,21,30L21,30z" opacity="0.6"/>
+<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S25.411,30,21,30L21,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="21" x2="21" y1="14.9683" y2="29.1646">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<circle cx="21" cy="22" fill="url(#SVGID_1__)" r="7"/>
-<path d="M22,21v-2h-5v8h4h1h3v-6H22z M21,25h-3v-1h3V25z M21,23h-3v-1h3V23z M18,21v-1h3v1H18z M24,25h-2v-1h2V25z M24,23h-2v-1h2V23z" opacity="0.2"/>
-<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5C27.986,22.334,28,22.169,28,22c0-3.865-3.134-7-7-7 s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C14.283,18.869,17.303,16,21,16z" fill="#FFFFFF" opacity="0.4"/>
+<path d="M22,21v-2h-5v8h4h1h3v-6H22z M21,25h-3v-1h3V25z M21,23h-3v-1h3V23z M18,21v-1h3v1H18z M24,25h-2v-1h2V25z M24,23h-2v-1h2V23z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5C27.986,22.334,28,22.169,28,22c0-3.865-3.134-7-7-7 s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C14.283,18.869,17.303,16,21,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<path d="M22,20v-2h-5v8h4h1h3v-6H22z M21,24h-3v-1h3V24z M21,22h-3v-1h3V22z M18,20v-1h3v1H18z M24,24h-2v-1h2V24z M24,22h-2v-1h2V22z" fill="#FFFFFF"/>
-<rect height="6" opacity="0.3" width="1" x="22" y="20"/>
+<rect fill-opacity="0.3" height="6" stroke-opacity="0.3" width="1" x="22" y="20"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_video.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_video.svg Thu May 27 13:10:59 2010 +0300
@@ -1,19 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.6" height="26" width="28" x="1" y="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.0005" x2="15.0005" y1="27" y2="3.4999">
- <stop offset="0" style="stop-color:#000000"/>
- <stop offset="1" style="stop-color:#666666"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="24" width="26" x="2" y="3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.0005" x2="15.0005" y1="21.125" y2="9.0729">
- <stop offset="0" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="12" width="24" x="3" y="9"/>
<rect fill="#F1F1F2" height="2" width="3" x="3" y="5"/>
@@ -26,9 +24,9 @@
<rect fill="#F1F1F2" height="2" width="4" x="13" y="23"/>
<rect fill="#F1F1F2" height="2" width="3" x="19" y="23"/>
<rect fill="#F1F1F2" height="2" width="3" x="24" y="23"/>
-<rect fill="#FFFFFF" height="1" opacity="0.3" width="26" x="2" y="3"/>
-<rect fill="#FFFFFF" height="1" opacity="0.1" width="26" x="2" y="26"/>
-<rect fill="#FFFFFF" height="1" opacity="0.3" width="24" x="3" y="20"/>
-<rect fill="#00006B" height="1" opacity="0.2" width="24" x="3" y="9"/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="26" x="2" y="3"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" height="1" stroke-opacity="0.1" width="26" x="2" y="26"/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="24" x="3" y="20"/>
+<rect fill="#00006B" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="24" x="3" y="9"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_voip.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_voip.svg Thu May 27 13:10:59 2010 +0300
@@ -1,58 +1,60 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M16,0C8.28,0,2,6.279,2,14c0,7.719,6.28,14,14,14s14-6.281,14-14C30,6.279,23.72,0,16,0z" opacity="0.6"/>
+<path d="M16,0C8.28,0,2,6.279,2,14c0,7.719,6.28,14,14,14s14-6.281,14-14C30,6.279,23.72,0,16,0z" fill-opacity="0.6" stroke-opacity="0.6"/>
<radialGradient cx="-451.0264" cy="-302.1748" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="48.9059">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="16" cy="14" fill="url(#SVGID_1_)" r="13"/>
-<path d="M28.536,13.287c-0.288-5.078-3.577-9.449-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H9.322l0.971,1.652L7.662,8.979l-0.613,2.65l2.173,3.85l2.218-0.453l0.81,0.697l0.633,0.063l0.418,1.633l-0.552,1.432L14.763,24 h2.053l2.035-1.645v-0.67l0.537-0.834l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.135,0.289,2.756,1.192,2.551 c0.686-0.156,3.135-4.705,3.182-5.139c0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15l-1.462,1.465 c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.49l0.929-0.895l-0.519-0.945 l0.395,0.047l2.313,5.178L28,14.795c-0.015-0.254-0.042-0.502-0.071-0.752L28.536,13.287z M16.156,7.463l-0.193-0.516h1.161 l0.565,1.271h-0.841V7.463H16.156z M19.987,10.023l0.927,1.354l0.063,0.162l-0.95-0.574L19.8,10.146L19.987,10.023z M21.381,12.387 l0.28,0.281l-0.362,0.08l-0.082-0.1L21.381,12.387z M14.127,3.285l0.59,0.914l-0.67,0.205l-0.262-0.15L14.127,3.285z" opacity="0.3"/>
+<path d="M28.536,13.287c-0.288-5.078-3.577-9.449-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H9.322l0.971,1.652L7.662,8.979l-0.613,2.65l2.173,3.85l2.218-0.453l0.81,0.697l0.633,0.063l0.418,1.633l-0.552,1.432L14.763,24 h2.053l2.035-1.645v-0.67l0.537-0.834l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.135,0.289,2.756,1.192,2.551 c0.686-0.156,3.135-4.705,3.182-5.139c0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15l-1.462,1.465 c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.49l0.929-0.895l-0.519-0.945 l0.395,0.047l2.313,5.178L28,14.795c-0.015-0.254-0.042-0.502-0.071-0.752L28.536,13.287z M16.156,7.463l-0.193-0.516h1.161 l0.565,1.271h-0.841V7.463H16.156z M19.987,10.023l0.927,1.354l0.063,0.162l-0.95-0.574L19.8,10.146L19.987,10.023z M21.381,12.387 l0.28,0.281l-0.362,0.08l-0.082-0.1L21.381,12.387z M14.127,3.285l0.59,0.914l-0.67,0.205l-0.262-0.15L14.127,3.285z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.9995" x2="15.9995" y1="1.0625" y2="27.1316">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M16,1C8.821,1,3,6.82,3,14c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C29,6.82,23.182,1,16,1z M16,26C9.383,26,4,20.617,4,14S9.383,2,16,2s12,5.383,12,12S22.617,26,16,26z" fill="url(#SVGID_2_)" opacity="0.3"/>
+<path d="M16,1C8.821,1,3,6.82,3,14c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C29,6.82,23.182,1,16,1z M16,26C9.383,26,4,20.617,4,14S9.383,2,16,2s12,5.383,12,12S22.617,26,16,26z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="16.75" cy="4.499" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.4173">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M23.044,17.713l-1.353,1.355c0,0-0.818,0-0.856,0.324c-0.018,0.141-0.063,0.744-0.201,1.057 c-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.205,0.734,1C21.669,22.059,24.434,18.367,23.044,17.713z" fill="url(#SVGID_3_)"/>
<radialGradient cx="16.75" cy="4.5005" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.8328">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M19.99,2.619c-0.222,0.084-0.374,0.141-0.374,0.141l-3.344-0.639l-1.64,1.025l0.863,1.336 l-1.509,0.463l-0.813-0.463l0.286-0.811l-1.06,0.734L12.21,5.682h-2.014l0.745,1.268L8.11,9.258l-0.533,2.305l1.051,2.035L9.259,14 l2.218-0.453l0.81,0.695l0.736,0.072l0.801,3.135l-0.533,1.385l1.178,2.605l0.332,1.08h2.053l1.16-0.627l0.875-1.016v-1.23 l1.663-0.848v-1.822l0.658-1.25l1.467-1.32l0.351-1.531l-1.919,0.428l-0.505-0.615l0.359-0.574l-1.363-0.824l-0.581-2.088 l1.007-0.656l0.927,1.352l0.349,0.893l0.696,0.697l0.813,0.424l0.903-0.145l1.003-0.965l-0.706-1.289L23.12,9.744l-0.804-0.957 l0.764-0.533l2.397,0.291v0.852l2.086,4.299l0.474-0.379C27.756,8.359,24.48,4.199,19.99,2.619z M18.901,8.428l-1.095,0.291h-1.458 V7.963h-1.394l-1.103,0.291L12.17,7.789L11.705,6.92l2.321-0.523h2.322L16,5.469h1.161l0.646,1.451l1.095,0.383V8.428z M21.397,6.514l-1.974-0.35V5.469l0.987-0.232l0.29-0.348l0.696,0.58V6.514z" fill="url(#SVGID_4_)"/>
-<path d="M2.73,8.398C2.449,8.582,1.209,9.846,1.185,9.875c-0.489,0.596-0.786,1.178-0.795,1.197 c-0.308,0.727-0.585,2.615-0.205,4.359c0.282,1.289,1.901,4.789,3.796,7.348c2.016,2.721,5.333,5.609,6.953,6.371 c1.669,0.787,2.914,0.85,3.256,0.85c0.176,0,0.325-0.014,0.459-0.039c0.1-0.018,1.208-0.223,2.326-0.977 c0,0,0.467-0.314,0.729-0.555c0.02-0.018,0.786-0.768,0.799-0.785c0.247-0.311,0.358-0.701,0.312-1.102 c-0.049-0.416-0.27-0.805-0.605-1.068c0,0-4.841-3.844-4.875-3.863c-0.257-0.156-0.547-0.238-0.841-0.238 c-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438c-0.884-1.193-1.535-2.25-2.041-3.324 l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85c0.146-0.396,0.12-0.852-0.067-1.244L5.742,8.617 c-0.269-0.557-0.83-0.914-1.431-0.914c-0.217,0-0.427,0.045-0.622,0.135L2.73,8.398z" opacity="0.6"/>
+<path d="M2.73,8.398C2.449,8.582,1.209,9.846,1.185,9.875c-0.489,0.596-0.786,1.178-0.795,1.197 c-0.308,0.727-0.585,2.615-0.205,4.359c0.282,1.289,1.901,4.789,3.796,7.348c2.016,2.721,5.333,5.609,6.953,6.371 c1.669,0.787,2.914,0.85,3.256,0.85c0.176,0,0.325-0.014,0.459-0.039c0.1-0.018,1.208-0.223,2.326-0.977 c0,0,0.467-0.314,0.729-0.555c0.02-0.018,0.786-0.768,0.799-0.785c0.247-0.311,0.358-0.701,0.312-1.102 c-0.049-0.416-0.27-0.805-0.605-1.068c0,0-4.841-3.844-4.875-3.863c-0.257-0.156-0.547-0.238-0.841-0.238 c-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438c-0.884-1.193-1.535-2.25-2.041-3.324 l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85c0.146-0.396,0.12-0.852-0.067-1.244L5.742,8.617 c-0.269-0.557-0.83-0.914-1.431-0.914c-0.217,0-0.427,0.045-0.622,0.135L2.73,8.398z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-0.2866" x2="10.2134" y1="8.4424" y2="26.7754">
- <stop offset="0" style="stop-color:#E9F0F2"/>
- <stop offset="0.5212" style="stop-color:#AAB1B5"/>
- <stop offset="1" style="stop-color:#838F94"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.5212" style="stop-color:#AAB1B5"/>
+<stop offset="1" style="stop-color:#838F94"/>
</linearGradient>
<path d="M5.143,16.264c0.67,1.684,1.561,3.094,2.548,4.428c0.95,1.281,2.554,2.713,3.286,3.242l3.479,5.045 c-0.384,0.076-1.622-0.037-3.097-0.732c-1.477-0.695-4.652-3.467-6.575-6.063c-1.922-2.594-3.398-5.941-3.622-6.965 c-0.352-1.611-0.051-3.287,0.148-3.756c0,0,0.213-0.426,0.646-0.951C2.142,10.285,5.143,16.264,5.143,16.264z" fill="url(#SVGID_5_)"/>
<radialGradient cx="10.8911" cy="22.9111" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="8.6673">
- <stop offset="0.0424" style="stop-color:#D1D8D9"/>
- <stop offset="0.4" style="stop-color:#BBC0C2"/>
- <stop offset="0.7333" style="stop-color:#7C8C91"/>
- <stop offset="1" style="stop-color:#A7B3B7"/>
+<stop offset="0" style="stop-color:#D1D8D9"/>
+<stop offset="0.0424" style="stop-color:#D1D8D9"/>
+<stop offset="0.4" style="stop-color:#BBC0C2"/>
+<stop offset="0.7333" style="stop-color:#7C8C91"/>
+<stop offset="1" style="stop-color:#A7B3B7"/>
</radialGradient>
<path d="M17.592,26.262l-3.165-2.527l-1.612-1.27c-0.241-0.146-0.541-0.119-0.703,0.084l-0.635,0.775v0.002 l-0.5,0.607c0-0.002-0.002-0.006-0.003-0.006c-0.565,2.01,0.43,4.135,2.343,4.865c0.253,0.094,0.509,0.162,0.765,0.201 c0.16,0.004,0.291,0,0.375-0.016c0,0,0.987-0.168,1.959-0.824c0.324-0.217,0.353-0.223,0.614-0.463c0.001-0.002,0-0.004,0.002-0.006 c0.515-0.471,0.689-0.664,0.689-0.664C17.898,26.799,17.842,26.457,17.592,26.262z" fill="url(#SVGID_6_)"/>
-<path d="M11.477,23.324l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27l3.165,2.527 c0.25,0.195,0.307,0.537,0.129,0.76c0,0-0.176,0.193-0.693,0.668L11.477,23.324z" fill="#FFFFFF" opacity="0.4"/>
+<path d="M11.477,23.324l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27l3.165,2.527 c0.25,0.195,0.307,0.537,0.129,0.76c0,0-0.176,0.193-0.693,0.668L11.477,23.324z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<radialGradient cx="-162.3672" cy="-37.5952" gradientTransform="matrix(0.9891 0.1471 -0.1471 0.9891 159.0668 70.322)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="8.6173">
- <stop offset="0.0424" style="stop-color:#D1D8D9"/>
- <stop offset="0.4" style="stop-color:#BBC0C2"/>
- <stop offset="0.7333" style="stop-color:#7C8C91"/>
- <stop offset="1" style="stop-color:#A7B3B7"/>
+<stop offset="0" style="stop-color:#D1D8D9"/>
+<stop offset="0.0424" style="stop-color:#D1D8D9"/>
+<stop offset="0.4" style="stop-color:#BBC0C2"/>
+<stop offset="0.7333" style="stop-color:#7C8C91"/>
+<stop offset="1" style="stop-color:#A7B3B7"/>
</radialGradient>
<path d="M7.502,14.557l-2.66-5.506C4.701,8.762,4.371,8.625,4.104,8.748c0,0-0.232,0.105-0.813,0.479 c0,0.002-0.001,0-0.002,0.002C2.973,9.432,2.947,9.523,2.634,9.801c-0.434,0.389-0.758,0.793-0.978,1.105 c-0.721,2.08,0.275,4.35,2.266,5.109c0.406,0.154,0.822,0.23,1.236,0.242l1.266-0.57l0.853-0.381 C7.545,15.186,7.643,14.85,7.502,14.557z" fill="url(#SVGID_7_)"/>
-<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48c0.268-0.123,0.598,0.014,0.738,0.303 l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381L3.29,9.229z" fill="#FFFFFF" opacity="0.4"/>
+<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48c0.268-0.123,0.598,0.014,0.738,0.303 l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381L3.29,9.229z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_voip_home.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_voip_home.svg Thu May 27 13:10:59 2010 +0300
@@ -1,72 +1,74 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M16,0C8.28,0,2,6.279,2,14c0,7.719,6.28,14,14,14s14-6.281,14-14C30,6.279,23.72,0,16,0z" opacity="0.6"/>
+<path d="M16,0C8.28,0,2,6.279,2,14c0,7.719,6.28,14,14,14s14-6.281,14-14C30,6.279,23.72,0,16,0z" fill-opacity="0.6" stroke-opacity="0.6"/>
<radialGradient cx="-451.0264" cy="-302.1748" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="48.9059">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="16" cy="14" fill="url(#SVGID_1_)" r="13"/>
-<path d="M28.536,13.287c-0.288-5.078-3.577-9.449-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H9.322l0.971,1.652L7.662,8.979l-0.613,2.65l2.173,3.85l2.218-0.453l0.81,0.697l0.633,0.063l0.418,1.633l-0.552,1.432L14.763,24 h2.053l2.035-1.645v-0.67l0.537-0.834l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.135,0.289,2.756,1.192,2.551 c0.686-0.156,3.135-4.705,3.182-5.139c0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15l-1.462,1.465 c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.49l0.929-0.895l-0.519-0.945 l0.395,0.047l2.313,5.178L28,14.795c-0.015-0.254-0.042-0.502-0.071-0.752L28.536,13.287z M16.156,7.463l-0.193-0.516h1.161 l0.565,1.271h-0.841V7.463H16.156z M19.987,10.023l0.927,1.354l0.063,0.162l-0.95-0.574L19.8,10.146L19.987,10.023z M21.381,12.387 l0.28,0.281l-0.362,0.08l-0.082-0.1L21.381,12.387z M14.127,3.285l0.59,0.914l-0.67,0.205l-0.262-0.15L14.127,3.285z" opacity="0.3"/>
+<path d="M28.536,13.287c-0.288-5.078-3.577-9.449-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H9.322l0.971,1.652L7.662,8.979l-0.613,2.65l2.173,3.85l2.218-0.453l0.81,0.697l0.633,0.063l0.418,1.633l-0.552,1.432L14.763,24 h2.053l2.035-1.645v-0.67l0.537-0.834l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.135,0.289,2.756,1.192,2.551 c0.686-0.156,3.135-4.705,3.182-5.139c0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15l-1.462,1.465 c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.49l0.929-0.895l-0.519-0.945 l0.395,0.047l2.313,5.178L28,14.795c-0.015-0.254-0.042-0.502-0.071-0.752L28.536,13.287z M16.156,7.463l-0.193-0.516h1.161 l0.565,1.271h-0.841V7.463H16.156z M19.987,10.023l0.927,1.354l0.063,0.162l-0.95-0.574L19.8,10.146L19.987,10.023z M21.381,12.387 l0.28,0.281l-0.362,0.08l-0.082-0.1L21.381,12.387z M14.127,3.285l0.59,0.914l-0.67,0.205l-0.262-0.15L14.127,3.285z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.9995" x2="15.9995" y1="1.0625" y2="27.1316">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M16,1C8.821,1,3,6.82,3,14c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C29,6.82,23.182,1,16,1z M16,26C9.383,26,4,20.617,4,14S9.383,2,16,2s12,5.383,12,12S22.617,26,16,26z" fill="url(#SVGID_2_)" opacity="0.3"/>
+<path d="M16,1C8.821,1,3,6.82,3,14c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C29,6.82,23.182,1,16,1z M16,26C9.383,26,4,20.617,4,14S9.383,2,16,2s12,5.383,12,12S22.617,26,16,26z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="16.75" cy="4.499" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.4173">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M23.044,17.713l-1.353,1.355c0,0-0.818,0-0.856,0.324c-0.018,0.141-0.063,0.744-0.201,1.057 c-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.205,0.734,1C21.669,22.059,24.434,18.367,23.044,17.713z" fill="url(#SVGID_3_)"/>
<radialGradient cx="16.75" cy="4.5005" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.8328">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M19.99,2.619c-0.222,0.084-0.374,0.141-0.374,0.141l-3.344-0.639l-1.64,1.025l0.863,1.336 l-1.509,0.463l-0.813-0.463l0.286-0.811l-1.06,0.734L12.21,5.682h-2.014l0.745,1.268L8.11,9.258l-0.533,2.305l1.051,2.035L9.259,14 l2.218-0.453l0.81,0.695l0.736,0.072l0.801,3.135l-0.533,1.385l1.178,2.605l0.332,1.08h2.053l1.16-0.627l0.875-1.016v-1.23 l1.663-0.848v-1.822l0.658-1.25l1.467-1.32l0.351-1.531l-1.919,0.428l-0.505-0.615l0.359-0.574l-1.363-0.824l-0.581-2.088 l1.007-0.656l0.927,1.352l0.349,0.893l0.696,0.697l0.813,0.424l0.903-0.145l1.003-0.965l-0.706-1.289L23.12,9.744l-0.804-0.957 l0.764-0.533l2.397,0.291v0.852l2.086,4.299l0.474-0.379C27.756,8.359,24.48,4.199,19.99,2.619z M18.901,8.428l-1.095,0.291h-1.458 V7.963h-1.394l-1.103,0.291L12.17,7.789L11.705,6.92l2.321-0.523h2.322L16,5.469h1.161l0.646,1.451l1.095,0.383V8.428z M21.397,6.514l-1.974-0.35V5.469l0.987-0.232l0.29-0.348l0.696,0.58V6.514z" fill="url(#SVGID_4_)"/>
-<path d="M2.73,8.398C2.449,8.582,1.209,9.846,1.185,9.875c-0.489,0.596-0.786,1.178-0.795,1.197 c-0.308,0.727-0.585,2.615-0.205,4.359c0.282,1.289,1.901,4.789,3.796,7.348c2.016,2.721,5.333,5.609,6.953,6.371 c1.669,0.787,2.914,0.85,3.256,0.85c0.176,0,0.325-0.014,0.459-0.039c0.1-0.018,1.208-0.223,2.326-0.977 c0,0,0.467-0.314,0.729-0.555c0.02-0.018,0.786-0.768,0.799-0.785c0.247-0.311,0.358-0.701,0.312-1.102 c-0.049-0.416-0.27-0.805-0.605-1.068c0,0-4.841-3.844-4.875-3.863c-0.257-0.156-0.547-0.238-0.841-0.238 c-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438c-0.884-1.193-1.535-2.25-2.041-3.324 l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85c0.146-0.396,0.12-0.852-0.067-1.244L5.742,8.617 c-0.269-0.557-0.83-0.914-1.431-0.914c-0.217,0-0.427,0.045-0.622,0.135L2.73,8.398z" opacity="0.6"/>
+<path d="M2.73,8.398C2.449,8.582,1.209,9.846,1.185,9.875c-0.489,0.596-0.786,1.178-0.795,1.197 c-0.308,0.727-0.585,2.615-0.205,4.359c0.282,1.289,1.901,4.789,3.796,7.348c2.016,2.721,5.333,5.609,6.953,6.371 c1.669,0.787,2.914,0.85,3.256,0.85c0.176,0,0.325-0.014,0.459-0.039c0.1-0.018,1.208-0.223,2.326-0.977 c0,0,0.467-0.314,0.729-0.555c0.02-0.018,0.786-0.768,0.799-0.785c0.247-0.311,0.358-0.701,0.312-1.102 c-0.049-0.416-0.27-0.805-0.605-1.068c0,0-4.841-3.844-4.875-3.863c-0.257-0.156-0.547-0.238-0.841-0.238 c-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438c-0.884-1.193-1.535-2.25-2.041-3.324 l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85c0.146-0.396,0.12-0.852-0.067-1.244L5.742,8.617 c-0.269-0.557-0.83-0.914-1.431-0.914c-0.217,0-0.427,0.045-0.622,0.135L2.73,8.398z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-0.2866" x2="10.2134" y1="8.4424" y2="26.7754">
- <stop offset="0" style="stop-color:#E9F0F2"/>
- <stop offset="0.5212" style="stop-color:#AAB1B5"/>
- <stop offset="1" style="stop-color:#838F94"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.5212" style="stop-color:#AAB1B5"/>
+<stop offset="1" style="stop-color:#838F94"/>
</linearGradient>
<path d="M5.143,16.264c0.67,1.684,1.561,3.094,2.548,4.428c0.95,1.281,2.554,2.713,3.286,3.242l3.479,5.045 c-0.384,0.076-1.622-0.037-3.097-0.732c-1.477-0.695-4.652-3.467-6.575-6.063c-1.922-2.594-3.398-5.941-3.622-6.965 c-0.352-1.611-0.051-3.287,0.148-3.756c0,0,0.213-0.426,0.646-0.951C2.142,10.285,5.143,16.264,5.143,16.264z" fill="url(#SVGID_5_)"/>
<radialGradient cx="10.8911" cy="22.9111" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="8.6673">
- <stop offset="0.0424" style="stop-color:#D1D8D9"/>
- <stop offset="0.4" style="stop-color:#BBC0C2"/>
- <stop offset="0.7333" style="stop-color:#7C8C91"/>
- <stop offset="1" style="stop-color:#A7B3B7"/>
+<stop offset="0" style="stop-color:#D1D8D9"/>
+<stop offset="0.0424" style="stop-color:#D1D8D9"/>
+<stop offset="0.4" style="stop-color:#BBC0C2"/>
+<stop offset="0.7333" style="stop-color:#7C8C91"/>
+<stop offset="1" style="stop-color:#A7B3B7"/>
</radialGradient>
<path d="M17.592,26.262l-3.165-2.527l-1.612-1.27c-0.241-0.146-0.541-0.119-0.703,0.084l-0.635,0.775v0.002 l-0.5,0.607c0-0.002-0.002-0.006-0.003-0.006c-0.565,2.01,0.43,4.135,2.343,4.865c0.253,0.094,0.509,0.162,0.765,0.201 c0.16,0.004,0.291,0,0.375-0.016c0,0,0.987-0.168,1.959-0.824c0.324-0.217,0.353-0.223,0.614-0.463c0.001-0.002,0-0.004,0.002-0.006 c0.515-0.471,0.689-0.664,0.689-0.664C17.898,26.799,17.842,26.457,17.592,26.262z" fill="url(#SVGID_6_)"/>
-<path d="M11.477,23.324l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27l3.165,2.527 c0.25,0.195,0.307,0.537,0.129,0.76c0,0-0.176,0.193-0.693,0.668L11.477,23.324z" fill="#FFFFFF" opacity="0.4"/>
+<path d="M11.477,23.324l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27l3.165,2.527 c0.25,0.195,0.307,0.537,0.129,0.76c0,0-0.176,0.193-0.693,0.668L11.477,23.324z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<radialGradient cx="-162.3672" cy="-37.5952" gradientTransform="matrix(0.9891 0.1471 -0.1471 0.9891 159.0668 70.322)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="8.6173">
- <stop offset="0.0424" style="stop-color:#D1D8D9"/>
- <stop offset="0.4" style="stop-color:#BBC0C2"/>
- <stop offset="0.7333" style="stop-color:#7C8C91"/>
- <stop offset="1" style="stop-color:#A7B3B7"/>
+<stop offset="0" style="stop-color:#D1D8D9"/>
+<stop offset="0.0424" style="stop-color:#D1D8D9"/>
+<stop offset="0.4" style="stop-color:#BBC0C2"/>
+<stop offset="0.7333" style="stop-color:#7C8C91"/>
+<stop offset="1" style="stop-color:#A7B3B7"/>
</radialGradient>
<path d="M7.502,14.557l-2.66-5.506C4.701,8.762,4.371,8.625,4.104,8.748c0,0-0.232,0.105-0.813,0.479 c0,0.002-0.001,0-0.002,0.002C2.973,9.432,2.947,9.523,2.634,9.801c-0.434,0.389-0.758,0.793-0.978,1.105 c-0.721,2.08,0.275,4.35,2.266,5.109c0.406,0.154,0.822,0.23,1.236,0.242l1.266-0.57l0.853-0.381 C7.545,15.186,7.643,14.85,7.502,14.557z" fill="url(#SVGID_7_)"/>
-<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48c0.268-0.123,0.598,0.014,0.738,0.303 l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381L3.29,9.229z" fill="#FFFFFF" opacity="0.4"/>
+<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48c0.268-0.123,0.598,0.014,0.738,0.303 l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381L3.29,9.229z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
</g>
<g>
<rect fill="none" height="30" width="30"/>
-<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S25.411,30,21,30L21,30z" enable-background="new " opacity="0.6"/>
+<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S25.411,30,21,30L21,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -66 -46)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="87" x2="87" y1="-60.9688" y2="-75.1651">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<circle cx="21" cy="22" fill="url(#SVGID_1__)" r="7"/>
-<polygon enable-background="new " opacity="0.2" points="25.34,24 20.999,19.4 16.66,24 16,23.3 20.999,18 26,23.3 "/>
-<polygon enable-background="new " opacity="0.2" points="20.999,20.857 17,25.098 17,27 20,27 20,24 22,24 22,27 25,27 25,25.098 "/>
-<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5 C27.986,22.334,28,22.169,28,22c0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C14.283,18.869,17.303,16,21,16z" enable-background="new " fill="#FFFFFF" opacity="0.4"/>
+<polygon fill-opacity="0.2" points="25.34,24 20.999,19.4 16.66,24 16,23.3 20.999,18 26,23.3 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="20.999,20.857 17,25.098 17,27 20,27 20,24 22,24 22,27 25,27 25,25.098 " stroke-opacity="0.2"/>
+<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5 C27.986,22.334,28,22.169,28,22c0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C14.283,18.869,17.303,16,21,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<polygon fill="#FFFFFF" points="25.34,23 20.999,18.4 16.66,23 16,22.3 20.999,17 26,22.3 "/>
<polygon fill="#FFFFFF" points="20.999,19.857 17,24.098 17,26 20,26 20,23 22,23 22,26 25,26 25,24.098 "/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_voip_work.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_voip_work.svg Thu May 27 13:10:59 2010 +0300
@@ -1,75 +1,75 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
-<path d="M16,0C8.28,0,2,6.279,2,14c0,7.719,6.28,14,14,14s14-6.281,14-14C30,6.279,23.72,0,16,0z" opacity="0.6"/>
+<path d="M16,0C8.28,0,2,6.279,2,14c0,7.719,6.28,14,14,14s14-6.281,14-14C30,6.279,23.72,0,16,0z" fill-opacity="0.6" stroke-opacity="0.6"/>
<radialGradient cx="-451.0264" cy="-302.1748" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="48.9059">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="16" cy="14" fill="url(#SVGID_1_)" r="13"/>
-<path d="M28.536,13.287c-0.288-5.078-3.577-9.449-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H9.322l0.971,1.652L7.662,8.979l-0.613,2.65l2.173,3.85l2.218-0.453l0.81,0.697l0.633,0.063l0.418,1.633l-0.552,1.432L14.763,24 h2.053l2.035-1.645v-0.67l0.537-0.834l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.135,0.289,2.756,1.192,2.551 c0.686-0.156,3.135-4.705,3.182-5.139c0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15l-1.462,1.465 c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.49l0.929-0.895l-0.519-0.945 l0.395,0.047l2.313,5.178L28,14.795c-0.015-0.254-0.042-0.502-0.071-0.752L28.536,13.287z M16.156,7.463l-0.193-0.516h1.161 l0.565,1.271h-0.841V7.463H16.156z M19.987,10.023l0.927,1.354l0.063,0.162l-0.95-0.574L19.8,10.146L19.987,10.023z M21.381,12.387 l0.28,0.281l-0.362,0.08l-0.082-0.1L21.381,12.387z M14.127,3.285l0.59,0.914l-0.67,0.205l-0.262-0.15L14.127,3.285z" opacity="0.3"/>
+<path d="M28.536,13.287c-0.288-5.078-3.577-9.449-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H9.322l0.971,1.652L7.662,8.979l-0.613,2.65l2.173,3.85l2.218-0.453l0.81,0.697l0.633,0.063l0.418,1.633l-0.552,1.432L14.763,24 h2.053l2.035-1.645v-0.67l0.537-0.834l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.135,0.289,2.756,1.192,2.551 c0.686-0.156,3.135-4.705,3.182-5.139c0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15l-1.462,1.465 c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.49l0.929-0.895l-0.519-0.945 l0.395,0.047l2.313,5.178L28,14.795c-0.015-0.254-0.042-0.502-0.071-0.752L28.536,13.287z M16.156,7.463l-0.193-0.516h1.161 l0.565,1.271h-0.841V7.463H16.156z M19.987,10.023l0.927,1.354l0.063,0.162l-0.95-0.574L19.8,10.146L19.987,10.023z M21.381,12.387 l0.28,0.281l-0.362,0.08l-0.082-0.1L21.381,12.387z M14.127,3.285l0.59,0.914l-0.67,0.205l-0.262-0.15L14.127,3.285z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.9995" x2="15.9995" y1="1.0625" y2="27.1316">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M16,1C8.821,1,3,6.82,3,14c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C29,6.82,23.182,1,16,1z M16,26C9.383,26,4,20.617,4,14S9.383,2,16,2s12,5.383,12,12S22.617,26,16,26z" fill="url(#SVGID_2_)" opacity="0.3"/>
+<path d="M16,1C8.821,1,3,6.82,3,14c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C29,6.82,23.182,1,16,1z M16,26C9.383,26,4,20.617,4,14S9.383,2,16,2s12,5.383,12,12S22.617,26,16,26z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="16.75" cy="4.499" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.4173">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M23.044,17.713l-1.353,1.355c0,0-0.818,0-0.856,0.324c-0.018,0.141-0.063,0.744-0.201,1.057 c-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.205,0.734,1C21.669,22.059,24.434,18.367,23.044,17.713z" fill="url(#SVGID_3_)"/>
<radialGradient cx="16.75" cy="4.5005" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.8328">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M19.99,2.619c-0.222,0.084-0.374,0.141-0.374,0.141l-3.344-0.639l-1.64,1.025l0.863,1.336 l-1.509,0.463l-0.813-0.463l0.286-0.811l-1.06,0.734L12.21,5.682h-2.014l0.745,1.268L8.11,9.258l-0.533,2.305l1.051,2.035L9.259,14 l2.218-0.453l0.81,0.695l0.736,0.072l0.801,3.135l-0.533,1.385l1.178,2.605l0.332,1.08h2.053l1.16-0.627l0.875-1.016v-1.23 l1.663-0.848v-1.822l0.658-1.25l1.467-1.32l0.351-1.531l-1.919,0.428l-0.505-0.615l0.359-0.574l-1.363-0.824l-0.581-2.088 l1.007-0.656l0.927,1.352l0.349,0.893l0.696,0.697l0.813,0.424l0.903-0.145l1.003-0.965l-0.706-1.289L23.12,9.744l-0.804-0.957 l0.764-0.533l2.397,0.291v0.852l2.086,4.299l0.474-0.379C27.756,8.359,24.48,4.199,19.99,2.619z M18.901,8.428l-1.095,0.291h-1.458 V7.963h-1.394l-1.103,0.291L12.17,7.789L11.705,6.92l2.321-0.523h2.322L16,5.469h1.161l0.646,1.451l1.095,0.383V8.428z M21.397,6.514l-1.974-0.35V5.469l0.987-0.232l0.29-0.348l0.696,0.58V6.514z" fill="url(#SVGID_4_)"/>
-<path d="M2.73,8.398C2.449,8.582,1.209,9.846,1.185,9.875c-0.489,0.596-0.786,1.178-0.795,1.197 c-0.308,0.727-0.585,2.615-0.205,4.359c0.282,1.289,1.901,4.789,3.796,7.348c2.016,2.721,5.333,5.609,6.953,6.371 c1.669,0.787,2.914,0.85,3.256,0.85c0.176,0,0.325-0.014,0.459-0.039c0.1-0.018,1.208-0.223,2.326-0.977 c0,0,0.467-0.314,0.729-0.555c0.02-0.018,0.786-0.768,0.799-0.785c0.247-0.311,0.358-0.701,0.312-1.102 c-0.049-0.416-0.27-0.805-0.605-1.068c0,0-4.841-3.844-4.875-3.863c-0.257-0.156-0.547-0.238-0.841-0.238 c-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438c-0.884-1.193-1.535-2.25-2.041-3.324 l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85c0.146-0.396,0.12-0.852-0.067-1.244L5.742,8.617 c-0.269-0.557-0.83-0.914-1.431-0.914c-0.217,0-0.427,0.045-0.622,0.135L2.73,8.398z" opacity="0.6"/>
+<path d="M2.73,8.398C2.449,8.582,1.209,9.846,1.185,9.875c-0.489,0.596-0.786,1.178-0.795,1.197 c-0.308,0.727-0.585,2.615-0.205,4.359c0.282,1.289,1.901,4.789,3.796,7.348c2.016,2.721,5.333,5.609,6.953,6.371 c1.669,0.787,2.914,0.85,3.256,0.85c0.176,0,0.325-0.014,0.459-0.039c0.1-0.018,1.208-0.223,2.326-0.977 c0,0,0.467-0.314,0.729-0.555c0.02-0.018,0.786-0.768,0.799-0.785c0.247-0.311,0.358-0.701,0.312-1.102 c-0.049-0.416-0.27-0.805-0.605-1.068c0,0-4.841-3.844-4.875-3.863c-0.257-0.156-0.547-0.238-0.841-0.238 c-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438c-0.884-1.193-1.535-2.25-2.041-3.324 l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85c0.146-0.396,0.12-0.852-0.067-1.244L5.742,8.617 c-0.269-0.557-0.83-0.914-1.431-0.914c-0.217,0-0.427,0.045-0.622,0.135L2.73,8.398z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-0.2866" x2="10.2134" y1="8.4424" y2="26.7754">
- <stop offset="0" style="stop-color:#E9F0F2"/>
- <stop offset="0.5212" style="stop-color:#AAB1B5"/>
- <stop offset="1" style="stop-color:#838F94"/>
+<stop offset="0" style="stop-color:#E9F0F2"/>
+<stop offset="0.5212" style="stop-color:#AAB1B5"/>
+<stop offset="1" style="stop-color:#838F94"/>
</linearGradient>
<path d="M5.143,16.264c0.67,1.684,1.561,3.094,2.548,4.428c0.95,1.281,2.554,2.713,3.286,3.242l3.479,5.045 c-0.384,0.076-1.622-0.037-3.097-0.732c-1.477-0.695-4.652-3.467-6.575-6.063c-1.922-2.594-3.398-5.941-3.622-6.965 c-0.352-1.611-0.051-3.287,0.148-3.756c0,0,0.213-0.426,0.646-0.951C2.142,10.285,5.143,16.264,5.143,16.264z" fill="url(#SVGID_5_)"/>
<radialGradient cx="10.8911" cy="22.9111" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="8.6673">
- <stop offset="0.0424" style="stop-color:#D1D8D9"/>
- <stop offset="0.4" style="stop-color:#BBC0C2"/>
- <stop offset="0.7333" style="stop-color:#7C8C91"/>
- <stop offset="1" style="stop-color:#A7B3B7"/>
+<stop offset="0" style="stop-color:#D1D8D9"/>
+<stop offset="0.0424" style="stop-color:#D1D8D9"/>
+<stop offset="0.4" style="stop-color:#BBC0C2"/>
+<stop offset="0.7333" style="stop-color:#7C8C91"/>
+<stop offset="1" style="stop-color:#A7B3B7"/>
</radialGradient>
<path d="M17.592,26.262l-3.165-2.527l-1.612-1.27c-0.241-0.146-0.541-0.119-0.703,0.084l-0.635,0.775v0.002 l-0.5,0.607c0-0.002-0.002-0.006-0.003-0.006c-0.565,2.01,0.43,4.135,2.343,4.865c0.253,0.094,0.509,0.162,0.765,0.201 c0.16,0.004,0.291,0,0.375-0.016c0,0,0.987-0.168,1.959-0.824c0.324-0.217,0.353-0.223,0.614-0.463c0.001-0.002,0-0.004,0.002-0.006 c0.515-0.471,0.689-0.664,0.689-0.664C17.898,26.799,17.842,26.457,17.592,26.262z" fill="url(#SVGID_6_)"/>
-<path d="M11.477,23.324l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27l3.165,2.527 c0.25,0.195,0.307,0.537,0.129,0.76c0,0-0.176,0.193-0.693,0.668L11.477,23.324z" fill="#FFFFFF" opacity="0.4"/>
+<path d="M11.477,23.324l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27l3.165,2.527 c0.25,0.195,0.307,0.537,0.129,0.76c0,0-0.176,0.193-0.693,0.668L11.477,23.324z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<radialGradient cx="-162.3672" cy="-37.5952" gradientTransform="matrix(0.9891 0.1471 -0.1471 0.9891 159.0668 70.322)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="8.6173">
- <stop offset="0.0424" style="stop-color:#D1D8D9"/>
- <stop offset="0.4" style="stop-color:#BBC0C2"/>
- <stop offset="0.7333" style="stop-color:#7C8C91"/>
- <stop offset="1" style="stop-color:#A7B3B7"/>
+<stop offset="0" style="stop-color:#D1D8D9"/>
+<stop offset="0.0424" style="stop-color:#D1D8D9"/>
+<stop offset="0.4" style="stop-color:#BBC0C2"/>
+<stop offset="0.7333" style="stop-color:#7C8C91"/>
+<stop offset="1" style="stop-color:#A7B3B7"/>
</radialGradient>
<path d="M7.502,14.557l-2.66-5.506C4.701,8.762,4.371,8.625,4.104,8.748c0,0-0.232,0.105-0.813,0.479 c0,0.002-0.001,0-0.002,0.002C2.973,9.432,2.947,9.523,2.634,9.801c-0.434,0.389-0.758,0.793-0.978,1.105 c-0.721,2.08,0.275,4.35,2.266,5.109c0.406,0.154,0.822,0.23,1.236,0.242l1.266-0.57l0.853-0.381 C7.545,15.186,7.643,14.85,7.502,14.557z" fill="url(#SVGID_7_)"/>
-<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48c0.268-0.123,0.598,0.014,0.738,0.303 l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381L3.29,9.229z" fill="#FFFFFF" opacity="0.4"/>
+<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48c0.268-0.123,0.598,0.014,0.738,0.303 l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381L3.29,9.229z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
</g>
<g>
-<defs>
-</defs>
<g>
- <rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
</g>
-<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S25.411,30,21,30L21,30z" opacity="0.6"/>
+<path d="M21,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S25.411,30,21,30L21,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="21" x2="21" y1="14.9683" y2="29.1646">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<circle cx="21" cy="22" fill="url(#SVGID_1__)" r="7"/>
-<path d="M22,21v-2h-5v8h4h1h3v-6H22z M21,25h-3v-1h3V25z M21,23h-3v-1h3V23z M18,21v-1h3v1H18z M24,25h-2v-1h2V25z M24,23h-2v-1h2V23z" opacity="0.2"/>
-<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5C27.986,22.334,28,22.169,28,22c0-3.865-3.134-7-7-7 s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C14.283,18.869,17.303,16,21,16z" fill="#FFFFFF" opacity="0.4"/>
+<path d="M22,21v-2h-5v8h4h1h3v-6H22z M21,25h-3v-1h3V25z M21,23h-3v-1h3V23z M18,21v-1h3v1H18z M24,25h-2v-1h2V25z M24,23h-2v-1h2V23z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M21,16c3.697,0,6.717,2.869,6.975,6.5C27.986,22.334,28,22.169,28,22c0-3.865-3.134-7-7-7 s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C14.283,18.869,17.303,16,21,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<path d="M22,20v-2h-5v8h4h1h3v-6H22z M21,24h-3v-1h3V24z M21,22h-3v-1h3V22z M18,20v-1h3v1H18z M24,24h-2v-1h2V24z M24,22h-2v-1h2V22z" fill="#FFFFFF"/>
-<rect height="6" opacity="0.3" width="1" x="22" y="20"/>
+<rect fill-opacity="0.3" height="6" stroke-opacity="0.3" width="1" x="22" y="20"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_vpn.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_vpn.svg Thu May 27 13:10:59 2010 +0300
@@ -1,63 +1,55 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1s14,6.28,14,14S22.72,29,15,29L15,29z" fill-opacity="0.6"/>
<radialGradient cx="-453.8818" cy="-299.3193" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="48.9059">
- <stop offset="0" style="stop-color:#94FFFF"/>
- <stop offset="0.5" style="stop-color:#36B5FF"/>
- <stop offset="1" style="stop-color:#1B66D8"/>
+<stop offset="0" style="stop-color:#94FFFF"/>
+<stop offset="0.5" style="stop-color:#36B5FF"/>
+<stop offset="1" style="stop-color:#1B66D8"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M27.536,14.288c-0.288-5.078-3.577-9.45-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H8.322l0.971,1.651L6.662,9.979l-0.613,2.649l2.173,3.851l2.218-0.453l0.81,0.696l0.633,0.063l0.418,1.634l-0.552,1.432L13.763,25 h2.053l2.035-1.644v-0.671l0.537-0.833l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.134,0.289,2.755,1.192,2.55 c0.686-0.155,3.135-4.705,3.182-5.138c0.093-0.855-0.373-1.209-0.659-1.343l-0.318-0.15l-1.462,1.466 c-0.157,0.012-0.298,0.038-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.491l0.929-0.894l-0.519-0.946 l0.395,0.048l2.313,5.178L27,15.796c-0.015-0.254-0.042-0.503-0.071-0.753L27.536,14.288z M15.156,8.464l-0.193-0.516h1.161 l0.565,1.271h-0.841V8.464H15.156z M18.987,11.024l0.927,1.353l0.063,0.162l-0.95-0.574L18.8,11.146L18.987,11.024z M20.381,13.388 l0.28,0.28l-0.362,0.081l-0.082-0.1L20.381,13.388z M13.127,4.286l0.59,0.913l-0.67,0.205l-0.262-0.149L13.127,4.286z" opacity="0.3"/>
+<path d="M27.536,14.288c-0.288-5.078-3.577-9.45-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H8.322l0.971,1.651L6.662,9.979l-0.613,2.649l2.173,3.851l2.218-0.453l0.81,0.696l0.633,0.063l0.418,1.634l-0.552,1.432L13.763,25 h2.053l2.035-1.644v-0.671l0.537-0.833l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.134,0.289,2.755,1.192,2.55 c0.686-0.155,3.135-4.705,3.182-5.138c0.093-0.855-0.373-1.209-0.659-1.343l-0.318-0.15l-1.462,1.466 c-0.157,0.012-0.298,0.038-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.491l0.929-0.894l-0.519-0.946 l0.395,0.048l2.313,5.178L27,15.796c-0.015-0.254-0.042-0.503-0.071-0.753L27.536,14.288z M15.156,8.464l-0.193-0.516h1.161 l0.565,1.271h-0.841V8.464H15.156z M18.987,11.024l0.927,1.353l0.063,0.162l-0.95-0.574L18.8,11.146L18.987,11.024z M20.381,13.388 l0.28,0.28l-0.362,0.081l-0.082-0.1L20.381,13.388z M13.127,4.286l0.59,0.913l-0.67,0.205l-0.262-0.149L13.127,4.286z" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="2.0625" y2="28.1316">
- <stop offset="0" style="stop-color:#31A7F8"/>
- <stop offset="0.497" style="stop-color:#1E74DC"/>
- <stop offset="1" style="stop-color:#C8E4EB"/>
+<stop offset="0" style="stop-color:#31A7F8"/>
+<stop offset="0.497" style="stop-color:#1E74DC"/>
+<stop offset="1" style="stop-color:#C8E4EB"/>
</linearGradient>
-<path d="M15,2C7.821,2,2,7.821,2,15c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C28,7.821,22.182,2,15,2z M15,27C8.383,27,3,21.617,3,15S8.383,3,15,3s12,5.383,12,12S21.617,27,15,27z" fill="url(#SVGID_2_)" opacity="0.3"/>
+<path d="M15,2C7.821,2,2,7.821,2,15c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C28,7.821,22.182,2,15,2z M15,27C8.383,27,3,21.617,3,15S8.383,3,15,3s12,5.383,12,12S21.617,27,15,27z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
<radialGradient cx="15.75" cy="5.5" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.4173">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M22.044,18.714l-1.353,1.355c0,0-0.818,0-0.856,0.324c-0.018,0.14-0.063,0.744-0.201,1.056 c-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.206,0.734,1.001C20.669,23.06,23.434,19.367,22.044,18.714z" fill="url(#SVGID_3_)"/>
<radialGradient cx="15.75" cy="5.5005" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.8335">
- <stop offset="0.3152" style="stop-color:#94FF26"/>
- <stop offset="0.7273" style="stop-color:#1FC211"/>
- <stop offset="1" style="stop-color:#0BA133"/>
+<stop offset="0" style="stop-color:#94FF26"/>
+<stop offset="0.3152" style="stop-color:#94FF26"/>
+<stop offset="0.7273" style="stop-color:#1FC211"/>
+<stop offset="1" style="stop-color:#0BA133"/>
</radialGradient>
<path d="M18.99,3.619c-0.222,0.084-0.374,0.142-0.374,0.142l-3.344-0.64l-1.64,1.026l0.863,1.335 l-1.509,0.464l-0.813-0.464l0.286-0.811l-1.06,0.734L11.21,6.683H9.196L9.941,7.95L7.11,10.259l-0.533,2.304l1.051,2.035L8.259,15 l2.218-0.453l0.81,0.696l0.736,0.072l0.801,3.134l-0.533,1.386l1.178,2.604l0.332,1.081h2.053l1.16-0.628l0.875-1.016v-1.229 l1.663-0.849v-1.821l0.658-1.251l1.467-1.32l0.351-1.53l-1.919,0.428l-0.505-0.615l0.359-0.574l-1.363-0.824l-0.581-2.089 l1.007-0.656l0.927,1.353L20.3,11.79l0.696,0.696l0.813,0.425l0.903-0.146l1.003-0.965l-0.706-1.288l-0.889,0.232l-0.804-0.957 l0.764-0.533l2.397,0.29v0.853l2.086,4.298l0.474-0.379C26.756,9.359,23.48,5.199,18.99,3.619z M17.901,9.429l-1.095,0.29h-1.458 V8.964h-1.394l-1.103,0.291L11.17,8.79l-0.465-0.87l2.321-0.522h2.322L15,6.469h1.161l0.646,1.451l1.095,0.384V9.429z M20.397,7.514 l-1.974-0.349V6.469l0.987-0.232l0.29-0.348l0.696,0.58V7.514z" fill="url(#SVGID_4_)"/>
</g>
<g>
<rect fill="none" height="15" width="15" x="15" y="15"/>
-<path d="M23.82,23.82v-3.53c0-0.729-0.594-1.323-1.324-1.323-0.729,0-1.323,0.594-1.323,1.323v3.53h-2.647v-3.53c0-2.189,1.781-3.971,3.971-3.971s3.971,1.781,3.971,3.971v3.53h-2.646z" opacity="0.6" style="enable-background:new;"/>
+<path d="M23.82,23.82v-3.53c0-0.729-0.594-1.323-1.324-1.323-0.729,0-1.323,0.594-1.323,1.323v3.53h-2.647v-3.53c0-2.189,1.781-3.971,3.971-3.971s3.971,1.781,3.971,3.971v3.53h-2.646z" fill-opacity="0.6" stroke-opacity="0.6" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-68.48" x2="-68.48" y1="99.54" y2="93.17">
-
<stop offset="0" stop-color="#C8C8C8"/>
-
<stop offset="1" stop-color="#646464"/>
-
</linearGradient>
<path d="M20.74,23.38v-3.088c0-0.974,0.792-1.766,1.765-1.766,0.974,0,1.765,0.792,1.765,1.766v3.088h1.766v-3.088c0-1.941-1.589-3.53-3.53-3.53s-3.53,1.589-3.53,3.53v3.088h1.765z" fill="url(#SVGID_1__)"/>
-<rect height="7.06" opacity="0.6" style="enable-background:new;" width="11.47" x="16.76" y="21.62"/>
+<rect fill-opacity="0.6" height="7.06" stroke-opacity="0.6" style="enable-background:new;" width="11.47" x="16.76" y="21.62"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-73.77" x2="-63.19" y1="91.37" y2="91.37">
-
<stop offset="0" stop-color="#FFB533"/>
-
<stop offset="0.24" stop-color="#FFE692"/>
-
<stop offset="0.75" stop-color="#ED8C0D"/>
-
<stop offset="1" stop-color="#FFB81F"/>
-
</linearGradient>
<rect fill="url(#SVGID_2__)" height="6.178" width="10.59" x="17.21" y="22.06"/>
-<rect height="0.882" opacity="0.5" style="enable-background:new;" width="10.59" x="17.21" y="26.03"/>
-<rect height="0.883" opacity="0.5" style="enable-background:new;" width="10.59" x="17.21" y="24.26"/>
+<rect fill-opacity="0.5" height="0.882" stroke-opacity="0.5" style="enable-background:new;" width="10.59" x="17.21" y="26.03"/>
+<rect fill-opacity="0.5" height="0.883" stroke-opacity="0.5" style="enable-background:new;" width="10.59" x="17.21" y="24.26"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wifi.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wifi.svg Thu May 27 13:10:59 2010 +0300
@@ -1,25 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14C29,22.719,22.719,29,15,29 L15,29z" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2.2749" y2="32.0078">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
-</linearGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<g opacity="0.2">
- <g>
- <path d="M24.99,12.631c-0.283-0.748-1.309-2.688-2.809-4.158c0.485-2.043-0.762-2.379-1.248-2.457 c-0.865-0.055-2.592-0.715-4.184-0.203c-2.305,0.74-4.67,3.051-6.592,5.797C8.193,14.395,7.414,19.094,7,19.234 c0.57,1.799,2.896,4.215,2.896,4.215s-0.687,2.191,1.361,2.535c1.986,0.205,3.936-1.619,3.936-1.619s9.661-1.873,7.774-11.104 C23.006,13.275,24.684,12.729,24.99,12.631z M14.783,20.25c-0.049,0.412-2.373,3.385-3.342,2.664 c-0.914-0.68-1.818-1.74-2.335-3.156c0.023-0.025,1.533-0.443,1.566-0.422c-1.491-6.658,4.111-7.711,4.111-7.711 c0.015,0.002-2.349,2.613-1.457,6.775c-0.005-0.049,1.341-0.365,1.989-0.572C15.531,18.402,14.892,19.322,14.783,20.25z M16.575,20.842c-0.015-0.004,3.059-3.283,2.171-7.441c0.003,0.045-1.344,0.363-1.99,0.57c-0.559-1.488,0.066-5.105,1.385-5.938 c0.785-0.236,2.498,0.49,3.758,2.094c0.424,0.539-0.71,1.391-0.742,1.373C22.646,18.154,16.575,20.842,16.575,20.842z"/>
- </g>
+<g fill-opacity="0.2" stroke-opacity="0.2">
+<g>
+<path d="M24.99,12.631c-0.283-0.748-1.309-2.688-2.809-4.158c0.485-2.043-0.762-2.379-1.248-2.457 c-0.865-0.055-2.592-0.715-4.184-0.203c-2.305,0.74-4.67,3.051-6.592,5.797C8.193,14.395,7.414,19.094,7,19.234 c0.57,1.799,2.896,4.215,2.896,4.215s-0.687,2.191,1.361,2.535c1.986,0.205,3.936-1.619,3.936-1.619s9.661-1.873,7.774-11.104 C23.006,13.275,24.684,12.729,24.99,12.631z M14.783,20.25c-0.049,0.412-2.373,3.385-3.342,2.664 c-0.914-0.68-1.818-1.74-2.335-3.156c0.023-0.025,1.533-0.443,1.566-0.422c-1.491-6.658,4.111-7.711,4.111-7.711 c0.015,0.002-2.349,2.613-1.457,6.775c-0.005-0.049,1.341-0.365,1.989-0.572C15.531,18.402,14.892,19.322,14.783,20.25z M16.575,20.842c-0.015-0.004,3.059-3.283,2.171-7.441c0.003,0.045-1.344,0.363-1.99,0.57c-0.559-1.488,0.066-5.105,1.385-5.938 c0.785-0.236,2.498,0.49,3.758,2.094c0.424,0.539-0.71,1.391-0.742,1.373C22.646,18.154,16.575,20.842,16.575,20.842z"/>
</g>
-<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.168,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.168,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" opacity="0.4"/>
+</g>
+<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.168,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.168,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<g>
- <path d="M23.778,11.643c-0.283-0.749-1.309-2.688-2.809-4.159c0.485-2.042-0.762-2.379-1.248-2.456 c-2.12-0.134-2.895,0.569-3.568,1.059c-1.26,0.916-4.098,0.759-7.208,4.535c-1.964,2.784-1.265,7.074-1.265,7.074 s-1.479,0.41-1.893,0.55c0.57,1.8,2.896,4.216,2.896,4.216s-0.687,2.191,1.361,2.534c1.986,0.205,3.936-1.618,3.936-1.618 s9.661-1.874,7.774-11.104C21.793,12.287,23.471,11.74,23.778,11.643z M12.717,22.778c-1.05,0.314-3.757-1.092-4.824-4.009 c0.023-0.026,1.533-0.443,1.566-0.423c-1.491-6.657,4.822-8.378,4.822-8.378c0.015,0.003-3.06,3.281-2.167,7.443 c-0.005-0.049,1.341-0.366,1.989-0.573C14.662,18.326,14.037,21.945,12.717,22.778z M15.363,19.854 c-0.015-0.004,3.059-3.284,2.17-7.442c0.004,0.046-1.344,0.363-1.99,0.571c-0.558-1.489,0.066-5.106,1.384-5.938 c1.05-0.315,3.758,1.09,4.823,4.009c-0.022,0.024-1.533,0.441-1.565,0.424C21.676,18.131,15.363,19.854,15.363,19.854z" fill="#FFFFFF"/>
+<path d="M23.778,11.643c-0.283-0.749-1.309-2.688-2.809-4.159c0.485-2.042-0.762-2.379-1.248-2.456 c-2.12-0.134-2.895,0.569-3.568,1.059c-1.26,0.916-4.098,0.759-7.208,4.535c-1.964,2.784-1.265,7.074-1.265,7.074 s-1.479,0.41-1.893,0.55c0.57,1.8,2.896,4.216,2.896,4.216s-0.687,2.191,1.361,2.534c1.986,0.205,3.936-1.618,3.936-1.618 s9.661-1.874,7.774-11.104C21.793,12.287,23.471,11.74,23.778,11.643z M12.717,22.778c-1.05,0.314-3.757-1.092-4.824-4.009 c0.023-0.026,1.533-0.443,1.566-0.423c-1.491-6.657,4.822-8.378,4.822-8.378c0.015,0.003-3.06,3.281-2.167,7.443 c-0.005-0.049,1.341-0.366,1.989-0.573C14.662,18.326,14.037,21.945,12.717,22.778z M15.363,19.854 c-0.015-0.004,3.059-3.284,2.17-7.442c0.004,0.046-1.344,0.363-1.99,0.571c-0.558-1.489,0.066-5.106,1.384-5.938 c1.05-0.315,3.758,1.09,4.823,4.009c-0.022,0.024-1.533,0.441-1.565,0.424C21.676,18.131,15.363,19.854,15.363,19.854z" fill="#FFFFFF"/>
</g>
<rect fill="none" height="30" width="30"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2.2749" y2="32.0078">
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wlan.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wlan.svg Thu May 27 13:10:59 2010 +0300
@@ -1,27 +1,27 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M15.491,29c-7.721,0-14-6.281-14-14c0-7.721,6.279-14,14-14c7.719,0,14,6.279,14,14 C29.491,22.719,23.21,29,15.491,29L15.491,29z" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.4907" x2="15.4907" y1="2.2749" y2="32.0078">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
-</linearGradient>
<circle cx="15.491" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15.491,3c7.012,0,12.711,5.555,12.975,12.5c0.008-0.168,0.025-0.332,0.025-0.5 c0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.168,0.02,0.332,0.025,0.5C2.782,8.555,8.481,3,15.491,3z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M22.513,19.506l1.516,1.303c1.529-1.756,2.463-4.045,2.463-6.559c0-2.512-0.934-4.801-2.463-6.559 l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254C24.491,16.266,23.741,18.1,22.513,19.506z" opacity="0.2"/>
-<path d="M10.47,19.506c-1.229-1.406-1.979-3.24-1.979-5.256c0-2.014,0.75-3.848,1.979-5.254L8.954,7.691 c-1.529,1.758-2.463,4.047-2.463,6.559c0,2.514,0.934,4.803,2.463,6.559L10.47,19.506z" opacity="0.2"/>
-<path d="M19.474,16.893l1.525,1.311c0.926-1.057,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.525,1.311 c0.627,0.705,1.018,1.623,1.018,2.641S20.101,16.188,19.474,16.893z" opacity="0.2"/>
-<path d="M13.509,16.893c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311 c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953L13.509,16.893z" opacity="0.2"/>
-<polygon opacity="0.2" points="13.38,25.912 16.513,15.025 19.644,25.912 "/>
+<path d="M15.491,3c7.012,0,12.711,5.555,12.975,12.5c0.008-0.168,0.025-0.332,0.025-0.5 c0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.168,0.02,0.332,0.025,0.5C2.782,8.555,8.481,3,15.491,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M22.513,19.506l1.516,1.303c1.529-1.756,2.463-4.045,2.463-6.559c0-2.512-0.934-4.801-2.463-6.559 l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254C24.491,16.266,23.741,18.1,22.513,19.506z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10.47,19.506c-1.229-1.406-1.979-3.24-1.979-5.256c0-2.014,0.75-3.848,1.979-5.254L8.954,7.691 c-1.529,1.758-2.463,4.047-2.463,6.559c0,2.514,0.934,4.803,2.463,6.559L10.47,19.506z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M19.474,16.893l1.525,1.311c0.926-1.057,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.525,1.311 c0.627,0.705,1.018,1.623,1.018,2.641S20.101,16.188,19.474,16.893z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M13.509,16.893c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311 c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953L13.509,16.893z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="13.38,25.912 16.513,15.025 19.644,25.912 " stroke-opacity="0.2"/>
<path d="M21.513,18.506l1.516,1.303c1.529-1.756,2.463-4.045,2.463-6.559c0-2.512-0.934-4.801-2.463-6.559 l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254C23.491,15.266,22.741,17.1,21.513,18.506z" fill="#FFFFFF"/>
<path d="M9.47,18.506c-1.229-1.406-1.979-3.24-1.979-5.256c0-2.014,0.75-3.848,1.979-5.254L7.954,6.691 c-1.529,1.758-2.463,4.047-2.463,6.559c0,2.514,0.934,4.803,2.463,6.559L9.47,18.506z" fill="#FFFFFF"/>
<path d="M18.474,15.893l1.525,1.311c0.926-1.057,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.525,1.311 c0.627,0.705,1.018,1.623,1.018,2.641S19.101,15.188,18.474,15.893z" fill="#FFFFFF"/>
<path d="M12.509,15.893c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311 c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953L12.509,15.893z" fill="#FFFFFF"/>
<polygon fill="#FFFFFF" points="12.38,24.912 15.513,14.025 18.644,24.912 "/>
<rect fill="none" height="30" width="30" x="0.491"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.4907" x2="15.4907" y1="2.2749" y2="32.0078">
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
+</linearGradient>
+</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wlan_offline.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wlan_offline.svg Thu May 27 13:10:59 2010 +0300
@@ -1,22 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M15.491,29c-7.721,0-14-6.281-14-14c0-7.721,6.279-14,14-14c7.719,0,14,6.279,14,14 C29.491,22.719,23.21,29,15.491,29L15.491,29z" fill-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.4907" x2="15.4907" y1="2.2749" y2="32.0078">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<circle cx="15.491" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15.491,3c7.012,0,12.711,5.555,12.975,12.5c0.008-0.168,0.025-0.332,0.025-0.5 c0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.168,0.02,0.332,0.025,0.5C2.782,8.555,8.481,3,15.491,3z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M22.513,19.506l1.516,1.303c1.529-1.756,2.463-4.045,2.463-6.559c0-2.512-0.934-4.801-2.463-6.559 l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254C24.491,16.266,23.741,18.1,22.513,19.506z" opacity="0.2"/>
-<path d="M10.47,19.506c-1.229-1.406-1.979-3.24-1.979-5.256c0-2.014,0.75-3.848,1.979-5.254L8.954,7.691 c-1.529,1.758-2.463,4.047-2.463,6.559c0,2.514,0.934,4.803,2.463,6.559L10.47,19.506z" opacity="0.2"/>
-<path d="M19.474,16.893l1.525,1.311c0.926-1.057,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.525,1.311 c0.627,0.705,1.018,1.623,1.018,2.641S20.101,16.188,19.474,16.893z" opacity="0.2"/>
-<path d="M13.509,16.893c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311 c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953L13.509,16.893z" opacity="0.2"/>
-<polygon opacity="0.2" points="13.38,25.912 16.513,15.025 19.644,25.912 "/>
+<path d="M15.491,3c7.012,0,12.711,5.555,12.975,12.5c0.008-0.168,0.025-0.332,0.025-0.5 c0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.168,0.02,0.332,0.025,0.5C2.782,8.555,8.481,3,15.491,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M22.513,19.506l1.516,1.303c1.529-1.756,2.463-4.045,2.463-6.559c0-2.512-0.934-4.801-2.463-6.559 l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254C24.491,16.266,23.741,18.1,22.513,19.506z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10.47,19.506c-1.229-1.406-1.979-3.24-1.979-5.256c0-2.014,0.75-3.848,1.979-5.254L8.954,7.691 c-1.529,1.758-2.463,4.047-2.463,6.559c0,2.514,0.934,4.803,2.463,6.559L10.47,19.506z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M19.474,16.893l1.525,1.311c0.926-1.057,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.525,1.311 c0.627,0.705,1.018,1.623,1.018,2.641S20.101,16.188,19.474,16.893z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M13.509,16.893c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311 c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953L13.509,16.893z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="13.38,25.912 16.513,15.025 19.644,25.912 " stroke-opacity="0.2"/>
<path d="M21.513,18.506l1.516,1.303c1.529-1.756,2.463-4.045,2.463-6.559c0-2.512-0.934-4.801-2.463-6.559 l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254C23.491,15.266,22.741,17.1,21.513,18.506z" fill="#FFFFFF"/>
<path d="M9.47,18.506c-1.229-1.406-1.979-3.24-1.979-5.256c0-2.014,0.75-3.848,1.979-5.254L7.954,6.691 c-1.529,1.758-2.463,4.047-2.463,6.559c0,2.514,0.934,4.803,2.463,6.559L9.47,18.506z" fill="#FFFFFF"/>
<path d="M18.474,15.893l1.525,1.311c0.926-1.057,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.525,1.311 c0.627,0.705,1.018,1.623,1.018,2.641S19.101,15.188,18.474,15.893z" fill="#FFFFFF"/>
@@ -25,21 +23,15 @@
<rect fill="none" height="30" width="30" x="0.491"/>
</g>
<g>
-<rect height="34.27" opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
+<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
<defs>
-
<linearGradient gradientTransform="matrix(0.8824 0 0 -0.8824 -284.8232 -348.3516)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="339.8" x2="339.8" y1="-397.3" y2="-425.3">
-
<stop offset="0" stop-color="#DE8029"/>
-
<stop offset="0.2606" stop-color="#DE4E29"/>
-
<stop offset="1" stop-color="#D82E09"/>
-
</linearGradient>
-
</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wlan_secure.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wlan_secure.svg Thu May 27 13:10:59 2010 +0300
@@ -1,22 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
-<svg height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30">
<g>
-<defs>
-</defs>
<rect fill="none" height="30" width="30"/>
<path d="M15.491,29c-7.721,0-14-6.281-14-14c0-7.721,6.279-14,14-14c7.719,0,14,6.279,14,14 C29.491,22.719,23.21,29,15.491,29L15.491,29z" fill-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.4907" x2="15.4907" y1="2.2749" y2="32.0078">
- <stop offset="0" style="stop-color:#4EDEFF"/>
- <stop offset="1" style="stop-color:#048CC6"/>
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<circle cx="15.491" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15.491,3c7.012,0,12.711,5.555,12.975,12.5c0.008-0.168,0.025-0.332,0.025-0.5 c0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.168,0.02,0.332,0.025,0.5C2.782,8.555,8.481,3,15.491,3z" fill="#FFFFFF" opacity="0.4"/>
-<path d="M22.513,19.506l1.516,1.303c1.529-1.756,2.463-4.045,2.463-6.559c0-2.512-0.934-4.801-2.463-6.559 l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254C24.491,16.266,23.741,18.1,22.513,19.506z" opacity="0.2"/>
-<path d="M10.47,19.506c-1.229-1.406-1.979-3.24-1.979-5.256c0-2.014,0.75-3.848,1.979-5.254L8.954,7.691 c-1.529,1.758-2.463,4.047-2.463,6.559c0,2.514,0.934,4.803,2.463,6.559L10.47,19.506z" opacity="0.2"/>
-<path d="M19.474,16.893l1.525,1.311c0.926-1.057,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.525,1.311 c0.627,0.705,1.018,1.623,1.018,2.641S20.101,16.188,19.474,16.893z" opacity="0.2"/>
-<path d="M13.509,16.893c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311 c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953L13.509,16.893z" opacity="0.2"/>
-<polygon opacity="0.2" points="13.38,25.912 16.513,15.025 19.644,25.912 "/>
+<path d="M15.491,3c7.012,0,12.711,5.555,12.975,12.5c0.008-0.168,0.025-0.332,0.025-0.5 c0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.168,0.02,0.332,0.025,0.5C2.782,8.555,8.481,3,15.491,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M22.513,19.506l1.516,1.303c1.529-1.756,2.463-4.045,2.463-6.559c0-2.512-0.934-4.801-2.463-6.559 l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254C24.491,16.266,23.741,18.1,22.513,19.506z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10.47,19.506c-1.229-1.406-1.979-3.24-1.979-5.256c0-2.014,0.75-3.848,1.979-5.254L8.954,7.691 c-1.529,1.758-2.463,4.047-2.463,6.559c0,2.514,0.934,4.803,2.463,6.559L10.47,19.506z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M19.474,16.893l1.525,1.311c0.926-1.057,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.525,1.311 c0.627,0.705,1.018,1.623,1.018,2.641S20.101,16.188,19.474,16.893z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M13.509,16.893c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311 c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953L13.509,16.893z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="13.38,25.912 16.513,15.025 19.644,25.912 " stroke-opacity="0.2"/>
<path d="M21.513,18.506l1.516,1.303c1.529-1.756,2.463-4.045,2.463-6.559c0-2.512-0.934-4.801-2.463-6.559 l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254C23.491,15.266,22.741,17.1,21.513,18.506z" fill="#FFFFFF"/>
<path d="M9.47,18.506c-1.229-1.406-1.979-3.24-1.979-5.256c0-2.014,0.75-3.848,1.979-5.254L7.954,6.691 c-1.529,1.758-2.463,4.047-2.463,6.559c0,2.514,0.934,4.803,2.463,6.559L9.47,18.506z" fill="#FFFFFF"/>
<path d="M18.474,15.893l1.525,1.311c0.926-1.057,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.525,1.311 c0.627,0.705,1.018,1.623,1.018,2.641S19.101,15.188,18.474,15.893z" fill="#FFFFFF"/>
@@ -26,30 +24,22 @@
</g>
<g>
<rect fill="none" height="15" width="15" x="15" y="15"/>
-<path d="M23.82,23.82v-3.53c0-0.729-0.594-1.323-1.324-1.323-0.729,0-1.323,0.594-1.323,1.323v3.53h-2.647v-3.53c0-2.189,1.781-3.971,3.971-3.971s3.971,1.781,3.971,3.971v3.53h-2.646z" opacity="0.6" style="enable-background:new;"/>
+<path d="M23.82,23.82v-3.53c0-0.729-0.594-1.323-1.324-1.323-0.729,0-1.323,0.594-1.323,1.323v3.53h-2.647v-3.53c0-2.189,1.781-3.971,3.971-3.971s3.971,1.781,3.971,3.971v3.53h-2.646z" fill-opacity="0.6" stroke-opacity="0.6" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-68.48" x2="-68.48" y1="99.54" y2="93.17">
-
<stop offset="0" stop-color="#C8C8C8"/>
-
<stop offset="1" stop-color="#646464"/>
-
</linearGradient>
<path d="M20.74,23.38v-3.088c0-0.974,0.792-1.766,1.765-1.766,0.974,0,1.765,0.792,1.765,1.766v3.088h1.766v-3.088c0-1.941-1.589-3.53-3.53-3.53s-3.53,1.589-3.53,3.53v3.088h1.765z" fill="url(#SVGID_1__)"/>
-<rect height="7.06" opacity="0.6" style="enable-background:new;" width="11.47" x="16.76" y="21.62"/>
+<rect fill-opacity="0.6" height="7.06" stroke-opacity="0.6" style="enable-background:new;" width="11.47" x="16.76" y="21.62"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-73.77" x2="-63.19" y1="91.37" y2="91.37">
-
<stop offset="0" stop-color="#FFB533"/>
-
<stop offset="0.24" stop-color="#FFE692"/>
-
<stop offset="0.75" stop-color="#ED8C0D"/>
-
<stop offset="1" stop-color="#FFB81F"/>
-
</linearGradient>
<rect fill="url(#SVGID_2_)" height="6.178" width="10.59" x="17.21" y="22.06"/>
-<rect height="0.882" opacity="0.5" style="enable-background:new;" width="10.59" x="17.21" y="26.03"/>
-<rect height="0.883" opacity="0.5" style="enable-background:new;" width="10.59" x="17.21" y="24.26"/>
+<rect fill-opacity="0.5" height="0.882" stroke-opacity="0.5" style="enable-background:new;" width="10.59" x="17.21" y="26.03"/>
+<rect fill-opacity="0.5" height="0.883" stroke-opacity="0.5" style="enable-background:new;" width="10.59" x="17.21" y="24.26"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_battery.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_battery.svg Thu May 27 13:10:59 2010 +0300
@@ -1,11 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" y="0px">
<rect fill="none" height="16" width="16"/>
-
<path d="M3,3.5v11.5h10v-11.5h-10zm8,9.5h-6v-7.5h6v7.5z"/>
-
<rect height="2" width="5" x="5.5" y="1"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_bluetooth.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_bluetooth.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" y="0px">
<rect fill="none" height="16" width="16"/>
-
<path d="M11.88,5.274l-4.774-4.774v5.454l-2.047-2.046-0.936,0.939s2.117,2.118,2.984,2.982v0.342c-0.867,0.862-2.984,2.982-2.984,2.982l0.937,0.936,2.047-2.042v5.45l4.771-4.773s-2.075-2.076-2.727-2.726c0.649-0.66,2.727-2.73,2.727-2.73zm-1.88,5.456c-0.339,0.338-0.955,0.956-1.538,1.538v-3.078c0.587,0.583,1.226,1.218,1.538,1.538zm-1.53-3.923v-3.069c0.579,0.583,1.195,1.199,1.534,1.538-0.312,0.309-0.951,0.951-1.53,1.531z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_egprs.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_egprs.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" y="0px">
<rect fill="none" height="16" width="16"/>
-
<path d="M12.5,9.081h-7.925v3.323h10.01v2.6h-13.16v-14h13.16v2.597h-10v2.907h7.922v2.577z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_gps.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_gps.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" y="0px">
<rect fill="none" height="16" width="16"/>
-
<path d="M8.777,4.889l0.687,0.687-0.472,0.471c-0.625-0.317-1.36-0.316-1.985,0l-1.249-1.249-0.96,0.959,1.249,1.25c-0.315,0.624-0.316,1.359,0,1.983l-0.471,0.474-0.687-0.687-3.889,3.893,2.334,2.33,3.889-3.889-0.687-0.688,0.472-0.471c0.625,0.316,1.36,0.315,1.984-0.001l1.25,1.25,0.96-0.96-1.25-1.25c0.316-0.623,0.317-1.36,0.001-1.983l0.471-0.473,0.688,0.686,3.89-3.887-2.33-2.333-3.893,3.889z"/>
-
<rect height="0.831" transform="matrix(0.7069 -0.7073 0.7073 0.7069 -1.7029 4.1127)" width="3.299" x="2.461" y="3.696"/>
-
<rect height="0.831" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 28.7026 11.8883)" width="3.298" x="10.24" y="11.47"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_hsdpa.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_hsdpa.svg Thu May 27 13:10:59 2010 +0300
@@ -1,15 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" y="0px">
<rect fill="none" height="16" width="16"/>
-
<path d="M1.363,7.515c0.315,0.176,1.042,0.469,1.768,0.469,0.924,0,1.393-0.445,1.393-1.007,0-0.76-0.749-1.1-1.521-1.1h-0.727v-1.276h0.69c0.597,0,1.346-0.234,1.346-0.878,0-0.457-0.363-0.795-1.124-0.795-0.621,0-1.276,0.269-1.58,0.457l-0.362-1.289c0.457-0.292,1.358-0.574,2.353-0.574,1.615,0,2.517,0.854,2.517,1.896,0,0.808-0.456,1.452-1.393,1.768v0.023c0.913,0.164,1.65,0.854,1.65,1.861,0,1.334-1.182,2.318-3.113,2.318-0.983,0-1.815-0.257-2.26-0.527l0.363-1.346z"/>
-
<path d="M8,9.389c-0.598,0-1.03-0.457-1.03-1.078,0-0.644,0.433-1.088,1.053-1.088,0.61,0,1.031,0.434,1.042,1.088,0,0.621-0.421,1.078-1.052,1.078h-0.013z"/>
-
<path d="M14.7,3.114h-2.951l-0.164,1.159c0.164-0.012,0.305-0.023,0.492-0.023,0.726,0,1.475,0.164,2.002,0.55,0.57,0.386,0.92,1.018,0.92,1.92,0,1.416-1.218,2.669-3.267,2.669-0.923,0-1.695-0.211-2.118-0.433l0.328-1.334c0.328,0.163,1.019,0.374,1.71,0.374,0.736,0,1.521-0.351,1.521-1.158,0-0.797-0.62-1.276-2.141-1.276-0.423,0-0.715,0.023-1.019,0.07l0.49-3.98h4.192v1.462z"/>
-
<path d="M9.971,14.26c-0.309,0.092-0.896,0.223-1.48,0.223-0.808,0-1.393-0.184-1.801-0.528-0.401-0.345-0.624-0.86-0.624-1.438,0.006-1.313,1.078-2.062,2.53-2.062,0.571,0,1.012,0.099,1.23,0.188l-0.211,0.72c-0.244-0.1-0.54-0.169-1.026-0.169-0.834,0-1.472,0.421-1.472,1.274,0,0.82,0.578,1.294,1.4,1.294,0.223,0,0.407-0.023,0.487-0.053v-0.831h-0.685v-0.695h1.651v2.076z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_missed_call.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_missed_call.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" y="0px">
<rect fill="none" height="16" width="16"/>
-
<path d="M12.31,9.615c0,1.484-1.208,2.692-2.692,2.692s-2.695-1.21-2.695-2.695v-2.154h3.77l-4.844-6.461-4.846,6.461h3.231v2.154c0,2.965,2.423,5.385,5.384,5.385,2.965,0,5.385-2.42,5.385-5.385h-2.692z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_new_email.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_new_email.svg Thu May 27 13:10:59 2010 +0300
@@ -1,11 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" y="0px">
<rect fill="none" height="16" width="16"/>
-
<path d="M12.31,9.615c0,1.484-1.208,2.692-2.692,2.692s-2.695-1.21-2.695-2.695v-2.154h3.77l-4.844-6.461-4.846,6.461h3.231v2.154c0,2.965,2.423,5.385,5.384,5.385,2.965,0,5.385-2.42,5.385-5.385h-2.692z" display="none"/>
-
<path d="M15,7.988c0,1.123-0.225,2.095-0.676,2.915-0.547,1.01-1.339,1.519-2.376,1.519-1.005,0-1.731-0.509-2.186-1.519-0.54,0.59-1.244,0.89-2.108,0.89-1.016,0-1.828-0.39-2.442-1.164-0.568-0.72-0.853-1.592-0.853-2.627,0-1.042,0.284-1.912,0.853-2.612,0.606-0.755,1.421-1.13,2.442-1.13,0.76,0,1.358,0.206,1.796,0.62v-0.461h1.476v5.097c0,0.988,0.344,1.482,1.032,1.482,0.561,0,0.994-0.388,1.297-1.162,0.223-0.577,0.335-1.191,0.335-1.85,0-1.522-0.55-2.822-1.644-3.903-1.1-1.085-2.41-1.623-3.94-1.623-1.539,0-2.846,0.536-3.921,1.61-1.076,1.076-1.616,2.379-1.616,3.916,0,1.536,0.539,2.846,1.622,3.925,1.079,1.088,2.385,1.626,3.916,1.626v1.46c-1.93,0-3.58-0.687-4.947-2.057-1.368-1.376-2.053-3.027-2.053-4.954,0-1.918,0.686-3.564,2.058-4.935,1.371-1.365,3.016-2.051,4.941-2.051,1.93,0,3.579,0.682,4.948,2.05,1.36,1.364,2.05,3.01,2.05,4.938zm-5.647-0.056c0-1.49-0.568-2.236-1.707-2.236-0.57,0-1.013,0.254-1.32,0.762-0.269,0.43-0.399,0.941-0.399,1.541,0,1.567,0.572,2.349,1.718,2.349,1.139,0,1.708-0.808,1.708-2.418z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_new_im.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_new_im.svg Thu May 27 13:10:59 2010 +0300
@@ -1,13 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" y="0px">
<rect fill="none" height="16" width="16"/>
-
<path d="M8.001,2.001c-3.86,0-7,2.384-7,5.313,0,1.571,0.909,3.051,2.495,4.066l0.157,2.62,2.277-1.632c0.672,0.158,1.362,0.26,2.071,0.26,3.859,0,7-2.384,7-5.314s-3.14-5.315-6.999-5.315zm0,9.429c-0.557,0-1.145-0.074-1.796-0.228l-0.531-0.125-0.953,0.68-0.063-1.061-0.515-0.33c-1.234-0.789-1.941-1.903-1.941-3.055,0-2.229,2.656-4.113,5.799-4.113s5.8,1.884,5.8,4.113c0,2.23-2.66,4.115-5.799,4.115z"/>
-
<rect height="1.359" width="7.281" x="4.359" y="5.32"/>
-
<rect height="1.359" width="5" x="4.359" y="7.82"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_new_message.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_new_message.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" y="0px">
<rect fill="none" height="16" width="16"/>
-
<path d="M1,3.059v9.883h14v-9.881h-14zm1.235,2.226l2.822,2.47-2.822,2.999v-5.465zm0.118-0.991h11.29l-5.64,4.941-5.647-4.941zm11.41,7.416h-11.52v-0.052l3.286-3.492,2.479,2.162,2.479-2.168,3.286,3.492v0.056zm-2.82-3.955l2.822-2.473v5.472l-2.82-2.995z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_offline.svg Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" y="0px">
+<rect fill="none" height="16" width="16"/>
+<path d="M1,1v2.545c0,0,3.234,3.232,5.084,5.088V15h2.549V8.634c1.857-1.856,5.094-5.088,5.094-5.088V1H1.006H1z M2.2,3.048V2.2 h3.908v4.761C4.797,5.648,2.784,3.632,2.2,3.048z M12.52,3.048L8.605,6.961V2.2h3.916v0.848H12.52z"/>
+<polygon points="15,10.051 13.949,9 12.003,10.953 10.057,9 9,10.051 10.953,12.002 9,13.949 10.057,15 12.003,13.053 13.949,15 15,13.949 13.053,12.002 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_progress.axml Fri May 14 16:09:54 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,9 +0,0 @@
-<animations>
-<icon name="qtg_status_progress" frame_duration="50" playmode="loop">
-<frame>qtg_status_progress_1</frame>
-<frame>qtg_status_progress_2</frame>
-<frame>qtg_status_progress_3</frame>
-<frame>qtg_status_progress_4</frame>
-<frame>qtg_status_progress_5</frame>
-</icon>
-</animations>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_signal.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_signal.svg Thu May 27 13:10:59 2010 +0300
@@ -1,9 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" y="0px">
<rect fill="none" height="16" width="16"/>
-
<path d="M1.637,1v2.545s3.234,3.232,5.084,5.088v6.367h2.549v-6.366c1.858-1.856,5.093-5.088,5.093-5.088v-2.546h-12.72zm1.2,2.048v-0.848h3.908v4.761c-1.311-1.313-3.324-3.329-3.908-3.913zm10.32,0l-3.915,3.913v-4.761h3.917v0.848z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_wcdma.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_wcdma.svg Thu May 27 13:10:59 2010 +0300
@@ -1,11 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" y="0px">
<rect fill="none" height="16" width="16"/>
-
<path d="M1.402,10.28c0.349,0.195,1.153,0.52,1.956,0.52,1.022,0,1.541-0.492,1.541-1.115,0-0.841-0.829-1.217-1.684-1.217h-0.802v-1.412h0.763c0.661,0,1.49-0.26,1.49-0.972,0-0.506-0.401-0.881-1.244-0.881-0.687,0-1.412,0.298-1.748,0.506l-0.401-1.426c0.505-0.323,1.502-0.635,2.603-0.635,1.787,0,2.784,0.945,2.784,2.099,0,0.894-0.505,1.605-1.541,1.955v0.026c1.01,0.182,1.826,0.946,1.826,2.061,0,1.475-1.308,2.563-3.444,2.563-1.088,0-2.008-0.283-2.5-0.582l0.401-1.49z"/>
-
<path d="M15,11.87c-0.598,0.199-1.736,0.48-2.868,0.48-1.564,0-2.696-0.396-3.487-1.14-0.776-0.745-1.207-1.859-1.207-3.109,0.01-2.836,2.086-4.454,4.898-4.454,1.104,0,1.957,0.214,2.383,0.405l-0.408,1.556c-0.473-0.215-1.047-0.365-1.988-0.365-1.614,0-2.851,0.909-2.851,2.754,0,1.772,1.122,2.796,2.712,2.796,0.432,0,0.788-0.052,0.942-0.114v-1.796h-1.31v-1.503h3.2v4.49z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_wlan.svg Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_wlan.svg Thu May 27 13:10:59 2010 +0300
@@ -1,17 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" y="0px">
<rect fill="none" height="16" width="16"/>
-
<path d="M10.29,13.12l-1.668-6.652c0.732-0.26,1.258-0.938,1.258-1.756,0-1.041-0.842-1.883-1.881-1.883-1.04,0-1.883,0.841-1.883,1.883,0,0.817,0.525,1.494,1.254,1.756l-1.661,6.651h-2.42v1.88h9.41v-1.881h-2.413z"/>
-
<path d="M1.621,4.713c0,2.103,1.152,3.656,1.188,3.708,0.189-0.128,0.511-0.35,0.702-0.478-0.038-0.049-1.046-1.478-1.046-3.23,0-1.896,1.008-3.179,1.046-3.233-0.192-0.13-0.511-0.352-0.698-0.48-0.038,0.053-1.192,1.672-1.192,3.713z"/>
-
<path d="M3.867,4.713c0,1.398,0.761,2.39,0.797,2.44,0.19-0.127,0.512-0.35,0.702-0.478-0.041-0.054-0.652-0.973-0.652-1.962,0-1.101,0.611-1.913,0.651-1.964-0.189-0.128-0.513-0.349-0.701-0.482-0.036,0.058-0.797,1.02-0.797,2.446z"/>
-
<path d="M14.38,4.71c0-2.104-1.154-3.657-1.191-3.71-0.19,0.128-0.51,0.35-0.7,0.478,0.033,0.049,1.043,1.48,1.043,3.232,0,1.895-1.01,3.178-1.043,3.231,0.188,0.131,0.51,0.353,0.697,0.481,0.03-0.049,1.19-1.671,1.19-3.712z"/>
-
<path d="M12.13,4.71c0-1.399-0.761-2.391-0.798-2.442-0.187,0.127-0.511,0.35-0.702,0.479,0.041,0.057,0.654,0.977,0.654,1.963,0,1.101-0.613,1.912-0.652,1.963,0.189,0.127,0.51,0.349,0.699,0.481,0.04-0.055,0.8-1.02,0.8-2.444z"/>
-
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbmessageboxcontentwidget/hbmessageboxcontentwidget.css Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbmessageboxcontentwidget/hbmessageboxcontentwidget.css Thu May 27 13:10:59 2010 +0300
@@ -6,6 +6,8 @@
HbMessageBoxContentWidget[hasIcon="false"]{
layout: text_layout;
}
+
+
HbMessageBoxContentWidget::text {
top: -var(hb-param-margin-gene-popup);
bottom: var(hb-param-margin-gene-popup);
@@ -15,9 +17,17 @@
text-height:var(hb-param-text-height-primary);
text-line-count-max: 5;
text-line-count-min: 3;
- text-align: left;
+ text-align: left;
}
+HbMessageBoxContentWidget::text[hasIcon="true"]
+{
+ fixed-width: expr(var(hb-param-screen-short-edge)-4*var(hb-param-margin-gene-screen)-var(hb-param-graphic-size-primary-large))
+}
+HbMessageBoxContentWidget::text[hasIcon="false"]
+{
+ fixed-width: expr(var(hb-param-screen-short-edge)-2*var(hb-param-margin-gene-screen))
+}
HbMessageBoxContentWidget::icon
{
top: -var(hb-param-margin-gene-popup);
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbpushbutton/hbpushbutton.css Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbpushbutton/hbpushbutton.css Thu May 27 13:10:59 2010 +0300
@@ -1,5 +1,6 @@
-HbPushButton{
+ HbPushButton{
layout:icon_button;
+ min-width:expr(var(hb-param-margin-gene-left)+var(hb-param-margin-gene-right)+var(hb-param-graphic-size-function));
}
/*
@@ -7,22 +8,20 @@
*/
HbPushButton[!icon][!text][!additionalText]{
min-height:expr(var(hb-param-margin-gene-top)+var(hb-param-margin-gene-bottom)+var(hb-param-text-height-secondary));
- min-width:expr(var(hb-param-margin-gene-left)+var(hb-param-margin-gene-right)+var(hb-param-graphic-size-function));
}
-
/*
specifying the min-height for icon only layout as icon has pref-height.
specifying the min-width for icon only layout as icon has pref-width.
*/
HbPushButton[icon][!text][!additionalText]{
layout:icon_button;
- min-height:expr(var(hb-param-margin-gene-top)+var(hb-param-margin-gene-bottom)+var(hb-param-text-height-secondary));
- min-width:expr(var(hb-param-margin-gene-left)+var(hb-param-margin-gene-right)+var(hb-param-graphic-size-function));
+ min-height:expr(var(hb-param-margin-gene-top)+var(hb-param-margin-gene-bottom)+var(hb-param-text-height-secondary));/* we are specifying pref -height for icon ,so need to see what could be min height so that it will suits for all usecases*/
}
HbPushButton[text][!icon][!additionalText]{
layout:text_button;
+ min-height:expr(var(hb-param-margin-gene-top)+var(hb-param-margin-gene-bottom)+var(hb-param-text-height-secondary));
}
/*
specifying the min-height for icon + text vertical layout as icon has pref-height.
@@ -30,24 +29,27 @@
HbPushButton[!stretched][icon][text][!additionalText]{
layout:icon_text_Vertical;
- min-height:expr(var(hb-param-margin-gene-top)+var(hb-param-margin-gene-bottom)+var(hb-param-text-height-secondary));
- /*min-width:expr(var(hb-param-margin-gene-left) + var(hb-param-margin-gene-right) + var(hb-param-graphic-size-function));*/
+ min-height:expr(var(hb-param-margin-gene-center-align)+var(hb-param-margin-gene-center-align)+var(hb-param-margin-gene-middle-vertical)+var(hb-param-text-height-tiny)); /* we are using pref height for icon, so not included in calculation*/
}
HbPushButton[stretched][icon][text][!additionalText]{
layout:icon_text_Horizontal;
+ min-height:expr(var(hb-param-margin-gene-top)+var(hb-param-margin-gene-bottom)+ var(hb-param-graphic-size-function));
}
HbPushButton[!stretched][icon][text][additionalText]{
- layout:icon_text_additionalText_vertical;
+ layout:icon_text_additionalText_vertical;
+ min-height:expr(var(hb-param-margin-gene-top)+var(hb-param-margin-gene-bottom)+ var(hb-param-graphic-size-primary-large));
}
HbPushButton[stretched][icon][text][additionalText]{
layout:icon_text_additionalText_horizontal;
+ min-height:expr(var(hb-param-margin-gene-top)+var(hb-param-margin-gene-bottom)+ var(hb-param-graphic-size-function));
}
HbPushButton[!stretched][additionalText][text][!icon]{
- layout:text_additionalText_vertical;
+ layout:text_additionalText_vertical;
+ min-height:expr(var(hb-param-margin-gene-center-align)+var(hb-param-margin-gene-center-align)+var(hb-param-margin-gene-middle-vertical)+var(hb-param-text-height-title)+var(hb-param-text-height-tiny));
}
/*
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbscreen/hbscreen.css Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbscreen/hbscreen.css Thu May 27 13:10:59 2010 +0300
@@ -81,6 +81,20 @@
fixed-height: expr((2/3)*var(hb-param-widget-chrome-height));
}
+HbScreen::titlebar[titleBarMinimizable="true"]::right-to-left{
+ left: 0un;
+ right: -expr((1/3)*var(hb-param-widget-chrome-height));
+ top: 0un;
+ fixed-height: expr((2/3)*var(hb-param-widget-chrome-height));
+}
+
+HbScreen::titlebar[titleBarMinimizable="false"]::right-to-left{
+ left: 0un;
+ right: 0un;
+ top: 0un;
+ fixed-height: expr((2/3)*var(hb-param-widget-chrome-height));
+}
+
HbScreen::navi{
fixed-height: 7.5un;
size-policy-horizontal:preferred;
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbslider/hbslider.css Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbslider/hbslider.css Thu May 27 13:10:59 2010 +0300
@@ -1,14 +1,10 @@
-HbSlider[orientation="Horizontal"][TickLabelPresent]
+
+HbSlider[orientation="Horizontal"]
{
- layout:slider_horizontal_withticklabel;
-}
-
-HbSlider[orientation="Horizontal"][!TickLabelPresent]
-{
- layout:slider_horizontal_withoutticklabel;
+ layout:slider_horizontal;
min-height:expr(2*var(hb-param-widget-slider-thumb-width));
}
-/*HbVolumeSliderPopup > HbSliderPopupContentWidget > HbSlider[orientation="Vertical"]::control:portrait
+HbVolumeSliderPopup > HbSliderPopupContentWidget > HbSlider[orientation="Vertical"]::control:portrait
{
min-height:25un;
min-width:0.0un;
@@ -22,7 +18,7 @@
min-width:0.0un;
size-policy-horizontal:fixed;
size-policy-vertical:minimum-expanding;
-}*/
+}
HbSlider[orientation="Vertical"]::control
{
@@ -30,6 +26,10 @@
min-width:0.0un;
size-policy-horizontal:fixed;
size-policy-vertical:minimum-expanding;
+ top:-var(hb-param-margin-gene-top);
+ bottom:var(hb-param-margin-gene-bottom);
+ left:-var(hb-param-margin-gene-middle-horizontal);
+ right:var(hb-param-margin-gene-middle-horizontal);
}
@@ -41,14 +41,9 @@
size-policy-horizontal:minimum-expanding;
}
-HbSlider[orientation="Vertical"][TickLabelPresent]
+HbSlider[orientation="Vertical"]
{
- layout:slider_vertical_withticklabel;
-}
-
-HbSlider[orientation="Vertical"][!TickLabelPresent]
-{
- layout:slider_vertical_withoutticklabel;
+ layout:slider_vertical;
min-width:expr(2*var(hb-param-widget-slider-thumb-width));
}
@@ -121,15 +116,13 @@
{
right:var(hb-param-margin-gene-right);
}
-HbSlider[orientation="Vertical"]::control
-{
- top:-var(hb-param-margin-gene-top);
- bottom:var(hb-param-margin-gene-bottom);
-}
+
HbSlider[orientation="Horizontal"]::control
{
left:-var(hb-param-margin-gene-left);
right:var(hb-param-margin-gene-right);
+ top:-var(hb-param-margin-gene-middle-horizontal);
+ bottom:var(hb-param-margin-gene-middle-horizontal);
}
HbSlider[orientation="Vertical"]::decrement-icon
{
@@ -182,9 +175,86 @@
HbSlider::spacerLeft{
size-policy-horizontal: expanding;
}
+
+HbSlider::spacerTextRight{
+ size-policy-horizontal: expanding;
+}
+HbSlider::spacerTextLeft{
+ size-policy-horizontal: expanding;
+}
HbSlider::spacerTop{
size-policy-vertical: expanding;
}
HbSlider::spacerBottom{
size-policy-vertical: expanding;
}
+
+
+/*Ticks left vertical*/
+HbSlider::tick-marksleft
+{
+ left:-var(hb-param-margin-gene-middle-horizontal);
+ top:0.0un;
+ bottom:0.0un;
+ fixed-width:1.0un;
+ size-policy-vertical:preferred;
+
+}
+
+HbSlider::tick-textsleft
+{
+ top:0.0un;
+ bottom:0.0un;
+ left:-var(hb-param-margin-gene-popup);
+ fixed-width:7.5un;
+ size-policy-vertical:preferred;
+
+}
+/*Ticks right vertical*/
+HbSlider::tick-marksright
+{
+
+ right:var(hb-param-margin-gene-middle-horizontal);
+ fixed-width:1.0un;
+ size-policy-vertical:preferred;
+
+}
+
+HbSlider::tick-textsright
+{
+ fixed-width:7.5un;
+ size-policy-vertical:preferred;
+ right:var(hb-param-margin-gene-popup);
+}
+/*Ticks above horizontal*/
+HbSlider::tick-marksabove
+{
+ top:-var(hb-param-margin-gene-middle-vertical);
+ bottom:var(hb-param-margin-gene-middle-vertical);
+ fixed-height:1.0un;
+ size-policy-horizontal:preferred;
+
+}
+
+HbSlider::tick-textsabove
+{
+ fixed-height:var(hb-param-text-height-tiny);
+ size-policy-horizontal:preferred;
+
+}
+/*Ticks below horizontal*/
+HbSlider::tick-marksbelow
+{
+ top:-var(hb-param-margin-gene-middle-vertical);
+ bottom:var(hb-param-margin-gene-middle-vertical);
+ fixed-height:1.0un;
+ size-policy-horizontal:preferred;
+
+}
+
+HbSlider::tick-textsbelow
+{
+ fixed-height:var(hb-param-text-height-tiny);
+ size-policy-horizontal:preferred;
+}
+
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbslider/hbslider.widgetml Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbslider/hbslider.widgetml Thu May 27 13:10:59 2010 +0300
@@ -1,126 +1,102 @@
<hbwidget version="0.1" type="HbSlider">
- <layout name="slider_vertical_withticklabel" type="mesh">
+ <layout name="slider_vertical" type="mesh">
+ <meshitem src="tick-textsleft" srcEdge="TOP" dst="control" dstEdge="TOP" />
+ <meshitem src="tick-textsleft" srcEdge="BOTTOM" dst="control" dstEdge="BOTTOM" />
+ <meshitem src="tick-textsleft" srcEdge="LEFT" dst="" dstEdge="LEFT" spacer="spacerLeft" />
+
+ <meshitem src="tick-marksleft" srcEdge="TOP" dst="control" dstEdge="TOP" />
+ <meshitem src="tick-marksleft" srcEdge="BOTTOM" dst="control" dstEdge="BOTTOM" />
+ <meshitem src="tick-marksleft" srcEdge="LEFT" dst="tick-textsleft" dstEdge="RIGHT" />
+
+
+ <meshitem src="tick-textsright" srcEdge="TOP" dst="control" dstEdge="TOP" />
+ <meshitem src="tick-textsright" srcEdge="BOTTOM" dst="control" dstEdge="BOTTOM" />
+ <meshitem src="tick-textsright" srcEdge="RIGHT" dst="" dstEdge="RIGHT" spacer="spacerRight" />
+
+ <meshitem src="tick-marksright" srcEdge="TOP" dst="control" dstEdge="TOP" />
+ <meshitem src="tick-marksright" srcEdge="BOTTOM" dst="control" dstEdge="BOTTOM" />
+ <meshitem src="tick-marksright" srcEdge="RIGHT" dst="tick-textsright" dstEdge="LEFT" />
<meshitem src="control" srcEdge="TOP" dst="increment-icon" dstEdge="BOTTOM" />
<meshitem src="control" srcEdge="BOTTOM" dst="decrement-icon" dstEdge="TOP" />
- <meshitem src="control" srcEdge="LEFT" dst="" dstEdge="LEFT" />
- <meshitem src="control" srcEdge="RIGHT" dst="" dstEdge="RIGHT" />
+ <meshitem src="control" srcEdge="RIGHT" dst="tick-marksright" dstEdge="LEFT" />
+ <meshitem src="control" srcEdge="LEFT" dst="tick-marksleft" dstEdge="RIGHT" />
+
+ <meshitem src="text_item_element" srcEdge="CENTERH" dst="control" dstEdge="CENTERH" />
<meshitem src="text_item_element" srcEdge="TOP" dst="" dstEdge="TOP" />
- <meshitem src="text_item_element" srcEdge="CENTERH" dst="" dstEdge="CENTERH" />
+ <meshitem src="text_item_element" srcEdge="LEFT" dst="" dstEdge="LEFT" spacer="spacerTextLeft" />
+ <meshitem src="text_item_element" srcEdge="RIGHT" dst="" dstEdge="RIGHT" spacer="spacerTextRight" />
+
<meshitem src="text_element" srcEdge="CENTERH" dst="text_item_element" dstEdge="CENTERH" />
<meshitem src="text_element" srcEdge="CENTERV" dst="text_item_element" dstEdge="CENTERV" />
<meshitem src="increment-icon" srcEdge="TOP" dst="text_item_element" dstEdge="BOTTOM" />
- <meshitem src="increment-icon" srcEdge="CENTERH" dst="" dstEdge="CENTERH" />
+ <meshitem src="increment-icon" srcEdge="CENTERH" dst="control" dstEdge="CENTERH" />
<meshitem src="increment-icon-toucharea" srcEdge="CENTERV" dst="increment-icon" dstEdge="CENTERV" />
<meshitem src="increment-icon-toucharea" srcEdge="CENTERH" dst="increment-icon" dstEdge="CENTERH" />
<meshitem src="decrement-icon" srcEdge="BOTTOM" dst="icon-icon" dstEdge="TOP" />
- <meshitem src="decrement-icon" srcEdge="CENTERH" dst="" dstEdge="CENTERH" />
+ <meshitem src="decrement-icon" srcEdge="CENTERH" dst="control" dstEdge="CENTERH" />
<meshitem src="decrement-icon-toucharea" srcEdge="CENTERV" dst="decrement-icon" dstEdge="CENTERV" />
<meshitem src="decrement-icon-toucharea" srcEdge="CENTERH" dst="decrement-icon" dstEdge="CENTERH" />
<meshitem src="icon-icon" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" />
- <meshitem src="icon-icon" srcEdge="CENTERH" dst="" dstEdge="CENTERH" />
+ <meshitem src="icon-icon" srcEdge="CENTERH" dst="control" dstEdge="CENTERH" />
<meshitem src="icon" srcEdge="CENTERV" dst="icon-icon" dstEdge="CENTERV" />
<meshitem src="icon" srcEdge="CENTERH" dst="icon-icon" dstEdge="CENTERH" />
</layout>
+
+ <layout name="slider_horizontal" type="mesh">
+
+ <meshitem src="tick-textsabove" srcEdge="LEFT" dst="control" dstEdge="LEFT" />
+ <meshitem src="tick-textsabove" srcEdge="RIGHT" dst="control" dstEdge="RIGHT" />
+ <meshitem src="tick-textsabove" srcEdge="TOP" dst="" dstEdge="TOP" spacer="spacerTop" />
+
+ <meshitem src="tick-marksabove" srcEdge="LEFT" dst="control" dstEdge="LEFT" />
+ <meshitem src="tick-marksabove" srcEdge="RIGHT" dst="control" dstEdge="RIGHT" />
+ <meshitem src="tick-marksabove" srcEdge="TOP" dst="tick-textsabove" dstEdge="BOTTOM" />
- <layout name="slider_vertical_withoutticklabel" type="mesh">
-
- <meshitem src="text_item_element" srcEdge="CENTERH" dst="" dstEdge="CENTERH" />
- <meshitem src="text_item_element" srcEdge="TOP" dst="" dstEdge="TOP" />
- <meshitem src="text_element" srcEdge="CENTERH" dst="text_item_element" dstEdge="CENTERH" />
- <meshitem src="text_element" srcEdge="CENTERV" dst="text_item_element" dstEdge="CENTERV" />
-
- <meshitem src="increment-icon" srcEdge="TOP" dst="text_item_element" dstEdge="BOTTOM" />
- <meshitem src="increment-icon" srcEdge="CENTERH" dst="" dstEdge="CENTERH" />
- <meshitem src="increment-icon-toucharea" srcEdge="CENTERV" dst="increment-icon" dstEdge="CENTERV" />
- <meshitem src="increment-icon-toucharea" srcEdge="CENTERH" dst="increment-icon" dstEdge="CENTERH" />
+ <meshitem src="tick-textsbelow" srcEdge="LEFT" dst="control" dstEdge="LEFT" />
+ <meshitem src="tick-textsbelow" srcEdge="RIGHT" dst="control" dstEdge="RIGHT" />
+ <meshitem src="tick-textsbelow" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" spacer="spacerBottom" />
- <meshitem src="icon-icon" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" />
- <meshitem src="icon-icon" srcEdge="CENTERH" dst="" dstEdge="CENTERH" />
- <meshitem src="icon" srcEdge="CENTERV" dst="icon-icon" dstEdge="CENTERV" />
- <meshitem src="icon" srcEdge="CENTERH" dst="icon-icon" dstEdge="CENTERH" />
-
- <meshitem src="decrement-icon" srcEdge="BOTTOM" dst="icon-icon" dstEdge="TOP" />
- <meshitem src="decrement-icon" srcEdge="CENTERH" dst="" dstEdge="CENTERH" />
- <meshitem src="decrement-icon-toucharea" srcEdge="CENTERV" dst="decrement-icon" dstEdge="CENTERV" />
- <meshitem src="decrement-icon-toucharea" srcEdge="CENTERH" dst="decrement-icon" dstEdge="CENTERH" />
+ <meshitem src="tick-marksbelow" srcEdge="LEFT" dst="control" dstEdge="LEFT" />
+ <meshitem src="tick-marksbelow" srcEdge="RIGHT" dst="control" dstEdge="RIGHT" />
+ <meshitem src="tick-marksbelow" srcEdge="BOTTOM" dst="tick-textsbelow" dstEdge="TOP" />
- <meshitem src="control" srcEdge="LEFT" dst="" dstEdge="LEFT" spacer="spacerLeft" />
- <meshitem src="control" srcEdge="RIGHT" dst="" dstEdge="RIGHT" spacer="spacerRight" />
-
- <meshitem src="control" srcEdge="TOP" dst="increment-icon" dstEdge="BOTTOM" />
- <meshitem src="control" srcEdge="BOTTOM" dst="decrement-icon" dstEdge="TOP" />
- <meshitem src="control" srcEdge="CENTERH" dst="" dstEdge="CENTERH" />
-
-
-
- </layout>
-
- <layout name="slider_horizontal_withticklabel" type="mesh">
-
+ <meshitem src="control" srcEdge="TOP" dst="tick-marksabove" dstEdge="BOTTOM" />
+ <meshitem src="control" srcEdge="BOTTOM" dst="tick-marksbelow" dstEdge="TOP" />
<meshitem src="control" srcEdge="LEFT" dst="decrement-icon" dstEdge="RIGHT" />
<meshitem src="control" srcEdge="RIGHT" dst="increment-icon" dstEdge="LEFT" />
- <meshitem src="control" srcEdge="TOP" dst="" dstEdge="TOP" />
- <meshitem src="control" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" />
-
+
+
<meshitem src="icon-icon" srcEdge="LEFT" dst="" dstEdge="LEFT" />
- <meshitem src="icon-icon" srcEdge="CENTERV" dst="" dstEdge="CENTERV" />
+ <meshitem src="icon-icon" srcEdge="CENTERV" dst="control" dstEdge="CENTERV" />
<meshitem src="icon" srcEdge="CENTERV" dst="icon-icon" dstEdge="CENTERV" />
<meshitem src="icon" srcEdge="CENTERH" dst="icon-icon" dstEdge="CENTERH" />
<meshitem src="decrement-icon" srcEdge="LEFT" dst="icon-icon" dstEdge="RIGHT" />
- <meshitem src="decrement-icon" srcEdge="CENTERV" dst="" dstEdge="CENTERV" />
+ <meshitem src="decrement-icon" srcEdge="CENTERV" dst="control" dstEdge="CENTERV" />
<meshitem src="decrement-icon-toucharea" srcEdge="CENTERV" dst="decrement-icon" dstEdge="CENTERV" />
<meshitem src="decrement-icon-toucharea" srcEdge="CENTERH" dst="decrement-icon" dstEdge="CENTERH" />
<meshitem src="increment-icon" srcEdge="RIGHT" dst="text_item_element" dstEdge="LEFT" />
- <meshitem src="increment-icon" srcEdge="CENTERV" dst="" dstEdge="CENTERV" />
+ <meshitem src="increment-icon" srcEdge="CENTERV" dst="control" dstEdge="CENTERV" />
<meshitem src="increment-icon-toucharea" srcEdge="CENTERV" dst="increment-icon" dstEdge="CENTERV" />
<meshitem src="increment-icon-toucharea" srcEdge="CENTERH" dst="increment-icon" dstEdge="CENTERH" />
<meshitem src="text_item_element" srcEdge="RIGHT" dst="" dstEdge="RIGHT" />
- <meshitem src="text_item_element" srcEdge="CENTERV" dst="" dstEdge="CENTERV" />
+ <meshitem src="text_item_element" srcEdge="CENTERV" dst="control" dstEdge="CENTERV" />
<meshitem src="text_element" srcEdge="CENTERH" dst="text_item_element" dstEdge="CENTERH" />
<meshitem src="text_element" srcEdge="CENTERV" dst="text_item_element" dstEdge="CENTERV" />
</layout>
- <layout name="slider_horizontal_withoutticklabel" type="mesh">
-
- <meshitem src="icon-icon" srcEdge="LEFT" dst="" dstEdge="LEFT" />
- <meshitem src="icon-icon" srcEdge="CENTERV" dst="" dstEdge="CENTERV" />
- <meshitem src="icon" srcEdge="CENTERV" dst="icon-icon" dstEdge="CENTERV" />
- <meshitem src="icon" srcEdge="CENTERH" dst="icon-icon" dstEdge="CENTERH" />
-
- <meshitem src="increment-icon" srcEdge="RIGHT" dst="text_item_element" dstEdge="LEFT" />
- <meshitem src="increment-icon" srcEdge="CENTERV" dst="" dstEdge="CENTERV" />
- <meshitem src="increment-icon-toucharea" srcEdge="CENTERV" dst="increment-icon" dstEdge="CENTERV" />
- <meshitem src="increment-icon-toucharea" srcEdge="CENTERH" dst="increment-icon" dstEdge="CENTERH" />
-
- <meshitem src="decrement-icon" srcEdge="LEFT" dst="icon-icon" dstEdge="RIGHT" />
- <meshitem src="decrement-icon" srcEdge="CENTERV" dst="" dstEdge="CENTERV" />
- <meshitem src="decrement-icon-toucharea" srcEdge="CENTERV" dst="decrement-icon" dstEdge="CENTERV" />
- <meshitem src="decrement-icon-toucharea" srcEdge="CENTERH" dst="decrement-icon" dstEdge="CENTERH" />
-
- <meshitem src="control" srcEdge="TOP" dst="" dstEdge="TOP" spacer="spacerTop" />
- <meshitem src="control" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" spacer="spacerBottom" />
-
- <meshitem src="control" srcEdge="LEFT" dst="decrement-icon" dstEdge="RIGHT" />
- <meshitem src="control" srcEdge="RIGHT" dst="increment-icon" dstEdge="LEFT" />
- <meshitem src="control" srcEdge="CENTERV" dst="" dstEdge="CENTERV" />
-
- <meshitem src="text_item_element" srcEdge="RIGHT" dst="" dstEdge="RIGHT" />
- <meshitem src="text_item_element" srcEdge="CENTERV" dst="" dstEdge="CENTERV" />
- <meshitem src="text_element" srcEdge="CENTERH" dst="text_item_element" dstEdge="CENTERH" />
- <meshitem src="text_element" srcEdge="CENTERV" dst="text_item_element" dstEdge="CENTERV" />
- </layout>
+
</hbwidget>
\ No newline at end of file
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbslidercontrol/hbslidercontrol.css Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbslidercontrol/hbslidercontrol.css Thu May 27 13:10:59 2010 +0300
@@ -56,71 +56,4 @@
}
-/*Ticks left vertical*/
-HbSliderControl::tick-marksleft
-{
- right:var(hb-param-margin-gene-middle-horizontal);
- left:-var(hb-param-margin-gene-middle-horizontal);
- top:0.0un;
- bottom:0.0un;
- fixed-width:1.0un;
- size-policy-vertical:preferred;
-}
-
-HbSliderControl::tick-textsleft
-{
- top:0.0un;
- bottom:0.0un;
- fixed-width:7.5un;
- size-policy-vertical:preferred;
-
-}
-/*Ticks right vertical*/
-HbSliderControl::tick-marksright
-{
- left:-var(hb-param-margin-gene-middle-horizontal);
- right:var(hb-param-margin-gene-middle-horizontal);
- fixed-width:1.0un;
- size-policy-vertical:preferred;
-
-}
-
-HbSliderControl::tick-textsright
-{
- fixed-width:7.5un;
- size-policy-vertical:preferred;
-
-}
-/*Ticks above horizontal*/
-HbSliderControl::tick-marksabove
-{
- top:-var(hb-param-margin-gene-middle-vertical);
- bottom:var(hb-param-margin-gene-middle-vertical);
- fixed-height:1.0un;
- size-policy-horizontal:preferred;
-
-}
-
-HbSliderControl::tick-textsabove
-{
- fixed-height:var(hb-param-text-height-tiny);
- size-policy-horizontal:preferred;
-
-}
-/*Ticks below horizontal*/
-HbSliderControl::tick-marksbelow
-{
- top:-var(hb-param-margin-gene-middle-vertical);
- bottom:var(hb-param-margin-gene-middle-vertical);
- fixed-height:1.0un;
- size-policy-horizontal:preferred;
-
-}
-
-HbSliderControl::tick-textsbelow
-{
- fixed-height:var(hb-param-text-height-tiny);
- size-policy-horizontal:preferred;
-}
-
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbslidercontrol/hbslidercontrol.widgetml Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbslidercontrol/hbslidercontrol.widgetml Thu May 27 13:10:59 2010 +0300
@@ -1,53 +1,29 @@
<hbwidget version="0.1" type="HbSliderControl">
<layout name="slidercontrol_vertical" type="mesh">
-
- <meshitem src="tick-textsleft" srcEdge="LEFT" dst="" dstEdge="LEFT" />
- <meshitem src="tick-textsleft" srcEdge="TOP" dst="" dstEdge="TOP" />
- <meshitem src="tick-textsleft" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" />
-
- <meshitem src="tick-marksleft" srcEdge="TOP" dst="" dstEdge="TOP" />
- <meshitem src="tick-marksleft" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" />
- <meshitem src="tick-marksleft" srcEdge="LEFT" dst="tick-textsleft" dstEdge="RIGHT" />
-
- <meshitem src="groove" srcEdge="LEFT" dst="tick-marksleft" dstEdge="RIGHT" />
+ <meshitem src="groove" srcEdge="CENTERH" dst="" dstEdge="CENTERH" />
<meshitem src="groove" srcEdge="TOP" dst="" dstEdge="TOP" />
<meshitem src="groove" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" />
- <meshitem src="groove" srcEdge="RIGHT" dst="tick-marksright" dstEdge="LEFT" />
+ <meshitem src="groove" srcEdge="LEFT" dst="" dstEdge="LEFT" />
+ <meshitem src="groove" srcEdge="RIGHT" dst="" dstEdge="RIGHT" />
<meshitem src="groovetoucharea" srcEdge="CENTERH" dst="groove" dstEdge="CENTERH" />
<meshitem src="groovetoucharea" srcEdge="TOP" dst="" dstEdge="TOP" />
<meshitem src="groovetoucharea" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" />
- <meshitem src="progressgroove" srcEdge="LEFT" dst="tick-marksleft" dstEdge="RIGHT" />
- <meshitem src="progressgroove" srcEdge="TOP" dst="groove" dstEdge="TOP" />
- <meshitem src="progressgroove" srcEdge="BOTTOM" dst="groove" dstEdge="BOTTOM" />
- <meshitem src="progressgroove" srcEdge="RIGHT" dst="tick-marksright" dstEdge="LEFT" />
+ <meshitem src="progressgroove" srcEdge="CENTERH" dst="groove" dstEdge="CENTERH" />
+ <meshitem src="progressgroove" srcEdge="TOP" dst="" dstEdge="TOP" />
+ <meshitem src="progressgroove" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" />
- <meshitem src="tick-marksright" srcEdge="TOP" dst="" dstEdge="TOP" />
- <meshitem src="tick-marksright" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" />
- <meshitem src="tick-marksright" srcEdge="RIGHT" dst="tick-textsright" dstEdge="LEFT" />
-
- <meshitem src="tick-textsright" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" />
- <meshitem src="tick-textsright" srcEdge="TOP" dst="" dstEdge="TOP" />
- <meshitem src="tick-textsright" srcEdge="RIGHT" dst="" dstEdge="RIGHT" />
</layout>
<layout name="slidercontrol_horizontal" type="mesh">
-
- <meshitem src="tick-textsabove" srcEdge="TOP" dst="" dstEdge="TOP" />
- <meshitem src="tick-textsabove" srcEdge="LEFT" dst="" dstEdge="LEFT" />
- <meshitem src="tick-textsabove" srcEdge="RIGHT" dst="" dstEdge="RIGHT" />
-
- <meshitem src="tick-marksabove" srcEdge="LEFT" dst="" dstEdge="LEFT" />
- <meshitem src="tick-marksabove" srcEdge="RIGHT" dst="" dstEdge="RIGHT" />
- <meshitem src="tick-marksabove" srcEdge="TOP" dst="tick-textsabove" dstEdge="BOTTOM" />
-
- <meshitem src="groove" srcEdge="TOP" dst="tick-marksabove" dstEdge="BOTTOM" />
+ <meshitem src="groove" srcEdge="TOP" dst="" dstEdge="TOP" />
+ <meshitem src="groove" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" />
+ <meshitem src="groove" srcEdge="CENTERV" dst="" dstEdge="CENTERV" />
<meshitem src="groove" srcEdge="LEFT" dst="" dstEdge="LEFT" />
<meshitem src="groove" srcEdge="RIGHT" dst="" dstEdge="RIGHT" />
- <meshitem src="groove" srcEdge="BOTTOM" dst="tick-marksbelow" dstEdge="TOP" />
<meshitem src="progressgroove" srcEdge="CENTERV" dst="groove" dstEdge="CENTERV" />
<meshitem src="progressgroove" srcEdge="LEFT" dst="groove" dstEdge="LEFT" />
@@ -57,13 +33,6 @@
<meshitem src="groovetoucharea" srcEdge="LEFT" dst="" dstEdge="LEFT" />
<meshitem src="groovetoucharea" srcEdge="RIGHT" dst="" dstEdge="RIGHT" />
- <meshitem src="tick-marksbelow" srcEdge="BOTTOM" dst="tick-textsbelow" dstEdge="TOP" />
- <meshitem src="tick-marksbelow" srcEdge="LEFT" dst="" dstEdge="LEFT" />
- <meshitem src="tick-marksbelow" srcEdge="RIGHT" dst="" dstEdge="RIGHT" />
-
- <meshitem src="tick-textsbelow" srcEdge="LEFT" dst="" dstEdge="LEFT" />
- <meshitem src="tick-textsbelow" srcEdge="RIGHT" dst="" dstEdge="RIGHT" />
- <meshitem src="tick-textsbelow" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" />
</layout>
</hbwidget>
\ No newline at end of file
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbsliderpopupcontentwidget/hbsliderpopupcontentwidget.css Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbsliderpopupcontentwidget/hbsliderpopupcontentwidget.css Thu May 27 13:10:59 2010 +0300
@@ -3,14 +3,6 @@
layout:slider_popup;
}
-/* popup slider*/
-HbSliderPopupContentWidget::slider
-{
- top:-var(hb-param-margin-gene-popup);
- left:-var(hb-param-margin-gene-popup);
- bottom:var(hb-param-margin-gene-popup);
- right:var(hb-param-margin-gene-popup);
-}
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbslidertickmarks/hbslidertickmarks.css Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbslidertickmarks/hbslidertickmarks.css Thu May 27 13:10:59 2010 +0300
@@ -1,4 +1,4 @@
-HbSliderControl[orientation="Horizontal"] > HbSliderTickmarks
+HbSlider[orientation="Horizontal"] > HbSliderTickmarks
{
fixed-width-major: 0.5un;
fixed-height-major: 1un;
@@ -8,7 +8,7 @@
-HbSliderControl[orientation="Vertical"] > HbSliderTickmarks
+HbSlider[orientation="Vertical"] > HbSliderTickmarks
{
fixed-height-major: 0.5un;
fixed-width-major: 1un;
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbstatusbar/hbstatusbar.css Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbstatusbar/hbstatusbar.css Thu May 27 13:10:59 2010 +0300
@@ -1,7 +1,7 @@
HbStatusBar
{
layout:default;
- mirroring: disabled;
+ layout-direction: left-to-right;
}
HbStatusBar::timetext
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbtitlebar/hbtitlebar.css Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbtitlebar/hbtitlebar.css Thu May 27 13:10:59 2010 +0300
@@ -1,7 +1,7 @@
HbTitleBar
{
layout:default;
- mirroring: disabled;
+ layout-direction: left-to-right;
}
HbTitleBar::status{
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbtumbleview/hbtumbleview.css Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbtumbleview/hbtumbleview.css Thu May 27 13:10:59 2010 +0300
@@ -6,12 +6,12 @@
HbTumbleView[scrollDirections="Horizontal"]
{
layout:tumble-layout;
- min-width: 1un;
+ min-width: 1un;/*Need this for uniform tumbler widths, when grouped together*/
}
HbTumbleView[scrollDirections="Vertical"]
{
layout:tumble-layout;
- min-width: 1un;
+ min-width: 1un;/*Need this for uniform tumbler widths, when grouped together*/
}
HbTumbleView::highlight {
--- a/src/hbcore/resources/themes/style/hbdefault/variables/color/hbcolorgroup.css Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/variables/color/hbcolorgroup.css Thu May 27 13:10:59 2010 +0300
@@ -1,8 +1,63 @@
+/* Application specific color groups */
+
+
+@variables
+{
+/* Application specific - Conversational list */
+qtc_conv_list_received_normal:#505050; /* Modified 05.02.2010 */
+qtc_conv_list_received_pressed:#FFFFFF; /* Modified 05.02.2010 */
+qtc_conv_list_received_highlight:#FFFFFF; /* Modified 05.02.2010 */
+qtc_conv_list_sent_normal:#505050; /* Modified 05.02.2010 */
+qtc_conv_list_sent_pressed:#FFFFFF; /* Modified 05.02.2010 */
+qtc_conv_list_sent_highlight:#FFFFFF; /* Modified 05.02.2010 */
+qtc_conv_list_dimmed:#787878; /* Added 26.03.2010 */
+
+/* Application specific - Calendar */
+qtc_cal_grid_line:#DCDCDC; /* Added 05.02.2010 */
+qtc_cal_month_highlighted_text:#FFFFFF; /* Added 05.02.2010 */
+qtc_cal_month_active_dates:#505050; /* Added 05.02.2010 */
+qtc_cal_month_notactive_dates:#A0A0A0; /* Added 05.02.2010 */
+qtc_cal_month_current_day:#66CCAD; /* Added 05.02.2010 */
+qtc_cal_week_day:#505050; /* Added 05.02.2010 */
+qtc_cal_day_preview_heading:#FFFFFF; /* Added 05.02.2010 */
+qtc_cal_day_preview_text:#FFFFFF; /* Added 05.02.2010 */
+qtc_cal_day_hour_lines:#505050; /* Added 05.02.2010 */
+qtc_cal_monthgrid_title:#FFFFFF; /* Added 05.02.2010 */
+
+/* Application specific - Call handling */
+qtc_callhandling_answer_normal:#FFFFFF; /* Added 05.02.2010 */
+qtc_callhandling_answer_pressed:#FFFFFF; /* Added 05.02.2010 */
+qtc_callhandling_answer_highlight:#FFFFFF; /* Added 05.02.2010 */
+qtc_callhandling_reject_normal:#FFFFFF; /* Added 05.02.2010 */
+qtc_callhandling_reject_pressed:#FFFFFF; /* Added 05.02.2010 */
+qtc_callhandling_reject_highlight:#FFFFFF; /* Added 05.02.2010 */
+
+/* Application specific - Home screen */
+qtc_hs_list_item_title_normal:#505050; /* Added 05.02.2010 */
+qtc_hs_list_item_content_normal:#519FB9; /* Added 05.02.2010 */
+qtc_hs_list_item_pressed:#FFFFFF; /* Added 05.02.2010 */
+qtc_hs_list_item_highlight:#FFFFFF; /* Added 05.02.2010 */
+qtc_hs_badge:#FFFFFF; /* Added 01.03.2010 */
+qtc_hs_cal:#3C3C3C; /* Added 18.03.2010 */
+
+/* Application specific - Radio & Calculator */
+qtc_lcd_title_normal:#505050; /* Added 11.02.2010 */
+qtc_lcd_content_normal:#519FB9; /* Added 11.02.2010 */
+qtc_lcd_link_normal:#33C8FF; /* Added 22.02.2010 */
+qtc_radio_tuner_normal:#505050; /* Added 05.02.2010 */
+qtc_radio_tuner_line:#3C3C3C; /* Added 05.02.2010 */
+
+/* Application specific - Multimedia */
+qtc_multimedia_trans:#FFFFFF; /* Modified 19.02.2010 */
+qtc_multimedia_trans_pressed:#FFFFFF; /* Added 19.02.2010 */
+qtc_multimedia_trans_disabled:#787878; /* Added 09.03.2010 */
+}
+
/* Widget color groups */
- @variables
+
+@variables
{
-
/* Default palette */
qtc_default_decor_normal:#3C3C3C;
qtc_default_decor_pressed:#FFFFFF;
@@ -172,55 +227,5 @@
qtc_input_preview_normal:#3C3C3C; /* Modified 22.02.2010 */
qtc_input_hint_normal:#A0A0A0; /* Added 05.03.2010 */
qtc_input_grid_line:#787878; /* Added 12.03.2010 */
-
-
-/* Application specific - Conversational list */
-qtc_conv_list_received_normal:#505050; /* Modified 05.02.2010 */
-qtc_conv_list_received_pressed:#FFFFFF; /* Modified 05.02.2010 */
-qtc_conv_list_received_highlight:#FFFFFF; /* Modified 05.02.2010 */
-qtc_conv_list_sent_normal:#505050; /* Modified 05.02.2010 */
-qtc_conv_list_sent_pressed:#FFFFFF; /* Modified 05.02.2010 */
-qtc_conv_list_sent_highlight:#FFFFFF; /* Modified 05.02.2010 */
-qtc_conv_list_dimmed:#787878; /* Added 26.03.2010 */
-
-/* Application specific - Calendar */
-qtc_cal_grid_line:#DCDCDC; /* Added 05.02.2010 */
-qtc_cal_month_highlighted_text:#FFFFFF; /* Added 05.02.2010 */
-qtc_cal_month_active_dates:#505050; /* Added 05.02.2010 */
-qtc_cal_month_notactive_dates:#A0A0A0; /* Added 05.02.2010 */
-qtc_cal_month_current_day:#66CCAD; /* Added 05.02.2010 */
-qtc_cal_week_day:#505050; /* Added 05.02.2010 */
-qtc_cal_day_preview_heading:#FFFFFF; /* Added 05.02.2010 */
-qtc_cal_day_preview_text:#FFFFFF; /* Added 05.02.2010 */
-qtc_cal_day_hour_lines:#505050; /* Added 05.02.2010 */
-qtc_cal_monthgrid_title:#FFFFFF; /* Added 05.02.2010 */
+}
-/* Application specific - Call handling */
-qtc_callhandling_answer_normal:#FFFFFF; /* Added 05.02.2010 */
-qtc_callhandling_answer_pressed:#FFFFFF; /* Added 05.02.2010 */
-qtc_callhandling_answer_highlight:#FFFFFF; /* Added 05.02.2010 */
-qtc_callhandling_reject_normal:#FFFFFF; /* Added 05.02.2010 */
-qtc_callhandling_reject_pressed:#FFFFFF; /* Added 05.02.2010 */
-qtc_callhandling_reject_highlight:#FFFFFF; /* Added 05.02.2010 */
-
-/* Application specific - Home screen */
-qtc_hs_list_item_title_normal:#505050; /* Added 05.02.2010 */
-qtc_hs_list_item_content_normal:#519FB9; /* Added 05.02.2010 */
-qtc_hs_list_item_pressed:#FFFFFF; /* Added 05.02.2010 */
-qtc_hs_list_item_highlight:#FFFFFF; /* Added 05.02.2010 */
-qtc_hs_badge:#FFFFFF; /* Added 01.03.2010 */
-qtc_hs_cal:#3C3C3C; /* Added 18.03.2010 */
-
-/* Application specific - Radio & Calculator */
-qtc_lcd_title_normal:#505050; /* Added 11.02.2010 */
-qtc_lcd_content_normal:#519FB9; /* Added 11.02.2010 */
-qtc_lcd_link_normal:#33C8FF; /* Added 22.02.2010 */
-qtc_radio_tuner_normal:#505050; /* Added 05.02.2010 */
-qtc_radio_tuner_line:#3C3C3C; /* Added 05.02.2010 */
-
-/* Application specific - Multimedia */
-qtc_multimedia_trans:#FFFFFF; /* Modified 19.02.2010 */
-qtc_multimedia_trans_pressed:#FFFFFF; /* Added 19.02.2010 */
-qtc_multimedia_trans_disabled:#787878; /* Added 09.03.2010 */
-
-}
--- a/src/hbcore/style/hbstyle.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyle.cpp Thu May 27 13:10:59 2010 +0300
@@ -3322,7 +3322,7 @@
}
}
frameItem->frameDrawer().setFillWholeRect(true);
- frameItem->update();
+ //frameItem->update();
}
break;
case P_ProgressSlider_track: // The ProgressValue Mask
@@ -3351,7 +3351,7 @@
frameItem->setValue(opt->progressSliderValue);
frameItem->setInverted(opt->inverted);
frameItem->setOrientation(opt->orientation);
- frameItem->update();
+ //frameItem->update();
}
break;
case P_ProgressBar_mintext: {
@@ -4291,9 +4291,11 @@
HbWidgetBasePrivate::d_ptr(text)->setApiProtectionFlag(HbWidgetBasePrivate::AC_TextColor, false);
}
}
- if(iconItem){
- //applying color to mono-colorised icons from theme
- iconItem->setColor( col );
+ if (iconItem) {
+ // Applying color to mono-colorised icons from theme. Using setColor()
+ // here would be wrong. It would lead to loosing the user-supplied color
+ // in some cases so use the special setThemedColor() instead.
+ HbIconItemPrivate::d_ptr(iconItem)->setThemedColor( col );
}
if(marqueeItem){
//applying color to the marquee-item from theme
@@ -4425,13 +4427,13 @@
Available parameters can be found from hbglobalparameters.css. By using these
parameters applications get consistent look.
- \param variable Name of the global parameter.
+ \param param Name of the global parameter.
\param value Returns value of the global parameter.
\param profile Device profile of the used HbMainWindow. Primary display's.
device profile HbDeviceProfile::current() is used if the value is omitted.
- \return true if the variable were found.
+ \return true if the variable was found.
*/
-bool HbStyle::parameter(const QString& parameter, qreal& value, const HbDeviceProfile &profile) const
+bool HbStyle::parameter(const QString& param, qreal& value, const HbDeviceProfile &profile) const
{
HbDeviceProfile effectiveProfile = profile;
if ( effectiveProfile.isNull() ) {
@@ -4442,23 +4444,23 @@
HbCss::ValueExtractor valueExtractor(d->layoutParameters, true, effectiveProfile);
// todo: parsing variable/expression is done here so that there is no need to change API
// also parameters method not changed (this change is done for docml/widgetml parsing)
- if (parameter.startsWith("var(") && parameter.endsWith(")")) {
- return valueExtractor.extractValue(parameter.mid(4,parameter.length()-5), value);
- } else if (parameter.startsWith("-var(") && parameter.endsWith(")")) {
- bool retVal = valueExtractor.extractValue(parameter.mid(5,parameter.length()-6), value);
+ if (param.startsWith("var(") && param.endsWith(")")) {
+ return valueExtractor.extractValue(param.mid(4,param.length()-5), value);
+ } else if (param.startsWith("-var(") && param.endsWith(")")) {
+ bool retVal = valueExtractor.extractValue(param.mid(5,param.length()-6), value);
value = -value;
return retVal;
- } else if (parameter.startsWith("expr(") && parameter.endsWith(")")) {
- QString expressionString = parameter.mid(5,parameter.length()-6);
+ } else if (param.startsWith("expr(") && param.endsWith(")")) {
+ QString expressionString = param.mid(5,param.length()-6);
return valueExtractor.extractExpressionValue(expressionString, value);
- } else if (parameter.startsWith("-expr(") && parameter.endsWith(")")) {
- QString expressionString = parameter.mid(6,parameter.length()-7);
+ } else if (param.startsWith("-expr(") && param.endsWith(")")) {
+ QString expressionString = param.mid(6,param.length()-7);
bool retVal = valueExtractor.extractExpressionValue(expressionString, value);
value = -value;
return retVal;
}
- return valueExtractor.extractValue(parameter, value);
+ return valueExtractor.extractValue(param, value);
}
/*!
@@ -4469,12 +4471,12 @@
parameters applications get consistent look. Usage of this API (instead of parameter)
is recommended if an application needs to fetch several parameters in one place.
- \param parameters Contains names and values of all global style parameters.
+ \param params Contains names and values of all global style parameters.
\param profile Device profile of the used HbMainWindow. Primary display's
device profile HbDeviceProfile::current() is used if the value is omitted.
*/
-void HbStyle::parameters(HbStyleParameters ¶meters, const HbDeviceProfile &profile) const
+void HbStyle::parameters(HbStyleParameters ¶ms, const HbDeviceProfile &profile) const
{
HbDeviceProfile effectiveProfile = profile;
if ( effectiveProfile.isNull() ) {
@@ -4488,12 +4490,62 @@
QHash<QString, HbCss::Declaration>::const_iterator i = d->layoutParameters.constBegin();
while (i != d->layoutParameters.constEnd()) {
if (valueExtractor.extractValue(i.key(), value)) {
- parameters.addParameter(i.key(), value);
+ params.addParameter(i.key(), value);
}
++i;
}
}
+/*!
+ Returns values for widget specific style parameters. The names of the parameters
+ are passed in with \a params.
+
+ This method should be used only if you need to access widget specific parameters out
+ of the polish loop. It is more efficient to use HbWidget::polish(HbStyleParameters ¶ms)
+ if you don't need to access the parameters before the (first) polish event.
+
+ \param parameters, style parameters to be returned to the caller
+ \param widget, HbWidget to be polished
+ \sa HbStyle::polish, HbStyle::parameters and HbWidget::polish
+*/
+void HbStyle::widgetParameters(HbStyleParameters ¶ms, HbWidget* widget) const
+{
+ Q_D( const HbStyle );
+ if( !widget || !params.count() ) {
+ return;
+ }
+#ifdef HBSTYLE_DEBUG
+ qDebug() << "HbStyle::widgetParameters : Parameters for" << widget->metaObject()->className();
+#endif
+
+ HbLayeredStyleLoader *styleLoader = HbLayeredStyleLoader::getStack(HbLayeredStyleLoader::Concern_Layouts);
+ if(!styleLoader){
+#ifdef HBSTYLE_DEBUG
+ qDebug() << "HbStyle::widgetParameters : HbLayeredStyleLoader returned a null pointer.";
+#endif
+ return;
+ }
+ HbDeviceProfile profile(HbDeviceProfile::profile(widget));
+ NODEPTR_N(widget);
+
+ HbVector<HbCss::StyleRule> styleRules = styleLoader->styleRulesForNode(n, profile.orientation());
+
+#ifdef HBSTYLE_DEBUG
+ qDebug() << "HbStyle::widgetParameters : Number of style rules:" << styleRules.count();
+#endif
+ if (!styleRules.count()) {
+ return;
+ }
+ const HbVector<HbCss::Declaration> decl = declarations(styleRules, "", widget, profile);
+#ifdef HBSTYLE_DEBUG
+ qDebug() << "HbStyle::widgetParameters : Number of maching CSS declarations: " << decl.count();
+#endif
+ d->ensureLayoutParameters(profile);
+
+ HbCss::ValueExtractor extractor(decl, d->layoutParameters, profile);
+ extractor.extractParameters( params.params(), params.values() );
+}
+
/*!
\internal
@@ -4537,33 +4589,41 @@
*/
QString HbStylePrivate::logicalName(HbStyle::Primitive primitive, const QStyleOption *option) const
{
- switch(primitive){
- case HbStyle::P_Slider_thumb:{
+ switch (primitive) {
+
+ case HbStyle::P_Slider_thumb: {
const HbStyleOptionSlider *opt = qstyleoption_cast<const HbStyleOptionSlider *>(option);
- QString iconPath;
-
- switch (opt->orientation){
- case Qt::Horizontal:{
- if( opt->state&QStyle::State_Sunken)
- iconPath= "qtg_graf_slider_h_handle_pressed";
- else
- iconPath= "qtg_graf_slider_h_handle_normal";
- return (iconPath);
- }
- case Qt::Vertical:{
- if( opt->state&QStyle::State_Sunken)
- iconPath= "qtg_graf_slider_v_handle_pressed";
- else
- iconPath= "qtg_graf_slider_v_handle_normal";
- return (iconPath);
- }
- default: break;
+ if (opt) {
+ QString iconPath;
+ switch (opt->orientation) {
+
+ case Qt::Horizontal:
+ if (opt->state & QStyle::State_Sunken)
+ iconPath = "qtg_graf_slider_h_handle_pressed";
+ else
+ iconPath = "qtg_graf_slider_h_handle_normal";
+ return iconPath;
+
+ case Qt::Vertical:
+ if (opt->state & QStyle::State_Sunken)
+ iconPath = "qtg_graf_slider_v_handle_pressed";
+ else
+ iconPath = "qtg_graf_slider_v_handle_normal";
+ return iconPath;
+
+ default:
+ break;
+
+ }
}
}
- default: break;
+
+ default:
+ break;
+
}
-return QString();
+ return QString();
}
/*!
--- a/src/hbcore/style/hbstyle.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyle.h Thu May 27 13:10:59 2010 +0300
@@ -229,8 +229,10 @@
static void setItemName( QGraphicsItem *item, const QString &name );
static QString itemName( const QGraphicsItem *item );
- bool parameter(const QString ¶meter, qreal &value, const HbDeviceProfile &profile = HbDeviceProfile()) const;
- void parameters(HbStyleParameters ¶meters, const HbDeviceProfile &profile = HbDeviceProfile()) const;
+ bool parameter(const QString ¶m, qreal &value, const HbDeviceProfile &profile = HbDeviceProfile()) const;
+ void parameters(HbStyleParameters ¶ms, const HbDeviceProfile &profile = HbDeviceProfile()) const;
+
+ void widgetParameters(HbStyleParameters ¶ms, HbWidget* widget) const;
protected:
friend class HbWidget;
--- a/src/hbcore/style/hbstyleoption.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoption.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,11 +25,7 @@
#include <hbstyleoption_p.h>
-/*!
-
- \deprecated HbStyleOption::HbStyleOption(int, int)
- is deprecated. Styleoptions will not be public.
-
+/*
\class HbStyleOption
\brief HbStyleOption is the base class for all Hbwidgets Style Options
*/
--- a/src/hbcore/style/hbstyleoption_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoption_p.h Thu May 27 13:10:59 2010 +0300
@@ -29,7 +29,7 @@
#include <hbglobal.h>
#include <QStyleOptionGraphicsItem>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOption : public QStyleOptionGraphicsItem
{
public:
@@ -89,7 +89,7 @@
enum StyleOptionType { Type = HbSO_Widget };
enum StyleOptionVersion { Version = 1 };
- QFont font; // DEPRECATED
+ QFont font;
QRectF boundingRect;
};
--- a/src/hbcore/style/hbstyleoptionabstractviewitem.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionabstractviewitem.cpp Thu May 27 13:10:59 2010 +0300
@@ -29,18 +29,18 @@
#include <QDebug>
-/*!
+/*
\class HbStyleOptionAbstractViewItem
\brief HbStyleOptionAbstractViewItem has the style component for abstract view item primitives
*/
-/*!
+/*
\var HbStyleOptionAbstractViewItem::checkState
This variable holds what is the checkstate of the item.
*/
-/*!
+/*
\var HbStyleOptionAbstractViewItem::background
This variable holds content (if any) that is set as item's background.
@@ -48,10 +48,8 @@
Default value is NULL variant.
*/
-/*!
+/*
\var HbStyleOptionAbstractViewItem::itemName
- \deprecated HbStyleOptionAbstractViewItem::itemName
- is deprecated. This variable will cease to exist in near future. HbStyleOptionListViewItem::itemNameIndex replaces this variable.
This variable holds content item name of the primitive item required by css/xml layouting.
@@ -59,7 +57,7 @@
*/
-/*!
+/*
\var HbStyleOptionAbstractViewItem::modelItemType
This variable holds what is the type of the model item that view item is representing.
@@ -67,7 +65,7 @@
Default value is Hb::StandardItem.
*/
-/*!
+/*
\var HbStyleOptionAbstractViewItem::viewItemType
This variable holds what is the type of the view item. This is value returned by QGraphicsItem::type().
@@ -75,13 +73,13 @@
Default is Hb::ItemType_Last+1
*/
-/*!
+/*
\var HbStyleOptionAbstractViewItem::index
The model index that the view item represents.
*/
-/*!
+/*
\var HbStyleOptionAbstractViewItem::singleSelectionMode
This variable holds information whether HbAbstractItemView::SelectionMode mode is used. If it is used, set this variable On.
@@ -90,17 +88,11 @@
mode is in use.
*/
-/*! \var HbStyleOptionAbstractViewItem::insidePopup
+/* \var HbStyleOptionAbstractViewItem::insidePopup
Indicates whether widget and its children (classes derived from HbWidgetBase) are inside popup.
*/
-/*!
- \deprecated HbStyleOptionAbstractViewItem::HbStyleOptionAbstractViewItem()
- is deprecated. Styleoptions will not be public.
-
-*/
-
HbStyleOptionAbstractViewItem::HbStyleOptionAbstractViewItem() :
HbStyleOption(),
modelItemType(Hb::StandardItem),
@@ -111,13 +103,6 @@
type = Type;
version = Version;
}
-
-/*!
- \deprecated HbStyleOptionAbstractViewItem::HbStyleOptionAbstractViewItem(const HbStyleOptionAbstractViewItem&)
- is deprecated. Styleoptions will not be public.
-
-*/
-
HbStyleOptionAbstractViewItem::HbStyleOptionAbstractViewItem(const HbStyleOptionAbstractViewItem &other) :
HbStyleOption(other),
checkState(other.checkState),
--- a/src/hbcore/style/hbstyleoptionabstractviewitem_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionabstractviewitem_p.h Thu May 27 13:10:59 2010 +0300
@@ -31,7 +31,7 @@
#include <QModelIndex>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionAbstractViewItem : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptionbatteryindicator.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionbatteryindicator.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,11 +25,8 @@
#include "hbstyleoptionbatteryindicator_p.h"
-/*!
-
- \deprecated HbStyleOptionBatteryIndicator::HbStyleOptionBatteryIndicator()
- is deprecated. Styleoptions will not be public.
-
+/*
+
\class HbStyleOptionBatteryIndicator
\brief HbStyleOptionBatteryIndicator has the style component for battery indicator
*/
@@ -43,12 +40,6 @@
version = Version;
}
-/*!
-
- \deprecated HbStyleOptionBatteryIndicator::HbStyleOptionBatteryIndicator(const HbStyleOptionBatteryIndicator&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionBatteryIndicator::HbStyleOptionBatteryIndicator(const HbStyleOptionBatteryIndicator &other) :
HbStyleOption(other),
batteryLevel(other.batteryLevel),
--- a/src/hbcore/style/hbstyleoptioncheckbox.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptioncheckbox.cpp Thu May 27 13:10:59 2010 +0300
@@ -26,27 +26,16 @@
#include <hbstyleoptioncheckbox_p.h>
-/*!
+/*
\class HbStyleOptionCheckBox
\brief HbStyleOptionCheckBox has the style component for checkbox primitives
*/
-
-
-/*!
- \deprecated HbStyleOptionCheckBox::HbStyleOptionCheckBox()
- is deprecated. Styleoptions will not be public.
-*/
-
HbStyleOptionCheckBox::HbStyleOptionCheckBox()
{
type = Type;
version = Version;
}
-/*!
- \deprecated HbStyleOptionCheckBox::HbStyleOptionCheckBox(const HbStyleOptionCheckBox&)
- is deprecated. Styleoptions will not be public.
-*/
HbStyleOptionCheckBox::HbStyleOptionCheckBox(const HbStyleOptionCheckBox &other)
: HbStyleOption(other),
text(other.text)
--- a/src/hbcore/style/hbstyleoptioncheckbox_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptioncheckbox_p.h Thu May 27 13:10:59 2010 +0300
@@ -28,7 +28,7 @@
#include <hbstyleoption_p.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionCheckBox : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptioncolorgridviewitem.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptioncolorgridviewitem.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,16 +25,11 @@
#include <hbstyleoptioncolorgridviewitem_p.h>
-/*!
+/*
\class HbStyleOptionColorGridViewItem
\brief HbStyleOptionColorGridViewItem has the style component for color grid view item primitives
*/
-/*!
-
- \deprecated HbStyleOptionColorGridViewItem::HbStyleOptionColorGridViewItem()
- is deprecated. Styleoptions will not be public.
-*/
HbStyleOptionColorGridViewItem::HbStyleOptionColorGridViewItem() :
HbStyleOptionGridViewItem(),
color(Qt::black),
@@ -44,11 +39,7 @@
type = Type;
version = Version;
}
-/*!
- \deprecated HbStyleOptionColorGridViewItem::HbStyleOptionColorGridViewItem(const HbStyleOptionColorGridViewItem&)
- is deprecated. Styleoptions will not be public.
-*/
HbStyleOptionColorGridViewItem::HbStyleOptionColorGridViewItem(const HbStyleOptionColorGridViewItem &other) :
HbStyleOptionGridViewItem(other),
color(other.color),
--- a/src/hbcore/style/hbstyleoptioncolorgridviewitem_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptioncolorgridviewitem_p.h Thu May 27 13:10:59 2010 +0300
@@ -28,7 +28,7 @@
#include <hbstyleoptiongridviewitem_p.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionColorGridViewItem : public HbStyleOptionGridViewItem
{
public:
--- a/src/hbcore/style/hbstyleoptioncombobox.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptioncombobox.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,32 +25,23 @@
#include <hbstyleoptioncombobox_p.h>
-/*!
+/*
\class HbStyleOptionComboBox
\brief HbStyleOptionComboBox has the style component for label primitives
*/
-/*!
+/*
\var HbStyleOptionLabel::text
Text shown in the comboBox, if not NULL.
*/
-/*!
-
- \deprecated HbStyleOptionComboBox::HbStyleOptionComboBox()
- is deprecated. Styleoptions will not be public.
-*/
HbStyleOptionComboBox::HbStyleOptionComboBox() : HbStyleOption(HbSO_Combo)
{
type = Type;
version = Version;
}
-/*!
- \deprecated HbStyleOptionComboBox::HbStyleOptionComboBox(const HbStyleOptionComboBox&)
- is deprecated. Styleoptions will not be public.
-*/
HbStyleOptionComboBox::HbStyleOptionComboBox(const HbStyleOptionComboBox &other) :
HbStyleOption(other),
text(other.text)
--- a/src/hbcore/style/hbstyleoptioncombobox_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptioncombobox_p.h Thu May 27 13:10:59 2010 +0300
@@ -29,7 +29,7 @@
#include <hbstyleoption_p.h>
#include <hbnamespace.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionComboBox : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptiondataform.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiondataform.cpp Thu May 27 13:10:59 2010 +0300
@@ -26,20 +26,12 @@
#include <hbstyleoptiondataform_p.h>
-/*!
- \deprecated HbStyleOptionDataForm::HbStyleOptionDataForm()
- is deprecated. Styleoptions will not be public.
-*/
HbStyleOptionDataForm::HbStyleOptionDataForm() : HbStyleOption(HbSO_DataForm)
{
type = Type;
version = Version;
}
-/*!
- \deprecated HbStyleOptionDataForm::HbStyleOptionDataForm(const HbStyleOptionDataForm&)
- is deprecated. Styleoptions will not be public.
-*/
HbStyleOptionDataForm::HbStyleOptionDataForm(const HbStyleOptionDataForm &other) :
HbStyleOption(other),
heading(other.heading),
--- a/src/hbcore/style/hbstyleoptiondataform_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiondataform_p.h Thu May 27 13:10:59 2010 +0300
@@ -29,7 +29,7 @@
#include <hbstyleoption_p.h>
#include <hbicon.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionDataForm : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptiondataformviewitem.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiondataformviewitem.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,17 +25,11 @@
#include <hbstyleoptiondataformviewitem_p.h>
-/*!
+/*
\class HbStyleOptionDataFormViewItem
\brief HbStyleOptionDataFormViewItem has the style component for data item primitives
*/
-/*!
-
- \deprecated HbStyleOptionDataFormViewItem::HbStyleOptionDataFormViewItem()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionDataFormViewItem::HbStyleOptionDataFormViewItem() :
HbStyleOption()
@@ -44,12 +38,6 @@
version = Version;
}
-/*!
-
- \deprecated HbStyleOptionDataFormViewItem::HbStyleOptionDataFormViewItem(const HbStyleOptionDataFormViewItem&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionDataFormViewItem::HbStyleOptionDataFormViewItem(const HbStyleOptionDataFormViewItem &other) :
HbStyleOption(other)
{
--- a/src/hbcore/style/hbstyleoptiondataformviewitem_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiondataformviewitem_p.h Thu May 27 13:10:59 2010 +0300
@@ -28,7 +28,7 @@
#include <hbstyleoption_p.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionDataFormViewItem : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptiondatagroup.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiondatagroup.cpp Thu May 27 13:10:59 2010 +0300
@@ -26,25 +26,12 @@
#include <hbstyleoptiondatagroup_p.h>
-/*!
-
- \deprecated HbStyleOptionDataGroup::HbStyleOptionDataGroup()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionDataGroup::HbStyleOptionDataGroup() : HbStyleOption(HbSO_DataGroup)
{
type = Type;
version = Version;
}
-/*!
-
- \deprecated HbStyleOptionDataGroup::HbStyleOptionDataGroup(const HbStyleOptionDataGroup&)
- is deprecated. Styleoptions will not be public.
-
-*/
-
HbStyleOptionDataGroup::HbStyleOptionDataGroup(const HbStyleOptionDataGroup &other) :
HbStyleOption(other),
description(other.description)
--- a/src/hbcore/style/hbstyleoptiondatagroup_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiondatagroup_p.h Thu May 27 13:10:59 2010 +0300
@@ -29,7 +29,7 @@
#include <hbstyleoption_p.h>
#include <hbicon.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionDataGroup : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptiondatagroupheadingwidget.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiondatagroupheadingwidget.cpp Thu May 27 13:10:59 2010 +0300
@@ -27,12 +27,7 @@
-/*!
- \deprecated HbStyleOptionDataGroupHeadingWidget::HbStyleOptionDataGroupHeadingWidget()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionDataGroupHeadingWidget::HbStyleOptionDataGroupHeadingWidget() :
expanded(false),
pressed(false)
@@ -41,12 +36,6 @@
version = Version;
}
-/*!
-
- \deprecated HbStyleOptionDataGroupHeadingWidget::HbStyleOptionDataGroupHeadingWidget(const HbStyleOptionDataGroupHeadingWidget&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionDataGroupHeadingWidget::HbStyleOptionDataGroupHeadingWidget(const HbStyleOptionDataGroupHeadingWidget &other) :
HbStyleOption(other),
heading(other.heading),
--- a/src/hbcore/style/hbstyleoptiondatagroupheadingwidget_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiondatagroupheadingwidget_p.h Thu May 27 13:10:59 2010 +0300
@@ -29,7 +29,7 @@
#include <hbstyleoption_p.h>
#include <hbicon.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionDataGroupHeadingWidget : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptiongridviewitem.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiongridviewitem.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,31 +25,23 @@
#include "hbstyleoptiongridviewitem_p.h"
-/*!
+/*
\class HbStyleOptionGridViewItem
\brief HbStyleOptionGridViewItem has the style component for grid view item primitives
*/
-/*!
+/*
\var HbStyleOptionGridViewItem::text
Text shown in the grid view item, if not NULL.
*/
-/*!
+/*
\var HbStyleOptionGridViewItem::icon
Icon shown in the grid view item, if not NULL.
*/
-
-
-/*!
-
- \deprecated HbStyleOptionGridViewItem::HbStyleOptionGridViewItem()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionGridViewItem::HbStyleOptionGridViewItem() :
HbStyleOptionAbstractViewItem()
{
@@ -57,12 +49,6 @@
version = Version;
}
-/*!
-
- \deprecated HbStyleOptionGridViewItem::HbStyleOptionGridViewItem(const HbStyleOptionGridViewItem&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionGridViewItem::HbStyleOptionGridViewItem(const HbStyleOptionGridViewItem &other) :
HbStyleOptionAbstractViewItem(other)
{
--- a/src/hbcore/style/hbstyleoptiongridviewitem_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiongridviewitem_p.h Thu May 27 13:10:59 2010 +0300
@@ -32,7 +32,7 @@
#include <hbstyleoptionabstractviewitem_p.h>
#include <hbicon.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionGridViewItem : public HbStyleOptionAbstractViewItem
{
public:
--- a/src/hbcore/style/hbstyleoptiongroupbox.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiongroupbox.cpp Thu May 27 13:10:59 2010 +0300
@@ -26,18 +26,12 @@
#include <hbstyleoptiongroupbox_p.h>
-/*!
+/*
\class HbStyleOptionGroupBox
\brief HbStyleOptionGroupBox has the style component for GroupBox primitives
*/
-/*!
-
- \deprecated HbStyleOptionGroupBox::HbStyleOptionGroupBox()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionGroupBox::HbStyleOptionGroupBox():
collapsed(false),
heading(QString()),
@@ -48,12 +42,7 @@
version = Version;
}
-/*!
- \deprecated HbStyleOptionGroupBox::HbStyleOptionGroupBox(const HbStyleOptionGroupBox&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionGroupBox::HbStyleOptionGroupBox(const HbStyleOptionGroupBox &other)
: HbStyleOption(other),
collapsed( other.collapsed ),
--- a/src/hbcore/style/hbstyleoptiongroupbox_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiongroupbox_p.h Thu May 27 13:10:59 2010 +0300
@@ -28,7 +28,7 @@
#include <hbstyleoption_p.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionGroupBox : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptionindexfeedback.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionindexfeedback.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,39 +25,32 @@
#include <hbstyleoptionindexfeedback_p.h>
-/*!
+/*
\class HbStyleOptionIndexFeedback
\brief HbStyleOptionIndexFeedback hsa the style components for index feedback primatives.
*/
-/*!
+/*
\var HbStyleOptionIndexFeedback::text
Text shown in the indexFeedbackPopup, if not NULL.
*/
-/*!
+/*
\var HbStyleOptionIndexFeedback::fontSpec
The font specification for text used in the index feedback.
*/
-/*!
+/*
\var HbStyleOptionIndexFeedback::textRect
\brief The bounding rect for the text when displaying the index feedback.
*/
-/*!
+/*
\var HbStyleOptionIndexFeedback::popupRect
\brief The bounding rect for the popup background when displaying index feedback.
*/
-
-/*!
-
- \deprecated HbStyleOptionIndexFeedback::HbStyleOptionIndexFeedback()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionIndexFeedback::HbStyleOptionIndexFeedback() :
fontSpec(HbFontSpec::Primary)
{
@@ -65,12 +58,6 @@
version = Version;
}
-/*!
-
- \deprecated HbStyleOptionIndexFeedback::HbStyleOptionIndexFeedback(const HbStyleOptionIndexFeedback&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionIndexFeedback::HbStyleOptionIndexFeedback(const HbStyleOptionIndexFeedback &other) :
HbStyleOption(other),
text(other.text),
--- a/src/hbcore/style/hbstyleoptionindexfeedback_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionindexfeedback_p.h Thu May 27 13:10:59 2010 +0300
@@ -30,7 +30,7 @@
#include <hbfontspec.h>
#include <hbglobal.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionIndexFeedback : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptionindicatorbutton.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionindicatorbutton.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,31 +25,18 @@
#include "hbstyleoptionindicatorbutton_p.h"
-/*!
+/*
\class HbStyleOptionIndicatorButton
\brief HbStyleOptionIndicatorButton has the style component for the indicator button
*/
-
-
-/*!
-
- \deprecated HbStyleOptionIndicatorButton::HbStyleOptionIndicatorButton()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionIndicatorButton::HbStyleOptionIndicatorButton() :
HbStyleOption(), mode(QIcon::Normal), transparent(false)
{
type = Type;
version = Version;
}
-/*!
- \deprecated HbStyleOptionIndicatorButton::HbStyleOptionIndicatorButton(const HbStyleOptionIndicatorButton&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionIndicatorButton::HbStyleOptionIndicatorButton(const HbStyleOptionIndicatorButton &other) :
HbStyleOption(other), mode(other.mode), transparent(other.transparent)
{
--- a/src/hbcore/style/hbstyleoptionindicatorbutton_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionindicatorbutton_p.h Thu May 27 13:10:59 2010 +0300
@@ -28,7 +28,7 @@
#include <hbstyleoption_p.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionIndicatorButton : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptionindicatorgroup.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionindicatorgroup.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,31 +25,17 @@
#include "hbstyleoptionindicatorgroup_p.h"
-/*!
+/*
\class HbStyleOptionIndicatorGroup
\brief HbStyleOptionIndicatorGroup has the style component for indicator group
*/
-
-/*!
-
- \deprecated HbStyleOptionIndicatorGroup::HbStyleOptionIndicatorGroup()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionIndicatorGroup::HbStyleOptionIndicatorGroup()
{
type = Type;
version = Version;
}
-
-/*!
-
- \deprecated HbStyleOptionIndicatorGroup::HbStyleOptionIndicatorGroup(const HbStyleOptionIndicatorGroup&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionIndicatorGroup::HbStyleOptionIndicatorGroup(const HbStyleOptionIndicatorGroup &other) :
HbStyleOption(other), iconName(other.iconName)
{
--- a/src/hbcore/style/hbstyleoptionindicatorgroup_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionindicatorgroup_p.h Thu May 27 13:10:59 2010 +0300
@@ -29,7 +29,7 @@
#include <hbstyleoption_p.h>
#include <QIcon>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionIndicatorGroup : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptioninputdialog.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptioninputdialog.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,18 +25,11 @@
#include "hbstyleoptioninputdialog_p.h"
-/*!
+/*
\class HbStyleOptionInputDialog
\brief HbStyleOptionInputDialog has the style component for inpudialog primitives
*/
-
-/*!
-
- \deprecated HbStyleOptionInputDialog::HbStyleOptionInputDialog()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionInputDialog::HbStyleOptionInputDialog() :
HbStyleOptionPopup(),
text(),
@@ -46,13 +39,6 @@
version = Version;
}
-
-/*!
-
- \deprecated HbStyleOptionInputDialog::HbStyleOptionInputDialog(const HbStyleOptionInputDialog&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionInputDialog::HbStyleOptionInputDialog(const HbStyleOptionInputDialog &other) :
HbStyleOptionPopup(other),
text(other.text),
--- a/src/hbcore/style/hbstyleoptioninputdialog_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptioninputdialog_p.h Thu May 27 13:10:59 2010 +0300
@@ -29,7 +29,7 @@
#include <hbstyleoption_p.h>
#include <hbstyleoptionpopup_p.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionInputDialog : public HbStyleOptionPopup
{
public:
--- a/src/hbcore/style/hbstyleoptionlabel.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionlabel.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,43 +25,38 @@
#include <hbstyleoptionlabel_p.h>
-/*!
+/*
\class HbStyleOptionLabel
\brief HbStyleOptionLabel has the style component for label primitives
*/
-/*!
+/*
\var HbStyleOptionLabel::text
Text shown in the label, if not NULL.
*/
-/*!
+/*
\var HbStyleOptionLabel::alignment
Alignment of text or icon in the bounding rectangular
*/
-/*!
+/*
\var HbStyleOptionLabel::elideMode
Elide mode of the text.
*/
-/*!
+/*
\var HbStyleOptionLabel::icon
Icon shown in the label, if not NULL.
*/
-/*!
+/*
\var HbStyleOptionLabel::aspectRatioMode
Aspect ratio mode of icon.
*/
-/*!
- \deprecated HbStyleOptionLabel::HbStyleOptionLabel()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionLabel::HbStyleOptionLabel() : HbStyleOption(HbSO_Label),
text(),
fontSpec(), /*HbFontSpec::Primary*/
@@ -75,13 +70,6 @@
version = Version;
}
-
-/*!
-
- \deprecated HbStyleOptionLabel::HbStyleOptionLabel(const HbStyleOptionLabel&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionLabel::HbStyleOptionLabel(const HbStyleOptionLabel &other) :
HbStyleOption(other),
text(other.text),
--- a/src/hbcore/style/hbstyleoptionlabel_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionlabel_p.h Thu May 27 13:10:59 2010 +0300
@@ -33,7 +33,7 @@
#include <QIcon>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionLabel : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptionlistviewitem.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionlistviewitem.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,13 +25,13 @@
#include "hbstyleoptionlistviewitem_p.h"
-/*!
+/*
\class HbStyleOptionListViewItem
\brief HbStyleOptionListViewItem has the style component for list view item primitives
*/
-/*!
+/*
\var HbStyleOptionListViewItem::content
This variable holds content (if any) that is set as item's data.
@@ -43,7 +43,7 @@
\sa HbStyleOptionListViewItem::primaryText
*/
-/*!
+/*
\var HbStyleOptionListViewItem::role
Defines role of an model item, from which content is read.
@@ -52,7 +52,7 @@
\sa HbStyleOptionListViewItem::content
*/
-/*!
+/*
\var HbStyleOptionListViewItem::index
This variable holds index of the primitive item required by css/xml layouting, when
@@ -66,7 +66,7 @@
Default value is 0.
*/
-/*!
+/*
\var HbStyleOptionListViewItem::minimumLines
This variable holds minimum count of lines reserved for secondary text (i.e. when index is 1).
@@ -84,7 +84,7 @@
\sa HbListViewItem::setSecondaryTextRowCount()
*/
-/*!
+/*
\var HbStyleOptionListViewItem::maximumLines
This variable holds minimum count of lines reserved for secondary text (i.e. when index is 1).
@@ -102,7 +102,7 @@
\sa HbListViewItem::setSecondaryTextRowCount()
*/
-/*!
+/*
\var HbStyleOptionListViewItem::multilineSecondaryTextSupported
This variable holds whether multine line secondary text is supported.
@@ -114,14 +114,6 @@
\sa HbListViewItem::setSecondaryTextRowCount()
*/
-
-
-/*!
-
- \deprecated HbStyleOptionListViewItem::HbStyleOptionListViewItem()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionListViewItem::HbStyleOptionListViewItem() :
HbStyleOptionAbstractViewItem(),
role(Qt::DisplayRole),
@@ -134,13 +126,6 @@
version = Version;
}
-
-/*!
-
- \deprecated HbStyleOptionListViewItem::HbStyleOptionListViewItem(const HbStyleOptionListViewItem&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionListViewItem::HbStyleOptionListViewItem(const HbStyleOptionListViewItem &other) :
HbStyleOptionAbstractViewItem(other),
content(other.content),
--- a/src/hbcore/style/hbstyleoptionlistviewitem_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionlistviewitem_p.h Thu May 27 13:10:59 2010 +0300
@@ -30,7 +30,7 @@
#include <hbglobal.h>
#include <QVariant>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionListViewItem : public HbStyleOptionAbstractViewItem
{
public:
--- a/src/hbcore/style/hbstyleoptionmenuitem.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionmenuitem.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,18 +25,10 @@
#include "hbstyleoptionmenuitem_p.h"
-/*!
+/*
\class HbStyleOptionMenuItem
\brief HbStyleOptionMenuItem has the style component for menu item primitives
*/
-
-
-/*!
-
- \deprecated HbStyleOptionMenuItem::HbStyleOptionMenuItem()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionMenuItem::HbStyleOptionMenuItem() :
text(),
arrow(false),
@@ -48,13 +40,6 @@
version = Version;
}
-
-/*!
-
- \deprecated HbStyleOptionMenuItem::HbStyleOptionMenuItem(const HbStyleOptionMenuItem&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionMenuItem::HbStyleOptionMenuItem(const HbStyleOptionMenuItem &other) :
HbStyleOption(other),
text(other.text),
--- a/src/hbcore/style/hbstyleoptionmenuitem_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionmenuitem_p.h Thu May 27 13:10:59 2010 +0300
@@ -30,7 +30,7 @@
#include <hbglobal.h>
#include <hbstyleoption_p.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionMenuItem : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptionmessagebox.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionmessagebox.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,19 +25,12 @@
#include "hbstyleoptionmessagebox_p.h"
-/*!
- \this class is deprecated.
+/*
+
\class HbStyleOptionMessageBox
\brief HbStyleOptionMessageBox has the style component for note primitives
*/
-
-/*!
-
- \deprecated HbStyleOptionMessageBox::HbStyleOptionMessageBox()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionMessageBox::HbStyleOptionMessageBox() :
HbStyleOptionPopup(),
text(),
@@ -50,12 +43,6 @@
version = Version;
}
-/*!
-
- \deprecated HbStyleOptionMessageBox::HbStyleOptionMessageBox(const HbStyleOptionMessageBox&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionMessageBox::HbStyleOptionMessageBox(const HbStyleOptionMessageBox &other) :
HbStyleOptionPopup(other),
text(other.text),
--- a/src/hbcore/style/hbstyleoptionmessagebox_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionmessagebox_p.h Thu May 27 13:10:59 2010 +0300
@@ -30,7 +30,7 @@
#include <hbstyleoptionpopup_p.h>
#include <hbicon.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionMessageBox : public HbStyleOptionPopup
{
public:
--- a/src/hbcore/style/hbstyleoptionnavigationbutton.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionnavigationbutton.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,31 +25,18 @@
#include "hbstyleoptionnavigationbutton_p.h"
-/*!
+/*
\class HbStyleOptionNavigationButton
\brief HbStyleOptionNavigationButton has the style component for the navigation button
*/
-
-
-/*!
-
- \deprecated HbStyleOptionNavigationButton::HbStyleOptionNavigationButton()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionNavigationButton::HbStyleOptionNavigationButton() :
HbStyleOption(), mode(QIcon::Normal), transparent(false)
{
type = Type;
version = Version;
}
-/*!
- \deprecated HbStyleOptionNavigationButton::HbStyleOptionNavigationButton(const HbStyleOptionNavigationButton&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionNavigationButton::HbStyleOptionNavigationButton(const HbStyleOptionNavigationButton &other) :
HbStyleOption(other), mode(other.mode), transparent(other.transparent)
{
--- a/src/hbcore/style/hbstyleoptionnavigationbutton_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionnavigationbutton_p.h Thu May 27 13:10:59 2010 +0300
@@ -28,7 +28,7 @@
#include <hbstyleoption_p.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionNavigationButton : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptionnotificationdialog.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionnotificationdialog.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,29 +25,11 @@
#include "hbstyleoptionnotificationdialog_p.h"
-/*!
+/*
\class HbStyleOptionNotificationDialog
\brief HbStyleOptionNotificationDialog has the style component for notification dialog.
*/
-/*!
- \deprecated HbStyleOptionNotificationDialog::titleWrapping
- is deprecated. Use wrappingTitle instead.
-*/
-
-/*!
- \deprecated HbStyleOptionNotificationDialog::textWrapping
- is deprecated. Use wrappingText instead.
-*/
-
-
-
-/*!
-
- \deprecated HbStyleOptionNotificationDialog::HbStyleOptionNotificationDialog()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionNotificationDialog::HbStyleOptionNotificationDialog() :
titleAlignment(Qt::AlignLeft|Qt::AlignVCenter),
textAlignment(Qt::AlignLeft|Qt::AlignVCenter),
@@ -62,13 +44,6 @@
version = Version;
}
-
-/*!
-
- \deprecated HbStyleOptionNotificationDialog::HbStyleOptionNotificationDialog(const HbStyleOptionNotificationDialog&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionNotificationDialog::HbStyleOptionNotificationDialog(
const HbStyleOptionNotificationDialog &other) :
HbStyleOptionPopup(other),
--- a/src/hbcore/style/hbstyleoptionnotificationdialog_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionnotificationdialog_p.h Thu May 27 13:10:59 2010 +0300
@@ -31,7 +31,7 @@
#include <hbstyleoptionpopup_p.h>
-//Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionNotificationDialog : public HbStyleOptionPopup
{
public:
--- a/src/hbcore/style/hbstyleoptionpopup.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionpopup.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,31 +25,17 @@
#include "hbstyleoptionpopup_p.h"
-/*!
+/*
\class HbStyleOptionPopup
\brief HbStyleOptionPopup has the style component for popup primitives
*/
-
-/*!
-
- \deprecated HbStyleOptionPopup::HbStyleOptionPopup()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionPopup::HbStyleOptionPopup()
{
type = Type;
version = Version;
}
-
-/*!
-
- \deprecated HbStyleOptionPopup::HbStyleOptionPopup(const HbStyleOptionPopup&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionPopup::HbStyleOptionPopup(const HbStyleOptionPopup &other) :
HbStyleOption(other)
{
--- a/src/hbcore/style/hbstyleoptionpopup_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionpopup_p.h Thu May 27 13:10:59 2010 +0300
@@ -29,7 +29,7 @@
#include <hbnamespace.h>
#include <hbstyleoption_p.h>
-//Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionPopup : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptionprogressbar.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionprogressbar.cpp Thu May 27 13:10:59 2010 +0300
@@ -27,19 +27,12 @@
#include "hbstyleoptionprogressbar_p.h"
-/*!
+/*
\class HbStyleOptionProgressBar
\brief HbStyleOptionProgressBar has the style component for progress bar primitives
*/
-
-/*!
-
- \deprecated HbStyleOptionProgressBar::HbStyleOptionProgressBar()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionProgressBar::HbStyleOptionProgressBar() :
progressValue(0),
minimum(0),
@@ -60,14 +53,6 @@
type = Type;
version = Version;
}
-
-
-/*!
-
- \deprecated HbStyleOptionProgressBar::HbStyleOptionProgressBar(const HbStyleOptionProgressBar&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionProgressBar::HbStyleOptionProgressBar(const HbStyleOptionProgressBar &other) :
HbStyleOption(other),
progressValue(other.progressValue),
--- a/src/hbcore/style/hbstyleoptionprogressdialog.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionprogressdialog.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,18 +25,11 @@
#include "hbstyleoptionprogressdialog_p.h"
-/*!
+/*
\class HbStyleOptionProgressDialog
\brief HbStyleOptionProgressDialog has the style component for progress dialog primitives
*/
-
-/*!
-
- \deprecated HbStyleOptionProgressDialog::HbStyleOptionProgressDialog()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionProgressDialog::HbStyleOptionProgressDialog() :
HbStyleOption(),
icon(),
@@ -46,13 +39,6 @@
version = Version;
}
-
-/*!
-
- \deprecated HbStyleOptionProgressDialog::HbStyleOptionProgressDialog(const HbStyleOptionProgressDialog&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionProgressDialog::HbStyleOptionProgressDialog(const HbStyleOptionProgressDialog &other) :
HbStyleOption(other),
icon(other.icon),
--- a/src/hbcore/style/hbstyleoptionprogressdialog_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionprogressdialog_p.h Thu May 27 13:10:59 2010 +0300
@@ -29,7 +29,7 @@
#include <hbstyleoption_p.h>
#include <hbicon.h>
-//Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionProgressDialog : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptionpushbutton.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionpushbutton.cpp Thu May 27 13:10:59 2010 +0300
@@ -26,19 +26,11 @@
#include "hbstyleoptionpushbutton_p.h"
#include "hbicon.h"
-/*!
+/*
\class HbStyleOptionPushButton
\brief HbStyleOptionPushButton has the style component for push button primitives
*/
-
-
-/*!
-
- \deprecated HbStyleOptionPushButton::HbStyleOptionPushButton()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionPushButton::HbStyleOptionPushButton()
: background(), icon(), text(),backgroundFrameDrawer(0)
{
@@ -46,13 +38,6 @@
version = Version;
}
-
-/*!
-
- \deprecated HbStyleOptionPushButton::HbStyleOptionPushButton(const HbStyleOptionPushButton&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionPushButton::HbStyleOptionPushButton(const HbStyleOptionPushButton &other) :
HbStyleOption(other), background(other.background), icon(other.icon), text(other.text),backgroundFrameDrawer(other.backgroundFrameDrawer)
{
--- a/src/hbcore/style/hbstyleoptionpushbutton_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionpushbutton_p.h Thu May 27 13:10:59 2010 +0300
@@ -30,7 +30,7 @@
#include <hbicon.h>
#include <hbframedrawer.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionPushButton : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptionratingslider.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionratingslider.cpp Thu May 27 13:10:59 2010 +0300
@@ -27,33 +27,18 @@
#include "hbstyleoptionratingslider_p.h"
-/*!
+/*
\class HbStyleOptionProgressBar
\brief HbStyleOptionProgressBar has the style component for progress bar primitives
*/
-
-/*!
-
- \deprecated HbStyleOptionRatingSlider::HbStyleOptionRatingSlider()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionRatingSlider::HbStyleOptionRatingSlider()
{
type = Type;
version = Version;
}
-
-
-/*!
-
- \deprecated HbStyleOptionRatingSlider::HbStyleOptionRatingSlider(const HbStyleOptionRatingSlider&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionRatingSlider::HbStyleOptionRatingSlider(const HbStyleOptionRatingSlider &other) :
HbStyleOption(other),
progressValue(other.progressValue),
--- a/src/hbcore/style/hbstyleoptionratingslider_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionratingslider_p.h Thu May 27 13:10:59 2010 +0300
@@ -28,7 +28,7 @@
#include <hbstyleoption_p.h>
-//Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionRatingSlider : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptionscrollbar.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionscrollbar.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,18 +25,12 @@
#include "hbstyleoptionscrollbar_p.h"
-/*!
+/*
\class HbStyleOptionScrollBar
\brief HbStyleOptionScrollBar has the style component for scroll bar primitives
*/
-/*!
-
- \deprecated HbStyleOptionScrollBar::HbStyleOptionScrollBar()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionScrollBar::HbStyleOptionScrollBar() :
orientation(Qt::Vertical),
thumbPressed(false),
@@ -47,12 +41,7 @@
version = Version;
}
-/*!
- \deprecated HbStyleOptionScrollBar::HbStyleOptionScrollBar(const HbStyleOptionScrollBar&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionScrollBar::HbStyleOptionScrollBar(const HbStyleOptionScrollBar &other) :
HbStyleOption(other),
orientation(other.orientation)
--- a/src/hbcore/style/hbstyleoptionscrollbar_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionscrollbar_p.h Thu May 27 13:10:59 2010 +0300
@@ -29,7 +29,7 @@
#include <hbglobal.h>
#include <hbstyleoption_p.h>
-//Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionScrollBar : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptionsignalindicator.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionsignalindicator.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,18 +25,12 @@
#include "hbstyleoptionsignalindicator_p.h"
-/*!
+/*
\class HbStyleOptionSignalIndicator
\brief HbStyleOptionSignalIndicator has the style component for the signal indicator
*/
-/*!
-
- \deprecated HbStyleOptionSignalIndicator::HbStyleOptionSignalIndicator()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionSignalIndicator::HbStyleOptionSignalIndicator() :
HbStyleOption(),
networkMode(0),
@@ -47,12 +41,6 @@
version = Version;
}
-/*!
-
- \deprecated HbStyleOptionSignalIndicator::HbStyleOptionSignalIndicator(const HbStyleOptionSignalIndicator&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionSignalIndicator::HbStyleOptionSignalIndicator(const HbStyleOptionSignalIndicator &other) :
HbStyleOption(other),
networkMode(other.networkMode),
--- a/src/hbcore/style/hbstyleoptionsignalindicator_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionsignalindicator_p.h Thu May 27 13:10:59 2010 +0300
@@ -28,7 +28,7 @@
#include <hbstyleoption_p.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionSignalIndicator : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptionslider.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionslider.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,18 +25,12 @@
#include "hbstyleoptionslider_p.h"
-/*!
+/*
\class HbStyleOptionSlider
\brief HbStyleOptionSlider has the style component for slider primitives
*/
-/*!
-
- \deprecated HbStyleOptionSlider::HbStyleOptionSlider()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionSlider::HbStyleOptionSlider() :
maximum(0),
minimum(0),
@@ -61,12 +55,7 @@
type = Type;
version = Version;
}
-/*!
- \deprecated HbStyleOptionSlider::HbStyleOptionSlider(const HbStyleOptionSlider&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionSlider::HbStyleOptionSlider(const HbStyleOptionSlider &other) :
HbStyleOption(other),
maximum(other.maximum),
--- a/src/hbcore/style/hbstyleoptionslider_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionslider_p.h Thu May 27 13:10:59 2010 +0300
@@ -31,7 +31,7 @@
#include <hbstyleoption_p.h>
#include <hbicon.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionSlider : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptionstatusbar.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionstatusbar.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,31 +25,17 @@
#include "hbstyleoptionstatusbar_p.h"
-/*!
+/*
\class HbStyleOptionStatusBar
\brief HbStyleOptionStatusBar has the style component for statusbar
*/
-
-/*!
-
- \deprecated HbStyleOptionStatusBar::HbStyleOptionStatusBar()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionStatusBar::HbStyleOptionStatusBar() : transparent(false)
{
type = Type;
version = Version;
}
-
-/*!
-
- \deprecated HbStyleOptionStatusBar::HbStyleOptionStatusBar(const HbStyleOptionStatusBar&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionStatusBar::HbStyleOptionStatusBar(const HbStyleOptionStatusBar &other) :
HbStyleOption(other)
{
--- a/src/hbcore/style/hbstyleoptionstatusbar_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionstatusbar_p.h Thu May 27 13:10:59 2010 +0300
@@ -28,7 +28,7 @@
#include <hbstyleoption_p.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionStatusBar : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptiontitlepane.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiontitlepane.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,18 +25,12 @@
#include "hbstyleoptiontitlepane_p.h"
-/*!
+/*
\class HbStyleOptionTitlePane
\brief HbStyleOptionTitlePane has the style component for title pane
*/
-/*!
-
- \deprecated HbStyleOptionTitlePane::HbStyleOptionTitlePane()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionTitlePane::HbStyleOptionTitlePane() :
HbStyleOption(), caption(""), mode(QIcon::Normal), transparent(false)
{
@@ -44,13 +38,6 @@
version = Version;
}
-
-/*!
-
- \deprecated HbStyleOptionTitlePane::HbStyleOptionTitlePane(const HbStyleOptionTitlePane&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionTitlePane::HbStyleOptionTitlePane(const HbStyleOptionTitlePane &other) :
HbStyleOption(other), caption(other.caption), mode(other.mode), transparent(other.transparent)
{
--- a/src/hbcore/style/hbstyleoptiontitlepane_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiontitlepane_p.h Thu May 27 13:10:59 2010 +0300
@@ -29,7 +29,7 @@
#include <QIcon>
#include <hbstyleoption_p.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionTitlePane : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptiontoolbutton.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiontoolbutton.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,17 +25,12 @@
#include <hbstyleoptiontoolbutton_p.h>
-/*!
+/*
\class HbStyleOptionToolButton
\brief HbStyleOptionToolButton has the style component for tool button primitives
*/
-/*!
- \deprecated HbStyleOptionToolButton::HbStyleOptionToolButton()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionToolButton::HbStyleOptionToolButton() : HbStyleOption(HbSO_ToolButton),
icon(),
customBackground(),
@@ -50,12 +45,7 @@
version = Version;
}
-/*!
- \deprecated HbStyleOptionToolButton::HbStyleOptionToolButton(const HbStyleOptionToolButton&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionToolButton::HbStyleOptionToolButton(const HbStyleOptionToolButton &other) :
HbStyleOption(other),
icon(other.icon),
--- a/src/hbcore/style/hbstyleoptiontoolbutton_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiontoolbutton_p.h Thu May 27 13:10:59 2010 +0300
@@ -29,7 +29,7 @@
#include <hbstyleoption_p.h>
#include <hbicon.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionToolButton : public HbStyleOption
{
public:
--- a/src/hbcore/style/hbstyleoptiontooltip.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiontooltip.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,29 +25,18 @@
#include "hbstyleoptiontooltip_p.h"
-/*!
+/*
\class HbStyleOptionToolTip
\brief HbStyleOptionToolTip has the style component for tooltip primitives
*/
-/*!
- \deprecated HbStyleOptionToolTip::HbStyleOptionToolTip()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionToolTip::HbStyleOptionToolTip()
{
type = Type;
version = Version;
}
-/*!
-
- \deprecated HbStyleOptionToolTip::HbStyleOptionToolTip(const HbStyleOptionToolTip&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionToolTip::HbStyleOptionToolTip(const HbStyleOptionToolTip &other) :
HbStyleOptionPopup(other)
{
--- a/src/hbcore/style/hbstyleoptiontooltip_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiontooltip_p.h Thu May 27 13:10:59 2010 +0300
@@ -29,7 +29,7 @@
#include <hbstyleoption_p.h>
#include <hbstyleoptionpopup_p.h>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionToolTip : public HbStyleOptionPopup
{
public:
--- a/src/hbcore/style/hbstyleoptiontreeviewitem.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiontreeviewitem.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,23 +25,18 @@
#include "hbstyleoptiontreeviewitem_p.h"
-/*!
+/*
\class HbStyleOptionTreeViewItem
\brief HbStyleOptionTreeViewItem has the style component for tree view item primitives
*/
-/*!
+/*
\var HbStyleOptionTreeViewItem::expanded
This variable holds whether tree item is expanded or collapsed.
*/
-/*!
- \deprecated HbStyleOptionTreeViewItem::HbStyleOptionTreeViewItem()
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionTreeViewItem::HbStyleOptionTreeViewItem() :
HbStyleOptionListViewItem(),
expanded(false)
@@ -50,12 +45,7 @@
version = Version;
}
-/*!
- \deprecated HbStyleOptionTreeViewItem::HbStyleOptionTreeViewItem(const HbStyleOptionTreeViewItem&)
- is deprecated. Styleoptions will not be public.
-
-*/
HbStyleOptionTreeViewItem::HbStyleOptionTreeViewItem(const HbStyleOptionTreeViewItem &other) :
HbStyleOptionListViewItem(other),
expanded(other.expanded)
--- a/src/hbcore/style/hbstyleoptiontreeviewitem_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiontreeviewitem_p.h Thu May 27 13:10:59 2010 +0300
@@ -30,7 +30,7 @@
#include <hbglobal.h>
#include <QVariant>
-// Deprecated
+
class HB_CORE_PRIVATE_EXPORT HbStyleOptionTreeViewItem : public HbStyleOptionListViewItem
{
public:
--- a/src/hbcore/theme/hbcolorscheme.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbcolorscheme.cpp Thu May 27 13:10:59 2010 +0300
@@ -68,13 +68,6 @@
#include <hbcolorscheme.h>
#include "hbcolortheme_p.h"
-/*!
-Constructor
-*/
-HbColorScheme::HbColorScheme()
-{
-}
-
QColor HbColorScheme::color( const QString &colorRole )
{
return HbColorTheme::instance()->color(colorRole);
--- a/src/hbcore/theme/hbcolortheme_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbcolortheme_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -40,7 +40,7 @@
}
-void HbColorThemePrivate::setCurrentTheme(const QString& themeName)
+void HbColorThemePrivate::setCurrentTheme(const QString &themeName)
{
// If new theme is different from earlier set theme
if (currentTheme != themeName) {
@@ -58,17 +58,19 @@
void HbColorThemePrivate::reloadColorFiles(bool sender)
{
QMap<int,QString> hierarchyVariableListWithPathInfo =
- HbThemeUtils::constructHierarchyListWithPathInfo("variables/color/hbcolorgroup.css", currentTheme, Hb::StyleSheetResource);
- HbStandardDirs::findResourceList(hierarchyVariableListWithPathInfo,Hb::StyleSheetResource, true);
+ HbThemeUtils::constructHierarchyListWithPathInfo(
+ "variables/color/hbcolorgroup.css", currentTheme, Hb::StyleSheetResource);
+ HbStandardDirs::findResourceList(hierarchyVariableListWithPathInfo,
+ Hb::StyleSheetResource, true);
#ifdef THEME_SERVER_TRACES
qDebug() << "CSS files:";
- foreach ( const QString& file, hierarchyVariableListWithPathInfo )
+ foreach(const QString &file, hierarchyVariableListWithPathInfo) {
qDebug() << file;
+ }
#endif // THEME_SERVER_TRACES
cssif.initialise(hierarchyVariableListWithPathInfo, sender);
-
}
/*!
@@ -149,7 +151,7 @@
*
* \a themeName name of the new theme to be set
*/
-void HbColorTheme::setCurrentTheme ( const QString& themeName )
+void HbColorTheme::setCurrentTheme(const QString &themeName)
{
Q_D(HbColorTheme);
d->setCurrentTheme(themeName);
--- a/src/hbcore/theme/hbcolortheme_p_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbcolortheme_p_p.h Thu May 27 13:10:59 2010 +0300
@@ -31,12 +31,11 @@
#include "hbcssthemeinterface_p.h"
#include "hbcssparser_p.h"
-
class HB_AUTOTEST_EXPORT HbColorThemePrivate
{
public:
HbColorThemePrivate();
- void setCurrentTheme(const QString& themeName);
+ void setCurrentTheme(const QString &themeName);
void reloadColorFiles(bool sender);
QColor resolveColor(HbCss::Value values) const;
~HbColorThemePrivate();
--- a/src/hbcore/theme/hbcssthemeinterface_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbcssthemeinterface_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -32,8 +32,7 @@
\class HbCssThemeInterface
\brief HbCssThemeInterface is an internal class.
*
- */
-
+ */
/*!
* \fn HbCssThemeInterface::initialise(const QStringList& list,bool loadAllFiles,bool enableBinarySupport =false)
@@ -42,39 +41,38 @@
* \a loadAllFiles ,On application launch all files are loaded and on theme change unchanged files are not loaded.
* \a enableBinarySupport optional flag for using the binary functionality
*/
-void HbCssThemeInterface::initialise(const QMap<int,QString> & list,bool loadAllFiles,
+void HbCssThemeInterface::initialise(const QMap<int, QString> &list, bool loadAllFiles,
bool enableBinarySupport)
{
int handle;
flushVariableCache();
- HbLayeredStyleLoader *loader = HbLayeredStyleLoader::getStack(HbLayeredStyleLoader::Concern_Colors);
+ HbLayeredStyleLoader *loader =
+ HbLayeredStyleLoader::getStack(HbLayeredStyleLoader::Concern_Colors);
//first unload the layers, for which the contents are different after theme change
if (handles.size() != 0) {
QMap<int,HbLayeredStyleLoader::LayerPriority>::const_iterator itr;
for (itr = handles.constBegin(); itr != handles.constEnd(); ++itr){
- loader->unload(itr.key(),itr.value());
+ loader->unload(itr.key(), itr.value());
}
handles.clear();
}
- QMap<int,QString>::const_iterator i;
+ QMap<int, QString>::const_iterator i;
for (i = list.constBegin(); i != list.constEnd(); ++i){
+ HbLayeredStyleLoader::LayerPriority layerPriority =
+ static_cast<HbLayeredStyleLoader::LayerPriority>(i.key());
if(loadAllFiles) {
- handle =loader->load(i.value(),(HbLayeredStyleLoader::LayerPriority) i.key(),enableBinarySupport);
- if (((HbLayeredStyleLoader::LayerPriority) i.key() != HbLayeredStyleLoader::Priority_Core) && ((HbLayeredStyleLoader::LayerPriority) i.key() != HbLayeredStyleLoader::Priority_Operator )) {
- handles.insertMulti(handle, (HbLayeredStyleLoader::LayerPriority) i.key());
+ handle = loader->load(i.value(), layerPriority, enableBinarySupport);
+ if (layerPriority != HbLayeredStyleLoader::Priority_Core
+ && layerPriority != HbLayeredStyleLoader::Priority_Operator) {
+ handles.insertMulti(handle, layerPriority);
}
-
+ } else if (layerPriority != HbLayeredStyleLoader::Priority_Core
+ && layerPriority != HbLayeredStyleLoader::Priority_Operator) {
+ handle = loader->load(i.value(), layerPriority, enableBinarySupport);
+ handles.insertMulti(handle, layerPriority);
}
- else{
- if (((HbLayeredStyleLoader::LayerPriority) i.key() != HbLayeredStyleLoader::Priority_Core) && ((HbLayeredStyleLoader::LayerPriority) i.key() != HbLayeredStyleLoader::Priority_Operator )) {
- handle = loader->load(i.value(),(HbLayeredStyleLoader::LayerPriority) i.key(),enableBinarySupport);
- handles.insertMulti(handle, (HbLayeredStyleLoader::LayerPriority) i.key());
- }
-
- }
-
}
}
@@ -84,7 +82,8 @@
*/
void HbCssThemeInterface::flush()
{
- HbLayeredStyleLoader *loader = HbLayeredStyleLoader::getStack(HbLayeredStyleLoader::Concern_Colors);
+ HbLayeredStyleLoader *loader =
+ HbLayeredStyleLoader::getStack(HbLayeredStyleLoader::Concern_Colors);
loader->clear();
flushVariableCache();
}
@@ -109,9 +108,11 @@
n.ptr = (void *)w;
HbCss::Value value;
- HbLayeredStyleLoader *loader = HbLayeredStyleLoader::getStack(HbLayeredStyleLoader::Concern_Colors);
+ HbLayeredStyleLoader *loader =
+ HbLayeredStyleLoader::getStack(HbLayeredStyleLoader::Concern_Colors);
HbDeviceProfile profile(HbDeviceProfile::profile(w));
- HbCss::ValueExtractor valueExtractor(loader->declarationsForNode(n, profile.orientation()), true);
+ HbCss::ValueExtractor valueExtractor(
+ loader->declarationsForNode(n, profile.orientation()), true);
valueExtractor.extractValue(attribute, value);
if ( value.type == Value::Variable) {
@@ -131,7 +132,8 @@
const QString& variableName) const
{
if ( mVariables.isEmpty() ) {
- HbLayeredStyleLoader *loader = HbLayeredStyleLoader::getStack(HbLayeredStyleLoader::Concern_Colors);
+ HbLayeredStyleLoader *loader =
+ HbLayeredStyleLoader::getStack(HbLayeredStyleLoader::Concern_Colors);
loader->variableRuleSets(&mVariables);
}
@@ -146,4 +148,3 @@
return value;
}
-
--- a/src/hbcore/theme/hbeffecttheme_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbeffecttheme_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -23,19 +23,19 @@
**
****************************************************************************/
-#include <QDebug>
-#include <QDir>
-
+#include "hbeffecttheme_p.h"
#include "hbthemecommon_p.h"
#include "hbstandarddirs_p.h"
#include "hbinstance.h"
-#include "hbeffecttheme_p.h"
#include "hbthemeutils_p.h"
#include "hbeffectinternal_p.h"
#include "hbthemeindex_p.h"
#include "hbtheme.h"
#include "hbtheme_p.h"
+#include <QDebug>
+#include <QDir>
+
#ifdef Q_OS_SYMBIAN
static const char *effectFileSuffix = ".fxml";
#endif
@@ -58,15 +58,15 @@
QMap<int, QString> maplist = HbThemeUtils::constructHierarchyListWithPathInfo(
QString(), mThemeName, Hb::EffectResource);
-
+
mDirList.clear();
-
QList<QString> list = maplist.values(); // sorted by key
for (int i = list.count() - 1; i >= 0; --i) { // take highest prio first
mDirList.append(list.at(i));
}
- mListOfExistingFolders = HbStandardDirs::findExistingFolderList(mDirList, mThemeName, Hb::EffectResource);
+ mListOfExistingFolders = HbStandardDirs::findExistingFolderList(mDirList, mThemeName,
+ Hb::EffectResource);
}
HbEffectThemePrivate::HbEffectThemePrivate()
@@ -135,7 +135,7 @@
delete d_ptr;
}
-void HbEffectTheme::setCurrentTheme(const QString& themeName)
+void HbEffectTheme::setCurrentTheme(const QString &themeName)
{
d_ptr->initialise(themeName);
d_ptr->mThemeName = themeName;
--- a/src/hbcore/theme/hbeffecttheme_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbeffecttheme_p.h Thu May 27 13:10:59 2010 +0300
@@ -45,7 +45,7 @@
QString currentTheme() const;
private:
- HbEffectThemePrivate* d_ptr;
+ HbEffectThemePrivate *d_ptr;
static HbEffectTheme *self;
Q_DISABLE_COPY(HbEffectTheme)
friend class TestHbEffectTheme;
--- a/src/hbcore/theme/hbtheme.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbtheme.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,17 +25,16 @@
#include "hbtheme.h"
#include "hbtheme_p.h"
#include "hbthemeclient_p.h"
-#include <qglobal.h>
-#include <QSettings>
#include "hbstandarddirs_p.h"
#include "hbicontheme_p.h"
-#include "hbcolortheme_p.h"
#include "hbthemeutils_p.h"
#include "hbiconloader_p.h"
#include "hbcolortheme_p_p.h"
#include "hbcolortheme_p.h"
#include "hbeffecttheme_p.h"
#include "hbeffectinternal_p.h"
+#include <QSettings>
+
/*!
@stable
@hbcore
@@ -74,7 +73,7 @@
/*!
Returns static instance
*/
-HbTheme* HbTheme::instance()
+HbTheme *HbTheme::instance()
{
static HbTheme theInstance;
return &theInstance;
@@ -124,7 +123,7 @@
// Condition added to check if the client itself is server.
if(THEME_SERVER_NAME != HbMemoryUtils::getCleanAppName()) {
if(!HbThemeClient::global()->connectToServer()) {
- qWarning()<<"ThemeClient unable to connect to server in HbThemePrivate::HbThemePrivate.";
+ qWarning() << "ThemeClient unable to connect to server in HbThemePrivate::HbThemePrivate.";
}
}
}
--- a/src/hbcore/theme/hbtheme_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbtheme_p.h Thu May 27 13:10:59 2010 +0300
@@ -44,8 +44,8 @@
public:
QString currentTheme;
- HbIconTheme iconTheme;
- HbTheme* q_ptr;
+ HbIconTheme iconTheme;
+ HbTheme *q_ptr;
};
#endif /* HBTHEME_P_H */
--- a/src/hbcore/theme/hbthemeclient_generic_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbthemeclient_generic_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -38,20 +38,23 @@
#include "hbthemecommon_p.h"
#include "hbmemorymanager_p.h"
-#define WAIT_TIME_TO_CONNECT_TO_SERVER 500
-#define WAIT_TIME_TO_START_SERVER 5000
+static const int WAIT_TIME_TO_CONNECT_TO_SERVER = 500;
+static const int WAIT_TIME_TO_START_SERVER = 5000;
#if defined(Q_OS_SYMBIAN) || defined(Q_OS_WIN)
static const QString SERVERFILENAME = QLatin1String("hbthemeserver.exe");
#else
static const QString SERVERFILENAME = QLatin1String("hbthemeserver");
#endif
-static const QString SERVERFILEPATH = QLatin1String(HB_BIN_DIR) + QDir::separator() + SERVERFILENAME;
+static const QString SERVERFILEPATH = QLatin1String(HB_BIN_DIR)
+ + QDir::separator() + SERVERFILENAME;
static const QStringList SERVERARGUMENTS = QStringList() << QLatin1String("-start");
/**
* Constructor
*/
-HbThemeClientPrivate::HbThemeClientPrivate():clientConnected( false ),localSocket( new QLocalSocket() )
+HbThemeClientPrivate::HbThemeClientPrivate() :
+ clientConnected(false),
+ localSocket(new QLocalSocket())
{
#ifdef THEME_SERVER_TRACES
qDebug() << Q_FUNC_INFO ;
@@ -83,7 +86,8 @@
success = newProcess->waitForStarted(WAIT_TIME_TO_START_SERVER);
}
#ifdef THEME_SERVER_TRACES
- qDebug() << Q_FUNC_INFO << "Server Start Status: " << success << "Error = " << newProcess->error ();
+ qDebug() << Q_FUNC_INFO << "Server Start Status: " << success
+ << "Error = " << newProcess->error();
#endif
// If server started
@@ -91,12 +95,12 @@
// ToDo: This is to wait for server to start running. Logic needs to be improved.
newProcess->waitForFinished(3000);
#ifdef THEME_SERVER_TRACES
- qDebug() <<Q_FUNC_INFO<< " Server Start Wait is over" ;
+ qDebug() << Q_FUNC_INFO << " Server Start Wait is over" ;
#endif
localSocket->connectToServer(THEME_SERVER_NAME);
success = localSocket->waitForConnected();
#ifdef THEME_SERVER_TRACES
- qDebug() <<Q_FUNC_INFO<< "socketconnected : "<<success;
+ qDebug() << Q_FUNC_INFO << "socketconnected : " << success;
#endif
}
}
@@ -116,7 +120,7 @@
delete localSocket;
}
-QSizeF HbThemeClientPrivate::getSharedIconDefaultSize(const QString& iconPath)
+QSizeF HbThemeClientPrivate::getSharedIconDefaultSize(const QString &iconPath)
{
// Not implemented atm...
Q_UNUSED(iconPath)
@@ -126,7 +130,7 @@
/**
* HbThemeClientPrivate::getSharedIconInfo()
*/
-HbSharedIconInfo HbThemeClientPrivate::getSharedIconInfo(const QString& iconPath ,
+HbSharedIconInfo HbThemeClientPrivate::getSharedIconInfo(const QString &iconPath,
const QSizeF &size,
Qt::AspectRatioMode aspectRatioMode,
QIcon::Mode mode,
@@ -166,7 +170,7 @@
localSocket->flush();
localSocket->waitForReadyRead();
#ifdef THEME_SERVER_TRACES
- qDebug() <<"image req : " <<iconPath;
+ qDebug() << "image req : " << iconPath;
#endif
QByteArray inputByteArray = localSocket->readAll();
QDataStream inputDataStream(inputByteArray);
@@ -188,8 +192,7 @@
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
}
}
- }
- else if (EThemeSelection==request){
+ } else if (EThemeSelection==request){
// Asked for pixmap, got theme change request.. clean theme name
QString themeName;
inputDataStream >> themeName;
@@ -202,7 +205,6 @@
}
}
}
-
// connecting again to handle theme change request from server
connect(localSocket, SIGNAL(readyRead()), this, SLOT(changeTheme()));
return iconInfo;
@@ -213,8 +215,8 @@
*
* Returns the layout definition for the given file name,layout name,section name
*/
-
-HbWidgetLoader::LayoutDefinition *HbThemeClientPrivate::getSharedLayoutDefs(const QString &fileName,const QString &layout,const QString §ion)
+HbWidgetLoader::LayoutDefinition *HbThemeClientPrivate::getSharedLayoutDefs(
+ const QString &fileName, const QString &layout, const QString §ion)
{
if ( !clientConnected ) {
return 0;
@@ -224,7 +226,7 @@
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
HbThemeServerRequest requestType = EWidgetMLLookup;
- outputDataStream << (int)requestType;
+ outputDataStream << int(requestType);
outputDataStream << fileName;
outputDataStream << layout;
outputDataStream << section;
@@ -236,23 +238,23 @@
localSocket->waitForReadyRead();
QByteArray inputByteArray = localSocket->readAll();
- QDataStream inputDataStream(&inputByteArray,QIODevice::ReadOnly);
+ QDataStream inputDataStream(&inputByteArray, QIODevice::ReadOnly);
HbThemeServerRequest request;
int temp;
int sharedMLOffset = -1;
inputDataStream >> temp;
- request = (HbThemeServerRequest)temp;
+ request = static_cast<HbThemeServerRequest>(temp);
- if (EWidgetMLLookup==request) {
+ if (EWidgetMLLookup == request) {
inputDataStream >> sharedMLOffset;
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
- request = (HbThemeServerRequest)temp;
- if (EThemeSelection==request) {
+ request = static_cast<HbThemeServerRequest>(temp);
+ if (EThemeSelection == request) {
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
}
}
- }else if (EThemeSelection==request){
+ } else if (EThemeSelection == request){
QString themeName;
inputDataStream >> themeName;
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
@@ -264,7 +266,6 @@
}
}
}
-
// connecting again to handle theme change request from server
connect(localSocket, SIGNAL(readyRead()), this, SLOT(changeTheme()));
@@ -279,7 +280,8 @@
/**
* HbThemeClientPrivate::getSharedStyleSheet()
*/
-HbCss::StyleSheet *HbThemeClientPrivate::getSharedStyleSheet(const QString &fileName, HbLayeredStyleLoader::LayerPriority priority)
+HbCss::StyleSheet *HbThemeClientPrivate::getSharedStyleSheet(
+ const QString &fileName, HbLayeredStyleLoader::LayerPriority priority)
{
#ifdef THEME_SERVER_TRACES
qDebug() << Q_FUNC_INFO;
@@ -293,7 +295,7 @@
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
HbThemeServerRequest requestType = EStyleSheetLookup;
- outputDataStream << (int)requestType;
+ outputDataStream << int(requestType);
outputDataStream << fileName;
outputDataStream << priority;
@@ -302,7 +304,7 @@
localSocket->flush();
localSocket->waitForReadyRead();
#ifdef THEME_SERVER_TRACES
- qDebug() <<"stylesheet req : " <<fileName;
+ qDebug() << "stylesheet req : " << fileName;
#endif
QByteArray inputByteArray = localSocket->readAll();
QDataStream inputDataStream(inputByteArray);
@@ -311,9 +313,8 @@
//-1 represents invalid offset
int cssOffset = -1;
-
inputDataStream >> temp;
- request = (HbThemeServerRequest)temp;
+ request = static_cast<HbThemeServerRequest>(temp);
// Need to handle the situation when both themechange
// request and stylesheet lookup info comes at the same time
@@ -328,8 +329,7 @@
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
}
}
- }
- else if (EThemeSelection==request){
+ } else if (EThemeSelection==request){
// Asked for stylesheet, got theme change request.. clean theme name
QString themeName;
inputDataStream >> themeName;
@@ -371,8 +371,7 @@
QByteArray outputByteArray;
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
HbThemeServerRequest requestType = EDeviceProfileOffset;
-
- outputDataStream << (int)requestType;
+ outputDataStream << int(requestType);
disconnect(localSocket, SIGNAL(readyRead()), this, SLOT(changeTheme()));
localSocket->write(outputByteArray);
@@ -386,7 +385,6 @@
//-1 represents invalid offset
int deviceProfileOffset = -1;
-
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
@@ -399,9 +397,9 @@
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
}
}
- }else if (EThemeSelection==request){
+ } else if (EThemeSelection==request){
// Asked for DeviceProfiles Offset, got theme change request..
- // clean theme name
+ // clean theme name
QString themeName;
inputDataStream >> themeName;
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
@@ -443,7 +441,7 @@
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
HbThemeServerRequest requestType = EEffectLookupFilePath;
- outputDataStream << (int)requestType;
+ outputDataStream << int(requestType);
outputDataStream << filePath;
disconnect(localSocket, SIGNAL(readyRead()), this, SLOT(changeTheme()));
@@ -452,7 +450,7 @@
localSocket->waitForReadyRead();
#ifdef THEME_SERVER_TRACES
- qDebug() <<"EEffectLookupFilePath req : " <<filePath;
+ qDebug() << "EEffectLookupFilePath req : " << filePath;
#endif
QByteArray inputByteArray = localSocket->readAll();
@@ -462,7 +460,6 @@
//-1 represents invalid offset
int effectOffset = -1;
-
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
@@ -470,17 +467,16 @@
// request and effect lookup info comes at the same time
// Just posting the ThemeChanged event so that it can be handled
// as next event and current effect load is not interrupted
- if (request==EEffectLookupFilePath) {
+ if (request == EEffectLookupFilePath) {
inputDataStream >> effectOffset;
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
- if (EThemeSelection==request) {
+ if (EThemeSelection == request) {
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
}
}
- }
- else if (EThemeSelection==request){
+ } else if (EThemeSelection == request){
// Asked for effect, got theme change request.. clean theme name
QString themeName;
inputDataStream >> themeName;
@@ -488,7 +484,7 @@
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
- if (EEffectLookupFilePath==request) {
+ if (EEffectLookupFilePath == request) {
inputDataStream >> effectOffset;
}
}
@@ -501,8 +497,7 @@
if (effectOffset >= 0) {
return HbMemoryUtils::getAddress<HbEffectFxmlData>(
HbMemoryManager::SharedMemory, effectOffset);
- }
- else {
+ } else {
return 0;
}
}
@@ -510,7 +505,7 @@
/**
* HbThemeClientPrivate::addSharedEffect()
*/
-bool HbThemeClientPrivate::addSharedEffect(const QString& filePath)
+bool HbThemeClientPrivate::addSharedEffect(const QString &filePath)
{
#ifdef THEME_SERVER_TRACES
qDebug() << Q_FUNC_INFO;
@@ -523,7 +518,7 @@
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
HbThemeServerRequest requestType = EEffectAdd;
- outputDataStream << (int)requestType;
+ outputDataStream << int(requestType);
outputDataStream << filePath;
disconnect(localSocket, SIGNAL(readyRead()), this, SLOT(changeTheme()));
@@ -532,19 +527,16 @@
localSocket->waitForReadyRead();
#ifdef THEME_SERVER_TRACES
- qDebug() <<"effectAdd req : " <<filePath;
+ qDebug() << "effectAdd req : " << filePath;
#endif
-
QByteArray inputByteArray = localSocket->readAll();
QDataStream inputDataStream(inputByteArray);
HbThemeServerRequest request;
int temp;
-
//-1 represents an error adding file to server
int effectAddReply = -1;
-
inputDataStream >> temp;
- request = (HbThemeServerRequest)temp;
+ request = static_cast<HbThemeServerRequest>(temp);
//TODO how to really handle situation when adding an effect when theme changes??
@@ -553,17 +545,17 @@
// request and effect lookup info comes at the same time
// Just posting the ThemeChanged event so that it can be handled
// as next event and current effect load is not interrupted
- if (request==EEffectAdd) {
+ if (request == EEffectAdd) {
inputDataStream >> effectAddReply;
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
- if (EThemeSelection==request) {
+ if (EThemeSelection == request) {
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
}
}
}
- else if (EThemeSelection==request){
+ else if (EThemeSelection == request){
// Asked for effect, got theme change request.. clean theme name
QString themeName;
inputDataStream >> themeName;
@@ -571,7 +563,7 @@
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
- if (EEffectAdd==request) {
+ if (EEffectAdd == request) {
inputDataStream >> effectAddReply;
}
}
@@ -580,10 +572,7 @@
// connecting again to handle theme change request from server
connect(localSocket, SIGNAL(readyRead()), this, SLOT(changeTheme()));
- if(effectAddReply >= 0)
- return true;
- else
- return false;
+ return (effectAddReply >= 0);
}
/**
@@ -601,14 +590,14 @@
inputDataStream >> request;
#ifdef THEME_SERVER_TRACES
- qDebug() << Q_FUNC_INFO << "recognizer: "<<request;
+ qDebug() << Q_FUNC_INFO << "recognizer: " << request;
#endif
- if(EThemeSelection==request) {
+ if(EThemeSelection == request) {
QString themeName;
inputDataStream >> themeName;
#ifdef THEME_SERVER_TRACES
- qDebug() << Q_FUNC_INFO <<"themeName is : " <<themeName;
+ qDebug() << Q_FUNC_INFO << "themeName is : " << themeName;
#endif
handleThemeChange(themeName);
}
@@ -662,7 +651,7 @@
void HbThemeClientPrivate::handleThemeChange(const QString &themeName)
{
#ifdef THEME_SERVER_TRACES
- qDebug() << Q_FUNC_INFO <<"themeChanged(): called";
+ qDebug() << Q_FUNC_INFO << "themeChanged(): called";
#endif
hbInstance->theme()->d_ptr->handleThemeChange(themeName);
}
@@ -682,12 +671,12 @@
/**
* HbThemeClientPrivate::unloadIcon()
*/
-void HbThemeClientPrivate::unloadIcon(const QString& iconPath ,
+void HbThemeClientPrivate::unloadIcon(const QString &iconPath,
const QSizeF &size,
Qt::AspectRatioMode aspectRatioMode,
QIcon::Mode mode,
bool mirrored,
- const QColor& color,
+ const QColor &color,
HbRenderingMode renderMode)
{
if ( !clientConnected ) {
@@ -698,7 +687,7 @@
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
HbThemeServerRequest requestType;
requestType = EUnloadIcon;
- outputDataStream << (int)requestType;
+ outputDataStream << int(requestType);
outputDataStream << iconPath;
outputDataStream << size;
outputDataStream << aspectRatioMode;
@@ -726,17 +715,17 @@
// request and Reference count decrement comes at the same time
// Just posting the ThemeChnaged event so that it can be handled
// as next event and current pixmap load is not interrupted
- if (EUnloadIcon ==request) {
+ if (EUnloadIcon == request) {
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
- if (EThemeSelection==request) {
+ if (EThemeSelection == request) {
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
}
}
}
- else if (EThemeSelection==request){
+ else if (EThemeSelection == request){
// Asked for reference count decrement got theme change request.. clean theme name
QString themeName;
inputDataStream >> themeName;
@@ -760,7 +749,7 @@
*
* unload multiple icons
*/
-void HbThemeClientPrivate::unLoadMultiIcon(const QStringList& iconPathList,
+void HbThemeClientPrivate::unLoadMultiIcon(const QStringList &iconPathList,
const QVector<QSizeF> &sizeList,
Qt::AspectRatioMode aspectRatioMode,
QIcon::Mode mode,
@@ -768,6 +757,8 @@
const QColor &color,
HbRenderingMode renderMode)
{
+ // TODO: this request is currently not implemented in server side.
+
if ( !clientConnected ) {
return;
}
@@ -807,17 +798,15 @@
// request and Reference count decrement comes at the same time
// Just posting the ThemeChnaged event so that it can be handled
// as next event and current pixmap load is not interrupted
- if (EUnloadMultiIcon ==request) {
-
+ if (EUnloadMultiIcon == request) {
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
- request = (HbThemeServerRequest)temp;
- if (EThemeSelection==request) {
+ request = static_cast<HbThemeServerRequest>(temp);
+ if (EThemeSelection == request) {
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
}
}
- }
- else if (EThemeSelection==request){
+ } else if (EThemeSelection == request){
// Asked for reference count decrement got theme change request.. clean theme name
QString themeName;
inputDataStream >> themeName;
@@ -830,23 +819,20 @@
}
}
}
-
// connecting again to handle theme change request from server
connect(localSocket, SIGNAL(readyRead()), this, SLOT(changeTheme()));
}
-
-
-HbSharedIconInfo HbThemeClientPrivate::getMultiPartIconInfo(const QStringList &multiPartIconList,
- const HbMultiPartSizeData &multiPartIconData ,
- const QSizeF &size,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- HbIconLoader::IconLoaderOptions options,
- const QColor &color,
- HbRenderingMode renderMode)
-
+HbSharedIconInfo HbThemeClientPrivate::getMultiPartIconInfo(
+ const QStringList &multiPartIconList,
+ const HbMultiPartSizeData &multiPartIconData,
+ const QSizeF &size,
+ Qt::AspectRatioMode aspectRatioMode,
+ QIcon::Mode mode,
+ bool mirrored,
+ HbIconLoader::IconLoaderOptions options,
+ const QColor &color,
+ HbRenderingMode renderMode)
{
#ifdef THEME_SERVER_TRACES
@@ -858,12 +844,11 @@
return iconInfo;
}
-
- int noOfPieces = 1;
- if (multiPartIconData.multiPartIconId.contains("_3PV",Qt::CaseInsensitive)
- || multiPartIconData.multiPartIconId.contains("_3PH",Qt::CaseInsensitive)) {
+ int noOfPieces = 1;
+ if (multiPartIconData.multiPartIconId.contains("_3PV", Qt::CaseInsensitive)
+ || multiPartIconData.multiPartIconId.contains("_3PH", Qt::CaseInsensitive)) {
noOfPieces = 3;
- } else if (multiPartIconData.multiPartIconId.contains("_9P",Qt::CaseInsensitive)) {
+ } else if (multiPartIconData.multiPartIconId.contains("_9P", Qt::CaseInsensitive)) {
noOfPieces = 9;
}
@@ -871,18 +856,16 @@
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
HbThemeServerRequest requestType;
requestType = EMultiPieceIcon;
- outputDataStream << (int)requestType;
+ outputDataStream << int(requestType);
outputDataStream << multiPartIconList;
outputDataStream << multiPartIconData.multiPartIconId;
for (int i = 0; i< noOfPieces; i++) {
outputDataStream << multiPartIconData.sources[i];
}
-
for (int i = 0; i < noOfPieces; i++) {
outputDataStream << multiPartIconData.targets[i];
}
-
for (int i = 0; i < noOfPieces; i++) {
outputDataStream << multiPartIconData.pixmapSizes[i];
}
@@ -912,6 +895,7 @@
// Just posting the ThemeChnaged event so that it can be handled
// as next event and current pixmap load is not interrupted
if (EMultiPieceIcon == request) {
+ inputDataStream >> temp; // Read the EIconLookup request identifier
readIconInfo(inputDataStream, iconInfo);
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
@@ -920,8 +904,7 @@
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
}
}
- }
- else if (EThemeSelection == request) {
+ } else if (EThemeSelection == request) {
// Asked for pixmap, got theme change request.. clean theme name
QString themeName;
inputDataStream >> themeName;
@@ -929,7 +912,8 @@
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
- if (EMultiPieceIcon==request) {
+ if (EMultiPieceIcon == request) {
+ inputDataStream >> temp; // Read the EIconLookup request identifier
readIconInfo(inputDataStream, iconInfo);
}
}
@@ -944,14 +928,15 @@
* getMultiIconInfo function returns a list of HbSharedIconInfo
* for the given list of frameitems.
*/
-HbSharedIconInfoList HbThemeClientPrivate::getMultiIconInfo(const QStringList &multiPartIconList,
- const QVector<QSizeF> &sizeList,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- HbIconLoader::IconLoaderOptions options,
- const QColor &color,
- HbRenderingMode renderMode)
+HbSharedIconInfoList HbThemeClientPrivate::getMultiIconInfo(
+ const QStringList &multiPartIconList,
+ const QVector<QSizeF> &sizeList,
+ Qt::AspectRatioMode aspectRatioMode,
+ QIcon::Mode mode,
+ bool mirrored,
+ HbIconLoader::IconLoaderOptions options,
+ const QColor &color,
+ HbRenderingMode renderMode)
{
HbSharedIconInfoList sharedIconInfoList;
@@ -977,6 +962,7 @@
outputDataStream << options;
outputDataStream << color;
outputDataStream << renderMode;
+
disconnect(localSocket, SIGNAL(readyRead()), this, SLOT(changeTheme()));
localSocket->write(outputByteArray);
localSocket->flush();
@@ -993,12 +979,13 @@
// Need to handle the situation when both themechange
// request and pixmap info comes at the same time
- // Just posting the ThemeChnaged event so that it can be handled
+ // Just posting the ThemeChanged event so that it can be handled
// as next event and current pixmap load is not interrupted
if (EMultiIcon == request) {
- for (int i = 0; i< noOfPieces; i++) {
- readIconInfo(inputDataStream, sharedIconInfoList.icon[i]);
- }
+ for (int i = 0; i< noOfPieces; i++) {
+ inputDataStream >> temp; // Read the EIconLookup request identifier
+ readIconInfo(inputDataStream, sharedIconInfoList.icon[i]);
+ }
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
@@ -1006,8 +993,7 @@
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
}
}
- }
- else if (EThemeSelection == request) {
+ } else if (EThemeSelection == request) {
// Asked for pixmap, got theme change request.. clean theme name
QString themeName;
inputDataStream >> themeName;
@@ -1015,17 +1001,17 @@
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
- if (EMultiIcon==request) {
- for (int i = 0; i< noOfPieces; i++) {
- readIconInfo(inputDataStream, sharedIconInfoList.icon[i]);
- }
+ if (EMultiIcon == request) {
+ for (int i = 0; i < noOfPieces; i++) {
+ inputDataStream >> temp; // Read the EIconLookup request identifier
+ readIconInfo(inputDataStream, sharedIconInfoList.icon[i]);
+ }
}
}
}
// connecting again to handle theme change request from server
connect(localSocket, SIGNAL(readyRead()), this, SLOT(changeTheme()));
-
return sharedIconInfoList;
}
@@ -1044,7 +1030,6 @@
#ifdef THEME_SERVER_TRACES
qDebug() << Q_FUNC_INFO;
#endif
-
QByteArray outputByteArray;
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
HbThemeServerRequest requestType = EFreeSharedMem;
@@ -1060,7 +1045,6 @@
QDataStream inputDataStream(inputByteArray);
HbThemeServerRequest request;
int temp;
-
int freeSharedMem = 0;
inputDataStream >> temp;
@@ -1071,18 +1055,18 @@
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
- if (EThemeSelection==request) {
+ if (EThemeSelection == request) {
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
}
}
- }else if (EThemeSelection == request){
+ } else if (EThemeSelection == request){
QString themeName;
inputDataStream >> themeName;
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
- if (EFreeSharedMem== request) {
+ if (EFreeSharedMem == request) {
inputDataStream >> freeSharedMem;
}
}
@@ -1105,7 +1089,7 @@
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
HbThemeServerRequest requestType = EAllocatedSharedMem;
- outputDataStream << (int)requestType;
+ outputDataStream << int(requestType);
disconnect(localSocket, SIGNAL(readyRead()), this, SLOT(changeTheme()));
localSocket->write(outputByteArray);
@@ -1116,7 +1100,6 @@
QDataStream inputDataStream(inputByteArray);
HbThemeServerRequest request;
int temp;
-
int allocatedSharedMem = 0;
inputDataStream >> temp;
@@ -1127,7 +1110,7 @@
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
- if (EThemeSelection==request) {
+ if (EThemeSelection == request) {
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
}
}
@@ -1138,7 +1121,7 @@
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
- if (EAllocatedSharedMem== request) {
+ if (EAllocatedSharedMem == request) {
inputDataStream >> allocatedSharedMem;
}
}
@@ -1180,7 +1163,7 @@
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
HbThemeServerRequest requestType = ECreateMemoryReport;
- outputDataStream << (int)requestType;
+ outputDataStream << int(requestType);
disconnect(localSocket, SIGNAL(readyRead()), this, SLOT(changeTheme()));
localSocket->write(outputByteArray);
@@ -1188,7 +1171,6 @@
}
#endif
-
/**
* HbThemeClientPrivate::typefaceInfo()
*/
@@ -1197,7 +1179,6 @@
#ifdef THEME_SERVER_TRACES
qDebug() << Q_FUNC_INFO;
#endif
-
if ( !clientConnected ) {
return 0;
}
@@ -1206,7 +1187,7 @@
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
HbThemeServerRequest requestType = ETypefaceOffset;
- outputDataStream << (int)requestType;
+ outputDataStream << int(requestType);
disconnect(localSocket, SIGNAL(readyRead()), this, SLOT(changeTheme()));
localSocket->write(outputByteArray);
@@ -1229,11 +1210,11 @@
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
- if (EThemeSelection==request) {
+ if (EThemeSelection == request) {
QCoreApplication::postEvent(this, new HbEvent(HbEvent::ThemeChanged));
}
}
- }else if (EThemeSelection==request){
+ }else if (EThemeSelection == request){
// Asked for Typeface Offset, got theme change request..
// clean theme name
QString themeName;
@@ -1242,7 +1223,7 @@
if (!inputDataStream.atEnd()) {
inputDataStream >> temp;
request = (HbThemeServerRequest)temp;
- if (ETypefaceOffset== request) {
+ if (ETypefaceOffset == request) {
inputDataStream >> typefaceOffset;
}
}
--- a/src/hbcore/theme/hbthemeclient_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbthemeclient_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -113,8 +113,7 @@
: QByteArray();
}
-
- HbSharedIconInfo HbThemeClient::getMultiPartIconInfo(const QStringList &multiPartIconList,
+HbSharedIconInfo HbThemeClient::getMultiPartIconInfo(const QStringList &multiPartIconList,
const HbMultiPartSizeData &multiPartIconData ,
const QSizeF &size,
Qt::AspectRatioMode aspectRatioMode,
@@ -125,7 +124,8 @@
HbRenderingMode renderMode)
{
Q_D(HbThemeClient);
- return d->getMultiPartIconInfo(multiPartIconList, multiPartIconData, size, aspectRatioMode, mode, mirrored, options, color, renderMode);
+ return d->getMultiPartIconInfo(multiPartIconList, multiPartIconData, size,
+ aspectRatioMode, mode, mirrored, options, color, renderMode);
}
/**
@@ -134,14 +134,17 @@
* \a fielName css filename
* \a priority layer priority
*/
-HbCss::StyleSheet *HbThemeClient::getSharedStyleSheet(const QString &fileName, HbLayeredStyleLoader::LayerPriority priority)
+HbCss::StyleSheet *HbThemeClient::getSharedStyleSheet(const QString &fileName,
+ HbLayeredStyleLoader::LayerPriority priority)
{
int offset = -1;
if( HbLayeredStyleLoader::Priority_Core == priority ) {
offset = sharedCacheItemOffset(HbSharedCache::Stylesheet, fileName);
}
if ( -1 != offset ) {
- HbCss::StyleSheet *styleSheet = HbMemoryUtils::getAddress<HbCss::StyleSheet>(HbMemoryManager::SharedMemory,offset);
+ HbCss::StyleSheet *styleSheet =
+ HbMemoryUtils::getAddress<HbCss::StyleSheet>(HbMemoryManager::SharedMemory,
+ offset);
return styleSheet;
}
Q_D(HbThemeClient);
@@ -155,12 +158,16 @@
* \a layout
* \a section
*/
-HbWidgetLoader::LayoutDefinition *HbThemeClient::getSharedLayoutDefs(const QString &fileName,const QString &layout,const QString §ion)
+HbWidgetLoader::LayoutDefinition *HbThemeClient::getSharedLayoutDefs(const QString &fileName,
+ const QString &layout,
+ const QString §ion)
{
- int offset = sharedCacheItemOffset(HbSharedCache::LayoutDefinition, fileName + layout + section);
+ int offset = sharedCacheItemOffset(HbSharedCache::LayoutDefinition,
+ fileName + layout + section);
if ( -1 != offset ) {
HbWidgetLoader::LayoutDefinition *layoutDefs =
- HbMemoryUtils::getAddress<HbWidgetLoader::LayoutDefinition>(HbMemoryManager::SharedMemory,offset);
+ HbMemoryUtils::getAddress<HbWidgetLoader::LayoutDefinition>(HbMemoryManager::SharedMemory,
+ offset);
return layoutDefs;
}
Q_D(HbThemeClient);
@@ -184,7 +191,6 @@
return d->typefaceInfo();
}
-
/**
* HbThemeClient::notifyForegroundLostToServer()
*
@@ -204,7 +210,8 @@
{
int offset = sharedCacheItemOffset(HbSharedCache::Effect, filePath);
if ( -1 != offset ) {
- HbEffectFxmlData *effectFxmlData = HbMemoryUtils::getAddress<HbEffectFxmlData>(HbMemoryManager::SharedMemory,offset);
+ HbEffectFxmlData *effectFxmlData =
+ HbMemoryUtils::getAddress<HbEffectFxmlData>(HbMemoryManager::SharedMemory, offset);
return effectFxmlData;
}
Q_D(HbThemeClient);
@@ -331,8 +338,12 @@
*/
int HbThemeClient::sharedCacheItemOffset(HbSharedCache::ItemType type, const QString & key)
{
+ int offset = -1;
HbSharedCache *cache = HbSharedCache::instance();
- return cache->offset(type, key);
+ if (cache) {
+ offset = cache->offset(type, key);
+ }
+ return offset;
}
#ifdef HB_THEME_SERVER_MEMORY_REPORT
@@ -361,7 +372,8 @@
HbRenderingMode renderMode)
{
Q_D(HbThemeClient);
- return d->getMultiIconInfo(multiPartIconList, sizeList,aspectRatioMode, mode, mirrored, options, color, renderMode);
+ return d->getMultiIconInfo(multiPartIconList, sizeList,aspectRatioMode, mode,
+ mirrored, options, color, renderMode);
}
/**
--- a/src/hbcore/theme/hbthemeclient_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbthemeclient_p.h Thu May 27 13:10:59 2010 +0300
@@ -42,14 +42,12 @@
class HB_AUTOTEST_EXPORT HbThemeClient
{
-
public:
-
bool connectToServer();
QSizeF getSharedIconDefaultSize(const QString &iconPath);
- HbSharedIconInfo getSharedIconInfo(const QString& iconPath ,
+ HbSharedIconInfo getSharedIconInfo(const QString &iconPath,
const QSizeF &size,
Qt::AspectRatioMode aspectRatioMode,
QIcon::Mode mode,
@@ -60,20 +58,23 @@
QByteArray getSharedBlob(const QString &name);
- HbWidgetLoader::LayoutDefinition *getSharedLayoutDefs(const QString &fileName,const QString &layout,const QString §ion);
-
- HbCss::StyleSheet *getSharedStyleSheet(const QString &filepath, HbLayeredStyleLoader::LayerPriority priority);
+ HbWidgetLoader::LayoutDefinition *getSharedLayoutDefs(const QString &fileName,
+ const QString &layout,
+ const QString §ion);
+ HbCss::StyleSheet *getSharedStyleSheet(
+ const QString &filepath,
+ HbLayeredStyleLoader::LayerPriority priority);
HbEffectFxmlData *getSharedEffect(const QString &filePath);
- bool addSharedEffect(const QString& filePath);
+ bool addSharedEffect(const QString &filePath);
HbDeviceProfileList *deviceProfiles();
HbTypefaceInfoVector *typefaceInfo();
void notifyForegroundLostToServer();
- void unloadIcon(const QString& iconPath ,
+ void unloadIcon(const QString &iconPath,
const QSizeF &size,
Qt::AspectRatioMode aspectRatioMode,
QIcon::Mode mode,
@@ -81,7 +82,7 @@
const QColor &color,
HbRenderingMode renderMode);
- void unLoadMultiIcon(const QStringList& iconPathList,
+ void unLoadMultiIcon(const QStringList &iconPathList,
const QVector<QSizeF> &sizeList,
Qt::AspectRatioMode aspectRatioMode,
QIcon::Mode mode,
@@ -90,7 +91,7 @@
HbRenderingMode renderMode);
HbSharedIconInfo getMultiPartIconInfo(const QStringList &multiPartIconList,
- const HbMultiPartSizeData &multiPartIconData ,
+ const HbMultiPartSizeData &multiPartIconData,
const QSizeF &size,
Qt::AspectRatioMode aspectRatioMode,
QIcon::Mode mode,
@@ -100,7 +101,7 @@
HbRenderingMode renderMode);
HbSharedIconInfoList getMultiIconInfo(const QStringList &multiPartIconList,
- const QVector<QSizeF> &sizeList ,
+ const QVector<QSizeF> &sizeList,
Qt::AspectRatioMode aspectRatioMode,
QIcon::Mode mode,
bool mirrored,
--- a/src/hbcore/theme/hbthemeclient_p_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbthemeclient_p_p.h Thu May 27 13:10:59 2010 +0300
@@ -77,9 +77,12 @@
const QColor &color,
HbRenderingMode renderMode);
- HbWidgetLoader::LayoutDefinition *getSharedLayoutDefs(const QString &fileName, const QString &layout, const QString §ion);
+ HbWidgetLoader::LayoutDefinition *getSharedLayoutDefs(const QString &fileName,
+ const QString &layout,
+ const QString §ion);
- HbCss::StyleSheet *getSharedStyleSheet(const QString &filepath, HbLayeredStyleLoader::LayerPriority priority);
+ HbCss::StyleSheet *getSharedStyleSheet(const QString &filepath,
+ HbLayeredStyleLoader::LayerPriority priority);
HbEffectFxmlData *getSharedEffect(const QString &filePath);
--- a/src/hbcore/theme/hbthemeclient_symbian_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbthemeclient_symbian_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -61,7 +61,7 @@
bool HbThemeClientPrivate::connectToServer()
{
TInt error(KErrNone);
- for( int tries(0); tries < 100; tries++) {
+ for(int tries(0); tries < 3; tries++) {
error = CreateSession(KThemeServerName, Version(), KDefaultMessageSlots);
if(!error) {
// connected to existing server - OK
@@ -72,7 +72,7 @@
break;
}
error = StartServer();
- if(!error || (error ==KErrAlreadyExists)) {
+ if(!error || (error == KErrAlreadyExists)) {
// If server launched ok , try again to connect
continue;
}
@@ -103,7 +103,7 @@
KThemeServerBuildVersionNumber));
}
-QSizeF HbThemeClientPrivate::getSharedIconDefaultSize(const QString& iconPath)
+QSizeF HbThemeClientPrivate::getSharedIconDefaultSize(const QString &iconPath)
{
if (!clientConnected) {
return QSizeF();
@@ -132,7 +132,7 @@
*
* Returns the shared icon information
*/
-HbSharedIconInfo HbThemeClientPrivate::getSharedIconInfo(const QString& iconPath ,
+HbSharedIconInfo HbThemeClientPrivate::getSharedIconInfo(const QString &iconPath,
const QSizeF &size,
Qt::AspectRatioMode aspectRatioMode,
QIcon::Mode mode,
@@ -178,15 +178,16 @@
* getMultiPartIconInfo
*/
-HbSharedIconInfo HbThemeClientPrivate::getMultiPartIconInfo(const QStringList &multiPartIconList,
- const HbMultiPartSizeData &multiPartIconData ,
- const QSizeF &size,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- HbIconLoader::IconLoaderOptions options,
- const QColor &color,
- HbRenderingMode renderMode)
+HbSharedIconInfo HbThemeClientPrivate::getMultiPartIconInfo(
+ const QStringList &multiPartIconList,
+ const HbMultiPartSizeData &multiPartIconData,
+ const QSizeF &size,
+ Qt::AspectRatioMode aspectRatioMode,
+ QIcon::Mode mode,
+ bool mirrored,
+ HbIconLoader::IconLoaderOptions options,
+ const QColor &color,
+ HbRenderingMode renderMode)
{
HbSharedIconInfo sharedIconInfo;
sharedIconInfo.type = INVALID_FORMAT;
@@ -205,10 +206,10 @@
params.multiPartIconList[i].Copy(pieceIconId);
}
int noOfPieces = 1;
- if (multiPartIconData.multiPartIconId.contains("_3PV",Qt::CaseInsensitive)
- || multiPartIconData.multiPartIconId.contains("_3PH",Qt::CaseInsensitive)) {
+ if (multiPartIconData.multiPartIconId.contains("_3PV", Qt::CaseInsensitive)
+ || multiPartIconData.multiPartIconId.contains("_3PH", Qt::CaseInsensitive)) {
noOfPieces = 3;
- } else if (multiPartIconData.multiPartIconId.contains("_9P",Qt::CaseInsensitive)) {
+ } else if (multiPartIconData.multiPartIconId.contains("_9P", Qt::CaseInsensitive)) {
noOfPieces = 9;
}
@@ -247,12 +248,13 @@
*
* Returns the shared css(stylesheet) information
*/
-HbCss::StyleSheet *HbThemeClientPrivate::getSharedStyleSheet(const QString &fileName, HbLayeredStyleLoader::LayerPriority priority)
+HbCss::StyleSheet *HbThemeClientPrivate::getSharedStyleSheet(
+ const QString &fileName, HbLayeredStyleLoader::LayerPriority priority)
{
if ( !clientConnected ) {
return 0;
}
- HbCss::StyleSheet* styleSheet(0);
+ HbCss::StyleSheet *styleSheet(0);
TBuf<256> fileDes(fileName.utf16());
TBuf<5> layerPriority;
@@ -316,7 +318,8 @@
if (KErrNone == err) {
#ifdef THEME_SERVER_TRACES
- qDebug() << "HbThemeClientPrivate::getSharedEffect effectInfo.offSet is:" << effectInfo.offset;
+ qDebug() << "HbThemeClientPrivate::getSharedEffect effectInfo.offSet is:"
+ << effectInfo.offset;
#endif
if (effectInfo.offset >= 0) {
fxmlData = HbMemoryUtils::getAddress<HbEffectFxmlData>(
@@ -335,7 +338,7 @@
*
* Adds the shared effect information
*/
-bool HbThemeClientPrivate::addSharedEffect(const QString& filePath)
+bool HbThemeClientPrivate::addSharedEffect(const QString &filePath)
{
#ifdef THEME_SERVER_TRACES
qDebug() << "HbThemeClientPrivate::addSharedEffect" << filePath;
@@ -384,7 +387,7 @@
*
* unload icon
*/
-void HbThemeClientPrivate::unloadIcon(const QString& iconPath ,
+void HbThemeClientPrivate::unloadIcon(const QString &iconPath,
const QSizeF &size,
Qt::AspectRatioMode aspectRatioMode,
QIcon::Mode mode,
@@ -411,7 +414,7 @@
params.renderMode = (TUint8)renderMode;
TPckg<TIconParams> paramPckg(params);
- TIpcArgs args(¶mPckg,0);
+ TIpcArgs args(¶mPckg, 0);
SendReceive(EUnloadIcon, args);
}
@@ -420,7 +423,7 @@
*
* unload multiple icons
*/
-void HbThemeClientPrivate::unLoadMultiIcon(const QStringList& iconPathList,
+void HbThemeClientPrivate::unLoadMultiIcon(const QStringList &iconPathList,
const QVector<QSizeF> &sizeList,
Qt::AspectRatioMode aspectRatioMode,
QIcon::Mode mode,
@@ -458,13 +461,14 @@
*
* Returns the layout definition for the given file name,layout name,section name
*/
-HbWidgetLoader::LayoutDefinition* HbThemeClientPrivate::getSharedLayoutDefs(const QString &fileName,const QString &layout,const QString §ion)
+HbWidgetLoader::LayoutDefinition *HbThemeClientPrivate::getSharedLayoutDefs(
+ const QString &fileName, const QString &layout, const QString §ion)
{
if ( !clientConnected ) {
return 0;
}
- HbWidgetLoader::LayoutDefinition* layoutDef(0);
+ HbWidgetLoader::LayoutDefinition *layoutDef(0);
TBuf<256> fileDes(fileName.utf16());
TBuf<256> layoutDes(layout.utf16());
@@ -492,9 +496,9 @@
HbDeviceProfileList *HbThemeClientPrivate::deviceProfiles()
{
if ( !clientConnected ) {
- if(!connectToServer()) {
- qWarning()<<"Theme client unable to connect to server in HbThemeClientPrivate::deviceProfiles";
- return 0;
+ if(!connectToServer()) {
+ qWarning() << "Theme client unable to connect to server in HbThemeClientPrivate::deviceProfiles";
+ return 0;
}
}
@@ -558,22 +562,21 @@
TInt HbThemeClientPrivate::CreateServerProcess()
{
TInt result;
- const TUid KServerUid2={0x100039CE};
- const TUidType serverUid( KNullUid, KServerUid2, KServerUid3 );
+ const TUid KServerUid2 = {0x100039CE};
+ const TUidType serverUid(KNullUid, KServerUid2, KServerUid3);
RProcess server;
_LIT(KThemeServerExe,"hbthemeserver.exe");
- result = server.Create( KThemeServerExe, KNullDesC, EOwnerProcess );
+ result = server.Create(KThemeServerExe, KNullDesC, EOwnerProcess);
if (KErrNone != result) {
return result;
}
TRequestStatus status;
server.Rendezvous(status);
- if (status!=KRequestPending) {
+ if (status != KRequestPending) {
server.Kill(0); // abort startup
- }
- else {
+ } else {
server.Resume(); // logon OK - start the server
}
User::WaitForRequest(status);// wait for start or death
@@ -585,14 +588,15 @@
* getMultiIconInfo function returns a list of HbSharedIconInfo
* for the given list of frameitems.
*/
-HbSharedIconInfoList HbThemeClientPrivate::getMultiIconInfo(const QStringList &multiPartIconList,
- const QVector<QSizeF> &sizeList ,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- HbIconLoader::IconLoaderOptions options,
- const QColor &color,
- HbRenderingMode renderMode)
+HbSharedIconInfoList HbThemeClientPrivate::getMultiIconInfo(
+ const QStringList &multiPartIconList,
+ const QVector<QSizeF> &sizeList,
+ Qt::AspectRatioMode aspectRatioMode,
+ QIcon::Mode mode,
+ bool mirrored,
+ HbIconLoader::IconLoaderOptions options,
+ const QColor &color,
+ HbRenderingMode renderMode)
{
Q_UNUSED(options)
@@ -644,14 +648,16 @@
{
int freeSharedMem = -1;
if ( !clientConnected ) {
- qWarning()<<"Theme client unable to connect to server in HbThemeClientPrivate::freeSharedMemory";
+ qWarning() << "Theme client unable to connect to server in HbThemeClientPrivate::freeSharedMemory";
return freeSharedMem;
}
TPckg<int> freeInfo(freeSharedMem);
TIpcArgs args(0, &freeInfo);
TInt err = SendReceive(EFreeSharedMem, args);
+#ifdef THEME_SERVER_TRACES
qDebug() << "HbThemeClientPrivate::freeSharedMemory end";
+#endif
return freeSharedMem;
}
@@ -662,7 +668,7 @@
{
int allocatedSharedMem = -1;
if ( !clientConnected ) {
- qWarning()<<"Theme client unable to connect to server in HbThemeClientPrivate::allocatedSharedMemory";
+ qWarning() << "Theme client unable to connect to server in HbThemeClientPrivate::allocatedSharedMemory";
return allocatedSharedMem;
}
@@ -679,7 +685,7 @@
{
int allocatedHeapMem = -1;
if ( !clientConnected ) {
- qWarning()<<"Theme client unable to connect to server in HbThemeClientPrivate::allocatedHeapMemory";
+ qWarning() << "Theme client unable to connect to server in HbThemeClientPrivate::allocatedHeapMemory";
return allocatedHeapMem;
}
@@ -736,7 +742,7 @@
{
if ( !clientConnected ) {
if(!connectToServer()) {
- qWarning()<<"Theme client unable to connect to server in HbThemeClientPrivate::typefaceInfo";
+ qWarning() << "Theme client unable to connect to server in HbThemeClientPrivate::typefaceInfo";
return 0;
}
}
--- a/src/hbcore/theme/hbthemecommon_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbthemecommon_p.h Thu May 27 13:10:59 2010 +0300
@@ -38,6 +38,7 @@
#endif
#define THEME_SERVER_NAME "hbthemeserver"
+#define SHARED_MEMORY_MANAGER_UNIT_TEST "unittest_hbsharedmemorymanager"
#define BIN_CSS_APP "hbbincssmaker"
#define BIN_CSS_APP_SYMBIAN "hbbincssmaker_symbian"
#ifdef HB_BIN_CSS
@@ -273,8 +274,7 @@
};
// Function codes (opcodes) used in message passing between client and server
-enum HbThemeServerRequest
- {
+enum HbThemeServerRequest {
EInvalidServerRequest = 0,
EIconLookup = 1,
EIconDefaultSize,
@@ -330,18 +330,17 @@
#ifdef HB_THEME_SERVER_MEMORY_REPORT
,ECreateMemoryReport
#endif
- };
+ };
//Rendering Modes
-enum HbRenderingMode
-{
- ESWRendering,
- EHWRendering
+enum HbRenderingMode {
+ ESWRendering,
+ EHWRendering
};
struct HbFreeRamNotificationData
{
- int bytesToFree;
- bool useSwRendering;
+ int bytesToFree;
+ bool useSwRendering;
};
#endif /* HBTHEMECOMMON_P_H */
--- a/src/hbcore/theme/hbthemelistener_symbian_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbthemelistener_symbian_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -22,7 +22,9 @@
** Nokia at developer.feedback@nokia.com.
**
****************************************************************************/
-
+#include "hbthemelistener_symbian_p.h"
+#include "hbthemeclient_p_p.h"
+#include "hbthemecommon_symbian_p.h"
#include <qglobal.h>
#include <QDebug>
@@ -34,10 +36,6 @@
#include <hbmemoryutils_p.h>
#endif
-#include "hbthemeclient_p_p.h"
-#include "hbthemelistener_symbian_p.h"
-#include "hbthemecommon_symbian_p.h"
-
/**
* Constructor
*/
@@ -71,12 +69,11 @@
SetActive();
TBuf<256> newTheme;
if (KErrNone == mRepository->Get(HbThemeUtils::CurrentThemeSetting, newTheme)) {
- QString qnewTheme((QChar*)newTheme.Ptr(),newTheme.Length());
+ QString qnewTheme((QChar*)newTheme.Ptr(), newTheme.Length());
themeClient->handleThemeChange(qnewTheme);
}
}
-
/**
* DoCancel
*/
@@ -84,4 +81,3 @@
{
mRepository->NotifyCancelAll();
}
-
--- a/src/hbcore/theme/hbthemelistener_symbian_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbthemelistener_symbian_p.h Thu May 27 13:10:59 2010 +0300
@@ -23,14 +23,16 @@
**
****************************************************************************/
-#ifndef HBTHEMELISTENER_P_H
-#define HBTHEMELISTENER_P_H
+#ifndef HBTHEMELISTENER_SYMBIAN_P_H
+#define HBTHEMELISTENER_SYMBIAN_P_H
#include <e32base.h>
#include <e32property.h>
#include <centralrepository.h>
-class CHbThemeListenerPrivate:public CActive
+class HbThemeClientPrivate;
+
+class CHbThemeListenerPrivate : public CActive
{
public:
//themeClient is notified, when the theme changes.
@@ -44,6 +46,4 @@
CRepository *mRepository;
};
-#endif /*HBTHEMELISTENER_P_H_ */
-
-
+#endif /*HBTHEMELISTENER_SYMBIAN_P_H */
--- a/src/hbcore/theme/hbthemeutils_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbthemeutils_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -62,7 +62,8 @@
static const char *defaultThemeVariable = "DefaultActiveTheme";
// These are the used setting names corresponding to HbThemeUtils::Setting enumeration.
-static const QString settingNames[6] = {"", "basetheme", "defaulttheme", "defaultthemedir", "currenttheme", "operatorbasepath"};
+static const QString settingNames[6] = {"", "basetheme", "defaulttheme",
+ "defaultthemedir", "currenttheme", "operatorbasepath"};
static const char *getResourceFolderName(Hb::ResourceType resType)
{
switch(resType) {
@@ -100,11 +101,14 @@
HbThemeUtilsPrivate() : settingsRetrieved(false)
{
// add the operator level, app level and platform level hierarchies in the hierarchy list.
- hierarchies << HbHierarchy(HbThemeUtils::operatorHierarchy, HbLayeredStyleLoader::Priority_Operator)
+ hierarchies << HbHierarchy(HbThemeUtils::operatorHierarchy,
+ HbLayeredStyleLoader::Priority_Operator)
#ifdef USE_APPTHEMES
- << HbHierarchy(HbThemeUtils::appHierarchy, HbLayeredStyleLoader::Priority_Application)
+ << HbHierarchy(HbThemeUtils::appHierarchy,
+ HbLayeredStyleLoader::Priority_Application)
#endif
- << HbHierarchy(HbThemeUtils::platformHierarchy, HbLayeredStyleLoader::Priority_Theme);
+ << HbHierarchy(HbThemeUtils::platformHierarchy,
+ HbLayeredStyleLoader::Priority_Theme);
}
QString constructOperatorPath(const QString &operatorPath, const QString &fileName) const
{
@@ -136,7 +140,8 @@
if (!operatorName.isEmpty()) {
QStringList operatorPaths;
operatorPaths << QLatin1String(HbThemeUtils::operatorHierarchy) + '/';
- operatorPaths = HbStandardDirs::findExistingFolderList(operatorPaths, QString(), Hb::IconResource);
+ operatorPaths = HbStandardDirs::findExistingFolderList(operatorPaths, QString(),
+ Hb::IconResource);
for (int i=0;i < operatorPaths.size();i++) {
if (operatorPaths[i] == operatorName) {
operatorPath = operatorPaths[i] + '/' + operatorName;
@@ -148,10 +153,7 @@
void HbThemeUtilsPrivate::readSettings()
{
- // Read settings from QSettings and store them in member variables to
- // avoid slow instantiating of QSettings in advance.
-
- // The only changing setting is currentThemeSetting and its value is updated in theme change event.
+ // The only changing setting is currentThemeSetting and its value is updated in server side in theme change event.
if (!settingsRetrieved) {
#ifdef Q_OS_SYMBIAN
@@ -159,31 +161,31 @@
TRAP_IGNORE(repository = CRepository::NewL(KServerUid3));
if (repository) {
TBuf<256> value;
- if (KErrNone == repository->Get(HbThemeUtils::CurrentThemeSetting,value)) {
- QString qvalue((QChar*)value.Ptr(),value.Length());
+ if (KErrNone == repository->Get(HbThemeUtils::CurrentThemeSetting, value)) {
+ QString qvalue((QChar*)value.Ptr(), value.Length());
currentTheme = qvalue.trimmed();
}
value.Zero();
- if (KErrNone == repository->Get(HbThemeUtils::DefaultThemeSetting,value)) {
- QString qvalue((QChar*)value.Ptr(),value.Length());
+ if (KErrNone == repository->Get(HbThemeUtils::DefaultThemeSetting, value)) {
+ QString qvalue((QChar*)value.Ptr(), value.Length());
defaultTheme = qvalue.trimmed();
}
value.Zero();
- if (KErrNone == repository->Get(HbThemeUtils::DefaultThemeRootDirSetting,value)) {
- QString qvalue((QChar*)value.Ptr(),value.Length());
+ if (KErrNone == repository->Get(HbThemeUtils::DefaultThemeRootDirSetting, value)) {
+ QString qvalue((QChar*)value.Ptr(), value.Length());
defaultThemeRootDir = qvalue.trimmed();
} else {
// Use the default value
defaultThemeRootDir = HbStandardDirs::themesDir();
}
value.Zero();
- if (KErrNone == repository->Get(HbThemeUtils::BaseThemeSetting,value)) {
- QString qvalue((QChar*)value.Ptr(),value.Length());
+ if (KErrNone == repository->Get(HbThemeUtils::BaseThemeSetting, value)) {
+ QString qvalue((QChar*)value.Ptr(), value.Length());
baseTheme = qvalue.trimmed();
}
value.Zero();
- if (KErrNone == repository->Get(HbThemeUtils::OperatorNameSetting,value)) {
- QString qvalue((QChar*)value.Ptr(),value.Length());
+ if (KErrNone == repository->Get(HbThemeUtils::OperatorNameSetting, value)) {
+ QString qvalue((QChar*)value.Ptr(), value.Length());
operatorName = qvalue.trimmed();
}
delete repository;
@@ -193,7 +195,8 @@
currentTheme = settings.value(settingNames[HbThemeUtils::CurrentThemeSetting]).toString();
defaultTheme = settings.value(settingNames[HbThemeUtils::DefaultThemeSetting]).toString();
- defaultThemeRootDir = settings.value(settingNames[HbThemeUtils::DefaultThemeRootDirSetting]).toString();
+ defaultThemeRootDir =
+ settings.value(settingNames[HbThemeUtils::DefaultThemeRootDirSetting]).toString();
baseTheme = settings.value(settingNames[HbThemeUtils::BaseThemeSetting]).toString();
operatorName = settings.value(settingNames[HbThemeUtils::OperatorNameSetting]).toString();
#endif
@@ -215,7 +218,7 @@
* if priorityOrder is greater than the currently existing hierarchies, this hierarchy will be appended
* at the end of the hierarchy list
*
- * @return the positon in the new hierarchy in the hierarchy list. -1 if the new hierarchy is not added.
+ * @return the position in the new hierarchy in the hierarchy list. -1 if the new hierarchy is not added.
*/
int HbThemeUtils::addHierarchy(const QString &newHierarchy, int priorityOrder)
@@ -233,10 +236,8 @@
if (priorityOrder > d.hierarchies.count()) {
d.hierarchies.append(add);
retValue = d.hierarchies.count() - 1;
- }
- // else insert it at the correct position
- else {
- d.hierarchies.insert(priorityOrder,add);
+ } else { // insert at the correct position
+ d.hierarchies.insert(priorityOrder, add);
retValue = priorityOrder;
}
}
@@ -307,7 +308,8 @@
break;
case HbLayeredStyleLoader::Priority_Application:
hierarchyListWithPathInfo.insert(HbLayeredStyleLoader::Priority_Application,
- (hierarchy.name + '/' + HbMemoryUtils::getCleanAppName() + '/' + resourcePath + '/' + currentTheme + '/' + fileName));
+ (hierarchy.name + '/' + HbMemoryUtils::getCleanAppName() + '/' +
+ resourcePath + '/' + currentTheme + '/' + fileName));
break;
case HbLayeredStyleLoader::Priority_Theme:
// Add platform theme folder only if it is different from base theme
@@ -318,7 +320,9 @@
}
break;
default:
- // this is for a new hierarchy level and for the time being HbLayeredStyleLoader::Priority_Theme prirority is used,since there is no enum defined in hblayeredstyleloader_p.h
+ // this is for a new hierarchy level and for the time being
+ // HbLayeredStyleLoader::Priority_Theme priority is used,
+ // since there is no enum defined in hblayeredstyleloader_p.h
// priority should be replaced with respective enum.
hierarchyListWithPathInfo.insert(HbLayeredStyleLoader::Priority_Theme,
(hierarchy.name + '/' + resourcePath + '/' + currentTheme + '/' + fileName));
@@ -352,11 +356,11 @@
if (baseThemeInfo.name.isEmpty()) {
// Base theme does not exists in rom
// Get the base theme info from core resources
- baseThemeInfo = getBaseThemeFromFile(coreResourcesRootDir);
+ baseThemeInfo = getBaseThemeFromFile(CoreResourcesRootDir);
}
} else {
// So settings are initialized, it will have other value as well
- baseThemeInfo.rootDir = getThemeSetting(DefaultThemeRootDirSetting).trimmed();
+ baseThemeInfo.rootDir = getThemeSetting(DefaultThemeRootDirSetting).trimmed();
}
}
@@ -367,7 +371,6 @@
*/
HbThemeInfo HbThemeUtils::defaultTheme()
{
-
// getting base theme makes sure that default theme was added in
// QSettings, if it was not already done
const HbThemeInfo &themeInfo = baseTheme();
@@ -404,8 +407,8 @@
TRAP_IGNORE(repository = CRepository::NewL(KServerUid3));
if (repository) {
TPtrC valueptr(reinterpret_cast<const TUint16 *>(value.constData()));
- if (KErrNotFound == repository->Set(setting,valueptr)) {
- repository->Create(setting,valueptr);
+ if (KErrNotFound == repository->Set(setting, valueptr)) {
+ repository->Create(setting, valueptr);
}
delete repository;
@@ -476,7 +479,7 @@
const QString &rootDir)
{
// If there is any base theme
- if ((!baseThemeInfo.name.isEmpty()) && isThemeValid(HbThemeInfo(baseThemeInfo.name,rootDir))) {
+ if ((!baseThemeInfo.name.isEmpty()) && isThemeValid(HbThemeInfo(baseThemeInfo.name, rootDir))) {
// Save these theme names in settings
setThemeSetting(BaseThemeSetting, baseThemeInfo.name);
setThemeSetting(DefaultThemeRootDirSetting, rootDir);
@@ -496,11 +499,12 @@
{
// If the theme contains index.theme in icons resources
// it will be assumed valid
- QFile themeIndexFile(themeInfo.rootDir + '/' + platformHierarchy + '/' + iconsResourceFolder + "/" + themeInfo.name + "/index.theme");
+ QFile themeIndexFile(themeInfo.rootDir + '/' + platformHierarchy + '/' +
+ iconsResourceFolder + '/' + themeInfo.name + "/index.theme");
return themeIndexFile.open(QIODevice::ReadOnly);
}
-const HbThemeIndexInfo HbThemeUtils::getThemeIndexInfo(const HbThemeType &type)
+HbThemeIndexInfo HbThemeUtils::getThemeIndexInfo(const HbThemeType &type)
{
HbThemeIndexInfo info;
GET_MEMORY_MANAGER(HbMemoryManager::SharedMemory);
@@ -541,5 +545,3 @@
return info;
}
-
-
--- a/src/hbcore/theme/hbthemeutils_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/theme/hbthemeutils_p.h Thu May 27 13:10:59 2010 +0300
@@ -39,8 +39,9 @@
{
HbHierarchy() {}
HbHierarchy(QString name,
- HbLayeredStyleLoader::LayerPriority layerPriority) : name(name),
- layerPriority(layerPriority) {}
+ HbLayeredStyleLoader::LayerPriority layerPriority)
+ : name(name),
+ layerPriority(layerPriority) {}
QString name;
HbLayeredStyleLoader::LayerPriority layerPriority;
};
@@ -50,7 +51,7 @@
HbThemeInfo()
{
}
- HbThemeInfo(const QString &themeName, const QString &dir):name(themeName),rootDir(dir)
+ HbThemeInfo(const QString &themeName, const QString &dir) : name(themeName), rootDir(dir)
{
}
QString name;
@@ -60,8 +61,8 @@
struct HbThemeIndexInfo
{
HbThemeIndexInfo() :
- name(QString("")),
- path(QString("")),
+ name(),
+ path(),
themeIndexOffset(0)
{
}
@@ -76,7 +77,6 @@
quint32 themeIndexOffset;
};
-
class HB_CORE_PRIVATE_EXPORT HbThemeUtils
{
public:
@@ -93,8 +93,7 @@
const QString ¤tTheme,
const Hb::ResourceType resType );
- enum Setting
- {
+ enum Setting {
BaseThemeSetting = 0x1,
DefaultThemeSetting = 0x2,
DefaultThemeRootDirSetting = 0x3,
@@ -105,13 +104,11 @@
static QString getThemeSetting(Setting setting);
static void setThemeSetting(Setting setting, const QString &value);
static void updateThemeSetting(Setting setting, const QString &value);
-
-
static const HbThemeInfo &baseTheme();
static HbThemeInfo defaultTheme();
static bool isThemeValid(const HbThemeInfo &themeInfo);
- static const HbThemeIndexInfo getThemeIndexInfo(const HbThemeType& type);
+ static HbThemeIndexInfo getThemeIndexInfo(const HbThemeType& type);
// Standard folder names
static const char *iconsResourceFolder;
--- a/src/hbcore/utils/hbdevicemodeinfo_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/utils/hbdevicemodeinfo_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -35,15 +35,15 @@
public:
HbDeviceModeInfoPrivate();
- void init();
+ void init(const QString &wsIniFile);
public:
QMap<int, HbScreenMode> mModes;
};
-void HbDeviceModeInfoPrivate::init()
+void HbDeviceModeInfoPrivate::init(const QString &wsIniFile)
{
- HbWsiniParser::parseModes(mModes);
+ HbWsiniParser::parseModes(mModes, wsIniFile);
}
HbDeviceModeInfoPrivate::HbDeviceModeInfoPrivate()
@@ -58,14 +58,10 @@
*/
-// ======== LOCAL FUNCTIONS ========
-
-// ======== MEMBER FUNCTIONS ========
-
-HbDeviceModeInfo::HbDeviceModeInfo()
+HbDeviceModeInfo::HbDeviceModeInfo(const QString &wsIniFile)
: d_ptr(new HbDeviceModeInfoPrivate())
{
- d_ptr->init();
+ d_ptr->init(wsIniFile);
}
HbDeviceModeInfo::~HbDeviceModeInfo()
--- a/src/hbcore/utils/hbdevicemodeinfo_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/utils/hbdevicemodeinfo_p.h Thu May 27 13:10:59 2010 +0300
@@ -36,7 +36,7 @@
class HB_AUTOTEST_EXPORT HbDeviceModeInfo
{
public:
- HbDeviceModeInfo();
+ HbDeviceModeInfo(const QString &wsIniFile = QString());
~HbDeviceModeInfo();
QList<int> modeNumbers() const;
--- a/src/hbcore/utils/hbforegroundwatcher.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/utils/hbforegroundwatcher.cpp Thu May 27 13:10:59 2010 +0300
@@ -30,6 +30,7 @@
#include <hbinstance.h>
#include <hbsensorlistener_p.h>
#include "hbsleepmodelistener_p.h"
+#include "hbmainwindow_p.h"
#ifdef HB_EFFECTS_OPENVG
#include <hbvgeffect_p.h>
#endif
@@ -39,14 +40,17 @@
#include "hbthemecommon_p.h"
/*!
- @proto
- @hbcore
\class HbForegroundWatcher
\brief Listens for Symbian foreground-background notifications via CCoeEnv.
+ Note that this class cannot be used to safely determine if the application is
+ in foreground or not. For example there may not be a foreground-gained
+ notification when the application is starting and we always assume that the
+ application is started to foreground. Therefore use this class only to get
+ notifications about loosing/gaining foreground after app startup.
+
\internal
-
*/
/*!
@@ -73,7 +77,6 @@
This signal is emitted when lights are switched off and the app is in foreground.
*/
-
HbForegroundWatcher *HbForegroundWatcher::instance()
{
static HbForegroundWatcher *watcher = new HbForegroundWatcher(qApp);
@@ -91,6 +94,7 @@
} else {
qWarning("HbForegroundWatcher: CoeEnv not available");
}
+
#endif
QApplication::instance()->installEventFilter(this);
HbSleepModeListener::instance(); // make sure the instance is created
@@ -120,6 +124,12 @@
if (!signalsBlocked()) {
HbEffectInternal::resumeEffects();
}
+#ifdef Q_OS_SYMBIAN
+ HbMainWindow *mWindow = HbInstance::instance()->allMainWindows().first();
+ if (mWindow) {
+ HbMainWindowPrivate::d_ptr(mWindow)->updateForegroundOrientationPSKey();
+ }
+#endif //Q_OS_SYMBIAN
}
mForeground = true;
}
--- a/src/hbcore/utils/hboogmwatcher.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/utils/hboogmwatcher.cpp Thu May 27 13:10:59 2010 +0300
@@ -58,11 +58,16 @@
as possible in order to increase the amount of free graphics memory.
*/
+static bool oogmWatcherDeleted = false;
+
/*!
Returns the global HbOogmWatcher instance.
*/
HbOogmWatcher *HbOogmWatcher::instance()
{
+ if (oogmWatcherDeleted) {
+ return 0;
+ }
static HbOogmWatcher *watcher = new HbOogmWatcher(qApp);
return watcher;
}
@@ -78,6 +83,7 @@
HbOogmWatcher::~HbOogmWatcher()
{
delete d_ptr;
+ oogmWatcherDeleted = true;
}
/*!
--- a/src/hbcore/utils/hbtextmeasurementutility_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/utils/hbtextmeasurementutility_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -383,7 +383,14 @@
dir.mkpath(filePath);
}
- filePath.append(domainName);
+ // Make sure there are no illegal characters in "domainName"
+ QString tempName = domainName;
+ tempName.remove(QRegExp("[^a-zA-Z0-9]"));
+ if (tempName.isEmpty()) {
+ tempName = "unknown";
+ }
+
+ filePath.append(tempName);
filePath.append('_');
filePath.append(profile.name());
filePath.append('_');
--- a/src/hbcore/utils/hbthetestwidget_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/utils/hbthetestwidget_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -322,11 +322,8 @@
HbTextMeasurementUtility *measureUtility = HbTextMeasurementUtility::instance();
if ( measureUtility->locTestMode() ) {
HbDeviceProfile profile = HbDeviceProfile::profile(d->mMainWindow);
- if (!HbApplication::applicationName().isEmpty()) {
- measureUtility->writeReport(profile, HbApplication::applicationName());
- } else {
- measureUtility->writeReport(profile, "unknown_application");
- }
+ QFileInfo info(QCoreApplication::applicationFilePath());
+ measureUtility->writeReport(profile, info.baseName());
measureUtility->reset();
} else {
showWarning("Localization metrics run-time flag disabled!");
--- a/src/hbcore/utils/hbwsiniparser_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/utils/hbwsiniparser_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -30,9 +30,8 @@
#include "hbwsiniparser_p.h"
-// ======== MEMBER FUNCTIONS ========
+#define WSINI_PARSE_ENTRY(keyword, func) { keyword, &HbWsiniParser::call_##func }
-#define WSINI_PARSE_ENTRY(keyword, func) { keyword, &HbWsiniParser::call_##func }
const HbWsiniParser::ParserEntry HbWsiniParser::mParseTable[] =
{
WSINI_PARSE_ENTRY("S60_HWSTATE_KEYCODE", hardwareStateKeycode), //S60_HWSTATE_KEYCODEn <KeyCode>
@@ -51,14 +50,23 @@
a wsini file is put in the directory c:\hb\data, then that wsini will
simulate the behavior on a Symbian device.
*/
-void HbWsiniParser::parseModes(QMap<int, HbScreenMode> &modes)
+void HbWsiniParser::parseModes(QMap<int, HbScreenMode> &modes, const QString &wsIniFile)
{
HbWsiniParser parser(modes);
#if defined(Q_WS_S60)
+ Q_UNUSED(wsIniFile);
parser.parseFile("z:\\system\\data\\wsini.ini");
-#elif defined(Q_OS_WIN32)
- parser.parseFile("c:/hb/data/wsini.ini");
-#endif
+#else //!Q_WS_S60
+ // For unit testing
+ if (!wsIniFile.isEmpty()) {
+ parser.parseFile(wsIniFile);
+ } else {
+#if defined(Q_OS_WIN32)
+ // In windows try to parse file from the hard-coded location
+ parser.parseFile("c:/hb/data/wsini.ini");
+#endif //Q_OS_WIN32
+ }
+#endif //!Q_WS_S60
}
HbWsiniParser::HbWsiniParser(QMap<int, HbScreenMode> &modes)
--- a/src/hbcore/utils/hbwsiniparser_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbcore/utils/hbwsiniparser_p.h Thu May 27 13:10:59 2010 +0300
@@ -33,7 +33,7 @@
class HbWsiniParser
{
public:
- static void parseModes(QMap<int, HbScreenMode> &modes);
+ static void parseModes(QMap<int, HbScreenMode> &modes, const QString &wsIniFile);
private:
HbWsiniParser(QMap<int, HbScreenMode> &modes);
--- a/src/hbinput/inputwidgets/hbinputbuttongroup.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputbuttongroup.cpp Thu May 27 13:10:59 2010 +0300
@@ -23,12 +23,12 @@
**
****************************************************************************/
+#include <QDebug>
#include <QPainter>
#include <QTextLayout>
#include <QGraphicsSceneMouseEvent>
#include <QTouchEvent>
#include <QTimer>
-#include <QGraphicsDropShadowEffect>
#include <hbmainwindow.h>
#include <hbaction.h>
@@ -328,7 +328,7 @@
qreal cellHeight = q->boundingRect().height() / mGridSize.height();
QFont font = HbFontSpec(HbFontSpec::Primary).font();
- font.setPixelSize(fontSize(ButtonTextTypeLabel));
+ font.setPixelSize(int(fontSize(ButtonTextTypeLabel)));
QFontMetricsF fontMetrics(font);
qreal textWidth = fontMetrics.width(item->text(HbInputButton::ButtonTextIndexPrimary));
@@ -348,10 +348,6 @@
if (q->parentItem()) {
group->setZValue(q->parentItem()->zValue() + 1);
}
-
- QGraphicsDropShadowEffect *effect = new QGraphicsDropShadowEffect;
- effect->setBlurRadius(8);
- group->setGraphicsEffect(effect);
group->setButtonBorderSize(0);
HbFrameDrawer *drawer = HbFrameDrawerPool::get(HbPreviewBackground, HbFrameDrawer::ThreePiecesHorizontal, QSizeF(width, height));
@@ -389,9 +385,6 @@
mCharacterSelectionPreview->setActive(false);
qreal margin = HbPreviewMarginInUnits * mUnitValue * 0.5;
mCharacterSelectionPreview->setContentsMargins(margin, 0, margin, 0);
- QGraphicsDropShadowEffect *effect = new QGraphicsDropShadowEffect;
- effect->setBlurRadius(8);
- mCharacterSelectionPreview->setGraphicsEffect(effect);
}
HbInputButtonGroup *group = new HbInputButtonGroup(QSize(item->mappedCharacters().count(), 1));
@@ -405,7 +398,7 @@
qreal cellHeight = q->boundingRect().height() / mGridSize.height();
QFont font = HbFontSpec(HbFontSpec::Primary).font();
- font.setPixelSize(fontSize(ButtonTextTypeLabel));
+ font.setPixelSize(int(fontSize(ButtonTextTypeLabel)));
QFontMetricsF fontMetrics(font);
qreal textWidth = fontMetrics.width(item->mappedCharacters());
@@ -723,9 +716,9 @@
int typeIndex = index % HbTextTypeCount / HbInputButton::ButtonStateCount;
if (typeIndex == HbInputButton::ButtonTypeLabel) {
- font.setPixelSize(fontSize(ButtonTextTypeLabel));
+ font.setPixelSize(int(fontSize(ButtonTextTypeLabel)));
} else {
- font.setPixelSize(fontSize(ButtonTextTypeSingle));
+ font.setPixelSize(int(fontSize(ButtonTextTypeSingle)));
}
mTextLayouts[index] = new QTextLayout(textContent.value(index), font);
@@ -768,7 +761,7 @@
qreal cellHeight = size.height() / mGridSize.height();
QFont font = HbFontSpec(HbFontSpec::Primary).font();
- font.setPixelSize(fontSize(ButtonTextTypePrimary));
+ font.setPixelSize(int(fontSize(ButtonTextTypePrimary)));
mTextLayouts[index] = new QTextLayout(textContent.value(index), font);
QFontMetricsF fontMetrics(font);
@@ -806,7 +799,7 @@
qreal cellHeight = size.height() / mGridSize.height();
QFont font = HbFontSpec(HbFontSpec::Primary).font();
- font.setPixelSize(fontSize(ButtonTextTypeSecondaryFirstRow));
+ font.setPixelSize(int(fontSize(ButtonTextTypeSecondaryFirstRow)));
mTextLayouts[index] = new QTextLayout(textContent.value(index), font);
QFontMetricsF fontMetrics(font);
@@ -1118,7 +1111,9 @@
d->mButtonData.removeAt(index);
}
} else {
- d->mButtonData.append(data);
+ if (data) {
+ d->mButtonData.append(data);
+ }
}
setButtons(d->mButtonData);
}
@@ -1136,7 +1131,10 @@
{
Q_D(HbInputButtonGroup);
- int index = d->mButtonGridPositions.value(QPair<int, int>(column, row));
+ int index = -1;
+ if (d->mButtonGridPositions.contains(QPair<int, int>(column, row))) {
+ index = d->mButtonGridPositions.value(QPair<int, int>(column, row));
+ }
setButton(data, index);
}
@@ -1207,7 +1205,10 @@
{
Q_D(const HbInputButtonGroup);
- int index = d->mButtonGridPositions.value(QPair<int, int>(column, row));
+ int index = -1;
+ if (d->mButtonGridPositions.contains(QPair<int, int>(column, row))) {
+ index = d->mButtonGridPositions.value(QPair<int, int>(column, row));
+ }
return button(index);
}
--- a/src/hbinput/inputwidgets/hbinputbuttongroup.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputbuttongroup.h Thu May 27 13:10:59 2010 +0300
@@ -37,6 +37,7 @@
class HB_INPUT_EXPORT HbInputButtonGroup : public HbWidget
{
Q_OBJECT
+ Q_PROPERTY(bool enabled READ isEnabled WRITE setEnabled)
public:
explicit HbInputButtonGroup(QGraphicsItem *parent = 0);
--- a/src/hbinput/inputwidgets/hbinputcandidatelist.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputcandidatelist.cpp Thu May 27 13:10:59 2010 +0300
@@ -26,10 +26,6 @@
#include <QLabel>
#include <QGraphicsLayout>
-#if QT_VERSION >= 0x040600
-#include <QGraphicsDropShadowEffect>
-#endif
-
#include <hblistwidget.h>
#include <hblistwidgetitem.h>
#include <hbview.h>
@@ -170,11 +166,6 @@
setFlag(QGraphicsItem::ItemIsPanel, true);
setActive(false);
- // enable drop shadow for the preview pane
- QGraphicsDropShadowEffect *effect = new QGraphicsDropShadowEffect;
- effect->setBlurRadius(8);
- setGraphicsEffect(effect);
-
setTimeout(NoTimeout);
setAttribute(Qt::WA_InputMethodEnabled, false);
connect(d->mList, SIGNAL(activated(HbListWidgetItem*)), this, SLOT(itemActivated(HbListWidgetItem*)));
--- a/src/hbinput/inputwidgets/hbinputexactwordpopup.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputexactwordpopup.cpp Thu May 27 13:10:59 2010 +0300
@@ -28,9 +28,6 @@
#include <QIcon>
#include <QGraphicsSceneMouseEvent>
#include <QGraphicsLinearLayout>
-#if QT_VERSION >= 0x040600
-#include <QGraphicsDropShadowEffect>
-#endif
#include "hbdeviceprofile.h"
#include "hbdialog.h"
@@ -130,14 +127,9 @@
setModal(false);
#if QT_VERSION >= 0x040600
- // Make sure the excat word popup never steals focus.
+ // Make sure the exact word popup never steals focus.
setFlag(QGraphicsItem::ItemIsPanel, true);
setActive(false);
-
- // enable drop shadow for the preview pane
- QGraphicsDropShadowEffect *effect = new QGraphicsDropShadowEffect;
- effect->setBlurRadius(8);
- setGraphicsEffect(effect);
#endif
d->mOption = new HbStyleOptionLabel();
--- a/src/hbinput/inputwidgets/hbinputsettinglist.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputsettinglist.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,9 +25,6 @@
#include <QGraphicsLinearLayout>
#include <QGraphicsGridLayout>
-#if QT_VERSION >= 0x040600
-#include <QGraphicsDropShadowEffect>
-#endif
#include <hblabel.h>
#include <hbpushbutton.h>
@@ -144,12 +141,6 @@
// Make sure the custom button list never steals focus.
setFlag(QGraphicsItem::ItemIsPanel, true);
setActive(false);
-
- // enable drop shadow for the setting list
-// Effect deletion is crashing -> Effect temporarily removed
-// QGraphicsDropShadowEffect *effect = new QGraphicsDropShadowEffect;
-// effect->setBlurRadius(8);
-// setGraphicsEffect(effect);
#endif
connect(d->mLanguageButton, SIGNAL(clicked(bool)), this, SLOT(languageButtonClicked()));
--- a/src/hbinput/inputwidgets/hbinputvkbwidget.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputvkbwidget.cpp Thu May 27 13:10:59 2010 +0300
@@ -150,8 +150,8 @@
mLayout->setSpacing(0.0);
qreal unitValue = HbDeviceProfile::profile(q->mainWindow()).unitValue();
- mCloseHandleHeight = HbCloseHandleHeightInUnits * unitValue;
- mCloseHandleWidth = HbCloseHandleWidthInUnits * unitValue;
+ mCloseHandleHeight = (int)(HbCloseHandleHeightInUnits * unitValue);
+ mCloseHandleWidth = (int)(HbCloseHandleWidthInUnits * unitValue);
mCloseHandle = new QGraphicsWidget();
mCloseHandle->setObjectName("vkbHandle");
@@ -357,6 +357,7 @@
if (!mScreenshotWidget) {
mScreenshotWidget = new HbInputScreenshotWidget();
+ mScreenshotWidget->setZValue(q->zValue());
mScreenshotWidget->setGeometry(q->geometry());
q->mainWindow()->scene()->addItem(mScreenshotWidget);
}
@@ -710,12 +711,19 @@
}
HbInputFocusObject *focusObject = d->mOwner->focusObject();
- if (focusObject &&
- focusObject->editorInterface().isPredictionAllowed() &&
- predFactory->predictionEngineForLanguage(HbInputSettingProxy::instance()->globalInputLanguage())) {
- d->mSettingList->setPredictionSelectionEnabled(true);
- } else {
- d->mSettingList->setPredictionSelectionEnabled(false);
+ if (focusObject) {
+ if (focusObject->editorInterface().inputConstraints() & HbEditorConstraintLatinAlphabetOnly) {
+ d->mSettingList->setLanguageSelectionEnabled(false);
+ } else {
+ d->mSettingList->setLanguageSelectionEnabled(true);
+ }
+
+ if (focusObject->editorInterface().isPredictionAllowed() &&
+ predFactory->predictionEngineForLanguage(HbInputSettingProxy::instance()->globalInputLanguage())) {
+ d->mSettingList->setPredictionSelectionEnabled(true);
+ } else {
+ d->mSettingList->setPredictionSelectionEnabled(false);
+ }
}
HbInputButtonGroup *buttonGroup = static_cast<HbInputButtonGroup*>(contentItem());
@@ -777,6 +785,7 @@
Q_D(HbInputVkbWidget);
closeSettingList();
+ hide();
d->mSettingView = new HbView(this);
d->mSettingView->setTitle(tr("Input Settings"));
@@ -793,6 +802,7 @@
settingWidget->initializeWidget();
d->mCurrentView = mainWindow()->currentView();
+ mainWindow()->clearFocus();
mainWindow()->setCurrentView(d->mSettingView);
}
--- a/src/hbplugins/feedback/feedbackeffectplugin/hbfeedbackeffectutils.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbplugins/feedback/feedbackeffectplugin/hbfeedbackeffectutils.cpp Thu May 27 13:10:59 2010 +0300
@@ -279,8 +279,10 @@
case HbFeedbackEffectUtils::Slider:
- // slider area
- effect = HbFeedback::None;
+ // slider track default
+ effect = HbFeedback::SensitiveSlider;
+
+ // special cases
if (const HbProgressSlider *progressSlider = qobject_cast<const HbProgressSlider *>(widget)) {
Q_UNUSED(progressSlider)
effect = HbFeedback::BasicSlider;
@@ -318,11 +320,6 @@
break;
}
- if (widget->type() == Hb::ItemType_MenuItem) {
- if (modifiers & Hb::ModifierScrolling) {
- effect = HbFeedback::StopFlick;
- }
- }
// item view specific special cases
if ( const HbAbstractViewItem * viewItem = qobject_cast<const HbAbstractViewItem *>(widget)) {
const HbAbstractItemView* itemView = viewItem->itemView();
@@ -331,7 +328,7 @@
switch (itemView->selectionMode()) {
case HbAbstractItemView::SingleSelection:
case HbAbstractItemView::MultiSelection: {
- effect = HbFeedback::None;
+ effect = HbFeedback::SensitiveItem;
break;
}
case HbAbstractItemView::NoSelection:
@@ -363,14 +360,10 @@
effect = HbFeedback::SensitiveItem;
}
}
-
- if (modifiers & Hb::ModifierScrolling) {
- effect = HbFeedback::StopFlick;
- }
}
}
- if (widget->type() == Hb::ItemType_VirtualTrackPoint) {
- effect = HbFeedback::Editor;
+ if (modifiers & Hb::ModifierScrolling) {
+ effect = HbFeedback::StopFlick;
}
return effect;
@@ -458,8 +451,8 @@
case HbFeedbackEffectUtils::Slider:
- // slider area
- effect = HbFeedback::None;
+ // slider track default
+ effect = HbFeedback::SensitiveSlider;
// slider handle
if (modifiers & Hb::ModifierSliderHandle) {
@@ -473,7 +466,7 @@
break;
case HbFeedbackEffectUtils::Editor:
- effect = HbFeedback::Editor;
+ effect = HbFeedback::None;
break;
default:
@@ -523,6 +516,11 @@
}
}
}
+
+ if (widget->type() == Hb::ItemType_VirtualTrackPoint) {
+ effect = HbFeedback::Editor;
+ }
+
return effect;
}
@@ -704,9 +702,10 @@
*/
HbFeedback::InstantEffect HbFeedbackEffectUtils::instantOnSelectionChanged(const HbWidget *widget, Hb::InteractionModifiers modifiers)
{
+ Q_UNUSED(modifiers);
HbFeedback::InstantEffect effect = HbFeedback::None;
- if ( const HbAbstractViewItem * viewItem = qobject_cast<const HbAbstractViewItem *>(widget)) {
+ if (const HbAbstractViewItem * viewItem = qobject_cast<const HbAbstractViewItem *>(widget)) {
const HbAbstractItemView* itemView = viewItem->itemView();
if (itemView) {
switch (itemView->selectionMode()) {
@@ -722,13 +721,9 @@
default:
break;
}
- if (modifiers == Hb::ModifierScrolling) {
- effect = HbFeedback::StopFlick;
- }
}
}
-
- return effect;
+ return effect;
}
/*!
--- a/src/hbplugins/inputmethods/touchinput/hbinputprediction12keyhandler.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/hbinputprediction12keyhandler.cpp Thu May 27 13:10:59 2010 +0300
@@ -47,7 +47,7 @@
#define HbDeltaHeight 3.0
#define MAXUDBWORDSIZE 64
-HbInputSpellQuery::HbInputSpellQuery(HbInputPrediction12KeyHandlerPrivate *owner) : mOwner(owner)
+HbInputSpellQuery::HbInputSpellQuery(HbInputPrediction12KeyHandlerPrivate *owner) : mOwner(owner), mPrimaryAction(0)
{
}
@@ -97,36 +97,37 @@
//setAttribute(Qt::WA_DeleteOnClose);
mDidHandleFinish = false;
open(this,SLOT(dialogClosed(HbAction*)));
+ mPrimaryAction = qobject_cast<HbAction*>(actions().first());
}
void HbInputSpellQuery::dialogClosed(HbAction* action)
{
- //There are multiple dialog closed event received. This will make sure we handle finish
- //only once
- if(mDidHandleFinish) {
+ //There are multiple dialog closed event received. This will make sure we handle finish
+ //only once
+ if(mDidHandleFinish) {
return;
} else {
mDidHandleFinish = true;
}
- bool isOk = false;
- bool isCancel = false;
- bool isExternalClose = false;
- // action is null when input query is closed externally , for example by calling
- // HbDialog::close() function.
- if (action) {
- isOk = (action->text() == actions().at(0)->text())? true : false;
- isCancel = (action->text() == actions().at(1)->text())? true:false;
- } else {
- isExternalClose = true;
- }
+ bool isOk = false;
+ bool isCancel = false;
+ bool isExternalClose = false;
+ // action is null when input query is closed externally , for example by calling
+ // HbDialog::close() function.
+ if (action) {
+ isOk = mPrimaryAction == action ? true : false;
+ isCancel = mPrimaryAction != action ? true : false;
+ } else {
+ isExternalClose = true;
+ }
- //Need to disable effects as asynchronous hide will commit the word otherwise.
- HbEffect::disable(this);
- hide();
- HbEffect::enable(this);
+ //Need to disable effects as asynchronous hide will commit the word otherwise.
+ HbEffect::disable(this);
+ hide();
+ HbEffect::enable(this);
- HbInputFocusObject *newFocusObject = new HbInputFocusObject(mSavedFocusObject);
+ HbInputFocusObject *newFocusObject = new HbInputFocusObject(mSavedFocusObject);
newFocusObject->releaseFocus();
newFocusObject->setFocus();
--- a/src/hbplugins/inputmethods/touchinput/hbinputprediction12keyhandler_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/hbinputprediction12keyhandler_p.h Thu May 27 13:10:59 2010 +0300
@@ -60,8 +60,8 @@
Q_OBJECT
public:
HbInputSpellQuery(HbInputPrediction12KeyHandlerPrivate *owner);
- void getPositionAndSize(QPointF & pos,QSizeF & size, QRectF &geom);
- void launch(QString editorText);
+ void getPositionAndSize(QPointF & pos,QSizeF & size, QRectF &geom);
+ void launch(QString editorText);
public slots:
void dialogClosed(HbAction* action);
private:
@@ -70,5 +70,6 @@
QPointer<QObject> mSavedFocusObject;
HbInputPrediction12KeyHandlerPrivate* mOwner;
QString mSavedEditorText;
+ HbAction *mPrimaryAction;
};
#endif //HB_INPUT_PREDICTION_12KEY_HANDLER_PRIVATE
--- a/src/hbplugins/inputmethods/touchinput/touchinputplugin.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/touchinputplugin.cpp Thu May 27 13:10:59 2010 +0300
@@ -132,11 +132,8 @@
HbInputModeProperties properties(HbInputModeDefault, HbInputLanguage(), HbKeyboardVirtualQwerty);
result.append(properties.asString());
- QList<HbInputLanguage> languages = HbKeymapFactory::availableLanguages();
- foreach (HbInputLanguage language, languages) {
- properties = HbInputModeProperties(HbInputModeNumeric, language, HbKeyboardVirtualQwerty);
- result.append(properties.asString());
- }
+ properties = HbInputModeProperties(HbInputModeNumeric, HbInputLanguage(), HbKeyboardVirtualQwerty);
+ result.append(properties.asString());
}
return QStringList(result);
--- a/src/hbservers/hbdevicedialogappserver/main.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbdevicedialogappserver/main.cpp Thu May 27 13:10:59 2010 +0300
@@ -134,7 +134,8 @@
}
_LIT(KThreadName, "hbdevdlgsrvapp");
RThread().RenameMe(KThreadName); // nicer panic info
-
+ RThread().SetProcessPriority(EPriorityHigh);
+
HbApplication app(deviceDialogAppFactory, arg, args, Hb::NoSplash);
#else // Q_OS_SYMBIAN
HbApplication app(arg, args);
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbservers/hbsplashgenerator/hbsplashblacklist_p.h Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,56 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbServers module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#ifndef HBSPLASHBLACKLIST_P_H
+#define HBSPLASHBLACKLIST_P_H
+
+#include <QList>
+
+// List of apps that should use Hb::NoSplash but they don't.
+// Showing a splash screen for these does not make sense anyway.
+inline QList<quint32> hbsplash_blacklist()
+{
+ return QList<quint32>()
+
+ // started on phone boot
+ << 0x20022f35 // app/homescreen/homescreenapp/hsapplication
+ << 0x100058b3 // app/phone/phoneapp/phoneui2
+ << 0x2002e67a // app/phone/phoneengine/networkhandlingstarter
+
+ // uses hbapplication but not hbmainwindow
+ << 0x1028339d // app/devicecontrol/deviceupdateui/deviceupdateqtsp
+ << 0x2001fe74 // app/messaging/messagingapp/msgnotifications/msgerrornotifier
+ << 0xe0022e73 // mw/securitysrv/securitydialogs/autolocksrv (this uid cannot be the final one, can it...)
+
+ // started to background and may not need splash anyway
+ << 0x2002e669 // mw/webruntime/app/widget/wrtwidgetui
+
+ // probably launched on first boot, including for now to prevent mess in startup sequence
+ << 0x20026f95 // app/firsttimeuse/ftuapplication
+
+ ;
+}
+
+#endif
--- a/src/hbservers/hbsplashgenerator/hbsplashgen_server_symbian.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbsplashgenerator/hbsplashgen_server_symbian.cpp Thu May 27 13:10:59 2010 +0300
@@ -27,11 +27,18 @@
#include "hbsplashgenerator_p.h"
#include "hbsplashdirs_p.h"
#include "hbsplashdefs_p.h"
+#include "hbsplashblacklist_p.h"
+#include "hbsplash_direct_symbian_p.h"
#include <e32base.h>
#include <f32file.h>
+#include <fbs.h>
#include <QDir>
+#include <QList>
+#include <QPair>
#include <QDebug>
+const int bitmap_cache_limit = 4; // Must be at least 1. Each bitmap consumes ~1 MB.
+
#define PRE "[hbsplashgenerator] [server]"
TBool HbSplashGenAppUi::FrameworkCallsRendezvous() const
@@ -65,16 +72,19 @@
void setSplashScreenDir(const QString &dir) { mSplashScreenDir = dir; }
void setSplashScreenDirContents(const QStringList &entries) { mSplashScreenDirEntries = entries; }
bool startupSuccess() const { return mStartupSuccess; }
-
+ void clearBitmapCache();
bool processGetSplash(const RMessage2 &message);
private:
- bool transferHandle(const RMessage2 &message, const QString &fileName);
+ bool completeGetSplash(const RMessage2 &message, const QString &fileName);
+ CFbsBitmap *getCachedBitmap(const QString &fileName) const;
+ void cacheBitmap(const QString &key, CFbsBitmap *bmp);
bool mStartupSuccess;
RFs mFs;
QString mSplashScreenDir;
QStringList mSplashScreenDirEntries;
+ QList< QPair<QString, CFbsBitmap *> > mBitmaps;
};
class HbSplashGenServerSession : public CSession2
@@ -93,6 +103,12 @@
{
connect(generator, SIGNAL(outputDirContentsUpdated(QString, QStringList)),
SLOT(onOutputDirContentsUpdated(QString, QStringList)));
+ // React immediately on a theme change, showing out-dated graphics
+ // is never acceptable.
+ connect(generator, SIGNAL(regenerateStarted()), SLOT(dropCachedData()));
+ // Clear the cache again when all the screens are regenerated to
+ // make sure that only the latest ones are used.
+ connect(generator, SIGNAL(finished()), SLOT(dropCachedData()));
}
HbSplashGenServer::~HbSplashGenServer()
@@ -108,6 +124,11 @@
mServer->setSplashScreenDirContents(entries);
}
+void HbSplashGenServer::dropCachedData()
+{
+ mServer->clearBitmapCache();
+}
+
bool HbSplashGenServer::startupSuccess() const
{
return mServer->startupSuccess();
@@ -138,6 +159,7 @@
HbSplashGenServerSymbian::~HbSplashGenServerSymbian()
{
mFs.Close();
+ clearBitmapCache();
}
CSession2 *HbSplashGenServerSymbian::NewSessionL(const TVersion &version, const RMessage2 &message) const
@@ -150,19 +172,75 @@
return new (ELeave) HbSplashGenServerSession(const_cast<HbSplashGenServerSymbian *>(this));
}
-bool HbSplashGenServerSymbian::transferHandle(const RMessage2 &message, const QString &fileName)
+void HbSplashGenServerSymbian::clearBitmapCache()
+{
+ for (int i = 0, ie = mBitmaps.count(); i != ie; ++i) {
+ delete mBitmaps.at(i).second;
+ }
+ mBitmaps.clear();
+}
+
+CFbsBitmap *HbSplashGenServerSymbian::getCachedBitmap(const QString &fileName) const
+{
+ for (int i = 0, ie = mBitmaps.count(); i != ie; ++i) {
+ if (!mBitmaps.at(i).first.compare(fileName, Qt::CaseInsensitive)) {
+ return mBitmaps.at(i).second;
+ }
+ }
+ return 0;
+}
+
+void HbSplashGenServerSymbian::cacheBitmap(const QString &key, CFbsBitmap *bmp)
{
+ while (mBitmaps.count() >= bitmap_cache_limit) {
+ delete mBitmaps.at(0).second;
+ mBitmaps.removeAt(0);
+ }
+ QPair<QString, CFbsBitmap *> entry(key, bmp);
+ mBitmaps.append(entry);
+}
+
+inline void completeWithBitmap(const RMessage2 &message, CFbsBitmap *bmp)
+{
+ TPckg<TInt> bmpHandle(bmp->Handle());
+ message.Write(3, bmpHandle);
+ message.Complete(KErrNone);
+}
+
+bool HbSplashGenServerSymbian::completeGetSplash(const RMessage2 &message, const QString &fileName)
+{
+ bool wantsBitmap = message.Function() == HbSplashSrvGetSplashData;
+ if (wantsBitmap) {
+ CFbsBitmap *cachedBitmap = getCachedBitmap(fileName);
+ if (cachedBitmap) {
+ qDebug() << PRE << "returning cached bitmap for" << fileName;
+ completeWithBitmap(message, cachedBitmap);
+ return true;
+ }
+ }
QDir splashScreenDir(mSplashScreenDir);
QString nativeName = QDir::toNativeSeparators(splashScreenDir.filePath(fileName));
qDebug() << PRE << "trying to read" << nativeName;
TPtrC nativeNameDes(static_cast<const TUint16 *>(nativeName.utf16()), nativeName.length());
RFile f;
if (f.Open(mFs, nativeNameDes, EFileRead | EFileShareReadersOrWriters) == KErrNone) {
- TInt err = f.TransferToClient(message, 3); // completes the message with the fs handle
- f.Close();
- if (err != KErrNone) {
- // the message is not yet completed if TransferToClient() failed
- return false;
+ if (wantsBitmap) {
+ CFbsBitmap *bmp = static_cast<CFbsBitmap *>(HbSplashDirectSymbian::load(&f, 0));
+ f.Close();
+ if (bmp) {
+ cacheBitmap(fileName, bmp);
+ completeWithBitmap(message, bmp);
+ } else {
+ qWarning() << PRE << "splash load failed";
+ return false;
+ }
+ } else {
+ TInt err = f.TransferToClient(message, 3); // completes the message with the fs handle
+ f.Close();
+ if (err != KErrNone) {
+ // the message is not yet completed if TransferToClient() failed
+ return false;
+ }
}
} else {
qWarning() << PRE << "could not open" << nativeName;
@@ -217,6 +295,12 @@
}
}
+ // No splash screen for blacklisted clients.
+ if (hbsplash_blacklist().contains(message.SecureId().iId)) {
+ qWarning() << PRE << "app is blacklisted";
+ return false;
+ }
+
// First check for file existence without filesystem access by using the directory
// listing received from the generator. This prevents wasting time with unnecessary
// Open() calls.
@@ -245,22 +329,22 @@
usingAppSpecific = true;
}
- bool transferred = transferHandle(message, name);
- if (!transferred) {
+ bool completed = completeGetSplash(message, name);
+ if (!completed) {
// If the screens are just being regenerated then there is a chance that
// the app-specific file is not yet ready but the generic one is already
// there (and the directory listing checked before is out-of-date). So
// try the generic file too.
if (usingAppSpecific) {
- transferred = transferHandle(message, genericName);
+ completed = completeGetSplash(message, genericName);
}
- if (!transferred) {
- qWarning() << PRE << "could not transfer file handle";
+ if (!completed) {
+ qWarning() << PRE << "could not complete getSplash request";
return false;
}
}
- qDebug() << PRE << "file handle transfered";
+ qDebug() << PRE << "getSplash request completed";
if (!cachedEntryListValid) {
// Set the splash dir back to empty so future invocations can also
// recognize that the generator has not notified us yet.
@@ -285,17 +369,24 @@
/*
Supported functions:
- EHbSplashSrvGetSplash
+ EHbSplashSrvGetSplashFile
param 0 [in] requested orientation ("prt" or "lsc")
param 1 [in] empty or uid (currently ignored if does not match the client's secure id)
param 2 [in] empty or screen id
param 3 [out] RFile handle (file is open for read)
Request is completed with RFs handle or KErrNotFound.
+
+ EHbSplashSrvGetSplashData
+ param 0 [in] requested orientation ("prt" or "lsc")
+ param 1 [in] empty or uid (currently ignored if does not match the client's secure id)
+ param 2 [in] empty or screen id
+ param 3 [out] CFbsBitmap handle
*/
qDebug() << PRE << "ServiceL" << message.Function() << QString::number(message.SecureId().iId, 16);
switch (message.Function()) {
- case HbSplashSrvGetSplash:
+ case HbSplashSrvGetSplashFile: // fallthrough
+ case HbSplashSrvGetSplashData:
if (!mServer->processGetSplash(message)) {
message.Complete(KErrNotFound);
}
--- a/src/hbservers/hbsplashgenerator/hbsplashgen_server_symbian_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbsplashgenerator/hbsplashgen_server_symbian_p.h Thu May 27 13:10:59 2010 +0300
@@ -46,6 +46,7 @@
private slots:
void onOutputDirContentsUpdated(const QString &dir, const QStringList &entries);
+ void dropCachedData();
private:
HbSplashGenServerSymbian *mServer;
--- a/src/hbservers/hbsplashgenerator/hbsplashgenerator.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbsplashgenerator/hbsplashgenerator.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,6 +25,7 @@
#include "hbsplashgenerator_p.h"
#include "hbsplashdirs_p.h"
+#include "hbsplashdefs_p.h"
#include "hbmainwindow.h"
#include "hbmainwindow_p.h"
#include "hbinstance.h"
@@ -45,19 +46,32 @@
#include <QFile>
#include <QFileInfo>
#include <QSet>
+#include <QSettings>
#include <QTranslator>
#include <QLocale>
#include <QTimer>
+#if defined(Q_OS_SYMBIAN)
+#include <f32file.h>
+#include <coemain.h>
+#endif
+
const char *last_theme_key = "lasttheme";
const char *last_lang_key = "lastlang";
const char *last_file_count_key = "lastfilecount";
const char *last_output_dir_key = "lastoutdir";
HbSplashGenerator::HbSplashGenerator()
- : mBusy(false), mForceRegen(false), mMainWindow(0), mFirstRegenerate(true),
- mSettings("Nokia", "HbSplash")
+ : mBusy(false), mForceRegen(false), mMainWindow(0), mFirstRegenerate(true)
{
+#if defined(Q_OS_SYMBIAN)
+ CCoeEnv::Static()->FsSession().CreatePrivatePath(EDriveC);
+ QString iniFileName = QString("c:/private/%1/hbsplashgen.ini")
+ .arg(QString::number(hbsplash_server_uid3.iUid, 16));
+ mSettings = new QSettings(iniFileName, QSettings::IniFormat, this);
+#else
+ mSettings = new QSettings("Nokia", "HbSplash", this);
+#endif
// Effects on decorators (started when they are shown) would ruin
// the screenshot. So disable everything (except the orientation
// switch effect which is needed for a proper rotated image).
@@ -129,10 +143,10 @@
// number of files in the splash screen directory, or the splash screen
// directory path is different than the recorded values. (or when
// regeneration is forced via command line arg)
- QString lastTheme = mSettings.value(QLatin1String(last_theme_key)).toString();
- QString lastLang = mSettings.value(QLatin1String(last_lang_key)).toString();
- int lastFileCount = mSettings.value(QLatin1String(last_file_count_key)).toInt();
- QString lastOutputDir = mSettings.value(QLatin1String(last_output_dir_key)).toString();
+ QString lastTheme = mSettings->value(QLatin1String(last_theme_key)).toString();
+ QString lastLang = mSettings->value(QLatin1String(last_lang_key)).toString();
+ int lastFileCount = mSettings->value(QLatin1String(last_file_count_key)).toInt();
+ QString lastOutputDir = mSettings->value(QLatin1String(last_output_dir_key)).toString();
QString currentTheme = theme->name();
QString currentLang = QLocale::system().name();
QString currentOutputDir = hbsplash_output_dir();
@@ -163,6 +177,7 @@
qDebug() << PRE << "regenerate() theme:" << themeName;
if (!themeName.isEmpty()) {
try {
+ emit regenerateStarted();
QTime queuePrepTime;
queuePrepTime.start();
// Delete existing splash screens. This is important because apps
@@ -202,13 +217,17 @@
}
}
-void HbSplashGenerator::regenerateOne(const QString &splashmlFileName)
+void HbSplashGenerator::regenerateOne(const QString &splashmlFileName, const QString &customTrDir)
{
mQueue.clear();
QueueItem item(hbInstance->theme()->name(), Qt::Vertical);
- item.mWorkDirForSingleFileRegen = QFileInfo(splashmlFileName).path(); // e.g. for translations
+ QString path = QFileInfo(splashmlFileName).path();
+ item.mCustomTrDirs.append(path);
+ if (!customTrDir.isEmpty()) {
+ item.mCustomTrDirs.append(customTrDir);
+ }
parseSplashml(splashmlFileName, item);
- item.mDocmlFileName = QDir(item.mWorkDirForSingleFileRegen).filePath(item.mDocmlFileName);
+ item.mDocmlFileName = QDir(path).filePath(item.mDocmlFileName);
mQueue.enqueue(item); // generate it regardless of the fixed orientation setting
item.mOrientation = Qt::Horizontal;
mQueue.enqueue(item);
@@ -245,11 +264,11 @@
// the settings and stop.
if (mQueue.isEmpty()) {
qDebug() << PRE << "queue is empty regen finished";
- mSettings.setValue(last_theme_key, hbInstance->theme()->name());
- mSettings.setValue(last_lang_key, QLocale::system().name());
+ mSettings->setValue(last_theme_key, hbInstance->theme()->name());
+ mSettings->setValue(last_lang_key, QLocale::system().name());
QString outDir = hbsplash_output_dir();
- mSettings.setValue(last_file_count_key, updateOutputDirContents(outDir));
- mSettings.setValue(last_output_dir_key, outDir);
+ mSettings->setValue(last_file_count_key, updateOutputDirContents(outDir));
+ mSettings->setValue(last_output_dir_key, outDir);
emit finished();
qDebug() << PRE << "processQueue() over";
return;
@@ -265,14 +284,7 @@
mItemTime.start();
log("generating splash screen", mItem.mThemeName, mItem.mOrientation);
- if (!mMainWindow) {
- // The FixedVertical flag is used just to disable the sensor-based
- // orientation switching.
- mMainWindow = new HbMainWindow(0, Hb::WindowFlagFixedVertical);
- // Make sure that at least the 1st phase of the delayed
- // construction is done right now.
- HbMainWindowPrivate::d_ptr(mMainWindow)->_q_delayedConstruction();
- }
+ ensureMainWindow();
mMainWindow->setOrientation(mItem.mOrientation, false);
qDebug() << PRE << "mainwindow init time (ms):" << mItemTime.elapsed();
@@ -290,6 +302,18 @@
qDebug() << PRE << "processQueue() over";
}
+void HbSplashGenerator::ensureMainWindow()
+{
+ if (!mMainWindow) {
+ // The FixedVertical flag is used just to disable the sensor-based
+ // orientation switching.
+ mMainWindow = new HbMainWindow(0, Hb::WindowFlagFixedVertical);
+ // Make sure that at least the 1st phase of the delayed
+ // construction is done right now.
+ HbMainWindowPrivate::d_ptr(mMainWindow)->_q_delayedConstruction();
+ }
+}
+
void HbSplashGenerator::processWindow()
{
// Take the screenshot, remove content, and move on to the next request in the queue.
@@ -325,7 +349,7 @@
t.start();
QString splashFile = splashFileName();
qDebug() << PRE << "saving to" << splashFile;
- if (saveSpl(splashFile, image)) {
+ if (saveSpl(splashFile, image, mItem.mFlagsToStore)) {
#if !defined(Q_OS_SYMBIAN) && defined(QT_DEBUG)
image.save(splashFile + QLatin1String(".png"));
#endif
@@ -368,20 +392,21 @@
return image.bits();
}
-bool HbSplashGenerator::saveSpl(const QString &nameWithoutExt, const QImage &image)
+bool HbSplashGenerator::saveSpl(const QString &nameWithoutExt, const QImage &image, quint32 extra)
{
QString fn(nameWithoutExt);
fn.append(".spl");
QFile f(fn);
if (f.open(QIODevice::WriteOnly | QIODevice::Truncate)) {
- int w = image.width();
- int h = image.height();
- int bpl = image.bytesPerLine();
- QImage::Format fmt = image.format();
- f.write((char *) &w, sizeof(int));
- f.write((char *) &h, sizeof(int));
- f.write((char *) &bpl, sizeof(int));
- f.write((char *) &fmt, sizeof(QImage::Format));
+ quint32 w = (quint32) image.width();
+ quint32 h = (quint32) image.height();
+ quint32 bpl = (quint32) image.bytesPerLine();
+ qint32 fmt = (qint32) image.format();
+ f.write((char *) &w, sizeof(quint32));
+ f.write((char *) &h, sizeof(quint32));
+ f.write((char *) &bpl, sizeof(quint32));
+ f.write((char *) &fmt, sizeof(qint32));
+ f.write((char *) &extra, sizeof(quint32));
f.write((const char *) imageBits(image), bpl * h);
f.close();
return true;
@@ -414,13 +439,16 @@
HbSplashGenerator::QueueItem::QueueItem()
: mOrientation(Qt::Vertical),
- mHideBackground(false)
+ mHideBackground(false),
+ mFlagsToStore(0)
{
}
HbSplashGenerator::QueueItem::QueueItem(const QString &themeName, Qt::Orientation orientation)
- : mThemeName(themeName), mOrientation(orientation),
- mHideBackground(false)
+ : mThemeName(themeName),
+ mOrientation(orientation),
+ mHideBackground(false),
+ mFlagsToStore(0)
{
}
@@ -717,9 +745,8 @@
void HbSplashGenerator::finishWindow()
{
- // Process additional settings.
+ // There must be a view always in order to support view-specific settings.
if (mMainWindow->views().isEmpty()) {
- // There must be a view always in order to support view-specific settings.
mMainWindow->addView(new HbWidget);
}
@@ -728,7 +755,7 @@
HbView *view = views.at(0);
// view-flags
- HbView::HbViewFlags viewFlags = HbView::ViewFlagNone;
+ HbView::HbViewFlags viewFlags = view->viewFlags();
if (mItem.mViewFlags.contains("tb-minimizable")) {
viewFlags |= HbView::ViewTitleBarMinimizable;
}
@@ -754,6 +781,11 @@
viewFlags |= HbView::ViewStatusBarFloating;
}
view->setViewFlags(viewFlags);
+ if (viewFlags.testFlag(HbView::ViewStatusBarHidden)
+ || viewFlags.testFlag(HbView::ViewStatusBarTransparent))
+ {
+ mItem.mFlagsToStore |= 1;
+ }
// navi-action-icon
if (!mItem.mNaviActionIcon.isEmpty()) {
@@ -792,17 +824,24 @@
}
// Hide dynamic content from status bar (clock, indicators).
+ setStatusBarElementsVisible(false);
+}
+
+void HbSplashGenerator::setStatusBarElementsVisible(bool visible)
+{
+ HbMainWindowPrivate *mwd = HbMainWindowPrivate::d_ptr(mMainWindow);
HbStatusBar *statusBar = mwd->mStatusBar;
if (statusBar) {
foreach (QGraphicsItem *item, statusBar->childItems()) {
QString name = HbStyle::itemName(item);
- bool hideItem = name == QLatin1String("signal")
+ bool knownItem =
+ name == QLatin1String("signal")
|| name == QLatin1String("battery")
|| name == QLatin1String("notificationindicators")
|| name == QLatin1String("settingsindicators")
|| name == QLatin1String("timetext");
- if (hideItem) {
- item->setVisible(false);
+ if (knownItem) {
+ item->setVisible(visible);
}
}
}
@@ -814,9 +853,7 @@
QTranslator *translator = new QTranslator;
bool ok = false;
QStringList dirNames(hbsplash_translation_dirs());
- if (!mItem.mWorkDirForSingleFileRegen.isEmpty()) {
- dirNames.append(mItem.mWorkDirForSingleFileRegen);
- }
+ dirNames.append(mItem.mCustomTrDirs);
foreach (const QString &dirName, dirNames) {
QDir dir(dirName);
QString fullName = dir.filePath(name + '_' + lang);
--- a/src/hbservers/hbsplashgenerator/hbsplashgenerator.pro Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbsplashgenerator/hbsplashgenerator.pro Thu May 27 13:10:59 2010 +0300
@@ -35,6 +35,7 @@
HEADERS += $$PWD/hbsplashgenerator_p.h
HEADERS += $$PWD/hbsplashdirs_p.h
symbian: HEADERS += $$PWD/hbsplashgen_server_symbian_p.h
+HEADERS += $$PWD/hbsplashblacklist_p.h
symbian {
TARGET.CAPABILITY = CAP_APPLICATION
@@ -55,6 +56,7 @@
LIBS += -lavkon
LIBS += -leikcore
LIBS += -lapparc
+ LIBS += -lfbscli
}
hbAddLibrary(hbcore/HbCore)
--- a/src/hbservers/hbsplashgenerator/hbsplashgenerator_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbsplashgenerator/hbsplashgenerator_p.h Thu May 27 13:10:59 2010 +0300
@@ -33,7 +33,6 @@
#include <QTime>
#include <QColor>
#include <QHash>
-#include <QSettings>
#include <QDebug>
#include <QXmlStreamReader>
#include <QFileSystemWatcher>
@@ -41,6 +40,7 @@
QT_BEGIN_NAMESPACE
class QTranslator;
+class QSettings;
QT_END_NAMESPACE
class HbMainWindow;
@@ -57,13 +57,14 @@
void start(bool forceRegen);
signals:
+ void regenerateStarted();
void outputDirContentsUpdated(const QString &dir, const QStringList &entries);
void finished();
public slots:
void regenerate();
void uncachedRegenerate();
- void regenerateOne(const QString &splashmlFileName);
+ void regenerateOne(const QString &splashmlFileName, const QString &customTrDir = QString());
private slots:
void doStart();
@@ -100,15 +101,17 @@
QString mOrientation;
};
QList<ItemBgGraphicsRequest> mItemBgGraphics;
- QString mWorkDirForSingleFileRegen;
+ QStringList mCustomTrDirs;
+ quint32 mFlagsToStore;
};
private:
+ void ensureMainWindow();
void takeScreenshot();
void cleanup();
QImage renderView();
QString splashFileName();
- bool saveSpl(const QString &nameWithoutExt, const QImage &image);
+ bool saveSpl(const QString &nameWithoutExt, const QImage &image, quint32 extra);
void addSplashmlItemToQueue(const QueueItem &item);
void queueAppSpecificItems(const QString &themeName, Qt::Orientation orientation);
bool parseSplashml(const QString &fullFileName, QueueItem &item);
@@ -116,6 +119,7 @@
void setupAppSpecificWindow();
void setupNameBasedWidgetProps(HbDocumentLoader &loader);
void finishWindow();
+ void setStatusBarElementsVisible(bool visible);
void addTranslator(const QString &name);
void clearTranslators();
int updateOutputDirContents(const QString &outDir);
@@ -129,7 +133,7 @@
QTime mItemTime;
bool mFirstRegenerate;
QHash<QString, QueueItem> mParsedSplashmls;
- QSettings mSettings;
+ QSettings *mSettings;
QFileSystemWatcher mFsWatcher;
};
--- a/src/hbservers/hbsplashgenerator/main.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbsplashgenerator/main.cpp Thu May 27 13:10:59 2010 +0300
@@ -56,6 +56,9 @@
wgName->SetWindowGroupName(env->RootWin());
CleanupStack::PopAndDestroy();
RThread::RenameMe(hbsplash_server_name);
+ RProcess process;
+ process.SetPriority(EPriorityForeground);
+ process.Close();
}
#else
Q_UNUSED(mutexToSignal);
@@ -88,8 +91,7 @@
#ifdef Q_OS_SYMBIAN
qDebug("[hbsplashgenerator] starting server");
HbSplashGenServer server(&gen);
- // If there was an error (or an instance is already running (it is
- // possible in certain race conditions)) then exit right away.
+ // If there was an error then exit right away.
if (!server.startupSuccess()) {
qDebug("[hbsplashgenerator] exiting due to failed server startup");
return 0;
--- a/src/hbservers/hbthemeserver/hbcache_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbcache_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -50,7 +50,7 @@
\a key denotes the unique identifier for the cache item whose value is to be returned
*/
-HbCacheItem* HbCache::value(const QString& key) const
+HbCacheItem* HbCache::value(const QString &key) const
{
return cache.value(key, 0);
}
@@ -62,9 +62,9 @@
\a key denotes the unique identifier for the cache item that is to be searched in the cache.
*/
-HbCacheItem* HbCache::cacheItem(const QString& key)
+HbCacheItem* HbCache::cacheItem(const QString &key)
{
- HbCacheItem* item = 0;
+ HbCacheItem *item = 0;
if (!cache.contains(key)) {
return 0;
}
@@ -86,12 +86,12 @@
\a key denotes the unique identifier for the cache item that is to be searched in the cache.
\a item represents the cache-item to be inserted.
*/
-bool HbCache::insert(const QString& key, HbCacheItem* item)
+bool HbCache::insert(const QString &key, HbCacheItem *item)
{
if (!item) {
return false;
}
- cache.insert(key, const_cast<HbCacheItem*>(item));
+ cache.insert(key, const_cast<HbCacheItem *>(item));
item->refCount++;
//if item is also present in LRU list, remove it from there to avoid
// deletion following LRU policy
@@ -109,12 +109,12 @@
unused-resources list for removal later in case of OOM scenario.
\a key denotes the unique identifier for the cache item that is to be searched in the cache.
*/
-bool HbCache::remove(const QString& key)
+bool HbCache::remove(const QString &key)
{
if (key.isEmpty() || !cache.contains(key)) {
return false;
}
- HbCacheItem* item = cache[key];
+ HbCacheItem *item = cache[key];
//reference count can obviously be never less than zero, meaning that for all the
//css files stored with server-css-cache, there would be minimum zero client (app)
//associated
@@ -152,7 +152,7 @@
\fn HbCache::cacheHandle()
Returns a handle to the cache which holds (css-file-name, cacheItem) key-value pair.
*/
-QHash<QString, HbCacheItem*> &HbCache::cacheHandle()
+QHash<QString, HbCacheItem *> &HbCache::cacheHandle()
{
return cache;
}
@@ -167,7 +167,7 @@
for (QHash<QString, HbCacheItem*>::const_iterator iter = cache.constBegin();
iter != itEnd;
++iter) {
- HbCacheItem* temp = iter.value();
+ HbCacheItem *temp = iter.value();
manager->free(temp->offset);
delete temp;
}
--- a/src/hbservers/hbthemeserver/hbdoublelinkedlist_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbdoublelinkedlist_p.h Thu May 27 13:10:59 2010 +0300
@@ -45,9 +45,9 @@
inline HbDLink();
- inline ElemType* next() const;
+ inline ElemType *next() const;
- inline ElemType* prev() const;
+ inline ElemType *prev() const;
inline void setNext(ElemType *element);
@@ -55,8 +55,8 @@
private:
- ElemType* mNext;
- ElemType* mPrev;
+ ElemType *mNext;
+ ElemType *mPrev;
};
@@ -85,7 +85,6 @@
class HbDLinkList
{
public:
-
inline explicit HbDLinkList(HbDLink<ElemType> ElemType:: *dLink);
inline ~HbDLinkList();
inline void insertBack(ElemType *item);
@@ -101,11 +100,9 @@
inline void insertAfter(ElemType *newItem, ElemType *lastItem);
private:
-
ElemType *listFront;
ElemType *listBack;
- HbDLink<ElemType> ElemType:: *mDLink;
-
+ HbDLink<ElemType> ElemType:: *mDLink;
};
#include "hbdoublelinkedlistinline_p.h"
--- a/src/hbservers/hbthemeserver/hbiconcacheitemcreator_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbiconcacheitemcreator_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -46,7 +46,8 @@
@hbserver
\class HbIconCacheItemCreator
\brief HbIconCacheItemCreator is a factory class responsible for creating the cache items.
- The cache item structure internally maintains details of the icons created both in the Gpu and the Cpu memory.
+ The cache item structure internally maintains details of
+ the icons created both in the Gpu and the Cpu memory.
*/
@@ -72,19 +73,20 @@
QString HbIconCacheItemCreator::KSvg = "SVG";
QString HbIconCacheItemCreator::KNvg = "NVG";
QString HbIconCacheItemCreator::KPic = "PIC";
-QString HbIconCacheItemCreator::KBlob = "BOLB";
+QString HbIconCacheItemCreator::KBlob = "BLOB";
QString HbIconCacheItemCreator::KSgimage = "SGIMAGE";
/*!
\fn HbIconCacheItemCreator::createCacheItem()
- The createCacheItem is responsible for creating an icon in cpu or gpu memory based on the format provided
+ The createCacheItem is responsible for creating an icon in cpu or gpu memory
+ based on the format provided.
\a key denotes the unique identifier for the cache item
\a options indicate different ways of loading icons
\a format indicates the icon format e.g. svg/nvg etc.\
\a currentRenderingMode ThemeServer's current rendering mode state.
*/
-HbIconCacheItem* HbIconCacheItemCreator::createCacheItem(const HbIconKey &key,
+HbIconCacheItem *HbIconCacheItemCreator::createCacheItem(const HbIconKey &key,
HbIconLoader::IconLoaderOptions options,
const QString &format,
HbRenderingMode currentRenderingMode,
@@ -95,7 +97,7 @@
Q_UNUSED(currentRenderingMode)
#endif
QScopedPointer <HbIconCacheItem> tempIconCacheItem(new HbIconCacheItem);
- HbIconCacheItem* item = tempIconCacheItem.data();
+ HbIconCacheItem *item = tempIconCacheItem.data();
QScopedPointer <HbIconProcessor> rasterIcon;
QScopedPointer <HbIconProcessor> vectorIcon;
@@ -124,32 +126,32 @@
if (!isMultiPiece) {
#ifdef HB_SGIMAGE_ICON
if(renderMode == ESWRendering){
- rasterIcon.reset(new HbPixmapIconProcessor( key, options, format));
- }else {
+ rasterIcon.reset(new HbPixmapIconProcessor(key, options, format));
+ } else {
if (HbThemeServerPrivate::gpuMemoryState()) {
- rasterIcon.reset(new HbSgimageIconProcessor( key, options, format));
+ rasterIcon.reset(new HbSgimageIconProcessor(key, options, format));
}
- vectorIcon.reset(new HbNvgIconProcessor( key, options, format ));
+ vectorIcon.reset(new HbNvgIconProcessor(key, options, format));
}
#endif
// if sgImage support is enabled by default remove this block
#ifndef HB_SGIMAGE_ICON
if(renderMode == ESWRendering){
- rasterIcon.reset(new HbPixmapIconProcessor( key, options, format));
+ rasterIcon.reset(new HbPixmapIconProcessor(key, options, format));
} else {
- vectorIcon.reset(new HbNvgIconProcessor( key, options, format ));
+ vectorIcon.reset(new HbNvgIconProcessor(key, options, format));
}
#endif
// block end
}
else {
if(renderMode == ESWRendering){
- rasterIcon.reset(new HbPixmapIconProcessor( key, options, format));
+ rasterIcon.reset(new HbPixmapIconProcessor(key, options, format));
} else {
// multipieceIcon So make nvgiconimpl for .nvg files
// No raster icon data is created
- vectorIcon.reset(new HbNvgIconProcessor( key, options, format ));
+ vectorIcon.reset(new HbNvgIconProcessor(key, options, format));
}
}
#endif
@@ -210,14 +212,14 @@
/*!
\fn HbIconCacheItemCreator::createCacheItem()
- This overloaded createCacheItem is a helper function to populate a cache item if this item is already
- created with some parameters either on the Gpu or the Cpu
+ This overloaded createCacheItem is a helper function to populate a cache item
+ if this item is already created with some parameters either on the Gpu or the Cpu
\a iconCacheItem denotes the cacheItem to be populated
\a key unique identifier to identify the cache item
\a currentRenderingMode ThemeServer's current rendering mode state
*/
-void HbIconCacheItemCreator::createCacheItem(HbIconCacheItem& iconCacheItem,
+void HbIconCacheItemCreator::createCacheItem(HbIconCacheItem &iconCacheItem,
const HbIconKey &key,
HbRenderingMode currentRenderingMode)
{
@@ -252,10 +254,12 @@
#ifdef HB_SGIMAGE_ICON
if(renderMode == EHWRendering){
if (HbThemeServerPrivate::gpuMemoryState()){
- rasterIcon.reset(new HbSgimageIconProcessor( key, iconCacheItem.iconOptions, format));
+ rasterIcon.reset(new HbSgimageIconProcessor(key, iconCacheItem.iconOptions,
+ format));
}
}else {
- rasterIcon.reset(new HbPixmapIconProcessor( key, iconCacheItem.iconOptions, format));
+ rasterIcon.reset(new HbPixmapIconProcessor(key, iconCacheItem.iconOptions,
+ format));
}
#endif
#ifdef NVG_ICON
@@ -308,8 +312,8 @@
Q_UNUSED(currentRenderingMode)
#endif
- HbIconCacheItem* item = 0;
- QScopedPointer <HbIconCacheItem> tempIconCacheItem;
+ HbIconCacheItem *item = 0;
+ QScopedPointer<HbIconCacheItem> tempIconCacheItem;
bool isIconCreated = false;
QScopedPointer<HbIconProcessor> rasterIcon;
@@ -345,7 +349,8 @@
return item;
#endif
} else {
- rasterIcon.reset(new HbPixmapIconProcessor(finalIconKey, (HbIconLoader::IconLoaderOptions)multiPieceIconParams.options, format));
+ rasterIcon.reset(new HbPixmapIconProcessor(finalIconKey,
+ static_cast<HbIconLoader::IconLoaderOptions>(multiPieceIconParams.options), format));
}
if (rasterIcon.data()) {
--- a/src/hbservers/hbthemeserver/hbiconcacheitemcreator_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbiconcacheitemcreator_p.h Thu May 27 13:10:59 2010 +0300
@@ -64,12 +64,12 @@
{
public:
- static HbIconCacheItem* createCacheItem(const HbIconKey &key,
+ static HbIconCacheItem *createCacheItem(const HbIconKey &key,
HbIconLoader::IconLoaderOptions options,
const QString &format,
HbRenderingMode currentRenderingMode,
bool isMultiPiece = false);
- static void createCacheItem(HbIconCacheItem& iconCacheItem,
+ static void createCacheItem(HbIconCacheItem &iconCacheItem,
const HbIconKey &key,
HbRenderingMode currentRenderingMode);
@@ -81,8 +81,6 @@
bool allNvg,
HbRenderingMode currentRenderingMode);
-
-
static QString KSvg ;
static QString KNvg ;
static QString KPic ;
--- a/src/hbservers/hbthemeserver/hbicondatacache_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbicondatacache_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -36,23 +36,28 @@
@hbserver
\class HbIconDataCache
\brief HbIconDataCache provides an implementation for the theme server's icon cache.
- It acts as a central repository for storing the various details of all the icons cached in the server.
- It provides various methods to insert new items, remove items as well as find existing cached items in the cache.
+ It acts as a central repository for storing the various details
+ of all the icons cached in the server. It provides various methods to insert new items,
+ remove items as well as find existing cached items in the cache.
It also has methods to limit the cache size both on Gpu as well as Cpu shared memory.
- Reference count based caching - On performing an Icon look up in the server, if the icon is not already cached,
- the cache item is created and inserted into cache and its reference count is incremented.
- If the same icon is requested by another application, the cached instance is returned and only the reference
- count is incremented. Similarly, the refrence count is decremented whenever an icon is destroyed.
+ Reference count based caching - On performing an Icon look up in the server,
+ if the icon is not already cached, the cache item is created and inserted into cache
+ and its reference count is incremented.
+ If the same icon is requested by another application, the cached instance is returned
+ and only the reference count is incremented.
+ Similarly, the refrence count is decremented whenever an icon is destroyed.
LRU policy is used for removal of icons from cache.
- The cache maintains two separate doubly link lists to maintain the order of the least recently used icons created
- in GPU memory as well as those created in the shared memory. Whenever, the reference count for a cached item becomes 0,
+ The cache maintains two separate doubly link lists to maintain the order
+ of the least recently used icons created in GPU memory as well as those created
+ in the shared memory. Whenever, the reference count for a cached item becomes 0,
it is not deleted from the cache rather; the cached icon instance is appended to the LRU list.
- Consider now that a scenario arrives when the cache has reached its max limit and there are some unused icons
- (i.e. icons with reference count = 0) in the LRU list. Suppose at this point there is a new icon caching request.
- In such a scenario, the unused icons, starting with those at the beginning of the LRU lists are removed from the cache,
- one after the other, till the new icon can be accommodated.
+ Consider now that a scenario arrives when the cache has reached its max limit
+ and there are some unused icons (i.e. icons with reference count = 0) in the LRU list.
+ Suppose at this point there is a new icon caching request.
+ In such a scenario, the unused icons, starting with those at the beginning of the LRU lists
+ are removed from the cache one after the other, till the new icon can be accommodated.
Description of data members
// A list that maintains an ordered collection of least recently used icons in GPU
@@ -115,7 +120,6 @@
HbIconDataCache::~HbIconDataCache()
{
clear();
-
delete cache;
}
@@ -137,11 +141,11 @@
GET_MEMORY_MANAGER(HbMemoryManager::SharedMemory)
QHash<HbIconKey, HbIconCacheItem*>::const_iterator itEnd(cache->constEnd());
- for (QHash < HbIconKey,
- HbIconCacheItem* >::const_iterator iter = cache->constBegin();
+ for (QHash<HbIconKey,
+ HbIconCacheItem *>::const_iterator iter = cache->constBegin();
iter != itEnd;
++iter) {
- HbIconCacheItem* temp = iter.value();
+ HbIconCacheItem *temp = iter.value();
if (temp->rasterIconData.type != INVALID_FORMAT) {
switch (temp->rasterIconData.type) {
case PIC :
@@ -206,11 +210,11 @@
\a key denotes the unique identifier for the cache item that is to be searched in the cache.
*/
-HbIconCacheItem* HbIconDataCache::getCacheItem(const HbIconKey &key ,
+HbIconCacheItem *HbIconDataCache::getCacheItem(const HbIconKey &key,
HbRenderingMode currentRenderingMode,
bool isMultiIconPiece)
{
- HbIconCacheItem* item = 0;
+ HbIconCacheItem *item = 0;
if (!cache->contains(key)) {
return 0;
@@ -248,19 +252,16 @@
if ((item->rasterIconData.type == INVALID_FORMAT) &&
(goodMemory && !isMultiIconPiece)) {
if (item->vectorIconData.type == NVG) {
-
HbIconCacheItemCreator::createCacheItem(*item, key, currentRenderingMode);
if (item->rasterIconData.type != INVALID_FORMAT) {
currentGpuCacheSize += item->rasterIconDataCost;
}
}
-
//Debug Code for Test Purpose
#ifdef HB_ICON_CACHE_DEBUG
addedItemMem = item->rasterIconDataCost;
#endif
}
-
// If the Icon is present in CPU LRU list, then remove it from the list
if (((item->cpuLink.next() != 0) || (item->cpuLink.prev() != 0)) ||
((item == cpuLruList.front()) && (item == cpuLruList.back()))) {
@@ -284,7 +285,6 @@
}
#endif
}
-
// If the Icon does not have CPU data and there is enough space to create
// the icon in CPU cache now, we go ahead and create CPU shared data
if ((item->vectorIconData.type == INVALID_FORMAT) &&
@@ -302,7 +302,8 @@
//Debug Code for Test Purpose
#ifdef HB_ICON_CACHE_DEBUG
addedItemRefCount = item->refCount;
- qDebug() << "HbIconDataCache::getCacheItem: " << "Cache hit in Server-Cache for" << key.filename;
+ qDebug() << "HbIconDataCache::getCacheItem: "
+ << "Cache hit in Server-Cache for" << key.filename;
qDebug() << "HbIconDataCache::getCacheItem: Server RefCount now = " << item->refCount;
#endif
@@ -314,16 +315,19 @@
Provides a mechanism for inserting items into the cache.
Checks are first done to see whether item can be accomodated in the GPU memory.
If so the Gpu limits are updated. Next it tries to cache the item in the Cpu.
- If possible, the Cpu limits are updated. If niether is possible, a failure to insert is returned.
- In case of success, the item is inserted into the cache and the reference count for the item is incremented by 1.
+ If possible, the Cpu limits are updated. If neither is possible,
+ a failure to insert is returned.
+ In case of success, the item is inserted into the cache and
+ the reference count for the item is incremented by 1.
\a key denotes the unique identifier for the cache item that is to be inserted into the cache.
\a item the cache item that is to be inserted into the cache.
*/
-bool HbIconDataCache::insert(const HbIconKey &key, HbIconCacheItem* item)
+bool HbIconDataCache::insert(const HbIconKey &key, HbIconCacheItem *item)
{
- if (!item)
+ if (!item) {
return false;
+ }
// Check if Item can be accomdated in GPU cache
bool gpuCaching = isItemCachableInGpu(item);
@@ -334,7 +338,6 @@
if ((!gpuCaching) && (!cpuCaching)) {
return false;
}
-
// Item can be accomdated in GPU cache
if (gpuCaching) {
// Increment the GPU cache size
@@ -359,17 +362,18 @@
currentCpuCacheSize += item->vectorIconDataCost;
} else {
// New item's icon data cost is more than available free CPU cahe size
- // Check if some items, whose ref count is 0, can be removed to make way for new item
+ // Check if some items, whose ref count is 0,
+ // can be removed to make way for new item
createCpuCacheSpace(item->vectorIconDataCost);
currentCpuCacheSize += item->vectorIconDataCost;
}
}
-
if (currentCpuCacheSize > maxCpuCacheLimit) {
currentCpuCacheSize = maxCpuCacheLimit;
}
}
- QHash<HbIconKey, HbIconCacheItem*>::iterator iter = cache->insert(key, const_cast<HbIconCacheItem*>(item));
+ QHash<HbIconKey, HbIconCacheItem*>::iterator iter =
+ cache->insert(key, const_cast<HbIconCacheItem*>(item));
if (iter == cache->end()) {
return false;
}
@@ -385,7 +389,8 @@
} else if (cpuCaching) {
addedItemMem = item->vectorIconDataCost;
}
- qDebug() << "HbIconDataCache::insert: " << "Item " << key.filename<<" inserted in Server-Cache";
+ qDebug() << "HbIconDataCache::insert: " << "Item " << key.filename
+ << " inserted in Server-Cache";
qDebug() << "HbIconDataCache::insert: Server RefCount now = " << item->refCount;
#endif
@@ -395,18 +400,20 @@
/*!
\fn HbIconDataCache::remove()
Remove provides a mechanism for decrementing the reference count of a cached item.
- In case the reference count becomes 0, the cache item instance is appended to the corresponding LRU list.
- Actual removal of the cache item from the cache only occurs when the cache has reached a max limit and a new request for
- insert comes.
- \a key denotes the unique identifier for the cache item whose ref count is to be decremented in the cache.
+ In case the reference count becomes 0,
+ the cache item instance is appended to the corresponding LRU list.
+ Actual removal of the cache item from the cache only occurs
+ when the cache has reached a max limit and a new request for insert comes.
+ \a key denotes the unique identifier for the cache item whose
+ ref count is to be decremented in the cache.
*/
-bool HbIconDataCache::remove(const HbIconKey& key, bool keepInCache)
+bool HbIconDataCache::remove(const HbIconKey &key, bool keepInCache)
{
if (key.filename.isEmpty() || !cache->contains(key)) {
return false;
}
- HbIconCacheItem* item = (*cache)[(key)];
+ HbIconCacheItem *item = (*cache)[(key)];
item->refCount--;
//Debug Code for Test Purpose
@@ -425,7 +432,6 @@
return true;
}
}
-
if (item->rasterIconData.type == OTHER_SUPPORTED_FORMATS) {
if (keepInCache) {
cpuLruList.insertBack(item);
@@ -436,8 +442,6 @@
return true;
}
}
-
-
//Debug Code for Test Purpose
#ifdef HB_ICON_CACHE_DEBUG
if (! enableCaching) {
@@ -454,15 +458,12 @@
}
} else {
#endif
-
-
//Debug Code for Test Purpose
#ifdef HB_ICON_CACHE_DEBUG
rasterLruListCount++;
}
#endif
-
if ((item->vectorIconData.type != INVALID_FORMAT) && item->refCount == 0) {
//Debug Code for Test Purpose
@@ -525,7 +526,6 @@
#else
maxGpuCacheLimit = size;
#endif
-
}
/*!
@@ -559,12 +559,13 @@
/*!
\fn HbIconDataCache::contains()
Provides a mecahnism for finding whether an item exists in cache.
- Is different from the find function in that, this function simply checks whether an item is presentin cache, whereas find
+ Is different from the find function in that,
+ this function simply checks whether an item is presentin cache, whereas find
also performs additional operations such as incrementing the reference count.
\a key denotes the unique identifier for the cache item that is to be found into the cache.
*/
-bool HbIconDataCache::contains(const HbIconKey &key)const
+bool HbIconDataCache::contains(const HbIconKey &key) const
{
return (cache->contains(key));
}
@@ -575,7 +576,7 @@
\a key denotes the unique identifier for the cache item whose value is to be returned
*/
-HbIconCacheItem* HbIconDataCache::value(const HbIconKey &key)const
+HbIconCacheItem *HbIconDataCache::value(const HbIconKey &key) const
{
if (cache->contains(key)) {
return cache->value(key);
@@ -584,23 +585,22 @@
}
}
-
/*!
\fn HbIconDataCache::isItemCachableInGpu()
Checks if the new item can be accomdated in the Gpu memory.
\a item is the new item to be cached
BLOB is always cached in cpu so this function always returns false for such items.
*/
-bool HbIconDataCache::isItemCachableInGpu(const HbIconCacheItem* item)const
+bool HbIconDataCache::isItemCachableInGpu(const HbIconCacheItem *item) const
{
- if (maxGpuCacheLimit <= 0 || item->rasterIconDataCost <= 0 || item->blobIconData.type != INVALID_FORMAT ||
- item->rasterIconData.type != SGIMAGE) {
+ if (maxGpuCacheLimit <= 0 || item->rasterIconDataCost <= 0
+ || item->blobIconData.type != INVALID_FORMAT || item->rasterIconData.type != SGIMAGE) {
return false;
}
// Item's GPU Icon's cost is greater than the max GPU Limit
- if (item->rasterIconDataCost > maxGpuCacheLimit)
+ if (item->rasterIconDataCost > maxGpuCacheLimit) {
return false;
-
+ }
return true;
}
@@ -610,7 +610,7 @@
\a item is the new item to be cached
BLOB is always cached in cpu, never in gpu.
*/
-bool HbIconDataCache::isItemCachableInCpu(const HbIconCacheItem* item)const
+bool HbIconDataCache::isItemCachableInCpu(const HbIconCacheItem *item) const
{
if (maxCpuCacheLimit <= 0) {
return false;
@@ -622,10 +622,10 @@
if (item->rasterIconDataCost <= (maxCpuCacheLimit - currentCpuCacheSize)) {
return true;
} else {
- return (item->rasterIconDataCost <= (maxCpuCacheLimit - currentCpuCacheSize) + cpuLruListSize);
+ return (item->rasterIconDataCost <= (maxCpuCacheLimit - currentCpuCacheSize)
+ + cpuLruListSize);
}
}
-
if (item->vectorIconData.type != INVALID_FORMAT) {
if (item->vectorIconDataCost <= 0 || item->vectorIconDataCost > maxCpuCacheLimit) {
return false;
@@ -633,7 +633,8 @@
if (item->vectorIconDataCost <= (maxCpuCacheLimit - currentCpuCacheSize)) {
return true;
} else {
- return (item->vectorIconDataCost <= (maxCpuCacheLimit - currentCpuCacheSize) + cpuLruListSize);
+ return (item->vectorIconDataCost <= (maxCpuCacheLimit - currentCpuCacheSize)
+ + cpuLruListSize);
}
}
return false;
@@ -642,7 +643,8 @@
/*!
\fn HbIconDataCache::createGpuCacheSpace()
This method provides a way to remove the unused icons( icons with ref count =0.
- It starts removing the icons from the cache, starting with those that are at the front of the Gpu LRU list.
+ It starts removing the icons from the cache,
+ starting with those that are at the front of the Gpu LRU list.
It continues removal of items till there is enough space created to cache the new item in Gpu
\a itemCost - cost of the new item to be cached in the Gpu memory
@@ -653,16 +655,15 @@
// Keep removing items from the cache till there is
// enough space to accomdate the new item
int freedMemory = 0;
- while (itemCost > (freedMemory)) {
- HbIconCacheItem* itemToRemove = gpuLruList.removeFront();
+ while (itemCost > freedMemory) {
+ HbIconCacheItem *itemToRemove = gpuLruList.removeFront();
// Decrement the Size by the cost of the removed icon's data cost
- //GET_MEMORY_MANAGER(HbMemoryManager::SharedMemory)
- //qDebug() << "HbIconDataCache : Calling SgImage Close. Cost = %d "<< itemToRemove->rasterIconDataCost;
#ifdef HB_SGIMAGE_ICON
#ifdef HB_ICON_CACHE_DEBUG
- qDebug() << "HbIconDataCache : Calling SgImage Close. Cost = %d "<< itemToRemove->rasterIconDataCost;
+ qDebug() << "HbIconDataCache : Calling SgImage Close. Cost = %d "
+ << itemToRemove->rasterIconDataCost;
#endif
- HbSgImageRenderer::removeSgImageFromHash(itemToRemove->rasterIconData.sgImageData.id);
+ HbSgImageRenderer::removeSgImageFromHash(itemToRemove->rasterIconData.sgImageData.id);
#endif
itemToRemove->rasterIconData.type = INVALID_FORMAT;
itemToRemove->gpuLink.setNext(0);
@@ -674,7 +675,6 @@
if (currentGpuCacheSize < 0) {
currentGpuCacheSize = 0;
}
-
if (gpuLruListSize < 0) {
gpuLruListSize = 0;
}
@@ -686,7 +686,6 @@
rasterLruListCount = 0;
}
#endif
-
// This is the case where Icon has no CPU data and
// the GPU cached data has also been deleted to make way for new Icon
// In such a case the Item can be removed from the Hash
@@ -703,7 +702,8 @@
/*!
\fn HbIconDataCache::createCpuCacheSpace()
This method provides a way to remove the unused icons( icons with ref count =0).
- It starts removing the icons from the cache, starting with those that are at the front of the CPU LRU list.
+ It starts removing the icons from the cache,
+ starting with those that are at the front of the CPU LRU list.
It continues removal of items till there is enough space created to cache the new item in Cpu
\a itemCost - cost of the new item to be cached in the Cpu memory
@@ -715,7 +715,7 @@
// enough space to accomdate the new item
GET_MEMORY_MANAGER(HbMemoryManager::SharedMemory)
while (itemCost > (maxCpuCacheLimit - currentCpuCacheSize)) {
- HbIconCacheItem* itemToRemove = cpuLruList.removeFront();
+ HbIconCacheItem *itemToRemove = cpuLruList.removeFront();
if (itemToRemove->rasterIconData.type == OTHER_SUPPORTED_FORMATS) {
manager->free(itemToRemove->rasterIconData.pixmapData.offset);
itemToRemove->rasterIconData.type = INVALID_FORMAT;
@@ -736,14 +736,12 @@
updateCpuLruSize(-itemToRemove->vectorIconDataCost);
}
-
itemToRemove->cpuLink.setNext(0);
itemToRemove->cpuLink.setPrev(0);
if (currentCpuCacheSize < 0) {
currentCpuCacheSize = 0;
}
-
if (cpuLruListSize < 0) {
cpuLruListSize = 0;
}
@@ -756,11 +754,9 @@
vectorLruListCount = 0;
}
#endif
-
// This is the case where Icon has no CPU data and
// the GPU cached data has also been deleted to make way for new Icon
// In such a case the Item can be removed from the Hash
-
if ((itemToRemove->vectorIconData.type == INVALID_FORMAT) &&
(itemToRemove->rasterIconData.type == INVALID_FORMAT)) {
cache->remove(cache->key(itemToRemove));
@@ -797,22 +793,21 @@
// Iterate through the cache and remove any active SgImages, before the context
// is destroyed.
QHash<HbIconKey, HbIconCacheItem*>::const_iterator itEnd(cache->constEnd());
- for (QHash < HbIconKey,
- HbIconCacheItem* >::const_iterator iter = cache->constBegin();
- iter != itEnd;
- ++iter) {
- HbIconCacheItem* temp = iter.value();
- if( temp->rasterIconData.type == SGIMAGE ){
+ for (QHash<HbIconKey,
+ HbIconCacheItem *>::const_iterator iter = cache->constBegin();
+ iter != itEnd;
+ ++iter) {
+ HbIconCacheItem *temp = iter.value();
+ if( temp->rasterIconData.type == SGIMAGE ){
#ifdef HB_SGIMAGE_ICON
- HbSgImageRenderer::removeSgImageFromHash(temp->rasterIconData.sgImageData.id);
+ HbSgImageRenderer::removeSgImageFromHash(temp->rasterIconData.sgImageData.id);
#endif
- temp->rasterIconData.type = INVALID_FORMAT;
- temp->gpuLink.setNext(0);
- temp->gpuLink.setPrev(0);
- currentGpuCacheSize -= temp->rasterIconDataCost;
- }
+ temp->rasterIconData.type = INVALID_FORMAT;
+ temp->gpuLink.setNext(0);
+ temp->gpuLink.setPrev(0);
+ currentGpuCacheSize -= temp->rasterIconDataCost;
}
-
+ }
}
/*!
@@ -829,8 +824,8 @@
{
QVector<const HbIconKey *> keys;
QHash<HbIconKey, HbIconCacheItem*>::const_iterator itEnd(cache->constEnd());
- for (QHash < HbIconKey,
- HbIconCacheItem* >::const_iterator iter = cache->constBegin();
+ for (QHash<HbIconKey,
+ HbIconCacheItem *>::const_iterator iter = cache->constBegin();
iter != itEnd;
++iter) {
const HbIconKey *key = &iter.key();
@@ -845,10 +840,9 @@
#ifdef HB_ICON_CACHE_DEBUG
void HbIconDataCache::cleanVectorLRUList()
{
-
// remove all the items in cpu LRU list.
while (cpuLruList.front()) {
- HbIconCacheItem* itemToRemove = cpuLruList.removeFront();
+ HbIconCacheItem *itemToRemove = cpuLruList.removeFront();
// update the member
currentCpuCacheSize -= itemToRemove->vectorIconDataCost;
@@ -868,7 +862,6 @@
vectorLruListCount = 0;
}
#endif
-
// remove the shared memory allocatedfor this item.
releaseVectorItem(itemToRemove);
@@ -878,7 +871,7 @@
}
#endif // HB_ICON_CACHE_DEBUG
-void HbIconDataCache::releaseVectorItem(HbIconCacheItem* releaseItem)
+void HbIconDataCache::releaseVectorItem(HbIconCacheItem *releaseItem)
{
if (!releaseItem) {
return;
@@ -903,10 +896,9 @@
#ifdef HB_ICON_CACHE_DEBUG
void HbIconDataCache::cleanRasterLRUList()
{
-
// remove all the items from the gpu LRU list
while (gpuLruList.front()) {
- HbIconCacheItem* itemToRemove = gpuLruList.removeFront();
+ HbIconCacheItem *itemToRemove = gpuLruList.removeFront();
// update the member
currentGpuCacheSize -= itemToRemove->rasterIconDataCost;
@@ -915,7 +907,6 @@
if (currentGpuCacheSize < 0) {
currentGpuCacheSize = 0;
}
-
if (gpuLruListSize < 0) {
gpuLruListSize = 0;
}
@@ -926,7 +917,6 @@
rasterLruListCount = 0;
}
#endif
-
// release the shared memory (later raster memory)of this item.
releaseRasterItem(itemToRemove);
@@ -936,7 +926,7 @@
}
#endif // HB_ICON_CACHE_DEBUG
-void HbIconDataCache::releaseRasterItem(HbIconCacheItem* releaseItem)
+void HbIconDataCache::releaseRasterItem(HbIconCacheItem *releaseItem)
{
if (!releaseItem) {
return;
@@ -947,14 +937,14 @@
releaseItem->rasterIconData.type = INVALID_FORMAT;
}
-void HbIconDataCache::removeFromCache(const HbIconKey &key, const HbIconCacheItem* releaseItem)
+void HbIconDataCache::removeFromCache(const HbIconKey &key, const HbIconCacheItem *releaseItem)
{
if (!releaseItem) {
return;
}
- if ((releaseItem->vectorIconData.type == INVALID_FORMAT) &&
- (releaseItem->rasterIconData.type == INVALID_FORMAT)) {
+ if (releaseItem->vectorIconData.type == INVALID_FORMAT
+ && releaseItem->rasterIconData.type == INVALID_FORMAT) {
cache->remove(key);
delete releaseItem;
}
--- a/src/hbservers/hbthemeserver/hbicondatacache_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbicondatacache_p.h Thu May 27 13:10:59 2010 +0300
@@ -40,14 +40,14 @@
HbIconCacheItem* getCacheItem(const HbIconKey &key ,
HbRenderingMode currentRenderingMode,
bool isMultiIconPiece = false);
- bool insert(const HbIconKey &key, HbIconCacheItem* item);
+ bool insert(const HbIconKey &key, HbIconCacheItem *item);
bool remove(const HbIconKey& key, bool keepInCache = true);
void setMaxGpuCacheSize(int size);
void setMaxCpuCacheSize(int size);
bool contains(const HbIconKey &key) const;
HbIconCacheItem* value(const HbIconKey &key) const;
- bool isItemCachableInGpu(const HbIconCacheItem* item)const;
- bool isItemCachableInCpu(const HbIconCacheItem* item)const;
+ bool isItemCachableInGpu(const HbIconCacheItem *item)const;
+ bool isItemCachableInCpu(const HbIconCacheItem *item)const;
void memoryGood();
void freeGpuRam(int bytes);
void freeUnusedGpuResources();
@@ -78,9 +78,9 @@
void createCpuCacheSpace(int itemCost);
void updateGpuLruSize(int iconDataCost);
void updateCpuLruSize(int iconDataCost);
- void removeFromCache(const HbIconKey &key, const HbIconCacheItem* releaseItem);
- void releaseVectorItem(HbIconCacheItem* releaseItem);
- void releaseRasterItem(HbIconCacheItem* releaseItem);
+ void removeFromCache(const HbIconKey &key, const HbIconCacheItem *releaseItem);
+ void releaseVectorItem(HbIconCacheItem *releaseItem);
+ void releaseRasterItem(HbIconCacheItem *releaseItem);
private:
QHash<HbIconKey, HbIconCacheItem*> *cache;
--- a/src/hbservers/hbthemeserver/hbpixmapiconprocessor_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbpixmapiconprocessor_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -37,8 +37,8 @@
#include "hbthemeserverutils_p.h"
#if defined (Q_OS_SYMBIAN)
-#include <VG/openvg.h>
-#include <VG/vgcontext_symbian.h>
+#include <vg/openvg.h>
+#include <vg/vgcontext_symbian.h>
#endif //Q_OS_SYMBIAN
/*!
--- a/src/hbservers/hbthemeserver/hbthemeserver.pro Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbthemeserver.pro Thu May 27 13:10:59 2010 +0300
@@ -26,6 +26,7 @@
TEMPLATE = app
TARGET = hbthemeserver
CONFIG -= app_bundle
+DEFINES += HB_LIB_DIR=\"\\\"$${HB_LIB_DIR}\\\"\"
DEFINES += HB_BUILD_DIR=\"\\\"$${HB_BUILD_DIR}\\\"\"
# directories
@@ -61,7 +62,9 @@
symbian {
SOURCES += $$PWD/hbthemeserver_symbian.cpp
+ SOURCES += $$PWD/hbthemewatcher_symbian.cpp
HEADERS += $$PWD/hbthemeserver_symbian_p_p.h
+ HEADERS += $$PWD/hbthemewatcher_symbian_p.h
LIBS += -lapgrfx -lws32 -lavkon -lcone -leikcore -lNVGDecoder_SW -llibvgi -lfbscli -lefsrv
nvg {
--- a/src/hbservers/hbthemeserver/hbthemeserver_generic.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbthemeserver_generic.cpp Thu May 27 13:10:59 2010 +0300
@@ -79,7 +79,8 @@
\a parent
*/
#ifdef QT_DEBUG
-HbThemeServerPrivate::HbThemeServerPrivate(QWidget *parent): QMainWindow(parent), server(new QLocalServer(this))
+HbThemeServerPrivate::HbThemeServerPrivate(QWidget *parent)
+ : QMainWindow(parent), server(new QLocalServer(this))
#else
HbThemeServerPrivate::HbThemeServerPrivate(): server(new QLocalServer(this))
#endif
@@ -90,10 +91,7 @@
setWindowTitle("Theme Server");
setCentralWidget(&statusLabel);
#endif
- // renderMode set to SW mode by default
- renderMode = ESWRendering;
- // Using QScopedPointer so that it deallocates memory
- // when std::badalloc exception occurs.
+ renderMode = ESWRendering;
QScopedPointer <HbIconDataCache> tempIconCache(new HbIconDataCache());
QScopedPointer <HbCache> tempCssCache(new HbCache());
iconCache = tempIconCache.take();
@@ -111,7 +109,9 @@
HbThemeServerPrivate::~HbThemeServerPrivate()
{
server->close();
- delete server; // Order of Deletion needs to be maintain ,as the QLocalServer should delete first before deleting Server data so All sessions will be cleanup first.
+ // QLocalServer should be deleted first before deleting Server data
+ // so all sessions will be cleaned up first.
+ delete server;
delete iconCache;
delete cssCache;
}
@@ -167,7 +167,7 @@
\a key denotes the unique identifier for the cache item that is to be inserted into the cache.
\a item denotes the cache item that is to be inserted
*/
-bool HbThemeServerPrivate::insertIconCacheItem(const HbIconKey &key, HbIconCacheItem *item)
+bool HbThemeServerPrivate::insertIconCacheItem(const HbIconKey &key, HbIconCacheItem *item)
{
return (iconCache->insert(key, item));
}
@@ -178,7 +178,7 @@
\a key denotes the unique identifier for the cache item that is to be inserted into the cache.
\a item denotes the cache item that is to be inserted
*/
-bool HbThemeServerPrivate::insertCssCacheItem(const QString &key, HbCacheItem *item)
+bool HbThemeServerPrivate::insertCssCacheItem(const QString &key, HbCacheItem *item)
{
return (cssCache->insert(key, item));
}
@@ -331,7 +331,7 @@
}
// Else delete only specified files
- for (int i=0; i<fileNames.count();i++) {
+ for (int i = 0; i < fileNames.count(); i++) {
QString filename = fileNames.at(i);
// Stylesheet
@@ -351,12 +351,12 @@
// Icon
QVector<const HbIconKey *> keys = iconCache->getKeys(filename);
- for (int j = 0; j<keys.count();j++) {
+ for (int j = 0; j < keys.count(); j++) {
HbThemeServerSession *session;
foreach(session, sessionList) {
session->removeSessionIconItem(*keys.at(j));
}
- iconCache->remove(*keys.at(j),false);
+ iconCache->remove(*keys.at(j), false);
}
}
}
@@ -433,7 +433,7 @@
void HbThemeServerPrivate::clienDisconnected()
{
#ifdef THEME_SERVER_TRACES
- qDebug()<<"Total No of Connection after deletion = "<<sessionList.count();
+ qDebug() << "Total No of Connection after deletion = " << sessionList.count();
#endif
// Quit the server if no more clients connected
@@ -554,13 +554,16 @@
The Theme server maintains a list of sessions, each session corresponding to a client.
Each session in turn is responsible for keeping track of client specific resources.
In case of Icon caching, a session maintains a list of Icon keys.
- A key is added to the list only if the corresponding cache item has been successfully inserted into cache
- or if a previously cached icon is requested and successfully found in the cache.
+ A key is added to the list only if the corresponding cache item
+ has been successfully inserted into cache or if a previously cached icon
+ is requested and successfully found in the cache.
In case of client crash or graceful exit of client, the server goes through its list of sessions,
- finds the session corresponding to the client, removes the session from its session list and deletes the session.
+ finds the session corresponding to the client, removes the session from its session list and
+ deletes the session.
In the session destructor, the session specific resources are cleaned up.
- In case of icon caching, the list of icon keys is traversed and a remove operation is performed on the cache
- items corresponding to these keys. On removal, the items reference count is decremented and in case the
+ In case of icon caching, the list of icon keys is traversed and a remove operation is
+ performed on the cache items corresponding to these keys.
+ On removal, the items reference count is decremented and in case the
reference count becomes 0, the cache item instance gets added to the back of the LRU list.
*/
@@ -571,7 +574,8 @@
\a aClientConnection indicates the local socket that is contained within this session
\a aServer denotes the handle to the theme server
*/
-HbThemeServerSession::HbThemeServerSession(QLocalSocket *aClientConnection, HbThemeServerPrivate *aServer)
+HbThemeServerSession::HbThemeServerSession(QLocalSocket *aClientConnection,
+ HbThemeServerPrivate *aServer)
{
iServer = aServer;
iClientConnection = aClientConnection;
@@ -629,7 +633,7 @@
HbSharedIconInfo data;
data.type = INVALID_FORMAT;
HbThemeServerRequest requestType;
- QByteArray inputByteArray = ((QLocalSocket *)sender())->readAll();
+ QByteArray inputByteArray = static_cast<QLocalSocket *>(sender())->readAll();
if (inputByteArray.size() > 0) {
QDataStream inputDataStream(inputByteArray);
int clue;
@@ -644,18 +648,18 @@
#ifdef HB_ICON_CACHE_DEBUG
QByteArray outputByteArray;
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
- outputDataStream << (int)requestType;
+ outputDataStream << int(requestType);
#endif
switch (requestType) {
case EStyleSheetLookup: {
QString fileName;
int priority;
- HbLayeredStyleLoader::LayerPriority layerdPriority;
+ HbLayeredStyleLoader::LayerPriority layerPriority;
inputDataStream >> fileName;
inputDataStream >> priority;
- layerdPriority = (HbLayeredStyleLoader::LayerPriority) priority;
- QByteArray output = handleStyleSheetLookup((int) requestType, fileName, layerdPriority);
- ((QLocalSocket *)sender())->write(output);
+ layerPriority = static_cast<HbLayeredStyleLoader::LayerPriority>(priority);
+ QByteArray output = handleStyleSheetLookup(int(requestType), fileName, layerPriority);
+ static_cast<QLocalSocket *>(sender())->write(output);
break;
}
case EWidgetMLLookup: {
@@ -668,7 +672,7 @@
inputDataStream >> section;
// handle the shared Widgetml look up.
QByteArray output = iServer->handleSharedWidgetMLLookup(filename, layout, section);
- ((QLocalSocket *)sender())->write(output);
+ static_cast<QLocalSocket *>(sender())->write(output);
break;
}
case EDeviceProfileOffset: {
@@ -684,7 +688,7 @@
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
outputDataStream << requestType;
outputDataStream << offset;
- ((QLocalSocket *)sender())->write(outputByteArray);
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
break;
}
case EEffectLookupFilePath:
@@ -692,12 +696,12 @@
QString fileName;
inputDataStream >> fileName;
QByteArray output = iServer->handleSharedEffectAddAndFileLookup((int) requestType, fileName);
- ((QLocalSocket *)sender())->write(output);
+ static_cast<QLocalSocket *>(sender())->write(output);
break;
}
case EThemeSelection: {
QString themename;
- QLocalSocket *themeSelectionClient = (QLocalSocket *)sender();
+ QLocalSocket *themeSelectionClient = static_cast<QLocalSocket *>(sender());
inputDataStream >> themename;
iServer->setThemeSelectionClient(themeSelectionClient);
iServer->handleThemeSelection(themename);
@@ -710,21 +714,23 @@
HbThemeServerRequest requestType = EThemeContentUpdate;
QByteArray block;
QDataStream out(&block, QIODevice::WriteOnly);
- out << (int)requestType;
+ out << int(requestType);
out << themedItems;
iServer->writeToClients(block);
break;
}
case EThemeServerStop: {
//This segment is used by HbThemeApiWrapperUi.
- //When no HbApplication is open and HbThemeserver has only HbThemeApiWrapperUi as client, making sessionListCount =1
+ //When no HbApplication is open and
+ // HbThemeserver has only HbThemeApiWrapperUi as client, making sessionListCount =1
//HbThemeserver is closed otherwise warning is shown.
- //QCoreApplication::quit() removes the UI of HbThemeServer. Destructor of HbThemeServer will be called where it was instantiated.
+ //QCoreApplication::quit() removes the UI of HbThemeServer.
+ // Destructor of HbThemeServer will be called where it was instantiated.
if (iServer->sessionListCount() == 1) {
#ifdef QT_DEBUG
iServer->close();
#endif
- ((QLocalSocket *)sender())->disconnectFromServer();
+ static_cast<QLocalSocket *>(sender())->disconnectFromServer();
QCoreApplication::quit();
} else {
qWarning() << "Close all HbApplications before closing hbthemeserver!!";
@@ -750,9 +756,11 @@
#ifdef THEME_SERVER_TRACES
qDebug() << "image req at server: " << filename;
#endif
- HbIconKey key(filename, size, (Qt::AspectRatioMode)aspectRatioMode, (QIcon::Mode)mode, mirrored, color, iServer->currentRenderingMode());
+ HbIconKey key(filename, size, static_cast<Qt::AspectRatioMode>(aspectRatioMode),
+ static_cast<QIcon::Mode>(mode), mirrored, color,
+ iServer->currentRenderingMode());
QByteArray output = handleIconLookup(key, data, options);
- ((QLocalSocket *)sender())->write(output);
+ static_cast<QLocalSocket *>(sender())->write(output);
break;
}
case EIconDefaultSize:
@@ -763,13 +771,12 @@
inputDataStream >> frameItemParams.multiPartIconData.multiPartIconId;
int noOfPieces = 1;
- if (frameItemParams.multiPartIconData.multiPartIconId.contains("_3PV", Qt::CaseInsensitive) ||
- frameItemParams.multiPartIconData.multiPartIconId.contains("_3PH", Qt::CaseInsensitive)) {
+ if (frameItemParams.multiPartIconData.multiPartIconId.contains("_3PV", Qt::CaseInsensitive)
+ || frameItemParams.multiPartIconData.multiPartIconId.contains("_3PH", Qt::CaseInsensitive)) {
noOfPieces = 3;
} else if (frameItemParams.multiPartIconData.multiPartIconId.contains("_9P", Qt::CaseInsensitive)) {
noOfPieces = 9;
}
-
for (int i = 0; i < noOfPieces; i++) {
inputDataStream >> frameItemParams.multiPartIconData.sources[i];
}
@@ -792,16 +799,17 @@
#ifdef THEME_SERVER_TRACES
qDebug() << "image req at server: " << frameItemParams.multiPartIconList;
#endif
-
- int index = frameItemParams.multiPartIconList[0].lastIndexOf("/");
+ int index = frameItemParams.multiPartIconList[0].lastIndexOf('/');
QString iconId = frameItemParams.multiPartIconList[0].left(index + 1);
HbSharedIconInfo stitchedData;
QT_TRY {
iconId.append(frameItemParams.multiPartIconData.multiPartIconId);
HbIconKey finalIconKey(iconId, frameItemParams.size,
- (Qt::AspectRatioMode)frameItemParams.aspectRatioMode,
- (QIcon::Mode)frameItemParams.mode, frameItemParams.mirrored,
- frameItemParams.color, (HbRenderingMode)frameItemParams.renderMode);
+ static_cast<Qt::AspectRatioMode>(frameItemParams.aspectRatioMode),
+ static_cast<QIcon::Mode>(frameItemParams.mode),
+ frameItemParams.mirrored,
+ frameItemParams.color,
+ static_cast<HbRenderingMode>(frameItemParams.renderMode));
stitchedData.type = INVALID_FORMAT;
@@ -818,15 +826,16 @@
request = EMultiPieceIcon;
fillOutPutDataStream(outputDataStream, stitchedData, request);
#ifdef THEME_SERVER_TRACES
- qDebug() << Q_FUNC_INFO << " offset= " << stitchedData.pixmapData.offset << " format= " << stitchedData.pixmapData.format;
+ qDebug() << Q_FUNC_INFO << " offset= " << stitchedData.pixmapData.offset
+ << " format= " << stitchedData.pixmapData.format;
testLabel->setPixmap(QPixmap::fromImage(
- QImage(
- HbMemoryUtils::getAddress<uchar>(HbMemoryManager::SharedMemory, stitchedData.pixmapData.offset),
- stitchedData.pixmapData.width,
- stitchedData.pixmapData.height,
- stitchedData.pixmapData.format)));
+ QImage(HbMemoryUtils::getAddress<uchar>(HbMemoryManager::SharedMemory,
+ stitchedData.pixmapData.offset),
+ stitchedData.pixmapData.width,
+ stitchedData.pixmapData.height,
+ stitchedData.pixmapData.format)));
#endif
- ((QLocalSocket *)sender())->write(outputByteArray);
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
break;
}
case EMultiIcon: {
@@ -839,10 +848,7 @@
int options;
QColor color;
inputDataStream >> fileList;
- for (int i = 0; i < fileList.count(); i++) {
- inputDataStream >> size;
- sizeList << size;
- }
+ inputDataStream >> sizeList;
inputDataStream >> aspectRatioMode;
inputDataStream >> mode;
inputDataStream >> mirrored;
@@ -853,15 +859,17 @@
qDebug() << "image req at server: " << fileList;
#endif
QByteArray output;
+ QDataStream outputDataStream(&output, QIODevice::WriteOnly);
+ outputDataStream << (int)requestType; // Put EMultiIcon request type in the beginning
for (int i = 0; i < fileList.count(); i++) {
HbIconKey key(fileList[i], sizeList[i],
static_cast<Qt::AspectRatioMode>(aspectRatioMode),
- static_cast<QIcon::Mode>(mode), mirrored, color, iServer->currentRenderingMode());
+ static_cast<QIcon::Mode>(mode), mirrored, color,
+ iServer->currentRenderingMode());
output.append(handleIconLookup(key, data, options));
}
- ((QLocalSocket *)sender())->write(output);
-
+ static_cast<QLocalSocket *>(sender())->write(output);
break;
}
case ENotifyForegroundLost: {
@@ -873,7 +881,7 @@
case ECacheIconCount: {
int count = iServer->cacheIconCount();
outputDataStream << count;
- ((QLocalSocket *)sender())->write(outputByteArray);
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
break;
}
case ERasterMemLimit: {
@@ -891,122 +899,124 @@
case EFreeRasterMem: {
int freeRastMem = iServer->freeRasterMemory();
outputDataStream << freeRastMem;
- ((QLocalSocket *)sender())->write(outputByteArray);
+ static_cast<QLocalSocket *>sender())->write(outputByteArray);
break;
}
case EFreeVectorMem: {
int freeVectMem = iServer->freeVectorMemory();
outputDataStream << freeVectMem;
- ((QLocalSocket *)sender())->write(outputByteArray);
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
break;
}
case ELastAddedItemMem {
- int lAddItemMem = iServer->lastAddedItemMem();
- outputDataStream << lAddItemMem;
- ((QLocalSocket *)sender())->write(outputByteArray);
- break;
- }
+ int lAddItemMem = iServer->lastAddedItemMem();
+ outputDataStream << lAddItemMem;
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
+ break;
+ }
case ELastRemovedItemMem {
- int lRemItemMem = iServer->lastRemovedItemMem();
- outputDataStream << lRemItemMem;
- ((QLocalSocket *)sender())->write(outputByteArray);
- break;
- }
+ int lRemItemMem = iServer->lastRemovedItemMem();
+ outputDataStream << lRemItemMem;
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
+ break;
+ }
case ELastRemovedItemRefCount: {
- int lRemItemRfCnt = iServer->lastRemovedItemRfCount();
- outputDataStream << lRemItemRfCnt;
- ((QLocalSocket *)sender())->write(outputByteArray);
- break;
- }
+ int lRemItemRfCnt = iServer->lastRemovedItemRfCount();
+ outputDataStream << lRemItemRfCnt;
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
+ break;
+ }
case ELastAddedItemRefCount: {
- int lAddItemRfCnt = iServer->lastAddedRefCount();
- outputDataStream << lAddItemRfCnt;
- ((QLocalSocket *)sender())->write(outputByteArray);
- break;
- }
+ int lAddItemRfCnt = iServer->lastAddedRefCount();
+ outputDataStream << lAddItemRfCnt;
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
+ break;
+ }
case EEnableCache: {
- int enable ;
- inputDataStream >> enable;
- bool success = iServer->enableCache(enable);
- outputDataStream << (int)success;
- ((QLocalSocket *)sender())->write(outputByteArray);
- break;
- }
+ int enable ;
+ inputDataStream >> enable;
+ bool success = iServer->enableCache(enable);
+ outputDataStream << (int)success;
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
+ break;
+ }
case ECacheHit: {
- int cacheHitCnt = iServer->cacheHitCount();
- outputDataStream << cacheHitCnt;
- ((QLocalSocket *)sender())->write(outputByteArray);
- break;
- }
+ int cacheHitCnt = iServer->cacheHitCount();
+ outputDataStream << cacheHitCnt;
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
+ break;
+ }
case ECacheMiss: {
- int cacheMissCnt = iServer->cacheMissCount();
- outputDataStream << cacheMissCnt;
- ((QLocalSocket *)sender())->write(outputByteArray);
- break;
- }
+ int cacheMissCnt = iServer->cacheMissCount();
+ outputDataStream << cacheMissCnt;
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
+ break;
+ }
case ECleanRasterLRUList: {
- iServer->cleanRasterLRUList();
- break;
- }
+ iServer->cleanRasterLRUList();
+ break;
+ }
case ECleanVectorLRUList: {
- iServer->cleanVectorLRUList();
- break;
- }
+ iServer->cleanVectorLRUList();
+ break;
+ }
case EGpuLruCount: {
- int rasterLruCount = iServer->rasterLruCount();
- outputDataStream << rasterLruCount;
- ((QLocalSocket *)sender())->write(outputByteArray);
- break;
- }
+ int rasterLruCount = iServer->rasterLruCount();
+ outputDataStream << rasterLruCount;
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
+ break;
+ }
case ECpuLruCount: {
- int vectorLruCount = iServer->vectorLruCount();
- outputDataStream << vectorLruCount;
- ((QLocalSocket *)sender())->write(outputByteArray);
- break;
- }
+ int vectorLruCount = iServer->vectorLruCount();
+ outputDataStream << vectorLruCount;
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
+ break;
+ }
case EServerHeap: {
- }
+ }
#endif
#ifdef HB_THEME_SERVER_MEMORY_REPORT
case ECreateMemoryReport: {
- GET_MEMORY_MANAGER(HbMemoryManager::SharedMemory);
- static_cast<HbSharedMemoryManager *>(manager)->createReport();
- break;
- }
+ GET_MEMORY_MANAGER(HbMemoryManager::SharedMemory);
+ static_cast<HbSharedMemoryManager *>(manager)->createReport();
+ break;
+ }
#endif
case EUnloadIcon: {
- QString filename;
- QSizeF size;
- int aspectRatioMode;
- int mode;
- bool mirrored;
- int options;
- QColor color;
- inputDataStream >> filename;
- inputDataStream >> size;
- inputDataStream >> aspectRatioMode;
- inputDataStream >> mode;
- inputDataStream >> mirrored;
- inputDataStream >> options;
- inputDataStream >> color;
+ QString filename;
+ QSizeF size;
+ int aspectRatioMode;
+ int mode;
+ bool mirrored;
+ int options;
+ QColor color;
+ inputDataStream >> filename;
+ inputDataStream >> size;
+ inputDataStream >> aspectRatioMode;
+ inputDataStream >> mode;
+ inputDataStream >> mirrored;
+ inputDataStream >> options;
+ inputDataStream >> color;
- HbIconKey key(filename, size, (Qt::AspectRatioMode)aspectRatioMode,
- (QIcon::Mode)mode, mirrored, color, iServer->currentRenderingMode());
- iServer->removeIconCacheItem(key);
- sessionIconData.removeOne(key);
- QByteArray outputByteArray;
- QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
- outputDataStream << (int)requestType;
- ((QLocalSocket *)sender())->write(outputByteArray);
- break;
- }
+ HbIconKey key(filename, size,
+ static_cast<Qt::AspectRatioMode>(aspectRatioMode),
+ static_cast<QIcon::Mode>(mode), mirrored, color,
+ iServer->currentRenderingMode());
+ iServer->removeIconCacheItem(key);
+ sessionIconData.removeOne(key);
+ QByteArray outputByteArray;
+ QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
+ outputDataStream << int(requestType);
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
+ break;
+ }
case EFreeSharedMem: {
int freeSharedMem = iServer->freeSharedMemory();
QByteArray outputByteArray;
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
outputDataStream << requestType;
outputDataStream << freeSharedMem;
- ((QLocalSocket *)sender())->write(outputByteArray);
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
break;
}
case EAllocatedSharedMem: {
@@ -1015,10 +1025,9 @@
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
outputDataStream << requestType;
outputDataStream << allocatedSharedMem;
- ((QLocalSocket *)sender())->write(outputByteArray);
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
break;
}
-
case ETypefaceOffset: {
int offset = -1;
HbTypefaceInfoDatabase *typefaceDatabase =
@@ -1032,11 +1041,9 @@
QDataStream outputDataStream(&outputByteArray, QIODevice::WriteOnly);
outputDataStream << requestType;
outputDataStream << offset;
- ((QLocalSocket *)sender())->write(outputByteArray);
+ static_cast<QLocalSocket *>(sender())->write(outputByteArray);
break;
}
-
-
default:
break;
}
@@ -1052,7 +1059,7 @@
HbSharedIconInfo &stitchedData)
{
stitchedData.type = INVALID_FORMAT;
- HbIconCacheItem * cacheItem = iServer->iconCacheItem(key);
+ HbIconCacheItem *cacheItem = iServer->iconCacheItem(key);
if (cacheItem) {
getDataFromCacheItem(cacheItem, stitchedData);
return true;
@@ -1065,23 +1072,21 @@
Creates a cacheItem of the given key and insert the item in to the list
else free the data allocated for the cache..
*/
-bool HbThemeServerSession::createCacheItemData(HbIconKey key, int options , HbSharedIconInfo &data)
+bool HbThemeServerSession::createCacheItemData(HbIconKey key, int options, HbSharedIconInfo &data)
{
- HbIconCacheItem * cacheItemOfPiece = iServer->iconCacheItem(key);
+ HbIconCacheItem *cacheItemOfPiece = iServer->iconCacheItem(key);
if (cacheItemOfPiece) {
return true;
}
- QScopedPointer <HbIconCacheItem> tempIconCacheItem;
+ QScopedPointer<HbIconCacheItem> tempIconCacheItem;
bool insertKeyIntoSessionList = false;
data.type = INVALID_FORMAT;
QString format = HbThemeServerUtils::formatFromPath(key.filename);
tempIconCacheItem.reset(HbIconCacheItemCreator::createCacheItem(key,
- (HbIconLoader::IconLoaderOptions)options,
- format,
- iServer->currentRenderingMode(),
- false));
+ static_cast<HbIconLoader::IconLoaderOptions>(options),
+ format, iServer->currentRenderingMode(), false));
cacheItemOfPiece = tempIconCacheItem.data();
if (cacheItemOfPiece) {
getDataFromCacheItem(cacheItemOfPiece, data);
@@ -1105,7 +1110,7 @@
bool HbThemeServerSession::createStichedIconInfoOfParts(QVector<HbSharedIconInfo> dataForParts, HbMultiIconParams params,
HbIconKey &finalIconKey, HbSharedIconInfo &stitchedData)
{
- HbIconCacheItem * cacheItem = iServer->iconCacheItem(finalIconKey);
+ HbIconCacheItem *cacheItem = iServer->iconCacheItem(finalIconKey);
if (cacheItem) {
return true;
}
@@ -1113,9 +1118,9 @@
stitchedData.type = INVALID_FORMAT;
QString format = HbThemeServerUtils::formatFromPath(params.multiPartIconList[0]);
- QScopedPointer <HbPixmapIconProcessor> tempIconProcessor(new HbPixmapIconProcessor(finalIconKey,
+ QScopedPointer<HbPixmapIconProcessor> tempIconProcessor(new HbPixmapIconProcessor(finalIconKey,
static_cast<HbIconLoader::IconLoaderOptions>(params.options), format));
- HbPixmapIconProcessor * rasterIcon = tempIconProcessor.data();
+ HbPixmapIconProcessor *rasterIcon = tempIconProcessor.data();
rasterIcon->createMultiPieceIconData(dataForParts, params);
QScopedPointer <HbIconCacheItem> tempIconCacheItem;
@@ -1153,19 +1158,19 @@
QVector<HbSharedIconInfo> dataForParts;
bool insertKeyIntoSessionList = false;
bool failedToCreateParts = false;
- QString format;
try {
for (int i = 0; i < noOfPieces; i++) {
HbSharedIconInfo data;
bool iconPieceMirrored = false;
HbIconKey key(params.multiPartIconList.at(i), params.multiPartIconData.pixmapSizes[i],
static_cast<Qt::AspectRatioMode>(stichedKey.aspectRatioMode),
- static_cast<QIcon::Mode>(stichedKey.mode), iconPieceMirrored, stichedKey.color,stichedKey.renderMode );
+ static_cast<QIcon::Mode>(stichedKey.mode),
+ iconPieceMirrored, stichedKey.color, stichedKey.renderMode);
insertKeyIntoSessionList = iconInfoFromSingleIcon(key, data);
if (!insertKeyIntoSessionList) {
insertKeyIntoSessionList = createCacheItemData(key, params.options, data);
}
- if ((data.type == INVALID_FORMAT) || (!insertKeyIntoSessionList)) {
+ if ((data.type == INVALID_FORMAT) || !insertKeyIntoSessionList) {
failedToCreateParts = true;
break;
} else {
@@ -1180,8 +1185,10 @@
failedToCreateParts = true;
}
- if ((failedToCreateParts) || (dataForParts.count() != noOfPieces) || (!insertKeyIntoSessionList)) {
- //atLeast one of the icon did'nt get constructed , so move the cached piece icons to unused state and return
+ if (failedToCreateParts || (dataForParts.count() != noOfPieces)
+ || !insertKeyIntoSessionList) {
+ //atLeast one of the icon did'nt get constructed ,
+ //so move the cached piece icons to unused state and return
for (int i = 0; i < keysInserted.count(); i++) {
sessionIconData.removeOne(keysInserted.at(i));
}
@@ -1269,10 +1276,12 @@
\fn HbThemeServerSession::fillOutPutDataStream()
Fills the Output data stream with the sharedIconInfo data.
*/
-void HbThemeServerSession::fillOutPutDataStream(QDataStream &outputDataStream, HbSharedIconInfo &data, HbThemeServerRequest request)
+void HbThemeServerSession::fillOutPutDataStream(QDataStream &outputDataStream,
+ HbSharedIconInfo &data,
+ HbThemeServerRequest request)
{
- outputDataStream << (int)request;
- outputDataStream << (int)data.type;
+ outputDataStream << int(request);
+ outputDataStream << int(data.type);
switch (data.type) {
case OTHER_SUPPORTED_FORMATS:
@@ -1281,7 +1290,7 @@
outputDataStream << data.pixmapData.height;
outputDataStream << data.pixmapData.defaultWidth;
outputDataStream << data.pixmapData.defaultHeight;
- outputDataStream << (int)data.pixmapData.format;
+ outputDataStream << int(data.pixmapData.format);
break;
/*case SVG:*/
case PIC: {
@@ -1310,7 +1319,8 @@
\fn HbThemeServerSession::getDataFromCacheItem()
Gets data from the cache Item.
*/
-void HbThemeServerSession::getDataFromCacheItem(HbIconCacheItem* cacheItem, HbSharedIconInfo &data) const
+void HbThemeServerSession::getDataFromCacheItem(HbIconCacheItem* cacheItem,
+ HbSharedIconInfo &data) const
{
if (cacheItem) {
if (cacheItem->rasterIconData.type != INVALID_FORMAT) {
@@ -1328,7 +1338,9 @@
/**
* HbThemeServerPrivate::handleSharedWidgetMLLookup()
*/
-QByteArray HbThemeServerPrivate::handleSharedWidgetMLLookup(const QString &fileName, const QString &layout, const QString §ion)
+QByteArray HbThemeServerPrivate::handleSharedWidgetMLLookup(const QString &fileName,
+ const QString &layout,
+ const QString §ion)
{
int offset = HbThemeServerUtils::getSharedLayoutDefinition(fileName, layout, section);
QByteArray outputByteArray;
@@ -1343,7 +1355,8 @@
/**
* HbThemeServerPrivate::handleSharedEffectAddAndFileLookup()
*/
-QByteArray HbThemeServerPrivate::handleSharedEffectAddAndFileLookup(int request, const QString &fileName)
+QByteArray HbThemeServerPrivate::handleSharedEffectAddAndFileLookup(int request,
+ const QString &fileName)
{
int offset = HbThemeServerUtils::getSharedEffect(fileName);
QByteArray outputByteArray;
@@ -1356,7 +1369,8 @@
/**
* HbThemeServerSession::handleStyleSheetLookup()
*/
-QByteArray HbThemeServerSession::handleStyleSheetLookup(int request, const QString &fileName, HbLayeredStyleLoader::LayerPriority priority)
+QByteArray HbThemeServerSession::handleStyleSheetLookup(int request,
+ const QString &fileName, HbLayeredStyleLoader::LayerPriority priority)
{
int offset = -1;
HbCacheItem* cssItem = iServer->cssCacheItem(fileName);
@@ -1373,13 +1387,15 @@
if (offset >= 0) {
HbCacheItem *cssItem = new HbCacheItem(offset, 0, fileName);
insertKeyIntoSessionList = iServer->insertCssCacheItem(fileName, cssItem);
- if (priority == HbLayeredStyleLoader::Priority_Core && cssItem->refCount == 1) {
+ if (priority == HbLayeredStyleLoader::Priority_Core
+ && cssItem->refCount == 1) {
// This will make sure the requested stylesheet will always remain
// in the primary and secondary cache.
cssItem->incrementRefCount();
}
- if (priority == HbLayeredStyleLoader::Priority_Theme && cssItem->refCount == 1) {
- iServer->themePriorityItems.insert(fileName,cssItem);
+ if (priority == HbLayeredStyleLoader::Priority_Theme
+ && cssItem->refCount == 1) {
+ iServer->themePriorityItems.insert(fileName, cssItem);
}
break;
} else if (offset == OUT_OF_MEMORY_ERROR && tryAgain == false) {
@@ -1413,7 +1429,8 @@
/**
* HbThemeServerSession::handleIconLookup()
*/
-QByteArray HbThemeServerSession::handleIconLookup(const HbIconKey &key, HbSharedIconInfo &data, int options)
+QByteArray HbThemeServerSession::handleIconLookup(const HbIconKey &key, HbSharedIconInfo &data,
+ int options)
{
bool insertKeyIntoSessionList = false;
HbIconCacheItem * cacheItem = iServer->iconCacheItem(key);
--- a/src/hbservers/hbthemeserver/hbthemeserver_generic_p_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbthemeserver_generic_p_p.h Thu May 27 13:10:59 2010 +0300
@@ -58,7 +58,7 @@
void stop();
bool insertIconCacheItem(const HbIconKey &key, HbIconCacheItem *item);
- HbIconCacheItem* iconCacheItem(const HbIconKey &key);
+ HbIconCacheItem *iconCacheItem(const HbIconKey &key);
void setMaxGpuCacheSize(int size);
void setMaxCpuCacheSize(int size);
void removeIconCacheItem(const HbIconKey &key);
@@ -67,12 +67,13 @@
void handleContentUpdate(const QStringList &fileNames);
QByteArray handleSharedEffectAddAndFileLookup(int request, const QString &fileName);
- QByteArray handleSharedWidgetMLLookup(const QString &fileName, const QString &layout, const QString §ion);
+ QByteArray handleSharedWidgetMLLookup(const QString &fileName,
+ const QString &layout, const QString §ion);
void writeToClients(QByteArray &block);
void setThemeSelectionClient(QLocalSocket *socket);
bool insertCssCacheItem(const QString &key, HbCacheItem *item);
- HbCacheItem* cssCacheItem(const QString &key);
+ HbCacheItem *cssCacheItem(const QString &key);
void removeCssCacheItem(const QString &key);
void clearCssCache();
@@ -120,7 +121,7 @@
#endif
QLocalServer *server;
QLocalSocket *iThemeSelectionClient;
- QList<HbThemeServerSession*> sessionList;
+ QList<HbThemeServerSession *> sessionList;
HbIconDataCache *iconCache;
HbCache *cssCache;
HbRenderingMode renderMode;
@@ -133,10 +134,12 @@
HbThemeServerSession(QLocalSocket *clientConnection, HbThemeServerPrivate *server);
~HbThemeServerSession();
QLocalSocket *clientConnection();
- void fillOutPutDataStream(QDataStream &outputDataStream, HbSharedIconInfo &data, HbThemeServerRequest request);
+ void fillOutPutDataStream(QDataStream &outputDataStream, HbSharedIconInfo &data,
+ HbThemeServerRequest request);
void getDataFromCacheItem(HbIconCacheItem* cacheItem, HbSharedIconInfo &data) const;
void freeDataFromCacheItem(HbIconCacheItem* cacheItem);
- QByteArray handleStyleSheetLookup(int request, const QString &fileName, HbLayeredStyleLoader::LayerPriority priority);
+ QByteArray handleStyleSheetLookup(int request, const QString &fileName,
+ HbLayeredStyleLoader::LayerPriority priority);
QByteArray handleIconLookup(const HbIconKey &key, HbSharedIconInfo &data, int options);
bool iconInfoFromSingleIcon(HbIconKey key, HbSharedIconInfo &stitchedData);
bool createCacheItemData(HbIconKey key, int options, HbSharedIconInfo &data);
--- a/src/hbservers/hbthemeserver/hbthemeserver_symbian.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbthemeserver_symbian.cpp Thu May 27 13:10:59 2010 +0300
@@ -32,13 +32,13 @@
#include "hbsharedmemorymanager_p.h"
#include "hbtypefaceinfodatabase_p.h"
-
#include <QHash>
#include <QImage>
#include <QSharedMemory>
#include <QDebug>
#include <QProcess>
#include <QFile>
+#include <QFileInfo>
#include <QPainter>
#include <QSettings>
#include <QSizeF>
@@ -63,15 +63,9 @@
static const TInt KThemeName = 0;
-// Publish/Subscribe themeRequestProp specific
-static _LIT_SECURITY_POLICY_PASS(KAllowAllPolicy);
-static _LIT_SECURITY_POLICY_C1(KThemeChangerPolicy,ECapabilityWriteDeviceData);
-
+const QString KOperatorCPath = "C:/resource/hb/operatorTheme/icons/";
+const QString KOperatorZPath = "Z:/resource/hb/operatorTheme/icons/";
-const QString operatorCPath = "C:/resource/hb/operatorTheme/icons/";
-const QString operatorZPath = "Z:/resource/hb/operatorTheme/icons/";
-
-static HbThemeServerPrivate *TheServer = 0;
bool HbThemeServerPrivate::gpuGoodMemoryState = true;
// This is used as parent theme always regardless of the active theme
@@ -93,7 +87,7 @@
HbThemeServerPrivate* self = new(ELeave) HbThemeServerPrivate(aActiveObjectPriority);
CleanupStack::PushL(self);
self->ConstructL();
- CleanupStack::Pop(); // self
+ CleanupStack::Pop(self);
return self;
}
@@ -131,7 +125,11 @@
HbThemeSystemEffect::handleThemeChange(iCurrentThemeName);
// Open index file to prevent uninstallation of the active theme
- openCurrentIndexFile();
+ if (!openCurrentIndexFile()) {
+ // theme doesn't exist activate default theme
+ iCurrentThemeName = HbThemeUtils::defaultTheme().name;
+ resolveThemePath(iCurrentThemeName, iCurrentThemePath);
+ }
cache = 0;
cssCache = 0;
@@ -157,16 +155,16 @@
QString basePath;
resolveThemePath(HbThemeUtils::getThemeSetting(HbThemeUtils::BaseThemeSetting), basePath);
createThemeIndex(basePath, BaseTheme);
- // Process operator Drive C theme index
+ // Process operator theme indexes
QString operatorName = HbThemeUtils::getThemeSetting(HbThemeUtils::OperatorNameSetting);
if (!operatorName.isEmpty()) {
QString operatorPath;
- operatorPath.append(operatorCPath);
+ operatorPath.append(KOperatorCPath);
operatorPath.append(operatorName);
createThemeIndex(operatorPath, OperatorC);
// Process operator Drive Z theme index
QString operatorROMPath;
- operatorROMPath.append(operatorZPath);
+ operatorROMPath.append(KOperatorZPath);
operatorROMPath.append(operatorName);
createThemeIndex(operatorROMPath, OperatorROM);
}
@@ -180,7 +178,7 @@
#endif
// Start the splash screen generator app.
- //QProcess::startDetached("hbsplashgenerator.exe");
+ QProcess::startDetached("hbsplashgenerator.exe");
}
/**
@@ -194,21 +192,18 @@
so no second parameter is passed to the CServer2 constructor.
*/
HbThemeServerPrivate::HbThemeServerPrivate(CActive::TPriority aActiveObjectPriority)
- : CServer2( aActiveObjectPriority )
+ : CServer2( aActiveObjectPriority ), iWatcher(0)
{
- // Set server pointer in static variable
- TheServer = this;
-
// Set up the listener to listen for Publish events
TRAPD(err, iListener = CHbThemeChangeNotificationListener::NewL(*this));
if (err) {
qWarning( "HbThemeServerPrivate::HbThemeServerPrivate: CHbThemeChangeNotificationListener::NewL failed = %d", err );
} else {
- TRAPD( err, iListener->startListening());
+ TRAPD(err, iListener->startListeningL());
if (err) {
qWarning( "HbThemeServerPrivate::HbThemeServerPrivate: iListener->startListening failed = %d", err );
}
- }
+ }
}
/**
@@ -226,26 +221,41 @@
}
// Delete the listener for Publish/Subscribe
delete iListener;
+ // Delete file watcher
+ if (iWatcher) {
+ delete iWatcher;
+ }
}
-HbThemeServerPrivate *HbThemeServerPrivate::Instance()
-{
- return TheServer;
-}
-
-void HbThemeServerPrivate::openCurrentIndexFile()
+/*
+ * Returns FALSE if file doesn't exist, TRUE otherwise
+ */
+bool HbThemeServerPrivate::openCurrentIndexFile()
{
// Open index file to prevent uninstallation of the active theme
- if (!iCurrentThemePath.isEmpty() && iCurrentThemePath[0] != 'Z') {
+ if (!iCurrentThemePath.isEmpty() && iCurrentThemePath[0] != 'z' &&
+ iCurrentThemePath[0] != 'Z' && iCurrentThemePath[0] != ':') {
QString indexFileName;
indexFileName.append(iCurrentThemePath);
- indexFileName.append("\\index.theme");
-
- currentIndexfile.setFileName(indexFileName);
+ indexFileName.append("/index.theme");
+
+ QFile currentIndexfile(indexFileName);
if(!currentIndexfile.open(QIODevice::ReadOnly)) {
qWarning()<< "HbSymbianThemeServer: No Index file found in the new theme, How did this happen ??";
+ return false;
+ } else {
+ currentIndexfile.close();
+ if (!iWatcher) {
+ // Set up the file watcher for active theme changes
+ TRAP_IGNORE(iWatcher = CHbThemeWatcher::NewL(*this));
+ }
+ // Start watching in case of mmc ejection
+ if (iWatcher) {
+ iWatcher->startWatchingL(indexFileName);
+ }
}
}
+ return true;
}
bool HbThemeServerPrivate::resolveThemePath(const QString &themeName, QString &themePath)
@@ -326,15 +336,18 @@
#endif
- currentIndexfile.close();
// Open index file to prevent uninstallation of the active theme
- openCurrentIndexFile();
+ if (!openCurrentIndexFile()) {
+ // theme doesn't exist activate default theme
+ iCurrentThemeName = HbThemeUtils::defaultTheme().name;
+ resolveThemePath(iCurrentThemeName, iCurrentThemePath);
+ }
// Process operator Drive C theme index
QString operatorName = HbThemeUtils::getThemeSetting(HbThemeUtils::OperatorNameSetting);
if (!operatorName.isEmpty()) {
QString operatorPath;
- operatorPath.append(operatorCPath);
+ operatorPath.append(KOperatorCPath);
operatorPath.append(operatorName);
createThemeIndex(operatorPath, OperatorC);
}
@@ -344,7 +357,7 @@
// Clear cached icons and session data
clearIconCache();
iSessionIter.SetToFirst();
- while(iSessionIter != NULL) {
+ while(iSessionIter) {
HbThemeServerSession &session = reinterpret_cast<HbThemeServerSession &>(*iSessionIter);
session.ClearSessionData();
iSessionIter++;
@@ -752,13 +765,13 @@
qint64 byteSize = indexFile.size();
#ifdef THEME_INDEX_TRACES
- qDebug() << "ThemeIndex: " << theme.toUtf8() << " index file size:" << byteSize;
+ qDebug() << "ThemeIndex: " << themeName.toUtf8() << " index file size:" << byteSize;
#endif
int offset = manager->alloc(byteSize);
if (offset >= 0) {
#ifdef THEME_INDEX_TRACES
- qDebug() << "ThemeIndex: memory allocated for theme: " << theme.toUtf8();
+ qDebug() << "ThemeIndex: memory allocated for theme: " << themeName.toUtf8();
#endif
// Read the theme index in the shared chunk
@@ -768,23 +781,23 @@
indexFile.close();
#ifdef THEME_INDEX_TRACES
- qDebug() << "ThemeIndex: Reading themeindex for theme" << theme.toUtf8() << "... Done!";
+ qDebug() << "ThemeIndex: Reading themeindex for theme" << themeName.toUtf8() << "... Done!";
#endif
// Verify theme index contents if it is not located in ROM,
// so that it does not have over-indexing offsets which might
// crash all the clients trying to read from it.
- if (themePath[0] != 'Z') {
+ if (themePath[0] != 'z' && themePath[0] != 'Z') {
#ifdef THEME_INDEX_TRACES
- qDebug() << "ThemeIndex: Validating themeindex for theme" << theme.toUtf8();
+ qDebug() << "ThemeIndex: Validating themeindex for theme" << themeName.toUtf8();
#endif
HbThemeIndex index(address);
indexOK = index.validateItems(byteSize);
#ifdef THEME_INDEX_TRACES
- qDebug() << "ThemeIndex: Validating themeindex for theme" << theme.toUtf8() << " done! Result: " << indexOK;
+ qDebug() << "ThemeIndex: Validating themeindex for theme" << themeName.toUtf8() << " done! Result: " << indexOK;
#endif
}
@@ -922,10 +935,10 @@
TRAPD(err, DispatchMessageL(aMessage));
aMessage.Complete(err);
+
+#ifdef THEME_SERVER_TRACES
QString er;
er.setNum(err);
-
-#ifdef THEME_SERVER_TRACES
qDebug() << "completed DispatchMessageL error code is " + er;
#endif
@@ -1228,6 +1241,7 @@
}
#endif
}
+
/**
* HandleStyleSheetLookupL
*/
@@ -1240,7 +1254,7 @@
return;
}
- TBuf<256> fileName;
+ TFileName fileName;
aMessage.ReadL(0, fileName, 0);
TBuf<256> layerPriorityBuf;
aMessage.ReadL(1, layerPriorityBuf, 0);
@@ -1291,6 +1305,9 @@
aMessage.WriteL(2, data);
}
+static const TInt KMaxLayoutName = 256;
+static const TInt KMaxSectionName = 256;
+
/**
* HandleWidgetMLLookUp
*/
@@ -1300,11 +1317,11 @@
return;
}
- TBuf<256> fileName;
+ TFileName fileName;
aMessage.ReadL(0, fileName, 0);
- TBuf<256> layoutName;
+ TBuf<KMaxLayoutName> layoutName;
aMessage.ReadL(1, layoutName, 0);
- TBuf<256> sectionName;
+ TBuf<KMaxSectionName> sectionName;
aMessage.ReadL(2, sectionName, 0);
QString wmlFileName((QChar*)fileName.Ptr(), fileName.Length());
@@ -1433,10 +1450,10 @@
} else {
QT_TRY {
QString format = HbThemeServerUtils::formatFromPath(key.filename);
- QScopedPointer <HbIconCacheItem> tempIconCacheItem(HbIconCacheItemCreator::createCacheItem( key,
- (HbIconLoader::IconLoaderOptions)params.options,
- format,
- iServer->currentRenderingMode()));
+ QScopedPointer <HbIconCacheItem> tempIconCacheItem(
+ HbIconCacheItemCreator::createCacheItem(key,
+ static_cast<HbIconLoader::IconLoaderOptions>(params.options),
+ format, iServer->currentRenderingMode()));
cacheItem = tempIconCacheItem.data();
if (cacheItem) {
if (cacheItem->rasterIconData.type != INVALID_FORMAT) {
@@ -1524,6 +1541,17 @@
return color;
}
+inline
+QSize convert(const TSize &size)
+{
+ return QSize(size.iWidth, size.iHeight);
+}
+inline
+QRect convert(const TRect &rect)
+{
+ return QRect(QPoint(rect.iTl.iX, rect.iTl.iY), QPoint(rect.iBr.iX, rect.iBr.iY));
+}
+
/**
* HbThemeServerPrivate::GetSharedMultiIconInfoL
Creates a consolidated icon of the frame item pieces ,
@@ -1544,12 +1572,12 @@
fullPath = fullPath.left(index + 1);
iconId.prepend(fullPath);
HbIconKey finalIconKey(iconId,
- (QSizeF)params.size,
- (Qt::AspectRatioMode)params.aspectRatioMode,
- (QIcon::Mode)params.mode,
- (bool)params.mirrored,
+ params.size,
+ static_cast<Qt::AspectRatioMode>(params.aspectRatioMode),
+ static_cast<QIcon::Mode>(params.mode),
+ params.mirrored,
color,
- (HbRenderingMode)params.renderMode);
+ static_cast<HbRenderingMode>(params.renderMode));
if (!IconInfoFromSingleIcon(finalIconKey, stitchedData)) {
HbMultiIconParams frameItemParams;
@@ -1561,20 +1589,20 @@
}
frameItemParams.multiPartIconId = iconId;
- frameItemParams.aspectRatioMode = (Qt::AspectRatioMode)params.aspectRatioMode;
+ frameItemParams.aspectRatioMode = params.aspectRatioMode;
frameItemParams.colorflag = params.colorflag;
- frameItemParams.mirrored = (bool)params.mirrored;
+ frameItemParams.mirrored = params.mirrored;
frameItemParams.options = params.options;
frameItemParams.rgba = params.rgba;
- frameItemParams.mode = (QIcon::Mode)params.mode;
- frameItemParams.size = (QSizeF)params.size;
+ frameItemParams.mode = params.mode;
+ frameItemParams.size = params.size;
frameItemParams.color = color;
frameItemParams.renderMode = params.renderMode;
QT_TRY {
for (int i = 0; i < noOfPieces; i++) {
- frameItemParams.multiPartIconData.pixmapSizes[i] = (QSize &)params.pixmapSizes[i];
- frameItemParams.multiPartIconData.targets[i] = (QRect &)params.targets[i];
- frameItemParams.multiPartIconData.sources[i] = (QRect &)params.sources[i];
+ frameItemParams.multiPartIconData.pixmapSizes[i] = convert(params.pixmapSizes[i]);
+ frameItemParams.multiPartIconData.targets[i] = convert(params.targets[i]);
+ frameItemParams.multiPartIconData.sources[i] = convert(params.sources[i]);
QString pieceName((QChar*)params.multiPartIconList[i].Ptr(), params.multiPartIconList[i].Length());
frameItemParams.multiPartIconList.append(pieceName);
}
@@ -1971,15 +1999,15 @@
aMessage.ReadL(0, paramPckg, 0);
QColor color = GetColorFromRgba(params.rgba, params.colorflag);
- Qt::AspectRatioMode aspectRatioMode = (Qt::AspectRatioMode)params.aspectRatioMode;
- QIcon::Mode mode = (QIcon::Mode)params.mode;
+ Qt::AspectRatioMode aspectRatioMode = static_cast<Qt::AspectRatioMode>(params.aspectRatioMode);
+ QIcon::Mode mode = static_cast<QIcon::Mode>(params.mode);
TBool mirrored = params.mirrored;
TInt iconCount = params.iconCount;
for (int i = 0; i < iconCount; i++) {
QString filename((QChar*)params.iconList[i].Ptr(), params.iconList[i].Length());
HbIconKey key(filename, params.sizeList[i], aspectRatioMode, mode, mirrored, color,
- (HbRenderingMode)params.renderMode);
+ static_cast<HbRenderingMode>(params.renderMode));
iServer->CleanupSessionIconItem(key);
sessionData.removeOne(key);
}
@@ -2061,7 +2089,7 @@
(Qt::AspectRatioMode)params.aspectRatioMode,
(QIcon::Mode)params.mode, params.mirrored, color, (HbRenderingMode)params.renderMode);
- HbIconCacheItem* cacheItem = cache->value(key);//iconCacheItem(key);
+ HbIconCacheItem* cacheItem = cache->value(key);
if(cacheItem)
refCount = cacheItem->refCount;
else
@@ -2071,132 +2099,3 @@
#endif
#endif
-
-CHbThemeChangeNotificationListener* CHbThemeChangeNotificationListener::NewL(HbThemeServerPrivate& aObserver)
-{
- CHbThemeChangeNotificationListener* self = new (ELeave) CHbThemeChangeNotificationListener(aObserver);
- CleanupStack::PushL(self);
- self->ConstructL();
- CleanupStack::Pop();
- return self;
-}
-
-CHbThemeChangeNotificationListener::CHbThemeChangeNotificationListener(HbThemeServerPrivate& aObserver)
- :CActive(EPriorityStandard),iObserver(aObserver)
-{
-
-}
-
-void CHbThemeChangeNotificationListener::ConstructL()
-{
- TInt err = RProperty::Define( KServerUid3, KNewThemeForThemeChanger, RProperty::ELargeText, KAllowAllPolicy, KThemeChangerPolicy );
- if ( err != KErrAlreadyExists ) {
- User::LeaveIfError( err );
- }
- err = themeRequestProp.Attach(KServerUid3, KNewThemeForThemeChanger );
- User::LeaveIfError(err);
-
- CActiveScheduler::Add(this);
-}
-
-CHbThemeChangeNotificationListener::~CHbThemeChangeNotificationListener()
-{
- stopListening();
-}
-
-void CHbThemeChangeNotificationListener::startListening()
-{
- if (IsActive()) {
- return; //do nothing if allready listening
- }
-
- User::LeaveIfError(themeRequestProp.Attach(KServerUid3,KNewThemeForThemeChanger));
- //Subscribe for updates
- themeRequestProp.Subscribe(iStatus);
-
- SetActive();
-
-}
-
-void CHbThemeChangeNotificationListener::stopListening()
-{
- Cancel(); // cancel
- if(IsActive()) { // only if already listening
- themeRequestProp.Close(); // Close the handle since it is not needed anymore
- }
-}
-
-/*
- * Returns TRUE if parsing succeeded, FALSE otherwise
- */
-bool CHbThemeChangeNotificationListener::parseData( TDesC& requestData, HbThemeServerRequest& etype, TDes& data)
-{
- TInt result = 0;
- const TChar delimiter = ':';
- // initialize return value as failed
- bool bSuccess = false;
-
- result = requestData.Locate( delimiter );
- if( KErrNotFound != result ) {
- TInt len = requestData.Length();
- const TDesC& typestr = requestData.Mid( 0, result);
- TLex atype ( typestr );
- TInt iType;
- atype.Val( iType );
- etype = static_cast<HbThemeServerRequest>(iType);
- data.Copy( requestData.Mid( result + 1, len - result - 1 ) );
- bSuccess = true;
- } else {
- bSuccess = false;
- }
-
- return bSuccess;
-}
-
-void CHbThemeChangeNotificationListener::RunL()
-{
- // Subscribe first to make sure we don't miss any
- // when handling this one.
- themeRequestProp.Subscribe(iStatus);
-
- SetActive();
-
- TBuf<256> requestData;
- TInt ret = themeRequestProp.Get(requestData);
- switch (ret) {
- case KErrNone:
- {
- QString qrequestData((QChar*)requestData.Ptr(),requestData.Length());
- HbThemeServerRequest etype = EInvalidServerRequest;
- TBuf<256> data;
- ///Parse the data from the Publisher
- bool bSuccess = parseData( requestData, etype, data);
- if( bSuccess && EThemeSelection == etype) {
- QString str((QChar*)data.Ptr(),data.Length());
- str = str.trimmed();
- iObserver.HandleThemeSelection( str );
- }
- }
- break;
- case KErrPermissionDenied:
- qDebug() << "KErrPermissionDenied";
- break;
- case KErrNotFound:
- qDebug() << "KErrNotFound";
- break;
- case KErrArgument:
- qDebug() << "KErrArgument";
- break;
- case KErrOverflow:
- qDebug() << "KErrOverflow";
- break;
- }
-}
-
-void CHbThemeChangeNotificationListener::DoCancel()
-{
- themeRequestProp.Cancel();
-}
-
-
-
--- a/src/hbservers/hbthemeserver/hbthemeserver_symbian_p_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbthemeserver_symbian_p_p.h Thu May 27 13:10:59 2010 +0300
@@ -38,13 +38,16 @@
#include "hbthemecommon_symbian_p.h"
#include "hbicondatacache_p.h"
#include "hbcache_p.h"
+#include "hbthemewatcher_symbian_p.h"
#include <e32property.h>
#include <e32base.h>
+#include <f32file.h>
class HbThemeServerSession;
struct HbIconKey;
class HbIconSource;
class CHbThemeChangeNotificationListener;
+class CHbThemeWatcher;
// reasons for server panic
enum TPixmapServPanic {
@@ -78,19 +81,17 @@
~HbThemeServerPrivate();
CSession2 * NewSessionL(const TVersion& aVersion, const RMessage2& aMessage) const;
- static HbThemeServerPrivate *Instance();
-
public :
// Function to panic the server
static void PanicServer(TPixmapServPanic aPanic);
- bool insertIconCacheItem(const HbIconKey &key, HbIconCacheItem * item);
+ bool insertIconCacheItem(const HbIconKey &key, HbIconCacheItem *item);
HbIconCacheItem * iconCacheItem(const HbIconKey &key, bool isMultiPiece = false);
void setMaxGpuCacheSize(int size);
void setMaxCpuCacheSize(int size);
void CleanupSessionIconItem(HbIconKey key);
void clearIconCache();
- bool insertCssCacheItem(const QString& key, HbCacheItem * item);
+ bool insertCssCacheItem(const QString &key, HbCacheItem *item);
HbCacheItem * cssCacheItem(const QString &key);
void CleanupSessionCssItem(QString key);
void clearCssCache();
@@ -104,7 +105,7 @@
void doCleanup();
static bool gpuMemoryState();
- void openCurrentIndexFile();
+ bool openCurrentIndexFile();
bool resolveThemePath(const QString &themeName, QString &themePath);
HbRenderingMode currentRenderingMode() const;
void setCurrentRenderingMode(HbRenderingMode currentMode);
@@ -148,7 +149,7 @@
RProperty iThemeProperty;
QString iCurrentThemeName;
QString iCurrentThemePath;
- QFile currentIndexfile;
+
private:
void ConstructL();
HbIconDataCache * cache;
@@ -159,6 +160,7 @@
HbRenderingMode renderMode;
QStringList romThemeNames;
CHbThemeChangeNotificationListener * iListener;
+ CHbThemeWatcher *iWatcher;
};
//**********************************
@@ -190,7 +192,8 @@
void GetDataFromCacheItem(HbIconCacheItem* cacheItem, HbSharedIconInfo &data) const;
void FreeDataFromCacheItem(HbIconCacheItem* cacheItem);
bool IconInfoFromSingleIcon(HbIconKey key, HbSharedIconInfo &stitchedData);
- bool CreateCacheItemData(HbIconKey key, int options, HbSharedIconInfo &data, bool isMultiPiece = false);
+ bool CreateCacheItemData(HbIconKey key, int options, HbSharedIconInfo &data,
+ bool isMultiPiece = false);
bool CreateStichedIconInfoOfParts(QVector<HbSharedIconInfo> dataForParts,
HbMultiIconParams params,
HbIconKey &finalIconKey,
@@ -220,36 +223,4 @@
QList<QString> sessionCssData;
};
-//**********************************
-//CHbThemeChangeNotificationListener
-//**********************************
-/**
-This class represents a listener for Pub/Sub events sent from the clients.
-Functions are provided to parse clients messages.
-*/
-class CHbThemeChangeNotificationListener : public CActive
-{
-public:
- static CHbThemeChangeNotificationListener* NewL(HbThemeServerPrivate& aObserver);
- virtual ~CHbThemeChangeNotificationListener();
- void startListening();
- void stopListening();
-
-protected: // From CActive
- void RunL();
- void DoCancel();
-
-private:
- CHbThemeChangeNotificationListener(HbThemeServerPrivate& aObserver);
- void ConstructL();
- bool parseData( TDesC& requestData, HbThemeServerRequest& etype, TDes& data);
-
-
-private: // data
- RProperty themeRequestProp;
- HbThemeServerPrivate& iObserver;
-};
-
-
#endif // HBTHEMESERVER_SYMBIAN_P_H
-
--- a/src/hbservers/hbthemeserver/hbthemeserverapplication.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbthemeserverapplication.cpp Thu May 27 13:10:59 2010 +0300
@@ -30,6 +30,7 @@
#include <QWindowsStyle>
#include <QLibrary>
#include <QDebug>
+#include <QDir>
#if defined (Q_OS_SYMBIAN)
#include "hbthemecommon_symbian_p.h"
@@ -48,7 +49,7 @@
bool HbThemeServerApplication::Options::start = false;
bool HbThemeServerApplication::Options::stop = false;
bool HbThemeServerApplication::Options::persistent = false;
-QString HbThemeServerApplication::Options::error = QString();
+QString HbThemeServerApplication::Options::error;
HbThemeServerApplication::HbThemeServerApplication(int &argc, char *argv[]) :
QtSingleApplication(argc, argv), server(0)
@@ -60,10 +61,6 @@
setStyle(new QWindowsStyle);
#endif // QT_DEBUG
-#if QT_VERSION >= 0x040601
- setAttribute(Qt::AA_S60DontConstructApplicationPanes);
-#endif // QT_VERSION
-
// ignore command line arguments on Symbian
#ifdef Q_OS_SYMBIAN
Options::start = true;
@@ -76,7 +73,8 @@
Options::start = args.removeAll(QLatin1String("-start")) || restart;
Options::stop = args.removeAll(QLatin1String("-stop")) || restart;
Options::persistent = args.removeAll(QLatin1String("-persistent"));
- Options::help = args.removeAll(QLatin1String("-help")) || args.removeAll(QLatin1String("-h")) || !args.isEmpty() || wasEmpty;
+ Options::help = args.removeAll(QLatin1String("-help"))
+ || args.removeAll(QLatin1String("-h")) || !args.isEmpty() || wasEmpty;
if (!args.isEmpty()) {
Options::error = tr("Unknown option(s): '%1'").arg(args.join(QLatin1String(" ")));
}
@@ -93,21 +91,19 @@
#if defined (Q_OS_SYMBIAN)
CEikonEnv * env = CEikonEnv::Static();
if ( env ) {
- CApaWindowGroupName* wgName = CApaWindowGroupName::NewLC(env->WsSession());
+ _LIT(KHbThemeServer, "HbThemeServer");
+ CApaWindowGroupName *wgName = CApaWindowGroupName::NewLC(env->WsSession());
env->RootWin().SetOrdinalPosition(0, ECoeWinPriorityNeverAtFront); // avoid coming to foreground
wgName->SetHidden(ETrue); // hides us from FSW and protects us from OOM FW etc.
wgName->SetSystem(ETrue); // Allow only application with PowerManagement cap to shut us down
- wgName->SetCaptionL(_L("HbThemeServer")); // TODO: use QCoreApplication::applicationName()
+ wgName->SetCaptionL(KHbThemeServer);
wgName->SetAppUid(KNullUid);
wgName->SetWindowGroupName(env->RootWin());
CleanupStack::PopAndDestroy();
- RThread::RenameMe(_L("HbThemeServer")); // TODO: use QCoreApplication::applicationName()
+ RThread::RenameMe(KHbThemeServer);
}
#endif
- // as for theme initialization, an instance needs to be created before starting the server
- HbTheme::instance();
-
// load resource libraries in order to make binary resources accessible
bool result = loadLibrary(RESOURCE_LIB_NAME);
#ifdef HB_DEVELOPER
@@ -139,12 +135,34 @@
#endif // Q_OS_SYMBIAN
}
+static bool hb_loadLibraryHelper(const QString &name)
+{
+ QLibrary library(name);
+ // rely on dynamic loader (LD_LIBRARY_PATH)
+ bool result = library.load();
+ if (!result) {
+ // try from prefix/lib dir
+ library.setFileName(QDir(HB_LIB_DIR).filePath(name));
+ result = library.load();
+ if (!result) {
+ // try from build/lib dir
+ QString path = QLatin1String(HB_BUILD_DIR) + QDir::separator() + QLatin1String("lib");
+ library.setFileName(QDir(path).filePath(name));
+ result = library.load();
+ }
+ }
+#ifdef THEME_SERVER_TRACES
+ if (!result) {
+ qDebug() << "hb_loadLibraryHelper():" << library.errorString();
+ }
+#endif
+ return result;
+}
+
bool HbThemeServerApplication::loadLibrary(const QString &name)
{
// To load resources embedded in hb library
- QLibrary library(name);
- bool result = library.load();
-
+ bool result = hb_loadLibraryHelper(name);
if (!result) {
// Library may not be loaded, if it was built in debug mode and the name in debug mode is
// different, change the name to debug version in that scenario
@@ -156,8 +174,9 @@
#endif
// On symbian library name in debug mode is same as that in release mode,
// so no need to do anything for that
- library.setFileName(alternateName);
- result = library.load();
+ if (alternateName != name) {
+ result = hb_loadLibraryHelper(alternateName);
+ }
}
#ifdef THEME_SERVER_TRACES
if (result) {
@@ -173,8 +192,9 @@
void HbThemeServerApplication::receiveMessage(const QString &message)
{
- if (!server)
+ if (!server) {
return;
+ }
if (message == STOP_MESSAGE) {
server->stopServer();
@@ -219,10 +239,13 @@
#else
return true;
#endif
-
-
}
-
+void HbThemeServerApplication::setPriority()
+{
+#ifdef Q_OS_SYMBIAN
+ RProcess().SetPriority(EPriorityHigh);
+#endif
+}
#ifdef Q_OS_SYMBIAN
Lock::Lock()
--- a/src/hbservers/hbthemeserver/hbthemeserverapplication_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbthemeserverapplication_p.h Thu May 27 13:10:59 2010 +0300
@@ -25,7 +25,7 @@
#ifndef HBTHEMESERVERAPPLICATION_P_H
#define HBTHEMESERVERAPPLICATION_P_H
-#include <QtSingleApplication>
+#include <qtsingleapplication.h>
class HbThemeServer;
@@ -49,6 +49,7 @@
int exec();
static bool acquireLock();
+ static void setPriority();
public slots:
void stop();
@@ -74,7 +75,11 @@
};
Lock();
~Lock(){close();}
- void close(){mFile.Close(); mFs.Close();}
+ void close()
+ {
+ mFile.Close();
+ mFs.Close();
+ }
State acquire();
static bool serverExists();
--- a/src/hbservers/hbthemeserver/hbthemeserverutils.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbthemeserverutils.cpp Thu May 27 13:10:59 2010 +0300
@@ -143,7 +143,8 @@
*
* Returns false in case Css file has some error or there is not enough memory
*/
-bool HbThemeServerUtils::parseCssFile(HbCss::Parser &parser, const QString &fileName, int &cssOffset)
+bool HbThemeServerUtils::parseCssFile(HbCss::Parser &parser, const QString &fileName,
+ int &cssOffset)
{
bool retVal = false;
// 1. Create a styleSheet in shared memory
@@ -153,7 +154,8 @@
HbCss::StyleSheet *styleSheet = 0;
try {
cssOffset = manager->alloc(sizeof(HbCss::StyleSheet));
- styleSheet = new((char*)manager->base() + cssOffset) HbCss::StyleSheet(HbMemoryManager::SharedMemory);
+ styleSheet = new(static_cast<char *>(manager->base()) + cssOffset)
+ HbCss::StyleSheet(HbMemoryManager::SharedMemory);
} catch (std::bad_alloc &) {
if (cssOffset != -1) {
// if manager->alloc in the previous try block suceeds but creation of
@@ -184,7 +186,8 @@
Returns of the offset for the given filename,layout and section name.
*/
-int HbThemeServerUtils::getSharedLayoutDefinition(const QString & fileName, const QString &layout, const QString §ion)
+int HbThemeServerUtils::getSharedLayoutDefinition(const QString & fileName, const QString &layout,
+ const QString §ion)
{
int layoutDefOffset = -1;
// check in the cache.
@@ -204,7 +207,6 @@
qDebug() << "Trying to load: " << fileName << "::" << layout << "::" << section;
#endif // THEME_SERVER_TRACES
-
HbWidgetLoader::LayoutDefinition *layoutDef(0);
GET_MEMORY_MANAGER(HbMemoryManager::SharedMemory);
try {
@@ -308,7 +310,8 @@
HbEffectFxmlData *data = 0;
try {
effOffset = manager->alloc(sizeof(HbEffectFxmlData));
- data = new((char*)manager->base() + effOffset) HbEffectFxmlData(HbMemoryManager::SharedMemory);
+ data = new(static_cast<char*>(manager->base()) + effOffset)
+ HbEffectFxmlData(HbMemoryManager::SharedMemory);
} catch (std::exception &) {
if (effOffset != -1) {
// if manager->alloc in the previous try block suceeds but creation of
--- a/src/hbservers/hbthemeserver/hbthemeserverutils_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbthemeserverutils_p.h Thu May 27 13:10:59 2010 +0300
@@ -45,12 +45,15 @@
public:
static HbIconSource *getIconSource(const QString &filename);
static QString formatFromPath(const QString &iconPath);
- static int getSharedStylesheet(const QString &fileName, HbLayeredStyleLoader::LayerPriority priority,
+ static int getSharedStylesheet(const QString &fileName,
+ HbLayeredStyleLoader::LayerPriority priority,
bool *inSharedCache = 0);
static bool parseCssFile(HbCss::Parser &parser, const QString &fileName, int &cssOffset);
static void cleanupUnusedCss(HbCache *cache);
static int getSharedEffect(const QString &fileName);
- static int getSharedLayoutDefinition(const QString & fileName, const QString &layout, const QString §ion);
+ static int getSharedLayoutDefinition(const QString & fileName,
+ const QString &layout,
+ const QString §ion);
static void createDeviceProfileDatabase();
static bool removeSharedEffect(const QString &fileName);
static void clearSharedEffects();
@@ -59,4 +62,3 @@
};
#endif // HBTHEMESERVERUTILS_P_H
-
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbservers/hbthemeserver/hbthemewatcher_symbian.cpp Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,230 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbServers module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#include "hbthemewatcher_symbian_p.h"
+#include "hbthemeserver_symbian_p_p.h"
+#include "hbthemeutils_p.h"
+
+#include <QFile>
+#include <e32property.h>
+#include <e32base.h>
+#include <e32svr.h>
+
+// Publish/Subscribe themeRequestProp specific
+static _LIT_SECURITY_POLICY_PASS(KAllowAllPolicy);
+static _LIT_SECURITY_POLICY_C1(KThemeChangerPolicy,ECapabilityWriteDeviceData);
+
+CHbThemeWatcher::CHbThemeWatcher(HbThemeServerPrivate& aObserver) : CActive(EPriorityStandard),
+ iObserver(aObserver)
+{
+ CActiveScheduler::Add(this);
+}
+
+void CHbThemeWatcher::ConstructL()
+{
+ User::LeaveIfError(iFs.Connect());
+}
+
+CHbThemeWatcher* CHbThemeWatcher::NewL(HbThemeServerPrivate& aObserver)
+{
+ CHbThemeWatcher* self = new (ELeave) CHbThemeWatcher(aObserver);
+ CleanupStack::PushL(self);
+ self->ConstructL();
+ CleanupStack::Pop(self);
+ return self;
+}
+
+CHbThemeWatcher::~CHbThemeWatcher()
+{
+ Cancel();
+ iFs.Close();
+}
+
+void CHbThemeWatcher::startWatchingL(const QString &file)
+{
+ // Cancel ongoing watch
+ if (IsActive()) {
+ Cancel();
+ }
+ iFile = file;
+
+ TBuf<256> fileToWatch(iFile.utf16());
+ iFs.NotifyChange(ENotifyAll, iStatus, fileToWatch);
+ SetActive();
+}
+
+void CHbThemeWatcher::RunL()
+{
+ if (iStatus != KErrNone) {
+ return;
+ }
+
+ QFile file(iFile);
+ if (file.open(QIODevice::ReadOnly)) {
+ file.close();
+
+ // theme exists continue watching
+ TBuf<256> fileToWatch(iFile.utf16());
+ iFs.NotifyChange(ENotifyAll, iStatus, fileToWatch);
+ SetActive();
+ return;
+ }
+
+ // theme doesn't exist, change active theme to default
+ iObserver.HandleThemeSelection(HbThemeUtils::defaultTheme().name);
+}
+
+void CHbThemeWatcher::DoCancel()
+{
+ iFs.NotifyChangeCancel(iStatus);
+}
+
+CHbThemeChangeNotificationListener* CHbThemeChangeNotificationListener::NewL(HbThemeServerPrivate& aObserver)
+{
+ CHbThemeChangeNotificationListener* self = new (ELeave) CHbThemeChangeNotificationListener(aObserver);
+ CleanupStack::PushL(self);
+ self->ConstructL();
+ CleanupStack::Pop(self);
+ return self;
+}
+
+CHbThemeChangeNotificationListener::CHbThemeChangeNotificationListener(HbThemeServerPrivate& aObserver)
+ :CActive(EPriorityStandard),iObserver(aObserver)
+{
+
+}
+
+void CHbThemeChangeNotificationListener::ConstructL()
+{
+ TInt err = RProperty::Define( KServerUid3, KNewThemeForThemeChanger, RProperty::ELargeText, KAllowAllPolicy, KThemeChangerPolicy );
+ if ( err != KErrAlreadyExists ) {
+ User::LeaveIfError( err );
+ }
+ err = themeRequestProp.Attach(KServerUid3, KNewThemeForThemeChanger );
+ User::LeaveIfError(err);
+
+ CActiveScheduler::Add(this);
+}
+
+CHbThemeChangeNotificationListener::~CHbThemeChangeNotificationListener()
+{
+ stopListening();
+}
+
+void CHbThemeChangeNotificationListener::startListeningL()
+{
+ if (IsActive()) {
+ return; //do nothing if already listening
+ }
+
+ User::LeaveIfError(themeRequestProp.Attach(KServerUid3,KNewThemeForThemeChanger));
+ //Subscribe for updates
+ themeRequestProp.Subscribe(iStatus);
+
+ SetActive();
+
+}
+
+void CHbThemeChangeNotificationListener::stopListening()
+{
+ Cancel(); // cancel
+ if(IsActive()) { // only if already listening
+ themeRequestProp.Close(); // Close the handle since it is not needed anymore
+ }
+}
+
+/*
+ * Returns TRUE if parsing succeeded, FALSE otherwise
+ */
+bool CHbThemeChangeNotificationListener::parseData(const TDesC& requestData, HbThemeServerRequest& etype, TDes& data)
+{
+ TInt result = 0;
+ const TChar delimiter = ':';
+ // initialize return value as failed
+ bool bSuccess = false;
+
+ result = requestData.Locate( delimiter );
+ if( KErrNotFound != result ) {
+ TInt len = requestData.Length();
+ const TDesC& typestr = requestData.Mid(0, result);
+ TLex atype(typestr);
+ TInt iType;
+ atype.Val( iType );
+ etype = static_cast<HbThemeServerRequest>(iType);
+ data.Copy( requestData.Mid( result + 1, len - result - 1 ) );
+ bSuccess = true;
+ } else {
+ bSuccess = false;
+ }
+
+ return bSuccess;
+}
+
+static const TInt KThemeChangeDataBufferSize = 256;
+
+void CHbThemeChangeNotificationListener::RunL()
+{
+ // Subscribe first to make sure we don't miss any
+ // when handling this one.
+ themeRequestProp.Subscribe(iStatus);
+
+ SetActive();
+
+ TBuf<KThemeChangeDataBufferSize> requestData;
+ TInt ret = themeRequestProp.Get(requestData);
+ switch (ret) {
+ case KErrNone:
+ {
+ QString qrequestData((QChar*)requestData.Ptr(),requestData.Length());
+ HbThemeServerRequest etype = EInvalidServerRequest;
+ TBuf<KThemeChangeDataBufferSize> data;
+ ///Parse the data from the Publisher
+ bool bSuccess = parseData( requestData, etype, data);
+ if( bSuccess && EThemeSelection == etype) {
+ QString str((QChar*)data.Ptr(), data.Length());
+ str = str.trimmed();
+ iObserver.HandleThemeSelection( str );
+ }
+ }
+ break;
+ case KErrPermissionDenied:
+ qDebug() << "KErrPermissionDenied";
+ break;
+ case KErrNotFound:
+ qDebug() << "KErrNotFound";
+ break;
+ case KErrArgument:
+ qDebug() << "KErrArgument";
+ break;
+ case KErrOverflow:
+ qDebug() << "KErrOverflow";
+ break;
+ }
+}
+
+void CHbThemeChangeNotificationListener::DoCancel()
+{
+ themeRequestProp.Cancel();
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbservers/hbthemeserver/hbthemewatcher_symbian_p.h Thu May 27 13:10:59 2010 +0300
@@ -0,0 +1,95 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbServers module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#ifndef HBTHEMEWATCHER_SYMBIAN_P_H
+#define HBTHEMEWATCHER_SYMBIAN_P_H
+
+#include <QString>
+
+#include "hbthemecommon_p.h"
+
+#include <e32property.h>
+#include <e32base.h>
+#include <f32file.h>
+
+class HbThemeServerPrivate;
+
+//**********************************
+//CHbThemeWatcher
+//**********************************
+/**
+This class is for watching changes in active theme e.g. ejection of the MMC.
+*/
+class CHbThemeWatcher : public CActive
+{
+public:
+ static CHbThemeWatcher* NewL(HbThemeServerPrivate& aObserver);
+ ~CHbThemeWatcher();
+ void startWatchingL(const QString &file);
+
+protected: // From CActive
+ void RunL();
+ void DoCancel();
+
+private:
+ CHbThemeWatcher(HbThemeServerPrivate& aObserver);
+ void ConstructL();
+
+private: // data
+ RFs iFs;
+ QString iFile;
+ HbThemeServerPrivate& iObserver;
+};
+
+//**********************************
+//CHbThemeChangeNotificationListener
+//**********************************
+/**
+This class represents a listener for Pub/Sub events sent from the clients.
+Functions are provided to parse clients messages.
+*/
+class CHbThemeChangeNotificationListener : public CActive
+{
+public:
+ static CHbThemeChangeNotificationListener* NewL(HbThemeServerPrivate& aObserver);
+ virtual ~CHbThemeChangeNotificationListener();
+ void startListeningL();
+ void stopListening();
+
+protected: // From CActive
+ void RunL();
+ void DoCancel();
+
+private:
+ CHbThemeChangeNotificationListener(HbThemeServerPrivate& aObserver);
+ void ConstructL();
+ bool parseData(const TDesC& requestData, HbThemeServerRequest& etype, TDes& data);
+
+private: // data
+ RProperty themeRequestProp;
+ HbThemeServerPrivate& iObserver;
+};
+
+#endif // HBTHEMEWATCHER_SYMBIAN_P_H
--- a/src/hbservers/hbthemeserver/main.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbservers/hbthemeserver/main.cpp Thu May 27 13:10:59 2010 +0300
@@ -46,6 +46,14 @@
int main(int argc, char *argv[])
{
+ // Hiding theme server from the start up in first phase
+#if QT_VERSION >= 0x040601
+ QApplication::setAttribute(Qt::AA_S60DontConstructApplicationPanes);
+#endif // QT_VERSION
+
+ // We need to be up and running fast
+ HbThemeServerApplication::setPriority();
+
if(!HbThemeServerApplication::acquireLock()) {
return 0;
}
--- a/src/hbtools/hbthemeindexer/main.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbtools/hbthemeindexer/main.cpp Thu May 27 13:10:59 2010 +0300
@@ -59,7 +59,9 @@
void createMirroredList(const QString &fullThemePath)
{
- std::cout << "Parsing mirrored list for theme " << fullThemePath.toStdString() << "\n";
+ if (verboseOn) {
+ std::cout << "Parsing mirrored list for theme " << fullThemePath.toStdString() << "\n";
+ }
// Find mirrored.txt file
QString filename = fullThemePath + "/mirrored.txt";
// Try to read file
@@ -81,7 +83,9 @@
void createLockedList(const QString &fullThemePath)
{
- std::cout << "Parsing locked list for theme " << fullThemePath.toStdString() << "\n";
+ if (verboseOn) {
+ std::cout << "Parsing locked list for theme " << fullThemePath.toStdString() << "\n";
+ }
// Find locked.txt file
QString filename = fullThemePath + "/locked.txt";
// Try to read file
--- a/src/hbtools/hbtools.pro Fri May 14 16:09:54 2010 +0300
+++ b/src/hbtools/hbtools.pro Thu May 27 13:10:59 2010 +0300
@@ -27,7 +27,9 @@
TEMPLATE = subdirs
-SUBDIRS += hbthemeindexer hbbincssmaker
+SUBDIRS += hbthemeindexer
+SUBDIRS += hbbincssmaker
+SUBDIRS += docml2bin
include($${HB_SOURCE_DIR}/src/hbcommon.pri)
--- a/src/hbutils/document/hbdocumentloader.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbutils/document/hbdocumentloader.cpp Thu May 27 13:10:59 2010 +0300
@@ -48,6 +48,9 @@
able to create your own custom widgets, you have to derive from this class and override
\c createObject method.
+ See \c HbDocumentLoader::createBinary for information about DocML binary conversion
+ in build time.
+
Use the \c HbDocumentLoaderPlugin to add tool support for custom widgets.
Example code:
@@ -162,6 +165,16 @@
/*!
Converts DocML document to binary document.
+
+ You can also convert DocML files to binary format in build time by listing the files in "DOCML"
+ variable in the .pro file. This will create a binary docml file called <file_name>.bin that
+ can be included to the resources (.qrc).
+
+ Known issues: Currently the resource compiler gives warnings about missing binary files during
+ qmake. It's ok to ignore these warnings.
+
+ For more information about DocML binary format, please refer to S60QtProgrammersGuide.
+
\param srcDevice source IO device to be processed.
\param dstDevice destination IO device where to write to.
\return true if conversion was ok.
--- a/src/hbwidgets/dataform/hbdataform.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/dataform/hbdataform.cpp Thu May 27 13:10:59 2010 +0300
@@ -43,16 +43,16 @@
@beta
@hbwidgets
\class HbDataForm
- \brief HbDataForm represents hierarchical dataitems in the form of groups,pages and
- items.
- The HbDataForm class provides a default view implementation of dataform.
- A HbDataForm implements a hierarchical representation of data items from a model.
+ \brief HbDataForm represents hierarchical dataitems in form of form pages, groups, group pages
+ and data items.
+ HbDataForm implements a hierarchical representation of view items for each model items from
+ HbDataFormModel.
HbDataForm implements the interfaces defined by the HbAbstractItemView class to allow
- it to display data provided by models derived from the QAbstractItemModel class.
+ it to display data provided by models which are derived from QAbstractItemModel class.
It is simple to construct a dataform displaying data from a model. The user has to create
- HbDataFormModel and create the hierarchy of HbDataFormModelItems .The hierarchy is
+ HbDataFormModel and create the hierarchy of HbDataFormModelItems.The hierarchy is
similar to the following.
- HbDataForm
@@ -70,55 +70,80 @@
- HbDataItem
- HbDataItem
- HbDataItem
+ - HbDataGroup3
+ - HbDataItem
+ - HbDataItem
+ - HbDataItem
+ - HbDataItem
+ - HbDataItem
- HbDataItem can be the child of HbDataForm, HbDataFormPage,HbDataGroup and
+ HbDataItem can be the child of HbDataForm, HbDataFormPage, HbDataGroup and
HbDataGroupPage. An instance of HbDataForm has to be created and model should be set
- to the form using setModel(HbDataFormModel) API.
- The properties of each DataItem node can be set using HbDataFormModelItem convenient
- API's. These data are parsed while the visualization instance of each item is created and
- set on each item.
+ to the form using setModel( ) API.
+ The properties of each data item node can be set using HbDataFormModelItem convenient
+ API's like setContentWidgetData( ). These model data are parsed and set while the visualization
+ instance of each item is created.
- The model/view architecture ensures that the contents of the data view are updated as the
+ The model/view architecture ensures that the view contents are updated as and when the data in
model changes.
- Items that have children can be in expanded (children are visible) or collapsed
- (children are hidden) state. DataItems of type HbDataFormPage, HbDataGroup and
- HbDataGroupPage can be expanded and collapsed. HbDataItem of type FormPageItem,
- GroupItem, GroupPageItem can only have children. Each item in model is represented by an
- instance of HbDataFormViewItem. HbDataForm uses HbDataFormViewItem prototype to instantiate
- the HbDataForm items. HbDataFormViewItem can be subclassed for customization purposes.
+ Only model items that can have children can be in expanded (childrens are visible) or
+ collapsed (childrens are hidden) state. Model items of type HbDataFormModelItem::FormPageItem,
+ HbDataFormModelItem::GroupItem and HbDataFormModelItem::GroupPageItem can be expanded
+ or collapsed. Which in turn means that these types of model item can only have children.
+ Each item in model is represented by either an instance of HbDataFormViewItem or classes which
+ are derived from HbDataFormViewItem. HbDataFormViewItem can be subclassed for
+ customization purposes.
- The Model hierarchy can be created using the convenient API's provided on model class like
- appendDataFormPage , appendDataFormGroup ,appendDataFormGroupPage and
- appendDataFormItem. All of these will return HbDataFormModelItem instance correspoding
- to each type on which user can set item specific data. Otherwise each HbDataFormModelItem can
- be created individually by passing the corresponding type of item (GroupItem, GroupPageItem,
- FormPageItem) and create the tree of HbDataFormModelItem using setParent API
- or by passing the parent HbDataFormModelItem in constructor. Later the top level
- HbDataFormModelItem can be added inside the model.
+ The Model hierarchy can be created using the convenient API's provided in model class like
+ appendDataFormPage(), appendDataFormGroup(), appendDataFormGroupPage() and
+ appendDataFormItem(). All these API's return HbDataFormModelItem instance corresponding
+ to each HbDataFormModelItem::DataItemType type on which user can set item
+ specific(content widget) data. Otherwise each HbDataFormModelItem can be created individually
+ by passing the corresponding type of item (GroupItem, GroupPageItem, FormPageItem) and create
+ the tree of HbDataFormModelItem using setParent API or by passing the parent
+ HbDataFormModelItem in constructor. Later the top level HbDataFormModelItem can be added in
+ model.
- After doing the setModel, the visualization gets created . Only the items inside the expanded
- group or group page instances are created. When an item's visualization is created ,
- DataForm emits activated(constQModelIndex&) signal. The application can get
- HbDataFormViewItem and content widget from DataForm using QModelIndex.
+ After setting model in HbDataForm using setModel(), the visualization gets created.
+ Only the items inside the expanded form page, group or group page are created. When an item's
+ visualization is created, HbDataForm emits itemShown(constQModelIndex&) signal. The application
+ can connect to this signal and when corresponding slot is called then application can get
+ HbDataFormViewItem instance and even content widget instance. Use HbAbstractItemView::itemByIndex()
+ to get HbDataFormViewItem instance. Use HbDataFormViewItem::dataItemContentWidget() to get
+ content widget instance.
- The signal emitted by HbDataForm
- \li activated(const QModelIndex &index) Emitted when the HbDataFormViewItem corresponding to
+ The signals emitted by HbDataForm
+ \li itemShown(const QModelIndex &index) Emitted when the HbDataFormViewItem corresponding to
\a index is shown. User can connect to this signal and can fetch the instance of
HbDataFormViewItem from HbDataForm using the API dataFormViewItem(const QModelIndex &index).
- \li dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) emitted when the
- HbDataFormModel is updated \atopLeft and \abottomRight will be same since every node has only one column.
- User can connect to this signal and can fetch the instance of HbDataFormViewItem from HbDataForm
- using the API dataFormViewItem(const QModelIndex &index) or user can fetch HbDataFormModelItem using API
- itemFromIndex(const QModelIndex &index) in HbDataFormModel .When user updates model using
- setContentWidgetData API provided in HbDataFormModelItem class, then DataForm takes care of updating the
- corresponding item's visualization.
+ This signal is only emitted for model items of type greater than HbDataFormModelItem::GroupPageItem
+
+ The user can also provide connection information to correspoding content widget of each
+ HbDataFormModelItem using API
+ addConnection(HbDataFormModelItem* item, const char* signal, QObject* receiver, const char* slot)
+ provided in HbDataForm. The connection will be established when the item visualization is created.
+ Similar way
+ removeConnection(HbDataFormModelItem *item, const char* signal, QObject *receiver, const char* slot)
+ and removeAllConnection() API can be used. Connection can be established or removed even at runtime.
+ An example of how to make connection and setting the content widget property:
- The user can also provide connection information to correspoding content widget of each HbDataFormModelItem
- using API addConnection(HbDataFormModelItem* item, const char* signal, QObject* receiver, consta char* slot)
- provided in HbDataForm class.The connection will be established when the item visualization is created .
- similar way removeConnection(HbDataFormModelItem *item, const char* signal, QObject *receiver, const char* slot)
- and removeAllConnection() API can be used. Connection can be established or removed even at runtime also.
+ \code
+ HbDataForm *form = new HbDataForm();
+ model = new HbDataFormModel();
+
+ HbDataFormModelItem *sliderItem =
+ model->appendDataFormItem(HbDataFormModelItem::SliderItem, QString("slider"));
+ //Set the content widget properties. In this case its HbSlider.
+ sliderItem->setContentWidgetData("maximum", 200);
+ sliderItem->setContentWidgetData("minimum", 0);
+ sliderItem->setContentWidgetData("value", 100);
+ //Make a connection to HbSlider valueChanged signal.
+ form->addConnection(sliderItem, SIGNAL(valueChanged(int)), this, SLOT(sliderValueChanged(int)));
+
+ form->setModel(model);
+ setWidget(form);
+ \endcode
An example of how to create HbDataForm:
\snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,31}
@@ -134,20 +159,20 @@
\sa HbDataFormViewItem, HbDataFormModel, HbDataFormModelItem
Creating Custom Item:
+
Application developer can create custom DataItem by deriving from HbDataFormViewItem and setting this as
- prototype(setItemProtoType() API).
- Application has to override virtual API's createCustomWidget() , restore()and save().
- createCustomWidget() API should return the corresponding custom HbWidget which can also be a compound widget.
- Signal connection for child widgets inside the compound widget should taken care by the application.
- restore() API will be called by the framework when the model data is changed.
- So restore() should take care of updating the visual items with correspoding data from model.
- save() API should update the model.App developer should connect respective widgets SIGNALs to SLOT save()
+ prototype using setItemProtoType() API. Application has to override virtual API's createCustomWidget(),
+ restore()and save(). createCustomWidget() API should return the corresponding custom HbWidget which
+ can also be a compound widget. Signal connection for child widgets inside the compound widget should
+ be taken care by the application. restore() API will be called by the framework when the model data
+ is changed. So restore() should take care of updating the visual items with correspoding data from model.
+ save() API should update the model. App developer should connect respective widgets SIGNALs to SLOT save()
and update the data to model .
*/
/*!
- \fn void HbAbstractItemView::activated(const QModelIndex &index)
+ \fn void HbAbstractItemView::itemShown(const QModelIndex &index)
This signal is emitted when HbDataFormViewItem corresponding to \a index is shown.
@@ -165,8 +190,6 @@
d->q_ptr = this;
d->init();
setVerticalScrollBarPolicy(ScrollBarAlwaysOff);
- //d->mHeadingWidget->createPrimitives();
- //static_cast<HbDataItemContainer*>(container())->setFormHeading(d->mHeadingWidget);
}
/*!
@@ -192,15 +215,13 @@
/*!
\reimp
- Scrolls the view so that the item represented by \a index comes at the middle of
- screen. By default HbDataForm does not scrolls. Application developer is supposed to
- call this API if he wants this behaviour. User can connect to activated signal and then
+ Scrolls the view so that the item represented by \a index position is changed as per \a hint
+ parameter. By default HbDataForm does not scrolls. Application developer is supposed to
+ call this API if he wants this behaviour. User can connect to itemShown signal and then
can call this API.
*/
void HbDataForm::scrollTo(const QModelIndex &index, ScrollHint hint)
{
- //Q_D(HbDataForm);
- //d->revealItem(d->mContainer->itemByIndex(index), PositionAtCenter);
HbAbstractItemView::scrollTo(index, hint);
}
@@ -208,9 +229,10 @@
/*!
@beta
- Sets the item referred to by \a index to either collapse or expanded,
+ Sets the item referred to by \a index to either collapse or expanded state,
depending on the value of \a expanded. If \a expanded is true then child item are
- supposed to be visible.
+ supposed to be visible and in that case itemShown will be emitted for all the
+ new data items which were created.
\sa isExpanded
*/
@@ -235,7 +257,7 @@
/*!
@beta
- Returns true if the model item \a index is expanded otherwise returns false.
+ Returns true if the model item at \a index is expanded otherwise returns false.
\sa setExpanded
*/
@@ -256,7 +278,9 @@
Sets the heading of HbDataForm with the \a heading provided. Heading is displayed on
top of the HbDataForm. Heading is non-focusable.
- \sa heading
+ \sa heading
+ \sa setDescription
+ \sa description
*/
void HbDataForm::setHeading(const QString &heading)
{
@@ -292,7 +316,9 @@
Returns heading of HbDataForm.
- \sa setHeading
+ \sa setHeading
+ \sa setDescription
+ \sa description
*/
QString HbDataForm::heading() const
{
@@ -311,6 +337,8 @@
below heading. Description is non-focusable.
\sa description
+ \sa setHeading
+ \sa heading
*/
void HbDataForm::setDescription(const QString &description)
{
@@ -347,6 +375,8 @@
Returns description of HbDataForm.
\sa setDescription
+ \sa setHeading
+ \sa heading
*/
QString HbDataForm::description() const
{
@@ -412,7 +442,6 @@
/*!
\reimp
*/
-
void HbDataForm::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
{
Q_UNUSED(bottomRight);
@@ -487,7 +516,7 @@
}
/*!
- @alpha
+ @beta
This API can be used to connect with the signal of HbDataFormViewItem's content widget.
For example: If HbDataFormModelItem is of type DataItemType::SliderItem then user
@@ -506,7 +535,8 @@
\param receiver Instance of object whose slot will be called
\param slot Slot of \a receiver which will get called when signal is emitted
- \sa removeConnection
+ \sa removeConnection
+ \sa removeAllConnection
*/
void HbDataForm::addConnection(HbDataFormModelItem * item,
const char* signal,
@@ -523,12 +553,13 @@
}
/*!
- @alpha
+ @beta
This API can be used to remove the signal connection which was established using the
addConnection API.
- \sa addConnection
+ \sa addConnection
+ \sa removeAllConnection
*/
void HbDataForm::removeConnection(HbDataFormModelItem * item,
const char* signal,
@@ -540,12 +571,13 @@
}
/*!
- @alpha
+ @beta
- Removes the connection of all the contentwidget of all the items which has been established .
- The connection information stored inside DataForm also cleared.
+ Removes the connection of all the contentwidget of all the items which has been established.
+ The connection information stored inside data form is also cleared.
- \sa removeAllConnection
+ \sa removeConnection
+ \sa addConnection
*/
void HbDataForm::removeAllConnection()
{
@@ -554,11 +586,11 @@
}
/*!
- @alpha
+ @beta
- Removes the all connections of the contentwidget of HbDataFormModelItem's corresponding
- visual Item ( HbdataFormViewItem).The connection information of correspoding
- HbDataFormModelItem stored inside DataForm also cleared.
+ Removes all connections to the contentwidget of HbDataFormModelItem's corresponding
+ visual Item ( HbdataFormViewItem ).The connection information of correspoding
+ HbDataFormModelItem stored inside data form also cleared.
\sa removeAllConnection
*/
--- a/src/hbwidgets/dataform/hbdataform.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/dataform/hbdataform.h Thu May 27 13:10:59 2010 +0300
@@ -72,6 +72,7 @@
void removeAllConnection();
void removeAllConnection(HbDataFormModelItem *item);
+
signals:
void itemShown(const QModelIndex &index);
@@ -93,6 +94,7 @@
Q_DISABLE_COPY(HbDataForm)
Q_PRIVATE_SLOT(d_func(), void _q_page_changed(int))
Q_PRIVATE_SLOT(d_func(), void _q_item_displayed(const QModelIndex&))
+
friend class HbDataFormViewItem;
};
--- a/src/hbwidgets/dataform/hbdataform_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/dataform/hbdataform_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,6 +25,7 @@
#include "hbdataform_p.h"
#include <hbdataformviewitem.h>
+#include "hbdataformviewitem_p.h"
#include "hbdataitemcontainer_p.h"
#include <hbcombobox.h>
#include <hbapplication.h>
@@ -207,7 +208,7 @@
if(signalList.count() > 0){
HbDataFormViewItem *viewItem = static_cast<HbDataFormViewItem*>(q->itemByIndex(index));
if(viewItem){
- HbWidget *contentWidget = viewItem->dataItemContentWidget();
+ HbWidget *contentWidget = HbDataFormViewItemPrivate::d_ptr(viewItem)->mContentWidget;
if(contentWidget){
foreach(ItemSignal signal, signalList) {
QObject *objct = signal.reciever;
@@ -242,7 +243,7 @@
static_cast<HbDataFormModel*>(q->model())->indexFromItem(modelItem);
HbDataFormViewItem *viewItem = static_cast<HbDataFormViewItem*>(q->itemByIndex(index));
if(viewItem){
- HbWidget *contentWidget = viewItem->dataItemContentWidget();
+ HbWidget *contentWidget = HbDataFormViewItemPrivate::d_ptr(viewItem)->mContentWidget;
if(contentWidget){
//foreach(ItemSignal signalItem, signalList) {
for(int i = 0; i < signalList.count() ;i++){
@@ -277,14 +278,13 @@
if(q->model()) {
QModelIndex index = static_cast<HbDataFormModel*>(q->model())->indexFromItem(modelItem);
if(modelItem){
- HbDataFormViewItem *viewItem =static_cast<HbDataFormViewItem*>( q->itemByIndex(index) );
- if(viewItem){
- HbWidget *contentWidget = viewItem->dataItemContentWidget();
- // Make connection
- if(contentWidget){
- QObject::connect(contentWidget, signal.toAscii().data(),
+ HbDataFormViewItem *viewItem =static_cast<HbDataFormViewItem*>( q->itemByIndex(index) );
+ if(viewItem){
+ if(HbDataFormViewItemPrivate::d_ptr(viewItem)->mContentWidget) {
+ // Make connection
+ QObject::connect(HbDataFormViewItemPrivate::d_ptr(viewItem)->mContentWidget, signal.toAscii().data(),
reciever,slot.toAscii().data());
- }
+ }
}
}
}
@@ -303,7 +303,7 @@
QModelIndex index = static_cast<HbDataFormModel*>(q->model())->indexFromItem(item);
HbDataFormViewItem *viewItem = static_cast<HbDataFormViewItem*> (q->itemByIndex(index));
if(viewItem){
- HbWidget *contentWidget = viewItem->dataItemContentWidget();
+ HbWidget *contentWidget = HbDataFormViewItemPrivate::d_ptr(viewItem)->mContentWidget;
// disconnect signal and remove signal from list
for(int i = 0;i<signalList.count();) {
ItemSignal signalItem = signalList.takeAt(i);
@@ -330,7 +330,7 @@
QModelIndex index = static_cast<HbDataFormModel*>(q->model())->indexFromItem(modelItem);
HbDataFormViewItem *viewItem =static_cast<HbDataFormViewItem*>( q->itemByIndex(index));
if(viewItem){
- HbWidget *contentWidget = viewItem->dataItemContentWidget();
+ HbWidget *contentWidget = HbDataFormViewItemPrivate::d_ptr(viewItem)->mContentWidget;
// disconnect signal and remove signal from list
for(int i = 0;i<signalList.count(); ) {
ItemSignal signalItem = signalList.takeAt(i);
@@ -344,3 +344,9 @@
}
}
+void HbDataFormPrivate::emitActivated(const QModelIndex &modelIndex)
+{
+ Q_Q( HbDataForm);
+ emit q->activated(modelIndex);
+}
+
--- a/src/hbwidgets/dataform/hbdataform_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/dataform/hbdataform_p.h Thu May 27 13:10:59 2010 +0300
@@ -62,6 +62,7 @@
void addFormPage(const QString& page);
void removeFormPage(const QString& page);
void _q_page_changed(int index);
+
void _q_item_displayed(const QModelIndex &index);
void makeConnection(QModelIndex index);
void connectNow(HbDataFormModelItem * modelItem, QString signal,
@@ -73,6 +74,7 @@
void removeAllConnection();
void removeAllConnection(HbDataFormModelItem *item);
inline HbTreeModelIterator *treeModelIterator() const;
+ void emitActivated(const QModelIndex &modelIndex);
public:
HbDataFormHeadingWidget* mHeadingWidget;
--- a/src/hbwidgets/dataform/hbdataformmodel.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/dataform/hbdataformmodel.cpp Thu May 27 13:10:59 2010 +0300
@@ -123,11 +123,20 @@
HbDataFormModel is derived from QAbstractItemModel. So applications can use,
QAbstractItemModel API's to create their datamodel. HbDataFormModel also provides
convenience API's specific to HbDataForm. These convinience API's are useful in creating
- form page, group, group page and data item.
+ FormPageItem, GroupItem, GroupPageItem and data item.
A HbDataForm can be used to display the contents of the model.
- HbDataFormModel also has Apis to return modelindex of the items and vice-versa.
+ HbDataFormModel also has APIs to return modelindex of the items and vice-versa.
So applications can individually modify the items data and set it to the HbDataForm.
+
+ The signals emitted by HbDataFormModel
+ \li dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) emitted when the
+ HbDataFormModel is updated \atopLeft and \abottomRight will be same since every node has only one column.
+ User can connect to this signal and can fetch the instance of HbDataFormViewItem from HbDataForm
+ using the API dataFormViewItem(const QModelIndex &index) or user can fetch HbDataFormModelItem using API
+ itemFromIndex(const QModelIndex &index) in HbDataFormModel .When user updates model using
+ setContentWidgetData API provided in HbDataFormModelItem class, then DataForm takes care of updating the
+ corresponding item's visualization.
*/
/*!
@@ -142,6 +151,9 @@
HbDataFormModelItemPrivate::d_ptr(d->mRoot)->setModel(this);
}
+/*!
+ Destructor.
+*/
HbDataFormModel::~HbDataFormModel()
{
Q_D(HbDataFormModel);
@@ -152,7 +164,7 @@
/*!
@beta
- Appends FormPageItem and return pointer to newly created HbDataFormModelItem.
+ Appends FormPageItem and returns pointer to newly created HbDataFormModelItem.
The parent of FormPageItem is always model's root item. The DataItemType is set
as FormPageItem.
@@ -239,7 +251,7 @@
This is a convenience API. If user wants then he can create HbDataFormModelItem
individually and then add that item in model using this API.
If the \a data is of FormpageItemtype then parent is not considered. FormPage Items are always added
- to rootItem. Also GroupPage Item has to be inserted in GroupItem.
+ to rootItem. Also GroupPageItem has to be inserted only in GroupItem.
\a data Child item to be inserted.
\a parent Parent of DataFormViewItem
@@ -418,7 +430,7 @@
}
/*!
- \reimp
+ \reimp
*/
bool HbDataFormModel::removeRows(int row, int count, const QModelIndex &index)
{
@@ -432,7 +444,7 @@
}
/*!
- \reimp
+ \reimp
Column value should be 0 as DataForm has only one column.If the value is not 0
function returns invalid index.
If index is not valid then rootItem's index is considered.
@@ -626,7 +638,8 @@
return QModelIndex();
}
-/*! @beta
+/*!
+ @beta
Returns the HbDataFormModelItem at given \a row and with given parent /a index.
*/
--- a/src/hbwidgets/dataform/hbdataformmodelitem.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/dataform/hbdataformmodelitem.cpp Thu May 27 13:10:59 2010 +0300
@@ -63,7 +63,12 @@
}
}
-
+void HbDataFormModelItemPrivate::setContentWidgetData(
+ const QString& propertyName ,const QVariant &value)
+{
+ mProperties.remove(propertyName);
+ mProperties.insert(propertyName,value);
+}
QAbstractItemModel* HbDataFormModelItemPrivate::model() const
{
return mModel;
@@ -82,7 +87,7 @@
- ringtone_general
- unknowncaller_ringtone_general,
- Then sample code to create above model and data it to dataForm would be,
+ Then sample code to create above model and data it to data form would be,
\code
HbDataForm* form = new HbDataForm();
@@ -104,20 +109,20 @@
/*!
\enum HbDataFormModelItem::Roles
- This enum defines the Roles supported by dataForm.Any data from application
+ This enum defines the Roles supported by dataForm. Any data from application
can be added through these Roles.
*/
/*!
\var HbDataFormModelItem::LabelRole
- LabelRole: This Role is used for data label of the DataFormViewItem
+ LabelRole: This Role is used for data item label/heading of HbDataFormViewItem.
*/
/*!
\var HbDataFormModelItem::ItemTypeRole
- ItemTypeRole: This Role is used for data itemType of the HbDataFormModelItem
+ ItemTypeRole: This Role is used for data item type of the HbDataFormModelItem
*/
@@ -135,13 +140,6 @@
*/
/*!
- \var HbDataFormModelItem::DescriptionRole
- DescriptionRole: This Role will add a description text in model item visualization. This role
- is valid only for GroupItem and data items ( > GroupPageItem ).
-
- */
-
-/*!
\enum HbDataFormModelItem::DataItemType
This enum defines itemtypes supported in dataform.
@@ -157,7 +155,7 @@
/*!
\var HbDataFormModelItem::GroupItem
- GroupItem is used for grouping diffrent group pages or grouping data items under one group
+ GroupItem is used for grouping different group pages or grouping data items under one group
heading.
*/
@@ -176,13 +174,6 @@
*/
/*!
-
- \var HbDataFormModelItem::VolumeSliderItem
- VolumeSliderItem: This itemType is for volume slider type of data item
-
- */
-
-/*!
\var HbDataFormModelItem::CheckBoxItem
CheckBoxItem: This itemType is for check box type of data item
@@ -192,8 +183,8 @@
\var HbDataFormModelItem::TextItem
TextItem: This itemType is for text type of data item
The TextItem by default has maximum 4 rows.
- Application can configure thisvalue using HbLineEdit Property maxRows.
- This Property Value has to be set using SetContentWidgetData API.
+ Application can configure this value using HbLineEdit Property maxRows.
+ This Property Value has to be set using setContentWidgetData() API.
*/
@@ -249,14 +240,14 @@
RadioButtonListItem will appear in three display modes
- automatic : radioButtonList item appear as embedded( inline) if it contains less than four items and
+ - Automatic : radioButtonList item appear as embedded( inline) if it contains less than four items and
if more than three items then selected items are displayed as text on a PushButton and when pushbutton
clicked it lunches popup. Automatic mode is set as the default mode.
- embedded : Application can set these items as always embedded(inline) by setting the property "displayMode"
+ - Embedded : Application can set these items as always embedded(inline) by setting the property "displayMode"
with value of property as "embedded"
- popup : Application can set these items as always popup by setting the property "displayMode"
+ - Popup : Application can set these items as always popup by setting the property "displayMode"
with value of property as "popup"
HbDataFormModelItem *radioItem = model->appendDataItem(HbDataFormModelItem::RadioButtonListItem,
QString("Caller Tone"));
@@ -272,14 +263,14 @@
MultiSelectionListItem will appear in three display modes
- automatic : radioButtonList item appear as embedded( inline) if it contains less than four items and
+ - Automatic : radioButtonList item appear as embedded( inline) if it contains less than four items and
if more than three items then selected items are displayed as text on a PushButton and when pushbutton
clicked it lunches popup. Automatic mode is set as the default mode.
- embedded : Application can set these items as always embedded(inline) by setting the property "displayMode"
+ - Embedded : Application can set these items as always embedded(inline) by setting the property "displayMode"
with value of property as "embedded"
- popup : Application can set these items as always popup by setting the property "displayMode"
+ - Popup : Application can set these items as always popup by setting the property "displayMode"
with value of property as "popup"
HbDataFormModelItem *radioItem = model->appendDataItem(HbDataFormModelItem::MultiSelectionListItem,
QString("Caller Tone"));
@@ -367,6 +358,7 @@
/*!
@beta
+
Adds the given \a child to the children list of current item.
\sa insertChild, insertChildren
@@ -416,6 +408,7 @@
/*!
@beta
+
Inserts the given list of \a items starting from the given \a row.
\sa insertChild, appendChild
@@ -443,6 +436,7 @@
/*!
@beta
+
Removes the child item at the given \a index. The item at \a index is
deleted.
@@ -450,30 +444,35 @@
*/
void HbDataFormModelItem::removeChild(int index)
{
+ if( ( index < 0 ) || ( index >= childCount() ) ) {
+ return;
+ }
Q_D(HbDataFormModelItem);
-
HbDataFormModel* model = static_cast<HbDataFormModel*>(d->mModel);
- if(model) {
+
+ if(model)
model->d_func()->rowsAboutToBeRemoved(this, index, index);
- HbDataFormModelItem *item = d->mChildItems.takeAt(index);
- if ( item ) {
+
+ HbDataFormModelItem *item = d->mChildItems.at(index);
+ if( item ) {
+ int childCount = item->childCount();
+ for ( int childIndex = 0; childIndex <= childCount ;childIndex++) {
+ item->removeChild(0);
+ }
+
+ HbDataFormModelItem *item = d->mChildItems.takeAt(index);
delete item;
item = 0;
- }
+ }
+
+ if(model)
model->d_func()->rowsRemoved();
- }
- else {
- HbDataFormModelItem *item = d->mChildItems.takeAt(index);
- if ( item ) {
- delete item;
- item = 0;
- }
- }
-
+
}
/*!
@beta
+
Removes the given no of \a count of childitems from the given \a startindex. The
items are deleted.
@@ -481,22 +480,37 @@
*/
void HbDataFormModelItem::removeChildren(int startIndex, int count)
{
- Q_D(HbDataFormModelItem);
+ if( ( startIndex < 0 ) || ( startIndex > childCount() ) || ( count <= 0 )) {
+ return;
+ }
+
+ if( startIndex + count > childCount() ) {
+ return;
+ }
- HbDataFormModel* model = static_cast<HbDataFormModel*>(d->mModel);
- model->d_func()->rowsAboutToBeRemoved(this, startIndex, startIndex + count -1);
- for(int index = 0; index < count ;index++) {
+ Q_D(HbDataFormModelItem);
+
+ HbDataFormModel* model = static_cast<HbDataFormModel*>(d->mModel);
+ if( model ) {
+ model->d_func()->rowsAboutToBeRemoved(this, startIndex, startIndex + count -1);
+ }
+
+ for(int index = 0; index < count ;index++) {
HbDataFormModelItem *item = d->mChildItems.takeAt(0);
if ( item ) {
delete item;
item = 0;
}
- }
- model->d_func()->rowsRemoved();
+ }
+
+ if( model ) {
+ model->d_func()->rowsRemoved();
+ }
}
/*!
@beta
+
Returns the child item at the given \a index.
Returns 0 if \a index passed in greater than count or less than 0.
@@ -513,6 +527,7 @@
/*!
@beta
+
Returns index of the given \a child.
\sa childAt
@@ -536,6 +551,7 @@
/*!
@beta
+
Returns the data for the given \a role. Returns empty string if DescriptionRole is queried for
items other then GroupItem and data item.
*/
@@ -565,6 +581,7 @@
/*!
@beta
+
Sets the given \a value of variant to the given \a role.
*/
void HbDataFormModelItem::setData(int role ,const QVariant &value)
@@ -620,10 +637,9 @@
const QString& propertyName ,const QVariant &value)
{
Q_D(HbDataFormModelItem);
- d->mProperties.remove(propertyName);
- d->mProperties.insert(propertyName,value);
+ d->setContentWidgetData(propertyName, value);
+
d->mDirtyProperty = propertyName;
-
HbDataFormModel *data_model = static_cast<HbDataFormModel*>(d->mModel);
if(data_model) {
QModelIndex index = data_model->indexFromItem(this);
@@ -633,6 +649,7 @@
/*!
@beta
+
Returns the property \a value for the given \a propertyName.
*/
QVariant HbDataFormModelItem::contentWidgetData(const QString& propertyName ) const
@@ -640,8 +657,10 @@
Q_D(const HbDataFormModelItem);
return d->mProperties.value(propertyName);
}
+
/*!
@beta
+
Returns all properties with values which was set in HbDataFormModelItem.
*/
QHash<QString, QVariant> HbDataFormModelItem::contentWidgetData() const
@@ -649,8 +668,10 @@
Q_D(const HbDataFormModelItem);
return d->mProperties;
}
+
/*!
@beta
+
Sets \a parent as a parent to this item.
It only sets the parent pointer. It doesnt put the item in the
hierarchy.
@@ -663,6 +684,7 @@
/*!
@beta
+
Returns the parent of the this data item.
*/
HbDataFormModelItem* HbDataFormModelItem::parent() const
@@ -673,6 +695,7 @@
/*!
@beta
+
Sets \a type as a DataItemType for this data item.
*/
void HbDataFormModelItem::setType(HbDataFormModelItem::DataItemType type)
@@ -682,6 +705,7 @@
/*!
@beta
+
Returns the DataItemType of the this item.
*/
HbDataFormModelItem::DataItemType HbDataFormModelItem::type() const
@@ -691,6 +715,7 @@
/*!
@beta
+
Sets the \a label to the item. This is valid only if the type is other than FormPageItem,
GroupItem and GroupPageItem.
*/
@@ -701,6 +726,7 @@
/*!
@beta
+
Returns the label of the item.
*/
QString HbDataFormModelItem::label() const
@@ -710,6 +736,7 @@
/*!
@beta
+
Sets the \a icon to the item. This is valid only if the type is other than FormPageItem,
GroupItem and GroupPageItem.
*/
@@ -720,6 +747,7 @@
/*!
@beta
+
Returns the icon of the item.
*/
QString HbDataFormModelItem::icon() const
@@ -727,14 +755,9 @@
return data(Qt::DecorationRole).toString();
}
-/*
-QHash<QString, QVariant> HbDataFormModelItem::getContentWidgetValues()
-{
- Q_D(const HbDataFormModelItem);
- return d->mProperties;
-}*/
+/*!
+ @beta
-/*!
Sets whether the item is enabled.
If enabled is true, the item is \a enabled, meaning that the user can interact with the item
@@ -759,7 +782,8 @@
}
/*!
- Returns true if the item is enabled; otherwise returns false.
+ @beta
+ Returns true if the item is enabled otherwise returns false.
*/
bool HbDataFormModelItem::isEnabled() const
{
@@ -768,6 +792,7 @@
}
/*!
+ @beta
Returns item flags for this item.
*/
Qt::ItemFlags HbDataFormModelItem::flags() const
@@ -777,7 +802,7 @@
}
/*!
- @proto
+ @beta
Sets the \a description to the item. This is valid only if the type is GroupItem or
DataItem. Its not valid for GroupPageItem and FormPageItem.
*/
@@ -787,7 +812,7 @@
}
/*!
- @proto
+ @beta
Returns the description of the item.
*/
QString HbDataFormModelItem::description() const
--- a/src/hbwidgets/dataform/hbdataformmodelitem_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/dataform/hbdataformmodelitem_p.h Thu May 27 13:10:59 2010 +0300
@@ -41,6 +41,7 @@
void setModel(const QAbstractItemModel *model);
QAbstractItemModel* model() const;
+ void setContentWidgetData(const QString& propertyName ,const QVariant &value);
public:
--- a/src/hbwidgets/dataform/hbdataformviewitem.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/dataform/hbdataformviewitem.cpp Thu May 27 13:10:59 2010 +0300
@@ -43,8 +43,9 @@
/*!
@beta
@hbwidgets
- \class HbDataFormViewItem represents an item/view in HbDataForm. Each HbDataFormModelItem
- added inside a model is represented using HbDataFormViewItem instance.
+ \class HbDataFormViewItem
+ \brief HbDataFormViewItem represents an item view in HbDataForm corresponding to model item.
+ Each HbDataFormModelItem added inside model is represented using HbDataFormViewItem instance.
HbDataFormViewItem have different visualization based upon the
HbDataFormModelItem::DataItemType:
@@ -60,10 +61,11 @@
creating HbDataFormModelItem, is added in a group combo box. User can switch between
different group page using this combo.
- DataItems: Any type other then FormPageItem, GroupItem and GroupPageItem is treated as
- a data item. Data item contains label and the content widget. Data item content
- widget can be set using HbDataFormModelItem::ItemTypeRole and label of data items
- can be set using HbDataFormModelItem::LabelRole. Data items can not have any
- children. They are always placed at the leaf.
+ a data item. Data item can contain label, description, icon and content widget. Data items
+ can not have any children. They are always placed at the leaf. Data item content widget
+ can be set using HbDataFormModelItem::ItemTypeRole, label of data items can be set using
+ HbDataFormModelItem::LabelRole, description of data item can be set using
+ HbDataFormModelItem::DescriptionRole.
If HbDataFormViewItem represents a GroupItem then it can be expanded and collapsed.
If group is expanded then all the child items are shown.
@@ -159,7 +161,7 @@
/*!
\reimp
- Creates HbDataFormViewItem. This function is called form HbAbstractItemContainer
+ Creates HbDataFormViewItem. This function is called from HbAbstractItemContainer
when model is getting parsed for creating items.
*/
@@ -169,13 +171,12 @@
}
/*!
\reimp
- Returns true if \a model index is supported by HbDataFormViewItem, otherwise returns false.
- This function is called for every item on the prototype list (, if several prototypes exist)
- until item is found, which can create item for \a index. The prototype list is gone
- through from end to the beginning.
- \sa HbAbstractItemView::setItemPrototype(HbAbstractViewItem *prototype), HbAbstractItemView::setItemPrototype(const QList<HbAbstractViewItem *> &prototypes)
+ Returns true if \a model index is supported by HbDataFormViewItem prototype, otherwise returns false.
+ This function is called for every item on the prototype list (if several prototypes exist)
+ until item is found, which can create view item for \a index.
-
+ \sa HbAbstractItemView::setItemPrototype(HbAbstractViewItem *prototype)
+ \sa HbAbstractItemView::setItemPrototype(const QList<HbAbstractViewItem *> &prototypes)
*/
bool HbDataFormViewItem::canSetModelIndex(const QModelIndex &index) const
{
@@ -194,7 +195,7 @@
/*!
\reimp
- Updates child graphics items to represent current state and content. In case when
+ Updates child graphics items to represent current state and content stored in model. In case when
HbDataFormViewItem represents data item and DataItemType is set to custom item, then
createCustomWidget is called. User can override createCustomWidget and can pass his own
custom widget.
@@ -276,10 +277,12 @@
}
/*!
- @alpha
+ @beta
+
Restores the data from the model and assign to the widget.
- The property for restoring and saving the data need to be initialized when the
- data item is created.
+ The content widget property for restoring and saving the data need to be initialized when the
+ data item is created. If model item type is custom, then application developer has to override
+ this API in order to get notification when data is changed in model.
\sa save
*/
@@ -330,10 +333,12 @@
}
/*!
- @alpha
- Saves the current data of the content widget in data item to the model .
+ @beta
+
+ Saves the current data of the content widget in data item to the model.
The property for restoring and saving the data need to be initialized when the
- data item is created.
+ data item is created. If model item type is custom, then application developer has to override
+ this API in order to save the content widget value in model.
\sa restore
*/
@@ -356,11 +361,11 @@
}
/*!
- @alpha
+ @beta
This is a virtual function which by default returns NULL. This function must be overridden
in case user wants to create a data item of type custom item. The user is supposed to pass
- the widget which is wants to display in data item.
+ the widget which he wants to display in data item.
*/
HbWidget* HbDataFormViewItem::createCustomWidget()
{
@@ -369,9 +374,10 @@
/*!
\reimp
- Sets the item to either collapse or expanded, depending on the value of \a expanded.
+ Sets the item to either collapse or expanded state, depending on the value of \a expanded.
The function calls setModelIndexes which inturn will make the child items visible/invisible
- accordingly. This API is valid if HbDataFormViewItem represents a GroupItem.
+ accordingly. This API is valid only if HbDataFormViewItem represents a FormPageItem, GroupItem
+ or GroupPageItem.
\sa isExpanded
*/
@@ -406,13 +412,14 @@
}
/*!
- This API is valid only if HbDataFormViewItem represents a data item. Returns the
- content widget of data item. For example if data item is of type SliderItem then
- this API will return the instance of HbSlider.
- If user wants to connect to some signals of content widget in data item then this
- API can be used to fetch the instance of the widget. It will return the instance only
- if data item is visible. User can connect to HbDataForm::activated() signal
- and when this item is visible then he can query the content widget using this API.
+ @beta
+
+ Returns the content widget of data item. For example if data item is of type SliderItem
+ then this API will return the instance of HbSlider. If user wants to connect to some
+ signals of content widget in data item then this API can be used to fetch the instance
+ of the widget. It will return the instance only if data item is visible. User can connect
+ to HbDataForm::itemShown() signal and when this item is visible then he can query the
+ content widget using this API.
*/
HbWidget* HbDataFormViewItem::dataItemContentWidget()const
{
@@ -453,6 +460,9 @@
Q_UNUSED(animate);
}
+/*!
+ \reimp
+*/
void HbDataFormViewItem::initStyleOption(HbStyleOptionDataFormViewItem *option) const
{
Q_D( const HbDataFormViewItem );
@@ -463,6 +473,9 @@
option->description = d->mDescription;
}
+/*!
+ \reimp
+*/
void HbDataFormViewItem::showEvent(QShowEvent * event)
{
Q_D( const HbDataFormViewItem );
--- a/src/hbwidgets/dataform/hbdataformviewitem.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/dataform/hbdataformviewitem.h Thu May 27 13:10:59 2010 +0300
@@ -41,6 +41,8 @@
public:
+
+
explicit HbDataFormViewItem(QGraphicsItem *parent = 0);
virtual ~HbDataFormViewItem();
@@ -55,7 +57,7 @@
void setExpanded(bool expanded);
bool isExpanded() const;
-
+
HbWidget* dataItemContentWidget()const;
public slots:
--- a/src/hbwidgets/dataform/hbdataformviewitem_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/dataform/hbdataformviewitem_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -116,10 +116,12 @@
QString additionalTxt =
mModelItem->contentWidgetData( QString("additionalText") ).toString();
QString txt = mModelItem->contentWidgetData(QString("text")).toString();
+ HbDataFormModelItemPrivate *modelItem_priv = HbDataFormModelItemPrivate::d_ptr(mModelItem);
+ // Dont want to emit datachanged for this property so calling private function
+ modelItem_priv->setContentWidgetData( QString("additionalText"), txt );
+ // will emit datachanged
mModelItem->setContentWidgetData( QString("text"), additionalTxt );
emit valueChanged(mViewItem->modelIndex(), additionalTxt);
- // HbPushButton will not be updated with Additional Text when modelChanged signal is emitted
- mModelItem->setContentWidgetData( QString("additionalText"), txt );
}
/*
@@ -424,7 +426,7 @@
int selectionindex = mSelectedItems.at( i ).toInt();
if( selectionindex< mItems.count()) {
if( i > 0) {// dont add ; in the starting of the string
- newValue.append( ";" );
+ newValue.append( "," );
}
newValue.append( mItems.at( mSelectedItems.at( i ).toInt() ) );
}
@@ -551,6 +553,10 @@
{
if(!mSelectionDialog ) {
mSelectionDialog = new HbSelectionDialog();
+ QObject::connect(mSelectionDialog, SIGNAL(aboutToShow()),this ,SIGNAL(aboutToShow()));
+ QObject::connect(mSelectionDialog, SIGNAL(aboutToHide()),this ,SIGNAL(aboutToHide()));
+ QObject::connect(mSelectionDialog, SIGNAL(aboutToClose()),this ,SIGNAL(aboutToClose()));
+ QObject::connect(mSelectionDialog, SIGNAL(finished(HbAction*)),this ,SIGNAL(finished(HbAction*)));
mSelectionDialog->setSelectionMode( HbAbstractItemView::MultiSelection );
mSelectionDialog->setStringItems( mItems, -1 );
mSelectionDialog->setSelectedItems( mSelectedItems );
@@ -575,7 +581,7 @@
mSelectedItems.append(selection.at(i));
newValue.append(mSelectionDialog->stringItems().at(selection.at(i)));
if( i != selection.count() - 1 ) {
- newValue.append( ";" );
+ newValue.append( "," );
}
}
mButton->setText( newValue );
@@ -916,11 +922,10 @@
void HbDataFormViewItemPrivate::createContentWidget()
{
Q_Q(HbDataFormViewItem);
-
+
QObject::connect(q, SIGNAL(itemShown(const QModelIndex&)),
- mSharedData->mItemView, SIGNAL(activated(const QModelIndex&)));
- QObject::connect(q, SIGNAL(itemShown(const QModelIndex&)),
- mSharedData->mItemView, SIGNAL(itemShown(const QModelIndex&)));
+ mSharedData->mItemView, SIGNAL(itemShown(const QModelIndex&)));
+
switch( mType ) {
// following are standard data item
case HbDataFormModelItem::SliderItem:
--- a/src/hbwidgets/dataform/hbdataformviewitem_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/dataform/hbdataformviewitem_p.h Thu May 27 13:10:59 2010 +0300
@@ -40,6 +40,7 @@
class HbListWidget;
class QGraphicsLinearLayout;
class QItemSelection;
+class HbAction;
QT_FORWARD_DECLARE_CLASS(QGraphicsLinearLayout)
@@ -135,6 +136,10 @@
void makeSelection();
signals:
void valueChanged(QPersistentModelIndex, QVariant);
+ void aboutToShow();
+ void aboutToHide();
+ void aboutToClose();
+ void finished(HbAction*);
private:
--- a/src/hbwidgets/dataform/hbdatagroup_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/dataform/hbdatagroup_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -61,6 +61,7 @@
void HbDataGroupPrivate::expand( bool expanded )
{
+ Q_Q(HbDataGroup);
HbAbstractItemContainer *container = qobject_cast<HbAbstractItemContainer *>(
static_cast<QGraphicsWidget *>( mSharedData->mItemView->contentWidget( ) ) );
HbDataFormModelItem::DataItemType itemType = static_cast<HbDataFormModelItem::DataItemType>(
@@ -115,6 +116,8 @@
}
//get the group page index
QModelIndex groupPageIndex = mIndex.child(activePage,0);
+ q->emitActivated(groupPageIndex);
+
if(groupPageIndex.isValid()) {
container->setItemTransientStateValue(groupPageIndex, "expanded", true);
}
@@ -265,7 +268,14 @@
Q_D(HbDataGroup);
HB_SD(HbAbstractViewItem);
HbAbstractItemContainer *container = 0;
-
+ HbDataFormModelItem::DataItemType itemType =
+ static_cast<HbDataFormModelItem::DataItemType>(
+ d->mIndex.data(HbDataFormModelItem::ItemTypeRole).toInt());
+ //emit activated signal for newly expanded group page
+ if(expanded && (itemType == HbDataFormModelItem::GroupPageItem ||
+ itemType == HbDataFormModelItem::FormPageItem)) {
+ emitActivated(modelIndex());
+ }
if(d->mSharedData->mItemView) {
container = qobject_cast<HbAbstractItemContainer *>(
static_cast<QGraphicsWidget *>(d->mSharedData->mItemView->contentWidget()));
@@ -277,9 +287,6 @@
//if some one exlicitly calls setExpanded for data group then primitives needs to be
//updated.
- HbDataFormModelItem::DataItemType itemType =
- static_cast<HbDataFormModelItem::DataItemType>(
- d->mIndex.data(HbDataFormModelItem::ItemTypeRole).toInt());
if(itemType == HbDataFormModelItem::GroupItem){
if(d->mPageCombo) {
if(expanded) {
@@ -521,3 +528,10 @@
Q_UNUSED(animate);
}
+void HbDataGroup::emitActivated(const QModelIndex &index )const
+{
+ HbDataForm *form = static_cast<HbDataForm*>(itemView());
+ if(form) {
+ HbDataFormPrivate::d_ptr(form)->emitActivated(index);
+ }
+}
--- a/src/hbwidgets/dataform/hbdatagroup_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/dataform/hbdatagroup_p.h Thu May 27 13:10:59 2010 +0300
@@ -57,6 +57,7 @@
virtual void updateChildItems( );
virtual bool canSetModelIndex( const QModelIndex &index ) const;
void polish( HbStyleParameters& params );
+ void emitActivated(const QModelIndex &index)const;
public slots:
void updatePrimitives( );
--- a/src/hbwidgets/dataform/hbdatagroupheadingwidget_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/dataform/hbdatagroupheadingwidget_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -26,7 +26,8 @@
#include "hbdatagroupheadingwidget_p.h"
#include "hbdataformviewitem_p.h"
#include <hbstyleoptiondatagroupheadingwidget_p.h>
-#include <hbdatagroup_p.h>
+#include "hbdatagroup_p.h"
+#include "hbdatagroup_p_p.h"
#include <QGraphicsItem>
#include <hbwidgetfeedback.h>
@@ -43,8 +44,10 @@
mDescriptionItem(0),
mParent(0),
mExpanded(false),
- mDown(false)
+ mDown(false),
+ mLongPressed(false)
{
+
#ifdef HB_GESTURE_FW
grabGesture( Qt::TapGesture );
#endif
@@ -58,7 +61,8 @@
}
void HbDataGroupHeadingWidget::createPrimitives()
-{
+{
+ QObject::connect(mParent, SIGNAL(longPressed(const QPointF )), this, SLOT(longPressed(const QPointF )));
if(!mBackgroundItem) {
mBackgroundItem = style()->createPrimitive(HbStyle::P_DataGroup_background, this);
}
@@ -177,19 +181,22 @@
void HbDataGroupHeadingWidget::gestureEvent(QGestureEvent *event)
{
Hb::InteractionModifiers modifiers = 0;
-
+ if (event->gesture(Qt::TapGesture)) {
+ HbDataGroupPrivate::d_ptr(static_cast<HbDataGroup*>(mParent))->tapTriggered( event );
+ }
if (HbTapGesture *tap = qobject_cast<HbTapGesture *>(event->gesture(Qt::TapGesture))) {
switch(tap->state()) {
case Qt::GestureStarted:
{
mDown = true;
+ mLongPressed = false;
HbStyleOptionDataGroupHeadingWidget settingGroupOption;
initStyleOption(&settingGroupOption);
if(mBackgroundItem) {
- style()->updatePrimitive(
- mBackgroundItem, HbStyle::P_DataGroup_background, &settingGroupOption);
- }
+ style()->updatePrimitive(
+ mBackgroundItem, HbStyle::P_DataGroup_background, &settingGroupOption);
+ }
modifiers = Hb::ModifierExpandedItem;
HbWidgetFeedback::triggered(this, Hb::InstantPressed, modifiers);
break;
@@ -199,12 +206,13 @@
{
modifiers = 0;
- if(mDown && rect().contains(mapFromScene(event->mapToGraphicsScene(tap->position())))) {
+ if(mDown && !mLongPressed && rect().contains(mapFromScene(event->mapToGraphicsScene(tap->position())))) {
static_cast<HbDataGroup*>(mParent)->setExpanded(
!static_cast<HbDataGroup*>(mParent)->isExpanded());
modifiers |= Hb::ModifierExpandedItem;
- mDown = false;
}
+ mDown = false;
+
HbStyleOptionDataGroupHeadingWidget settingGroupOption;
initStyleOption(&settingGroupOption);
if(mBackgroundItem) {
@@ -235,5 +243,13 @@
break;
}
}
+
+}
+
+
+void HbDataGroupHeadingWidget::longPressed(const QPointF &position)
+{
+ Q_UNUSED(position);
+ mLongPressed = true;
}
#endif
--- a/src/hbwidgets/dataform/hbdatagroupheadingwidget_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/dataform/hbdatagroupheadingwidget_p.h Thu May 27 13:10:59 2010 +0300
@@ -51,6 +51,9 @@
enum { Type = HbPrivate::ItemType_DataGroupHeadingWidget };
int type() const { return Type; }
+public slots:
+ void longPressed(const QPointF &position);
+
#ifndef HB_GESTURE_FW
void mousePressEvent(QGraphicsSceneMouseEvent *event);
void mouseReleaseEvent( QGraphicsSceneMouseEvent * event );
@@ -70,6 +73,7 @@
bool mDown;
QString mHeading;
QString mDescription;
+ bool mLongPressed;
};
#endif // HBDATAGROUPHEADINGWIDGET_H
--- a/src/hbwidgets/devicedialogs/hbdevicemessagebox.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/devicedialogs/hbdevicemessagebox.cpp Thu May 27 13:10:59 2010 +0300
@@ -24,7 +24,6 @@
****************************************************************************/
#include <hbdevicedialog.h>
-#include <hbaction.h>
#include <hbdevicedialogtrace_p.h>
#include "hbdevicemessagebox.h"
#include "hbdevicemessagebox_p.h"
@@ -42,6 +41,7 @@
TRACE_ENTRY
for(int i = 0; i < NumActions; i++) {
mDefaultActions[i] = 0;
+ mActions[i].mAction = 0;
}
TRACE_EXIT
}
@@ -85,7 +85,9 @@
for(int i = 0; i < NumProperties; i++) {
mProperties[i].mFlags = NoFlags;
}
- clearActions();
+ for(int i = 0; i < NumActions; i++) {
+ clearAction(mActions[i]);
+ }
QString text;
q_ptr->setText(text);
@@ -93,39 +95,53 @@
q_ptr->setIconVisible(true);
q_ptr->setAnimationDefinition(text);
+ bool useActions[NumActions];
+ for(int i = 0; i < NumActions; i++) {
+ useActions[i] = false;
+ }
+
switch(mProperties[Type].mValue.toInt()) {
case HbMessageBox::MessageTypeInformation:
case HbMessageBox::MessageTypeWarning:
q_ptr->setDismissPolicy(HbPopup::TapAnywhere);
q_ptr->setTimeout(timeoutValue(HbPopup::StandardTimeout));
- // Use default primary button, secondary button is empty
- if (!mDefaultActions[AcceptButton]) {
- mDefaultActions[AcceptButton] = new HbAction(0);
- }
- mActions[AcceptButton].mAction = mDefaultActions[AcceptButton];
+ // Use default accept button, reject button is empty
+ useActions[AcceptButton] = true;
break;
case HbMessageBox::MessageTypeQuestion:
q_ptr->setTimeout(HbPopup::NoTimeout);
q_ptr->setDismissPolicy(HbPopup::NoDismiss);
- // Use default primary and secondary buttons
- for(int i = 0; i < NumActions; i++) {
- if (!mDefaultActions[i]) {
- mDefaultActions[i] = new HbAction(0);
- }
- mActions[i].mAction = mDefaultActions[i];
- }
+ // Use default accept and reject buttons
+ useActions[AcceptButton] = true;
+ useActions[RejectButton] = true;
break;
default:
Q_ASSERT(false);
}
+
+ for(int i = 0; i < NumActions; i++) {
+ if (useActions[i]) {
+ if (!mDefaultActions[i]) {
+ mDefaultActions[i] = new QAction(0);
+ }
+ mActions[i].mAction = mDefaultActions[i];
+ connect(mActions[i].mAction, SIGNAL(changed()), SLOT(actionChanged()));
+ }
+ }
}
void HbDeviceMessageBoxPrivate::setAction(ActionSelector select, QAction *action)
{
TRACE_ENTRY
Action &dialogAction = mActions[select];
+ bool saveTriggered = dialogAction.mTriggered;
+ clearAction(dialogAction);
+ dialogAction.mTriggered = saveTriggered;
dialogAction.mFlags = Modified;
dialogAction.mAction = action;
+ if (dialogAction.mAction) {
+ connect(dialogAction.mAction, SIGNAL(changed()), SLOT(actionChanged()));
+ }
TRACE_EXIT
}
@@ -216,14 +232,16 @@
return false;
}
-// Clear actions
-void HbDeviceMessageBoxPrivate::clearActions()
+// Clear action
+void HbDeviceMessageBoxPrivate::clearAction(Action &action)
{
- for(int i = 0; i < NumActions; i++) {
- mActions[i].mAction = 0;
- mActions[i].mFlags = NoFlags;
- mActions[i].mTriggered = false;
+ if (action.mAction) {
+ disconnect(action.mAction, SIGNAL(changed()), this, SLOT(actionChanged()));
}
+ action.mAction = 0;
+ action.mFlags = NoFlags;
+ action.mTriggered = false;
+
}
void HbDeviceMessageBoxPrivate::close()
@@ -264,6 +282,18 @@
TRACE_EXIT
}
+void HbDeviceMessageBoxPrivate::actionChanged()
+{
+ QObject *action = sender();
+ for(int i = 0; i < NumActions; i++) {
+ if (mActions[i].mAction == action) {
+ mActions[i].mFlags = Modified;
+ scheduleUpdateEvent();
+ break;
+ }
+ }
+}
+
void HbDeviceMessageBoxPrivate::setProperty(PropertySelector propertySelector, int value)
{
Property &property = mProperties[propertySelector];
@@ -385,6 +415,11 @@
QString fileName("note_warning");
messageBox.setIconName(fileName);
+ // Change button text
+ messageBox.action(HbDeviceMessageBox::AcceptButtonRole)->setText("Ok");
+ messageBox.action(HbDeviceMessageBox::RejectButtonRole)->setText("Cancel");
+
+ // Set new actions (buttons)
QAction acceptAction("Ok", 0);
messageBox.setAction(&acceptAction, HbDeviceMessageBox::AcceptButtonRole);
QAction rejectAction("Cancel", 0);
--- a/src/hbwidgets/devicedialogs/hbdevicemessagebox.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/devicedialogs/hbdevicemessagebox.h Thu May 27 13:10:59 2010 +0300
@@ -31,7 +31,6 @@
#include <hbmessagebox.h>
class HbDeviceMessageBoxPrivate;
-class HbAction;
class QAction;
class HB_WIDGETS_EXPORT HbDeviceMessageBox : public QObject
--- a/src/hbwidgets/devicedialogs/hbdevicemessagebox_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/devicedialogs/hbdevicemessagebox_p.h Thu May 27 13:10:59 2010 +0300
@@ -81,7 +81,7 @@
void setAction(ActionSelector select, QAction *action);
void sendToServer(bool show = false);
bool propertiesModified() const;
- void clearActions();
+ void clearAction(Action &action);
void setProperty(PropertySelector propertySelector, int value);
void setProperty(PropertySelector propertySelector, const QString &value);
@@ -93,6 +93,7 @@
public slots:
void triggerAction(QVariantMap data);
+ void actionChanged();
public: // data
HbDeviceMessageBox *q_ptr;
--- a/src/hbwidgets/editors/hbabstractedit.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/editors/hbabstractedit.cpp Thu May 27 13:10:59 2010 +0300
@@ -1013,10 +1013,10 @@
if (source->hasFormat(QLatin1String("application/x-qrichtext"))) {
QString richtext = QString::fromUtf8(source->data(QLatin1String("application/x-qrichtext")));
richtext.prepend(QLatin1String("<meta name=\"qrichtext\" content=\"1\" />"));
- fragment = QTextDocumentFragment::fromHtml(filterInputText(richtext), d->doc);
+ fragment = QTextDocumentFragment::fromHtml(richtext, d->doc);
hasData = true;
} else if (source->hasHtml()) {
- fragment = QTextDocumentFragment::fromHtml(filterInputText(source->html()), d->doc);
+ fragment = QTextDocumentFragment::fromHtml(source->html(), d->doc);
hasData = true;
} else
#endif //QT_NO_TEXTHTMLPARSER
@@ -1716,16 +1716,8 @@
*/
QString HbAbstractEdit::filterInputText(const QString &text)
{
- HbEditorInterface editorInterface(this);
- HbInputFilter *inputFilter = editorInterface.filter();
- if (!text.isEmpty() && inputFilter) {
- QString filteredText;
- foreach(QChar c, text) {
- if (inputFilter->filter(c)) {
- filteredText.append(c);
- }
- }
- return filteredText;
- }
- return text;
+ Q_D(HbAbstractEdit);
+ QString filteredText(text);
+ d->filterInputText(filteredText);
+ return filteredText;
}
--- a/src/hbwidgets/editors/hbabstractedit_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/editors/hbabstractedit_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -1172,6 +1172,22 @@
}
}
+void HbAbstractEditPrivate::filterInputText(QString &text) const
+{
+ Q_Q(const HbAbstractEdit);
+ HbEditorInterface editorInterface(const_cast<HbAbstractEdit*>(q));
+ HbInputFilter *inputFilter = editorInterface.filter();
+
+ if (!text.isEmpty() && inputFilter) {
+ for(int i(text.length() - 1); i>=0; --i) {
+ if (!inputFilter->filter(text.at(i))) {
+ text.remove(i,1);
+ }
+ }
+ }
+}
+
+
Qt::Alignment HbAbstractEditPrivate::alignmentFromString(const QString &text)
{
Qt::Alignment align(0);
--- a/src/hbwidgets/editors/hbabstractedit_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/editors/hbabstractedit_p.h Thu May 27 13:10:59 2010 +0300
@@ -150,6 +150,7 @@
const QStyleOptionGraphicsItem &option) const;
void updatePlaceholderDocProperties();
+ void filterInputText(QString &text) const;
void _q_updateRequest(QRectF rect);
void _q_updateBlock(QTextBlock block);
--- a/src/hbwidgets/editors/hblineedit.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/editors/hblineedit.cpp Thu May 27 13:10:59 2010 +0300
@@ -594,7 +594,14 @@
*/
bool HbLineEdit::canInsertFromMimeData(const QMimeData *source) const
{
- return source->hasText() && !source->text().isEmpty();
+ Q_D(const HbLineEdit);
+ if(source->hasText() && !source->text().isEmpty()) {
+ QString text(source->text());
+ d->filterInputText(text);
+ return !text.isEmpty();
+ } else {
+ return false;
+ }
}
/*!
--- a/src/hbwidgets/itemviews/hbabstractitemview.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/itemviews/hbabstractitemview.cpp Thu May 27 13:10:59 2010 +0300
@@ -739,11 +739,7 @@
if (item) {
item->setCheckState(Qt::Checked);
if (!d->mClearingSelection) {
- Hb::InteractionModifiers modifiers = 0;
- if (d->mIsScrolling) {
- modifiers |= Hb::ModifierScrolling;
- }
- HbWidgetFeedback::triggered(item, Hb::InstantSelectionChanged, modifiers);
+ HbWidgetFeedback::triggered(item, Hb::InstantSelectionChanged);
}
}
d->mContainer->setItemTransientStateValue(selectedIndexes.at(i),
--- a/src/hbwidgets/itemviews/hbabstractviewitem.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/itemviews/hbabstractviewitem.cpp Thu May 27 13:10:59 2010 +0300
@@ -41,6 +41,7 @@
#include <QVariant>
#include <QCoreApplication>
#include <QEvent>
+#include <QTimer>
#include <QDebug>
#include <QGesture>
@@ -48,6 +49,7 @@
const QString KDefaultLayoutOption = "default";
const int HbAbstractViewItemShared::ViewItemDeferredDeleteEvent = QEvent::registerEventType();
+const int HbViewItemPressDelay = 50;
/*!
@alpha
@@ -127,6 +129,12 @@
\snippet{ultimatecodesnippet/customlistviewitem.cpp,1}
*/
+void HbAbstractViewItemShared::pressStateChangeTimerTriggered()
+{
+ HbWidgetFeedback::triggered(mPressedItem, Hb::InstantPressed, 0);
+ mPressedItem->pressStateChanged(true, mAnimatePress);
+}
+
void HbAbstractViewItemPrivate::init()
{
Q_Q(HbAbstractViewItem);
@@ -204,7 +212,6 @@
switch (gesture->state()) {
case Qt::GestureStarted: {
- HbWidgetFeedback::triggered(q, Hb::InstantPressed, 0);
setPressed(true, true);
emit q->pressed(position);
break;
@@ -277,10 +284,25 @@
if (pressed != mPressed) {
mPressed = pressed;
- q->pressStateChanged(mPressed, animate);
+
+ if (mSharedData->mPressStateChangeTimer) {
+ mSharedData->mPressStateChangeTimer->stop();
+ }
+
if (mPressed) {
+ if (!mSharedData->mPressStateChangeTimer) {
+ mSharedData->mPressStateChangeTimer = new QTimer(mSharedData.data());
+ mSharedData->mPressStateChangeTimer->setSingleShot(true);
+ QObject::connect(mSharedData->mPressStateChangeTimer, SIGNAL(timeout()), mSharedData.data(), SLOT(pressStateChangeTimerTriggered()));
+ }
+ mSharedData->mPressedItem = q;
+ mSharedData->mAnimatePress = animate;
+ mSharedData->mPressStateChangeTimer->start(HbViewItemPressDelay);
+
q->setProperty("state", "pressed");
} else {
+ q->pressStateChanged(mPressed, animate);
+
q->setProperty("state", "normal");
}
}
@@ -896,10 +918,10 @@
HbEffect::start(d->mFocusItem, sd->mItemType + QString("-focus"), "released", this, "_q_animationFinished");
} else {
HbEffect::cancel(this, "pressed");
- HbEffect::start(this, sd->mItemType, "released");
+ HbEffect::cancel(this, "released");
if (d->mFocusItem) {
HbEffect::cancel(d->mFocusItem, "pressed");
- HbEffect::start(d->mFocusItem, sd->mItemType + QString("-focus"), "released", this, "_q_animationFinished");
+ HbEffect::cancel(d->mFocusItem, "released");
QCoreApplication::postEvent(this, new QEvent((QEvent::Type)HbAbstractViewItemShared::ViewItemDeferredDeleteEvent));
}
}
--- a/src/hbwidgets/itemviews/hbabstractviewitem.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/itemviews/hbabstractviewitem.h Thu May 27 13:10:59 2010 +0300
@@ -37,6 +37,7 @@
QT_END_NAMESPACE
class HbAbstractViewItemPrivate;
+class HbAbstractViewItemShared;
class HbAbstractItemView;
class HbStyleOptionAbstractViewItem;
class HbStyleParameters;
@@ -116,6 +117,8 @@
private:
Q_DECLARE_PRIVATE_D( d_ptr, HbAbstractViewItem )
Q_PRIVATE_SLOT(d_func(), void _q_animationFinished(const HbEffect::EffectStatus &status))
+
+ friend class HbAbstractViewItemShared;
};
#endif /*HBABSTRACTVIEWITEM_H*/
--- a/src/hbwidgets/itemviews/hbabstractviewitem_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/itemviews/hbabstractviewitem_p.h Thu May 27 13:10:59 2010 +0300
@@ -32,6 +32,7 @@
#include <hbframebackground.h>
#include <hbnamespace.h>
+#include <QObject>
#include <QPersistentModelIndex>
#include <QPointer>
#include <QExplicitlySharedDataPointer>
@@ -39,24 +40,34 @@
class HbAbstractItemView;
class QGraphicsItem;
-
+class QTimer;
class QGestureEvent;
#define HB_SD(Class) Class##Shared * sd = (Class##Shared *)(d->mSharedData.data())
#define HB_SDD(Class) Q_D(Class); Class##Shared * sd = (Class##Shared *)(d->mSharedData.data())
-class HbAbstractViewItemShared : public QSharedData
+class HbAbstractViewItemShared : public QObject, public QSharedData
{
+ Q_OBJECT
+
public:
HbAbstractViewItemShared() :
mPrototype(0),
mItemView(0),
mDefaultFrame(),
- mItemType("viewitem")
+ mItemType("viewitem"),
+ mPressStateChangeTimer(0),
+ mPressedItem(0)
{
}
+ public slots:
+
+ void pressStateChangeTimerTriggered();
+
+ public:
+
HbAbstractViewItem *mPrototype;
HbAbstractItemView *mItemView;
@@ -65,6 +76,10 @@
QString mItemType;
static const int ViewItemDeferredDeleteEvent;
+
+ QTimer *mPressStateChangeTimer;
+ HbAbstractViewItem *mPressedItem;
+ bool mAnimatePress;
};
class HbAbstractViewItemPrivate : public HbWidgetPrivate
--- a/src/hbwidgets/itemviews/hblistitemcontainer_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/itemviews/hblistitemcontainer_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -30,6 +30,7 @@
#include "hbabstractitemcontainer_p.h"
#include "hbabstractitemview.h"
#include "hblistviewitem.h"
+#include "hblistview.h"
#include "hbmodeliterator.h"
#include <qmath.h>
@@ -129,7 +130,7 @@
bool HbListItemContainerPrivate::intoContainerBuffer(const QModelIndex &index) const
{
if (!mItems.isEmpty()
- && mItems.first()->modelIndex().row() <= index.row()
+ && mItems.first()->modelIndex().row() <= index.row()
&& mItems.last()->modelIndex().row() >= index.row()){
return true;
} else {
@@ -237,17 +238,11 @@
if (animate) {
Q_D(HbListItemContainer);
- int itemCount = d->mItems.count();
- HbAbstractViewItem *item = 0;
- for (int i = 0; i < itemCount; ++i) {
- item = d->mItems.at(i);
- if (item->modelIndex() == index) {
- QPair<HbAbstractViewItem *, int> pair(item, i);
- d->mAnimatedItems.append(pair);
- }
- }
-
- if (!item) {
+ HbAbstractViewItem *viewItem = d->item(index);
+ if (viewItem) {
+ QPair<HbAbstractViewItem *, int> pair(viewItem, d->mapToLayoutIndex(d->mItems.indexOf(viewItem)));
+ d->mAnimatedItems.append(pair);
+ } else {
return;
}
}
@@ -256,6 +251,19 @@
}
/*!
+ Sets the modelIndexes of \a count container items starting from item at \a containerStartRow row of the container
+ to model's indexes starting from \a modelStartRow
+*/
+void HbListItemContainer::setItemModelIndexes(int containerStartRow, int modelStartRow, int count)
+{
+ Q_D(HbListItemContainer);
+
+ for (int i = 0; i <= count; ++i) {
+ setItemModelIndex(d->mItems.at(containerStartRow + i), d->mItemView->modelIterator()->index(modelStartRow + i));
+ }
+}
+
+/*!
\reimp
*/
void HbListItemContainer::itemRemoved( HbAbstractViewItem *item, bool animate )
--- a/src/hbwidgets/itemviews/hblistitemcontainer_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/itemviews/hblistitemcontainer_p.h Thu May 27 13:10:59 2010 +0300
@@ -39,6 +39,7 @@
virtual ~HbListItemContainer();
void removeItem(const QModelIndex &index, bool animate);
+ void setItemModelIndexes(int containerStartRow, int modelStartRow, int count);
protected:
@@ -47,6 +48,7 @@
virtual void itemAdded(int index, HbAbstractViewItem *item, bool animate = false);
virtual void itemRemoved(HbAbstractViewItem *item, bool animate = false);
+
virtual void viewResized(const QSizeF &viewSize);
QPointF recycleItems(const QPointF &delta);
--- a/src/hbwidgets/itemviews/hblistview.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/itemviews/hblistview.cpp Thu May 27 13:10:59 2010 +0300
@@ -244,7 +244,6 @@
verticalScrollBar()->setInteractive(false);
}
d->mArrangeMode = arrangeMode;
- d->mAnimateItems = !d->mArrangeMode;
if (d->mArrangeMode == true) {
d->mOriginalFriction = d->mFrictionEnabled;
@@ -317,14 +316,20 @@
/*!
\reimp
+
+ Derived implementations must respect the d->mMoveOngoing flag and not perform
+ any view actions when the flag is set.
*/
void HbListView::rowsInserted(const QModelIndex &parent, int start, int end)
{
Q_D(HbListView);
+ if (d->mMoveOngoing)
+ return;
+
if (parent == d->mModelIterator->rootIndex()) {
HbAbstractItemView::rowsInserted(parent, start, end);
- if (!d->mArrangeMode && d->animationEnabled(true)) {
+ if (d->animationEnabled(true)) {
d->startAppearEffect("viewitem", "appear", parent, start, end);
}
}
@@ -332,11 +337,17 @@
/*!
\reimp
+
+ Derived implementations must respect the d->mMoveOngoing flag and not perform
+ any view actions when the flag is set.
*/
void HbListView::rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end)
{
Q_D(HbListView);
+ if (d->mMoveOngoing)
+ return;
+
if (parent == d->mModelIterator->rootIndex()) {
for (int i = start; i <= end; i++) {
HbAbstractViewItem* item = viewItem(i);
@@ -345,7 +356,7 @@
d->mDraggedItem = 0;
}
- if (!d->mArrangeMode && d->animationEnabled(false)) {
+ if (d->animationEnabled(false)) {
d->mItemsAboutToBeDeleted.append(item);
}
}
@@ -355,10 +366,17 @@
/*!
\reimp
+
+ Derived implementations must respect the d->mMoveOngoing flag and not perform
+ any view actions when the flag is set.
*/
void HbListView::rowsRemoved(const QModelIndex &parent, int start, int end)
{
Q_D(HbListView);
+
+ if (d->mMoveOngoing)
+ return;
+
if (parent == d->mModelIterator->rootIndex()) {
if (d->animationEnabled(false)) {
for (int i = 0; i < d->mItemsAboutToBeDeleted.count(); i++) {
--- a/src/hbwidgets/itemviews/hblistview_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/itemviews/hblistview_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -28,6 +28,7 @@
#include "hblistviewitem.h"
#include "hbabstractitemcontainer_p.h"
+#include "hblistitemcontainer_p.h"
#include <hbwidgetfeedback.h>
#include "hbmodeliterator.h"
#include <hbpangesture.h>
@@ -52,7 +53,8 @@
mMousePressPos(),
mScrollStartMousePos(),
mLastScrollPos(),
- mOriginalTransform()
+ mOriginalTransform(),
+ mMoveOngoing(false)
{
}
@@ -121,8 +123,16 @@
//mDraggedItem->setPressed(false, false);
int targetRow = targetIndex.row();
+ int startRow = qMin(targetRow, mDraggedItemIndex.row());
+ int endRow = qMax(targetRow, mDraggedItemIndex.row());
+ int containerStartIndex = mContainer->items().at(0)->modelIndex().row();
+ mMoveOngoing = true;
q->move(mDraggedItemIndex, targetIndex);
-
+ static_cast <HbListItemContainer*>(mContainer)->setItemModelIndexes(startRow - containerStartIndex,
+ startRow,
+ endRow - startRow);
+ mMoveOngoing = false;
+
// in the swap the dragged item may have been deleted and recreated. So take it again here
mDraggedItemIndex = mModelIterator->index(targetRow);
if (mDraggedItemIndex.isValid()) {
@@ -165,10 +175,13 @@
mDraggedItemIndex = mDraggedItem->modelIndex();
if (mDraggedItemIndex.isValid()) {
+ HbEffect::cancel(mDraggedItem, QString(), true);
mMousePressTimer.restart();
mMousePressPos = scenePos;
mOriginalTransform = mDraggedItem->transform();
mDraggedItem->setZValue(mDraggedItem->zValue() + 1);
+ mDraggedItem->translate(0, event->mapToGraphicsScene(gesture->offset()).y() -
+ event->mapToGraphicsScene(gesture->lastOffset()).y());
QObject::connect(q, SIGNAL(scrollPositionChanged(QPointF)), q, SLOT(scrolling(QPointF)));
} else {
@@ -185,8 +198,6 @@
if (!q->isScrolling()) {
// move the item with the cursor to indicate the move
- //qDebug() << "ScenePos: " << scenePos;
- //qDebug() << "Offset: " << event->mapToGraphicsScene(gesture->offset()).y() << " lastOffset: " << event->mapToGraphicsScene(gesture->lastOffset()).y();
mDraggedItem->translate(0, event->mapToGraphicsScene(gesture->offset()).y() -
event->mapToGraphicsScene(gesture->lastOffset()).y());
@@ -207,8 +218,10 @@
QModelIndex firstItemIndex = mContainer->items().first()->modelIndex();
QModelIndex lastItemIndex = mContainer->items().last()->modelIndex();
// If the item is dragged up in the list (and there are more items to show), scroll up
- if (!q->isScrolling()
- && !q->isVisible(firstItemIndex)
+
+ if (!mIsAnimating
+ && !(visible(mContainer->itemByIndex(firstItemIndex), true)
+ && (firstItemIndex.row() == 0))
&& scenePos.y() < mMousePressPos.y()
&& pos.y() < q->itemByIndex(firstVisible)->size().height()) {
mScrollStartMousePos = scenePos;
@@ -216,8 +229,9 @@
animateScroll(QPointF(0.0f , DRAGGED_ITEM_SCROLL_SPEED));
}
// If the item is dragged down in the list (and there are more items to show), scroll down
- else if (!q->isScrolling()
- && !q->isVisible(lastItemIndex)
+ else if (!mIsAnimating
+ && !(visible(mContainer->itemByIndex(lastItemIndex), true)
+ && (lastItemIndex.row() == mModelIterator->indexCount() - 1))
&& scenePos.y() > mMousePressPos.y()
&& pos.y() > (q->size().height() - q->itemByIndex(lastVisible)->size().height())) {
mScrollStartMousePos = scenePos;
@@ -274,12 +288,3 @@
return HbAbstractItemViewPrivate::panTriggered(event);
}
-bool HbListViewPrivate::animationEnabled(bool insertOperation)
-{
- if (mArrangeMode) {
- return false;
- } else {
- return HbAbstractItemViewPrivate::animationEnabled(insertOperation);
- }
-}
-
--- a/src/hbwidgets/itemviews/hblistview_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/itemviews/hblistview_p.h Thu May 27 13:10:59 2010 +0300
@@ -68,7 +68,7 @@
virtual bool panTriggered(QGestureEvent *event);
- virtual bool animationEnabled(bool insertOperation);
+
public:
bool mArrangeMode;
QPersistentModelIndex mDraggedItemIndex;
@@ -79,6 +79,7 @@
QPointF mLastScrollPos;
QTransform mOriginalTransform;
+ bool mMoveOngoing;
bool mOriginalFriction;
};
--- a/src/hbwidgets/itemviews/hblistwidget.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/itemviews/hblistwidget.cpp Thu May 27 13:10:59 2010 +0300
@@ -351,7 +351,6 @@
}
d->mArrangeMode = arrangeMode;
- d->mAnimateItems = !d->mArrangeMode;
if (d->mArrangeMode == true) {
d->mOriginalFriction = d->mFrictionEnabled;
--- a/src/hbwidgets/itemviews/hbtumbleview.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/itemviews/hbtumbleview.cpp Thu May 27 13:10:59 2010 +0300
@@ -35,10 +35,11 @@
#include <QGraphicsSceneMouseEvent>
#include <QStringListModel>
+#include <QItemSelectionModel>
+#include <QTapGesture>
#define HB_TUMBLE_ITEM_ANIMATION_TIME 500
#define HB_TUMBLE_PREFERRED_ITEMS 3
-#define DELAYED_SELECT_INTERVAL 100
#define HBTUMBLE_DEBUG
#ifdef HBTUMBLE_DEBUG
@@ -56,6 +57,8 @@
void setLoopingEnabled(bool looping) ;
bool isLoopingEnabled() const ;
+ void removeItem(const QModelIndex &index, bool animate );
+ void setModelIndexes(const QModelIndex &startIndex);
};
class HbTumbleViewItemContainerPrivate:public HbListItemContainerPrivate
@@ -84,16 +87,14 @@
void init(QAbstractItemModel *model);
void calculateItemHeight();
+ void selectCurrentIndex(const QModelIndex& index);
void selectMiddleItem();
+ HbAbstractViewItem* getCenterItem();
void createPrimitives();
-
- void delayedSelectCurrent(const QModelIndex& index);
-
void _q_scrollingStarted();//private slot
void _q_scrollingEnded();//private slot
- void _q_delayedSelectCurrent();//private slot
void setPressedState(HbAbstractViewItem *item);
@@ -188,12 +189,143 @@
void HbTumbleViewItemContainer::setLoopingEnabled(bool looped) {
Q_D(HbTumbleViewItemContainer);
d->mIsLooped = looped;
+ if(looped){
+ recycleItems(QPointF());
+ }
+ else{
+ setModelIndexes(d->mItemView->currentIndex());
+ }
}
bool HbTumbleViewItemContainer::isLoopingEnabled() const {
Q_D(const HbTumbleViewItemContainer);
return d->mIsLooped;
}
+void HbTumbleViewItemContainer::removeItem(const QModelIndex &index, bool animate )
+{
+ Q_D(HbTumbleViewItemContainer);
+ HbListItemContainer::removeItem(index,animate);
+ if (d->mItems.count() < maxItemCount()) {
+ d->updateItemBuffer();
+ }
+}
+
+void HbTumbleViewItemContainer::setModelIndexes(const QModelIndex &startIndex)
+{
+ Q_D(HbAbstractItemContainer);
+
+ if (!d->mItemView || !d->mItemView->model()) {
+ return;
+ }
+
+ QModelIndex index = startIndex;
+ if (!index.isValid()) {
+ if (!d->mItems.isEmpty()) {
+ index = d->mItems.first()->modelIndex();
+ }
+
+ if (!index.isValid()) {
+ index = d->mItemView->modelIterator()->nextIndex(index);
+ }
+ }
+
+ QModelIndexList indexList;
+
+ int itemCount(d->mItems.count());
+
+ if (itemCount != 0 && index.isValid()) {
+ indexList.append(index);
+ }
+
+ for (int i = indexList.count(); i < itemCount; ++i) {
+ index = d->mItemView->modelIterator()->nextIndex(indexList.last());
+
+ if (index.isValid()) {
+ indexList.append(index);
+ } else {
+ break;
+ }
+ }
+ if(isLoopingEnabled() && indexList.count()<itemCount){
+ QModelIndex firstModelIndex = d->mItemView->modelIterator()->index(0,QModelIndex());
+ indexList.append(firstModelIndex);
+ for (int i = indexList.count(); i < itemCount; ++i) {
+ index = d->mItemView->modelIterator()->nextIndex(indexList.last());
+
+ if (index.isValid()) {
+ indexList.append(index);
+ } else {
+ break;
+ }
+ }
+ }
+
+ for (int i = indexList.count(); i < itemCount; ++i) {
+ index = d->mItemView->modelIterator()->previousIndex(indexList.first());
+
+ if (index.isValid()) {
+ indexList.prepend(index);
+ } else {
+ break;
+ }
+ }
+
+ // if items have been added/removed in the middle of the buffer, there might be items
+ // that can be reused at the end of the buffer. The following block will scan for
+ // those items and move them in correct position
+ int lastUsedItem = -1;
+ for (int indexCounter = 0; indexCounter < indexList.count(); ++indexCounter) {
+ HbAbstractViewItem *item = d->mItems.at(indexCounter);
+ if (item && item->modelIndex() == indexList.at(indexCounter)) {
+ lastUsedItem = indexCounter;
+ } else {
+ for (int itemCounter = lastUsedItem + 1; itemCounter < d->mItems.count(); itemCounter++) {
+ HbAbstractViewItem *item2 = d->mItems.at(itemCounter);
+ qDebug()<<"containeritemsat("<<itemCounter<<")="<<item2->modelIndex()<<"--indexList.at("
+ <<indexCounter<<")="<<indexList.at(indexCounter);
+
+ if (item2->modelIndex() == indexList.at(indexCounter)) {
+ d->mItems.swap(indexCounter, itemCounter);
+ itemRemoved(d->mItems.at(indexCounter), false);
+ itemRemoved(d->mItems.at(itemCounter), false);
+ itemAdded(qMin(indexCounter, itemCounter), d->mItems.at(qMin(indexCounter, itemCounter)), false);
+ itemAdded(qMax(indexCounter, itemCounter), d->mItems.at(qMax(indexCounter, itemCounter)), false);
+ lastUsedItem = itemCounter;
+ break;
+ }
+ }
+
+ }
+ qDebug()<<"last used item -"<<lastUsedItem;
+ qDebug()<<"-------------------------------------------------------";
+ }
+
+ int indexCount(indexList.count());
+ for (int i = 0; i < itemCount; ++i) {
+ HbAbstractViewItem *item = d->mItems.at(i);
+ HbAbstractViewItem *prototype = 0;
+ // setItemModelIndex() is considered recycling. It is called only, if recycling is permitted
+ if (i < indexCount) {
+ prototype = d->itemPrototype(indexList.at(i));
+ }
+ if (prototype) {
+ if ( prototype == item->prototype()
+ && d->mItemRecycling) {
+ setItemModelIndex(item, indexList.at(i));
+ } else if ( d->mItemRecycling
+ || ( !d->mItemRecycling
+ && item->modelIndex() != indexList.at(i))) {
+ d->deleteItem(item);
+ insertItem(i, indexList.at(i));
+ } // else: !d->mItemRecycling && item->modelIndex().isValid() == indexList.at(i))
+ } else {
+ d->deleteItem(item);
+ itemCount--;
+ i--;
+ }
+ }
+}
+
HbTumbleViewItemContainerPrivate::HbTumbleViewItemContainerPrivate()
: mIsLooped(false)
{
@@ -319,8 +451,6 @@
Q_ASSERT(b);
b = q->connect(q,SIGNAL(scrollingEnded()),q,SLOT(_q_scrollingEnded()));
Q_ASSERT(b);
- b = q->connect(&mDelayedSelectTimer,SIGNAL(timeout()),q,SLOT(_q_delayedSelectCurrent()));
- Q_UNUSED(b);
createPrimitives();
}
@@ -331,17 +461,27 @@
if(!q->scene()) {
return;
}
- QPointF centerPt = q->mapToScene(q->boundingRect().center());
- HbAbstractViewItem *item = itemAt(centerPt);
+ HbAbstractViewItem *item = getCenterItem();
if(item) {
#ifdef HBTUMBLE_DEBUG
- qDebug() << "HbTumbleViewPrivate::selectMiddleItem - " << item->modelIndex().row() ;
+ qDebug() << "HbTumbleViewPrivate::selectMiddleItem - " << item->modelIndex().row() ;
#endif
- delayedSelectCurrent(item->modelIndex());
- mSelected = item->modelIndex().row();
- }
+ selectCurrentIndex(item->modelIndex());
+ mSelected = item->modelIndex().row();
}
+}
+
+HbAbstractViewItem* HbTumbleViewPrivate::getCenterItem()
+{
+ Q_Q(HbTumbleView);
+
+ if(!q->scene()) {
+ return 0;
+ }
+ QPointF centerPt = q->mapToScene(q->boundingRect().center());
+ return itemAt(centerPt);
+}
void HbTumbleViewPrivate::scrollTo(const QModelIndex &index, HbAbstractItemView::ScrollHint hint)
{
@@ -366,6 +506,24 @@
#endif
}
+void HbTumbleViewPrivate::selectCurrentIndex(const QModelIndex& index)
+{
+ Q_Q(HbTumbleView);
+ if(!mIsAnimating && !mIsScrolling) {
+ if(index == q->currentIndex()){
+ HbAbstractViewItem *item =q->itemByIndex(index);
+ QPointF delta = pixelsToScroll(item,HbAbstractItemView::PositionAtCenter );
+ QPointF newPos = -mContainer->pos() + delta;
+ checkBoundaries(newPos);
+ scrollByAmount(newPos - (-mContents->pos()));
+ mIsScrolling = false;
+ }
+ else{
+ q->setCurrentIndex(index,QItemSelectionModel::SelectCurrent);
+ }
+ }
+}
+
void HbTumbleView::scrollTo(const QModelIndex &index, ScrollHint)
{
#ifdef HBTUMBLE_DEBUG
@@ -419,21 +577,25 @@
/*!
@proto
\class HbTumbleView
- \this is a tumbler widget which lets the user select alphanumeric values from a predefined list of
- values via vertical flicking and dragging. Typically widgets such as date picker and time picker use the
+ \brief HbTumbleView is a tumbler widget which lets the user select alphanumeric values from a predefined list of values via vertical flicking and dragging.<br>
+
+ Typically widgets such as date picker and time picker use the
Tumbler. The Tumbler could also be used to change other values such as number code sequence,
- landmark coordinates, country selection, and currency.
+ landmark coordinates, country selection, and currency.<br>
Only strings can be accepted as HbTumbleView's items.
- \this can be used like this:
+ HbTumbleView can be used, as shown in the below code snippet:
\snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,52}
+
+ \image html hbdatetimepicker_date.png "Two TumbleViews(tumblers) in a datetime picker widget in d/MMMM format. One tumbler for day and the other for month."
+ <b>Note:</b>Graphics in the above image varies depending on theme.
*/
/*!
\fn void itemSelected(int index)
- This signal is emitted when an item is selected in date time picker.
+ This signal is emitted when an item is selected in the tumbler.
\param index selected item.
*/
@@ -457,7 +619,7 @@
/*!
HbTumbleView's constructor.
- \param list to be set as data to QStringListModel.
+ \param list String list to be set as data to HbTumbleView's model.
\parent item to set as parent.
*/
HbTumbleView::HbTumbleView(const QStringList &list,QGraphicsItem *parent)
@@ -497,7 +659,7 @@
/*!
Sets the HbTumbleView's items to the given string \a list.
- \param list Items to be set as tumble view's model.
+ \param list Items to be set as data to HbTumbleView's model.
*/
void HbTumbleView::setItems(const QStringList &list)
@@ -514,7 +676,7 @@
/*!
Returns items in QStringList format.
- \return list of items in tumbleview's model in QStringList format.
+ \return List of items set as data to HbTumbleView's model in QStringList format.
*/
QStringList HbTumbleView::items() const
{
@@ -528,7 +690,7 @@
/*!
Sets the selection to the item at \a index.
- \param index to be selected in the tumble view.
+ \param index of the item to be selected in the tumbler.
*/
void HbTumbleView::setSelected(int index)
@@ -541,7 +703,7 @@
QModelIndex modelIndex = d->mModelIterator->index(index, rootIndex());
if(modelIndex.isValid()) {
- d->delayedSelectCurrent(modelIndex);
+ d->selectCurrentIndex(modelIndex);
emitActivated(modelIndex);
}
}
@@ -549,7 +711,7 @@
/*!
Returns the index of the current selected item in integer format.
- \return current index selected in tumble view.
+ \return current index of the item selected in the tumbler.
*/
int HbTumbleView::selected() const
{
@@ -557,7 +719,6 @@
}
/*!
-
\deprecated HbTumbleView::primitive(HbStyle::Primitive)
is deprecated.
@@ -653,25 +814,17 @@
*/
void HbTumbleView::rowsInserted(const QModelIndex &parent,int start,int end)
{
+ Q_D(HbTumbleView);
HbListView::rowsInserted(parent,start,end);
- scrollTo(currentIndex(),PositionAtCenter);
-}
-void HbTumbleViewPrivate::_q_delayedSelectCurrent()
-{
- Q_Q(HbTumbleView);
- if(!mIsAnimating && !mIsScrolling) {
- if(mDelayedSelectIndex == q->currentIndex()){
- HbAbstractViewItem *item =q->itemByIndex(mDelayedSelectIndex);
- QPointF delta = pixelsToScroll(item,HbAbstractItemView::PositionAtCenter );
- QPointF newPos = -mContainer->pos() + delta;
- checkBoundaries(newPos);
- scrollByAmount(newPos - (-mContents->pos()));
- }
- else{
- q->setCurrentIndex(mDelayedSelectIndex);
- }
+ //Trigger recycle, in the scenario where item's are deleted and reinserted again.
+ QPointF alignedPosition = d->mContents->pos();
+ Q_UNUSED(alignedPosition);
+ if(alignedPosition.y() > 0.0){
+ alignedPosition.setY(0.0);
+ d->HbScrollAreaPrivate::setContentPosition(alignedPosition);
}
+ scrollTo(currentIndex(),PositionAtCenter);
}
/*!
@@ -727,9 +880,9 @@
}
/*!
- Sets the looping enabled flag to eith true or false, which makes the tumbleview to scroll in a circular way.
+ Sets the looping enabled flag to either true or false, which makes the tumbler to scroll in a circular way.
- \param looped flag to enable curcular view.
+ \param looped flag to enable curcular view for the tumbler.
\sa isLoopingEnabled
*/
@@ -745,7 +898,7 @@
/*!
Returns looping enabled flag.
- \return looping enabled flag.
+ \return looping enabled flag as boolean value.
\sa setLoopingEnabled
@@ -792,7 +945,7 @@
QSizeF sh=HbListView::sizeHint(which,constraint);
switch(which) {
case Qt::MinimumSize:
- sh = QSizeF(sh.width(),HB_TUMBLE_PREFERRED_ITEMS*d->mHeight);
+ sh = QSizeF(sh.width(),HB_TUMBLE_PREFERRED_ITEMS*d->mHeight);
break;
case Qt::PreferredSize:
sh = QSizeF(sh.width(),HB_TUMBLE_PREFERRED_ITEMS*d->mHeight);
@@ -833,13 +986,12 @@
return;
}
- QPointF pt = q->mapToScene(q->boundingRect().center());
- HbAbstractViewItem *centerItem=itemAt(pt);
+ HbAbstractViewItem *centerItem=getCenterItem();
if(centerItem) {
setPressedState(centerItem);
if(centerItem->modelIndex().isValid()) {
- delayedSelectCurrent(centerItem->modelIndex());
+ selectCurrentIndex(centerItem->modelIndex());
q->emitActivated(centerItem->modelIndex());
}
}
@@ -878,10 +1030,60 @@
HbListView::rowsRemoved(parent,start,end);
scrollTo(currentIndex(),PositionAtCenter);
}
-void HbTumbleViewPrivate::delayedSelectCurrent(const QModelIndex& index)
+
+/*!
+ \reimp
+*/
+void HbTumbleView::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
+{
+ Q_D(const HbListView);
+
+ QList<HbAbstractViewItem *> items = d->mContainer->items();
+ bool empty = items.isEmpty();
+ QModelIndex rootIndex = d->mModelIterator->rootIndex();
+ QModelIndex firstIndex = items.first()->modelIndex();
+ QModelIndex lastIndex = items.last()->modelIndex();
+
+ if (!empty &&
+ topLeft.parent() == rootIndex
+ /*&& firstIndex.row() <= bottomRight.row()
+ && topLeft.row() <= lastIndex.row()*/) {
+ HbAbstractItemView::dataChanged(topLeft, bottomRight);
+ }
+}
+
+void HbTumbleView::gestureEvent(QGestureEvent *event)
{
- mDelayedSelectIndex = index;
- mDelayedSelectTimer.start(DELAYED_SELECT_INTERVAL);
+ Q_D(HbTumbleView);
+ if(QTapGesture *gesture = static_cast<QTapGesture*>(event->gesture(Qt::TapGesture))){
+ switch(gesture->state()){
+ case Qt::GestureStarted:
+ if(d->mIsAnimating || d->mIsScrolling){
+ d->mInternalScroll = true;
+ HbAbstractViewItem* centerItem = d->getCenterItem();
+ if(centerItem){
+ d->mDelayedSelectIndex = centerItem->modelIndex();
+ }
+ }
+ else{
+ d->mDelayedSelectIndex = QModelIndex();
+ }
+ break;
+ case Qt::GestureCanceled:
+ d->mInternalScroll = false;
+ break;
+ case Qt::GestureFinished:
+ d->mInternalScroll = false;
+ if(d->mDelayedSelectIndex.isValid()){
+ d->selectCurrentIndex(d->mDelayedSelectIndex);
+ }
+ break;
+ default:
+ break;
+
+ }
+ }
+ HbListView::gestureEvent(event);
}
#include "moc_hbtumbleview.cpp"
--- a/src/hbwidgets/itemviews/hbtumbleview.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/itemviews/hbtumbleview.h Thu May 27 13:10:59 2010 +0300
@@ -81,6 +81,8 @@
void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
QSizeF sizeHint(Qt::SizeHint which, const QSizeF &constraint) const;
QVariant itemChange(GraphicsItemChange change,const QVariant &value);
+ void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
+ void gestureEvent(QGestureEvent *event);
bool event(QEvent *e);
@@ -89,7 +91,6 @@
Q_DISABLE_COPY(HbTumbleView)
Q_PRIVATE_SLOT(d_func(), void _q_scrollingStarted())
Q_PRIVATE_SLOT(d_func(), void _q_scrollingEnded())
- Q_PRIVATE_SLOT(d_func(), void _q_delayedSelectCurrent())
};
#endif
--- a/src/hbwidgets/popups/hbinputdialog.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/popups/hbinputdialog.cpp Thu May 27 13:10:59 2010 +0300
@@ -42,36 +42,72 @@
/*!
@beta
@hbwidgets
-
\class HbInputDialog
- \brief HbInputDialog creates a modal dialog for the user to get some information in the form of text or numbers.
-
+ \brief HbInputDialog is a convenient class for getting user inputs.
Based on the \InputMode user can enter text, int, double or an IP address. InputDialog can have one or two line edit input fields.
- HbInputDialog by default will have a label to display a descriptive text for the line edit input field and,
- OK and Cancel buttons.
+ \image html inputdialog.png "An Input dialog with prompt text and a user input field."
+
+ HbInputDialog by default will have a label to display a descriptive text which gives information on the user input field,
+ an edit field for entering text and,two action buttons.
example code example:
\code
+ HbInputDialog *object = new HbInputDialog();
+ \endcode
+
+ The HbDialog::open( QObject* receiver, const char* member ) method from the HbDialog is used to show the HbInputDialog.
+
+ The open method can be attached with a SLOT of the format finished(HbAction*). When the open is used with a slot then the slot
+ will be invoked once the user does any action such as accept or reject (The Ok or Cancel press).
+
+
+ below is the declaration of the slot.
+ \code
+ public slots :
+ void dialogClosed(HbAction *action);
+ \endcode
+
+ below code shows how the open method can be called using this slot.
+
+ \code
HbInputDialog *object = new HbInputDialog(parent);
- object->show();
+ object->open(this,SLOT(dialogClosed(HbAction*)));
\endcode
+
+ A sample slot definition is shown below
- Four static convenience API's are provided: getText(), getInteger(), getDouble(), and getIp()
+ \code
+ void dialogClosed(HbAction *action)
+ {
+ HbInputDialog *dlg=static_cast<HbInputDialog*>(sender());
+ if(dlg->actions().first() == action) { // user is clicked OK
+ //Get the string enter by user
+ QString myString = dlg->value().toString();
+ //Do the action here
+ }
+ else if(dlg->actions().at(1) == action) {
+ // user is clicked CANCEL
+ }
+ }
+ \endcode
+
+
+ In HbInputDialog four static convenience API's are provided: getText(), getInteger(), getDouble(), and getIp()
static API's can be used to quickly get an input from user.
- \enum HbInputDialog::InputMode
+ \enum HbInputDialog::InputMode
- \value \b TextInput When this value is set as Input mode, input dialog accepts text input in its
+ \value \b TextInput When this value is set as Input mode, Input Dialog accepts text input in its
correspoinding line edit field.
- \value \b IntInput When this value is set as Input mode, input dialog accepts Integer input in its
+ \value \b IntInput When this value is set as Input mode, Input Dialog accepts Integer input in its
correspoinding line edit field.
- \value \b RealInput When this value is set as Input mode, input dialog accepts double or float input in its
+ \value \b RealInput When this value is set as Input mode, Input Dialog accepts double or float input in its
correspoinding line edit field.
- \value \b IpInput When this value is set as Input mode, input dialog accepts Ip address as input in its
+ \value \b IpInput When this value is set as Input mode, Input Dialog accepts Ip address as input in its
correspoinding line edit field.
*/
@@ -107,15 +143,15 @@
}
/*!
- Sets the input mode of the primary(Top/default)line edit in the query widget.
-
- The default InputMode is TextInput
+ Sets the input mode of the user field. The default InputMode is TextInput.
+ The other available modes are IntInput,RealInput and IpInput.
\param mode. InputMode can be TextMode, IntMode, RealMode and Ip address mode.
each mode will affect how the line edit filters its input.
- \param row. value 0 or 1
-
+ \param row. This parameter indicates which row of the field.0 (by default) means the
+ the first user field and 1 means second user field.
+
\sa inputMode()
*/
void HbInputDialog::setInputMode(InputMode mode ,int row)
@@ -125,11 +161,10 @@
}
/*!
- Returns input mode for top/default line edit.
+ Returns input mode of the user field.The default InputMode is TextInput.
- The default InputMode is TextInput
-
- \param row. value 0 or 1
+ \param row This parameter indicates which row of the field.0 means the
+ the first user field and 1 means second user field.
\sa setInputMode()
*/
@@ -148,10 +183,11 @@
}
/*!
- Sets the prompt \a text for top/default line edit.
+ Sets the prompt text for the user field. This prompt text text can be very descriptive like username,password etc.
- \param text. Text for the label which describes the purpose of the corresponding input line edit field.
- \param row. value 0 or 1
+ \param text The des
+ \param row This parameter indicates which row of the user field.0 (by default) means the
+ the first user field and 1 means second user field.
\sa promtText()
*/
@@ -162,9 +198,10 @@
}
/*!
- Returns prompt text for top/default line edit.
- the default is null string.
- \param row. value 0 or 1
+ Returns descriptive prompt text.
+
+ \param row This parameter indicates which row of the field. 0 means the
+ the user field in the first row and 1 means user field in the second row.
\sa setPromptText()
*/
@@ -175,10 +212,12 @@
}
/*!
- Sets the top/default line edit value in \a text format.
-
- \param value. user defined value for the default line edit.
- \param row. value 0 or 1
+ Sets the value for the user input field.The value should in sync HbInputDialog::InputMode of the field.
+
+ \param value The value that should be presented to the user.
+
+ \param row This parameter indicates which row of the user field.0 (by default) means the
+ the first user field and 1 means second user field.
\sa value()
*/
@@ -189,9 +228,11 @@
}
/*!
- Returns top/default line edit value as QVariant object.
-
- \param row. value 0 or 1
+ This returns the value of the user field row. The return type is QVariant which can be converted to
+ corresponding type based on HbInputDialog::InputMode of the field.
+
+ \param row This parameter indicates which row of the user field.0 (by default) means the
+ the first user field and 1 means second user field
\sa setValue()
*/
@@ -202,9 +243,10 @@
}
/*!
- Sets the visibility of bottom line edit and prompt text.
+ HbInputDialog is capable of showing one or two user input fields. This can be set using this function.
+ By default this is false and only first row is visible.
- \param visible true or false.
+ \param visible true or false. If true then two user fields will be visible otherwise one.
\sa isAdditionalRowVisible()
*/
@@ -215,8 +257,8 @@
}
/*!
- Returns the visibility of secondary row(bottom line edit and prompt text).
- the default is false
+ Returns the visibility of second row user input field.The default is false.
+
\sa setAdditionalRowVisible()
*/
bool HbInputDialog::isAdditionalRowVisible()
@@ -226,12 +268,16 @@
}
/*!
- Validator is used to validate the content and cursor movements.
+
+ This API allows the user to set any validator to the user input field.
- \param validator. Validator uses undo stack to back out invalid changes. Therefore undo
+ \param validator Validator uses undo stack to back out invalid changes. Therefore undo
is enabled when validator is set.
- \sa HbAbstractEdit::setValidator
+ \param row This parameter indicates which row of the user field.0 means the
+ the first user field and 1 means second user field
+
+ \sa HbAbstractEdit::validator
*/
void HbInputDialog::setValidator(HbValidator *validator,int row)
{
@@ -244,9 +290,10 @@
}
/*!
- Returns the validator of the inputDialog's line edit.
+ This API returns the validator of the corresponding user input row.
- \param row. A value 0 or 1
+ \param row This parameter indicates which row of the user field.0 (by default) means the
+ the first user field and 1 means second user field
\sa setValidator()
*/
@@ -262,9 +309,9 @@
}
/*!
- returns the lineEdit pointer. will return NULL if row is greater than 2.
-
- \param row. A value 0 or 1
+ This returns the editor instance used in HbInputDialog.
+ \param row This parameter indicates which row of the user field.0 (by default) means the
+ the first user field and 1 means second user field
*/
HbLineEdit* HbInputDialog::lineEdit(int row) const
{
@@ -278,12 +325,15 @@
}
/*!
- sets the echo mode for the given row.
+ sets the echo mode for the user input fiels. The echo mode is defined in HbLineEdit.
+ Normal, NoEcho, Password, PasswordEchoOnEdit are the different echo modes supportted in HbLineEdit.
- \param echoMode
- \param row. A value 0 or 1
+ \param echoMode which can be HbLineEdit::Normal, HbLineEdit::NoEcho, HbLineEdit::Password or HbLineEdit::PasswordEchoOnEdit.
+
+ \param row This parameter indicates which row of the user field.0 (by default) means the
+ the first user input field and 1 means second user input field
- \sa HbLineEdit::setEchoMode
+ \sa echoMode() , HbLineEdit::setEchoMode()
*/
void HbInputDialog::setEchoMode(HbLineEdit::EchoMode echoMode,int row)
{
@@ -322,7 +372,6 @@
/*!
\reimp
- Initializes \a option with the values from this HbInputDialog.
*/
void HbInputDialog::initStyleOption(HbStyleOptionInputDialog *option) const
{
@@ -334,7 +383,6 @@
/*!
\reimp
- updatePrimitives.
*/
void HbInputDialog::updatePrimitives()
{
@@ -352,9 +400,10 @@
}
/*!
- Returns the echoMode of line edit. returns -1 if row is more than 2.
+ Returns the echoMode of the user input field.It returns HbLineEdit::EchoMode.
- \param row. A value 0 or 1
+ \param row This parameter indicates which row of the user field.0 means the
+ the first user input field and 1 means second user input field
\sa setEchoMode()
*/
@@ -370,16 +419,20 @@
}
/*!
- Static convenience function for creating an input dialog to get a string from the user.
- \a label is the text which is shown to the user (it should
- say what should be entered). \a text is the default text which is
- placed in the line edit. If \a ok is non-null \e *\a ok will be
- set to true if the user pressed \gui OK and to false if the user pressed
- \gui Cancel. The dialog's parent is \a parent. The dialog will be
- modal.
-
- This function return data has to be queried in the finished(HbAction*) slot.
-
+ This is a static convenience function for creating an Input Dialog and to get a string data from the the user. The Application can use this
+ function in order to get any text data from user like username,search data etc. This API allows a slot to be passed as a param. This slot will
+ be invoked when the user does the action like OK press or CANCEL press.
+
+ HbInputDialog::getText(iTitle,this,SLOT(dialogClosed(HbAction*)),iText); iTitle is the prompt text.dialogClosed will be invoked when the user does the action.
+ Please refer the class documentation to know how to handle the slot.
+
+ \param label The prompt text which gives information on user input field.
+ \param receiver The instance where the slot is declared.
+ \param member The slot which has dialogClosed(HbAction*) signature.
+ \param text The default text that should be presented to the user.
+ \param scene The scene parameter.
+ \param parent The parent item for the dialog.
+
\sa getInteger(), getDouble(), getIp()
*/
void HbInputDialog::getText(const QString &label,
@@ -402,16 +455,20 @@
/*!
- Static convenience function to get an integer input from the
- user.\a label is the text which is shown to the user
- (it should say what should be entered). \a value is the default
- integer which the spinbox will be set to.
- If \a ok is non-null *\a ok will be set to true if the user
- pressed \gui OK and to false if the user pressed \gui Cancel. The
- dialog's parent is \a parent. The dialog will be modal.
-
- This function return data has to be queried in the finished(HbAction*) slot.
-
+ This is a static convenience function for creating an Input Dialog and to get an integer data from the the user. The Application can use this
+ function in order to get any integer data from user like year , any number etc. This API allows a slot to be passed as a param. This slot will
+ be invoked when the user does the action like OK press or CANCEL press.
+
+ HbInputDialog::getInt(iTitle,this,SLOT(dialogClosed(HbAction*)),iText); iTitle is the prompt text.dialogClosed will be invoked when the user does the action.
+ Please refer the class documentation to know how to handle the slot.
+
+ \param label The prompt text which gives information on user input field.
+ \param receiver The instance where the slot is declared.
+ \param member The slot which has dialogClosed(HbAction*) signature.
+ \param value The default value that should be presented to the user.
+ \param scene The scene parameter.
+ \param parent The parent widget for the dialog.
+
\sa getText(), getDouble(), getIp()
*/
void HbInputDialog::getInteger(const QString &label,
@@ -432,17 +489,20 @@
dlg->open(receiver,member);
}
/*!
- Static convenience function to get a floating point number from
- the user.\a label is the text which is shown to the user
- (it should say what should be entered). \a value is the default
- floating point number that the line edit will be set to.
-
- If \a ok is non-null, *\a ok will be set to true if the user
- pressed \gui OK and to false if the user pressed \gui Cancel. The
- dialog's parent is \a parent. The dialog will be modal.
-
- This function return data has to be queried in the finished(HbAction*) slot.
-
+ This is a static convenience function for creating an Input Dialog and to get a double data from the the user. The Application can use this
+ function in order to get any double data from user. This API allows a slot to be passed as a param. This slot will
+ be invoked when the user does the action like OK press or CANCEL press.
+
+ HbInputDialog::getDouble(iTitle,this,SLOT(dialogClosed(HbAction*)),iText); iTitle is the prompt text.dialogClosed will be invoked when the user does the action.
+ Please refer the class documentation to know how to handle the slot.
+
+ \param label The prompt text which gives information on user input field.
+ \param receiver the instance where the slot is declared.
+ \param member the slot which has dialogClosed(HbAction*) signature.
+ \param value the default value that should be presented to the user.
+ \param scene the scene parameter.
+ \param parent the parent widget for the dialog.
+
\sa getText(), getInteger(), getIp()
*/
void HbInputDialog::getDouble(const QString &label,
@@ -464,19 +524,22 @@
/*!
- Static convenience function to get an ip address from
- the user.\a label is the text which is shown to the user
- (it should say what should be entered). \a address is the default
- QHostAddress that the line edit will be set to.
-
- If \a ok is non-null, *\a ok will be set to true if the user
- pressed \gui OK and to false if the user pressed \gui Cancel. The
- dialog's parent is \a parent. The dialog will be modal.
-
- This function return data has to be queried in the finished(HbAction*) slot.
-
+ This is a static convenience function for creating an Input Dialog and to get an IP information from the the user. This API allows a slot to be passed as a param. This slot will
+ be invoked when the user does the action like OK press or CANCEL press.
+
+ HbInputDialog::getIp(iTitle,this,SLOT(dialogClosed(HbAction*)),iText); iTitle is the prompt text.dialogClosed will be invoked when the user does the action.
+ Please refer the class documentation to know how to handle the slot.
+
+ \param label The prompt text which gives information on user input field.
+ \param receiver the instance where the slot is declared.
+ \param member the slot which has dialogClosed(HbAction*) signature.
+ \param ipaddress the default value that should be presented to the user.
+ \param scene the scene parameter.
+ \param parent the parent widget for the dialog.
+
\sa getText(), getInteger(), getDouble()
*/
+
void HbInputDialog::getIp(const QString &label,
QObject *receiver,
const char *member,
@@ -489,9 +552,9 @@
scene->addItem(dlg);
}
dlg->setPromptText(label);
- dlg->setValue(ipaddress);
+ dlg->setValue(ipaddress);
dlg->setInputMode(IpInput);
dlg->open(receiver,member);
}
+#include "moc_hbinputdialog.cpp"
-#include "moc_hbinputdialog.cpp"
--- a/src/hbwidgets/popups/hbmessagebox.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/popups/hbmessagebox.cpp Thu May 27 13:10:59 2010 +0300
@@ -165,7 +165,11 @@
@beta
\class HbMessageBox
- \brief HbMessageBox is a convenience modal dialog class, using which a simple information, a question, or a simple warning can be shown to the user.
+ \brief The HbMessageBox class provides a modal dialog for informing the user or for asking the user a question and receiving an answer.
+
+ \image html information.PNG "An information MessageBox"
+ \image html question.PNG "A question MessageBox"
+ \image html warning.PNG "A warning MessageBox"
Using HbMessageBox, the following dialogs can be created:
@@ -183,6 +187,7 @@
All the three dialogs(information, warning, question) supported by MessageBox are by default modal in nature, with
a dismiss policy of NoDismiss, timeout policy of NoTimeout, and with a BackgroundFade property on.
+ The user must click the OK/Yes/No buttons to dismiss the Message Box.
Example code for launching MessageBox using static convenience functions:
@@ -197,26 +202,6 @@
HbMessageBox::question(questionText, this, SLOT(onDialogClose(HbAction*)), primaryButtonText, secondaryButtonText, headWidget, scene, parent);
\endcode
- Example code to show an information messagebox:
-
- \code
- HbMessageBox *box = new HbMessageBox("This is an information dialog.");
- box->setAttribute(Qt::WA_DeleteOnClose);
- box->open();
- \endcode
-
- Example code to show an information messagebox with two action buttons:
- \code
- HbMessageBox *box = new HbMessageBox("XX will be deleted. Do you want to Continue ? ");
-
- //Add new action.
- box->addAction(new HbAction(HbWidget::tr("Cancel"), q));
-
- box->setAttribute(Qt::WA_DeleteOnClose);
-
- box->open();
- \endcode
-
Example code to show a question messagebox with a return value based action
\code
HbMessageBox *box = new HbMessageBox(" Delete file IC0002 ? ",HbMessageBox::MessageTypeQuestion);
--- a/src/hbwidgets/popups/hbprogressdialog.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/popups/hbprogressdialog.cpp Thu May 27 13:10:59 2010 +0300
@@ -231,7 +231,8 @@
\class HbProgressDialog
\brief HbProgressDialog provides feedback on the progress of a slow operation.
- \image html hbprogressdialog.png A progress dialog.
+ \image html progressdialog2.png "A normal Progress Dialog with icon and text"
+ \image html progressdialog2.png "A wait Progress Dialog with icon and text"
ProgressDialog widget displays that a process is active and also the completion level of the process to the user.
--- a/src/hbwidgets/sliders/hbprogressbar.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbprogressbar.cpp Thu May 27 13:10:59 2010 +0300
@@ -40,53 +40,65 @@
\class HbProgressBar
\brief HbProgressBar widget provides a vertical and horizontal progress bar.
- An infinite progressbar is also available.
-
- A progress bar is used to give the user an indication of the progress of an operation and to
- reassure them that the application is still running.
+
+ \image html progressbar.png "A Progress Bar with Min-Max text at bottom"
+ \image html infiniteprogressbar.png "An infinite progres bar"
- The progress bar uses the concept of steps. User can set it up by specifying the minimum and
- maximum possible step values, and it will display the percentage of steps that have been completed
- when you later give it the current step value.
-
- The percentage is calculated by dividing the progress (progressValue() - minimum()) divided by maximum() - minimum().
+ The HbProgressBar widget provides a horizontal or vertical progress bar.
- User can specify the minimum and maximum number of steps with setMinimum() and setMaximum() APIs.
- The current number of steps is set with setProgressValue().
+ A progress bar is used to give the user an indication of the progress of an operation and to reassure them that
+ the application is still running. The progress bar uses the concept of steps. You set it up by specifying the
+ minimum and maximum possible step values, and it will display the percentage of steps that have been completed
+ when you later give it the current step value. The percentage is calculated by dividing the
+ progress (value() - minimum()) divided by maximum() - minimum().
+
+ By default the min value is 0 and max value is 100.If minimum and maximum both are set to 0, the bar shows a busy indicator
+ instead of a percentage of steps.
- If minimum and maximum both are set to 0, the bar shows a busy indicator instead of a percentage of steps.
- This is useful, for example, when using ftp or http to download items when they are unable to
- determine the size of the item being downloaded.
-
- ProgressBar also supports adding text . min max text pair is also supported which is commonly
- used for progress indication for music.
+ ProgressBar also supports adding text . Min-Max text pair is also supported which is commonly
+ used for progress indication for music.
- \image html hbprogressbartext.png Left Aligned Text, Min Max Text.
-
Progress bar provides below signal.
\li valueChanged(int value) Emitted when the value of the progressbar is changed.
-*/
-
-/*!
- @beta
- \fn void HbProgressBar::valueChanged(int value)
-
- Emitted when the value of the progressbar is changed.
-*/
-/*!
- @beta
- \reimp
- \fn int HbProgressBar::type() const
- */
+ Example code for creating normal ProgressBar:
+ \code
+ HbProgressBar *pb = new HbProgressBar();
+ pb->setMinimum(0);
+ pb->setMaximum(500);
+ pb->setProgressValue(175);
+ \endcode
+
+ Example code for creating infinite ProgressBar:
+ \code
+ HbProgressBar *pb = new HbProgressBar();
+ pb->setMinimum(0);
+ pb->setMaximum(0);
+ \endcode
-/*!
- @beta
- \enum HbProgressBar::ProgressBarType
+ Example code for creating normal ProgressBar with Min-Max text at Top:
+ \code
+ HbProgressBar *pb = new HbProgressBar();
+ pb->setMinimum(0);
+ pb->setMaximum(500);
+ pb->setProgressValue(175);
+ pb->setMinMaxTextVisible(true);
+ pb->setMinMaxTextAlignment(Qt::AlignTop);// The possible options are Qt::AlignTop ,Qt::AlignBottom ,Qt::AlignCenter
+ pb->setminText("0");
+ pb->setmaxText("500");
- This enum defines available progress bar types.
+ \endcode
+
+ Example code for creating vertical normal ProgressBar:
+ \code
+ HbProgressBar *pb = new HbProgressBar();
+ pb->setOrientation(Qt::Vertical);
+ pb->setMinimum(0);
+ pb->setMaximum(500);
+ pb->setProgressValue(175);
+ \endcode
*/
@@ -275,8 +287,9 @@
/*!
@beta
- Constructor of Progressbar.
- \param parent. Parent widget
+ Constructs a progress bar with the given parent.
+ By default, the minimum step value is set to 0, and the maximum to 100.
+ \param parent The parent of ProgressBar
*/
HbProgressBar::HbProgressBar(QGraphicsItem *parent) :
@@ -305,7 +318,6 @@
/*!
@beta
Return the inverted appearence property.
-
\sa setInvertedAppearance()
*/
bool HbProgressBar::invertedAppearance() const
@@ -346,7 +358,7 @@
@beta
Sets the maximum value of the progressbar. By default it is 100.
- \param maximum the max value
+ \param maximum the maximum value
\sa maximum()
*/
@@ -372,7 +384,7 @@
@beta
Sets the minimum value of the progressbar. By default it is 0.
- \param maximum the max value
+ \param minimum the minimum value
\sa minimum()
*/
@@ -410,14 +422,13 @@
/*!
@beta
This function is provided for convenience.
-
Sets the progress bar's minimum and its maximum.
If maximum is smaller than minimum, minimum becomes the only valid legal
value.
- \param minimum the minimum value
- \param maximum the maximum value
+ \param minimum the minimum value
+ \param maximum the maximum value
*/
void HbProgressBar::setRange(int minimum, int maximum)
{
@@ -427,7 +438,8 @@
/*!
@beta
- Sets the min text string.
+ A text can be shown at top,bottom or left-right of the progressbar near minimum and maximum.
+ This will set the text near the minimum point.
\param text mintext string
@@ -457,7 +469,8 @@
/*!
@beta
- Sets the max text string.
+ A text can be shown at top,bottom or left-right of the progressbar near minimum and maximum.
+ This will set the text near the minimum point.
\param text max text string
@@ -596,8 +609,8 @@
}
/*!
- Returns the pointer for \a primitive passed.
- Will return NULL if \a primitive passed is invalid
+ \deprecated HbProgressBar::primitive(HbStyle::Primitive)
+ is deprecated.
*/
QGraphicsItem* HbProgressBar::primitive(HbStyle::Primitive primitive) const
{
@@ -653,10 +666,8 @@
}
/*!
- Initializes \a option with the values from this HbProgressBar. This method
- is useful for subclasses when they need a HbStyleOptionProgressBar, but don't
- want to fill in all the information themselves.
- */
+ \reimp
+*/
void HbProgressBar::initStyleOption(HbStyleOptionProgressBar *option) const
{
--- a/src/hbwidgets/sliders/hbprogressslider.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbprogressslider.cpp Thu May 27 13:10:59 2010 +0300
@@ -86,11 +86,11 @@
void HbProgressSliderPrivate::setEnableFlag(bool flag)
{
Q_Q(HbProgressSlider);
-
- HbStyleOptionProgressSlider option;
+
+ HbStyleOptionProgressSlider option;
q->initStyleOption(&option);
- if(!flag) {
+ if(!flag) {
q->setProgressValue(q->minimum());
q->setSliderValue(q->minimum());
}
@@ -212,7 +212,12 @@
@beta
@hbwidgets
\class HbProgressSlider
- \brief Constructs a basic progress slider.
+ \brief ProgressSlider is used to indicate the current position of a playing music or video.It can show the progress
+ of a progressing music or video along with the status of the buffered data.
+
+ \image html progressslider.png "A Progress Slider with Min-Max text at bottom "
+
+
ProgressSlider is a basic slider but the track is like a progressbar indicating how much progress
has been done. its a slider with progressbar as its track with some additional behaviour.
There is also a progressValue which indicates the amount of buffered data.General use
@@ -220,6 +225,7 @@
progressValue as the buffered amount.
HbProgressSlider is derived from HbProgressBar so it supports all the features supported by HbProgressBar.
+ But It supports only horizontal orientation.
HbProgressSlider emits below signals
@@ -231,13 +237,31 @@
sliderReleased is emits when the track is released.
sliderMoved is emits when the handle is moved in any direction.
+ The Application can customize the Slider behaviour by listening the signals sliderPressed and sliderReleased.By default there
+ is no behaviour defined by HbProgressSlider for these actions.
- sample code showing how this can be connected. If the Application has different use case based on
- Slider press and slider release they can customize the behaviour.
+ By default the min value is 0 and max value is 100. The application can set the progressValue (buffer data) and
+ sliderValue (Progress Slider position) according to the situation.
+ Example code for creating and using Progress Slider:
\code
- HbProgressSlider *object = new HbProgressSlider(parent);
+ HbProgressSlider *mySlider = new HbProgressSlider(parent);
connect(mySlider,SIGNAL(sliderMoved(int)), mySlider ,SLOT(setSliderValue(int)));
+ //This sets the buffered data progress
+ mySlider->setProgressValue(45);
+ \endcode
+
+
+ Example code for creating and using Progress Slider along with Min-Max text:
+ \code
+ HbProgressSlider *mySlider = new HbProgressSlider(parent);
+ connect(mySlider,SIGNAL(sliderMoved(int)), mySlider ,SLOT(setSliderValue(int)));
+ //This sets the buffered data progress
+ mySlider->setProgressValue(45);
+ mySlider->setMinText("0");
+ mySlider->setMaxText("100");
+ //This sets the slider position
+ mySlider->setSliderValue(20);
\endcode
*/
@@ -275,7 +299,8 @@
/*!
@beta
- Constructs a progressslider with a parent.
+ Constructs a progress bar with the given parent.
+ \param parent The parent of ProgressBar
*/
HbProgressSlider::HbProgressSlider(HbProgressSliderPrivate &dd,QGraphicsItem *parent) :
HbProgressBar( dd,parent)
@@ -386,7 +411,9 @@
}
}
-
+/*!
+ \reimp
+ */
void HbProgressSlider::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
Q_D(HbProgressSlider);
@@ -416,7 +443,9 @@
event->ignore();
}
}
-
+/*!
+ \reimp
+ */
void HbProgressSlider::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
{
Q_D(HbProgressSlider);
@@ -439,19 +468,19 @@
event->ignore();
}
}
-
+/*!
+ \reimp
+ */
void HbProgressSlider::setGeometry(const QRectF & rect)
{
Q_D(HbProgressSlider);
HbProgressBar::setGeometry(rect);
d->handle->setHandlePosForValue(sliderValue());
- updatePrimitives();
+ //updatePrimitives();
}
/*!
- Initializes \a option with the values from this HbProgressSlider.
- This method is useful for subclasses when they need a HbStyleOptionProgressSlider,
- but don't want to fill in all the information themselves.
+ \reimp
*/
void HbProgressSlider::initStyleOption( HbStyleOptionProgressSlider *option ) const
{
@@ -468,7 +497,9 @@
option->disableState = true;
}
}
-
+/*!
+ \reimp
+ */
void HbProgressSlider::updatePrimitives()
{
Q_D(HbProgressSlider);
@@ -503,7 +534,9 @@
}
}
}
-
+/*!
+ \reimp
+ */
void HbProgressSlider::showEvent( QShowEvent * event )
{
Q_D(const HbProgressSlider);
@@ -514,6 +547,9 @@
HbProgressBar::showEvent(event);
}
+/*!
+ \reimp
+ */
QVariant HbProgressSlider::itemChange(GraphicsItemChange change,const QVariant & value)
{
Q_D(HbProgressSlider);
@@ -531,7 +567,9 @@
}
return HbProgressBar::itemChange(change, value);
}
-
+/*!
+ \reimp
+ */
bool HbProgressSlider::sceneEventFilter(QGraphicsItem *obj,QEvent *event)
{
Q_D(HbProgressSlider);
@@ -554,9 +592,8 @@
/*!
@beta
- Sets the tooltip for the handle. By default it shows the slider value.
- If the Application wants to configure this they use setSliderToolTip for
- setting the new tooltip text.
+ Sets the tooltip for the Slider handle. By default it shows the slider value.
+ The application can customize the tooltip text using this API.
\param text tooltip text
--- a/src/hbwidgets/sliders/hbratingslider.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbratingslider.cpp Thu May 27 13:10:59 2010 +0300
@@ -140,47 +140,50 @@
/*!
\class HbRatingSlider
- \brief A control for user to do rating.
-
- This is a general rating widget where user will be able to do different
- ratings for things like Music ,Video etc.
+ \brief This is a widget through which user can do rating for videos , music etc.
+ \image html ratingslider.png "A Rating Slider with rating done"
- By default there are 5 ratings ( 5 stars ). This can be configured also.
- The interval , number of icons etc can be configured.
+ By default there are 5 ratings. The default rating graphics comes from theme.It supports custom graphics
+ also.The custom graphics should contain only 1 star.Using the API \a setNumberOfIcons() number of icons can be
+ configured.By default it is 5 and maximum number of icons is 10.
- Apart from rating the this can used for showing cumulative rating also.
+ Along with the rating HbRatingSlider can be used to show the cumulative rating also.
- example code example:
+ To use HbRatingSlider with default settings it just needs to be created.
+ example code:
\code
HbRatingSlider *object = new HbRatingSlider(parent);
\endcode
- The below code can be used to show some rating e.g. 2.5/5
- by default the stepcount =5
+ HbRatingSlider emits below signals
+
+ void ratingDone(int ratingValue);
+ void ratingChanged(int ratingValue);
+ ratingDone is emits when the user does the rating and releases the finger.
+ ratingChanged is emits when the user changes the rating by simply moving on the Rating Slider
+
+ HbRatingSlider supports integer ratings.But using the API \a setStepCount() fraction ratings can also be
+ shown on Rating Slider
+
+ The below code can be used to show some rating e.g. 2.5/5
\code
+ //2.5/5 can be set as 25/50
HbRatingSlider *slider = new HbRatingSlider();
- slider->setStepCount(100); //5 *20//
- slider->setCurrentRating(50); //2.5*20 it shows 50 / 100 which is same as 2.5/5
+ slider->setStepCount(50); //5 *10//
+ slider->setCurrentRating(25); //2.5*10 it shows 25/50 which is same as 2.5/5
\endcode
- This will show as 2.5/5. Now if one the same ratingslider
- if the Application wants to configure a rating slider with range 1-5
- on emitting the signal rating changed it can set to
- slider->setStepCount(5);
- slider->setCurrentRating(0)
-
- When the rating is done it emits a signal called ratingDone and when rating is
- changed by the user by draging the pointer ratingChanged signal is emitted.
-
+ This will show as 2.5/5. Now if on the same ratingslider
+ the Application wants to configure a rating slider with range 1-5
+ on emitting the signal rating changed it can set to 5.
*/
-
/*!
@beta
- Constructor of RatingSlider.
- \param parent. Parent widget
+ Constructs a Rating Slider bar with the given parent.
+ \param parent Parent Item.
*/
@@ -195,8 +198,7 @@
/*!
@beta
- Constructor of RatingSlider.
- \param parent. Parent widget
+ Protected constructor
*/
HbRatingSlider::HbRatingSlider(HbRatingSliderPrivate &dd,QGraphicsItem *parent) :
HbWidget( dd,parent)
@@ -232,9 +234,8 @@
/*!
@beta
- Sets the number of icons. In a Rating scenario you may have number of repeated icons. This API can be used to set
- the number of icons required. For Example the default image is "*" and you have 5 stars. You can set the number of
- stars using this. By default this value is 5.
+ Sets the number of icons. There can be n number of repeated icons. This method can be used to set
+ the number of icons required.The default image is "*" and have 5 stars.
\param number. A value between 1 and 10
@@ -268,9 +269,8 @@
/*!
@beta
- Sets the step count for the rating slider. If the number of icons is 5 and step count is 10 then it is possible to have 10 ratings.
- one rating will be half star (by default). If the number of icons is 5 and step count is 5 then 5 ratings are possible. In this
- case one rating will be one complete star. By default this value is 5.
+ Sets the step count for the rating slider.This indicates the interval of the rating. Eg. If step count is 10
+ then 10 rating is possible.
\param count. A value between 1 and 100. This can be considerd as the maximum rating possible.
@@ -521,6 +521,9 @@
}
}
#else
+/*!
+ \reimp
+ */
void HbRatingSlider::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
Q_UNUSED(event)
@@ -528,6 +531,9 @@
#endif
#ifdef HB_GESTURE_FW
+/*!
+ \reimp
+ */
void HbRatingSlider::gestureEvent(QGestureEvent *event)
{
Q_D (HbRatingSlider);
@@ -671,7 +677,9 @@
updatePrimitives();
d->createLookupTable();
}
-
+/*!
+ \reimp
+ */
void HbRatingSlider::initStyleOption(HbStyleOption *hboption) const
{
Q_D( const HbRatingSlider );
@@ -710,7 +718,9 @@
return 0;
}
}
-
+/*!
+ \reimp
+ */
void HbRatingSlider::changeEvent(QEvent *event)
{
HbWidget::changeEvent(event);
@@ -722,6 +732,9 @@
break;
}
}
+/*!
+ \reimp
+ */
void HbRatingSlider::updatePrimitives()
{
Q_D(HbRatingSlider);
@@ -740,7 +753,9 @@
}
}
-
+/*!
+ \reimp
+ */
QVariant HbRatingSlider::itemChange(GraphicsItemChange change, const QVariant &value)
{
if(change == ItemVisibleHasChanged && value.toBool()){
--- a/src/hbwidgets/sliders/hbslider.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbslider.cpp Thu May 27 13:10:59 2010 +0300
@@ -31,6 +31,7 @@
#include "hbsliderhandle_p.h"
#include "hbstyleoptionslider_p.h"
+#include "hbslidertickmarks_p.h"
#include "hbslidertickmarkslabel_p.h"
#include "hbabstractbutton.h"
#include <hbwidgetfeedback.h>
@@ -243,7 +244,12 @@
HbSliderPrivate::HbSliderPrivate( ) :
sliderControl( 0 ),
orientation( Qt::Vertical ),
- pressOnIncrement( false )
+ pressOnIncrement( false ),
+ tickmarksLeft( 0 ), // slider left/top tick mark item
+ tickmarksRight( 0 ),// slider right/bottom tick mark item
+ tickmarkslabelLeft( 0 ),// slider left/above tick mark label
+ tickmarkslabelRight ( 0 )// slider right/bottom tick mark label
+
{
elementItemMap.clear();
@@ -293,6 +299,11 @@
// repolish call is required because new elements might be added
}
+QSizeF HbSliderPrivate::getHandleSize( )
+{
+ return sliderControl ->getHandleSize();
+}
+
/*!
This api creates widget for given element
*/
@@ -464,6 +475,242 @@
}
+
+
+
+void HbSliderPrivate::createTickMarks( )
+{
+ Q_Q ( HbSlider);
+ bool modified = false;
+ if( q->majorTickInterval( ) <= 0) {
+ return;
+ }
+ if ( q->tickPosition( ) & Hb::SliderTicksLeft) {
+ if (!tickmarksLeft) {
+ tickmarksLeft = new HbSliderTickmarks(q);
+ tickmarksLeft->setZValue(sliderControl->zValue()-1);
+ tickmarksLeft->setTickPosition (Hb::SliderTicksLeft);
+ modified = true;
+ if ( orientation == Qt::Vertical ) {
+ HbStyle::setItemName( tickmarksLeft, "tick-marksleft" );
+ } else {
+ HbStyle::setItemName( tickmarksLeft, "tick-marksabove" );
+ }
+ }
+
+ } else if ( tickmarksLeft ) {
+ delete tickmarksLeft;
+ tickmarksLeft = 0;
+ modified = true;
+ }
+ if ( q->tickPosition( ) & Hb::SliderTicksRight) {
+ if (!tickmarksRight) {
+ tickmarksRight = new HbSliderTickmarks(q);
+ tickmarksRight->setTickPosition (Hb::SliderTicksRight);
+ tickmarksRight->setZValue(sliderControl->zValue()-1);
+ modified = true;
+
+ if ( orientation == Qt::Vertical ) {
+ HbStyle::setItemName( tickmarksRight, "tick-marksright" );
+ } else {
+ HbStyle::setItemName( tickmarksRight, "tick-marksbelow" );
+ }
+ }
+ } else if ( tickmarksRight ) {
+ delete tickmarksRight;
+ tickmarksRight = 0;
+ modified = true;
+ }
+ if ( orientation == Qt::Vertical ) {
+ if ( q->tickPosition( ) & Hb::SliderTicksAbsolute) {
+ q->setLayoutDirection (Qt::LeftToRight );
+ } else {
+ q->unsetLayoutDirection( );
+ }
+ } else {
+ q->unsetLayoutDirection( );
+ }
+
+ if ( modified) {
+ q->repolish( );
+ }
+}
+
+
+void HbSliderPrivate::createTickLabels( )
+{
+ Q_Q(HbSlider);
+ bool modified = false;
+ if( q->majorTickInterval( ) <= 0 || q->majorTickLabels( ).isEmpty( ) ) {
+ return;
+ }
+ if ( q->tickPosition( ) & Hb::SliderTicksLeft) {
+ if (!tickmarkslabelLeft) {
+ modified = true;
+ tickmarkslabelLeft = new HbSliderTickmarksLabel(q);
+ tickmarkslabelLeft->setTickPosition (Hb::SliderTicksLeft);
+ if ( orientation == Qt::Vertical ) {
+ HbStyle::setItemName( tickmarkslabelLeft, "tick-textsleft" );
+ } else {
+ HbStyle::setItemName( tickmarkslabelLeft, "tick-textsabove" );
+ }
+ }
+ } else if ( tickmarkslabelLeft ) {
+ modified = true;
+ delete tickmarkslabelLeft;
+ tickmarkslabelLeft = 0;
+ }
+ if ( q->tickPosition( ) & Hb::SliderTicksRight) {
+ if (!tickmarkslabelRight) {
+ modified = true;
+ tickmarkslabelRight = new HbSliderTickmarksLabel(q);
+ tickmarkslabelRight->setTickPosition (Hb::SliderTicksRight);
+ if ( orientation == Qt::Vertical ) {
+ HbStyle::setItemName( tickmarkslabelRight, "tick-textsright" );
+ } else {
+ HbStyle::setItemName( tickmarkslabelRight, "tick-textsbelow" );
+ }
+ }
+ } else if ( tickmarkslabelRight ) {
+ delete tickmarkslabelRight;
+ modified = true;
+ tickmarkslabelRight = 0;
+ }
+ if ( orientation == Qt::Vertical ) {
+ if ( q->tickPosition( ) & Hb::SliderTicksAbsolute) {
+ q->setLayoutDirection (Qt::LeftToRight );
+ }
+ }
+ if ( modified ) {
+ q->repolish( );
+ }
+}
+
+
+void HbSliderPrivate::setTickOrientation()
+{
+ Q_Q(HbSlider);
+ if ( orientation == Qt::Vertical ) {
+ if ( tickmarksLeft ) {
+ HbStyle::setItemName( tickmarksLeft, "tick-marksleft" );
+ }
+ if ( tickmarksRight) {
+ HbStyle::setItemName( tickmarksRight, "tick-marksright" );
+ }
+ if (tickmarkslabelLeft ) {
+ HbStyle::setItemName( tickmarkslabelLeft, "tick-textsleft" );
+ }
+ if (tickmarkslabelRight ) {
+ HbStyle::setItemName( tickmarkslabelRight, "tick-textsright" );
+ }
+ if ( q->tickPosition( )&Hb::SliderTicksAbsolute) {
+ q->setLayoutDirection (Qt::LeftToRight);
+ }
+ } else {
+ if ( tickmarksLeft ) {
+ HbStyle::setItemName( tickmarksLeft, "tick-marksabove" );
+ }
+ if ( tickmarksRight) {
+ HbStyle::setItemName( tickmarksRight, "tick-marksbelow" );
+ }
+ if (tickmarkslabelLeft ) {
+ HbStyle::setItemName( tickmarkslabelLeft, "tick-textsabove" );
+ }
+ if (tickmarkslabelRight ) {
+ HbStyle::setItemName( tickmarkslabelRight, "tick-textsbelow" );
+ }
+ q->unsetLayoutDirection( );
+
+
+ }
+
+}
+
+
+
+
+
+/*!
+ \internal
+ Updates tick and Label.
+ */
+void HbSliderPrivate::updateTickMarks( )
+{
+ if (tickmarksLeft) {
+ tickmarksLeft->updateTicks();
+ }
+ if (tickmarksRight) {
+ tickmarksRight->updateTicks();
+ }
+}
+
+
+/*!
+ \internal
+ Updates tick and Label.
+ */
+void HbSliderPrivate::updateTickLabels( )
+{
+ if( tickmarkslabelLeft ) {
+ tickmarkslabelLeft->updateTickLabels();
+ }
+ if( tickmarkslabelRight ) {
+ tickmarkslabelRight->updateTickLabels( );
+ }
+}
+
+
+/*!
+ \internal
+ Updates tick and Label.
+ */
+void HbSliderPrivate::deleteTickMarks( )
+{
+ Q_Q ( HbSlider );
+ bool deleted = false;
+ if (tickmarksLeft) {
+ delete tickmarksLeft;
+ tickmarksLeft = 0;
+ deleted = true;
+ }
+ if (tickmarksRight) {
+ delete tickmarksRight;
+ tickmarksRight = 0;
+ deleted = true;
+ }
+ if ( deleted ) {
+ q->repolish( );
+ }
+
+}
+
+
+/*!
+ \internal
+ Updates tick and Label.
+ */
+void HbSliderPrivate::deleteTickLabels( )
+{
+
+ Q_Q(HbSlider);
+ bool deleted = false;
+ if (tickmarkslabelLeft) {
+ delete tickmarkslabelLeft;
+ tickmarkslabelLeft = 0;
+ deleted = true;
+
+ }
+ if (tickmarkslabelRight) {
+ delete tickmarkslabelRight;
+ tickmarkslabelRight = 0;
+ deleted = true;
+ }
+ if (deleted) {
+ q->repolish( );
+ }
+
+ }
+
#ifdef HB_EFFECTS
/*!
@@ -551,7 +798,7 @@
}
/*!
- @proto
+ @beta
Returns the list of slider elements as QVariant
\note it is safe to type-cast element to HbSlider::SliderElement.
@@ -571,7 +818,7 @@
}
/*!
- @proto
+ @beta
Sets the elements of the slider.
\note Duplicate elements will be ignored.
@@ -603,7 +850,7 @@
}
/*!
- @proto
+ @beta
Sets the icons for elements
key of \a elements is element name and value is icon
@@ -658,7 +905,7 @@
}
/*!
- @proto
+ @beta
Returns the map , which consist of element name as key and icon name as value
returns NULL map if none of the element has icon
@@ -963,7 +1210,8 @@
if ( d->orientation != orientation ) {
d->orientation = orientation;
d->sliderControl->setOrientation( orientation );
- repolish();
+ d->setTickOrientation( );
+ repolish( );
}
}
@@ -1290,6 +1538,8 @@
Q_D( HbSlider );
d->sliderControl->setTickPosition( position );
d->setTickLabelPresentProperty( );
+ d->createTickMarks( );
+ d->createTickLabels( );
}
/*!
@@ -1346,6 +1596,16 @@
{
Q_D( HbSlider );
d->sliderControl->setMajorTickInterval( interval );
+ if (interval <=0 ) {
+ d->deleteTickMarks( );
+ d->deleteTickLabels( );
+ }
+ else {
+ d->createTickMarks( );
+ d->createTickLabels( );
+ d->updateTickMarks( );
+ d->updateTickLabels( );
+ }
d->setTickLabelPresentProperty( );
}
@@ -1377,6 +1637,8 @@
{
Q_D( HbSlider );
d->sliderControl->setMinorTickInterval( interval );
+ d->updateTickMarks( );
+ d->updateTickLabels( );
d->setTickLabelPresentProperty( );
}
@@ -1408,7 +1670,7 @@
/*!
- @proto
+ @beta
Sets whether to display progress track or not
\default value is true
@@ -1424,7 +1686,7 @@
}
/*!
- @proto
+ @beta
returns whether progress track is visible or not
\sa setTrackFilled( )
@@ -1478,7 +1740,13 @@
{
Q_D( HbSlider );
d->sliderControl->setMajorTickLabels( majorTickLabels );
- d->setTickLabelPresentProperty( );
+ if(majorTickLabels.isEmpty( )) {
+ d->deleteTickLabels( );
+ } else {
+ d->createTickLabels( );
+ d->updateTickLabels( );
+ d->setTickLabelPresentProperty( );
+ }
}
/*!
@@ -1504,6 +1772,7 @@
{
Q_D( HbSlider );
d->sliderControl->setMinorTickLabels( minorTickLabels );
+ d->updateTickLabels( );
d->setTickLabelPresentProperty( );
}
--- a/src/hbwidgets/sliders/hbslider.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbslider.h Thu May 27 13:10:59 2010 +0300
@@ -194,10 +194,14 @@
private:
Q_DECLARE_PRIVATE_D(d_ptr, HbSlider)
Q_DISABLE_COPY(HbSlider)
+ friend class HbSliderTickmarks;
+ friend class HbSliderTickmarksLabel;
+
#ifdef HB_EFFECTS
Q_PRIVATE_SLOT(d_func(), void _q_startIconPressedEffect())
Q_PRIVATE_SLOT(d_func(), void _q_startIconReleasedEffect())
Q_PRIVATE_SLOT(d_func(), void _q_startTextClickEffect())
+
#endif
};
--- a/src/hbwidgets/sliders/hbslider_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbslider_p.h Thu May 27 13:10:59 2010 +0300
@@ -29,9 +29,12 @@
#include "hbwidget_p.h"
#include <QHash>
+#include <hbslider.h>
class HbSliderControl;
class QGraphicsItem;
+class HbSliderTickmarksLabel;
+class HbSliderTickmarks;
struct ItemPrimitive
{
@@ -50,11 +53,27 @@
void init();
void setElements( QList<HbSlider::SliderElement> elementList);
void elementWidget(HbSlider::SliderElement element);
+ QSizeF getHandleSize( );
void updateElements();
void startIncrementing();
void startDecrementing();
void stopRepeatAction();
void setTickLabelPresentProperty();
+ void updateTickMarks();
+ void updateTickLabels();
+ void deleteTickMarks();
+ void deleteTickLabels();
+ void createTickMarks( );
+ void createTickLabels( );
+ void setTickOrientation( );
+
+public:
+ static HbSliderPrivate *d_ptr(HbSlider *slider) {
+ Q_ASSERT(slider);
+ return slider->d_func();
+ }
+
+
#ifdef HB_EFFECTS
void _q_startIconPressedEffect();
@@ -72,6 +91,12 @@
QString thumbPath;
bool pressOnIncrement;
QMap<HbSlider::SliderElement , ItemPrimitive> elementItemMap;
+ HbSliderTickmarks *tickmarksLeft;
+ HbSliderTickmarks *tickmarksRight;
+ HbSliderTickmarksLabel *tickmarkslabelLeft;
+ HbSliderTickmarksLabel *tickmarkslabelRight;
+ friend class HbSliderTickmarks;
+ friend class HbSliderTickmarksLabel;
};
--- a/src/hbwidgets/sliders/hbslidercontrol.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbslidercontrol.cpp Thu May 27 13:10:59 2010 +0300
@@ -62,10 +62,6 @@
minorTickInterval( 0 ),// minor tick interval
groove( 0 ), //slider groove
progressGroove( 0 ),//progress mask top of groove
- tickmarksLeft( 0 ), // slider left/top tick mark item
- tickmarksRight( 0 ),// slider right/bottom tick mark item
- tickmarkslabelLeft( 0 ),// slider left/above tick mark label
- tickmarkslabelRight ( 0 ),// slider right/bottom tick mark label
displayCurrValueToolTip( true ), // holds whether to show current value tooltip or not
toolTipAlignment( Qt::AlignTop|Qt::AlignRight ), // tooltip alignment
groovePressed( false ), // hold whether groove is pressed or not
@@ -129,57 +125,10 @@
q->setFlags( QGraphicsItem::ItemIsFocusable );
}
-/*!
- \internal
- Updates tick and Label.
- */
-void HbSliderControlPrivate::updateTickAndLabel( )
-{
- if (tickmarksLeft) {
- tickmarksLeft->updateTicks();
- }
- if (tickmarksRight) {
- tickmarksRight->updateTicks();
- }
- if( tickmarkslabelLeft ) {
- tickmarkslabelLeft->updateTickLabels();
- }
- if( tickmarkslabelRight ) {
- tickmarkslabelRight->updateTickLabels( );
- }
-}
/*!
\internal
- Updates tick and Label.
- */
-void HbSliderControlPrivate::deleteTickAndLabel( )
-{
- if (tickmarksLeft) {
- delete tickmarksLeft;
- tickmarksLeft = 0;
-
- }
- if (tickmarksRight) {
- delete tickmarksRight;
- tickmarksRight = 0;
- }
-
-
- if( tickmarkslabelLeft ) {
- delete tickmarkslabelLeft;
- tickmarkslabelLeft = 0;
- }
- if( tickmarkslabelRight ) {
- delete tickmarkslabelRight;
- tickmarkslabelRight = 0;
- }
-
-}
-
-/*!
- \internal
This is used to create the handle, is virtual and can be overridden to create different handle.
*/
HbSliderHandle *HbSliderControlPrivate::createHandle()
@@ -323,92 +272,6 @@
return ( q->sliderPosition( ) );
}
-void HbSliderControlPrivate::createSliderTicks( )
-{
-
- Q_Q ( HbSliderControl);
- if (! tickmarksLeft) {
- tickmarksLeft = new HbSliderTickmarks(q);
- tickmarksLeft->setTickPosition (Hb::SliderTicksLeft);
- }
- if (!tickmarksRight) {
- tickmarksRight = new HbSliderTickmarks(q);
- tickmarksRight->setTickPosition ( Hb::SliderTicksRight);
- }
- if ( orientation == Qt::Vertical ) {
- HbStyle::setItemName( tickmarksLeft, "tick-marksleft" );
- HbStyle::setItemName( tickmarksRight, "tick-marksright" );
- } else {
- HbStyle::setItemName( tickmarksLeft, "tick-marksabove" );
- HbStyle::setItemName( tickmarksRight, "tick-marksbelow" );
- }
-}
-
-void HbSliderControlPrivate::positionTickMarks( )
-{
- Q_Q (HbSliderControl);
- if (!tickmarksLeft||!tickmarksRight) {
- return;
- }
- // SliderTickLeft and SliderTicksAbove value is same
- if ( tickPosition & Hb::SliderTicksLeft) {
- tickmarksLeft->createIcons(true);
- } else {
- tickmarksLeft->createIcons(false);
- }
- if ( tickPosition & Hb::SliderTicksRight ) {
- tickmarksRight->createIcons(true);
- } else {
- tickmarksRight->createIcons(false);
- }
- if ( orientation == Qt::Vertical ) {
- if ( tickPosition & Hb::SliderTicksAbsolute) {
- q->setLayoutDirection (Qt::LeftToRight );
- }
- }
-}
-
-void HbSliderControlPrivate::createSliderTickLabels( )
-{
- Q_Q(HbSliderControl);
- if (! tickmarkslabelLeft) {
- tickmarkslabelLeft = new HbSliderTickmarksLabel(q);
- tickmarkslabelLeft->setTickPosition (Hb::SliderTicksLeft);
- }
- if (!tickmarkslabelRight) {
- tickmarkslabelRight = new HbSliderTickmarksLabel(q);
- tickmarkslabelRight->setTickPosition (Hb::SliderTicksRight );
- }
- if ( orientation == Qt::Horizontal ) {
- HbStyle::setItemName( tickmarkslabelLeft, "tick-textsabove" );
- HbStyle::setItemName( tickmarkslabelRight, "tick-textsbelow" );
- } else {
- HbStyle::setItemName( tickmarkslabelLeft, "tick-textsleft" );
- HbStyle::setItemName( tickmarkslabelRight, "tick-textsright" );
- }
-
-}
-
-
-void HbSliderControlPrivate::positionTickMarksLabel( )
-{
- if (!tickmarkslabelLeft||!tickmarkslabelRight) {
- return;
- }
- // SliderTickLeft and SliderTicksAbove value is same
- if ( tickPosition & Hb::SliderTicksLeft) {
- tickmarkslabelLeft->createText(true);
- } else {
- tickmarkslabelLeft->createText(false);
- }
- if ( tickPosition & Hb::SliderTicksRight ) {
- tickmarkslabelRight->createText(true);
- } else {
- tickmarkslabelRight->createText(false);
- }
-}
-
-
/*!
Constructs a slider control with \a parent.
*/
@@ -482,26 +345,7 @@
Q_D( HbSliderControl );
if ( d->tickPosition != position ) {
d->tickPosition = position;
- unsetLayoutDirection( );
- if ( position == Hb::NoSliderTicks) {
- d->deleteTickAndLabel( );
- } else {
- if ( (!d->tickmarksLeft || !d->tickmarksRight) && d->majorTickInterval > 0) {
- d->createSliderTicks( );
- d->positionTickMarks( );
- repolish( );
-
- }
- if ( (!d->tickmarkslabelLeft || !d->tickmarkslabelRight) && d->majorTickInterval > 0 &&
- (!d->majorLabel.isEmpty( ) || (!d->minorLabel.isEmpty( ) && d->minorTickInterval > 0) ) ) {
- d->createSliderTickLabels( );
- d->positionTickMarksLabel ( );
- repolish( );
- }
- d->positionTickMarks( );
- d->positionTickMarksLabel( );
- }
- }
+ }
}
/*!
@@ -531,29 +375,7 @@
Q_D( HbSliderControl );
if ( d->majorTickInterval != interval ) {
d->majorTickInterval = qAbs ( interval );
- if (interval <= 0 ) {
- d->deleteTickAndLabel();
- repolish();
- } else if( d->tickPosition!=Hb::NoSliderTicks) {
- if( !d->tickmarksLeft || !d->tickmarksRight) {
- d->createSliderTicks( );
- d->positionTickMarks( );
- repolish( );
- } else {
- d->tickmarksLeft->updateTicks( );
- d->tickmarksRight->updateTicks( );
- }
- if ( (!d->tickmarkslabelRight || !d->tickmarkslabelLeft) && (!d->majorLabel.isEmpty( ) ||
- (d->minorTickInterval >0 &&! d->minorLabel.isEmpty( )))) {
- d->createSliderTickLabels( );
- d->positionTickMarksLabel( );
- repolish( );
- }
- if ( d->snappingMode == MajorTickSnapping ) {
- updateSliderPosToTick( );
- }
- }
}
}
@@ -582,15 +404,6 @@
Q_D( HbSliderControl );
if ( d->minorTickInterval != interval ) {
d->minorTickInterval = qAbs ( interval );
- if ( d->tickmarksLeft && d->tickmarksRight ) {
- d->tickmarksLeft->updateTicks( );
- d->tickmarksRight->updateTicks( );
- }
- if ( d->majorTickInterval > 0 && ( !d->minorLabel.isEmpty() && d->minorTickInterval > 0) &&
- (!d->tickmarkslabelLeft || !d->tickmarkslabelRight) && d->tickPosition!=Hb::NoSliderTicks) {
- d->createSliderTickLabels( );
- repolish( );
- }
if ( d->snappingMode == MinorTickSnapping && d->minorTickInterval > 0 && d->tickPosition!= Hb::NoSliderTicks ) {
updateSliderPosToTick( );
}
@@ -638,28 +451,7 @@
{
Q_D( HbSliderControl );
d->majorLabel = majorTickLabels;
- if (d->majorLabel.isEmpty( ) && (d->minorLabel.isEmpty( )|| d->minorTickInterval <=0) ) {
- if (d->tickmarkslabelLeft) {
- delete d->tickmarkslabelLeft;
- d->tickmarkslabelLeft =0;
- }
- if( d->tickmarkslabelRight) {
- delete d->tickmarkslabelRight;
- d->tickmarkslabelRight =0;
- }
- repolish( );
- } else {
- if ((!d->tickmarkslabelLeft || !d->tickmarkslabelRight) && !d->majorLabel.isEmpty( ) &&
- d->majorTickInterval > 0 && d->tickPosition!=Hb::NoSliderTicks) {
- d->createSliderTickLabels( );
- d->positionTickMarksLabel( );
- repolish( );
- } else if ( d->tickmarkslabelLeft && d->tickmarkslabelRight ) {
- d->tickmarkslabelLeft->updateTickLabels( );
- d->tickmarkslabelRight->updateTickLabels( );
- }
- }
}
/*!
@@ -684,25 +476,6 @@
{
Q_D( HbSliderControl );
d->minorLabel = minorTickLabels;
- if (d->majorLabel.isEmpty( ) && (d->minorLabel.isEmpty( )|| d->minorTickInterval <=0) ) {
- if (d->tickmarkslabelLeft) {
- delete d->tickmarkslabelLeft;
- }
- if( d->tickmarkslabelRight) {
- delete d->tickmarkslabelRight;
- }
- repolish( );
-
- } else {
- if ((!d->tickmarkslabelLeft || !d->tickmarkslabelRight) &&
- d->majorTickInterval > 0 && d->tickPosition!=Hb::NoSliderTicks) {
- d->createSliderTickLabels( );
- repolish( );
- } else if ( d->tickmarkslabelLeft && d->tickmarkslabelRight) {
- d->tickmarkslabelLeft->updateTickLabels( );
- d->tickmarkslabelRight->updateTickLabels( );
- }
- }
}
@@ -786,7 +559,6 @@
switch ( event->type( ) ) {
case QEvent::LayoutDirectionChange:
d->adjustHandle( );
- d->updateTickAndLabel( );
break;
case QEvent::StyleChange:
// HbSlider::boundingRect( ) result depends on current style
@@ -1076,7 +848,26 @@
setSliderPosition( pressValue );
triggerAction( SliderMove );
setRepeatAction( SliderNoAction, pressValue );
+ HbWidgetFeedback::triggered( this, Hb::InstantReleased );
+ if ( d->groovePressed ) {
+#ifdef HB_EFFECTS
+ if( orientation( ) == Qt::Horizontal ) {
+ HbEffectInternal::add( HB_SLIDERCONTROL_TYPE,"slider_h_trackrelease", "h_trackrelease" );
+ HbEffect::start( d->groove, HB_SLIDERCONTROL_TYPE, "h_trackrelease" );
+ } else {
+ HbEffectInternal::add( HB_SLIDERCONTROL_TYPE,"slider_v_trackrelease", "v_trackrelease" );
+ HbEffect::start( d->groove, HB_SLIDERCONTROL_TYPE, "v_trackrelease" );
+ }
+#endif
+ HbStyleOptionSlider opt;
+ d->groovePressed = false;
+ initStyleOption( &opt );
+ // update primitive from press to normal
+ style( )->updatePrimitive( d->groove, HbStyle::P_Slider_groove, &opt );
}
+ }
+ break;
+
case Qt::GestureCanceled: {
if ( d->groovePressed ) {
#ifdef HB_EFFECTS
@@ -1095,6 +886,8 @@
style( )->updatePrimitive( d->groove, HbStyle::P_Slider_groove, &opt );
}
}
+ break;
+
default:
break;
}
@@ -1145,8 +938,18 @@
HbWidgetFeedback::triggered( this, Hb::InstantPressed );
event->ignore();
break;
- }
+ } else {
+ setSliderDown( false );
+ d->groovePressed = false;
+ updatePrimitives( );
+ d->handle->updatePrimitives();
+ d->handleMoving = false;
+ event->ignore();
+ HbAbstractSliderControl::gestureEvent(event);
+ }
+
}
+ break;
case Qt::GestureFinished:
case Qt::GestureCanceled: {
setSliderDown( false );
@@ -1157,6 +960,7 @@
event->ignore();
HbAbstractSliderControl::gestureEvent(event);
}
+ break;
default:
break;
}
@@ -1208,7 +1012,6 @@
updatePrimitives( );
repolish();
d->adjustHandle( );
- d->updateTickAndLabel( );
}
/*!
reimp
@@ -1216,16 +1019,12 @@
*/
void HbSliderControl::polish( HbStyleParameters& params )
{
-
Q_D( HbSliderControl );
HbStyleOptionSlider option;
initStyleOption( &option );
HbAbstractSliderControl::polish( params );
d->adjustHandle( );
- d->updateTickAndLabel();
updatePrimitives( );
-
-
}
/*!
@@ -1331,7 +1130,7 @@
}
}
-bool HbSliderControl::handleVisible() const
+bool HbSliderControl::handleVisible( ) const
{
Q_D( const HbSliderControl );
return d->handle->isVisible();
@@ -1347,52 +1146,16 @@
d->adjustHandle( );
if ( change == SliderOrientationChange ) {
//Layout is not mirrored in vertical orientation with absolute ticks
- if ( d->orientation == Qt::Horizontal ) {
- } else if ( d->tickPosition&Hb::SliderTicksAbsolute) {
- setLayoutDirection (Qt::LeftToRight);
- }
if(d->orientation ==Qt::Horizontal) {
- unsetLayoutDirection( );
if (!d->userDefinedTooltipAlign) {
d->toolTipAlignment = ( Qt::AlignTop|Qt::AlignHCenter );
}
- setProperty("orientation",(Qt::Orientation)1);
- if ( d->tickmarksLeft && d->tickmarksRight) {
- HbStyle::setItemName( d->tickmarksLeft, "tick-marksabove" );
- HbStyle::setItemName( d->tickmarksRight, "tick-marksbelow" );
- }
- if ( d->tickmarkslabelLeft && d->tickmarkslabelRight ) {
- HbStyle::setItemName( d->tickmarkslabelLeft, "tick-textsabove" );
- HbStyle::setItemName( d->tickmarkslabelRight, "tick-textsbelow" );
- }
-
} else {
- setProperty("orientation",(Qt::Orientation)2);
- if ( d->tickPosition & Hb::SliderTicksAbsolute) {
- setLayoutDirection (Qt::LeftToRight);
- }
if (!d->userDefinedTooltipAlign) {
d->toolTipAlignment = ( Qt::AlignTop|Qt::AlignRight );
}
- if ( d->tickmarksLeft && d->tickmarksRight) {
- HbStyle::setItemName( d->tickmarksLeft, "tick-marksleft" );
- HbStyle::setItemName( d->tickmarksRight, "tick-marksright" );
- if ( d->tickPosition & Hb::SliderTicksAbsolute ) {
- setLayoutDirection (Qt::LeftToRight );
- }
- }
- if ( d->tickmarkslabelLeft && d->tickmarkslabelRight ) {
- HbStyle::setItemName( d->tickmarkslabelLeft, "tick-textsleft" );
- HbStyle::setItemName( d->tickmarkslabelRight, "tick-textsright" );
- }
-
}
repolish( );
- if ( d->tickmarkslabelLeft && d->tickmarkslabelRight ) {
- d->tickmarkslabelLeft->updateTickLabels( );
- d->tickmarkslabelRight->updateTickLabels( );
- }
-
}
}
@@ -1569,6 +1332,17 @@
return d->trackHandlingEnable ;
}
+/*!
+ Gets the size of the handle
+ */
+
+QSizeF HbSliderControl::getHandleSize ( )
+{
+ Q_D( HbSliderControl );
+ return d->handle->size( ) ;
+}
+
+
void HbSliderControl::setTrackFilled(bool trackVisible )
{
--- a/src/hbwidgets/sliders/hbslidercontrol_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbslidercontrol_p.h Thu May 27 13:10:59 2010 +0300
@@ -98,6 +98,7 @@
void setTrackFilled(bool trackVisible );
bool isTrackFilled() const;
+ QSizeF getHandleSize() ;
public slots:
void updateTheme();
--- a/src/hbwidgets/sliders/hbslidercontrol_p_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbslidercontrol_p_p.h Thu May 27 13:10:59 2010 +0300
@@ -49,17 +49,11 @@
void adjustHandle();
bool onHandle(QPointF pos);
int getNearbyTick();
- void updateTickAndLabel();
- void deleteTickAndLabel();
-
virtual HbSliderHandle *createHandle();
virtual QGraphicsItem *createGroove();
virtual QGraphicsItem *createProgressGroove();
- void createSliderTicks( );
- void positionTickMarks( );
- void createSliderTickLabels( );
- void positionTickMarksLabel ( );
+
HbSliderHandle *handle;
Hb::SliderTickPositions tickPosition;
HbSliderControl::SnappingMode snappingMode;
@@ -67,10 +61,8 @@
int minorTickInterval;
QGraphicsItem *groove;
QGraphicsItem *progressGroove;
- HbSliderTickmarks *tickmarksLeft;
- HbSliderTickmarks *tickmarksRight;
- HbSliderTickmarksLabel *tickmarkslabelLeft;
- HbSliderTickmarksLabel *tickmarkslabelRight;
+
+
bool displayCurrValueToolTip;
QPointF oldPos;
Qt::Alignment toolTipAlignment;
--- a/src/hbwidgets/sliders/hbsliderhandle.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbsliderhandle.cpp Thu May 27 13:10:59 2010 +0300
@@ -319,9 +319,8 @@
*/
void HbSliderHandle::gestureEvent(QGestureEvent *event)
-{
+{
Q_UNUSED(event);
- // HbWidgetBase::gestureEvent() ignores, overriding to accept
}
/*!
--- a/src/hbwidgets/sliders/hbslidertickmarks.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbslidertickmarks.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,14 +25,25 @@
#include "hbslidertickmarks_p.h"
#include "hbwidget_p.h"
-#include "hbslidercontrol_p.h"
#include "hbsliderhandle_p.h"
+#include "hbslider_p.h"
#include <hbstyle.h>
#include <hbstyleoptionslider_p.h>
#include <hbstyle.h>
#include <hbapplication.h>
#include <hbiconitem.h>
+#include <hbslider.h>
#include <QList>
+#include <QGraphicsItem>
+#include <QGraphicsSceneEvent>
+#include <QGraphicsScene>
+
+
+#ifdef HB_EFFECTS
+#include "hbeffect.h"
+#include "hbeffectinternal_p.h"
+#define HB_SLIDER_TYPE "HB_SLIDER"
+#endif
@@ -46,11 +57,10 @@
public:
HbSliderTickmarksPrivate();
void createTicks( );
- void updateTickSize( );
HbStyleOptionSlider sliderOption;
QList<QGraphicsWidget *> tickmarkmajorIcons;
QList<QGraphicsWidget *> tickmarkminorIcons;
- HbSliderControl *sliderControl;
+ HbSlider *slider;
Hb::SliderTickPositions tickPosition;
bool createIcons;
int majorTickWidth;
@@ -63,7 +73,7 @@
HbSliderTickmarksPrivate::HbSliderTickmarksPrivate() :HbWidgetPrivate(){
tickmarkmajorIcons.clear();
tickmarkminorIcons.clear();
- sliderControl = 0;
+ slider = 0;
tickPosition = Hb::NoSliderTicks;
createIcons = true;
majorTickWidth = 0;
@@ -79,10 +89,10 @@
if(!createIcons){
return;
}
- int minimum = sliderControl->minimum();
- int maximum = sliderControl->maximum();
- int majorTickInterval = sliderControl->majorTickInterval ( );
- int minorTickInterval = sliderControl->minorTickInterval ( );
+ int minimum = slider->minimum();
+ int maximum = slider->maximum();
+ int majorTickInterval = slider->majorTickInterval ( );
+ int minorTickInterval = slider->minorTickInterval ( );
if (majorTickInterval) {
int totalMajorTicks = ((maximum-minimum)/majorTickInterval)+1;
int majorIconListLength = tickmarkmajorIcons.length();
@@ -128,19 +138,6 @@
q->setProperty("state", "normal");
}
-void HbSliderTickmarksPrivate::updateTickSize()
-{
- for(int i=0;i<tickmarkmajorIcons.length();i++) {
- tickmarkmajorIcons.at(i)->setMinimumSize(majorTickWidth,majorTickHeight);
- tickmarkmajorIcons.at(i)->setMaximumSize(majorTickWidth,majorTickHeight);
- }
- for(int i=0;i<tickmarkminorIcons.length();i++) {
- tickmarkminorIcons.at(i)->setMinimumSize(minorTickWidth,minorTickHeight);
- tickmarkminorIcons.at(i)->setMaximumSize(minorTickWidth,minorTickHeight);
- }
-
-
-}
void HbSliderTickmarks::resizeEvent(QGraphicsSceneResizeEvent *event)
{
@@ -163,7 +160,7 @@
{
Q_D( HbSliderTickmarks );
d->q_ptr = this;
- d->sliderControl=dynamic_cast<HbSliderControl*>( parentItem() );
+ d->slider=dynamic_cast<HbSlider*>( parentItem() );
d->createTicks();
}
@@ -174,26 +171,7 @@
{
}
-void HbSliderTickmarks::createIcons( bool create )
-{
- Q_D(HbSliderTickmarks);
- d->createIcons = create;
- if (!create) {
- while ( d->tickmarkmajorIcons.length() > 0) {
- QGraphicsWidget *iconItem = d->tickmarkmajorIcons.at(0);
- d->tickmarkmajorIcons.removeAll(iconItem);
- delete iconItem;
- }
- while ( d->tickmarkminorIcons.length() > 0) {
- QGraphicsWidget *iconItem = d->tickmarkminorIcons.at(0);
- d->tickmarkminorIcons.removeAll(iconItem);
- delete iconItem;
- }
- } else {
- d->createTicks();
- }
- }
/*!
updates the ticks whenever there is change in position or number of ticks
*/
@@ -205,22 +183,27 @@
return;
}
d->createTicks();
- d->updateTickSize();
- int minimum = d->sliderControl->minimum();
- int maximum = d->sliderControl->maximum();
- int majorTickInterval = d->sliderControl->majorTickInterval ( );
- int minorTickInterval = d->sliderControl->minorTickInterval ( );
+ int minimum = d->slider->minimum();
+ int maximum = d->slider->maximum();
+ int majorTickInterval = d->slider->majorTickInterval ( );
+ int minorTickInterval = d->slider->minorTickInterval ( );
qreal span = 0;
- bool rtlLayout = (((d->sliderControl->orientation()!=Qt::Vertical)&&
+ bool rtlLayout = (((d->slider->orientation()!=Qt::Vertical)&&
(HbApplication::layoutDirection() == Qt::LeftToRight))?false:true);
- HbSliderHandle *handle = dynamic_cast <HbSliderHandle *> (d->sliderControl->primitive (HbStyle::P_Slider_thumb));
- if ( d->sliderControl->orientation() == Qt::Horizontal) {
- span = d->sliderControl->size().width();
- span-=handle->size().width();
+ HbSliderPrivate *sliderPrivate = dynamic_cast<HbSliderPrivate*>(HbSliderPrivate::d_ptr(d->slider));
+ QSizeF handleSize(0.0,0.0);
+ if( sliderPrivate) {
+ handleSize = sliderPrivate->getHandleSize( );
+ } else {
+ return;
}
- if ( d->sliderControl->orientation() == Qt::Vertical) {
- span = d->sliderControl->size().height();
- span-=handle->size().height();
+ if ( d->slider->orientation() == Qt::Horizontal) {
+ span = boundingRect().width();
+ span-=handleSize.width();
+ }
+ if ( d->slider->orientation() == Qt::Vertical) {
+ span = boundingRect().height();
+ span-=handleSize.height();
}
if (majorTickInterval) {
int totalMajorTicks = ((maximum-minimum)/majorTickInterval)+1;
@@ -228,22 +211,20 @@
QGraphicsWidget *iconItem = d->tickmarkmajorIcons.at ( i);
HbStyleOptionSlider opt;
initStyleOption(&opt);
- opt.orientation = d->sliderControl->orientation();
+ opt.orientation = d->slider->orientation();
style()->updatePrimitive(iconItem,HbStyle::P_SliderTickMark_majoricon,&opt);
int pos = QStyle::sliderPositionFromValue( minimum, maximum,
minimum+majorTickInterval*i,static_cast<int>( span ), rtlLayout );
- if ( d->sliderControl->orientation() == Qt::Horizontal) {
- qreal correctedPosX = handle->size().width()/2+pos;
- qreal correctedPosY = 0;
- iconItem->setPos ( correctedPosX,correctedPosY );
- iconItem->update();
+ qreal correctedPosX = 0;
+ qreal correctedPosY = 0;
+ if ( d->slider->orientation() == Qt::Horizontal) {
+ correctedPosX = handleSize.width()/2+pos;
} else {
- qreal correctedPosY = handle->size().height()/2+pos;
- qreal correctedPosX =0;
- iconItem->setPos ( correctedPosX,correctedPosY );
- iconItem->update();
+ correctedPosY = handleSize.height()/2+pos;
}
+ iconItem->setGeometry (QRectF( correctedPosX,correctedPosY ,d->majorTickWidth,d->majorTickHeight));
+ iconItem->update();
}
}
if (minorTickInterval) {
@@ -259,24 +240,20 @@
minorIndex++;
HbStyleOptionSlider opt;
initStyleOption(&opt);
- opt.orientation = d->sliderControl->orientation();
+ opt.orientation = d->slider->orientation();
style()->updatePrimitive(iconItem,HbStyle::P_SliderTickMark_minoricon,&opt);
int pos = QStyle::sliderPositionFromValue( minimum, maximum,
minimum+minorTickInterval*i,static_cast<int>( span ), rtlLayout );
-
- if ( d->sliderControl->orientation() == Qt::Horizontal) {
- qreal correctedPosX = handle->size().width()/2+pos;
- qreal correctedPosY = 0;
- iconItem->setPos ( correctedPosX,correctedPosY );
- iconItem->update();
+ qreal correctedPosX = 0;
+ qreal correctedPosY = 0;
+ if ( d->slider->orientation() == Qt::Horizontal) {
+ correctedPosX = handleSize.width()/2+pos;
} else {
- qreal correctedPosY = handle->size().height()/2+pos;
- qreal correctedPosX =0;
- iconItem->setPos ( correctedPosX,correctedPosY );
- iconItem->update();
-
+ correctedPosY = handleSize.height()/2+pos;
}
+ iconItem->setGeometry (QRectF( correctedPosX,correctedPosY ,d->majorTickWidth,d->majorTickHeight));
+ iconItem->update();
}
}
}
--- a/src/hbwidgets/sliders/hbslidertickmarks_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbslidertickmarks_p.h Thu May 27 13:10:59 2010 +0300
@@ -40,19 +40,13 @@
explicit HbSliderTickmarks( QGraphicsItem *parent = 0 );
~HbSliderTickmarks();
- /* virtual void paint( QPainter *painter, const QStyleOptionGraphicsItem *option,
- QWidget *widget );*/
- virtual void resizeEvent(QGraphicsSceneResizeEvent *event);
-
enum {Type = HbPrivate::ItemType_SliderTickmarks };
int type() const {return Type;}
-
- void createIcons(bool create);
+ virtual void resizeEvent(QGraphicsSceneResizeEvent *event);
void updateTicks( );
void setTickPosition(Hb::SliderTickPositions position);
virtual QVariant itemChange(GraphicsItemChange change, const QVariant &value);
-
protected:
void polish( HbStyleParameters& params );
--- a/src/hbwidgets/sliders/hbslidertickmarkslabel.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbslidertickmarkslabel.cpp Thu May 27 13:10:59 2010 +0300
@@ -25,15 +25,18 @@
#include "hbslidertickmarkslabel_p.h"
#include "hbslidercontrol_p.h"
-#include "hbsliderhandle_p.h"
+#include "hbslider_p.h"
#include "hbwidget_p.h"
#include <hbinstance.h>
#include <hbstyle.h>
#include <hbstyleoptionslider_p.h>
#include <hbapplication.h>
#include <hbtextitem.h>
+#include <hbslider.h>
#include <QList>
#include <QStringList>
+#include <QEvent>
+#include <QGraphicsItem>
class HbSliderTickmarksLabelPrivate : public HbWidgetPrivate
@@ -46,7 +49,7 @@
HbStyleOptionSlider sliderOption;
QList<QGraphicsWidget *> tickmarkmajorIconItemsLabel;
QList<QGraphicsWidget *> tickmarkminorIconItemsLabel;
- HbSliderControl *sliderControl;
+ HbSlider *slider;
Hb::SliderTickPositions tickPosition;
bool createText;
@@ -56,7 +59,7 @@
HbSliderTickmarksLabelPrivate::HbSliderTickmarksLabelPrivate() :HbWidgetPrivate(){
tickmarkmajorIconItemsLabel.clear();
tickmarkminorIconItemsLabel.clear();
- sliderControl = 0;
+ slider = 0;
tickPosition = Hb::NoSliderTicks;
createText = true;
@@ -70,13 +73,14 @@
if (!createText) {
return;
}
+ bool textItemCreated = false;
- int minimum = sliderControl->minimum();
- int maximum = sliderControl->maximum();
- QStringList majorLabelList = sliderControl->majorTickLabels( );
- QStringList minorLabelList = sliderControl->minorTickLabels( );
- int majorTickInterval = sliderControl->majorTickInterval ( );
- int minorTickInterval = sliderControl->minorTickInterval ( );
+ int minimum = slider->minimum();
+ int maximum = slider->maximum();
+ QStringList majorLabelList = slider->majorTickLabels( );
+ QStringList minorLabelList = slider->minorTickLabels( );
+ int majorTickInterval = slider->majorTickInterval ( );
+ int minorTickInterval = slider->minorTickInterval ( );
if (majorTickInterval) {
int totalMajorTicksLabel = ((maximum-minimum)/majorTickInterval)+1;
if (majorLabelList.length( ) < totalMajorTicksLabel ) {
@@ -85,6 +89,7 @@
int majorLabelListLength = tickmarkmajorIconItemsLabel.length();
for (int i=majorLabelListLength;i<totalMajorTicksLabel;i++) {
QGraphicsItem *textItem = q->style()->createPrimitive(HbStyle::P_SliderTickMark_majorlabel, q);
+ textItemCreated = true;
Q_ASSERT(textItem->isWidget());
tickmarkmajorIconItemsLabel.append(static_cast<QGraphicsWidget *>(textItem));//add newly defind primitive
}
@@ -111,6 +116,7 @@
int minorIconLabelListLength = tickmarkminorIconItemsLabel.length();
for (int i=minorIconLabelListLength;i<totalMinorTicksLabel;i++) {
QGraphicsItem *textItem = q->style()->createPrimitive(HbStyle::P_SliderTickMark_minorlabel, q);
+ textItemCreated = true;
Q_ASSERT(textItem->isWidget());
tickmarkminorIconItemsLabel.append(static_cast<QGraphicsWidget *>(textItem));//add newly defind primitive
}
@@ -127,6 +133,9 @@
}
}
q->setProperty("state","normal");
+ if( textItemCreated ) {
+ q->repolish();
+}
}
void HbSliderTickmarksLabel::resizeEvent(QGraphicsSceneResizeEvent *event)
@@ -145,22 +154,39 @@
}
d->createTickLabels();
setLabelSize( );
- int minimum = d->sliderControl->minimum();
- int maximum = d->sliderControl->maximum();
- int majorTickInterval = d->sliderControl->majorTickInterval ( );
- int minorTickInterval = d->sliderControl->minorTickInterval ( );
+ int minimum = d->slider->minimum();
+ int maximum = d->slider->maximum();
+ int majorTickInterval = d->slider->majorTickInterval ( );
+ int minorTickInterval = d->slider->minorTickInterval ( );
qreal span = 0;
- bool rtlLayout = (((d->sliderControl->orientation( ) != Qt::Vertical)
+ bool rtlLayout = (((d->slider->orientation( ) != Qt::Vertical)
&&(HbApplication::layoutDirection() == Qt::LeftToRight))?false:true);
- HbSliderHandle *handle = dynamic_cast <HbSliderHandle *> (d->sliderControl->primitive (HbStyle::P_Slider_thumb));
- if ( d->sliderControl->orientation() == Qt::Horizontal) {
- span = d->sliderControl->size().width();
- span-=handle->size().width();
+ HbSliderPrivate *sliderPrivate = dynamic_cast<HbSliderPrivate*>(HbSliderPrivate::d_ptr(d->slider));
+ QSizeF handleSize(0.0,0.0);
+ if( sliderPrivate) {
+ handleSize = sliderPrivate->getHandleSize( );
+ } else {
+ return;
+ }
+ if ( d->slider->orientation() == Qt::Horizontal) {
+ span = boundingRect().width();
+ span-=handleSize.width();
}
- if ( d->sliderControl->orientation() == Qt::Vertical) {
- span = d->sliderControl->size().height();
- span-=handle->size().height();
+ if ( d->slider->orientation() == Qt::Vertical) {
+ span = boundingRect().height();
+ span-=handleSize.height();
}
+ int minPos = QStyle::sliderPositionFromValue( minimum, maximum,
+ minimum,static_cast<int>( span ), rtlLayout );
+ int firstMajorIntervalPos = QStyle::sliderPositionFromValue( minimum, maximum,
+ minimum+majorTickInterval,static_cast<int>( span ), rtlLayout );
+
+ int firstMinorIntervalPos = QStyle::sliderPositionFromValue( minimum, maximum,
+ minimum+minorTickInterval,static_cast<int>( span ), rtlLayout );
+
+ qreal totalMajorTextWidth = abs(firstMajorIntervalPos-minPos);
+ qreal totalMinorTextWidth = abs(firstMinorIntervalPos-minPos);
+
if (majorTickInterval) {
int totalMajorTicksLabel = d->tickmarkmajorIconItemsLabel.length();
for (int i=0;i<totalMajorTicksLabel;i++) {
@@ -168,20 +194,21 @@
int pos = QStyle::sliderPositionFromValue( minimum, maximum,
minimum+majorTickInterval*i,static_cast<int>( span ), rtlLayout );
- if ( d->sliderControl->orientation() == Qt::Horizontal) {
- textItem->setPreferredHeight(boundingRect().height());
+ if ( d->slider->orientation() == Qt::Horizontal) {
textItem->update();
- qreal correctedPosX = handle->size().width()/2+pos;
- qreal tickWidth = textItem->boundingRect().size().width();
+ qreal correctedPosX = handleSize.width()/2+pos;
+ qreal tickWidth = totalMajorTextWidth;
correctedPosX -= tickWidth/2;
qreal correctedPosY = 0;
- textItem->setPos( correctedPosX,correctedPosY );
+ qreal tickHeight = textItem->boundingRect().size().height();
+ textItem->setGeometry( QRectF(correctedPosX,correctedPosY,tickWidth,tickHeight));
} else {
- qreal correctedPosY = handle->size().height()/2+pos;
+ qreal correctedPosY = handleSize.height()/2+pos;
qreal tickHeight = textItem->boundingRect().size().height();
correctedPosY-=tickHeight/2;
qreal correctedPosX =0;
- textItem->setPos ( correctedPosX,correctedPosY );
+ qreal tickWidth = boundingRect().width();
+ textItem->setGeometry ( QRectF(correctedPosX,correctedPosY,tickWidth,tickHeight ));
textItem->setLayoutDirection (layoutDirection());
}
}
@@ -201,25 +228,29 @@
QGraphicsWidget *textItem = d->tickmarkminorIconItemsLabel.at ( minorIndex);
HbStyleOptionSlider opt;
initStyleOption(&opt);
- opt.orientation = d->sliderControl->orientation();
- opt.text = (d->sliderControl->minorTickLabels( )).at(minorIndex);
+ opt.orientation = d->slider->orientation();
+ opt.text = (d->slider->minorTickLabels( )).at(minorIndex);
style()->updatePrimitive(textItem,HbStyle::P_SliderTickMark_minorlabel,&opt);
minorIndex++;
int pos = QStyle::sliderPositionFromValue( minimum, maximum,
minimum+minorTickInterval*i,static_cast<int>( span ), rtlLayout );
- if ( d->sliderControl->orientation() == Qt::Horizontal) {
- qreal correctedPosX = handle->size().width()/2+pos;
- qreal tickWidth = textItem->boundingRect().size().width();
- correctedPosX -= tickWidth/2;
+ if ( d->slider->orientation() == Qt::Horizontal) {
+ qreal correctedPosX = handleSize.width()/2+pos;
+ correctedPosX -= totalMinorTextWidth/2;
qreal correctedPosY = 0;
- textItem->setPos ( correctedPosX,correctedPosY );
+ qreal tickHeight = textItem->boundingRect().size().height();
+ textItem->setGeometry( QRectF(correctedPosX,correctedPosY,totalMinorTextWidth,tickHeight));
+
} else {
- qreal correctedPosY = handle->size().height()/2+pos;
+ qreal correctedPosY = handleSize.height()/2+pos;
qreal tickHeight = textItem->boundingRect().size().height();
correctedPosY-=tickHeight/2;
textItem->setLayoutDirection (layoutDirection());
qreal correctedPosX =0;
- textItem->setPos ( correctedPosX,correctedPosY );
+ qreal tickWidth = boundingRect().width();
+ textItem->setGeometry ( QRectF(correctedPosX,correctedPosY,tickWidth,tickHeight ));
+
+
}
}
}
@@ -256,7 +287,7 @@
{
Q_D( HbSliderTickmarksLabel );
d->q_ptr = this;
- d->sliderControl=dynamic_cast<HbSliderControl*>( parentItem() );
+ d->slider=dynamic_cast<HbSlider*>( parentItem() );
d->createTickLabels();
}
@@ -271,21 +302,27 @@
{
Q_D (HbSliderTickmarksLabel);
- int minimum = d->sliderControl->minimum();
- int maximum = d->sliderControl->maximum();
- int majorTickInterval = d->sliderControl->majorTickInterval ( );
- int minorTickInterval = d->sliderControl->minorTickInterval ( );
+ int minimum = d->slider->minimum();
+ int maximum = d->slider->maximum();
+ int majorTickInterval = d->slider->majorTickInterval ( );
+ int minorTickInterval = d->slider->minorTickInterval ( );
qreal span = 0;
- bool rtlLayout = (((d->sliderControl->orientation( ) != Qt::Vertical)
+ bool rtlLayout = (((d->slider->orientation( ) != Qt::Vertical)
&&(HbApplication::layoutDirection() == Qt::LeftToRight))?false:true);
- HbSliderHandle *handle = dynamic_cast <HbSliderHandle *> (d->sliderControl->primitive (HbStyle::P_Slider_thumb));
- if ( d->sliderControl->orientation() == Qt::Horizontal) {
- span = d->sliderControl->size().width();
- span-=handle->size().width();
+ HbSliderPrivate *sliderPrivate = dynamic_cast<HbSliderPrivate*>(HbSliderPrivate::d_ptr(d->slider));
+ QSizeF handleSize(0.0,0.0);
+ if( sliderPrivate) {
+ handleSize = sliderPrivate->getHandleSize( );
+ } else {
+ return;
}
- if ( d->sliderControl->orientation() == Qt::Vertical) {
- span = d->sliderControl->size().height();
- span-=handle->size().height();
+ if ( d->slider->orientation() == Qt::Horizontal) {
+ span = d->slider->size().width();
+ span-=handleSize.width();
+ }
+ if ( d->slider->orientation() == Qt::Vertical) {
+ span = d->slider->size().height();
+ span-=handleSize.height();
}
int minPos = QStyle::sliderPositionFromValue( minimum, maximum,
minimum,static_cast<int>( span ), rtlLayout );
@@ -297,6 +334,8 @@
qreal totalMajorTextWidth = abs(firstMajorIntervalPos-minPos);
qreal totalMinorTextWidth = abs(firstMinorIntervalPos-minPos);
+ Q_UNUSED(totalMajorTextWidth)
+ Q_UNUSED(totalMinorTextWidth)
if (majorTickInterval) {
int totalMajorTicksLabel = d->tickmarkmajorIconItemsLabel.length();
@@ -304,18 +343,18 @@
QGraphicsWidget *textItem = d->tickmarkmajorIconItemsLabel.at ( i);
HbStyleOptionSlider opt;
initStyleOption(&opt);
- opt.orientation = d->sliderControl->orientation();
- opt.text = (d->sliderControl->majorTickLabels( )).at(i);
+ opt.orientation = d->slider->orientation();
+ opt.text = (d->slider->majorTickLabels( )).at(i);
style()->updatePrimitive(textItem,HbStyle::P_SliderTickMark_majorlabel,&opt);
- if ( d->sliderControl->orientation() == Qt::Horizontal) {
- textItem->setMaximumHeight (boundingRect().height());
+ if ( d->slider->orientation() == Qt::Horizontal) {
+ /* textItem->setMaximumHeight (boundingRect().height());
textItem->setMinimumHeight (boundingRect().height());
textItem->setMinimumWidth(totalMajorTextWidth);
- textItem->setMaximumWidth(totalMajorTextWidth);
+ textItem->setMaximumWidth(totalMajorTextWidth);*/
textItem->update();
} else {
- textItem->setMinimumWidth(boundingRect().width());
- textItem->setMaximumWidth(boundingRect().width());
+ /* textItem->setMinimumWidth(boundingRect().width());
+ textItem->setMaximumWidth(boundingRect().width());*/
textItem->update( );
}
}
@@ -332,43 +371,21 @@
if ( minorIndex < d->tickmarkminorIconItemsLabel.length() ) {
QGraphicsWidget *textItem = d->tickmarkminorIconItemsLabel.at ( minorIndex);
minorIndex++;
- if ( d->sliderControl->orientation() == Qt::Horizontal) {
- textItem->setMaximumHeight (boundingRect().height());
+ if ( d->slider->orientation() == Qt::Horizontal) {
+ /* textItem->setMaximumHeight (boundingRect().height());
textItem->setMinimumHeight (boundingRect().height());
textItem->setMinimumWidth(totalMinorTextWidth);
- textItem->setMaximumWidth(totalMinorTextWidth);
+ textItem->setMaximumWidth(totalMinorTextWidth);*/
textItem->update();
} else {
- textItem->setMinimumWidth(boundingRect().width());
- textItem->setMaximumWidth(boundingRect().width());
+ /* textItem->setMinimumWidth(boundingRect().width());
+ textItem->setMaximumWidth(boundingRect().width());*/
textItem->update( );
}
}
}
}
-}
-
-void HbSliderTickmarksLabel::createText(bool create)
-{
- Q_D(HbSliderTickmarksLabel);
- d->createText = create;
- if (!create) {
- while ( d->tickmarkmajorIconItemsLabel.length() > 0) {
- QGraphicsWidget *textItem = d->tickmarkmajorIconItemsLabel.at(0);
- d->tickmarkmajorIconItemsLabel.removeAll(textItem);
- delete textItem;
- }
- while ( d->tickmarkminorIconItemsLabel.length() > 0) {
- QGraphicsWidget *textItem = d->tickmarkminorIconItemsLabel.at(0);
- d->tickmarkminorIconItemsLabel.removeAll(textItem);
- delete textItem;
- }
- } else {
- d->createTickLabels();
- }
-
-
-}
+ }
@@ -376,7 +393,7 @@
{
Q_D (HbSliderTickmarksLabel);
d->createTickLabels();
- if( d->sliderControl->orientation( ) == Qt::Horizontal ) {
+ if( d->slider->orientation( ) == Qt::Horizontal ) {
setProperty("orientation",(Qt::Orientation)1);
} else {
setProperty("orientation",(Qt::Orientation)2);
@@ -409,6 +426,14 @@
return HbWidget::itemChange( change, value );
}
+bool HbSliderTickmarksLabel::event(QEvent *e)
+{
+ if(e->type( ) == QEvent::LayoutDirectionChange) {
+ updateTickLabels( );
+ }
+ return HbWidget::event(e);
+}
+
void HbSliderTickmarksLabel::initStyleOption( HbStyleOptionSlider *option ) const
{
@@ -417,11 +442,11 @@
return;
}
HbWidget::initStyleOption( option );
- option->orientation = d->sliderControl->orientation( );
- option->tickPosition = d->sliderControl->tickPosition( );
- option->upsideDown = ( d->sliderControl->orientation( ) == Qt::Horizontal )
- ? ( d->sliderControl->invertedAppearance( ) != ( option->direction == Qt::RightToLeft ) )
- : ( !d->sliderControl->invertedAppearance( ) );
+ option->orientation = d->slider->orientation( );
+ option->tickPosition = d->slider->tickPosition( );
+ option->upsideDown = ( d->slider->orientation( ) == Qt::Horizontal )
+ ? ( d->slider->invertedAppearance( ) != ( option->direction == Qt::RightToLeft ) )
+ : ( !d->slider->invertedAppearance( ) );
// we use the upsideDown option instead
}
--- a/src/hbwidgets/sliders/hbslidertickmarkslabel_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbslidertickmarkslabel_p.h Thu May 27 13:10:59 2010 +0300
@@ -33,6 +33,8 @@
class QStyleOption;
class HbSliderTickmarksLabelPrivate;
+class QEvent;
+
class HB_AUTOTEST_EXPORT HbSliderTickmarksLabel : public HbWidget
{
@@ -42,8 +44,6 @@
explicit HbSliderTickmarksLabel( QGraphicsItem *parent = 0 );
~HbSliderTickmarksLabel();
- /* virtual void paint( QPainter *painter, const QStyleOptionGraphicsItem *option,
- QWidget *widget );*/
virtual void resizeEvent(QGraphicsSceneResizeEvent *event);
enum {Type = HbPrivate::ItemType_SliderTickmarksLabel };
@@ -52,7 +52,8 @@
void updateTickLabels( );
void setTickPosition(Hb::SliderTickPositions position);
void setLabelSize();
- void createText(bool create);
+ virtual bool event ( QEvent * event );
+
protected:
--- a/src/hbwidgets/sliders/hbvolumeslider_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbvolumeslider_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -123,6 +123,7 @@
void HbVolumeSliderPrivate::init( )
{
Q_Q( HbVolumeSlider );
+ sliderControl->setToolTipVisible(false);
q->connect( q, SIGNAL( valueChanged( int ) ), q, SLOT( _q_valueChanged( int ) ) );
q->connect( q, SIGNAL( iconToggled( bool ) ), q, SLOT( _q_muteToggled( bool ) ) );
QList<HbSlider::SliderElement> elements;
--- a/src/hbwidgets/sliders/hbzoomslider_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/sliders/hbzoomslider_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -116,7 +116,7 @@
{
Q_Q( HbZoomSlider );
mDefaultSet = false;
-
+ sliderControl->setToolTipVisible(false);
QList<HbSlider::SliderElement> elements;
elements << HbSlider::IncreaseElement
<< HbSlider::TrackElement
--- a/src/hbwidgets/widgets/hbcheckbox.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbcheckbox.h Thu May 27 13:10:59 2010 +0300
@@ -36,17 +36,21 @@
{
Q_OBJECT
Q_PROPERTY( QString text READ text WRITE setText )
- Q_PROPERTY(bool tristate READ isTristate WRITE setTristate)
- Q_PROPERTY(Qt::CheckState checkState READ checkState WRITE setCheckState)
+ Q_PROPERTY( bool tristate READ isTristate WRITE setTristate )
+ Q_PROPERTY( Qt::CheckState checkState READ checkState WRITE setCheckState )
public:
explicit HbCheckBox( QGraphicsItem *parent = 0 );
explicit HbCheckBox( const QString &text, QGraphicsItem *parent = 0 );
- virtual ~HbCheckBox();
+ virtual ~HbCheckBox( );
- enum { Type = Hb::ItemType_CheckBox };
- int type() const { return Type; }
+ enum {
+ Type = Hb::ItemType_CheckBox
+ };
+ int type() const {
+ return Type;
+ }
void setText( const QString &text );
QString text( ) const;
@@ -56,7 +60,7 @@
Qt::CheckState checkState( ) const;
- virtual QGraphicsItem *primitive(HbStyle::Primitive primitive) const;
+ virtual QGraphicsItem *primitive( HbStyle::Primitive primitive ) const;
public slots:
@@ -64,28 +68,32 @@
virtual void updatePrimitives();
protected:
+
void initStyleOption( HbStyleOptionCheckBox *option ) const;
- void resizeEvent(QGraphicsSceneResizeEvent *event);
+ void resizeEvent( QGraphicsSceneResizeEvent *event );
virtual bool hitButton( const QPointF &pos ) const;
virtual void checkStateSet( );
virtual void nextCheckState( );
#ifndef HB_GESTURE_FW
void mouseReleaseEvent( QGraphicsSceneMouseEvent *event );
- void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
+ void mouseMoveEvent( QGraphicsSceneMouseEvent *event );
#endif
+
#ifdef HB_GESTURE_FW
- virtual void gestureEvent(QGestureEvent *event);
+ virtual void gestureEvent( QGestureEvent *event );
#endif
- void keyPressEvent(QKeyEvent *keyEvent);
+ void keyPressEvent( QKeyEvent *keyEvent );
QVariant itemChange( GraphicsItemChange change, const QVariant &value );
signals:
+
void stateChanged ( int state );
private:
- Q_DECLARE_PRIVATE_D(d_ptr, HbCheckBox)
- Q_DISABLE_COPY(HbCheckBox)
+
+ Q_DECLARE_PRIVATE_D( d_ptr, HbCheckBox )
+ Q_DISABLE_COPY( HbCheckBox )
};
--- a/src/hbwidgets/widgets/hbcombobox.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbcombobox.cpp Thu May 27 13:10:59 2010 +0300
@@ -47,9 +47,9 @@
in a way that takes up the minimum amount of screen space.
A combobox is a selection widget that displays the currently selected item,
- and can provides a drop-down list that permits selecting an item.
+ and provides a drop-down list that permits selecting an item.
- A HbComboBox with currently Selected item
+ A HbComboBox with currently selected item
\image html noneditablecombobox.png.
@@ -57,71 +57,68 @@
\image html comboboxdropdownlist.png.
- HbComboBox are of two types.
+ HbComboBox are of two types:
- Editable:
+ 1: Editable:
- If the comboBox is set to editable, touching the ComboBox label field invokes the VKB in
- touch environments or accepts input from an attached keyboard.
- choosing an element from the ComboBox dropdown list replaces the label
- area with the chosen item.
- on touching button area of the comboBox launches the drop-down list to select
- the list of options
- ( button area in comboBox behaves same in both editable and Non Editable comboBox ).
+ If combobox is set to editable, tapping on combobox label field invokes the VKB in
+ touch environments or accepts input from an attached keyboard. Tapping on
+ button area of combobox launches dropdown list. Choosing an element from
+ the combobox dropdown list replaces the label with the chosen item. Touch events on
+ combobox button behaves same in both editable and non-editable combobox.
- Non Editable:
+ 2: Non Editable:
- If the comboBox is set to Non Editable widget that displays the currently selected item
- in the label field of ComboBox.
- Touching the comboBox label field or button area of the comboBox will opens
- the drop-down list to select an item from list of options.
+ If the combobox is set to non-editable then even tapping on label field will launch
+ drop down unlike editable combobox. Tapping on combobox button area behaves in
+ same way as in editable combobox.
- By Default comboBox is Non Editable.
+ By default combobox is non-editable.
- Application is responsible for setting the model to the HbComboBox,
- If no model is set, the drop down list cannot be displayed at all.
+ Application is responsible for setting the model in combobox. If no model is set or model
+ set is empty then drop down list will not be displayed at all. Combobox owns the model set
+ by application.
- HbComboBox owns the model set by the Application.
+ The number of rows to be displayed in HbComboBox drop down can be configured by overriding
+ HbComboBox css. By default number of items in drop down is 8 in portrait mode and 5 in
+ landscape mode.
- HbComboBox provides three signals:
+ HbComboBox provides four signals:
\li currentIndexChanged( index ) is emitted when the current selection in the combobox is
- changed by user interaction. If application is setting a index/text then this signal is
- not emmitted. In case of an editable combobox on combobox loosing focus if the current
- selection has changed then this signal is emitted with the new model index.
+ changed either by user interaction or programmatically.
\li currentIndexChanged( const QString& ) is emitted when the curret selection in the combobox
is changed by user interaction. If application is setting a differnet index/text
- then this signal is not emmitted.
- In case of an editable combobox on combobox loosing focus if the current selection
- has changed then this signal is emitted with the new string.
+ then this signal is not emmitted.
+
+ \li editTextChanged( const QString& ) is emitted when text is changed in editable combobox.
- \li editTextChanged( QString& ) is emitted when combobox looses focus and user has typed a text
- for which there is no matching item found in the model with the text typed by the user.
+ \li editingFinished( ) is emitted either because editable combobox lost focus or Return/Enter
+ is pressed.
- The following is an example of how to create a model and adding item to the created model.
- How to set the model on the HbcomboBox.
- Here the model is ownership transfer to the widget.
+ The following is an example of how to create a model and adding item in the model.
+ HbComboBox takes ownership of model.
\snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,37}
- An example how to add strings into HbComboBox and setting currentIndex.
- HbComboBox will creates the model internally if model is not created.
+ An example of how to add strings in HbComboBox and setting currentIndex.
+ HbComboBox will creates model internally if model is not created.
\snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,38}
- An example how to add stringsList into HbComboBox and setting currentIndex.
+ An example of how to add stringsList into HbComboBox and setting currentIndex.
HbComboBox will creates the model internally if model is not created.
\snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,39}
- An example how to insert String at index into HbComboBox.
+ An example of how to insert string at some index in HbComboBox.
HbComboBox will creates the model internally if model is not created.
\snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,40}
- An example how to insert StringList at index into HbComboBox.
+ An example of how to insert StringList at index into HbComboBox.
HbComboBox will creates the model internally if model is not created.
\snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,41}
- An example how to set the items into HbComboBox.
- HbComboBox will replces the existing model.
+ An example of how to set the items into HbComboBox.
+ HbComboBox will replace the existing model.
\snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,42}
*/
@@ -136,7 +133,7 @@
Q_D( HbComboBox );
d->init( );
updatePrimitives( );
- setProperty("state", "normal");
+ setProperty( "state", "normal" );
}
/*!
@@ -155,14 +152,15 @@
Q_D( HbComboBox );
d->init( );
updatePrimitives( );
- setProperty("state", "normal");
+ setProperty( "state", "normal" );
}
/*!
@beta
+
\property HbComboBox::items
- \brief list of comboBox items
- It replaces the existing list.
+
+ It replaces the existing list with \a texts.
*/
void HbComboBox::setItems( const QStringList &texts )
{
@@ -182,44 +180,46 @@
/*!
@beta
+
This property holds the list added in the combobox.
By default, for an empty combo box, this property has a empty StringList.
*/
QStringList HbComboBox::items( ) const
{
Q_D( const HbComboBox );
- if( d->mModel && d->mModel->rowCount( )) {
+ if( d->mModel && d->mModel->rowCount( ) ) {
QStringList list;
- int rowCount = d->mModel->rowCount();
- for(int i = 0; i < rowCount; i++)
- {
- list<<( d->mModel->data( d->mModel->index( i, 0 ) ) ).toString();
+ int rowCount = d->mModel->rowCount( );
+ for(int i = 0; i < rowCount; i++) {
+ list<<( d->mModel->data( d->mModel->index( i, 0 ) ) ).toString( );
}
return list;
} else {
- return QStringList();
+ return QStringList( );
}
}
/*!
@alpha
- Sets the \a icon for the item on the given \a index in the combobox.
- this API will not work if applcation sets the model as QStringlistModel.
+
+ Sets \a icon for the item at the given \a index in the combobox.
+ This API will not work if applcation sets the model as QStringListModel.
*/
void HbComboBox::setItemIcon( int index, const HbIcon &icon )
{
- Q_D(const HbComboBox);
- if(d->mModel) {
+ Q_D( const HbComboBox );
+ if( d->mModel ) {
QModelIndex item = d->mModel->index( index, 0 );
- if ( item.isValid( ) ) {
- d->mModel->setData( item, icon.qicon(), Qt::DecorationRole );
+ if ( item.isValid( ) ) {
+ d->mModel->setData( item, icon.qicon( ), Qt::DecorationRole );
}
}
}
/*!
@alpha
- returns the HbIcon for the given \a index in the combobox.
+
+ Returns HbIcon at \a index in the combobox.
*/
HbIcon HbComboBox::itemIcon( int index ) const
{
@@ -235,8 +235,9 @@
/*!
@beta
- Returns the data for the given \a role in the given \a index in the
- combobox, or QVariant::Invalid if there is no data for this role.
+
+ Either returns the \a role data at this \a index in HbComboBox, or QVariant::Invalid
+ if there is no data for this role.
*/
QVariant HbComboBox::itemData( int index, int role ) const
{
@@ -245,14 +246,15 @@
QModelIndex mi = d->mModel->index( index, 0 );
if( mi.isValid ( ) ) {
return d->mModel->data( mi, role );
- }
+ }
}
return QVariant( );
}
/*!
@beta
- Sets the data \a role for the item on the given \a index in the combobox
+
+ Sets the \a role data for the item at the given \a index in HbComboBox
to the specified \a value.
*/
void HbComboBox::setItemData( int index, const QVariant &value, int role )
@@ -267,14 +269,15 @@
}
/*!
- @proto
- This case is valid only for Editable comboBox
- Returns the validator that is used to constraint text input to the
- combobox and returns NULL if it is invalid.
+ @beta
+
+ This API is valid only for editable combobox.
+ Either returns the validator that is used to constraint text input in
+ combobox or returns NULL if it is invalid.
\sa editable
*/
-const HbValidator *HbComboBox::validator() const
+const HbValidator *HbComboBox::validator( ) const
{
Q_D( const HbComboBox );
if( d->mEditable) {
@@ -284,25 +287,28 @@
}
/*!
- @proto
- This case is only valid for the Editable comboBox.
- Sets the \a validator to use instead of the current validator.
+ @beta
+
+ This API is only valid for the editable combobox.
+ Sets the \a validator to be used in editable combobox.
*/
void HbComboBox::setValidator( HbValidator *validator )
{
Q_D( HbComboBox );
if( d->mEditable ) {
- disconnect( d->mLineEdit, SIGNAL( textChanged ( QString ) ),
+ disconnect( d->mLineEdit, SIGNAL( textChanged ( QString ) ),
this, SLOT( _q_textChanged( QString ) ) );
d->mLineEdit->setValidator( validator );
- connect( d->mLineEdit, SIGNAL( textChanged ( QString ) ),
+ connect( d->mLineEdit, SIGNAL( textChanged ( QString ) ),
this, SLOT( _q_textChanged( QString ) ) );
}
}
/*!
- This property holds the number of items in the combobox.
- By default, for an empty combo box, this property has a value of 0.
+ @beta
+
+ This property holds the number of items in combobox.
+ For an empty combo box, this property is equal to 0.
*/
int HbComboBox::count( ) const
{
@@ -315,10 +321,12 @@
/*!
@beta
+
Sets the model to \a model
- comboBox Owns the model set by the Application.
+ Ownership of \a model is taken by HbComboBox.
It replaces the old model if exists.
- please do not pass 0(NULL) as \a model instead call clear() to clear the contens of the model.
+ Do not pass 0(NULL) as \a model to clear contents of model instead call clear( ).
+ \sa clear
*/
void HbComboBox::setModel( QAbstractItemModel * model )
{
@@ -334,7 +342,8 @@
/*!
@beta
- Returns model that view is currently presenting.
+
+ Returns current model.
*/
QAbstractItemModel* HbComboBox::model( ) const
{
@@ -344,6 +353,7 @@
/*!
@beta
+
Sets current index to \a index.
By default no item is selected.
*/
@@ -360,7 +370,8 @@
/*!
@beta
- Returns index of current item and returns -1 for invalid current index.
+
+ Either returns index of current item if valid or else returns -1 for invalid current index.
*/
int HbComboBox::currentIndex( ) const
{
@@ -370,6 +381,7 @@
/*!
@beta
+
\fn int HbComboBox::findText(const QString &text, Qt::MatchFlags
flags = Qt::MatchExactly|Qt::MatchCaseSensitive) const
@@ -380,20 +392,23 @@
*/
/*!
+ @beta
+
Returns the index of the item containing the given \a data for the
- given \a role; otherwise returns -1.
+ given \a role if valid, otherwise returns -1.
The \a flags specify how the items in the combobox are searched.
*/
int HbComboBox::findData( const QVariant &data, int role, Qt::MatchFlags flags ) const
{
Q_D( const HbComboBox );
- if(d->mModel) {
+ if( d->mModel ) {
QModelIndexList result;
QModelIndex start = d->mModel->index( 0, 0 );
result = d->mModel->match( start, role, data, 1, flags );
- if ( result.isEmpty( ) )
+ if ( result.isEmpty( ) ) {
return -1;
+ }
return result.first( ).row( );
}
return -1;
@@ -401,26 +416,29 @@
/*!
@beta
- This is specific to the Editable comboBox only.
- Sets the text in the combobox's text edit
+
+ This API is valid for editable combobox.
+ Sets the \a text in editable combobox's line edit.
*/
void HbComboBox::setEditText( const QString &text )
{
Q_D( HbComboBox );
if( d->mEditable ) {
- disconnect( d->mLineEdit, SIGNAL( textChanged ( QString ) ),
+ disconnect( d->mLineEdit, SIGNAL( textChanged ( QString ) ),
this, SLOT( _q_textChanged( QString ) ) );
d->mLineEdit->setText( text );
- connect( d->mLineEdit, SIGNAL( textChanged ( QString ) ),
+ connect( d->mLineEdit, SIGNAL( textChanged ( QString ) ),
this, SLOT( _q_textChanged( QString ) ) );
}
}
/*!
@beta
+
\property HbComboBox::currentText
- \brief the text of the current item
- combo box with model count \0 returns an empty string.
+
+ In case of non-editable combobox it returns the text at current index.
+ In case of editable combobox it returns the text in line edit.
*/
QString HbComboBox::currentText( ) const
{
@@ -436,8 +454,9 @@
/*!
@beta
- Removes the item at the given index from the combobox.
- This will update the current index if the index is removed.
+
+ Removes the item at the given \a index from HbComboBox.
+ If \a index passed is current index then current index will be updated accordingly.
*/
void HbComboBox::removeItem( int index )
{
@@ -446,11 +465,11 @@
int rowCount = d->mModel->rowCount( );
if( index >=0 && index < rowCount ) {
bool currentText = false;
- if ( d->mModel->index(index, 0) == d->mCurrentIndex ) {
+ if ( d->mModel->index( index, 0 ) == d->mCurrentIndex ) {
currentText = true;
d->mModel->removeRow( index );
- } else if( d->mCurrentIndex.row() > index ) {
- int row = d->mCurrentIndex.row();
+ } else if( d->mCurrentIndex.row( ) > index ) {
+ int row = d->mCurrentIndex.row( );
d->mModel->removeRow( index );
d->mCurrentIndex = d->mModel->index( --row, 0 );
d->currentIndexChanged( d->mCurrentIndex );
@@ -459,35 +478,38 @@
}
if( d->mModel->rowCount( ) == 0 ) {
if( d->mEditable ) {
- clearEditText();
+ clearEditText( );
} else {
if( d->mLineEdit ) {
- d->mLineEdit->setText( QString() );
+ d->mLineEdit->setText( QString( ) );
} else {
- d->mText.clear();
+ d->mText.clear( );
HbStyleOptionComboBox comboBoxOption;
- initStyleOption(&comboBoxOption);
- style()->updatePrimitive( d->mTextItem, HbStyle::P_ComboBox_text, &comboBoxOption);
+ initStyleOption( &comboBoxOption );
+ style( )->updatePrimitive(
+ d->mTextItem, HbStyle::P_ComboBox_text, &comboBoxOption );
}
}
+ d->mCurrentIndex = QModelIndex();
return;
}
if( currentText ) {
d->mCurrentIndex = d->mModel->index( 0, 0 );
if( d->mEditable ) {
disconnect(d->mLineEdit, SIGNAL( textChanged ( QString ) ),
- this, SLOT( _q_textChanged( QString ) ) );
+ this, SLOT( _q_textChanged( QString ) ) );
d->mLineEdit->setText( d->mModel->data( d->mCurrentIndex ).toString( ) );
connect(d->mLineEdit, SIGNAL( textChanged ( QString ) ),
- this, SLOT( _q_textChanged( QString ) ) );
+ this, SLOT( _q_textChanged( QString ) ) );
} else {
if( d->mLineEdit ) {
- d->mLineEdit->setText( QString() );
+ d->mLineEdit->setText( QString( ) );
} else {
d->mText = d->mModel->data( d->mCurrentIndex ).toString( );
HbStyleOptionComboBox comboBoxOption;
- initStyleOption(&comboBoxOption);
- style()->updatePrimitive( d->mTextItem, HbStyle::P_ComboBox_text, &comboBoxOption);
+ initStyleOption( &comboBoxOption );
+ style( )->updatePrimitive(
+ d->mTextItem, HbStyle::P_ComboBox_text, &comboBoxOption);
}
}
d->currentIndexChanged( d->mCurrentIndex );
@@ -503,7 +525,7 @@
{
Q_UNUSED( event )
Q_D( HbComboBox );
- if ( d->mDropDown && d->mDropDown->isVisible() ){
+ if ( d->mDropDown && d->mDropDown->isVisible( ) ) {
d->positionDropDown( );
}
}
@@ -555,7 +577,7 @@
{
Q_D( const HbComboBox );
- switch( primitive ){
+ switch( primitive ) {
case HbStyle::P_ComboBox_text:
return d->mTextItem;
case HbStyle::P_ComboBox_background:
@@ -569,11 +591,14 @@
}
}
+/*!
+ \reimp
+ */
void HbComboBox::initStyleOption( HbStyleOptionComboBox *option )const
{
- Q_D( const HbComboBox );
+ Q_D( const HbComboBox );
option->text = d->mText;
- HbWidget::initStyleOption( option );
+ HbWidget::initStyleOption( option );
}
/*!
@@ -581,7 +606,7 @@
*/
void HbComboBox::updatePrimitives( )
{
- Q_D( HbComboBox );
+ Q_D( HbComboBox );
HbStyleOption styleOption;
HbWidget::initStyleOption( &styleOption );
if ( d->mIsDown ) {
@@ -597,24 +622,25 @@
/*!
@beta
- Clears the combobox, removes all items from model.
+
+ Removes all items from model.
*/
void HbComboBox::clear( )
{
Q_D( HbComboBox );
if( d->mModel ) {
- d->mModel->removeRows(0, d->mModel->rowCount());
+ d->mModel->removeRows( 0, d->mModel->rowCount( ) );
d->mCurrentIndex = QModelIndex( );
if( d->mEditable ) {
- clearEditText();
+ clearEditText( );
} else {
if( d->mLineEdit ) {
- d->mLineEdit->setText( QString() );
+ d->mLineEdit->setText( QString( ) );
} else {
- d->mText.clear();
+ d->mText.clear( );
HbStyleOptionComboBox comboBoxOption;
- initStyleOption(&comboBoxOption);
- style()->updatePrimitive( d->mTextItem, HbStyle::P_ComboBox_text, &comboBoxOption);
+ initStyleOption( &comboBoxOption );
+ style( )->updatePrimitive( d->mTextItem, HbStyle::P_ComboBox_text, &comboBoxOption );
}
}
}
@@ -622,7 +648,9 @@
/*!
@beta
- Clears the contents of the line edit used for editing in the combobox.
+
+ This API is valid only for editable combobox.
+ Clears the contents of line edit in editable combobox.
*/
void HbComboBox::clearEditText( )
{
@@ -638,24 +666,28 @@
/*!
@beta
+
\property HbComboBox::editable
- \brief Set editable the property of the combobox.
- True, Editable, user can type in the combobox to search for items from
- the list of items. Shows the prediction. If user types a text which does not match
- to any items in the model then slection is not changed.
- False, Non editable user canot enter text using keyboard.
+
+ If \a editable is true then combobox will be editable else it will be
+ non-editable.
+
+ \sa isEditable
*/
void HbComboBox::setEditable( bool editable )
{
Q_D( HbComboBox );
d->setEditable( editable );
- setProperty("state", "normal");
+ setProperty( "state", "normal" );
}
/*!
@beta
- Returns whether or not the combobox is editable
- True if editable, else false
+
+ Returns combobox is editable or not. If editable then returns true else returns
+ false.
+
+ \sa setEditable
*/
bool HbComboBox::isEditable( ) const
{
@@ -665,20 +697,25 @@
/*!
@beta
- Adds an item to the combobox with the given text,
- and containing the specified userData (stored in the Qt::UserRole).
- The item is appended to the list of existing items.
+
+ Adds an item in combobox with the given \a text, containing the specified \a userData
+ (stored in the Qt::UserRole). The item is appended to the list of existing items.
+
+ \sa insertItem
*/
-void HbComboBox::addItem( const QString &text, const QVariant &userData)
+void HbComboBox::addItem( const QString &text, const QVariant &userData )
{
insertItem( count( ), text, userData );
}
/*!
@beta
- Adds an item to the combobox with the given icon and text,
- and containing the specified userData (stored in the Qt::UserRole).
+
+ Adds an item in combobox with the given \a icon and \a text,
+ and containing the specified \a userData (stored in the Qt::UserRole).
The item is appended to the list of existing items.
+
+ \sa insertItem
*/
void HbComboBox::addItem( const HbIcon &icon, const QString &text, const QVariant &userData )
{
@@ -687,33 +724,39 @@
/*!
@beta
- Adds each of the strings in the given texts to the combobox.
+
+ Adds each of the strings in the given \a texts to combobox.
Each item is appended to the list of existing items in turn.
+
+ \sa insertItem
*/
void HbComboBox::addItems( const QStringList &texts )
{
- insertItems( count(), texts );
+ insertItems( count( ), texts );
}
/*!
@beta
- Inserts the text into the combobox at the given index.
+
+ Inserts the \a text in combobox at the given \a index.
If the index is equal to or higher than the total number of items,
the new item is appended to the list of existing items.
If the index is zero or negative, the new item is prepended to the list of existing items.
+
+ \sa addItems addItem
*/
void HbComboBox::insertItem( int index, const QString &text, const QVariant &userData )
{
Q_D( HbComboBox );
- if( text.isNull( ) ){
+ if( text.isNull( ) ) {
return;
}
if( !d->mModel ) {
- QStandardItemModel* model = new QStandardItemModel(this );
+ QStandardItemModel* model = new QStandardItemModel( this );
setModel( model );
}
- if ( !d->mModel->rowCount( ) ) {
+ if ( !d->mModel->rowCount( ) ) {
d->mModel->insertRow( 0 );
d->mModel->insertColumn( 0 );
if( d->mModel->index( 0, 0 ).isValid( ) ) {
@@ -733,97 +776,21 @@
}
} else if(index <= 0) {
d->mModel->insertRow( 0 );
- d->mModel->setData( d->mModel->index(0,0), text, Qt::DisplayRole );
+ d->mModel->setData( d->mModel->index( 0, 0 ), text, Qt::DisplayRole );
if( userData.isValid( ) ) {
d->mModel->setData( d->mModel->index( 0, 0 ), userData, Qt::UserRole );
}
- if( d->mCurrentIndex.row() >= 0 ) {
- d->mCurrentIndex = d->mModel->index(d->mCurrentIndex.row()+1, 0);
- d->currentIndexChanged(d->mCurrentIndex);
+ if( d->mCurrentIndex.row( ) >= 0 ) {
+ d->mCurrentIndex = d->mModel->index( d->mCurrentIndex.row( ) + 1, 0);
+ d->currentIndexChanged( d->mCurrentIndex );
}
} else {
d->mModel->insertRow( index );
d->mModel->setData( d->mModel->index( index, 0 ), text, Qt::DisplayRole );
if( userData.isValid( ) ) {
- d->mModel->setData( d->mModel->index( index, 0 ), userData, Qt::UserRole );
- }
- if( d->mCurrentIndex.row() <= index ) {
- d->mCurrentIndex = d->mModel->index(d->mCurrentIndex.row()+1, 0);
- d->currentIndexChanged(d->mCurrentIndex);
- }
- }
- }
-}
-
-/*!
- @beta
- Inserts the text and icon into the combobox at the given index.
- If the index is equal to or higher than the total number of items,
- the new item is appended to the list of existing items.
- If the index is zero or negative, the new item is prepended to the list of existing items.
- */
-void HbComboBox::insertItem( int index, const HbIcon &icon, const QString &text, const QVariant &userData)
-{
- Q_D( HbComboBox );
- if( text.isEmpty( ) ){
- return;
- }
-
- if( !d->mModel ) {
- QStandardItemModel* model = new QStandardItemModel( this );
- setModel( model );
- }
- if ( !d->mModel->rowCount( ) ) {
- d->mModel->insertRow( 0 );
- d->mModel->insertColumn( 0 );
- if( d->mModel->index( 0, 0 ).isValid( ) ) {
- d->mModel->setData( d->mModel->index(0,0), text, Qt::DisplayRole );
- setCurrentIndex( 0 );
- }
- if(!icon.isNull() && d->mModel->index( 0, 0 ).isValid( ) ) {
- d->mModel->setData(d->mModel->index( 0, 0 ), icon.qicon( ), Qt::DecorationRole);
- }
- if( userData.isValid( ) && d->mModel->index( 0, 0 ).isValid( ) ) {
- d->mModel->setData( d->mModel->index( 0, 0 ), userData, Qt::UserRole );
- }
- } else {
- int rowCount = d->mModel->rowCount( );
- if( index >= rowCount ) {
- d->mModel->insertRow( rowCount );
- d->mModel->setData( d->mModel->index( rowCount, 0 ), text, Qt::DisplayRole );
- if(!icon.isNull()) {
- d->mModel->setData( d->mModel->index( rowCount, 0 ), icon, Qt::DecorationRole );
- }
- if( userData.isValid( ) ) {
- d->mModel->setData( d->mModel->index( rowCount, 0 ), userData, Qt::UserRole );
- }
- if( d->mCurrentIndex.row() == index ) {
- d->mCurrentIndex = d->mModel->index( d->mCurrentIndex.row( ) + 1, 0 );
- d->currentIndexChanged( d->mCurrentIndex );
- }
- } else if(index <= 0) {
- d->mModel->insertRow( 0 );
- d->mModel->setData( d->mModel->index( 0, 0 ), text, Qt::DisplayRole );
- if(!icon.isNull()) {
- d->mModel->setData(d->mModel->index( 0, 0 ), icon, Qt::DecorationRole);
- }
- if( userData.isValid( ) ) {
- d->mModel->setData( d->mModel->index( 0, 0 ), userData, Qt::UserRole );
- }
- if( d->mCurrentIndex.row() >= 0 ) {
- d->mCurrentIndex = d->mModel->index( d->mCurrentIndex.row( ) + 1, 0);
- d->currentIndexChanged( d->mCurrentIndex );
- }
- } else {
- d->mModel->insertRow( index );
- d->mModel->setData( d->mModel->index( index, 0 ), text, Qt::DisplayRole );
- if(!icon.isNull( ) ) {
- d->mModel->setData( d->mModel->index( index, 0 ), icon, Qt::DecorationRole );
- }
- if( userData.isValid( ) ) {
d->mModel->setData( d->mModel->index( index, 0 ), userData, Qt::UserRole );
}
- if( d->mCurrentIndex.row() <= index ) {
+ if( d->mCurrentIndex.row( ) >= index ) {
d->mCurrentIndex = d->mModel->index( d->mCurrentIndex.row( ) + 1, 0);
d->currentIndexChanged( d->mCurrentIndex );
}
@@ -833,7 +800,88 @@
/*!
@beta
- Inserts the strings from the list into the combobox as separate items, starting at the index.
+
+ Inserts the \a text and \a icon into the combobox at the given \a index.
+ If the index is equal to or higher than the total number of items,
+ the new item is appended to the list of existing items.
+ If the index is zero or negative, the new item is prepended to the list of existing items.
+
+ \sa insertItem
+ */
+void HbComboBox::insertItem( int index, const HbIcon &icon,
+ const QString &text, const QVariant &userData )
+{
+ Q_D( HbComboBox );
+ if( text.isEmpty( ) ) {
+ return;
+ }
+
+ if( !d->mModel ) {
+ QStandardItemModel* model = new QStandardItemModel( this );
+ setModel( model );
+ }
+ if ( !d->mModel->rowCount( ) ) {
+ d->mModel->insertRow( 0 );
+ d->mModel->insertColumn( 0 );
+ if( d->mModel->index( 0, 0 ).isValid( ) ) {
+ d->mModel->setData( d->mModel->index( 0, 0 ), text, Qt::DisplayRole );
+ setCurrentIndex( 0 );
+ }
+ if( !icon.isNull( ) && d->mModel->index( 0, 0 ).isValid( ) ) {
+ d->mModel->setData( d->mModel->index( 0, 0 ), icon.qicon( ), Qt::DecorationRole );
+ }
+ if( userData.isValid( ) && d->mModel->index( 0, 0 ).isValid( ) ) {
+ d->mModel->setData( d->mModel->index( 0, 0 ), userData, Qt::UserRole );
+ }
+ } else {
+ int rowCount = d->mModel->rowCount( );
+ if( index >= rowCount ) {
+ d->mModel->insertRow( rowCount );
+ d->mModel->setData( d->mModel->index( rowCount, 0 ), text, Qt::DisplayRole );
+ if( !icon.isNull( ) ) {
+ d->mModel->setData( d->mModel->index( rowCount, 0 ), icon, Qt::DecorationRole );
+ }
+ if( userData.isValid( ) ) {
+ d->mModel->setData( d->mModel->index( rowCount, 0 ), userData, Qt::UserRole );
+ }
+ if( d->mCurrentIndex.row( ) == index ) {
+ d->mCurrentIndex = d->mModel->index( d->mCurrentIndex.row( ) + 1, 0 );
+ d->currentIndexChanged( d->mCurrentIndex );
+ }
+ } else if( index <= 0 ) {
+ d->mModel->insertRow( 0 );
+ d->mModel->setData( d->mModel->index( 0, 0 ), text, Qt::DisplayRole );
+ if( !icon.isNull( ) ) {
+ d->mModel->setData( d->mModel->index( 0, 0 ), icon, Qt::DecorationRole );
+ }
+ if( userData.isValid( ) ) {
+ d->mModel->setData( d->mModel->index( 0, 0 ), userData, Qt::UserRole );
+ }
+ if( d->mCurrentIndex.row( ) >= 0 ) {
+ d->mCurrentIndex = d->mModel->index( d->mCurrentIndex.row( ) + 1, 0 );
+ d->currentIndexChanged( d->mCurrentIndex );
+ }
+ } else {
+ d->mModel->insertRow( index );
+ d->mModel->setData( d->mModel->index( index, 0 ), text, Qt::DisplayRole );
+ if( !icon.isNull( ) ) {
+ d->mModel->setData( d->mModel->index( index, 0 ), icon, Qt::DecorationRole );
+ }
+ if( userData.isValid( ) ) {
+ d->mModel->setData( d->mModel->index( index, 0 ), userData, Qt::UserRole );
+ }
+ if( d->mCurrentIndex.row( ) <= index ) {
+ d->mCurrentIndex = d->mModel->index( d->mCurrentIndex.row( ) + 1, 0 );
+ d->currentIndexChanged( d->mCurrentIndex );
+ }
+ }
+ }
+}
+
+/*!
+ @beta
+
+ Inserts the strings in \a texts into combobox as separate items, starting at the given \a index.
If the index is equal to or higher than the total number of items,
the new item is appended to the list of existing items.
If the index is zero or negative, the new item is prepended to the list of existing items.
@@ -847,11 +895,11 @@
}
if ( !d->mModel->rowCount( ) ) {
int textCount = texts.count( );
- for( int i = 0; i < textCount; i++)
- {
+ for( int i = 0; i < textCount; i++) {
d->mModel->insertRow( i );
- if( i == 0)
+ if( i == 0) {
d->mModel->insertColumn( 0 );
+ }
if( d->mModel->index( i, 0 ).isValid( ) ) {
d->mModel->setData( d->mModel->index( i, 0 ), texts.at( i ), Qt::DisplayRole );
if( i == 0) {
@@ -859,7 +907,7 @@
}
}
}
- } else {
+ } else {
int rowCount = -1;
rowCount = d->mModel->rowCount( );
int textCount = texts.count( );
@@ -869,8 +917,8 @@
for ( int i = rowCount; i < ( rowCount + textCount ); i++ ) {
d->mModel->setData ( d->mModel->index( i, 0 ), texts.at( temp++ ) );
}
- if( d->mCurrentIndex.row() == index ) {
- d->mCurrentIndex = d->mModel->index( d->mCurrentIndex.row( ) + textCount, 0);
+ if( d->mCurrentIndex.row( ) == index ) {
+ d->mCurrentIndex = d->mModel->index( d->mCurrentIndex.row( ) + textCount, 0 );
d->currentIndexChanged( d->mCurrentIndex );
}
} else if( index <= 0 ) {
@@ -878,8 +926,8 @@
for ( int i = 0; i < textCount; i++ ) {
d->mModel->setData( d->mModel->index( i, 0 ), texts.at( i ) );
}
- if( d->mCurrentIndex.row() >= 0 ) {
- d->mCurrentIndex = d->mModel->index(d->mCurrentIndex.row() + textCount, 0);
+ if( d->mCurrentIndex.row( ) >= 0 ) {
+ d->mCurrentIndex = d->mModel->index( d->mCurrentIndex.row( ) + textCount, 0 );
d->currentIndexChanged( d->mCurrentIndex );
}
} else {
@@ -888,8 +936,8 @@
for ( int i = index; i < ( textCount + index ); i++ ) {
d->mModel->setData( d->mModel->index( i, 0 ), texts.at( temp++ ) );
}
- if( d->mCurrentIndex.row() <= index ) {
- d->mCurrentIndex = d->mModel->index(d->mCurrentIndex.row() + textCount, 0);
+ if( d->mCurrentIndex.row( ) <= index ) {
+ d->mCurrentIndex = d->mModel->index( d->mCurrentIndex.row( ) + textCount, 0 );
d->currentIndexChanged( d->mCurrentIndex );
}
}
@@ -898,14 +946,17 @@
/*!
@beta
- Returns the text for the given index in the combobox.
+
+ Returns text at given \a index in combobox.
+
+ \sa setItemText
*/
QString HbComboBox::itemText( int index ) const
{
Q_D( const HbComboBox );
- if(d->mModel) {
+ if( d->mModel ) {
QModelIndex mi = d->mModel->index( index, 0 );
- if( mi.isValid() ) {
+ if( mi.isValid( ) ) {
return d->itemText( mi );
}
}
@@ -914,27 +965,30 @@
/*!
@beta
- Sets the text for the item on the given index in the combobox.
+
+ Sets the \a text for item at given \a index in combobox.
+
+ \sa itemText
*/
void HbComboBox::setItemText( int index, const QString &text )
{
Q_D( HbComboBox );
- if (d->mModel) {
+ if ( d->mModel ) {
QModelIndex item = d->mModel->index( index, 0 );
if ( item.isValid( ) ) {
- if(d->mModel->setData( item, text, Qt::EditRole )) {
- if(d->mCurrentIndex.row() == index) {
+ if( d->mModel->setData( item, text, Qt::EditRole ) ) {
+ if( d->mCurrentIndex.row( ) == index ) {
if( d->mLineEdit ) {
d->mLineEdit->setText( text );
- } else {
+ } else {
d->mText = text ;
HbStyleOptionComboBox comboBoxOption;
- initStyleOption(&comboBoxOption);
- style()->updatePrimitive( d->mTextItem, HbStyle::P_ComboBox_text, &comboBoxOption);
+ initStyleOption( &comboBoxOption );
+ style( )->updatePrimitive(
+ d->mTextItem, HbStyle::P_ComboBox_text, &comboBoxOption );
}
}
}
-
}
}
}
@@ -946,26 +1000,27 @@
{
Q_D( HbComboBox );
bool accepted = false;
- if ( !isEnabled() ) {
+ if ( !isEnabled( ) ) {
return false ;
}
- if(obj == static_cast<HbTouchArea*>(d->mButtonTouchAreaItem)) {
- if(event->type() == QEvent::Gesture ) {
+ if( obj == static_cast<HbTouchArea*>( d->mButtonTouchAreaItem ) ) {
+ if( event->type( ) == QEvent::Gesture ) {
QGestureEvent *gestureEvent = static_cast<QGestureEvent *>( event );
- if(gestureEvent->gesture(Qt::TapGesture)) {
- HbTapGesture *tap = static_cast<HbTapGesture *>(gestureEvent->gesture(Qt::TapGesture));
- switch(tap->state()) {
+ if( gestureEvent->gesture( Qt::TapGesture ) ) {
+ HbTapGesture *tap =
+ static_cast<HbTapGesture *>( gestureEvent->gesture( Qt::TapGesture ) );
+ switch( tap->state( ) ) {
case Qt::GestureStarted:
{
d->touchAreaPressEvent( );
accepted = true;
break;
- }
+ }
case Qt::GestureCanceled:
{
d->mIsDown = false;
- updatePrimitives();
- setProperty("state", "normal");
+ updatePrimitives( );
+ setProperty( "state", "normal" );
accepted = true;
break;
}
@@ -990,7 +1045,7 @@
*/
void HbComboBox::changeEvent( QEvent *event )
{
- switch ( event->type( ) ){
+ switch ( event->type( ) ) {
case QEvent::EnabledChange:
updatePrimitives( );
break;
--- a/src/hbwidgets/widgets/hbcombobox.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbcombobox.h Thu May 27 13:10:59 2010 +0300
@@ -57,21 +57,22 @@
explicit HbComboBox( QGraphicsItem *parent = 0 );
virtual ~HbComboBox( );
- enum { Type = Hb::ItemType_ComboBox };
- int type( ) const { return Type; }
+ enum {
+ Type = Hb::ItemType_ComboBox
+ };
+ int type( ) const {
+ return Type;
+ }
void addItem( const QString &text, const QVariant &userData = QVariant() );
- void addItem( const HbIcon &icon,
- const QString &text,
- const QVariant &userData = QVariant( ) );
+ void addItem( const HbIcon &icon, const QString &text,
+ const QVariant &userData = QVariant( ) );
void addItems( const QStringList &texts );
void insertItem( int index, const QString &text, const QVariant &userData = QVariant() );
- void insertItem( int index,
- const HbIcon &icon,
- const QString &text,
- const QVariant & userData = QVariant( ) );
+ void insertItem( int index, const HbIcon &icon, const QString &text,
+ const QVariant & userData = QVariant( ) );
void insertItems( int index, const QStringList &texts );
int count( ) const;
@@ -84,10 +85,10 @@
void setItemText( int index, const QString &text );
QString itemText( int index ) const;
-
+
void setModel( QAbstractItemModel *model );
QAbstractItemModel *model( ) const;
-
+
void setEditable( bool editable );
bool isEditable( ) const;
@@ -96,17 +97,18 @@
void setValidator( HbValidator *validator );
const HbValidator *validator( ) const;
-
+
QString currentText( ) const;
-
+
int currentIndex( ) const;
-
+
void removeItem( int index );
inline int findText( const QString &text,
- Qt::MatchFlags flags = Qt::MatchExactly|Qt::MatchCaseSensitive ) const
- { return findData( text, Qt::DisplayRole, flags ); }
-
+ Qt::MatchFlags flags = Qt::MatchExactly|Qt::MatchCaseSensitive ) const {
+ return findData( text, Qt::DisplayRole, flags );
+ }
+
int findData( const QVariant &data, int role = Qt::UserRole,
Qt::MatchFlags flags = Qt::MatchExactly|Qt::MatchCaseSensitive ) const;
@@ -118,11 +120,12 @@
void clearEditText( );
void setCurrentIndex( int index );
void setEditText( const QString &text );
-
+
signals:
void currentIndexChanged( int index );
void currentIndexChanged( const QString &text );
void editTextChanged( const QString &text );
+ void editingFinished( );
protected:
HbComboBox( HbComboBoxPrivate &dd, QGraphicsItem *parent = 0 );
--- a/src/hbwidgets/widgets/hbcombobox_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbcombobox_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -48,7 +48,7 @@
#include <hbtapgesture.h>
HbComboBoxPrivate::HbComboBoxPrivate( ):
- HbWidgetPrivate ( ),
+ HbWidgetPrivate ( ),
mLineEdit ( 0 ),
mTextItem ( 0 ),
mButton ( 0 ),
@@ -61,10 +61,10 @@
mButtonTouchAreaItem ( 0 ),
mIsDown ( false ),
mEditable ( false ),
- mIsDorpdownCreated(false),
- mIsDropwnToSceneAdded(false),
+ mIsDorpdownCreated( false ),
+ mIsDropwnToSceneAdded( false ),
mHasDownEffect ( false ),
- mHasUpEffect (false ),
+ mHasUpEffect ( false ),
mListItemHeight( -1 ),
mDropDownRowsInPortrait( -1 ),
mDropDownRowsInLandscape( -1 )
@@ -73,11 +73,11 @@
HbComboBoxPrivate::~HbComboBoxPrivate( )
{
- Q_Q(HbComboBox);
+ Q_Q( HbComboBox );
if( mButtonTouchAreaItem ) {
static_cast<HbTouchArea*>( mButtonTouchAreaItem )->removeEventFilter( q );
}
- if ( !q->scene() || !q->scene( )->property( "destructed" ).isValid( ) ) {
+ if ( !q->scene( ) || !q->scene( )->property( "destructed" ).isValid( ) ) {
if( mDropDown ) {
delete mDropDown;
mDropDown = 0;
@@ -103,23 +103,22 @@
mButton = q->style( )->createPrimitive( HbStyle::P_ComboBox_button, q );
HbStyle::setItemName( mButton, "combobox_button" );
- mButtonTouchAreaItem = q->style( )->createPrimitive(
- HbStyle::P_ComboBoxButton_toucharea, q );
- static_cast<HbTouchArea*>(mButtonTouchAreaItem)->installEventFilter( q );
- q->setHandlesChildEvents(true);
+ mButtonTouchAreaItem = q->style( )->createPrimitive( HbStyle::P_ComboBoxButton_toucharea, q );
+ static_cast<HbTouchArea*>( mButtonTouchAreaItem )->installEventFilter( q );
+ q->setHandlesChildEvents( true );
- static_cast<HbTouchArea*>(mButtonTouchAreaItem)->grabGesture( Qt::TapGesture );
+ static_cast<HbTouchArea*>( mButtonTouchAreaItem )->grabGesture( Qt::TapGesture );
}
void HbComboBoxPrivate::touchAreaPressEvent( )
{
Q_Q( HbComboBox );
- if (q->count() > 0) {
+ if ( q->count( ) > 0 ) {
HbWidgetFeedback::triggered( q, Hb::InstantPressed );
}
mIsDown = true;
q->updatePrimitives( );
- q->setProperty( "state", "pressed" );
+ q->setProperty( "state", "pressed" );
}
void HbComboBoxPrivate::touchAreaReleaseEvent( )
@@ -128,7 +127,7 @@
mIsDown = false;
touchAreaClicked( );
q->updatePrimitives( );
- if ( q->count() > 0 ) {
+ if ( q->count( ) > 0 ) {
HbWidgetFeedback::triggered( q, Hb::InstantReleased );
}
@@ -143,9 +142,9 @@
mDropDown->setVisible( true );
if( !mDropDown->mList ) {
mDropDown->createList( );
- mDropDown->mList->setModel( mModel );
+ mDropDown->mList->setModel( mModel );
q->connect( mDropDown->mList, SIGNAL( activated( QModelIndex ) ), q,
- SLOT( _q_textChanged( QModelIndex ) ) );
+ SLOT( _q_textChanged( QModelIndex ) ) );
}
if ( mCurrentIndex.isValid( ) ) {
if( mDropDown->mList->model( ) != mModel ) {
@@ -158,12 +157,13 @@
mDropDown->mList->setModel( mModel );
}
mDropDown->mList->scrollTo( mModel->index( 0, 0 ) );
- mDropDown->mList->setCurrentIndex( mModel->index( 0, 0 ), QItemSelectionModel::Select );
+ mDropDown->mList->setCurrentIndex(
+ mModel->index( 0, 0 ), QItemSelectionModel::Select );
}
#ifdef HB_EFFECTS
- HbEffect::start( mDropDown, HB_DROPD0WN_ITEM_TYPE, "appear" );
+ HbEffect::start( mDropDown, HB_DROPD0WN_ITEM_TYPE, "appear" );
#endif
- positionDropDown( );
+ positionDropDown( );
}
}
@@ -172,7 +172,7 @@
}
-void HbComboBoxPrivate::vkbClosed()
+void HbComboBoxPrivate::vkbClosed( )
{
if( mDropDown->isVisible( ) ) {
positionDropDown( );
@@ -180,17 +180,14 @@
}
void HbComboBoxPrivate::showPopup( QAbstractItemModel *aModel, QModelIndex aIndex )
-{
- Q_UNUSED( aModel );
- Q_UNUSED( aIndex );
+{
Q_Q( HbComboBox );
if ( aModel && aModel->rowCount( ) ) {
- addDropDownToScene();
+ addDropDownToScene( );
if( !mDropDown->mList ) {
- mDropDown->createList();
+ mDropDown->createList( );
q->connect( mDropDown->mList, SIGNAL( activated( QModelIndex ) ), q,
- SLOT( _q_textChanged( QModelIndex ) ) );
-
+ SLOT( _q_textChanged( QModelIndex ) ) );
}
mDropDown->mList->setModel( aModel );
if ( aIndex.isValid( ) ) {
@@ -204,22 +201,25 @@
}
}
-void HbComboBoxPrivate::createDropDown()
-{
+void HbComboBoxPrivate::createDropDown( )
+{
if( !mIsDorpdownCreated ) {
mDropDown = new HbComboDropDown( this );
mIsDorpdownCreated = true;
- mDropDown->setVisible(false);
+ mDropDown->setVisible( false );
}
}
-void HbComboBoxPrivate::calculateListItemHeight()
+void HbComboBoxPrivate::calculateListItemHeight( )
{
QAbstractItemModel *model = mDropDown->mList->model( );
if( mCurrentIndex.isValid( ) && mDropDown->mList->itemByIndex( mCurrentIndex ) ) {
mListItemHeight = mDropDown->mList->itemByIndex( mCurrentIndex )->geometry( ).height( );
- } else if( model->index( 0, 0 ).isValid() && mDropDown->mList->itemByIndex( model->index( 0, 0 ) ) ) {
- mListItemHeight = mDropDown->mList->itemByIndex( model->index( 0, 0 ) )->geometry( ).height( );
+ } else if( model->index( 0, 0 ).isValid( ) &&
+ mDropDown->mList->itemByIndex( model->index( 0, 0 ) ) ) {
+
+ mListItemHeight =
+ mDropDown->mList->itemByIndex( model->index( 0, 0 ) )->geometry( ).height( );
} else {
HbListViewItem *proto = mDropDown->mList->listItemPrototype( );
HbListViewItem *temp = static_cast<HbListViewItem*>( proto->createItem( ) );
@@ -238,10 +238,10 @@
QAbstractItemModel *model = mDropDown->mList->model( );
calculateListItemHeight( );
qreal totalHeightRequd = model->rowCount( ) * mListItemHeight;
-
qreal maxPopupHeight = 0.0;
+
//read the maximum rows in drop down for different orientation from css
- if( q->mainWindow( )->orientation( ) == Qt::Horizontal ){
+ if( q->mainWindow( )->orientation( ) == Qt::Horizontal ) {
if( mDropDownRowsInLandscape == -1 ) {
HbStyleParameters params;
q->style( )->parameters( params );
@@ -250,17 +250,17 @@
mDropDownRowsInLandscape = params.value( "max-rows-in-dropdown" ).toInt( );
}
maxPopupHeight = mDropDownRowsInLandscape * mListItemHeight;
- } else if( q->mainWindow( )->orientation( ) == Qt::Vertical ){
+ } else if( q->mainWindow( )->orientation( ) == Qt::Vertical ) {
if( mDropDownRowsInPortrait == -1 ) {
HbStyleParameters params;
- q->style( )->parameters(params);
+ q->style( )->parameters( params );
params.addParameter( "max-rows-in-dropdown" );
q->polish( params );
- mDropDownRowsInPortrait = params.value("max-rows-in-dropdown").toInt();
+ mDropDownRowsInPortrait = params.value( "max-rows-in-dropdown" ).toInt( );
}
maxPopupHeight = mDropDownRowsInPortrait * mListItemHeight;
}
-
+
if ( totalHeightRequd < maxPopupHeight ) {
maxPopupHeight = totalHeightRequd;
}
@@ -269,55 +269,55 @@
if( !mDropDown->vkbOpened ) {
//position of drop down in both editable and non-editable combobox depends upon
//the available space above and below combobox
- if( (widgetPos.y( ) + q->rect( ).height( ) + maxPopupHeight) < sceneRect.height( ) ) {
- popupPos = QPointF( widgetPos.x(), widgetPos.y( ) + q->rect( ).height( ) );
+ if( ( widgetPos.y( ) + q->rect( ).height( ) + maxPopupHeight) < sceneRect.height( ) ) {
+ popupPos = QPointF( widgetPos.x( ), widgetPos.y( ) + q->rect( ).height( ) );
#ifdef HB_EFFECTS
- if ( !mHasDownEffect ) {
- mHasDownEffect = true;
- mHasUpEffect = false;
- // this is temporary until proper effect theming comes.
- //this Effect will be shown when there is space in the view bottom.
- HbEffectInternal::add( mDropDown, "combo_appear_down", "appear" );
- HbEffectInternal::add( mDropDown, "combo_disappear_downl", "disappear" );
- }
+ if ( !mHasDownEffect ) {
+ mHasDownEffect = true;
+ mHasUpEffect = false;
+ // this is temporary until proper effect theming comes.
+ //this Effect will be shown when there is space in the view bottom.
+ HbEffectInternal::add( mDropDown, "combo_appear_down", "appear" );
+ HbEffectInternal::add( mDropDown, "combo_disappear_downl", "disappear" );
+ }
#endif
} else if( widgetPos.y( ) - maxPopupHeight > 0.0 ) {
popupPos = QPointF( widgetPos.x( ), widgetPos.y( ) - maxPopupHeight );
#ifdef HB_EFFECTS
- if ( !mHasUpEffect ) {
- // this is temporary until proper effect theming comes.
- //this Effect will be shown when there is no space in the view bottom
- mHasUpEffect = true;
- mHasDownEffect = false;
- HbEffectInternal::add( mDropDown, "combo_appear_up", "appear" );
- HbEffectInternal::add( mDropDown, "combo_disappear_up", "disappear" );
- }
+ if ( !mHasUpEffect ) {
+ // this is temporary until proper effect theming comes.
+ //this Effect will be shown when there is no space in the view bottom
+ mHasUpEffect = true;
+ mHasDownEffect = false;
+ HbEffectInternal::add( mDropDown, "combo_appear_up", "appear" );
+ HbEffectInternal::add( mDropDown, "combo_disappear_up", "disappear" );
+ }
#endif
} else {
qreal topScreenHeight = sceneRect.height( ) - maxPopupHeight;
if( topScreenHeight > sceneRect.height( ) - topScreenHeight ) {
popupPos = QPointF( widgetPos.x( ), 0.0 );
#ifdef HB_EFFECTS
- if ( !mHasDownEffect ) {
- mHasDownEffect = true;
- mHasUpEffect = false;
- // this is temporary until proper effect theming comes.
- //this Effect will be shown when there is more space in the view bottom.
- HbEffectInternal::add( mDropDown, "combo_appear_down", "appear" );
- HbEffectInternal::add( mDropDown, "combo_disappear_down", "disappear" );
- }
+ if ( !mHasDownEffect ) {
+ mHasDownEffect = true;
+ mHasUpEffect = false;
+ // this is temporary until proper effect theming comes.
+ //this Effect will be shown when there is more space in the view bottom.
+ HbEffectInternal::add( mDropDown, "combo_appear_down", "appear" );
+ HbEffectInternal::add( mDropDown, "combo_disappear_down", "disappear" );
+ }
#endif
} else {
popupPos = QPointF( widgetPos.x( ), sceneRect.height( ) - maxPopupHeight );
#ifdef HB_EFFECTS
- if ( !mHasUpEffect ) {
- mHasUpEffect = true;
- mHasDownEffect = false;
- // this is temporary until proper effect theming comes.
- //this Effect will be shown when there is more space in the view bottom.
- HbEffectInternal::add( mDropDown, "combo_appear_up", "appear" );
- HbEffectInternal::add( mDropDown, "combo_disappear_up", "disappear" );
- }
+ if ( !mHasUpEffect ) {
+ mHasUpEffect = true;
+ mHasDownEffect = false;
+ // this is temporary until proper effect theming comes.
+ //this Effect will be shown when there is more space in the view bottom.
+ HbEffectInternal::add( mDropDown, "combo_appear_up", "appear" );
+ HbEffectInternal::add( mDropDown, "combo_disappear_up", "disappear" );
+ }
#endif
}
}
@@ -325,13 +325,12 @@
// positioning drop down when vkb is positioned
// drop down will come on top/below of combo based upon which side has more space
// available
-
HbEditorInterface editorInterface( q );
HbVkbHost *host = editorInterface.vkbHost( );
if ( host ) {
QSizeF keyBoardArea = host->keyboardArea( );
QSize screenSize = HbDeviceProfile::profile( q ).logicalSize( );
-
+
qreal heightDifference = screenSize.height( ) - keyBoardArea.height( );
qreal topSpace = widgetPos.y( );
qreal bottomSpace = heightDifference - topSpace - q->boundingRect( ).height( );
@@ -345,16 +344,15 @@
popupSize.setHeight( topSpace );
}
#ifdef HB_EFFECTS
- if ( !mHasUpEffect ) {
- mHasUpEffect = true;
- mHasDownEffect = false;
- // this is temporary until proper effect theming comes.
- //this Effect will be shown when there is more space in the view bottom.
- HbEffectInternal::add( mDropDown, "combo_appear_up", "appear" );
- HbEffectInternal::add( mDropDown, "combo_disappear_up", "disappear" );
- }
+ if ( !mHasUpEffect ) {
+ mHasUpEffect = true;
+ mHasDownEffect = false;
+ // this is temporary until proper effect theming comes.
+ //this Effect will be shown when there is more space in the view bottom.
+ HbEffectInternal::add( mDropDown, "combo_appear_up", "appear" );
+ HbEffectInternal::add( mDropDown, "combo_disappear_up", "disappear" );
+ }
#endif
-
} else {
//display drop down at bottom
popupPos = QPointF( widgetPos.x( ), widgetPos.y( ) + q->rect( ).height( ) );
@@ -362,14 +360,14 @@
popupSize.setHeight( bottomSpace );
}
#ifdef HB_EFFECTS
- if ( !mHasDownEffect ) {
- mHasDownEffect = true;
- mHasUpEffect = false;
- // this is temporary until proper effect theming comes.
- //this Effect will be shown when there is more space in the view bottom.
- HbEffectInternal::add( mDropDown, "combo_appear_down", "appear" );
- HbEffectInternal::add( mDropDown, "combo_disappear_down", "disappear" );
- }
+ if ( !mHasDownEffect ) {
+ mHasDownEffect = true;
+ mHasUpEffect = false;
+ // this is temporary until proper effect theming comes.
+ //this Effect will be shown when there is more space in the view bottom.
+ HbEffectInternal::add( mDropDown, "combo_appear_down", "appear" );
+ HbEffectInternal::add( mDropDown, "combo_disappear_down", "disappear" );
+ }
#endif
}
}
@@ -377,7 +375,7 @@
mDropDown->setPreferredSize( popupSize );
mDropDown->setMinimumSize( popupSize );
mDropDown->setMaximumSize( popupSize );
- mDropDown->setPos(popupPos);
+ mDropDown->setPos( popupPos );
QGraphicsWidget *p = q;
while ( p->parentWidget( ) ) {
p = p->parentWidget( );
@@ -390,22 +388,22 @@
Q_Q( HbComboBox );
QVariant data = mDropDown->mList->model( )->data( aIndex );
mText = data.toString( );
- if( !mEditable ) {
+ if( !mEditable ) {
if( mLineEdit ) {
mLineEdit->setText( mText );
} else {
HbStyleOptionComboBox comboBoxOption;
q->initStyleOption( &comboBoxOption );
- q->style( )->updatePrimitive( mTextItem, HbStyle::P_ComboBox_text, &comboBoxOption);
+ q->style( )->updatePrimitive( mTextItem, HbStyle::P_ComboBox_text, &comboBoxOption );
}
mCurrentIndex = aIndex;
} else {
q->disconnect( mLineEdit, SIGNAL( textChanged ( QString ) ), q,
- SLOT( _q_textChanged( QString ) ) );
+ SLOT( _q_textChanged( QString ) ) );
mLineEdit->setText( mText );
mCurrentIndex = findData( mText );
q->connect( mLineEdit, SIGNAL( textChanged ( QString ) ), q,
- SLOT( _q_textChanged( QString ) ) );
+ SLOT( _q_textChanged( QString ) ) );
}
if ( mDropDown->isVisible( ) ) {
mDropDown->setVisible( false );
@@ -414,7 +412,7 @@
}
void HbComboBoxPrivate::_q_textCompleted( const QModelIndex & aIndex )
-{
+{
if( aIndex.isValid( ) ) {
showPopup( mCompleter->completionModel( ) );
}
@@ -422,21 +420,21 @@
void HbComboBoxPrivate::_q_textChanged( const QString & aString )
{
- Q_Q(HbComboBox);
+ Q_Q( HbComboBox );
if( !aString.isEmpty( ) ) {
if ( mCompleter ) {
mCompleter->setCompletionPrefix( aString );
mCompleter->complete( );
- if( mCompleter->currentRow() == -1 ) {
- if (( mDropDown ) && ( mDropDown->isVisible() )) {
- mDropDown->setVisible(false);
+ if( mCompleter->currentRow( ) == -1 ) {
+ if ( ( mDropDown ) && ( mDropDown->isVisible( ) ) ) {
+ mDropDown->setVisible( false );
}
}
}
} else {
if( mDropDown ) {
- mDropDown->setVisible(false);
+ mDropDown->setVisible( false );
}
//showPopup( mModel, mCurrentIndex);
}
@@ -495,19 +493,20 @@
void HbComboBoxPrivate::setEditable( bool editable )
{
- Q_Q(HbComboBox);
+ Q_Q( HbComboBox );
if( mEditable == editable ) {
return;
}
mEditable = editable;
- if( editable ) {
+ if( editable ) {
if( mTextItem ) {
HbStyle::setItemName( mTextItem, "" );
delete mTextItem;
mTextItem = 0;
mLineEdit = new HbCustomLineEdit( q, this );
+ q->connect( mLineEdit, SIGNAL( editingFinished( ) ), q, SIGNAL( editingFinished( ) ) );
HbStyle::setItemName( mLineEdit, "combobox_labelfield" );
- mLineEdit->backgroundItem()->setVisible(false);
+ mLineEdit->backgroundItem( )->setVisible( false );
}
q->setHandlesChildEvents( false );
mLineEdit->setReadOnly( false );
@@ -545,7 +544,7 @@
QIcon HbComboBoxPrivate::itemIcon( const QModelIndex &index ) const
{
QVariant decoration = mModel->data( index, Qt::DecorationRole );
- if ( decoration.type() == QVariant::Icon ) {
+ if ( decoration.type( ) == QVariant::Icon ) {
return QIcon( qvariant_cast<QIcon>( decoration ) );
}
return qvariant_cast<QIcon>( decoration );
@@ -557,7 +556,7 @@
}
void HbComboBoxPrivate::addDropDownToScene( )
-{
+{
Q_Q( HbComboBox );
if( !mIsDropwnToSceneAdded ) {
if ( q->scene( ) ) {
@@ -577,20 +576,21 @@
bool indexChanged = ( mi != mCurrentIndex );
if ( indexChanged ) {
mCurrentIndex = QModelIndex( mi );
- mText = q->itemText( mCurrentIndex.row( ) );
+ mText = q->itemText( mCurrentIndex.row( ) );
if( mEditable ) {
q->disconnect( mLineEdit, SIGNAL( textChanged ( QString ) ), q,
SLOT( _q_textChanged( QString ) ) );
- mLineEdit->setText( mText );
- q->connect( mLineEdit, SIGNAL( textChanged ( QString ) ),
- q, SLOT( _q_textChanged( QString ) ) );
- } else {
+ mLineEdit->setText( mText );
+ q->connect( mLineEdit, SIGNAL( textChanged ( QString ) ),
+ q, SLOT( _q_textChanged( QString ) ) );
+ } else {
if( mLineEdit ) {
mLineEdit->setText( mText );
- } else {
+ } else {
HbStyleOptionComboBox comboBoxOption;
q->initStyleOption(&comboBoxOption);
- q->style( )->updatePrimitive( mTextItem, HbStyle::P_ComboBox_text, &comboBoxOption );
+ q->style( )->updatePrimitive(
+ mTextItem, HbStyle::P_ComboBox_text, &comboBoxOption );
}
}
currentIndexChanged( mCurrentIndex );
@@ -598,9 +598,9 @@
}
void HbComboBoxPrivate::currentIndexChanged( const QModelIndex &index )
-{
+{
Q_Q( HbComboBox );
- emit q->currentIndexChanged( index.row( ) );
+ emit q->currentIndexChanged( index.row( ) );
emit q->currentIndexChanged( q->itemText ( mCurrentIndex.row( ) ) );
}
--- a/src/hbwidgets/widgets/hbcombobox_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbcombobox_p.h Thu May 27 13:10:59 2010 +0300
@@ -66,7 +66,7 @@
HbComboBoxPrivate( );
~HbComboBoxPrivate( );
void init( );
- void createPrimitives();
+ void createPrimitives( );
void setModel( QAbstractItemModel * model );
void positionDropDown( );
void setCompletion( bool completion );
@@ -88,9 +88,9 @@
QModelIndex findData( const QVariant &data ) const;
void showPopup( QAbstractItemModel* aModel, QModelIndex aIndex = QModelIndex( ) );
void createDropDown( );
- void calculateListItemHeight();
+ void calculateListItemHeight( );
-public:
+public:
HbCustomLineEdit* mLineEdit;
QGraphicsItem* mTextItem;
QGraphicsItem *mButton;
@@ -118,14 +118,12 @@
{
Q_OBJECT
public:
- explicit HbComboListViewItem ( QGraphicsItem *parent = 0 ) : HbListViewItem( parent )
- {
+ explicit HbComboListViewItem ( QGraphicsItem *parent = 0 ) : HbListViewItem( parent ) {
}
- HbAbstractViewItem *createItem()
- {
- return new HbComboListViewItem(*this);
- }
+ HbAbstractViewItem *createItem( ) {
+ return new HbComboListViewItem( *this );
+ }
};
class HbCustomLineEdit : public HbLineEdit
@@ -133,34 +131,32 @@
Q_OBJECT
public:
- HbCustomLineEdit( QGraphicsWidget *parent, HbComboBoxPrivate *comboPriv )
- :HbLineEdit( *new HbLineEditPrivate, parent ),
+ HbCustomLineEdit( QGraphicsWidget *parent, HbComboBoxPrivate *comboPriv ) :
+ HbLineEdit( *new HbLineEditPrivate, parent ),
comboBoxPrivate( comboPriv ),
- VkbLaunched( false )
- {
-
+ VkbLaunched( false ) {
+ }
+
+ void setLongPressEnabled( bool enable = true ) {
+ if( enable ) {
+ scrollArea( )->setLongPressEnabled( true );
+ } else {
+ scrollArea( )->setLongPressEnabled( false );
+ }
}
-void setLongPressEnabled( bool enable = true )
- {
- if( enable ) {
- scrollArea( )->setLongPressEnabled( true );
- } else {
- scrollArea( )->setLongPressEnabled( false );
- }
- }
+
protected:
- void focusInEvent( QFocusEvent *event )
- {
- HbEditorInterface editorInterface(this);
- HbVkbHost *host = editorInterface.vkbHost();
- if ( host && !VkbLaunched ) {
- VkbLaunched = true;
- connect( host, SIGNAL( keypadClosed ( ) ), comboBoxPrivate->mDropDown,
- SLOT( keypadClosed( ) ) );
- connect( host, SIGNAL( keypadOpened ( ) ), comboBoxPrivate->mDropDown,
- SLOT( keypadOpened( ) ) );
- }
- HbLineEdit::focusInEvent(event);
+ void focusInEvent( QFocusEvent *event ) {
+ HbEditorInterface editorInterface( this );
+ HbVkbHost *host = editorInterface.vkbHost( );
+ if ( host && !VkbLaunched ) {
+ VkbLaunched = true;
+ connect( host, SIGNAL( keypadClosed ( ) ), comboBoxPrivate->mDropDown,
+ SLOT( keypadClosed( ) ) );
+ connect( host, SIGNAL( keypadOpened ( ) ), comboBoxPrivate->mDropDown,
+ SLOT( keypadOpened( ) ) );
+ }
+ HbLineEdit::focusInEvent( event );
}
private:
HbComboBoxPrivate *comboBoxPrivate;
--- a/src/hbwidgets/widgets/hbcombodropdown_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbcombodropdown_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -34,20 +34,18 @@
#endif
HbComboDropDown::HbComboDropDown( HbComboBoxPrivate *comboBoxPrivate, QGraphicsItem *parent )
- :HbWidget( parent ),
- mList( 0 ),
- comboPrivate( comboBoxPrivate ),
- vkbOpened( false ),
- backgroundPressed( false )
+ :HbWidget( parent ),
+ mList( 0 ),
+ comboPrivate( comboBoxPrivate ),
+ vkbOpened( false ),
+ backgroundPressed( false )
{
setBackgroundItem( HbStyle::P_ComboBoxPopup_background );
#if QT_VERSION >= 0x040600
- //this is to keep the focus in the previous widget.
- setFlag( QGraphicsItem::ItemIsPanel, true );
- setActive( false );
+ //this is to keep the focus in the previous widget.
+ setFlag( QGraphicsItem::ItemIsPanel, true );
+ setActive( false );
#endif
- //setFlag(QGraphicsItem::ItemIsPanel);
- //setPanelModality(PanelModal);
}
HbComboDropDown::~HbComboDropDown( )
@@ -58,8 +56,8 @@
void HbComboDropDown::createList( )
{
mList = new HbListView( this );
- mList->setLongPressEnabled(false);
- HbComboListViewItem *protoType = new HbComboListViewItem(this);
+ mList->setLongPressEnabled( false );
+ HbComboListViewItem *protoType = new HbComboListViewItem( this );
mList->setItemPrototype( protoType );
HbStyle::setItemName( mList, "list" );
mList->setUniformItemSizes( true );
@@ -69,13 +67,13 @@
void HbComboDropDown::keypadOpened( )
{
vkbOpened = true;
- comboPrivate->vkbOpened();
+ comboPrivate->vkbOpened( );
}
void HbComboDropDown::keypadClosed( )
{
vkbOpened = false;
- comboPrivate->vkbClosed();
+ comboPrivate->vkbClosed( );
}
bool HbComboDropDown::eventFilter( QObject *obj, QEvent *event )
@@ -90,28 +88,21 @@
case QEvent::GraphicsSceneMouseDoubleClick:
{
if( !( this->isUnderMouse( ) ) ) {
- backgroundPressed = true;
- accepted = true;
- }
- }
- break;
- case QEvent::GraphicsSceneMouseRelease:
- {
- if( !( this->isUnderMouse( ) ) && backgroundPressed ) {
HbWidgetFeedback::triggered( this, Hb::InstantPopupClosed );
setVisible( false );
- backgroundPressed = false;
+ backgroundPressed = true;
accepted = true;
}
}
break;
case QEvent::Gesture:
{
- if( !this->isUnderMouse() ) {
+ if( !this->isUnderMouse( ) ) {
//if its a pan gesture then don't accept the event so that list can be scrolled
//even if mouse is outside drop down area
- if(QGestureEvent *gestureEvent = static_cast<QGestureEvent *>( event ) ) {
- if( !qobject_cast<HbPanGesture *>( gestureEvent->gesture( Qt::PanGesture ) ) ) {
+ if( QGestureEvent *gestureEvent = static_cast<QGestureEvent *>( event ) ) {
+ if( !qobject_cast<HbPanGesture *>(
+ gestureEvent->gesture( Qt::PanGesture ) ) ) {
accepted = true;
}
}
@@ -122,7 +113,6 @@
break;
}
}
-
return accepted;
}
--- a/src/hbwidgets/widgets/hbcombodropdown_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbcombodropdown_p.h Thu May 27 13:10:59 2010 +0300
@@ -35,8 +35,8 @@
Q_OBJECT
public:
explicit HbComboDropDown( HbComboBoxPrivate *comboBoxPrivate, QGraphicsItem *parent = 0 );
- virtual ~HbComboDropDown();
- void createList();
+ virtual ~HbComboDropDown( );
+ void createList( );
HbListView *mList;
HbComboBoxPrivate *comboPrivate;
--- a/src/hbwidgets/widgets/hbdatetimepicker.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbdatetimepicker.cpp Thu May 27 13:10:59 2010 +0300
@@ -30,29 +30,37 @@
/*!
@beta
\class HbDateTimePicker
- \brief HbDateTimePicker class provides a widget for picking the date, time, date and time.
+ \brief HbDateTimePicker class provides a widget for picking the date, time, date and time. <br>
+
By default date picker will be created, with date functionality only.
For exclusive time or datetime picker creation, use QTime or QDateTime variable as parameter for the constructor.
\li Date and Time
\li Date
\li Time
+ Below is a sample code snippet for datetime picker creation:
\snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,51}
- By default, display format is from HbExtendedLocale. User can set the format using \sa setDisplayFormat.
- Based on the display format the tumblers or sections will be rearranged.
+ By default, display format is from HbExtendedLocale. User can set the format using setDisplayFormat API. \sa setDisplayFormat.<br>
+ Based on the display format the tumblers or sections will be rearranged.<br>
+ For each tumbler(TumbleView) in datetime picker, loopingEnabled property is always true.<br>
- HbDateTimePicker provides various date and time range functionalities.
- currently the date range is independent of the time range.
+ HbDateTimePicker provides various date and time range functionalities.<br>
+ Currently the date range is independent of the time range.
\sa setDateRange \sa setTimeRange \sa setDateTimeRange
\sa setMinimumTime \sa setMaximumTime \sa setMinimumDate \sa setMaximumDate
\sa setMinimumDateTime \sa setMaximumDateTime
+
+ \image html hbdatetimepicker_date.png "Datetime picker with date functionalities, in d/MMMM format"
+ \image html hbdatetimepicker_time.png "Datetime picker with time functionalities, in h.m.AP format"
+
+ <b>Note:</b>Graphics in the above images varies depending on theme.
*/
/*!
\fn void dateChanged(const QDate &date)
- This signal is emitted when item selection changes in any of the date pickers in the datetimepicker widget.
+ This signal is emitted when item selection changes in any of the date pickers(day, month, year) in the datetimepicker widget.
\param date selected by the user.
@@ -61,7 +69,7 @@
/*!
\fn void timeChanged(const QTime &time)
- This signal is emitted when item selection changes in any of the time pickers in the datetimepicker widget.
+ This signal is emitted when item selection changes in any of the time pickers(hour, minute, second, am/pm) in the datetimepicker widget.
\param time selected by the user.
*/
@@ -69,7 +77,7 @@
/*!
\fn void dateTimeChanged(const QDateTime &datetime)
- This signal is emitted when item selection changes in any of the pickers in the datetimepicker widget.
+ This signal is emitted when item selection changes in any of the date and time pickers in the datetimepicker widget.
\param datetime selected by the user.
*/
@@ -77,35 +85,34 @@
/*!
Constructs date picker widget by default.
- \param parent parent item.
+ \param parent parent item for datetime picker widget.
*/
HbDateTimePicker::HbDateTimePicker( QGraphicsItem *parent ):
HbWidget(*new HbDateTimePickerPrivate, parent)
{
- Q_D(HbDateTimePicker);
+ Q_D(HbDateTimePicker);
- //no mode passed so it should take date as mode by default
- d->init(QVariant::Date);
+ //no mode passed so it should take date as mode by default
+ d->init(QVariant::Date);
- setDateTime(QDateTime::currentDateTime());
+ setDateTime(QDateTime::currentDateTime());
}
/*!
- Constructs datetime picker widget.
-
- \param datetime QDateTime value.
+ Constructs datetime picker widget with both date and time functionalities and with default locale's datetime format.
+ \param datetime Value to be set on datetime picker widget, which has both date and time related tumblers.
*/
HbDateTimePicker::HbDateTimePicker(const QDateTime &datetime, QGraphicsItem *parent ):
HbWidget(*new HbDateTimePickerPrivate, parent)
{
Q_D(HbDateTimePicker);
- d->init(QVariant::DateTime);
- setDateTime(datetime);
+ d->init(QVariant::DateTime);
+ setDateTime(datetime);
}
/*!
- Constructs date picker widget with default locale's date format.
+ Constructs datetime picker widget with only date functionalities and with default locale's date format.
\param date QDate value.
*/
@@ -114,12 +121,12 @@
{
Q_D(HbDateTimePicker);
- d->init(QVariant::Date);
+ d->init(QVariant::Date);
setDate(date);
}
/*!
- Constructs time picker widget with default locale's time format.
+ Constructs datetime picker widget with only time functionalities and with with default locale's time format.
\param time QTime value.
*/
@@ -128,12 +135,13 @@
{
Q_D(HbDateTimePicker);
- d->init(QVariant::Time);
+ d->init(QVariant::Time);
setTime(time);
}
/*!
- Internal. Protected constructor for derivations.
+ \internal
+ Protected constructor for derivations.
the default mode is DateTimeMode, if other mode is required, set the mDateTimeMode variable.
this does not set any default datetime, needs to be explicitly done in the derived constructor.
@@ -144,7 +152,7 @@
{
Q_D(HbDateTimePicker);
- d->init(QVariant::DateTime);
+ d->init(QVariant::DateTime);
}
/*!
@@ -169,7 +177,7 @@
/*!
Returns current display format as QString value.
- \return display format.
+ \return display format of datetime picker widget.
\sa setDisplayFormat()
*/
@@ -210,26 +218,40 @@
NOTE:setDisplayFormat works only when the seperators are mentioned in the format like 'dd.mm.yy' or 'dd mm yy', this
will be fixed in the future versions.
- \param format is the display format in QString format.
+ \param format is the display format, for datetime picker widget, in QString format.
\sa displayFormat()
*/
void HbDateTimePicker::setDisplayFormat(const QString &format)
{
- Q_D(HbDateTimePicker);
+ Q_D(HbDateTimePicker);
- if(d->isFormatValid(format)){
- d->mFormat = format;
- d->parseDisplayFormat(format);
- d->rearrangeTumbleViews();
+ if(d->isFormatValid(format)){
+ d->mFormat = format;
+ d->parseDisplayFormat(format);
+ d->rearrangeTumbleViews();
d->emitDateTimeChange();
- }//End If format is valid
+ }//End If format is valid
}
/*!
Returns the current date in QDate format.
- \return Date Picker's current date.
+ \return current selected date in datetime picker.
+
+ <b>Note:</b> The DocML does not support directly the properties which uses QDate/QTime/QDateTime as parameters. For the properties to work user has to pass date, time or datetime
+ as a string, in a valid ISO date format.
+
+ ISO 8601 extended format: either YYYY-MM-DD for dates or YYYY-MM-DDTHH:MM:SS for combined dates and times.
+
+ \code
+ ...
+ <widget name="t:dtp" type="HbDateTimePicker">
+ <!-- 'date' is a QDate property of HbDateTimePicker. -->
+ <string name="date" value="02-02-15" />
+ </widget>
+ ...
+ \endcode
\sa setDate
*/
@@ -243,7 +265,7 @@
/*!
Sets the current \a date in the form of QDate.
- \param date date in QDate format
+ \param date date to be set on the datetime picker in QDate format
\sa date
*/
@@ -256,7 +278,21 @@
/*!
Returns minimum date in QDate format.
- \return Minimum date in QDate format.
+ \return Minimum date set on datetime picker in QDate format.
+
+ <b>Note:</b> The DocML does not support directly the properties which uses QDate/QTime/QDateTime as parameters. For the properties to work user has to pass date, time or datetime
+ as a string, in a valid ISO date format.
+
+ ISO 8601 extended format: either YYYY-MM-DD for dates or YYYY-MM-DDTHH:MM:SS for combined dates and times.
+
+ \code
+ ...
+ <widget name="t:dtp" type="HbDateTimePicker">
+ <!-- 'minimumDate' is a QDate property of HbDateTimePicker. -->
+ <string name="minimumDate" value="02-02-15" />
+ </widget>
+ ...
+ \endcode
\sa setMinimumDate
*/
@@ -269,7 +305,7 @@
/*!
Sets minimum \a date in QDate format.
- \param Minimum date in QDate format.
+ \param Minimum date to be set on datetime picker in QDate format.
\sa minimumDate
*/
@@ -282,7 +318,21 @@
/*!
Returns maximum date in QDate format.
- \return Maximum Date in QDate format.
+ \return Maximum Date set on datetime picker in QDate format.
+
+ <b>Note:</b> The DocML does not support directly the properties which uses QDate/QTime/QDateTime as parameters. For the properties to work user has to pass date, time or datetime
+ as a string, in a valid ISO date format.
+
+ ISO 8601 extended format: either YYYY-MM-DD for dates or YYYY-MM-DDTHH:MM:SS for combined dates and times.
+
+ \code
+ ...
+ <widget name="t:dtp" type="HbDateTimePicker">
+ <!-- 'maximumDate' is a QDate property of HbDateTimePicker. -->
+ <string name="maximumDate" value="02-02-15" />
+ </widget>
+ ...
+ \endcode
\sa setMaximumDate
*/
@@ -295,7 +345,7 @@
/*!
Sets maximum \a date in QDate format.
- \param date Maximum date in QDate format.
+ \param date Maximum date to be set on datetime picker in QDate format.
\sa maximumDate
*/
@@ -306,7 +356,7 @@
}
/*!
- Sets minimum \a minDate and maximum \a maxDate dates in QDate format.
+ Sets minimum \a minDate and maximum \a maxDate dates in QDate format. This will allow user to set date range on datetime picker.
\param minDate Minimum date in QDate format.
\param maxDate Maximum date in QDate format.
@@ -321,10 +371,24 @@
}
/*!
- Returns the current datetime in QDateTime format.
+ Returns the current date and time value, selected in datetime picker, in QDateTime format.
\return date and time value in QDateTime format.
+ <b>Note:</b> The DocML does not support directly the properties which uses QDate/QTime/QDateTime as parameters. For the properties to work user has to pass date, time or datetime
+ as a string, in a valid ISO date format.
+
+ ISO 8601 extended format: either YYYY-MM-DD for dates or YYYY-MM-DDTHH:MM:SS for combined dates and times.
+
+ \code
+ ...
+ <widget name="t:dtp" type="HbDateTimePicker">
+ <!-- 'dateTime' is a QDateTime property of HbDateTimePicker. -->
+ <string name="dateTime" value="02-02-15T02-15-30" />
+ </widget>
+ ...
+ \endcode
+
\sa setDateTime
*/
QDateTime HbDateTimePicker::dateTime()const
@@ -334,7 +398,7 @@
}
/*!
- Sets the current \a datetime in the form of QDateTime.
+ Sets the current \a datetime value to be set on datetime picker in QDateTime format.
\param datetime in QDateTime format.
@@ -347,10 +411,24 @@
}
/*!
- Returns minimum date time in QDateTime format.
+ Returns minimum date time value set on datetime picker in QDateTime format.
\return Minimum date and minimum time in QDateTime format.
+ <b>Note:</b> The DocML does not support directly the properties which uses QDate/QTime/QDateTime as parameters. For the properties to work user has to pass date, time or datetime
+ as a string, in a valid ISO date format.
+
+ ISO 8601 extended format: either YYYY-MM-DD for dates or YYYY-MM-DDTHH:MM:SS for combined dates and times.
+
+ \code
+ ...
+ <widget name="t:dtp" type="HbDateTimePicker">
+ <!-- 'minimumDateTime' is a QDateTime property of HbDateTimePicker. -->
+ <string name="minimumDateTime" value="02-02-15T02-15-30" />
+ </widget>
+ ...
+ \endcode
+
\sa setMinimumDateTime
*/
QDateTime HbDateTimePicker::minimumDateTime()const
@@ -360,9 +438,10 @@
}
/*!
- Sets minimum \a datetime in QDateTime format.
- <b><i>Note:</i></b> There's no link between Date and time in this API, using this API as of now
- would be similar to using combination of \sa setMinimumDate and \sa setMinimumTime
+ Sets minimum \a datetime for datetime picker in QDateTime format.
+
+ <b>Note:</b> There's no link between Date functionality and time functionality in this API. Using this API, for now,
+ would be similar to using a combination of setMinimumDate and setMinimumTime APIs.
\param datetime minimum date and minimum time in QDateTime format.
@@ -375,11 +454,25 @@
}
/*!
- Returns maximum date time in QDateTime format.
+ Returns maximum date time, set on datetime picker, in QDateTime format.
\return Maximum date and maximum time in QDateTime format.
- \sa setMaximumDate
+ <b>Note:</b> The DocML does not support directly the properties which uses QDate/QTime/QDateTime as parameters. For the properties to work user has to pass date, time or datetime
+ as a string, in a valid ISO date format.
+
+ ISO 8601 extended format: either YYYY-MM-DD for dates or YYYY-MM-DDTHH:MM:SS for combined dates and times.
+
+ \code
+ ...
+ <widget name="t:dtp" type="HbDateTimePicker">
+ <!-- 'maximumDateTime' is a QDateTime property of HbDateTimePicker. -->
+ <string name="maximumDateTime" value="02-02-15T02-15-30" />
+ </widget>
+ ...
+ \endcode
+
+ \sa setMaximumDateTime
*/
QDateTime HbDateTimePicker::maximumDateTime()const
{
@@ -388,10 +481,10 @@
}
/*!
- Sets maximum \a datetime in QDateTime format.
-
- <b><i>Note:</i></b> There's no link between Date and time in this API, using this API as of now
- would be similar to using combination of \sa setMaximumDate and \sa setMaximumTime
+ Sets maximum \a datetime, to be set on datetime picker, in QDateTime format.
+
+ <b>Note:</b> There's no link between Date functionality and time functionality in this API, using this API for now
+ would be similar to using a combination of setMaximumDate and setMaximumTime APIs.
\param date Maximum date and maximum time in QDateTime format.
@@ -404,17 +497,18 @@
}
/*!
- Sets minimum \a minDatetime and maximum \a maxDatetime datetimes in QDateTime format.
+ Sets minimum \a minDatetime and maximum \a maxDatetime date and time values, to be set on datetime picker, in QDateTime format.
+ This will allow the user to set date and time range on datetime picker.
- <b><i>Note:</i></b> There's no link between Date and time in this API, using this API as of now
- would be similar to using combination of \sa setMinimumDate \sa setMaximumTime and
- \sa setMinimumTime, \sa setMaximumTime.
+ <b>Note:</b> There's no link between Date and time in this API, using this API for now
+ would be similar to using a combination of setMinimumDate, setMaximumTime and
+ setMinimumTime, setMaximumTime APIs.
\param minDateTime minimum date and time in QDateTime format.
\param maxDateTime maximum date and time in QDateTime format.
\sa setMinimumDateTime \sa setMaximumDateTime \sa setMinimumDate \sa setMaximumDate
- \sa setMinimumTime \sa setMaximumTime
+ \sa setMinimumTime \sa setMaximumTime
*/
void HbDateTimePicker::setDateTimeRange(const QDateTime &minDateTime, const QDateTime &maxDateTime)
{
@@ -423,10 +517,24 @@
}
/*!
- Returns the current time in QTime format.
+ Returns the current time, selected in datetime picker widget, in QTime format.
\return time in QTime format.
+ <b>Note:</b> The DocML does not support directly the properties which uses QDate/QTime/QDateTime as parameters. For the properties to work user has to pass date, time or datetime
+ as a string, in a valid ISO date format.
+
+ ISO 8601 extended format: either YYYY-MM-DD for dates or YYYY-MM-DDTHH:MM:SS for combined dates and times.
+
+ \code
+ ...
+ <widget name="t:dtp" type="HbDateTimePicker">
+ <!-- 'time' is a QTime property of HbDateTimePicker. -->
+ <string name="time" value="02-15-30" />
+ </widget>
+ ...
+ \endcode
+
\sa setTime
*/
QTime HbDateTimePicker::time() const
@@ -436,7 +544,7 @@
}
/*!
- Sets the current \a time in the form of QTime.
+ Sets the current \a time, to be set on datetime picker widget, in QTime format.
\param time in QTime format.
@@ -449,10 +557,24 @@
}
/*!
- Returns minimum time in QTime format.
+ Returns minimum time, set on datetime picker, in QTime format.
\return Minimum time in QTime format.
+ <b>Note:</b> The DocML does not support directly the properties which uses QDate/QTime/QDateTime as parameters. For the properties to work user has to pass date, time or datetime
+ as a string, in a valid ISO date format.
+
+ ISO 8601 extended format: either YYYY-MM-DD for dates or YYYY-MM-DDTHH:MM:SS for combined dates and times.
+
+ \code
+ ...
+ <widget name="t:dtp" type="HbDateTimePicker">
+ <!-- 'minimumTime' is a QTime property of HbDateTimePicker. -->
+ <string name="minimumTime" value="02-15-30" />
+ </widget>
+ ...
+ \endcode
+
\sa setMinimumTime
*/
QTime HbDateTimePicker::minimumTime()const
@@ -462,7 +584,7 @@
}
/*!
- Sets minimum \a time in QTime format.
+ Sets minimum \a time, to be set on datetime picker, in QTime format.
\param time minimum time in QTime format.
@@ -475,10 +597,24 @@
}
/*!
- Returns maximum time in QTime format.
+ Returns maximum time, set on datetime picker, in QTime format.
\return maximum time in QTime format.
+ <b>Note:</b> The DocML does not support directly the properties which uses QDate/QTime/QDateTime as parameters. For the properties to work user has to pass date, time or datetime
+ as a string, in a valid ISO date format.
+
+ ISO 8601 extended format: either YYYY-MM-DD for dates or YYYY-MM-DDTHH:MM:SS for combined dates and times.
+
+ \code
+ ...
+ <widget name="t:dtp" type="HbDateTimePicker">
+ <!-- 'maximumTime' is a QTime property of HbDateTimePicker. -->
+ <string name="maximumTime" value="02-15-30" />
+ </widget>
+ ...
+ \endcode
+
\sa setMaximumTime
*/
QTime HbDateTimePicker::maximumTime()const
@@ -488,7 +624,7 @@
}
/*!
- Sets maximum \a time in QTime format.
+ Sets maximum \a time, to be set on datetime picker, in QTime format.
\param time maximum time in QTime format
@@ -501,7 +637,7 @@
}
/*!
- Sets minimum \a minTime and maximum \a maxTime in QTime format.
+ Sets minimum \a minTime and maximum \a maxTime in QTime format. This will allow the user to set a time range on datetime picker.
\param minTime minimum time in QTime format.
\param maxTime maximum time in QTime format.
@@ -516,9 +652,10 @@
}
/*!
- sets the \a interval for the corresponding \a section.
+ Sets the \a interval or periodic gap for the corresponding \a section.
- Note: Only MinuteSection is supported at this time.
+ <b>Note</b>: Only MinuteSection is supported at this time.<br>
+ <b>Note</b>: Minute interval must be a divisor of 60. Divisors of 60 are 1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30
\param section can be a MinuteSection.
\param interval to be set on each picker.
@@ -534,14 +671,30 @@
return;
}
+ if(60 % interval)
+ {
+ return;
+ }
+
d->mIntervals[section] = interval;
if((section == QDateTimeEdit::MinuteSection) && (d->mMinuteModel)){
d->mMinuteModel->removeRows(0, d->mMinuteModel->rowCount());
- d->resizeModel(d->mMinuteModel, d->mMinimumDate.time().minute(), d->mMaximumDate.time().minute(),
- d->mMinimumDate.time().minute(), d->mMaximumDate.time().minute(),&HbDateTimePickerPrivate::localeMinute, interval);
+ int newStart = d->mMinimumDate.time().minute();
+ if(interval <= newStart && !d->isMinimumHour()){
+ int i = 0;
+ for(i = newStart; i > 0; i -= interval){
+
+ }
+
+ newStart = i;
+
+ }
+
+ d->resizeModel(d->mMinuteModel, newStart, d->isMaximumHour()?d->mMaximumDate.time().minute():59,
+ newStart, d->isMaximumHour()?d->mMaximumDate.time().minute():59,&HbDateTimePickerPrivate::localeMinute, d->mIntervals[section]);
}
}
@@ -560,7 +713,6 @@
}
/*!
-
\deprecated HbDateTimePicker::primitive(HbStyle::Primitive)
is deprecated.
--- a/src/hbwidgets/widgets/hbdatetimepicker_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbdatetimepicker_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -477,7 +477,7 @@
mAmPmPicker = new HbTumbleView(q);
mAmPmModel = new QStringListModel(q);
mAmPmPicker->setModel(mAmPmModel);
- //mAmPmPicker->setLoopingEnabled(true);
+ mAmPmPicker->setLoopingEnabled(true);
mLayout->addItem(mAmPmPicker);
mAmPmPicker->primitive("highlight")->hide();
mAmPmPicker->primitive("separator")->show();
@@ -489,9 +489,8 @@
mDayPicker = new HbTumbleView(q);
mDayModel = new QStringListModel(q);
mDayPicker->setModel(mDayModel);
- //mDayPicker->setLoopingEnabled(true);
+ mDayPicker->setLoopingEnabled(true);
mLayout->addItem(mDayPicker);
- mDayPicker->primitive("highlight")->hide();
mDayPicker->primitive("separator")->show();
lastAdded = mDayPicker;
break;
@@ -500,9 +499,8 @@
mMonthPicker = new HbTumbleView(q);
mMonthModel = new QStringListModel(q);
mMonthPicker->setModel(mMonthModel);
- //mMonthPicker->setLoopingEnabled(true);
+ mMonthPicker->setLoopingEnabled(true);
mLayout->addItem(mMonthPicker);
- mMonthPicker->primitive("highlight")->hide();
mMonthPicker->primitive("separator")->show();
lastAdded = mMonthPicker;
break;
@@ -512,9 +510,8 @@
mYearPicker = new HbTumbleView(q);
mYearModel = new QStringListModel(q);
mYearPicker->setModel(mYearModel);
- //mYearPicker->setLoopingEnabled(true);
+ mYearPicker->setLoopingEnabled(true);
mLayout->addItem(mYearPicker);
- mYearPicker->primitive("highlight")->hide();
mYearPicker->primitive("separator")->show();
lastAdded = mYearPicker;
break;
@@ -523,9 +520,8 @@
mSecondPicker = new HbTumbleView(q);
mSecondModel = new QStringListModel(q);
mSecondPicker->setModel(mSecondModel);
- //mSecondPicker->setLoopingEnabled(false);
+ mSecondPicker->setLoopingEnabled(true);
mLayout->addItem(mSecondPicker);
- mSecondPicker->primitive("highlight")->hide();
mSecondPicker->primitive("separator")->show();
lastAdded = mSecondPicker;
break;
@@ -534,9 +530,8 @@
mMinutePicker = new HbTumbleView(q);
mMinuteModel = new QStringListModel(q);
mMinutePicker->setModel(mMinuteModel);
- //mMinutePicker->setLoopingEnabled(false);
+ mMinutePicker->setLoopingEnabled(true);
mLayout->addItem(mMinutePicker);
- mMinutePicker->primitive("highlight")->hide();
mMinutePicker->primitive("separator")->show();
lastAdded = mMinutePicker;
break;
@@ -546,9 +541,8 @@
mHourPicker = new HbTumbleView(q);
mHourModel = new QStringListModel(q);
mHourPicker->setModel(mHourModel);
- //mHourPicker->setLoopingEnabled(true);
+ mHourPicker->setLoopingEnabled(true);
mLayout->addItem(mHourPicker);
- mHourPicker->primitive("highlight")->hide();
mHourPicker->primitive("separator")->show();
lastAdded = mHourPicker;
break;
@@ -556,6 +550,12 @@
default:
break;
}
+
+ if(lastAdded){
+ lastAdded->primitive("highlight")->hide();
+ lastAdded->primitive("separator")->show();
+ }
+
}
//For the last added tumble view, hide the separator.
@@ -818,9 +818,28 @@
if(mHourPicker) {
mHourPicker->setSelected(newDateTime.time().hour()-mHourOffset);
}
+
if(mMinutePicker) {
- mMinutePicker->setSelected(newDateTime.time().minute()-mMinuteOffset);
+ int index = newDateTime.time().minute()-mMinuteOffset;
+ if(mIntervals[QDateTimeEdit::MinuteSection] > 1){
+ for(int i = 0; i < mMinuteModel->rowCount(); i++){
+
+ if(mMinuteModel->index(i,0).data().toInt() <= newDateTime.time().minute()){
+ index = i;
+ }
+ else{
+ break;
+ }
+
+ //TODO: if minute is not in the model data then nearest value should be selected.
+ }
+ }
+ else{
+ index = newDateTime.time().minute()-mMinuteOffset;
+ }
+ mMinutePicker->setSelected(index);
}
+
if(mSecondPicker) {
#ifdef HBDATETIMEPICKER_DEBUG
qDebug() << "setDateTime before: secondOffset=" << mSecondOffset << " time=" << newDateTime.time();
@@ -1013,13 +1032,45 @@
newIndex = end-start;
}
- resizeModel(mMinuteModel,
- mMinuteOffset,mMinuteOffset+mMinuteModel->rowCount()-1,
- start,end,
- &HbDateTimePickerPrivate::localeMinute, mIntervals[QDateTimeEdit::MinuteSection]);
+ //Store the value before resizing the model.
+ int value = mMinuteModel->index(mMinutePicker->selected()).data().toInt();
+
+ if(mIntervals[QDateTimeEdit::MinuteSection] > 1){
+ if((mIntervals[QDateTimeEdit::MinuteSection] <= mMinimumDate.time().minute()) &&
+ !isMinimumHour()){
+ int i = 0;
+ for(i = start; i > 0; i -= mIntervals[QDateTimeEdit::MinuteSection]){
+
+ }
+
+ start = i;
+ }
+ else{
+ start = mMinimumDate.time().minute();
+ }
+ }
+
+ resizeModel(mMinuteModel, mMinuteOffset,mMinuteModel->index(mMinuteModel->rowCount() - 1).data().toInt()/*mMinuteOffset+mMinuteModel->mMinuteModel->rowCount()-1*/,
+ start,end,
+ &HbDateTimePickerPrivate::localeMinute, mIntervals[QDateTimeEdit::MinuteSection]);
mMinuteOffset = start;
- mMinutePicker->setSelected(newIndex);
+ //Select the nearest value when the range is set.
+ int index = newIndex;
+ if(mIntervals[QDateTimeEdit::MinuteSection] > 1){
+ for(int i = 0; i < mMinuteModel->rowCount(); i++){
+
+ if(mMinuteModel->index(i,0).data().toInt() <= value){
+ index = i;
+ }
+ else{
+ break;
+ }
+ }
+ }
+ mMinutePicker->setSelected(index);
+
+ mDateTime.setTime(QTime(mDateTime.time().hour(), localeMinute(mMinuteModel->index(index,0).data().toInt()).toInt(), mDateTime.time().second()));
//check if minute is valid
if(mDateTime.time().minute() < start) {
@@ -1145,25 +1196,23 @@
int newStart, int newEnd,
QString (HbDateTimePickerPrivate::*localeFunc)(int), int interval)
{
- if(interval > 1){
- model->removeRows(0, model->rowCount());
- }
-
if((model->rowCount() == 0) && (newEnd-newStart>=0)) {
//initialize condition
-
+ int previous = newStart;
for(int i=0;i<=newEnd-newStart;i++) {
- //model->setData(index,(this->*localeFunc)(i+newStart));//TODO:add a readable typedef
QString text;
if(interval > 1){
- if(((newStart + interval) * i) <= newEnd){
+
+ if(previous <= newEnd){
model->insertRow(i);
- text = (this->*localeFunc)(!((newStart + interval)*i) ? newStart : (newStart + interval)*i);
+ text = (this->*localeFunc)(previous);
}
else{
break;
}
+
+ previous += interval;
}
else{
model->insertRow(i);
@@ -1188,31 +1237,120 @@
}
if(newStart < oldStart) {
- model->insertRows(0,oldStart-newStart);
+ int previous = newStart;
+
for(int i=0;i<oldStart-newStart;++i) {
+ QString text;
+
+ if(interval > 1){
+
+ if(previous < oldStart){
+ model->insertRow(i);
+ text = (this->*localeFunc)(previous);
+ }
+ else{
+ break;
+ }
+
+ previous += interval;
+ }
+ else{
+ model->insertRow(i);
+ text = (this->*localeFunc)(i+newStart);
+ }
+
QModelIndex index=model->index(i,0);
if(index.isValid()) {
- model->setData(index,(this->*localeFunc)(i+newStart));
+ model->setData(index,text);
}
}
}
if(newEnd > oldEnd) {
+
int rowCount = model->rowCount();
- model->insertRows(rowCount,newEnd-oldEnd);
+ int previous = oldEnd+interval;
for(int i=0;i<newEnd-oldEnd;++i) {
+ QString text;
+
+ if(interval > 1){
+
+ if(previous <= newEnd){
+ model->insertRows(rowCount+i,1);
+ text = (this->*localeFunc)(previous);
+ }
+ else{
+ break;
+ }
+
+ previous += interval;
+ }
+ else{
+ model->insertRows(rowCount+i,1);
+ text = (this->*localeFunc)(oldEnd+i+1);
+ }
+
QModelIndex index=model->index(rowCount+i,0);
if(index.isValid()) {
- model->setData(index,(this->*localeFunc)(oldEnd+i+1));
+ model->setData(index,text);
}
}
}
if(newStart > oldStart) {
- model->removeRows(0,newStart-oldStart);
+ if(interval > 1){
+ for(int i = oldStart; i < newStart; i += interval){
+ model->removeRows(0, 1);
+ }
+ }
+ else{
+ model->removeRows(0,newStart-oldStart);
+ }
}
if(oldEnd > newEnd) {
- model->removeRows((model->rowCount()-(oldEnd-newEnd)),oldEnd-newEnd);
+ if(interval > 1){
+ for(int i = oldEnd; i > newEnd; i -= interval){
+ model->removeRows(model->rowCount()-1, 1);
+ }
+ }
+ else{
+ model->removeRows((model->rowCount()-(oldEnd-newEnd)),oldEnd-newEnd);
+ }
+ }
+
+ if(interval > 1){
+ //Check if there's any mismatch between actual rows in the model and the supposed rows.
+ int previous = newStart;
+ int actualRowCount = 0;
+ for(actualRowCount=0;actualRowCount<=newEnd-newStart;actualRowCount++) {
+ if(previous <= newEnd){
+ }
+ else{
+ break;
+ }
+
+ previous += interval;
+ }
+
+ if(actualRowCount > model->rowCount()){
+ model->insertRows(model->rowCount(), actualRowCount - model->rowCount());
+ }
+ else if( actualRowCount < model->rowCount()){
+ model->removeRows(model->rowCount()-1, model->rowCount() - actualRowCount);
+ }
+
+ //Populate the data in the model.
+ previous = newStart;
+ for(int i = 0; i < model->rowCount(); i++)
+ {
+ if(previous <= newEnd){
+ model->setData(model->index(i), (this->*localeFunc)(previous));
+ }
+ else{
+ break;
+ }
+ previous += interval;
+ }
}
}
@@ -1482,10 +1620,12 @@
void HbDateTimePickerPrivate::_q_minutesChanged(int index)
{
+ bool *bOk = false;
#ifdef HBDATETIMEPICKER_DEBUG
qDebug() << "_q_minutesChanged:" << index;
+ qDebug() << mLocale.toInt(mMinuteModel->index(mMinuteOffset+index,0).data().toString(),bOk, 10);
#endif
- QTime newTime(mDateTime.time().hour(),mLocale.toInt(mMinuteModel->index(mMinuteOffset+index,0).data().toString()),mDateTime.time().second());
+ QTime newTime(mDateTime.time().hour(),mLocale.toInt(mMinuteModel->index(index,0).data().toString(),bOk, 10),mDateTime.time().second());
if(newTime.isValid()) {
mDateTime.setTime(newTime);
}
--- a/src/hbwidgets/widgets/hbdatetimepicker_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbdatetimepicker_p.h Thu May 27 13:10:59 2010 +0300
@@ -163,7 +163,6 @@
int newStart, int newEnd,
QString (HbDateTimePickerPrivate::*localeFuncPtr)(int), int interval = 1);
-
void createPrimitives();
void deleteAndNull(HbTumbleView*& t) {
delete t;t=0;
--- a/src/hbwidgets/widgets/hbgroupbox.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbgroupbox.cpp Thu May 27 13:10:59 2010 +0300
@@ -89,7 +89,7 @@
/*!
\internal
- Sets the group box type
+ Sets the groupbox type
*/
void HbGroupBoxPrivate::setGroupBoxType( GroupBoxType type )
{
@@ -171,59 +171,60 @@
/*!
- @alpha
+ @beta
@hbwidgets
\class HbGroupBox
\brief HbGroupBox shows the user that a set of controls belong together.
- HbGroupBox is a container that provides the following :
+ HbGroupBox is a container, which can have following Elementes:
- \li Heading: text only
- \li Body content: arbitrary content (any HbWidget)
- \li Disclosure mechanism: expands and collapses the body content;
+ \li Heading: A heading contains one row text and disclosure indicator if the disclosure mechanism is on.
+ \li Body content: Can have arbitrary content (any HbWidget)and application is responsible for its layout.
+ \li Disclosure Indicator: Indicates the expands and collapses state of body;
There are three types of GroupBox:
- \li Simple Label - it's only function is to show relationship between items.
- simple Label shows a heading with marquee, no disclosure mechanism, and
- no body content. Marquee is disabled by default.Also it is not focusable.
+ \li Simple Label - Simple Label is to indicate the users position in the application hierarchy
+ or to display a textual label and its noninteractive.
+ Simple Label has a heading text with marquee, no disclosure mechanism, and
+ no body content.Simple label only has heading element.
+ Marquee is disabled by default, can be enabled using setMarqueeHeading () .Also it is not focusable.
Example usage: For SimpleLabel type groupbox
\code
// create groupBox and set only heading; without any body content
HbGroupBox *simpleLabel = new HbGroupBox();
simpleLabel->setHeading("Simple label groupBox comes with marquee disabled by default");
+ //to make marqee enabled
+ simpleLabel->setMarqueeHeading(true);
\endcode
\image html simpleLabelgroupbox.png A SimpleLabel groupbox
- \li Rich Label - does not show a heading and all content is in the body area
- with no marquee and no disclosure control.Body Content must describe its own behavior and layout.
+ \li Rich Label - Rich label can contain dynamic content,which themselves can be interactive,or informative
+ with no heading ,no marquee and no disclosure control.Body Content must describe its own behavior and layout.
Example usage: For RichLabel type groupbox
\code
// create groupBox and set only content; without any heading
- HbGroupBox *richHeading = new HbGroupBox();
- // content widget can be any HbWidget
- // layouting and interaction behaviour inside Content widget is application's responsiblity
- HbPushButton *button = new HbPushButton(HbIcon(":/icons/ovi.png"),"Ovi");
+ HbGroupBox *richLabel = new HbGroupBox();
+ HbPushButton *button = new HbPushButton(HbIcon(QString("qtg_large_info")),"Ovi");
button->setAdditionalText("Launch Ovi Music store");
- button->setOrientation(Qt::Vertical);
- button->setTextAlignment(Qt::AlignLeft);
- richHeading->setContentWidget(button);
+ richLabel->setContentWidget(button);
+ mainlayout->addItem(richLabel);
\endcode
\image html richLabelgroupbox.png A RichLabel groupbox.
In RichLabel type, groupbox provides background for body content.
- \li Collapsing container - also allows the user to show or hide the content of the groupBox.
+ \li Collapsing container - Collapsing container allows the user to show or hide the content of the groupBox.
It always has a heading and body content; optionally has a disclosure mechanism.
- The heading does not marquee.The collapse/expand disclosure mechanism is located
- in the heading and is the chief utility of this type of group box.
+ The heading does not marquee.The body content must describe its own behavior and layout.
+ The collapse/expand disclosure mechanism is located in the heading and is the chief utility of this type of groupbox.
- If disclosure mechanism is Off, then heading will appear without expand/collapse indication icon
+ If disclosure mechanism is Off,then heading will appear without expand/collapse indication icon
heading.Also the user will not be able to expand/collapse the body content.
Example usage:For collapsingContainer groupbox
@@ -241,7 +242,7 @@
\image html collapsableContainergroupbox.png A Collapsing container groupbox.
In this type, groupBox body content can be expanded/collapsed,
- depending on whether or not the group box is collapsed.
+ depending on whether or not the groupbox is collapsed.
CollapsingContainer type groupBox comes with disclosure mechanism On by default.
@@ -262,7 +263,7 @@
This signal is emitted only in case of richLabel and collapsing container groupbox,
whenever click happened on body content.If the body content set is an interactive widget
- and consumes mouse press event, then clicked signal will not get emitted from groupBox in that case.
+ and consumes mouse press event, then in that case clicked signal will not get emitted from groupBox.
*/
/*!
@@ -273,8 +274,8 @@
*/
/*!
- @alpha
- Constructs a group box with the given \a parent.
+ @beta
+ Constructs a groupbox with the given \a parent.
*/
HbGroupBox::HbGroupBox( QGraphicsItem *parent)
: HbWidget(*new HbGroupBoxPrivate, parent)
@@ -294,18 +295,20 @@
}
/*!
- Destructs the group box.
+ Destructs the groupbox.
*/
HbGroupBox::~HbGroupBox()
{
}
/*!
- @alpha
+ @beta
- Sets the group box heading
+ Sets the groupbox heading
Note: heading property is valid for simpleLabel & collapsing container type.
+ For Collapsing container,
+ if body content is collapsible ,heading will appear along with Disclosure indicator.
If heading is set on richLabel type groupBox, it will be ignored
\sa heading
@@ -326,7 +329,7 @@
}
/*!
- @alpha
+ @beta
Returns text shown on the groupBox heading.
@@ -346,7 +349,7 @@
}
/*!
- @alpha
+ @beta
Sets whether the groupbox is collapsable or not
@@ -382,11 +385,11 @@
}
/*!
- @alpha
+ @beta
Returns whether the groupbox is collapsable or not
- By default, group boxes are collapsable.
+ By default, groupbox is collapsable.
\sa setCollapsable
*/
@@ -399,18 +402,18 @@
}
/*!
- @alpha
+ @beta
Sets whether the groupbox collapsed or expanded
- If the groupbox is collapsed,the group box's content widget are hidden;
+ If the groupbox is collapsed,the groupbox's content widget are hidden;
otherwise they will be visible
setCollapsed on groupbox will emit signal toggled( bool )
upon collapse\expand of content widget
- Only collapsable groupboxes can be collapsed. (i.e)this API will not do anything
- if group box is not collapsable.By default, group boxes are not collapsed.
+ Only collapsable groupbox can be collapsed. (i.e)this API will not do anything
+ if groupbox is not collapsable.By default, groupbox is not collapsed.
Note: collapsed property is valid only for collapsing container type.
If collapsed is set on simpleLabel or richLabel type groupBox, it will be ignored
@@ -449,15 +452,16 @@
d->mHeadingWidget->updatePrimitives();
emit toggled( d->mHeadingWidget->collapsed );
}
- }
+ repolish();
+ }
}
/*!
- @alpha
+ @beta
- Returns whether the group box is collapsed or expanded
+ Returns whether the groupbox is collapsed or expanded
- By default, groupboxes are not collapsed.
+ By default, groupbox is not collapsed.
\sa setCollapsed \sa setCollapsable
*/
@@ -471,7 +475,7 @@
}
/*!
- @alpha
+ @beta
Enables the marquee for heading if marqueeHeading is true, otherwise the
heading will not marquee.
@@ -491,7 +495,7 @@
}
/*!
- @alpha
+ @beta
Returns true if marquee is enabled for groupbox heading;
otherwise returns false.
@@ -511,7 +515,7 @@
/*!
- @alpha
+ @beta
Sets the groupbox content widget
@@ -555,7 +559,7 @@
}
/*!
- @alpha
+ @beta
Returns groupbox content widget
--- a/src/hbwidgets/widgets/hbgroupbox.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbgroupbox.h Thu May 27 13:10:59 2010 +0300
@@ -39,6 +39,7 @@
Q_PROPERTY( bool marqueeHeading READ marqueeHeading WRITE setMarqueeHeading )
public:
+
explicit HbGroupBox( QGraphicsItem *parent = 0 );
~HbGroupBox( );
@@ -48,7 +49,7 @@
bool isCollapsable( ) const;
bool isCollapsed( ) const;
- void setMarqueeHeading( bool marquee = false );
+ void setMarqueeHeading( bool marquee = true );
bool marqueeHeading( ) const;
void setContentWidget( HbWidget *widget );
@@ -56,20 +57,28 @@
virtual QGraphicsItem *primitive( HbStyle::Primitive primitive ) const;
- enum { Type = Hb::ItemType_GroupBox };
- int type( ) const { return Type; }
+ enum {
+ Type = Hb::ItemType_GroupBox
+ };
+
+ int type( ) const {
+ return Type;
+ }
public slots:
+
void updatePrimitives( );
void setCollapsed( bool collapsed = true );
void setCollapsable( bool collapsable = true );
- signals:
+signals:
+
void clicked();
- void longPress(const QPointF &delta);
- void toggled(bool state);
+ void longPress( const QPointF &delta );
+ void toggled( bool state );
protected:
+
HbGroupBox( HbGroupBoxPrivate &dd, QGraphicsItem *parent );
private:
--- a/src/hbwidgets/widgets/hbgroupboxcontentwidget_p.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbgroupboxcontentwidget_p.cpp Thu May 27 13:10:59 2010 +0300
@@ -142,6 +142,10 @@
*/
void HbGroupBoxContentWidget::setContentWidget( HbWidget *widget )
{
+ if ( widget == mContent ) {
+ return;
+ }
+
// delete old content set
if ( mContent ) {
delete mContent;
--- a/src/hbwidgets/widgets/hbpushbutton.cpp Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbpushbutton.cpp Thu May 27 13:10:59 2010 +0300
@@ -217,17 +217,6 @@
}
}
-
-
-void HbPushButtonPrivate::_q_handleLongPress(QPointF point)
-{
- Q_Q(HbPushButton);
- if(!longPress){
- longPress = true;
- emit q->longPress( point );
- }
-}
-
void HbPushButtonPrivate::_q_handleLongKeyPress( )
{
Q_Q( HbPushButton );
@@ -694,6 +683,7 @@
}
/*!
+ \reimp
Initializes \a option with the values from this HbPushButton.
This method is useful for subclasses when they need a HbStyleOptionPushButton,
but don't want to fill in all the information themselves.
--- a/src/hbwidgets/widgets/hbpushbutton.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbpushbutton.h Thu May 27 13:10:59 2010 +0300
@@ -122,7 +122,6 @@
Q_DECLARE_PRIVATE_D( d_ptr, HbPushButton )
Q_DISABLE_COPY( HbPushButton )
- Q_PRIVATE_SLOT( d_func(),void _q_handleLongPress(QPointF) )
Q_PRIVATE_SLOT( d_func(),void _q_handleLongKeyPress( ) )
};
--- a/src/hbwidgets/widgets/hbpushbutton_p.h Fri May 14 16:09:54 2010 +0300
+++ b/src/hbwidgets/widgets/hbpushbutton_p.h Thu May 27 13:10:59 2010 +0300
@@ -60,7 +60,6 @@
void createPrimitives();
void initialize();
- void _q_handleLongPress(QPointF point);
void _q_handleLongKeyPress( );
QGraphicsItem *textItem;